Transformer

This commit is contained in:
Efim Beshmenev
2026-07-12 21:48:44 +03:00
parent ffd46f89e3
commit 9e3dd7ce8b
11614 changed files with 16818 additions and 4458 deletions
+2
View File
@@ -57,6 +57,8 @@ Makefile
*.sztd.*
*.szonn
*.szonn.*
*.sztf
*.sztf.*
# Python cache and virtual environments
__pycache__/
+22
View File
@@ -22,6 +22,8 @@ add_library(neighborly_core
src/OnlineSurrogate/OnlineSurrogate.h
src/TrainingArchive/TrainingArchive.cpp
src/TrainingArchive/TrainingArchive.h
src/TransformerRanker/TransformerRanker.cpp
src/TransformerRanker/TransformerRanker.h
src/NeighborlyCore/plane.h
src/NeighborlyCore/precise_geometry.h
src/NeighborlyCore/util.cpp
@@ -61,6 +63,7 @@ target_include_directories(neighborly_core
"${CMAKE_CURRENT_SOURCE_DIR}/src/SearchArchive"
"${CMAKE_CURRENT_SOURCE_DIR}/src/OnlineSurrogate"
"${CMAKE_CURRENT_SOURCE_DIR}/src/TrainingArchive"
"${CMAKE_CURRENT_SOURCE_DIR}/src/TransformerRanker"
"${CMAKE_CURRENT_SOURCE_DIR}/projects/Szilassi"
"${EIGEN_ROOT}"
)
@@ -81,6 +84,14 @@ endif()
add_executable(verify_cpp projects/VerifyCpp/verify_cpp.cpp)
target_link_libraries(verify_cpp PRIVATE neighborly_core)
add_executable(transformer_training_export
projects/TransformerTrainingExport/transformer_training_export.cpp
)
target_link_libraries(transformer_training_export PRIVATE neighborly_core)
if(MSVC)
target_compile_options(transformer_training_export PRIVATE /utf-8)
endif()
add_executable(polyhedron_gui WIN32 projects/PolyhedronGui/launcher_gui.cpp)
if(MSVC)
target_compile_definitions(polyhedron_gui PRIVATE UNICODE _UNICODE NOMINMAX)
@@ -101,4 +112,15 @@ if(BUILD_TESTING)
set_tests_properties(training_archive_selftest PROPERTIES
WORKING_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}"
)
add_executable(transformer_ranker_selftest
tests/TransformerRankerSelfTest/TransformerRankerSelfTest.cpp
)
target_link_libraries(transformer_ranker_selftest PRIVATE neighborly_core)
if(MSVC)
target_compile_options(transformer_ranker_selftest PRIVATE /utf-8)
endif()
add_test(NAME transformer_ranker_selftest COMMAND transformer_ranker_selftest)
set_tests_properties(transformer_ranker_selftest PROPERTIES
WORKING_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}"
)
endif()
+84 -4
View File
@@ -16,7 +16,7 @@
[видео CodeParade](https://youtu.be/5dd8_N_nKRI). Текущая версия существенно
расширяет исходную реализацию: добавлены CUDA FP32-поиск, CPU/DD-верификация,
продолжаемые checkpoint, многотопологический планировщик, MAP-Elites/CEM,
нейросетевая подсказка и локальный долговременный ML-датасет.
online-MLP, общий Set Transformer ranker и локальный долговременный ML-датасет.
## Критерии результата
@@ -53,6 +53,11 @@ double-double (`WideReal`, примерно 31 десятичный знак).
в FP32 и проверяется заново.
- Нейросеть является только источником предложений. Она не может заменить точную
CPU/DD-проверку или отключить базовую долю независимого поиска.
- Общий для 59 топологий Set Transformer ранжирует только управляемую часть
injected-пула. Из 64 seed-кандидатов 48 по-прежнему формируются MAP-Elites,
CEM и независимым поиском, 4 управляемых seed остаются контрольными без
ранжирования, и только 12 выбираются трансформером. Повреждённая,
несовместимая или неутверждённая модель автоматически отключается.
Штраф вырождения намеренно мягкий. По умолчанию полностью учитывается худший из
барьеров определителя, короткого ребра, малого угла поворота и чрезмерного размера;
@@ -67,13 +72,18 @@ double-double (`WideReal`, примерно 31 десятичный знак).
- `projects/Szilassi` — основной CLI-поиск;
- `projects/PolyhedronGui` — Windows GUI для штатного CUDA-поиска;
- `projects/VerifyCpp` — отдельная проверка OBJ-кандидатов;
- `projects/TransformerTrainingExport` — потоковый read-only экспорт размеченных
trajectory из immutable `.sztd` для обучения;
- `src/NeighborlyCore` — геометрия, точные предикаты и общие типы;
- `src/CudaSearch` — FP32 CUDA backend и диагностический CPU stub;
- `src/Checkpoint` — CRC-защищённые поколения checkpoint;
- `src/SearchArchive` — mergeable MAP-Elites delta-файлы;
- `src/OnlineSurrogate` — локальная online residual-MLP модель;
- `src/TrainingArchive` — локальный долговременный ML-датасет и crash recovery;
- `src/TransformerRanker` — нативный FP32 inference общей transformer-модели;
- `tests/TrainingArchiveSelfTest` — тест формата, CRC, WAL, восстановления и лимита;
- `tests/TransformerRankerSelfTest` — тест features, формата модели, CRC и fallback;
- `tools/train_transformer.py` — CUDA/PyTorch-обучение и публикация модели;
- `data` — описание топологий и входные модели;
- `results/topologies` и `results/showcases` — сохранённые исследовательские модели;
- `results/search` — продолжаемое геометрическое состояние поиска;
@@ -93,6 +103,10 @@ CMake; проекты Visual Studio можно собирать по отдел
и Blackwell `sm_120`;
- Eigen 3.4.0 уже находится в `external/eigen-3.4.0`.
Для самого поиска Python не нужен. Для переобучения трансформера дополнительно
нужны Python 3.12, NumPy и CUDA-сборка PyTorch. Эти зависимости устанавливаются
в локальную `.venv` и не входят в штатный exe.
Без CUDA проект собирает диагностический stub. Запуск с `--cuda` в такой сборке
завершается с понятной ошибкой и не переключается на CPU незаметно.
@@ -112,6 +126,8 @@ ctest --test-dir build/vs2026 -C Release --output-on-failure
- `polyhedron_gui.exe` — GUI;
- `verify_cpp.exe` — проверка OBJ;
- `training_archive_selftest.exe` — regression/self-test локального ML-архива.
- `transformer_training_export.exe` — потоковый экспорт trajectory;
- `transformer_ranker_selftest.exe` — regression/self-test transformer runtime.
Для сборки без CUDA используется отдельный каталог:
@@ -128,7 +144,9 @@ cmake --build build/cpu --config Release
msbuild projects\Szilassi\Szilassi.vcxproj /m /p:Configuration=Release /p:Platform=x64
msbuild projects\PolyhedronGui\PolyhedronGui.vcxproj /m /p:Configuration=Release /p:Platform=x64
msbuild projects\VerifyCpp\VerifyCpp.vcxproj /m /p:Configuration=Release /p:Platform=x64
msbuild projects\TransformerTrainingExport\TransformerTrainingExport.vcxproj /m /p:Configuration=Release /p:Platform=x64
msbuild tests\TrainingArchiveSelfTest\TrainingArchiveSelfTest.vcxproj /m /p:Configuration=Release /p:Platform=x64
msbuild tests\TransformerRankerSelfTest\TransformerRankerSelfTest.vcxproj /m /p:Configuration=Release /p:Platform=x64
```
Вывод этих проектов находится в `build/msbuild/bin/x64/Release`.
@@ -207,9 +225,11 @@ leaderboard восстанавливается при следующем зап
- `results/search/runs/<UUID>/training``.sztd` shards и активный WAL;
- `results/search/topology_N/neural` — online-модель `.szonn` и служебные receipts;
- `results/search/neural/transformer` — immutable поколения `.sztf`, активная
`current.sztf` и отчёты обучения;
- временные варианты этих файлов и marker достижения лимита.
`.gitignore` исключает каталоги `training`, `neural`, все `.sztd/.szonn` и их
`.gitignore` исключает каталоги `training`, `neural`, все `.sztd/.szonn/.sztf` и их
временные варианты. Не используйте `git add -f` для этих путей.
Schema v3 сохраняет пригодные для последующего обучения факты: каждый успешный и
@@ -221,8 +241,8 @@ WAL имеет CRC и durable commit boundary. После сбоя питани
отбрасывается, а подтверждённые записи сохраняются. Завершённые shards immutable.
Общий локальный лимит ML-кэша равен ровно `200000000000` байт (200 GB, не GiB).
В расчёт входят существующие neural-файлы, резерв 59 финальных моделей и временный
файл атомарной замены. При достижении лимита:
В расчёт входят существующие neural-файлы, резерв 59 online-моделей, transformer
generation/current и временные файлы атомарной замены. При достижении лимита:
- новые обучающие записи больше не создаются;
- online-обучение замораживается;
@@ -232,6 +252,60 @@ WAL имеет CRC и durable commit boundary. После сбоя питани
Лимит рассчитан для одного поискового процесса в одном checkout.
## Обучение трансформера
Transformer обучается на GPU, но штатный поиск выполняет его маленький FP32
inference на CPU, не отнимая CUDA-ресурсы у геометрических цепочек. Основные labels
берутся только из `InjectedTrajectory`: `SeedProposal` без результата считается
неизвестным, а не неудачным исходом.
Тренер сначала фиксирует список завершённых `.sztd`, проверяет их CRC штатным C++
reader и создаёт временный бинарный snapshot. Активный WAL и shards, появившиеся
после начала обучения, в этот snapshot не входят и попадут в следующее
переобучение. Поэтому накопление архива можно продолжать; временный snapshot после
успеха или ошибки удаляется, если не указан `--keep-snapshot`.
Первичная настройка локального окружения:
```powershell
python -m venv .venv
.\.venv\Scripts\python.exe -m pip install numpy
.\.venv\Scripts\python.exe -m pip install torch==2.13.0 `
--index-url https://download.pytorch.org/whl/cu130
```
Обучение на текущих четырёх независимых seed-run:
```powershell
.\scripts\TrainTransformer.bat
```
Скрипт проверяет `torch.cuda.is_available()` и пропускает Python-окружения с
CPU-only PyTorch. Если CUDA-Python не находится автоматически, его можно указать
без изменения файлов проекта:
```powershell
$env:SZILASSI_PYTHON = "C:\path\to\python.exe"
.\scripts\TrainTransformer.bat
```
Train/validation/test делятся целыми run UUID, а не случайными соседними
записями. Модель публикуется только после проверки AP, Brier и top-decile uplift
на отдельных запусках. Затем deployment-ensemble заново обучается на всех четырёх
run и атомарно публикуется как `results/search/neural/transformer/current.sztf`.
Предыдущие `model_<digest>.sztf` не переписываются, а идентификатор загруженного
поколения сохраняется в `run.tsv` и algorithm fingerprint обучающих записей.
При будущем переобучении на всём накопившемся архиве, включая новые run:
```powershell
.\scripts\TrainTransformer.bat --deployment-all-runs
```
После публикации достаточно снова нажать `Запустить поиск`. Сбор `.sztd`, online-MLP,
MAP-Elites/CEM, CUDA-поиск и CPU/DD-проверка продолжают работать независимо от
наличия transformer-модели.
## Работа на нескольких компьютерах
Для параллельного исследования задавайте непересекающиеся диапазоны топологий.
@@ -255,6 +329,8 @@ git rm -r --cached --ignore-unmatch -- `
":(glob)results/search/**/*.sztd.*" `
":(glob)results/search/**/*.szonn" `
":(glob)results/search/**/*.szonn.*" `
":(glob)results/search/**/*.sztf" `
":(glob)results/search/**/*.sztf.*" `
":(glob)results/search/**/TRAINING_DATA_LIMIT_REACHED_REWRITE_REQUIRED.tsv"
```
@@ -277,6 +353,10 @@ git ls-files -ci --exclude-standard -- results/search
detection, частичные WAL, recovery после сбоя, immutable publication и точную границу
200 GB.
`TransformerRankerSelfTest` проверяет byte-exact размер модели, единую нормализацию
features, batch inference, CRC, отклонение повреждённой модели и сохранение
последней валидной модели при неудачной загрузке.
Запуск через CTest:
```powershell
+6 -4
View File
@@ -99,7 +99,7 @@
<PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<ConformanceMode>true</ConformanceMode>
<AdditionalOptions>/utf-8 %(AdditionalOptions)</AdditionalOptions>
<AdditionalIncludeDirectories>$(ProjectDir)..\..\src\NeighborlyCore;$(ProjectDir)..\..\src\Checkpoint;$(ProjectDir)..\..\src\SearchArchive;$(ProjectDir)..\..\src\OnlineSurrogate;$(ProjectDir)..\..\src\TrainingArchive;$(ProjectDir)..\..\src\CudaSearch;$(ProjectDir)..\..\external\eigen-3.4.0;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<AdditionalIncludeDirectories>$(ProjectDir)..\..\src\NeighborlyCore;$(ProjectDir)..\..\src\Checkpoint;$(ProjectDir)..\..\src\SearchArchive;$(ProjectDir)..\..\src\OnlineSurrogate;$(ProjectDir)..\..\src\TrainingArchive;$(ProjectDir)..\..\src\TransformerRanker;$(ProjectDir)..\..\src\CudaSearch;$(ProjectDir)..\..\external\eigen-3.4.0;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<LanguageStandard>stdcpp17</LanguageStandard>
</ClCompile>
<Link>
@@ -117,7 +117,7 @@
<PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<ConformanceMode>true</ConformanceMode>
<AdditionalOptions>/utf-8 %(AdditionalOptions)</AdditionalOptions>
<AdditionalIncludeDirectories>$(ProjectDir)..\..\src\NeighborlyCore;$(ProjectDir)..\..\src\Checkpoint;$(ProjectDir)..\..\src\SearchArchive;$(ProjectDir)..\..\src\OnlineSurrogate;$(ProjectDir)..\..\src\TrainingArchive;$(ProjectDir)..\..\src\CudaSearch;$(ProjectDir)..\..\external\eigen-3.4.0;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<AdditionalIncludeDirectories>$(ProjectDir)..\..\src\NeighborlyCore;$(ProjectDir)..\..\src\Checkpoint;$(ProjectDir)..\..\src\SearchArchive;$(ProjectDir)..\..\src\OnlineSurrogate;$(ProjectDir)..\..\src\TrainingArchive;$(ProjectDir)..\..\src\TransformerRanker;$(ProjectDir)..\..\src\CudaSearch;$(ProjectDir)..\..\external\eigen-3.4.0;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<FavorSizeOrSpeed>Speed</FavorSizeOrSpeed>
<EnableEnhancedInstructionSet>AdvancedVectorExtensions2</EnableEnhancedInstructionSet>
<BufferSecurityCheck>false</BufferSecurityCheck>
@@ -139,7 +139,7 @@
<PreprocessorDefinitions>_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<ConformanceMode>true</ConformanceMode>
<AdditionalOptions>/utf-8 %(AdditionalOptions)</AdditionalOptions>
<AdditionalIncludeDirectories>$(ProjectDir)..\..\src\NeighborlyCore;$(ProjectDir)..\..\src\Checkpoint;$(ProjectDir)..\..\src\SearchArchive;$(ProjectDir)..\..\src\OnlineSurrogate;$(ProjectDir)..\..\src\TrainingArchive;$(ProjectDir)..\..\src\CudaSearch;$(ProjectDir)..\..\external\eigen-3.4.0;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<AdditionalIncludeDirectories>$(ProjectDir)..\..\src\NeighborlyCore;$(ProjectDir)..\..\src\Checkpoint;$(ProjectDir)..\..\src\SearchArchive;$(ProjectDir)..\..\src\OnlineSurrogate;$(ProjectDir)..\..\src\TrainingArchive;$(ProjectDir)..\..\src\TransformerRanker;$(ProjectDir)..\..\src\CudaSearch;$(ProjectDir)..\..\external\eigen-3.4.0;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<LanguageStandard>stdcpp17</LanguageStandard>
</ClCompile>
<Link>
@@ -157,7 +157,7 @@
<PreprocessorDefinitions>NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<ConformanceMode>true</ConformanceMode>
<AdditionalOptions>/utf-8 %(AdditionalOptions)</AdditionalOptions>
<AdditionalIncludeDirectories>$(ProjectDir)..\..\src\NeighborlyCore;$(ProjectDir)..\..\src\Checkpoint;$(ProjectDir)..\..\src\SearchArchive;$(ProjectDir)..\..\src\OnlineSurrogate;$(ProjectDir)..\..\src\TrainingArchive;$(ProjectDir)..\..\src\CudaSearch;$(ProjectDir)..\..\external\eigen-3.4.0;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<AdditionalIncludeDirectories>$(ProjectDir)..\..\src\NeighborlyCore;$(ProjectDir)..\..\src\Checkpoint;$(ProjectDir)..\..\src\SearchArchive;$(ProjectDir)..\..\src\OnlineSurrogate;$(ProjectDir)..\..\src\TrainingArchive;$(ProjectDir)..\..\src\TransformerRanker;$(ProjectDir)..\..\src\CudaSearch;$(ProjectDir)..\..\external\eigen-3.4.0;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<FavorSizeOrSpeed>Speed</FavorSizeOrSpeed>
<EnableEnhancedInstructionSet>AdvancedVectorExtensions2</EnableEnhancedInstructionSet>
<BufferSecurityCheck>false</BufferSecurityCheck>
@@ -179,6 +179,7 @@
<ClCompile Include="..\..\src\SearchArchive\SearchArchive.cpp" />
<ClCompile Include="..\..\src\OnlineSurrogate\OnlineSurrogate.cpp" />
<ClCompile Include="..\..\src\TrainingArchive\TrainingArchive.cpp" />
<ClCompile Include="..\..\src\TransformerRanker\TransformerRanker.cpp" />
<ClCompile Include="..\..\src\NeighborlyCore\util.cpp" />
</ItemGroup>
<ItemGroup Condition="'$(CudaToolkitAvailable)'!='true'">
@@ -199,6 +200,7 @@
<ClInclude Include="..\..\src\SearchArchive\SearchArchive.h" />
<ClInclude Include="..\..\src\OnlineSurrogate\OnlineSurrogate.h" />
<ClInclude Include="..\..\src\TrainingArchive\TrainingArchive.h" />
<ClInclude Include="..\..\src\TransformerRanker\TransformerRanker.h" />
<ClInclude Include="..\..\src\CudaSearch\cuda_search.h" />
<ClInclude Include="..\..\src\NeighborlyCore\util.h" />
<ClInclude Include="..\..\src\NeighborlyCore\wide_real.h" />
@@ -33,6 +33,9 @@
<ClCompile Include="..\..\src\TrainingArchive\TrainingArchive.cpp">
<Filter>Source Files</Filter>
</ClCompile>
<ClCompile Include="..\..\src\TransformerRanker\TransformerRanker.cpp">
<Filter>Source Files</Filter>
</ClCompile>
<ClCompile Include="..\..\src\CudaSearch\cuda_search_stub.cpp">
<Filter>Source Files</Filter>
</ClCompile>
@@ -59,6 +62,9 @@
<ClInclude Include="..\..\src\TrainingArchive\TrainingArchive.h">
<Filter>Header Files</Filter>
</ClInclude>
<ClInclude Include="..\..\src\TransformerRanker\TransformerRanker.h">
<Filter>Header Files</Filter>
</ClInclude>
<ClInclude Include="..\..\src\CudaSearch\cuda_search.h">
<Filter>Header Files</Filter>
</ClInclude>
+490 -50
View File
@@ -6,6 +6,7 @@
#include "SearchArchive.h"
#include "OnlineSurrogate.h"
#include "TrainingArchive.h"
#include "TransformerRanker.h"
#include "cuda_search.h"
#include <iostream>
#include <sstream>
@@ -57,6 +58,7 @@ constexpr std::uint32_t MIN_COMPATIBLE_ARCHIVE_OBJECTIVE_VERSION = 3;
constexpr int CUDA_SESSION_CACHE_LIMIT = NUM_TOPOLOGIES;
constexpr std::uint64_t TRAINING_CACHE_LIMIT_BYTES = 200000000000ULL;
constexpr std::uint64_t NEURAL_MODEL_BUDGET_PER_TOPOLOGY = 4ULL * 1024ULL * 1024ULL;
constexpr std::uint64_t TRANSFORMER_MODEL_BUDGET = 8ULL * 1024ULL * 1024ULL;
constexpr std::uint32_t TRAINING_ARCHIVE_SCHEMA_VERSION = 3;
struct StudyOptions {
@@ -2238,6 +2240,8 @@ struct GlobalMetrics {
double g_global_degeneracy_weight = 0.01;
std::string g_search_device_id = "CPU";
bool g_transformer_active = false;
std::string g_transformer_model_id = "none";
std::uint64_t topology_fingerprint() {
std::uint64_t hash = 1469598103934665603ULL;
@@ -2343,6 +2347,10 @@ struct GlobalTopologyState {
std::uint64_t neural_samples_added = 0;
std::uint64_t neural_training_steps = 0;
std::uint64_t neural_seed_count = 0;
std::uint64_t transformer_candidates_scored = 0;
std::uint64_t transformer_candidates_selected = 0;
std::uint64_t transformer_control_seeds = 0;
std::uint64_t transformer_invalid_predictions = 0;
std::uint64_t training_verified_records = 0;
std::uint64_t training_fp32_records = 0;
std::uint64_t training_seed_records = 0;
@@ -2897,7 +2905,8 @@ szilassi::training::CommonContext make_training_context(
context.topology_fingerprint = topology_fingerprint();
context.algorithm_fingerprint = training_hash_text(
options.use_cuda
? "hybrid-quality-diversity-neural-v3-cuda-fp32"
? "hybrid-quality-diversity-neural-v3-transformer-v1-cuda-fp32:" +
g_transformer_model_id
: "cpu-parallel-simulated-annealing-double");
static const std::uint64_t build_fingerprint = training_hash_text(
std::string(__DATE__) + " " + __TIME__);
@@ -3036,14 +3045,44 @@ std::filesystem::path neural_model_relative_path(int topology) {
"_s" + std::to_string(GLOBAL_NEURAL_SCHEMA_VERSION) + ".szonn");
}
std::filesystem::path transformer_model_relative_path() {
return std::filesystem::path("neural") / "transformer" / "current.sztf";
}
std::string transformer_digest_hex(
const std::array<std::uint8_t, szilassi::transformer::kTrainingDigestBytes>& digest
) {
static constexpr char digits[] = "0123456789abcdef";
std::string result;
result.reserve(digest.size() * 2);
for (const std::uint8_t value : digest) {
result.push_back(digits[value >> 4]);
result.push_back(digits[value & 0x0fU]);
}
return result;
}
std::string transformer_model_id(
const szilassi::transformer::Metadata& metadata
) {
std::ostringstream out;
out << transformer_digest_hex(metadata.training_digest)
<< "-s" << metadata.training_seed
<< "-p" << std::hex << std::setw(8) << std::setfill('0')
<< metadata.payload_crc32;
return out.str();
}
bool scan_neural_cache_bytes(
const std::filesystem::path& root,
std::uint64_t& bytes,
std::array<std::uint64_t, NUM_TOPOLOGIES>& final_snapshot_bytes,
std::uint64_t& transformer_snapshot_bytes,
std::string& error
) {
bytes = 0;
final_snapshot_bytes.fill(0);
transformer_snapshot_bytes = 0;
std::error_code exists_error;
const bool exists = std::filesystem::exists(root, exists_error);
if (exists_error) {
@@ -3088,6 +3127,9 @@ bool scan_neural_cache_bytes(
break;
}
}
if (relative == transformer_model_relative_path()) {
transformer_snapshot_bytes = size;
}
}
iterator.increment(iterator_error);
}
@@ -4328,6 +4370,9 @@ struct HybridSeedPool {
std::vector<GlobalMetrics> injected_metrics;
std::vector<NeuralPrediction> behavior_predictions;
std::vector<std::uint8_t> neural_guided;
// 0 = ordinary/MLP-only, 1 = selected by transformer rank, 2 =
// score-independent control retained beside transformer-ranked seeds.
std::vector<std::uint8_t> transformer_selection_mode;
std::vector<int> plane_actions;
std::vector<int> move_actions;
std::vector<int> scale_actions;
@@ -4340,6 +4385,10 @@ struct HybridSeedPool {
move_sampling_probabilities;
std::vector<std::array<float, szilassi::surrogate::kScaleCount>>
scale_sampling_probabilities;
std::uint64_t transformer_candidates_scored = 0;
std::uint64_t transformer_candidates_selected = 0;
std::uint64_t transformer_control_seeds = 0;
std::uint64_t transformer_invalid_predictions = 0;
};
NeuralInput make_neural_input(
@@ -4466,7 +4515,9 @@ void apply_neural_repair_move(
HybridSeedPool make_hybrid_seed_pool(
GlobalTopologyState& topology_state,
std::uint64_t seed,
int maximum_states
int maximum_states,
const szilassi::transformer::TransformerRanker* transformer_ranker = nullptr,
const szilassi::transformer::SearchBudget& transformer_budget = {}
) {
HybridSeedPool pool;
if (maximum_states <= 0) {
@@ -4479,6 +4530,7 @@ HybridSeedPool make_hybrid_seed_pool(
pool.injected_metrics.reserve(static_cast<std::size_t>(maximum_states));
pool.behavior_predictions.reserve(static_cast<std::size_t>(maximum_states));
pool.neural_guided.reserve(static_cast<std::size_t>(maximum_states));
pool.transformer_selection_mode.reserve(static_cast<std::size_t>(maximum_states));
pool.plane_actions.reserve(static_cast<std::size_t>(maximum_states));
pool.move_actions.reserve(static_cast<std::size_t>(maximum_states));
pool.scale_actions.reserve(static_cast<std::size_t>(maximum_states));
@@ -4489,7 +4541,9 @@ HybridSeedPool make_hybrid_seed_pool(
pool.move_sampling_probabilities.reserve(static_cast<std::size_t>(maximum_states));
pool.scale_sampling_probabilities.reserve(static_cast<std::size_t>(maximum_states));
auto append = [&](const VectorXd& injected_x,
auto append_to = [&](HybridSeedPool& destination,
int destination_limit,
const VectorXd& injected_x,
const GlobalMetrics& injected_metrics,
const VectorXd& training_x,
const NeuralInput& training_input,
@@ -4507,8 +4561,9 @@ HybridSeedPool make_hybrid_seed_pool(
const std::array<float, szilassi::surrogate::kMoveCount>&
move_sampling_probabilities,
const std::array<float, szilassi::surrogate::kScaleCount>&
scale_sampling_probabilities) {
if (static_cast<int>(pool.states.size()) >= maximum_states ||
scale_sampling_probabilities,
std::uint8_t transformer_selection_mode) {
if (static_cast<int>(destination.states.size()) >= destination_limit ||
injected_x.size() != GLOBAL_PLANE_VALUE_COUNT ||
training_x.size() != GLOBAL_PLANE_VALUE_COUNT ||
!injected_x.allFinite() || !std::isfinite(injected_metrics.energy) ||
@@ -4523,22 +4578,23 @@ HybridSeedPool make_hybrid_seed_pool(
training_value.values[static_cast<std::size_t>(component)] =
static_cast<float>(training_x[component]);
}
pool.states.push_back(value);
pool.training_states.push_back(training_value);
pool.inputs.push_back(training_input);
pool.metrics.push_back(training_metrics);
pool.injected_metrics.push_back(injected_metrics);
pool.behavior_predictions.push_back(behavior_prediction);
pool.neural_guided.push_back(guided ? 1u : 0u);
pool.plane_actions.push_back(plane_action);
pool.move_actions.push_back(move_action);
pool.scale_actions.push_back(scale_action);
pool.plane_propensities.push_back(static_cast<float>(plane_propensity));
pool.move_propensities.push_back(static_cast<float>(move_propensity));
pool.scale_propensities.push_back(static_cast<float>(scale_propensity));
pool.plane_sampling_probabilities.push_back(plane_sampling_probabilities);
pool.move_sampling_probabilities.push_back(move_sampling_probabilities);
pool.scale_sampling_probabilities.push_back(scale_sampling_probabilities);
destination.states.push_back(value);
destination.training_states.push_back(training_value);
destination.inputs.push_back(training_input);
destination.metrics.push_back(training_metrics);
destination.injected_metrics.push_back(injected_metrics);
destination.behavior_predictions.push_back(behavior_prediction);
destination.neural_guided.push_back(guided ? 1u : 0u);
destination.transformer_selection_mode.push_back(transformer_selection_mode);
destination.plane_actions.push_back(plane_action);
destination.move_actions.push_back(move_action);
destination.scale_actions.push_back(scale_action);
destination.plane_propensities.push_back(static_cast<float>(plane_propensity));
destination.move_propensities.push_back(static_cast<float>(move_propensity));
destination.scale_propensities.push_back(static_cast<float>(scale_propensity));
destination.plane_sampling_probabilities.push_back(plane_sampling_probabilities);
destination.move_sampling_probabilities.push_back(move_sampling_probabilities);
destination.scale_sampling_probabilities.push_back(scale_sampling_probabilities);
};
// Base seeds do not sample an action. A zero distribution records that
@@ -4565,7 +4621,9 @@ HybridSeedPool make_hybrid_seed_pool(
x[component] = static_cast<double>(value.values[static_cast<std::size_t>(component)]);
}
const GlobalMetrics metrics = evaluate_global_state(x, true, scratch);
append(
append_to(
pool,
maximum_states,
x,
metrics,
x,
@@ -4581,7 +4639,8 @@ HybridSeedPool make_hybrid_seed_pool(
1.0,
no_plane_sampling_distribution,
no_move_sampling_distribution,
no_scale_sampling_distribution);
no_scale_sampling_distribution,
0);
}
if (guided_target == 0) {
@@ -4593,6 +4652,9 @@ HybridSeedPool make_hybrid_seed_pool(
GlobalMetrics metrics;
NeuralInput input{};
NeuralPrediction prediction{};
NeuralPrediction control_prediction{};
bool learned_prediction = false;
bool control_learned_prediction = false;
double acquisition = 0.0;
};
std::vector<Anchor> anchors;
@@ -4619,27 +4681,117 @@ HybridSeedPool make_hybrid_seed_pool(
0.0});
}
const bool model_ready = topology_state.neural != nullptr &&
const bool online_model_ready = topology_state.neural != nullptr &&
topology_state.neural->replay_size() >= 128;
const bool transformer_ready = transformer_ranker != nullptr &&
transformer_ranker->ready();
auto default_prediction = []() {
NeuralPrediction prediction;
prediction.plane_probabilities.fill(
1.0f / static_cast<float>(cuda_search::kPlaneCount));
prediction.move_probabilities.fill(
1.0f / static_cast<float>(szilassi::surrogate::kMoveCount));
prediction.scale_probabilities = {{0.25f, 0.55f, 0.20f}};
// This is a valid neutral policy/value fallback, not a failed model
// inference. Keeping it finite also prevents transformer value heads
// trained on injected proposals from leaking into anchor telemetry.
prediction.finite = true;
return prediction;
};
auto transformer_as_neural = [](const szilassi::transformer::Prediction& source) {
NeuralPrediction result;
result.improvement_logit = source.improvement_logit;
result.improvement_probability = source.improvement_probability;
result.expected_defect_gain = source.expected_defect_gain;
result.uncertainty = source.improvement_probability_variance;
result.plane_probabilities = source.plane_probabilities;
result.move_probabilities = source.move_probabilities;
result.scale_probabilities = source.scale_probabilities;
result.finite = source.finite;
return result;
};
auto blend_predictions = [](const NeuralPrediction& local,
const NeuralPrediction& global) {
if (!global.finite) return local;
if (!local.finite) return global;
NeuralPrediction blended;
constexpr float global_weight = 0.65f;
constexpr float local_weight = 1.0f - global_weight;
// Transformer value heads are trained on injected proposals. Anchor
// inference is used only for its policy heads; keep the local online
// value estimate instead of evaluating the global value head OOD.
blended.improvement_logit = local.improvement_logit;
blended.improvement_probability = local.improvement_probability;
blended.expected_defect_gain = local.expected_defect_gain;
blended.uncertainty = local.uncertainty;
for (std::size_t i = 0; i < blended.plane_probabilities.size(); ++i) {
blended.plane_probabilities[i] =
local_weight * local.plane_probabilities[i] +
global_weight * global.plane_probabilities[i];
}
for (std::size_t i = 0; i < blended.move_probabilities.size(); ++i) {
blended.move_probabilities[i] =
local_weight * local.move_probabilities[i] +
global_weight * global.move_probabilities[i];
}
for (std::size_t i = 0; i < blended.scale_probabilities.size(); ++i) {
blended.scale_probabilities[i] =
local_weight * local.scale_probabilities[i] +
global_weight * global.scale_probabilities[i];
}
blended.finite = true;
return blended;
};
auto make_transformer_features = [&](const VectorXd& x,
const GlobalMetrics& metrics,
bool guided,
szilassi::transformer::Features& features) {
szilassi::transformer::FeatureInput input;
input.state = training_plane_state(x);
input.metrics = training_metrics(metrics);
input.budget = transformer_budget;
input.topology = static_cast<std::uint32_t>(topology_state.topology);
input.guided_context = guided;
return szilassi::transformer::make_features(input, features, nullptr);
};
std::uint64_t transformer_anchor_invalid_predictions = 0;
for (Anchor& anchor : anchors) {
if (model_ready) {
if (online_model_ready) {
anchor.prediction = topology_state.neural->predict(anchor.input);
}
if (!anchor.prediction.finite) {
anchor.prediction.plane_probabilities.fill(
1.0f / static_cast<float>(cuda_search::kPlaneCount));
anchor.prediction.move_probabilities.fill(
1.0f / static_cast<float>(szilassi::surrogate::kMoveCount));
anchor.prediction.scale_probabilities = {{0.25f, 0.55f, 0.20f}};
anchor.prediction = default_prediction();
}
anchor.control_prediction = anchor.prediction;
anchor.control_learned_prediction = online_model_ready &&
anchor.prediction.finite;
const double uncertainty = std::sqrt(std::max(
0.0,
static_cast<double>(anchor.prediction.uncertainty)));
anchor.acquisition = model_ready
anchor.acquisition = online_model_ready
? static_cast<double>(anchor.prediction.expected_defect_gain) +
0.75 * uncertainty +
0.10 * static_cast<double>(anchor.prediction.improvement_probability)
: 0.0;
if (transformer_ready) {
szilassi::transformer::Features features;
if (make_transformer_features(anchor.x, anchor.metrics, true, features)) {
const NeuralPrediction global_prediction = transformer_as_neural(
transformer_ranker->predict(features));
if (global_prediction.finite) {
anchor.prediction = blend_predictions(
anchor.prediction,
global_prediction);
anchor.learned_prediction = true;
} else {
++transformer_anchor_invalid_predictions;
}
} else {
++transformer_anchor_invalid_predictions;
}
}
anchor.learned_prediction = anchor.learned_prediction ||
(online_model_ready && anchor.prediction.finite);
}
std::stable_sort(anchors.begin(), anchors.end(), [](const Anchor& left, const Anchor& right) {
if (left.acquisition != right.acquisition) {
@@ -4650,9 +4802,18 @@ HybridSeedPool make_hybrid_seed_pool(
RNG rng(static_cast<RNG::result_type>(seed));
std::normal_distribution<double> normal(0.0, 1.0);
HybridSeedPool proposals;
proposals.transformer_invalid_predictions =
transformer_anchor_invalid_predictions;
const int proposal_target = transformer_ready
? std::max(guided_target, guided_target * 4)
: guided_target;
const int control_target = transformer_ready
? std::min(4, guided_target)
: 0;
int attempts = 0;
while (std::count(pool.neural_guided.begin(), pool.neural_guided.end(), 1u) < guided_target &&
attempts < guided_target * 12) {
while (static_cast<int>(proposals.states.size()) < proposal_target &&
attempts < proposal_target * 16) {
++attempts;
std::size_t anchor_index = 0;
if (attempts % 4 == 0) {
@@ -4663,6 +4824,14 @@ HybridSeedPool make_hybrid_seed_pool(
std::min<std::size_t>(8, anchors.size());
}
const Anchor& anchor = anchors[anchor_index];
const bool score_independent_control =
static_cast<int>(proposals.states.size()) < control_target;
const NeuralPrediction& action_prediction = score_independent_control
? anchor.control_prediction
: anchor.prediction;
const bool learned_action_prediction = score_independent_control
? anchor.control_learned_prediction
: anchor.learned_prediction;
std::array<double, szilassi::surrogate::kPlaneCount> plane_bias{};
const std::uint16_t failure_mask = static_cast<std::uint16_t>(
anchor.metrics.crossing_face_mask | anchor.metrics.intersection_face_mask);
@@ -4681,23 +4850,23 @@ HybridSeedPool make_hybrid_seed_pool(
std::array<float, szilassi::surrogate::kScaleCount>
scale_sampling_probabilities{};
const int plane = sample_neural_action(
anchor.prediction.plane_probabilities,
model_ready ? 0.25 : 0.65,
action_prediction.plane_probabilities,
learned_action_prediction ? 0.25 : 0.65,
rng,
&plane_propensity,
&plane_bias,
&plane_sampling_probabilities);
const int move = sample_neural_action(
anchor.prediction.move_probabilities,
model_ready ? 0.25 : 0.65,
action_prediction.move_probabilities,
learned_action_prediction ? 0.25 : 0.65,
rng,
&move_propensity,
static_cast<const std::array<
double, szilassi::surrogate::kMoveCount>*>(nullptr),
&move_sampling_probabilities);
const int scale = sample_neural_action(
anchor.prediction.scale_probabilities,
model_ready ? 0.25 : 0.50,
action_prediction.scale_probabilities,
learned_action_prediction ? 0.25 : 0.50,
rng,
&scale_propensity,
static_cast<const std::array<
@@ -4709,13 +4878,15 @@ HybridSeedPool make_hybrid_seed_pool(
if (!round_trip_global_state_to_fp32(candidate, candidate_metrics)) {
continue;
}
append(
append_to(
proposals,
proposal_target,
candidate,
candidate_metrics,
anchor.x,
anchor.input,
anchor.metrics,
anchor.prediction,
action_prediction,
true,
plane,
move,
@@ -4725,7 +4896,141 @@ HybridSeedPool make_hybrid_seed_pool(
scale_propensity,
plane_sampling_probabilities,
move_sampling_probabilities,
scale_sampling_probabilities);
scale_sampling_probabilities,
0);
}
auto copy_proposal = [&](std::size_t index, std::uint8_t selection_mode) {
if (index >= proposals.states.size()) return;
VectorXd injected_x(GLOBAL_PLANE_VALUE_COUNT);
VectorXd training_x(GLOBAL_PLANE_VALUE_COUNT);
for (int component = 0; component < GLOBAL_PLANE_VALUE_COUNT; ++component) {
injected_x[component] = static_cast<double>(
proposals.states[index].values[static_cast<std::size_t>(component)]);
training_x[component] = static_cast<double>(
proposals.training_states[index].values[static_cast<std::size_t>(component)]);
}
append_to(
pool,
maximum_states,
injected_x,
proposals.injected_metrics[index],
training_x,
proposals.inputs[index],
proposals.metrics[index],
proposals.behavior_predictions[index],
true,
proposals.plane_actions[index],
proposals.move_actions[index],
proposals.scale_actions[index],
proposals.plane_propensities[index],
proposals.move_propensities[index],
proposals.scale_propensities[index],
proposals.plane_sampling_probabilities[index],
proposals.move_sampling_probabilities[index],
proposals.scale_sampling_probabilities[index],
selection_mode);
};
if (!transformer_ready || proposals.states.size() <=
static_cast<std::size_t>(guided_target)) {
for (std::size_t index = 0;
index < proposals.states.size() &&
index < static_cast<std::size_t>(guided_target);
++index) {
copy_proposal(index, 0);
}
return pool;
}
const std::size_t controls = std::min<std::size_t>(
static_cast<std::size_t>(control_target),
proposals.states.size());
for (std::size_t index = 0; index < controls; ++index) {
copy_proposal(index, 2);
++pool.transformer_control_seeds;
}
struct RankedProposal {
std::size_t index = 0;
double acquisition = -std::numeric_limits<double>::infinity();
};
std::vector<szilassi::transformer::Features> rank_features;
std::vector<std::size_t> rank_indices;
rank_features.reserve(proposals.states.size() - controls);
rank_indices.reserve(proposals.states.size() - controls);
for (std::size_t index = controls; index < proposals.states.size(); ++index) {
VectorXd candidate(GLOBAL_PLANE_VALUE_COUNT);
for (int component = 0; component < GLOBAL_PLANE_VALUE_COUNT; ++component) {
candidate[component] = static_cast<double>(
proposals.states[index].values[static_cast<std::size_t>(component)]);
}
szilassi::transformer::Features features;
if (make_transformer_features(
candidate,
proposals.injected_metrics[index],
true,
features)) {
rank_features.push_back(features);
rank_indices.push_back(index);
} else {
++pool.transformer_invalid_predictions;
}
}
const std::vector<szilassi::transformer::Prediction> rank_predictions =
transformer_ranker->predict_batch(rank_features);
std::vector<RankedProposal> ranked;
ranked.reserve(rank_predictions.size());
for (std::size_t item = 0;
item < rank_predictions.size() && item < rank_indices.size();
++item) {
const szilassi::transformer::Prediction& prediction = rank_predictions[item];
if (!prediction.finite) {
++pool.transformer_invalid_predictions;
continue;
}
++pool.transformer_candidates_scored;
const double probability = std::clamp(
static_cast<double>(prediction.improvement_probability),
0.0,
1.0);
const double expected_gain = std::clamp(
static_cast<double>(prediction.expected_defect_gain),
-8.0,
8.0);
const double uncertainty = std::sqrt(std::max(
0.0,
static_cast<double>(prediction.improvement_probability_variance)));
ranked.push_back(RankedProposal{
rank_indices[item],
probability * (1.0 + std::max(0.0, expected_gain)) +
0.15 * uncertainty});
}
std::stable_sort(ranked.begin(), ranked.end(), [](const auto& left, const auto& right) {
if (left.acquisition != right.acquisition) {
return left.acquisition > right.acquisition;
}
return left.index < right.index;
});
const std::size_t ranked_target = static_cast<std::size_t>(guided_target) - controls;
std::unordered_set<std::size_t> selected_indices;
std::size_t filled_ranked_slots = 0;
for (std::size_t item = 0;
item < ranked.size() && item < ranked_target;
++item) {
copy_proposal(ranked[item].index, 1);
selected_indices.insert(ranked[item].index);
++filled_ranked_slots;
++pool.transformer_candidates_selected;
}
for (std::size_t index = controls;
filled_ranked_slots < ranked_target &&
index < proposals.states.size();
++index) {
if (selected_indices.insert(index).second) {
copy_proposal(index, 0);
++filled_ranked_slots;
}
}
return pool;
}
@@ -4738,6 +5043,7 @@ bool complete_hybrid_seed(const HybridSeedPool& pool, std::size_t index) {
index < pool.injected_metrics.size() &&
index < pool.behavior_predictions.size() &&
index < pool.neural_guided.size() &&
index < pool.transformer_selection_mode.size() &&
index < pool.plane_actions.size() &&
index < pool.move_actions.size() &&
index < pool.scale_actions.size() &&
@@ -4833,6 +5139,11 @@ std::uint64_t archive_hybrid_seed_pool(
if (pool.neural_guided[index] != 0) {
record.flags |= szilassi::training::SeedProposalNeuralGuided;
}
if (pool.transformer_selection_mode[index] == 1) {
record.flags |= szilassi::training::SeedProposalTransformerRanked;
} else if (pool.transformer_selection_mode[index] == 2) {
record.flags |= szilassi::training::SeedProposalTransformerControl;
}
if (!append_training_record(archive, record)) {
if (archive->fatal_error || !archive->writer->collection_enabled()) {
break;
@@ -5687,7 +5998,7 @@ bool write_run_manifest(
<< "cuda_session_cache\t" << effective_cuda_session_cache << "\n"
<< "algorithm\t"
<< (options.use_cuda
? "hybrid-quality-diversity-neural-v3"
? "hybrid-quality-diversity-neural-v3-transformer-ranker-v1"
: "cpu-parallel-simulated-annealing") << "\n"
<< "control_baseline_min_fraction\t0.25\n"
<< "strategy_weights\tadaptive-total:16,floors:baseline4/replica1/adaptive1/pbt1/injected3,max6\n"
@@ -5715,6 +6026,11 @@ bool write_run_manifest(
? "per-topology-ensemble:5,residual-mlp:45-128-128-128,value-policy,online-adamw,replay:4096,recent:25%"
: "disabled") << "\n"
<< "neural_safety\tbaseline-floor:25%,policy-exploration:25%,exact-cuda-plus-cpu-dd-authoritative\n"
<< "transformer_enabled\t" << (g_transformer_active ? 1 : 0) << "\n"
<< "transformer_model_id\t" << g_transformer_model_id << "\n"
<< "transformer\tglobal-ensemble:3,set-transformer:12-faces-plus-cls,width:64,heads:4,layers:3,ff:256,host-fp32-ranker\n"
<< "transformer_scope\tguided-seeds-only,ranked:12/64,score-independent-controls:4/64,map-cem-random:48/64\n"
<< "transformer_failure_mode\tmissing-invalid-nonfinite:fallback-to-online-mlp\n"
<< "training_archive_schema\t" << TRAINING_ARCHIVE_SCHEMA_VERSION << "\n"
<< "training_archive_format\t" << szilassi::training::kTrainingShardFormatVersion << "\n"
<< "training_archive_layout\trun-uuid/immutable-64MiB-crc-shards-plus-durable-wal\n"
@@ -5900,7 +6216,8 @@ bool run_global_topology_round_cuda(
int round_seed,
int effective_chain_count,
cuda_search::BatchSession& session,
TrainingArchiveSession* training_archive
TrainingArchiveSession* training_archive,
const szilassi::transformer::TransformerRanker* transformer_ranker
) {
const auto round_started_at = std::chrono::steady_clock::now();
state.last_round = {};
@@ -5951,6 +6268,7 @@ bool run_global_topology_round_cuda(
initial_pool_for_archive.injected_metrics.push_back(state.best);
initial_pool_for_archive.behavior_predictions.emplace_back();
initial_pool_for_archive.neural_guided.push_back(0);
initial_pool_for_archive.transformer_selection_mode.push_back(0);
initial_pool_for_archive.plane_actions.push_back(-1);
initial_pool_for_archive.move_actions.push_back(-1);
initial_pool_for_archive.scale_actions.push_back(-1);
@@ -6001,17 +6319,37 @@ bool run_global_topology_round_cuda(
std::max(0.002, options.step * (depth ? 0.025 : 0.05)));
run_config.injected_state_jitter = static_cast<float>(
std::max(0.002, options.step * (depth ? 0.018 : 0.04)));
const int estimated_injected_chains = std::max(
1,
(effective_chain_count * std::max(0, strategy_weights[4]) + 15) / 16);
const int estimated_chains_per_seed = std::max(
1,
(estimated_injected_chains + 63) / 64);
HybridSeedPool injected_pool = make_hybrid_seed_pool(
state,
static_cast<std::uint64_t>(static_cast<std::uint32_t>(round_seed)) +
static_cast<std::uint64_t>(batch + 1) * 0x9e3779b97f4a7c15ULL,
64);
64,
transformer_ranker,
szilassi::transformer::SearchBudget{
static_cast<std::uint64_t>(std::max(0, options.cuda_iterations)),
static_cast<std::uint32_t>(estimated_chains_per_seed),
static_cast<std::uint32_t>(estimated_chains_per_seed),
64U});
run_config.injected_states = injected_pool.states;
state.last_round.neural_seed_count += static_cast<std::uint64_t>(
std::count(
injected_pool.neural_guided.begin(),
injected_pool.neural_guided.end(),
static_cast<std::uint8_t>(1)));
state.last_round.transformer_candidates_scored +=
injected_pool.transformer_candidates_scored;
state.last_round.transformer_candidates_selected +=
injected_pool.transformer_candidates_selected;
state.last_round.transformer_control_seeds +=
injected_pool.transformer_control_seeds;
state.last_round.transformer_invalid_predictions +=
injected_pool.transformer_invalid_predictions;
if (batch == 0 && (previous_has_state || session_was_initialized)) {
run_config.fresh_numerator = depth ? 1 : 7;
run_config.fresh_denominator = depth ? 4 : 8;
@@ -6433,6 +6771,7 @@ bool run_global_topology_round_cuda(
seed_index >= injected_pool.injected_metrics.size() ||
seed_index >= injected_pool.behavior_predictions.size() ||
seed_index >= injected_pool.neural_guided.size() ||
seed_index >= injected_pool.transformer_selection_mode.size() ||
seed_index >= injected_pool.plane_actions.size() ||
seed_index >= injected_pool.move_actions.size() ||
seed_index >= injected_pool.scale_actions.size() ||
@@ -6488,7 +6827,9 @@ bool run_global_topology_round_cuda(
record.replica_count = rollout.replica_count;
// Best CPU-verified descendant among all chains assigned to
// this proposal in the batch.
record.selection_rule = 1;
record.selection_rule = 1U |
(static_cast<std::uint32_t>(
injected_pool.transformer_selection_mode[seed_index]) << 8U);
record.plane_action = injected_pool.plane_actions[seed_index];
record.move_action = injected_pool.move_actions[seed_index];
record.scale_action = injected_pool.scale_actions[seed_index];
@@ -6508,6 +6849,11 @@ bool run_global_topology_round_cuda(
if (injected_pool.neural_guided[seed_index] != 0) {
record.flags |= szilassi::training::TrajectoryNeuralGuided;
}
if (injected_pool.transformer_selection_mode[seed_index] == 1) {
record.flags |= szilassi::training::TrajectoryTransformerRanked;
} else if (injected_pool.transformer_selection_mode[seed_index] == 2) {
record.flags |= szilassi::training::TrajectoryTransformerControl;
}
if (injected_pool.behavior_predictions[seed_index].finite) {
record.flags |= szilassi::training::TrajectoryPredictionSupplied;
}
@@ -6784,7 +7130,8 @@ bool run_global_topology_round(
int round_seed,
int effective_cuda_chains,
cuda_search::BatchSession* cuda_session,
TrainingArchiveSession* training_archive
TrainingArchiveSession* training_archive,
const szilassi::transformer::TransformerRanker* transformer_ranker
) {
if (options.use_cuda) {
if (cuda_session == nullptr) {
@@ -6798,7 +7145,8 @@ bool run_global_topology_round(
round_seed,
effective_cuda_chains,
*cuda_session,
training_archive);
training_archive,
transformer_ranker);
}
const auto round_started_at = std::chrono::steady_clock::now();
state.last_round = {};
@@ -7008,6 +7356,8 @@ int global_search_all(const LocalRepairOptions& options) {
}
const std::filesystem::path root(options.global_dir);
std::filesystem::create_directories(root);
g_transformer_active = false;
g_transformer_model_id = "none";
const szilassi::checkpoint::RunIdentity run_identity =
szilassi::checkpoint::make_run_identity();
g_global_degeneracy_weight = options.degeneracy_weight;
@@ -7042,6 +7392,35 @@ int global_search_all(const LocalRepairOptions& options) {
<< std::endl;
}
szilassi::transformer::TransformerRanker transformer_ranker;
if (options.use_cuda) {
const std::filesystem::path model_path =
root / transformer_model_relative_path();
if (std::filesystem::exists(model_path)) {
std::string transformer_error;
if (transformer_ranker.load(model_path, &transformer_error) &&
transformer_ranker.ready()) {
const szilassi::transformer::Metadata metadata =
transformer_ranker.metadata();
g_transformer_active = true;
g_transformer_model_id = transformer_model_id(metadata);
std::cout << "Transformer ranker: " << g_transformer_model_id
<< ", validation AP " << metadata.validation.average_precision
<< ", top-k gain " << metadata.validation.top_k_gain
<< std::endl;
} else {
std::cerr << "Ignoring invalid transformer ranker: "
<< transformer_error
<< "; online MLP and ordinary search remain active."
<< std::endl;
}
} else {
std::cout << "Transformer ranker: no approved model yet; "
"online MLP and ordinary search remain active."
<< std::endl;
}
}
const unsigned int hardware_threads = std::thread::hardware_concurrency();
const int worker_count = std::max(
1,
@@ -7093,11 +7472,13 @@ int global_search_all(const LocalRepairOptions& options) {
std::uint64_t existing_neural_bytes = 0;
std::array<std::uint64_t, NUM_TOPOLOGIES>
existing_final_neural_snapshot_bytes{};
std::uint64_t existing_transformer_snapshot_bytes = 0;
std::string training_setup_error;
if (!scan_neural_cache_bytes(
root,
existing_neural_bytes,
existing_final_neural_snapshot_bytes,
existing_transformer_snapshot_bytes,
training_setup_error)) {
std::cerr << "Cannot account existing neural cache: "
<< training_setup_error << std::endl;
@@ -7119,6 +7500,17 @@ int global_search_all(const LocalRepairOptions& options) {
watcher.join();
return 2;
}
const std::uint64_t maximum_transformer_snapshot =
szilassi::transformer::maximum_model_bytes();
if (maximum_transformer_snapshot > TRANSFORMER_MODEL_BUDGET) {
std::cerr << "Configured transformer snapshot no longer fits its exact cache budget; "
<< "revise the program before collecting more training data."
<< std::endl;
stop_requested.store(true, std::memory_order_relaxed);
watcher_done.store(true, std::memory_order_relaxed);
watcher.join();
return 2;
}
// Count every byte that is already present, then reserve the missing
// capacity of each canonical final-model slot independently. Taking the
// maximum of aggregate existing/reserved bytes would undercount orphan or
@@ -7142,6 +7534,19 @@ int global_search_all(const LocalRepairOptions& options) {
}
accounted_neural_files += missing_slot_bytes;
}
if (existing_transformer_snapshot_bytes < TRANSFORMER_MODEL_BUDGET) {
const std::uint64_t missing_transformer_slot =
TRANSFORMER_MODEL_BUDGET - existing_transformer_snapshot_bytes;
if (missing_transformer_slot >
std::numeric_limits<std::uint64_t>::max() - accounted_neural_files) {
std::cerr << "Transformer cache byte-count overflow." << std::endl;
stop_requested.store(true, std::memory_order_relaxed);
watcher_done.store(true, std::memory_order_relaxed);
watcher.join();
return 2;
}
accounted_neural_files += missing_transformer_slot;
}
if (maximum_neural_snapshot >
std::numeric_limits<std::uint64_t>::max() - accounted_neural_files) {
std::cerr << "Neural cache byte-count overflow." << std::endl;
@@ -7152,8 +7557,24 @@ int global_search_all(const LocalRepairOptions& options) {
}
// Atomic save temporarily keeps the previous final snapshot and one full
// replacement. Existing orphan/foreign files remain separately accounted.
// Transformer publication retains the current file while creating one
// immutable generation and one atomic replacement temporary.
const std::uint64_t transformer_publication_reserve =
maximum_transformer_snapshot * 2ULL;
if (maximum_neural_snapshot >
std::numeric_limits<std::uint64_t>::max() - accounted_neural_files ||
transformer_publication_reserve >
std::numeric_limits<std::uint64_t>::max() -
(accounted_neural_files + maximum_neural_snapshot)) {
std::cerr << "Neural cache byte-count overflow." << std::endl;
stop_requested.store(true, std::memory_order_relaxed);
watcher_done.store(true, std::memory_order_relaxed);
watcher.join();
return 2;
}
const std::uint64_t neural_model_reserve =
accounted_neural_files + maximum_neural_snapshot;
accounted_neural_files + maximum_neural_snapshot +
transformer_publication_reserve;
szilassi::training::RecoveryReport training_recovery;
const std::uint64_t training_archive_allocation =
neural_model_reserve < TRAINING_CACHE_LIMIT_BYTES
@@ -7279,6 +7700,7 @@ int global_search_all(const LocalRepairOptions& options) {
<< "\trex_attempts\trex_accepts\tspsa_attempted\tspsa_accepted"
<< "\tbest_crossing_loss\tbest_intersection_loss"
<< "\tneural_replay\tneural_positive\tneural_samples\tneural_train_steps\tneural_seeds"
<< "\ttransformer_scored\ttransformer_selected\ttransformer_controls\ttransformer_invalid"
<< "\ttraining_verified\ttraining_fp32\ttraining_seeds"
<< "\ttraining_rollouts\ttraining_refinements"
<< "\ttraining_cache_accounted_bytes\ttraining_wal_bytes"
@@ -7331,6 +7753,9 @@ int global_search_all(const LocalRepairOptions& options) {
<< std::endl;
if (options.use_cuda) {
std::cout << "Guidance : smooth-I repair + per-topology online neural ensemble"
<< (g_transformer_active
? " + global transformer ranker"
: " + transformer fallback inactive")
<< std::endl;
}
std::cout << "Training data: CPU-verified states, sampled chain bests and injected trajectories, "
@@ -7533,7 +7958,8 @@ int global_search_all(const LocalRepairOptions& options) {
round_seed,
effective_cuda_chains,
cuda_session,
&training_archive);
&training_archive,
g_transformer_active ? &transformer_ranker : nullptr);
if (training_archive.fatal_error) {
fatal_search_error = true;
stop_requested.store(true, std::memory_order_relaxed);
@@ -7584,6 +8010,16 @@ int global_search_all(const LocalRepairOptions& options) {
<< (state.neural != nullptr
? ", neural replay " + std::to_string(state.neural->replay_size())
: std::string{})
<< (g_transformer_active
? ", transformer " +
std::to_string(
state.last_round.transformer_candidates_selected) +
"/" + std::to_string(
state.last_round.transformer_candidates_scored) +
" + " + std::to_string(
state.last_round.transformer_control_seeds) +
" control"
: std::string{})
<< ", bandit " << std::fixed << std::setprecision(3)
<< selection_score
<< ", elapsed " << std::fixed << std::setprecision(1)
@@ -7624,6 +8060,10 @@ int global_search_all(const LocalRepairOptions& options) {
<< state.last_round.neural_samples_added << "\t"
<< state.last_round.neural_training_steps << "\t"
<< state.last_round.neural_seed_count << "\t"
<< state.last_round.transformer_candidates_scored << "\t"
<< state.last_round.transformer_candidates_selected << "\t"
<< state.last_round.transformer_control_seeds << "\t"
<< state.last_round.transformer_invalid_predictions << "\t"
<< state.last_round.training_verified_records << "\t"
<< state.last_round.training_fp32_records << "\t"
<< state.last_round.training_seed_records << "\t"
@@ -0,0 +1,86 @@
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup Label="ProjectConfigurations">
<ProjectConfiguration Include="Debug|Win32">
<Configuration>Debug</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|Win32">
<Configuration>Release</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Debug|x64">
<Configuration>Debug</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|x64">
<Configuration>Release</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
</ItemGroup>
<PropertyGroup Label="Globals">
<VCProjectVersion>18.0</VCProjectVersion>
<Keyword>Win32Proj</Keyword>
<ProjectGuid>{D92AA5A6-F198-44F0-B8C1-0EB2FAE167D9}</ProjectGuid>
<RootNamespace>TransformerTrainingExport</RootNamespace>
<WindowsTargetPlatformVersion>10.0.26100.0</WindowsTargetPlatformVersion>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<PropertyGroup Condition="'$(Configuration)'=='Debug'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<UseDebugLibraries>true</UseDebugLibraries>
<PlatformToolset>v145</PlatformToolset>
<CharacterSet>Unicode</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)'=='Release'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<UseDebugLibraries>false</UseDebugLibraries>
<PlatformToolset>v145</PlatformToolset>
<WholeProgramOptimization>true</WholeProgramOptimization>
<CharacterSet>Unicode</CharacterSet>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
<PropertyGroup Label="UserMacros" />
<PropertyGroup>
<RepositoryRoot>$([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\..\'))</RepositoryRoot>
<OutDir>$(RepositoryRoot)build\msbuild\bin\$(Platform)\$(Configuration)\</OutDir>
<IntDir>$(RepositoryRoot)build\msbuild\obj\$(ProjectName)\$(Platform)\$(Configuration)\</IntDir>
<LocalDebuggerWorkingDirectory>$(RepositoryRoot)</LocalDebuggerWorkingDirectory>
</PropertyGroup>
<ItemDefinitionGroup>
<ClCompile>
<LanguageStandard>stdcpp17</LanguageStandard>
<WarningLevel>Level4</WarningLevel>
<SDLCheck>true</SDLCheck>
<ConformanceMode>true</ConformanceMode>
<MultiProcessorCompilation>true</MultiProcessorCompilation>
<PreprocessorDefinitions>UNICODE;_UNICODE;NOMINMAX;WIN32_LEAN_AND_MEAN;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<AdditionalIncludeDirectories>$(RepositoryRoot)src\TrainingArchive;$(RepositoryRoot)src\TransformerRanker;$(RepositoryRoot)external\eigen-3.4.0;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<AdditionalOptions>/utf-8 /permissive- %(AdditionalOptions)</AdditionalOptions>
</ClCompile>
<Link>
<SubSystem>Console</SubSystem>
<GenerateDebugInformation>true</GenerateDebugInformation>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)'=='Release'">
<ClCompile>
<FunctionLevelLinking>true</FunctionLevelLinking>
<IntrinsicFunctions>true</IntrinsicFunctions>
</ClCompile>
<Link>
<EnableCOMDATFolding>true</EnableCOMDATFolding>
<OptimizeReferences>true</OptimizeReferences>
</Link>
</ItemDefinitionGroup>
<ItemGroup>
<ClCompile Include="transformer_training_export.cpp" />
<ClCompile Include="..\..\src\TrainingArchive\TrainingArchive.cpp" />
<ClCompile Include="..\..\src\TransformerRanker\TransformerRanker.cpp" />
</ItemGroup>
<ItemGroup>
<ClInclude Include="..\..\src\TrainingArchive\TrainingArchive.h" />
<ClInclude Include="..\..\src\TransformerRanker\TransformerRanker.h" />
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
</Project>
@@ -0,0 +1,683 @@
#include "../../src/TrainingArchive/TrainingArchive.h"
#include "../../src/TransformerRanker/TransformerRanker.h"
#include <algorithm>
#include <array>
#include <cctype>
#include <cmath>
#include <cstdint>
#include <cstdio>
#include <cstring>
#include <filesystem>
#include <iostream>
#include <limits>
#include <optional>
#include <set>
#include <string>
#include <tuple>
#include <utility>
#include <vector>
#ifdef _WIN32
#include <fcntl.h>
#include <io.h>
#include <windows.h>
#endif
namespace {
namespace training = szilassi::training;
namespace transformer = szilassi::transformer;
constexpr std::array<char, 8> kExportMagic{{'S', 'Z', 'T', 'X', 'P', '0', '0', '1'}};
constexpr std::uint32_t kExportVersion = 1;
constexpr std::size_t kFaceCount = 12;
constexpr std::size_t kFaceFeatureCount = 16;
constexpr std::size_t kGlobalFeatureCount = 24;
constexpr std::size_t kFeatureFloatCount =
kFaceCount * kFaceFeatureCount + kGlobalFeatureCount;
// Stable packed little-endian record layout (there is no native-struct padding):
// 0 u8[16] canonical UUID bytes
// 16 u64 record_sequence
// 24 u32 topology
// 28 f32[216] proposal features (12x16 face, then 24 global)
// 892 f32[216] anchor features (12x16 face, then 24 global)
// 1756 i32 crossing_gain = anchor.C - result.C
// 1760 i32 intersection_gain = anchor.I - result.I
// 1764 i32 total_defect_gain
// 1768 u8 defect_improved (total_defect_gain > 0)
// 1769 u8 objective_better (TrajectoryImproved)
// 1770 u8 defect_count_tie (total_defect_gain == 0)
// 1771 u8 entered_archive
// 1772 i32[3] plane, move, scale actions (-1 means absent)
// 1784 f32[3] actual plane, move, scale propensities
// 1796 u32 replica_count / assigned chains
// 1800 u64 rollout_iterations
// 1808 u32 InjectedTrajectory flags
// 1812 u32 anchor Metrics flags
// 1816 u32 injected/proposal Metrics flags
// 1820 u32 result Metrics flags (contains MetricDdVerified when applicable)
constexpr std::uint32_t kExportRecordSize = 1824;
using FeatureFaceArray =
decltype(std::declval<transformer::Features>().face);
using FeatureFaceRow = typename FeatureFaceArray::value_type;
using FeatureGlobalArray =
decltype(std::declval<transformer::Features>().global);
static_assert(std::tuple_size<FeatureFaceArray>::value == kFaceCount,
"Transformer face count changed; bump the export format");
static_assert(std::tuple_size<FeatureFaceRow>::value == kFaceFeatureCount,
"Transformer face feature count changed; bump the export format");
static_assert(std::tuple_size<FeatureGlobalArray>::value == kGlobalFeatureCount,
"Transformer global feature count changed; bump the export format");
struct Options {
std::filesystem::path root;
std::set<std::string> included_runs;
bool root_supplied = false;
};
struct ShardSnapshot {
std::filesystem::path path;
std::string run_name;
training::RunId expected_run_id{};
std::optional<std::uint64_t> filename_index;
std::uint64_t size = 0;
};
void print_usage() {
std::cerr
<< "Usage: TransformerTrainingExport --root <results/search> "
"[--include-run <UUID>]...\n"
<< "Writes SZTXP001 version-1 packed little-endian records to stdout.\n";
}
int hexadecimal_digit(char value) {
if (value >= '0' && value <= '9') return value - '0';
if (value >= 'a' && value <= 'f') return 10 + value - 'a';
if (value >= 'A' && value <= 'F') return 10 + value - 'A';
return -1;
}
bool parse_canonical_uuid(
const std::string& text,
std::string& normalized,
training::RunId& run_id
) {
constexpr std::array<std::size_t, 4> kHyphens{{8, 13, 18, 23}};
if (text.size() != 36) return false;
for (std::size_t position : kHyphens) {
if (text[position] != '-') return false;
}
normalized.clear();
normalized.reserve(text.size());
std::array<char, 32> hexadecimal{};
std::size_t digit_count = 0;
for (std::size_t index = 0; index < text.size(); ++index) {
if (std::find(kHyphens.begin(), kHyphens.end(), index) != kHyphens.end()) {
normalized.push_back('-');
continue;
}
const int digit = hexadecimal_digit(text[index]);
if (digit < 0 || digit_count >= hexadecimal.size()) return false;
const char lower = static_cast<char>(std::tolower(
static_cast<unsigned char>(text[index])));
hexadecimal[digit_count++] = lower;
normalized.push_back(lower);
}
if (digit_count != hexadecimal.size()) return false;
for (std::size_t index = 0; index < run_id.bytes.size(); ++index) {
const int high = hexadecimal_digit(hexadecimal[index * 2]);
const int low = hexadecimal_digit(hexadecimal[index * 2 + 1]);
run_id.bytes[index] = static_cast<std::uint8_t>((high << 4) | low);
}
return true;
}
bool parse_options(int argc, char* argv[], Options& options) {
for (int index = 1; index < argc; ++index) {
const std::string argument = argv[index];
if (argument == "--help" || argument == "-h") {
print_usage();
return false;
}
if (argument == "--root") {
if (++index >= argc || options.root_supplied) {
std::cerr << "--root requires exactly one path\n";
return false;
}
options.root = std::filesystem::path(argv[index]);
options.root_supplied = true;
continue;
}
if (argument == "--include-run") {
if (++index >= argc) {
std::cerr << "--include-run requires a canonical UUID\n";
return false;
}
std::string normalized;
training::RunId ignored;
if (!parse_canonical_uuid(argv[index], normalized, ignored)) {
std::cerr << "Invalid run UUID: " << argv[index] << '\n';
return false;
}
options.included_runs.insert(std::move(normalized));
continue;
}
std::cerr << "Unknown argument: " << argument << '\n';
return false;
}
if (!options.root_supplied || options.root.empty()) {
std::cerr << "--root is required\n";
return false;
}
return true;
}
std::optional<std::uint64_t> parse_shard_filename(
const std::filesystem::path& path
) {
const std::string filename = path.filename().string();
constexpr const char* kPrefix = "shard_";
constexpr const char* kSuffix = ".sztd";
constexpr std::size_t kPrefixSize = 6;
constexpr std::size_t kSuffixSize = 5;
if (filename.size() <= kPrefixSize + kSuffixSize ||
filename.compare(0, kPrefixSize, kPrefix) != 0 ||
filename.compare(filename.size() - kSuffixSize, kSuffixSize, kSuffix) != 0) {
return std::nullopt;
}
const std::string digits = filename.substr(
kPrefixSize,
filename.size() - kPrefixSize - kSuffixSize);
std::uint64_t value = 0;
for (char digit : digits) {
if (digit < '0' || digit > '9' ||
value > (std::numeric_limits<std::uint64_t>::max() - 9U) / 10U) {
return std::nullopt;
}
value = value * 10U + static_cast<unsigned>(digit - '0');
}
return value;
}
bool snapshot_shards(
const Options& options,
std::vector<ShardSnapshot>& shards,
std::string& error
) {
std::error_code path_error;
const std::filesystem::path absolute_root =
std::filesystem::absolute(options.root, path_error);
if (path_error) {
error = "Cannot resolve archive root: " + path_error.message();
return false;
}
const std::filesystem::path runs_root = absolute_root / "runs";
if (!std::filesystem::is_directory(runs_root, path_error) || path_error) {
error = "Archive runs directory does not exist: " + runs_root.string();
return false;
}
struct RunDirectory {
std::filesystem::path path;
std::string normalized_name;
training::RunId run_id{};
};
std::vector<RunDirectory> runs;
std::set<std::string> found_requested_runs;
std::filesystem::directory_iterator iterator(runs_root, path_error);
const std::filesystem::directory_iterator end;
if (path_error) {
error = "Cannot enumerate archive runs: " + path_error.message();
return false;
}
while (iterator != end) {
std::error_code type_error;
const bool is_directory = iterator->is_directory(type_error);
if (type_error) {
error = "Cannot inspect run directory entry: " + type_error.message();
return false;
}
if (is_directory) {
std::string normalized;
training::RunId run_id;
const std::string name = iterator->path().filename().string();
if (parse_canonical_uuid(name, normalized, run_id) &&
(options.included_runs.empty() ||
options.included_runs.count(normalized) != 0)) {
runs.push_back({iterator->path(), normalized, run_id});
found_requested_runs.insert(normalized);
}
}
iterator.increment(path_error);
if (path_error) {
error = "Cannot continue enumerating archive runs: " + path_error.message();
return false;
}
}
for (const std::string& requested : options.included_runs) {
if (found_requested_runs.count(requested) == 0) {
error = "Requested run does not exist below the archive root: " + requested;
return false;
}
}
std::sort(runs.begin(), runs.end(), [](const RunDirectory& left, const RunDirectory& right) {
return left.normalized_name < right.normalized_name;
});
for (const RunDirectory& run : runs) {
const std::filesystem::path training_directory = run.path / "training";
std::error_code exists_error;
const bool has_training =
std::filesystem::is_directory(training_directory, exists_error);
if (exists_error) {
error = "Cannot inspect training directory for run " +
run.normalized_name + ": " + exists_error.message();
return false;
}
if (!has_training) {
if (!options.included_runs.empty()) {
error = "Requested run has no training directory: " + run.normalized_name;
return false;
}
continue;
}
std::filesystem::directory_iterator shard_iterator(
training_directory,
exists_error);
if (exists_error) {
error = "Cannot enumerate training directory for run " +
run.normalized_name + ": " + exists_error.message();
return false;
}
while (shard_iterator != end) {
std::error_code file_error;
const bool regular = shard_iterator->is_regular_file(file_error);
if (file_error) {
error = "Cannot inspect training file: " + file_error.message();
return false;
}
const std::filesystem::path path = shard_iterator->path();
if (regular && path.extension() == ".sztd") {
const std::uint64_t size = shard_iterator->file_size(file_error);
if (file_error) {
error = "Cannot size training shard: " + file_error.message();
return false;
}
shards.push_back({
path,
run.normalized_name,
run.run_id,
parse_shard_filename(path),
size});
}
shard_iterator.increment(exists_error);
if (exists_error) {
error = "Cannot continue enumerating training shards: " +
exists_error.message();
return false;
}
}
}
std::sort(shards.begin(), shards.end(), [](const ShardSnapshot& left,
const ShardSnapshot& right) {
if (left.run_name != right.run_name) return left.run_name < right.run_name;
if (left.filename_index.has_value() != right.filename_index.has_value()) {
return left.filename_index.has_value();
}
if (left.filename_index && right.filename_index &&
*left.filename_index != *right.filename_index) {
return *left.filename_index < *right.filename_index;
}
return left.path.filename().string() < right.path.filename().string();
});
if (shards.empty()) {
error = "No sealed .sztd shards matched the requested runs";
return false;
}
return true;
}
class PackedRecord {
public:
void bytes(const std::uint8_t* values, std::size_t count) {
if (!room(count)) return;
std::memcpy(data_.data() + size_, values, count);
size_ += count;
}
void u8(std::uint8_t value) {
if (!room(1)) return;
data_[size_++] = value;
}
void u32(std::uint32_t value) {
if (!room(4)) return;
for (std::size_t byte = 0; byte < 4; ++byte) {
data_[size_++] = static_cast<std::uint8_t>(value >> (byte * 8));
}
}
void i32(std::int32_t value) {
std::uint32_t bits = 0;
std::memcpy(&bits, &value, sizeof(bits));
u32(bits);
}
void u64(std::uint64_t value) {
if (!room(8)) return;
for (std::size_t byte = 0; byte < 8; ++byte) {
data_[size_++] = static_cast<std::uint8_t>(value >> (byte * 8));
}
}
void f32(float value) {
std::uint32_t bits = 0;
static_assert(sizeof(bits) == sizeof(value), "Unexpected float width");
std::memcpy(&bits, &value, sizeof(bits));
u32(bits);
}
const std::uint8_t* data() const { return data_.data(); }
std::size_t size() const { return size_; }
bool overflowed() const { return overflowed_; }
private:
bool room(std::size_t count) {
if (count > data_.size() - size_) {
overflowed_ = true;
return false;
}
return true;
}
std::array<std::uint8_t, kExportRecordSize> data_{};
std::size_t size_ = 0;
bool overflowed_ = false;
};
bool append_features(
PackedRecord& packed,
const transformer::Features& features,
std::uint32_t topology,
std::string& error
) {
if (features.topology != topology) {
error = "Transformer feature topology does not match the archive record";
return false;
}
for (const auto& face : features.face) {
for (float value : face) {
if (!std::isfinite(value)) {
error = "Transformer face feature is not finite";
return false;
}
packed.f32(value);
}
}
for (float value : features.global) {
if (!std::isfinite(value)) {
error = "Transformer global feature is not finite";
return false;
}
packed.f32(value);
}
return true;
}
bool checked_i32(std::int64_t value, std::int32_t& result) {
if (value < std::numeric_limits<std::int32_t>::min() ||
value > std::numeric_limits<std::int32_t>::max()) {
return false;
}
result = static_cast<std::int32_t>(value);
return true;
}
bool encode_trajectory(
const training::InjectedTrajectory& trajectory,
const training::RunId& expected_run_id,
PackedRecord& packed,
std::string& error
) {
if (trajectory.context.run_id.bytes != expected_run_id.bytes) {
error = "Training record run UUID does not match its parent run directory";
return false;
}
const transformer::SearchBudget budget{
trajectory.rollout_iterations,
trajectory.replica_count,
trajectory.replica_count,
trajectory.pool_size};
const bool guided =
(trajectory.flags & training::TrajectoryNeuralGuided) != 0;
const transformer::FeatureInput proposal_input{
trajectory.injected_state,
trajectory.injected_metrics,
budget,
trajectory.context.topology,
guided};
const transformer::FeatureInput anchor_input{
trajectory.anchor_state,
trajectory.anchor_metrics,
budget,
trajectory.context.topology,
guided};
transformer::Features proposal_features;
transformer::Features anchor_features;
std::string feature_error;
if (!transformer::make_features(
proposal_input,
proposal_features,
&feature_error)) {
error = "Cannot build proposal features: " + feature_error;
return false;
}
if (!transformer::make_features(
anchor_input,
anchor_features,
&feature_error)) {
error = "Cannot build anchor features: " + feature_error;
return false;
}
const std::int64_t crossing_gain_wide =
static_cast<std::int64_t>(trajectory.anchor_metrics.crossings) -
static_cast<std::int64_t>(trajectory.result_metrics.crossings);
const std::int64_t intersection_gain_wide =
static_cast<std::int64_t>(trajectory.anchor_metrics.intersections) -
static_cast<std::int64_t>(trajectory.result_metrics.intersections);
const std::int64_t defect_gain_wide =
crossing_gain_wide + intersection_gain_wide;
std::int32_t crossing_gain = 0;
std::int32_t intersection_gain = 0;
std::int32_t defect_gain = 0;
if (!checked_i32(crossing_gain_wide, crossing_gain) ||
!checked_i32(intersection_gain_wide, intersection_gain) ||
!checked_i32(defect_gain_wide, defect_gain)) {
error = "Trajectory label does not fit the export format";
return false;
}
packed.bytes(trajectory.context.run_id.bytes.data(),
trajectory.context.run_id.bytes.size());
packed.u64(trajectory.context.record_sequence);
packed.u32(trajectory.context.topology);
if (!append_features(
packed,
proposal_features,
trajectory.context.topology,
error) ||
!append_features(
packed,
anchor_features,
trajectory.context.topology,
error)) {
return false;
}
packed.i32(crossing_gain);
packed.i32(intersection_gain);
packed.i32(defect_gain);
packed.u8(defect_gain > 0 ? 1U : 0U);
packed.u8((trajectory.flags & training::TrajectoryImproved) != 0 ? 1U : 0U);
packed.u8(defect_gain == 0 ? 1U : 0U);
packed.u8((trajectory.flags & training::TrajectoryEnteredArchive) != 0 ? 1U : 0U);
packed.i32(trajectory.plane_action);
packed.i32(trajectory.move_action);
packed.i32(trajectory.scale_action);
packed.f32(trajectory.plane_propensity);
packed.f32(trajectory.move_propensity);
packed.f32(trajectory.scale_propensity);
packed.u32(trajectory.replica_count);
packed.u64(trajectory.rollout_iterations);
packed.u32(trajectory.flags);
packed.u32(trajectory.anchor_metrics.flags);
packed.u32(trajectory.injected_metrics.flags);
packed.u32(trajectory.result_metrics.flags);
if (packed.overflowed() || packed.size() != kExportRecordSize) {
error = "Internal export record-size mismatch";
return false;
}
return true;
}
bool write_u32(std::ostream& output, std::uint32_t value) {
std::array<char, 4> bytes{};
for (std::size_t index = 0; index < bytes.size(); ++index) {
bytes[index] = static_cast<char>(
static_cast<unsigned char>(value >> (index * 8)));
}
output.write(bytes.data(), static_cast<std::streamsize>(bytes.size()));
return static_cast<bool>(output);
}
bool write_header(std::ostream& output) {
output.write(kExportMagic.data(), static_cast<std::streamsize>(kExportMagic.size()));
return static_cast<bool>(output) &&
write_u32(output, kExportVersion) &&
write_u32(output, kExportRecordSize);
}
void lower_windows_priority() {
#ifdef _WIN32
if (SetPriorityClass(GetCurrentProcess(), BELOW_NORMAL_PRIORITY_CLASS) == 0) {
std::cerr << "Warning: cannot set below-normal process priority (Windows error "
<< GetLastError() << ")\n";
}
#endif
}
bool enable_binary_stdout() {
#ifdef _WIN32
return _setmode(_fileno(stdout), _O_BINARY) != -1;
#else
return true;
#endif
}
} // namespace
int main(int argc, char* argv[]) {
Options options;
if (!parse_options(argc, argv, options)) {
return 2;
}
lower_windows_priority();
if (!enable_binary_stdout()) {
std::cerr << "Cannot switch stdout to binary mode\n";
return 3;
}
std::vector<ShardSnapshot> shards;
std::string error;
if (!snapshot_shards(options, shards, error)) {
std::cerr << "Cannot snapshot training shards: " << error << '\n';
return 4;
}
std::uint64_t snapshot_bytes = 0;
for (const ShardSnapshot& shard : shards) {
if (shard.size > std::numeric_limits<std::uint64_t>::max() - snapshot_bytes) {
std::cerr << "Training shard snapshot byte count overflow\n";
return 4;
}
snapshot_bytes += shard.size;
}
std::cerr << "Training export snapshot: " << shards.size()
<< " sealed shards, " << snapshot_bytes << " bytes";
if (!options.included_runs.empty()) {
std::cerr << ", " << options.included_runs.size() << " selected run(s)";
}
std::cerr << '\n';
std::ios::sync_with_stdio(false);
if (!write_header(std::cout)) {
std::cerr << "Cannot write training export header to stdout\n";
return 5;
}
std::uint64_t exported_records = 0;
for (std::size_t shard_ordinal = 0; shard_ordinal < shards.size(); ++shard_ordinal) {
const ShardSnapshot& snapshot = shards[shard_ordinal];
bool output_failed = false;
std::string record_error;
training::StreamCallbacks callbacks;
callbacks.injected_trajectory = [&](const training::InjectedTrajectory& trajectory) {
PackedRecord packed;
if (!encode_trajectory(
trajectory,
snapshot.expected_run_id,
packed,
record_error)) {
return false;
}
std::cout.write(
reinterpret_cast<const char*>(packed.data()),
static_cast<std::streamsize>(packed.size()));
if (!std::cout) {
output_failed = true;
return false;
}
++exported_records;
return true;
};
training::ShardInfo info;
std::string shard_error;
if (!training::stream_read_shard(
snapshot.path,
callbacks,
&info,
&shard_error)) {
if (output_failed) {
std::cerr << "stdout failed while exporting "
<< snapshot.path.string() << '\n';
return 5;
}
std::cerr << "Cannot export " << snapshot.path.string() << ": "
<< (record_error.empty() ? shard_error : record_error) << '\n';
return 6;
}
if (snapshot.filename_index && info.shard_index != *snapshot.filename_index) {
std::cerr << "Shard header index does not match filename: "
<< snapshot.path.string() << '\n';
return 6;
}
if ((shard_ordinal + 1U) % 16U == 0U ||
shard_ordinal + 1U == shards.size()) {
std::cerr << "Validated " << (shard_ordinal + 1U) << '/'
<< shards.size() << " shards; exported "
<< exported_records << " trajectories\n";
}
}
std::cout.flush();
if (!std::cout) {
std::cerr << "Cannot finish writing the training export stream\n";
return 5;
}
std::cerr << "Training export complete: " << exported_records
<< " fixed records, record_size=" << kExportRecordSize << '\n';
return 0;
}
@@ -0,0 +1,408 @@
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 best_crossing_loss best_intersection_loss neural_replay neural_positive neural_samples neural_train_steps neural_seeds transformer_scored transformer_selected transformer_controls transformer_invalid training_verified training_fp32 training_seeds training_rollouts training_refinements training_cache_accounted_bytes training_wal_bytes training_collection_enabled training_limit_reached weight_baseline weight_replica weight_adaptive weight_pbt weight_injected 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 1783878782303980000 DEPTH 43 1 0.62348542587702926 0 2 11 2 11 0 0 835 53 2591 23803906 209280 1480.4595336914062 8.6115999999999993 2469.8202999999999 40320 20882 1 0 0.009842172204325185 1.2471290918008606 4096 2048 384 12 96 360 72 24 0 2591 1920 128 384 1 11348341948 4662024 1 0 5 1 2 2 6 7618560 1474560 2949120 2705007 8985600 198 171 158 171 1893 9 2 5 1 36 0 0 0 0 0
2 1783878784467118500 DEPTH 43 1 0.61380985317164116 0 2 11 2 11 0 0 837 36 2589 23742624 147840 1302.7329559326172 8.6377000000000006 2161.2862 40320 15008 1 0 0.009842172204325185 1.2471290918008606 4096 2048 384 12 96 360 72 24 0 2589 1920 0 384 1 11352841636 9161712 1 0 5 1 2 2 6 7372800 1474560 2949120 2950925 8985600 187 175 165 346 1716 0 1 1 0 34 0 0 0 0 0
3 1783878786619805400 DEPTH 43 1 0.61417401289287477 0 2 11 2 11 0 0 839 44 2595 23742570 147840 1288.4408416748047 8.6143999999999998 2151.2764000000002 47040 18548 1 0 0.009842172204325185 1.2471290918008606 4096 2048 384 12 96 360 72 24 0 2595 1920 0 384 1 11357347444 13667520 1 0 4 2 2 2 6 7127040 1720320 2949120 2950874 8985600 195 175 169 543 1513 0 0 1 2 41 0 0 0 0 0
4 1783878788830222200 DEPTH 43 1 0.61449589168523411 0 2 11 2 11 0 0 843 24 2595 23742698 147840 1293.9502410888672 8.6465999999999994 2208.5844000000002 80640 21855 1 0 0.009842172204325185 1.2471290918008606 4096 2048 384 12 96 360 72 24 0 2595 1920 0 384 1 11361853252 18173328 1 0 4 2 2 2 6 5898240 2949120 2949120 2951002 8985600 184 184 198 826 1203 0 0 0 0 24 0 0 0 0 0
5 1783878789220690400 REFRESH 43 0 0.61472606416707642 0 2 11 2 11 0 0 844 20 422 3988948 56640 227.83078002929688 1.4386000000000001 388.70679999999999 13440 8138 0 0 0.009842172204325185 1.2471290918008606 4096 2048 64 1 16 60 12 4 0 422 320 0 64 0 11362591916 18911992 1 0 4 2 2 2 6 983040 491520 491520 491667 1497600 33 26 41 124 198 3 0 2 3 12 0 0 0 0 0
6 1783878791412050000 DEPTH 43 1 0.61483653692798534 0 2 11 2 11 0 0 845 43 2584 23742623 147840 1324.7293395996094 8.5982000000000003 2189.3458000000001 80640 40415 1 0 0.009842172204325185 1.2471290918008606 4096 2048 384 12 96 360 72 24 0 2584 1920 0 384 1 11367086504 23406580 1 0 4 2 2 2 6 5898240 2949120 2949120 2950927 8985600 171 156 174 322 1761 0 0 1 1 41 0 0 0 0 0
7 1783878793593982000 DEPTH 43 1 0.61481351150575647 0 2 11 2 11 0 0 847 22 2585 23727807 132480 1318.3313903808594 8.6113 2180.0158000000001 107520 46371 1 0 0.009842172204325185 1.2471290918008606 4096 2048 384 12 96 360 72 24 0 2585 1920 0 384 1 11371582112 27902188 1 0 4 3 2 2 5 5898240 3932160 2949120 2951029 7987200 164 156 188 590 1487 0 1 0 0 21 0 0 0 0 0
8 1783878795758580700 DEPTH 43 1 0.61465258708349124 0 2 11 2 11 0 0 847 22 2613 23720755 125760 1321.0654754638672 8.6795999999999989 2163.1878999999999 120960 41417 1 0 0.009842172204325185 1.2471290918008606 4096 2048 384 12 96 360 72 24 0 2613 1920 0 384 1 11376106280 32426356 1 0 4 3 2 2 5 5898240 4423680 2949120 2950975 7488000 163 156 188 1413 693 0 0 0 0 22 0 0 0 0 0
9 1783878797936971200 DEPTH 43 1 0.61435552741369981 0 2 11 2 11 0 0 847 34 2622 23705482 110400 1315.7295684814453 8.6105999999999998 2177.1043 120960 30503 1 0 0.009842172204325185 1.2471290918008606 4096 2048 384 12 96 360 72 24 0 2622 1920 0 384 1 11380639628 36959704 1 0 4 3 3 2 4 5898240 4423680 3932160 2951008 6489600 163 155 197 1511 596 0 0 0 4 30 0 0 0 0 0
10 1783878798298749000 REFRESH 43 0 0.61392805552847884 0 2 11 2 11 0 0 847 11 425 3987991 55680 229.04115295410156 1.4313 360.18360000000001 20160 12118 0 0 0.009842172204325185 1.2471290918008606 4096 2048 64 1 16 60 12 4 0 425 320 0 64 0 11381381352 37701428 1 0 4 3 3 2 4 983040 737280 737280 491665 998400 30 25 39 246 85 0 0 1 2 8 0 0 0 0 0
11 1783878800494713800 DEPTH 43 1 0.6133783376548172 0 2 11 2 11 0 0 849 28 2605 23698571 103680 1338.7051849365234 8.5991 2194.6106 120960 59957 1 0 0.009842172204325185 1.2471290918008606 4096 2048 384 12 96 360 72 24 0 2605 1920 0 384 1 11385897360 42217436 1 0 4 3 3 2 4 5898240 4423680 4423680 2950963 5990400 168 150 229 1339 719 0 0 0 0 28 0 0 0 0 0
12 1783878802685897200 DEPTH 43 1 0.61271593712317007 0 2 11 2 11 0 0 851 24 2622 23687538 92160 1336.0076751708984 8.6174999999999997 2189.9306000000001 120960 49037 1 0 0.009842172204325185 1.2471290918008606 4096 2048 384 12 96 360 72 24 0 2622 1920 0 384 1 11390430708 46750784 1 0 4 3 3 3 3 5898240 4423680 4423680 3688683 5241600 177 150 260 1498 537 0 0 0 1 23 0 0 0 0 0
13 1783878804961759400 DEPTH 43 1 0.61195109319157881 0 2 11 2 11 0 0 851 32 2621 23677624 81600 1390.3780059814453 8.6474000000000011 2274.1918000000001 120960 38961 1 0 0.009842172204325185 1.2471290918008606 4096 2048 384 12 96 360 72 24 0 2621 1920 0 384 1 11394963036 51283112 1 0 4 3 3 3 3 5898240 4423680 4423680 4426456 4492800 180 150 263 1513 515 2 0 1 0 29 0 0 0 0 0
14 1783878807254708200 DEPTH 43 1 0.61109422693463689 0 2 11 2 11 0 0 851 37 2621 23677369 81600 1401.6645050048828 8.8420000000000005 2291.6201000000001 120960 28124 1 0 0.009842172204325185 1.2471290918008606 4096 2048 384 12 96 360 72 24 0 2621 1920 0 384 1 11399495364 55815440 1 0 4 3 3 3 3 5898240 4423680 4423680 4426344 4492800 173 150 253 1552 493 1 0 0 3 33 0 0 0 0 0
15 1783878807630521600 REFRESH 43 0 0.6101556071142944 0 2 11 2 11 0 0 852 8 429 3987631 55200 231.59910583496094 2.0969000000000002 374.36810000000003 20160 12312 0 0 0.009842172204325185 1.2471290918008606 4096 2048 64 1 16 60 12 4 0 429 320 0 64 0 11400241168 56561244 1 0 4 3 3 3 3 983040 737280 737280 737522 748800 71 25 102 156 75 1 0 1 0 6 0 0 0 0 0
16 1783878809999674900 DEPTH 43 1 0.60714512939514831 0 2 11 1 11 1 0 897 109 2530 23676804 81600 1337.8355102539062 8.6052 2367.5823 120960 59674 1 0 0.01321162306883184 0.70350935863804531 4096 2048 384 12 96 360 72 24 0 2530 1920 0 384 1 11404680676 61000752 1 0 6 3 2 2 3 8355840 4423680 3194880 3196924 4492800 196 150 313 377 1494 10 0 0 1 98 1 0 0 0 4
17 1783878812513400100 DEPTH 43 1 0.70627217609360193 0 1 11 1 11 1 0 917 89 2546 23676500 81600 1327.8107452392578 8.6380999999999997 2436.3764000000001 120960 48576 1 0 0.0097154611702509747 0.70842359234667862 4096 2048 384 12 96 360 72 24 0 2546 1920 0 384 1 11409136504 65456580 1 0 6 3 2 2 3 8847360 4423680 2949120 2950905 4492800 156 150 182 174 1884 4 0 1 0 84 0 0 0 0 1
18 1783878816055499800 DEPTH 43 1 0.6953465550401261 0 1 11 1 11 0 0 926 85 2551 23676611 81600 1331.3250579833984 8.6232000000000006 3540.7311 120960 40454 1 0 0.0097154611702509747 0.70842359234667862 4096 2048 384 12 96 360 72 24 0 2551 1920 0 384 1 11413597512 2808700 1 0 6 3 2 2 3 8847360 4423680 2949120 2950964 4492800 156 150 192 174 1879 5 0 0 0 80 0 0 0 0 0
19 1783878818467780600 DEPTH 43 1 0.68533426730668279 0 1 11 1 11 1 0 943 94 2555 23676834 81600 1319.3555603027344 8.5946999999999996 2410.8159999999998 120960 30392 1 0 0.03023503934461445 0.40160674742793606 4096 2048 384 12 96 360 72 24 0 2555 1920 0 384 1 11418062520 7273708 1 0 6 3 2 2 3 8847360 4423680 2949120 2951049 4492800 156 150 185 208 1856 16 0 0 0 78 0 0 0 0 2
20 1783878818855859300 REFRESH 43 0 0.67638530217159232 0 1 11 1 11 0 0 963 29 415 3987507 55200 230.21875 1.4352 386.2552 20160 12187 0 0 0.03023503934461445 0.40160674742793606 4096 2048 64 1 16 60 12 4 0 415 320 0 64 0 11418794044 8005232 1 0 6 3 2 2 3 1474560 737280 491520 491663 748800 25 25 25 203 137 0 0 0 4 25 0 0 0 0 0
21 1783878821335072700 DEPTH 43 1 0.66796164775491507 0 1 11 1 11 1 0 984 84 2538 23676765 81600 1341.5609588623047 8.6268999999999991 2477.9007999999999 120960 61706 1 0 0.026905195926877075 0.3923808980695746 4096 2048 384 12 96 360 72 24 0 2538 1920 0 384 1 11423241712 12452900 1 0 5 3 2 3 3 8355840 4423680 2949120 3442784 4492800 150 150 150 162 1926 0 0 0 0 84 0 0 0 0 2
22 1783878823772235200 DEPTH 43 1 0.66025411891300489 0 1 11 1 11 0 0 1018 107 2550 23687374 92160 1323.6142120361328 8.6853000000000016 2435.5944 120960 47032 1 0 0.026905195926877075 0.3923808980695746 4096 2048 384 12 96 360 72 24 0 2550 1920 0 384 1 11427701620 16912808 1 0 4 3 3 3 3 6881280 4423680 3440640 3688621 5241600 150 150 150 398 1702 0 3 3 4 97 0 0 0 0 0
23 1783878826238920500 DEPTH 43 1 0.65314845097629992 0 1 11 1 11 1 0 1040 93 2551 23685040 89280 1331.3658752441406 8.5866000000000007 2465.0585000000001 120960 40153 1 0 0.026904236575297922 0.38557621408633436 4096 2048 384 12 96 360 72 24 0 2551 1920 0 384 1 11432162548 21373736 1 0 4 3 3 3 3 5898240 4423680 3932160 4426428 4992000 150 150 150 584 1517 0 1 5 4 83 0 0 0 0 2
24 1783878828706153800 DEPTH 43 1 0.6466230419227037 0 1 11 1 11 0 0 1052 74 2557 23684234 88320 1323.931640625 8.5961999999999996 2465.8586 120960 33570 1 0 0.026904236575297922 0.38557621408633436 4096 2048 384 12 96 360 72 24 0 2557 1920 0 384 1 11436629596 25840784 1 0 4 3 3 3 3 5898240 4423680 3932160 4426559 4992000 150 150 150 709 1398 0 1 7 2 64 0 0 0 0 0
25 1783878829110657000 REFRESH 43 0 0.64059779308859 0 1 11 1 11 0 0 1064 37 418 3987585 55200 228.2373046875 1.4602999999999999 402.74759999999998 20160 12293 0 0 0.026904236575297922 0.38557621408633436 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 11437364180 26575368 1 0 4 3 3 3 3 983040 737280 737280 737503 748800 25 25 25 197 146 0 0 0 16 21 0 0 0 0 0
26 1783878831574652800 DEPTH 43 1 0.63503832131669324 0 1 11 1 11 1 0 1084 76 2550 23677275 81600 1322.060791015625 8.601700000000001 2462.1134000000002 120960 59903 1 0 0.023513122486761771 0.37543211103372959 4096 2048 384 12 96 360 72 24 0 2550 1920 0 384 1 11441824088 31035276 1 0 4 3 3 3 3 5898240 4423680 4423680 4426381 4492800 150 150 150 806 1294 0 0 1 0 75 0 0 0 0 1
27 1783878834061931000 DEPTH 43 1 0.62991590927652485 0 1 11 1 11 1 0 1091 56 2560 23689014 93120 1334.8157501220703 8.5919999999999987 2485.7959000000001 120960 48809 1 0 0.023513206095578918 0.37042460049529408 4096 2048 384 12 96 360 72 24 0 2560 1920 0 384 1 11446294196 35505384 1 0 4 3 2 3 4 5898240 4423680 3686400 4426478 5241600 150 150 150 775 1335 0 0 0 0 56 0 0 0 0 2
28 1783878836540678700 DEPTH 43 1 0.62516828349881448 0 1 11 1 11 1 0 1102 49 2566 23680412 84480 1309.5743103027344 8.633799999999999 2477.1259 120960 38799 1 0 0.023489798491358991 0.37137792366689748 4096 2048 384 12 96 360 72 24 0 2566 1920 0 384 1 11450770424 39981612 1 0 4 3 3 3 3 5898240 4423680 4177920 4426382 4742400 150 150 150 934 1182 1 0 1 0 47 0 0 0 0 1
29 1783878839023722200 DEPTH 43 1 0.62076668377676203 0 1 11 1 11 0 0 1117 52 2572 23680248 84480 1318.4993286132812 8.7275999999999989 2481.5369999999998 120960 26810 1 0 0.023489798491358991 0.37137792366689748 4096 2048 384 12 96 360 72 24 0 2572 1920 0 384 1 11455252772 44463960 1 0 4 3 3 3 3 5898240 4423680 4177920 4426392 4742400 150 150 152 1036 1084 0 0 2 0 50 0 0 0 0 0
30 1783878839415723700 REFRESH 43 0 0.61667270592261625 0 1 11 1 11 0 0 1135 39 421 3987600 55200 231.46188354492188 1.4390000000000001 390.42880000000002 20160 12371 0 0 0.023489798491358991 0.37137792366689748 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 11455990416 45201604 1 0 4 3 3 3 3 983040 737280 737280 737506 748800 25 25 28 195 148 0 0 0 21 18 0 0 0 0 0
31 1783878841912138800 DEPTH 43 1 0.61286573147711199 0 1 11 1 11 0 0 1149 50 2558 23677484 81600 1377.2533569335938 8.6547999999999998 2495.1329000000001 120960 58924 1 0 0.023489798491358991 0.37137792366689748 4096 2048 384 12 96 360 72 24 0 2558 1920 0 384 1 11460458484 49669672 1 0 4 3 3 3 3 5898240 4423680 4423680 4426465 4492800 150 150 152 641 1465 0 0 0 0 50 0 0 0 0 0
32 1783878844542874400 DEPTH 43 1 0.60931972010495827 0 1 11 1 11 1 0 1161 63 2568 23677413 81600 1408.5519866943359 9.6678999999999995 2542.0735 120960 48114 1 0 0.023489775560579393 0.37113068697740526 4096 2048 384 12 96 360 72 24 0 2568 1920 0 384 1 11464936752 54147940 1 0 4 3 3 3 3 5898240 4423680 4423680 4426408 4492800 150 150 150 836 1282 0 0 0 1 62 0 0 0 0 1
33 1783878847126095300 DEPTH 43 1 0.60601155447608401 0 1 11 1 11 1 0 1169 47 2567 23681410 85440 1389.868408203125 8.6465999999999994 2581.4036999999998 120960 37908 1 0 0.00036655077805125216 0.62206274473982437 4096 2048 384 12 96 360 72 24 0 2567 1920 0 384 1 11469414000 58625188 1 0 4 3 2 3 4 5898240 4423680 4177920 4426455 4742400 150 150 151 877 1239 0 0 0 0 47 0 0 0 0 2
34 1783878849741066700 DEPTH 43 1 0.60303953049728976 0 1 11 1 11 0 0 1176 73 2570 23680521 84480 1375.9540100097656 9.2362000000000002 2612.8915000000002 120960 26367 1 0 0.00036655077805125216 0.62206274473982437 4096 2048 384 12 96 360 72 24 0 2570 1920 0 384 1 11473894308 63105496 1 0 4 3 3 3 3 5898240 4423680 4177920 4426419 4742400 150 150 155 888 1227 0 0 1 1 71 0 0 0 0 0
35 1783878850152445000 REFRESH 43 0 0.60013215782030138 0 1 11 1 11 0 0 1182 28 420 3987621 55200 231.04409790039062 1.4334 409.66739999999999 20160 12477 0 0 0.00036655077805125216 0.62206274473982437 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 11474630932 63842120 1 0 4 3 3 3 3 983040 737280 737280 737505 748800 25 25 29 199 142 0 0 0 8 20 0 0 0 0 0
36 1783878853779694200 DEPTH 43 1 0.59740569238359242 0 1 11 1 11 1 0 1193 58 2558 23677497 81600 1349.0964660644531 8.6234000000000002 3625.8074000000001 120960 59109 1 0 0.0063723423564975195 0.62842458707157101 4096 2048 384 12 96 360 72 24 0 2558 1920 0 384 1 11479099080 1201552 1 0 4 3 3 3 3 5898240 4423680 4423680 4426401 4492800 150 150 162 721 1375 0 0 3 0 55 0 0 0 0 1
37 1783878856260546300 DEPTH 43 1 0.59488626866957528 0 1 11 1 11 1 0 1202 58 2571 23681382 85440 1315.9413757324219 8.6296999999999997 2479.1417999999999 120960 48003 1 0 0.0010562019082033984 0.57581095940555616 4096 2048 384 12 96 360 72 24 0 2571 1920 0 384 1 11483580408 5682880 1 0 4 3 2 3 4 5898240 4423680 4177920 4426433 4742400 150 150 161 696 1414 0 0 1 0 57 0 0 0 0 2
38 1783878858759938300 DEPTH 43 1 0.59250594788971689 0 1 11 1 11 1 0 1215 63 2558 23699678 103680 1331.0854644775391 8.6417999999999999 2497.9535000000001 120960 38903 1 0 0.0074959312965014934 0.63901230229659434 4096 2048 384 12 96 360 72 24 0 2558 1920 0 384 1 11488048476 10150948 1 0 4 3 2 3 4 5898240 4423680 2949120 4426520 5990400 150 150 163 572 1523 2 0 0 0 61 0 0 0 0 3
39 1783878861203100300 DEPTH 43 1 0.59033187555163846 0 1 11 1 11 1 0 1237 68 2558 23699680 103680 1327.2821960449219 8.6090999999999998 2441.8099999999999 120960 26813 1 0 0.0089534794104050661 0.5660456004506329 4096 2048 384 12 96 360 72 24 0 2558 1920 0 384 1 11492516544 14619016 1 0 4 3 2 3 4 5898240 4423680 2949120 4426437 5990400 150 150 161 697 1400 2 0 0 0 66 0 0 0 0 1
40 1783878861590329800 REFRESH 43 0 0.58826651649895734 0 1 11 1 11 0 0 1257 52 415 3988088 55680 228.71040344238281 1.4329000000000001 385.7167 20160 12352 0 0 0.0089534794104050661 0.5660456004506329 4096 2048 64 1 16 60 12 4 0 415 320 0 64 0 11493248068 15350540 1 0 4 3 2 3 4 983040 737280 491520 737505 998400 25 25 25 100 240 1 0 0 7 44 0 0 0 0 0
41 1783878864041975800 DEPTH 43 1 0.58621055235424269 0 1 11 1 11 1 0 1274 68 2552 23699660 103680 1322.3570404052734 8.6202000000000005 2450.2959999999998 120960 59344 1 0 0.0089534655716098747 0.5897130624482595 4096 2048 384 12 96 360 72 24 0 2552 1920 0 384 1 11497710016 19812488 1 0 4 3 2 3 4 5898240 4423680 2949120 4426423 5990400 150 150 150 360 1742 0 0 0 0 68 0 0 0 0 1
42 1783878866523814300 DEPTH 43 1 0.58426507665283745 0 1 11 1 11 1 0 1278 52 2544 23699648 103680 1377.9814605712891 8.616299999999999 2480.3948 120960 48921 1 0 0.0089535026001445021 0.59017937691416078 4096 2048 384 12 96 360 72 24 0 2544 1920 0 384 1 11502163804 24266276 1 0 4 3 2 3 4 5898240 4423680 2949120 4426467 5990400 150 150 150 427 1667 1 0 0 0 51 0 0 0 0 1
43 1783878869084819200 DEPTH 43 1 0.58241785547291958 0 1 11 1 11 1 0 1286 45 2560 23692026 96000 1401.7167816162109 8.6343999999999994 2559.5794000000001 120960 39248 1 0 0.0071610230477030194 0.59156244541004277 4096 2048 384 12 96 360 72 24 0 2560 1920 0 384 1 11506633912 28736384 1 0 4 3 3 3 3 5898240 4423680 3440640 4426425 5491200 150 150 150 645 1465 1 0 0 0 44 0 0 0 0 1
44 1783878871649421700 DEPTH 43 1 0.58066886803152529 0 1 11 1 11 0 0 1292 43 2544 23691993 96000 1413.4425506591797 8.6527999999999992 2563.2750999999998 120960 26854 1 0 0.0071610230477030194 0.59156244541004277 4096 2048 384 12 96 360 72 24 0 2544 1920 0 384 1 11511087700 33190172 1 0 4 3 3 3 3 5898240 4423680 3440640 4426432 5491200 150 150 150 699 1395 0 0 2 0 41 0 0 0 0 0
45 1783878872057388200 REFRESH 43 0 0.57899568038245031 0 1 11 1 11 1 0 1296 23 414 3987611 55200 241.56364440917969 1.4332 406.23590000000002 20160 12666 0 0 0.0070406733235316406 0.55110175138820661 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 11511818204 33920676 1 0 4 3 3 3 3 983040 737280 737280 737499 748800 25 25 26 178 160 0 0 0 10 13 0 0 0 0 1
46 1783878874625899600 DEPTH 43 1 0.57742386219135433 0 1 11 1 11 1 0 1315 71 2521 23699680 103680 1356.5278472900391 8.6898999999999997 2483.8800999999999 120960 61350 1 0 0.0040811110137337027 0.54912215547857646 4096 2048 384 12 96 360 72 24 0 2521 1920 0 384 1 11516248532 38351004 1 0 4 3 2 3 4 5898240 4423680 2949120 4426484 5990400 150 150 150 200 1871 0 1 0 1 69 0 0 0 0 1
47 1783878877111370300 DEPTH 43 1 0.57590995596749028 0 1 11 1 11 1 0 1319 50 2549 23684398 88320 1358.8695068359375 8.6112000000000002 2484.1062999999999 120960 50536 1 0 0.0040811121666749104 0.54439612102319435 4096 2048 384 12 96 360 72 24 0 2549 1920 0 384 1 11520707420 42809892 1 0 4 3 3 3 3 5898240 4423680 3932160 4426433 4992000 150 150 156 642 1451 0 0 0 0 50 0 0 0 0 1
48 1783878879656324800 DEPTH 43 1 0.57445162430901886 0 1 11 1 11 1 0 1329 57 2546 23699684 103680 1349.3145599365234 8.6504999999999992 2543.5996 120960 40535 1 0 0.00070350750975902169 0.53719728041054415 4096 2048 384 12 96 360 72 24 0 2546 1920 0 384 1 11525163248 47265720 1 0 4 3 2 3 4 5898240 4423680 2949120 4426413 5990400 150 150 156 650 1440 0 0 0 1 56 0 0 0 0 2
49 1783878882136385900 DEPTH 43 1 0.57307165416311157 0 1 11 1 11 1 0 1334 51 2554 23699714 103680 1358.6380767822266 8.6060999999999996 2478.6790999999998 120960 27986 1 0 0.00071730002828579312 0.53446775439727545 4096 2048 384 12 96 360 72 24 0 2554 1920 0 384 1 11529627236 51729708 1 0 4 3 2 3 4 5898240 4423680 2949120 4426412 5990400 150 150 156 835 1263 0 0 0 0 51 0 0 0 0 2
50 1783878882530701500 REFRESH 43 0 0.57173959456635748 0 1 11 1 11 0 0 1347 32 408 3988170 55680 235.3438720703125 1.4710000000000001 392.8272 20160 13033 0 0 0.00071730002828579312 0.53446775439727545 4096 2048 64 1 16 60 12 4 0 408 320 0 64 0 11530351620 52454092 1 0 4 3 2 3 4 983040 737280 491520 737548 998400 25 25 25 127 206 0 0 0 6 26 0 0 0 0 0
51 1783878885100768300 DEPTH 43 1 0.57044517535789352 0 1 11 1 11 0 0 1360 49 2521 23699771 103680 1379.3546142578125 8.6146000000000011 2568.7017999999998 120960 63051 1 1 0.00071730002828579312 0.53446775439727545 4096 2048 384 12 96 360 72 24 0 2521 1920 0 384 1 11534781948 56884420 1 0 4 3 2 3 4 5898240 4423680 2949120 4426500 5990400 150 150 150 350 1721 0 0 0 0 48 0 0 0 0 0
52 1783878887609475700 DEPTH 43 1 0.56919986592266758 0 1 11 1 11 0 0 1368 37 2541 23684531 88320 1347.6855926513672 9.1583000000000006 2507.3627000000001 120960 51882 1 0 0.00071730002828579312 0.53446775439727545 4096 2048 384 12 96 360 72 24 0 2541 1920 0 384 1 11539232676 61335148 1 0 4 3 3 3 3 5898240 4423680 3932160 4426533 4992000 150 150 150 772 1319 0 0 0 0 37 0 0 0 0 0
53 1783878890130544000 DEPTH 43 1 0.56800017047694695 0 1 11 1 11 0 0 1376 48 2557 23677891 81600 1339.5006408691406 8.6416000000000004 2519.6552999999999 120960 41408 1 0 0.00071730002828579312 0.53446775439727545 4096 2048 384 12 96 360 72 24 0 2557 1920 0 384 1 11543699724 65802196 1 0 4 3 3 3 3 5898240 4423680 4423680 4426473 4492800 150 150 150 1230 877 0 0 0 2 46 0 0 0 0 0
54 1783878893758156600 DEPTH 43 1 0.56684290265271986 0 1 11 1 11 1 0 1388 61 2536 23685460 89280 1338.7409515380859 8.595699999999999 3626.1768000000002 120960 28610 1 0 0.00073477427226610668 0.51700763160517571 4096 2048 384 12 96 360 72 24 0 2536 1920 0 384 1 11548145432 3139084 1 0 4 3 2 3 4 5898240 4423680 3932160 4426423 4992000 150 150 150 1275 811 1 0 0 0 60 0 0 0 0 2
55 1783878894168770900 REFRESH 43 0 0.56575305064473902 0 1 11 1 11 0 0 1393 17 419 3988154 55680 234.89228820800781 1.4306000000000001 408.98809999999997 20160 13425 0 0 0.00073477427226610668 0.51700763160517571 4096 2048 64 1 16 60 12 4 0 419 320 0 64 0 11548881036 3874688 1 0 4 3 2 3 4 983040 737280 491520 737518 998400 25 25 25 226 118 0 0 0 3 14 0 0 0 0 0
56 1783878896715756900 DEPTH 43 1 0.56466938262906785 0 1 11 1 11 0 0 1400 53 2549 23680737 84480 1367.2284393310547 8.6456 2545.634 120960 64167 1 0 0.00073477427226610668 0.51700763160517571 4096 2048 384 12 96 360 72 24 0 2549 1920 0 384 1 11553339924 8333576 1 0 4 3 3 3 3 5898240 4423680 4177920 4426449 4742400 150 150 150 1126 973 0 0 1 0 52 0 0 0 0 0
57 1783878899211454100 DEPTH 43 1 0.56362043790210348 0 1 11 1 11 0 0 1407 62 2539 23677868 81600 1341.2075500488281 8.8908000000000005 2494.2145 120960 53440 1 0 0.00073477427226610668 0.51700763160517571 4096 2048 384 12 96 360 72 24 0 2539 1920 0 384 1 11557788612 12782264 1 0 4 3 3 3 3 5898240 4423680 4423680 4426477 4492800 150 150 150 1319 770 2 0 0 0 60 0 0 0 0 0
58 1783878901691015200 DEPTH 43 1 0.56260397253613403 0 1 11 1 11 0 0 1413 57 2546 23677922 81600 1330.0951232910156 8.6436000000000011 2478.0371 120960 42418 1 0 0.00073477427226610668 0.51700763160517571 4096 2048 384 12 96 360 72 24 0 2546 1920 0 384 1 11562244440 17238092 1 0 4 3 3 3 3 5898240 4423680 4423680 4426488 4492800 150 150 150 1447 649 3 0 4 2 48 0 0 0 0 0
59 1783878904175765400 DEPTH 43 1 0.56161793357624357 0 1 11 1 11 0 0 1415 52 2524 23678026 81600 1337.3798370361328 9.1855999999999991 2482.7772 120960 29352 1 0 0.00073477427226610668 0.51700763160517571 4096 2048 384 12 96 360 72 24 0 2524 1920 0 384 1 11566677828 21671480 1 0 4 3 3 3 3 5898240 4423680 4423680 4426467 4492800 150 150 150 1440 634 0 0 0 0 52 0 0 0 0 0
60 1783878904684071000 REFRESH 43 0 0.5606604411360594 0 1 11 1 11 0 0 1417 14 416 3987647 55200 250.5166015625 1.4337 425.89949999999999 20160 13487 0 0 0.00073477427226610668 0.51700763160517571 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 11567410372 22404024 1 0 4 3 3 3 3 983040 737280 737280 737494 748800 25 25 25 259 82 0 0 0 0 14 0 0 0 0 0
61 1783878907217671400 DEPTH 43 1 0.55972977223580278 0 1 11 1 11 0 0 1424 50 2506 23677724 81600 1375.9705657958984 8.6801999999999992 2531.9376999999999 120960 64965 1 0 0.00073477427226610668 0.51700763160517571 4096 2048 384 12 96 360 72 24 0 2506 1920 0 384 1 11571825400 26819052 1 0 4 3 3 3 3 5898240 4423680 4423680 4426374 4492800 150 150 150 1364 692 0 0 0 0 50 0 0 0 0 0
62 1783878909701053000 DEPTH 43 1 0.55882434621012367 0 1 11 1 11 0 0 1426 38 2509 23677917 81600 1393.4848022460938 8.5987000000000009 2481.8234000000002 120960 53791 1 0 0.00073477427226610668 0.51700763160517571 4096 2048 384 12 96 360 72 24 0 2509 1920 0 384 1 11576243488 31237140 1 0 4 3 3 3 3 5898240 4423680 4423680 4426460 4492800 150 150 150 1482 577 0 0 0 0 38 0 0 0 0 0
63 1783878912157339400 DEPTH 43 1 0.55794271153046904 0 1 11 1 11 0 0 1429 49 2504 23677931 81600 1344.1957397460938 8.6807999999999996 2454.8607999999999 120960 42943 1 0 0.00073477427226610668 0.51700763160517571 4096 2048 384 12 96 360 72 24 0 2504 1920 0 384 1 11580656476 35650128 1 0 4 3 3 3 3 5898240 4423680 4423680 4426381 4492800 150 150 150 1466 588 0 0 3 0 46 0 0 0 0 0
64 1783878914613911500 DEPTH 43 1 0.55708353390225662 0 1 11 1 11 0 0 1434 48 2509 23678003 81600 1311.110595703125 8.5789000000000009 2455.2453 120960 29454 1 0 0.00073477427226610668 0.51700763160517571 4096 2048 384 12 96 360 72 24 0 2509 1920 0 384 1 11585074564 40068216 1 0 4 3 3 3 3 5898240 4423680 4423680 4426413 4492800 150 150 150 1491 568 0 0 3 0 45 0 0 0 0 0
65 1783878915017747000 REFRESH 43 0 0.55624558551107728 0 1 11 1 11 0 0 1437 15 414 3987689 55200 230.11943054199219 1.4309000000000001 402.39909999999998 20160 13336 0 0 0.00073477427226610668 0.51700763160517571 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 11585805068 40798720 1 0 4 3 3 3 3 983040 737280 737280 737481 748800 25 25 25 263 76 0 0 0 0 15 0 0 0 0 0
66 1783878917453658300 DEPTH 43 1 0.55542773530470202 0 1 11 1 11 0 0 1439 40 2498 23678079 81600 1328.8131256103516 8.8466000000000005 2434.5601999999999 120960 64845 1 0 0.00073477427226610668 0.51700763160517571 4096 2048 384 12 96 360 72 24 0 2498 1920 0 384 1 11590211936 45205588 1 0 4 3 3 3 3 5898240 4423680 4423680 4426390 4492800 150 150 150 1449 599 0 0 1 0 39 0 0 0 0 0
67 1783878919925527300 DEPTH 43 1 0.5546289402089537 0 1 11 1 11 0 0 1444 49 2511 23677908 81600 1324.1722869873047 8.6414000000000009 2470.5293999999999 120960 53766 1 0 0.00073477427226610668 0.51700763160517571 4096 2048 384 12 96 360 72 24 0 2511 1920 0 384 1 11594632064 49625716 1 0 4 3 3 3 3 5898240 4423680 4423680 4426409 4492800 150 150 150 1496 565 0 0 1 0 48 0 0 0 0 0
68 1783878922383191300 DEPTH 43 1 0.55384823718565412 0 1 11 1 11 1 0 1446 44 2523 23678041 81600 1366.2546844482422 8.6036000000000001 2456.0155 120960 43420 1 0 0.00029692792149424023 0.48659870226076979 4096 2048 384 12 96 360 72 24 0 2523 1920 0 384 1 11599064432 54058084 1 0 4 3 3 3 3 5898240 4423680 4423680 4426463 4492800 150 150 150 1514 559 0 0 0 0 44 0 0 0 0 2
69 1783878924810756000 DEPTH 43 1 0.553098641645135 0 1 11 1 11 0 0 1447 52 2524 23678146 81600 1316.39501953125 8.6318999999999999 2426.2345 120960 29493 1 0 0.00029692792149424023 0.48659870226076979 4096 2048 384 12 96 360 72 24 0 2524 1920 0 384 1 11603497820 58491472 1 0 4 3 3 3 3 5898240 4423680 4423680 4426485 4492800 150 150 150 1518 556 0 0 0 0 52 0 0 0 0 0
70 1783878925230393200 REFRESH 43 0 0.55235012800848438 0 1 11 1 11 0 0 1449 8 415 3987742 55200 235.14828491210938 1.4317 418.18549999999999 20160 13418 0 0 0.00029692792149424023 0.48659870226076979 4096 2048 64 1 16 60 12 4 0 415 320 0 64 0 11604229344 59222996 1 0 4 3 3 3 3 983040 737280 737280 737493 748800 25 25 25 260 80 0 0 0 0 8 0 0 0 0 0
71 1783878927717286900 DEPTH 43 1 0.54961736813318296 0 1 11 1 11 1 0 1452 35 2489 23678110 81600 1355.6285552978516 8.6184999999999992 2485.0454 120960 65156 1 0 0.00051938344312636307 0.43196715463298035 4096 2048 384 12 96 360 72 24 0 2489 1920 0 384 1 11608627032 63620684 1 0 4 3 3 3 3 5898240 4423680 4423680 4426422 4492800 150 150 150 1451 588 0 0 0 1 34 0 0 0 0 1
72 1783878931324399800 DEPTH 43 1 0.54910256969701143 0 1 11 1 11 0 0 1458 41 2506 23678209 81600 1353.5274505615234 8.6722000000000001 3605.6086 120960 54661 1 0 0.00051938344312636307 0.43196715463298035 4096 2048 384 12 96 360 72 24 0 2506 1920 0 384 1 11613042140 927172 1 0 4 3 3 3 3 5898240 4423680 4423680 4426461 4492800 150 150 150 1498 558 0 0 0 0 41 0 0 0 0 0
73 1783878933755002200 DEPTH 43 1 0.54857890977651036 0 1 11 1 11 1 0 1463 42 2501 23677991 81600 1319.1773223876953 8.9969999999999999 2429.3008 120960 43315 1 0 0.0005193975339547051 0.43317359090119911 4096 2048 384 12 96 360 72 24 0 2501 1920 0 384 1 11617452068 5337100 1 0 4 3 3 3 3 5898240 4423680 4423680 4426440 4492800 150 150 150 1493 558 0 0 0 0 42 0 0 0 0 1
74 1783878936280851000 DEPTH 43 1 0.54805721529321982 0 1 11 1 11 1 0 1469 36 2494 23693424 96960 1312.5498809814453 8.5892999999999997 2451.8928000000001 120960 29842 1 0 0.0041288744677333844 0.43285221904509885 4096 2048 384 12 96 360 72 24 0 2494 1920 0 384 1 11621854856 9739888 1 0 4 3 2 3 4 5898240 4423680 3440640 4426503 5491200 150 150 150 1469 575 0 0 0 0 36 0 0 0 0 3
75 1783878936676789300 REFRESH 43 0 0.54754219441037111 0 1 11 1 11 1 0 1474 20 414 3988153 55680 228.490234375 1.4459 394.32080000000002 20160 13598 0 0 0.0025413004395503985 0.42294455127780806 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 11622585360 10470392 1 0 4 3 2 3 4 983040 737280 491520 737514 998400 25 25 25 264 75 0 0 0 5 15 0 0 0 0 2
76 1783878939150536400 DEPTH 43 1 0.5470281054508046 0 1 11 1 11 0 0 1479 34 2470 23706384 110400 1339.0623626708984 8.6274999999999995 2472.3517000000002 120960 65871 1 0 0.0025413004395503985 0.42294455127780806 4096 2048 384 12 96 360 72 24 0 2470 1920 0 384 1 11626963668 14848700 1 0 4 3 2 3 4 5898240 4423680 2949120 3934682 6489600 150 150 150 849 1171 0 0 0 0 34 0 0 0 0 0
77 1783878941615250700 DEPTH 43 1 0.54649018677433703 0 1 11 1 11 1 0 1482 40 2493 23699816 103680 1359.2770538330078 8.8026999999999997 2462.9962999999998 120960 55192 1 0 0.0011463520571648299 0.38931510915441858 4096 2048 384 12 96 360 72 24 0 2493 1920 0 384 1 11631365436 19250468 1 0 4 3 2 3 4 5898240 4423680 2949120 4426317 5990400 150 150 150 1307 736 0 0 0 0 40 0 0 0 0 1
78 1783878944147762300 DEPTH 43 1 0.5460235910913428 0 1 11 1 10 1 0 1490 57 2510 23700133 103680 1380.7924041748047 8.6821999999999999 2530.9598000000001 120960 43898 1 0 0.1191474730947204 1.0542153319768179 4096 2048 384 12 96 360 72 24 0 2510 1920 0 384 1 11635784544 23669576 1 0 4 3 2 3 4 5898240 4423680 2949120 4426537 5990400 150 150 150 1428 632 0 0 0 1 56 0 0 0 0 2
79 1783878946587354000 DEPTH 43 1 0.64547978206387979 0 1 10 1 10 0 0 1496 43 2554 23743103 147840 1330.8672027587891 8.6517999999999997 2438.2779999999998 80640 22450 1 0 0.1191474730947204 1.0542153319768179 4096 2048 384 12 96 360 72 24 0 2554 1920 0 384 1 11640248532 28133564 1 0 4 2 2 2 6 5898240 2949120 2949120 2950900 8985600 150 150 150 1384 720 0 0 0 0 43 0 0 0 0 0
80 1783878946986835000 REFRESH 43 0 0.63493825125345649 0 1 10 1 10 0 0 1507 28 410 3988981 56640 229.58285522460938 1.4335 398.13630000000001 13440 8019 0 0 0.1191474730947204 1.0542153319768179 4096 2048 64 1 16 60 12 4 0 410 320 0 64 0 11640974956 28859988 1 0 4 2 2 2 6 983040 491520 491520 491663 1497600 25 25 25 167 168 0 0 0 6 22 0 0 0 0 0
81 1783878949509790300 DEPTH 43 1 0.62539946171575811 0 1 10 1 10 0 0 1520 62 2537 23742888 147840 1366.5238952636719 9.3079000000000001 2520.9079999999999 80640 39923 1 0 0.1191474730947204 1.0542153319768179 4096 2048 384 12 96 360 72 24 0 2537 1920 0 384 1 11645421604 33306636 1 0 4 2 2 2 6 5898240 2949120 2949120 2950979 8985600 150 150 150 592 1495 0 0 0 0 62 0 0 0 0 0
82 1783878952019597500 DEPTH 43 1 0.61676381486740295 0 1 10 1 10 0 0 1524 42 2545 23742919 147840 1339.1177673339844 8.7262000000000004 2508.2460999999998 80640 32065 1 0 0.1191474730947204 1.0542153319768179 4096 2048 384 12 96 360 72 24 0 2545 1920 0 384 1 11649876412 37761444 1 0 4 2 2 2 6 5898240 2949120 2949120 2950910 8985600 150 150 150 717 1378 0 0 0 0 42 0 0 0 0 0
83 1783878954479808000 DEPTH 43 1 0.60894165711734449 0 1 10 1 10 0 0 1527 30 2547 23743064 147840 1345.1274261474609 8.5828999999999986 2459.0079000000001 80640 25858 1 0 0.1191474730947204 1.0542153319768179 4096 2048 384 12 96 360 72 24 0 2547 1920 0 384 1 11654333260 42218292 1 0 4 2 2 2 6 5898240 2949120 2949120 2950969 8985600 150 150 150 845 1252 0 0 0 0 30 0 0 0 0 0
84 1783878956811526900 DEPTH 43 1 0.60185228581743844 0 1 10 1 10 0 0 1530 38 2559 23743179 147840 1290.3475494384766 8.6285999999999987 2330.4162999999999 80640 18658 1 0 0.1191474730947204 1.0542153319768179 4096 2048 384 12 96 360 72 24 0 2559 1920 0 384 1 11658802348 46687380 1 0 4 2 2 2 6 5898240 2949120 2949120 2951001 8985600 150 150 150 1003 1106 0 0 0 0 38 0 0 0 0 0
85 1783878957181852100 REFRESH 43 0 0.59542305460103306 0 1 10 1 10 0 0 1532 17 416 3989074 56640 223.34873962402344 1.4483999999999999 368.98599999999999 13440 8384 0 0 0.1191474730947204 1.0542153319768179 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 11659534892 47419924 1 0 4 2 2 2 6 983040 491520 491520 491664 1497600 25 25 25 188 153 0 0 0 3 14 0 0 0 0 0
86 1783878959552900700 DEPTH 43 1 0.58958856817151917 0 1 10 1 10 0 0 1539 41 2551 23727704 132480 1278.8613128662109 8.5978999999999992 2369.7037 107520 52796 1 0 0.1191474730947204 1.0542153319768179 4096 2048 384 12 96 360 72 24 0 2551 1920 0 384 1 11663995820 51880852 1 0 4 3 2 2 5 5898240 3932160 2949120 2950969 7987200 150 150 153 983 1115 0 0 0 1 40 0 0 0 0 0
87 1783878961963747700 DEPTH 43 1 0.58428995759654501 0 1 10 1 10 0 0 1551 46 2556 23717211 121920 1317.6381683349609 8.6981999999999999 2409.5257000000001 120960 45817 1 0 0.1191474730947204 1.0542153319768179 4096 2048 384 12 96 360 72 24 0 2556 1920 0 384 1 11668461848 56346880 1 0 4 3 2 3 4 5898240 4423680 2949120 3196912 7238400 150 150 151 1450 655 0 0 0 0 46 0 0 0 0 0
88 1783878964276680000 DEPTH 43 1 0.57947422805800208 0 1 10 1 10 0 0 1557 40 2551 23699780 103680 1266.5642242431641 8.6010000000000009 2311.6774999999998 120960 38080 1 0 0.1191474730947204 1.0542153319768179 4096 2048 384 12 96 360 72 24 0 2551 1920 0 384 1 11672922776 60807808 1 0 4 3 2 3 4 5898240 4423680 2949120 4426445 5990400 150 150 150 1496 605 0 1 0 1 38 0 0 0 0 0
89 1783878966648408600 DEPTH 43 1 0.57509367181284032 0 1 10 1 10 0 0 1558 41 2555 23692204 96000 1260.3525238037109 8.587299999999999 2294.0799000000002 120960 27356 1 0 0.1191474730947204 1.0542153319768179 4096 2048 384 12 96 360 72 24 0 2555 1920 0 384 1 11677387784 65272816 1 0 4 3 3 3 3 5898240 4423680 3440640 4426491 5491200 150 150 151 1515 589 0 1 0 2 38 0 0 0 0 0
90 1783878967035679800 REFRESH 43 0 0.57110533984423739 0 1 10 1 10 0 0 1559 15 416 3987630 55200 224.47308349609375 1.4319 385.93119999999999 20160 12206 0 0 0.1191474730947204 1.0542153319768179 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 11678120328 66005360 1 0 4 3 3 3 3 983040 737280 737280 737512 748800 25 25 30 256 80 0 0 1 1 13 0 0 0 0 0
91 1783878970445765900 DEPTH 43 1 0.56747056633466975 0 1 10 1 10 0 0 1562 42 2527 23677547 81600 1288.6702117919922 8.6029999999999998 3408.7613999999999 120960 59871 1 0 0.1191474730947204 1.0542153319768179 4096 2048 384 12 96 360 72 24 0 2527 1920 0 384 1 11682556856 3333904 1 0 4 3 3 3 3 5898240 4423680 4423680 4426383 4492800 150 150 178 1310 739 2 0 1 0 39 0 0 0 0 0
92 1783878972776542200 DEPTH 43 1 0.56415454067924109 0 1 10 1 10 0 0 1564 29 2526 23677667 81600 1283.7108917236328 8.7163000000000004 2329.5792000000001 120960 48690 1 0 0.1191474730947204 1.0542153319768179 4096 2048 384 12 96 360 72 24 0 2526 1920 0 384 1 11686992284 7769332 1 0 4 3 3 3 3 5898240 4423680 4423680 4426424 4492800 150 150 189 1406 631 0 0 0 0 29 0 0 0 0 0
93 1783878975082125200 DEPTH 43 1 0.56112592228577318 0 1 10 1 10 0 0 1567 37 2542 23677757 81600 1278.3144378662109 8.6022999999999996 2304.3733000000002 120960 38907 1 0 0.1191474730947204 1.0542153319768179 4096 2048 384 12 96 360 72 24 0 2542 1920 0 384 1 11691444032 12221080 1 0 4 3 3 3 3 5898240 4423680 4423680 4426548 4492800 150 150 200 1436 606 0 1 0 0 36 0 0 0 0 0
94 1783878977381206600 DEPTH 43 1 0.55835649388348085 0 1 10 1 10 0 0 1569 31 2540 23677709 81600 1274.9003143310547 8.5883000000000003 2297.8177000000001 120960 27230 1 0 0.1191474730947204 1.0542153319768179 4096 2048 384 12 96 360 72 24 0 2540 1920 0 384 1 11695893740 16670788 1 0 4 3 3 3 3 5898240 4423680 4423680 4426395 4492800 150 150 202 1421 617 0 1 0 0 30 0 0 0 0 0
95 1783878977780025000 REFRESH 43 0 0.55582084948985078 0 1 10 1 10 0 0 1569 6 418 3987664 55200 223.30470275878906 1.4301999999999999 397.55380000000002 20160 11942 0 0 0.1191474730947204 1.0542153319768179 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 11696628324 17405372 1 0 4 3 3 3 3 983040 737280 737280 737511 748800 25 25 42 252 74 0 0 0 0 6 0 0 0 0 0
96 1783878980117467700 DEPTH 43 1 0.54949611357035999 0 1 10 1 10 0 0 1572 37 2536 23677921 81600 1291.4363098144531 8.5772999999999993 2336.2873 120960 56577 1 0 0.1191474730947204 1.0542153319768179 4096 2048 384 12 96 360 72 24 0 2536 1920 0 384 1 11701073952 21851000 1 0 4 3 3 3 3 5898240 4423680 4423680 4426375 4492800 150 150 210 1409 617 2 0 0 0 35 0 0 0 0 0
97 1783878982457876400 DEPTH 43 1 0.54776168827218119 0 1 10 1 10 0 0 1577 35 2547 23677826 81600 1281.2757415771484 8.5829000000000004 2339.1522 120960 45996 1 0 0.1191474730947204 1.0542153319768179 4096 2048 384 12 96 360 72 24 0 2547 1920 0 384 1 11705530800 26307848 1 0 4 3 3 3 3 5898240 4423680 4423680 4426471 4492800 150 150 221 1439 587 0 0 0 0 35 0 0 0 0 0
98 1783878984800360600 DEPTH 43 1 0.54615902592489318 0 1 10 1 10 0 0 1588 51 2541 23677816 81600 1278.6626434326172 8.5764999999999993 2341.1949 120960 36897 1 0 0.1191474730947204 1.0542153319768179 4096 2048 384 12 96 360 72 24 0 2541 1920 0 384 1 11709981528 30758576 1 0 4 3 3 3 3 5898240 4423680 4423680 4426437 4492800 150 150 223 1461 557 2 0 2 0 47 0 0 0 0 0
99 1783878987109025400 DEPTH 43 1 0.54467542428188587 0 1 10 1 10 0 0 1597 44 2537 23677903 81600 1277.0729370117188 8.5906000000000002 2307.4677000000001 120960 25615 1 0 0.1191474730947204 1.0542153319768179 4096 2048 384 12 96 360 72 24 0 2537 1920 0 384 1 11714428176 35205224 1 0 4 3 3 3 3 5898240 4423680 4423680 4426477 4492800 150 150 240 1459 538 0 0 0 0 44 0 0 0 0 0
100 1783878987505891900 REFRESH 43 0 0.54329944222877125 0 1 10 1 10 0 0 1598 11 424 3987690 55200 223.80032348632812 1.4345000000000001 395.52280000000002 20160 12214 0 0 0.1191474730947204 1.0542153319768179 4096 2048 64 1 16 60 12 4 0 424 320 0 64 0 11715168880 35945928 1 0 4 3 3 3 3 983040 737280 737280 737535 748800 25 25 53 240 81 0 0 0 0 11 0 0 0 0 0
101 1783878989843333200 DEPTH 43 1 0.54202077391245473 0 1 10 1 10 0 0 1600 40 2546 23677922 81600 1291.0236663818359 8.6164000000000005 2336.2503999999999 120960 57741 1 0 0.1191474730947204 1.0542153319768179 4096 2048 384 12 96 360 72 24 0 2546 1920 0 384 1 11719624708 40401756 1 0 4 3 3 3 3 5898240 4423680 4423680 4426379 4492800 150 150 278 1390 578 0 0 0 0 40 0 0 0 0 0
102 1783878992164427000 DEPTH 43 1 0.5408301354491446 0 1 10 1 10 0 0 1606 27 2544 23678087 81600 1284.4475555419922 8.5729000000000006 2319.9254000000001 120960 47588 1 0 0.1191474730947204 1.0542153319768179 4096 2048 384 12 96 360 72 24 0 2544 1920 0 384 1 11724078496 44855544 1 0 4 3 3 3 3 5898240 4423680 4423680 4426459 4492800 150 150 276 1397 571 2 0 0 0 25 0 0 0 0 0
103 1783878994491264800 DEPTH 43 1 0.53971916295373268 0 1 10 1 10 0 0 1611 31 2547 23677920 81600 1279.0053863525391 8.8504000000000005 2325.6325000000002 120960 37474 1 0 0.1191474730947204 1.0542153319768179 4096 2048 384 12 96 360 72 24 0 2547 1920 0 384 1 11728535344 49312392 1 0 4 3 3 3 3 5898240 4423680 4423680 4426430 4492800 150 150 264 1430 553 0 0 2 0 29 0 0 0 0 0
104 1783878996878256000 DEPTH 43 1 0.53868032075871963 0 1 10 1 10 0 0 1613 43 2536 23677962 81600 1275.8804473876953 8.5842000000000009 2312.6104999999998 120960 25675 1 0 0.1191474730947204 1.0542153319768179 4096 2048 384 12 96 360 72 24 0 2536 1920 0 384 1 11732980972 53758020 1 0 4 3 3 3 3 5898240 4423680 4423680 4426462 4492800 150 150 255 1451 530 2 0 0 0 41 0 0 0 0 0
105 1783878997274952500 REFRESH 43 0 0.53770681880402882 0 1 10 1 10 0 0 1614 10 421 3987673 55200 224.611328125 1.4266000000000001 395.49860000000001 20160 12289 0 0 0.1191474730947204 1.0542153319768179 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 11733718616 54495664 1 0 4 3 3 3 3 983040 737280 737280 737499 748800 25 25 58 233 80 1 0 0 0 9 0 0 0 0 0
106 1783878999614508200 DEPTH 43 1 0.53679253828090467 0 1 10 1 10 0 0 1615 33 2538 23678016 81600 1292.322021484375 8.5855999999999995 2338.2993000000001 120960 59271 1 0 0.1191474730947204 1.0542153319768179 4096 2048 384 12 96 360 72 24 0 2538 1920 0 384 1 11738166284 58943332 1 0 4 3 3 3 3 5898240 4423680 4423680 4426470 4492800 150 150 298 1396 544 0 0 0 0 33 0 0 0 0 0
107 1783879001935658500 DEPTH 43 1 0.53593196470475624 0 1 10 1 10 1 0 1622 42 2538 23677944 81600 1282.4883117675781 8.5855000000000015 2319.8773999999999 120960 47990 1 0 0.17599883130959393 0.89364042994081905 4096 2048 384 12 96 360 72 24 0 2538 1920 0 384 1 11742613952 63391000 1 0 4 3 3 3 3 5898240 4423680 4423680 4426333 4492800 150 150 278 1424 536 0 0 0 0 42 0 0 0 0 1
108 1783879005325031100 DEPTH 43 1 0.53615881116732922 0 1 10 1 10 0 0 1630 41 2555 23678104 81600 1282.13525390625 8.5946999999999996 3388.1266000000001 120960 38447 1 0 0.17599883130959393 0.89364042994081905 4096 2048 384 12 96 360 72 24 0 2555 1920 0 384 1 11747079040 747748 1 0 4 3 3 3 3 5898240 4423680 4423680 4426440 4492800 150 150 257 1472 526 2 0 0 0 39 0 0 0 0 0
109 1783879007642279600 DEPTH 43 1 0.53528736179242398 0 1 10 1 10 0 0 1635 31 2555 23678078 81600 1275.2089233398438 8.5862999999999996 2315.9549999999999 120960 26373 1 0 0.17599883130959393 0.89364042994081905 4096 2048 384 12 96 360 72 24 0 2555 1920 0 384 1 11751544048 5212756 1 0 4 3 3 3 3 5898240 4423680 4423680 4426482 4492800 150 150 246 1477 532 2 0 0 0 29 0 0 0 0 0
110 1783879008036380000 REFRESH 43 0 0.53446651577028059 0 1 10 1 10 0 0 1637 12 423 3987714 55200 224.28364562988281 1.4311 392.77749999999997 20160 12597 0 0 0.17599883130959393 0.89364042994081905 4096 2048 64 1 16 60 12 4 0 423 320 0 64 0 11752283732 5952440 1 0 4 3 3 3 3 983040 737280 737280 737522 748800 25 25 60 237 76 0 0 0 0 12 0 0 0 0 0
111 1783879010373123400 DEPTH 43 1 0.53369159205267358 0 1 10 1 10 0 0 1642 28 2561 23678107 81600 1292.8543853759766 8.6811000000000007 2335.4641999999999 120960 60755 1 0 0.17599883130959393 0.89364042994081905 4096 2048 384 12 96 360 72 24 0 2561 1920 0 384 1 11756754860 10423568 1 0 4 3 3 3 3 5898240 4423680 4423680 4426470 4492800 150 150 335 1391 535 0 0 1 0 27 0 0 0 0 0
112 1783879012691385000 DEPTH 43 1 0.53295837103809807 0 1 10 1 10 0 0 1647 33 2567 23678103 81600 1286.2289886474609 8.5840000000000014 2316.9969999999998 120960 49471 1 0 0.17599883130959393 0.89364042994081905 4096 2048 384 12 96 360 72 24 0 2567 1920 0 384 1 11761232108 14900816 1 0 4 3 3 3 3 5898240 4423680 4423680 4426463 4492800 150 150 307 1420 540 0 0 0 3 30 0 0 0 0 0
113 1783879015005445300 DEPTH 43 1 0.53226304859015228 0 1 10 1 10 0 0 1650 38 2554 23678089 81600 1279.2105255126953 8.5761999999999983 2312.4974999999999 120960 39741 1 0 0.17599883130959393 0.89364042994081905 4096 2048 384 12 96 360 72 24 0 2554 1920 0 384 1 11765696096 19364804 1 0 4 3 3 3 3 5898240 4423680 4423680 4426408 4492800 150 150 284 1456 514 1 0 0 2 35 0 0 0 0 0
114 1783879017317244800 DEPTH 43 1 0.53160219464900793 0 1 10 1 10 0 0 1656 37 2561 23678156 81600 1279.0610046386719 8.5890000000000004 2310.3058999999998 120960 27313 1 0 0.17599883130959393 0.89364042994081905 4096 2048 384 12 96 360 72 24 0 2561 1920 0 384 1 11770167224 23835932 1 0 4 3 3 3 3 5898240 4423680 4423680 4426403 4492800 150 150 270 1481 510 1 1 0 0 35 0 0 0 0 0
115 1783879017714254400 REFRESH 43 0 0.53097271597685192 0 1 10 1 10 0 0 1657 13 419 3987709 55200 224.81304931640625 1.4341999999999999 395.48140000000001 20160 13015 0 0 0.17599883130959393 0.89364042994081905 4096 2048 64 1 16 60 12 4 0 419 320 0 64 0 11770902828 24571536 1 0 4 3 3 3 3 983040 737280 737280 737502 748800 25 25 70 226 73 0 0 0 0 13 0 0 0 0 0
116 1783879020098546700 DEPTH 43 1 0.53037182262407945 0 1 10 1 10 0 0 1665 32 2562 23678187 81600 1291.4985198974609 8.6755000000000013 2383.0088000000001 120960 62661 1 0 0.17599883130959393 0.89364042994081905 4096 2048 384 12 96 360 72 24 0 2562 1920 0 384 1 11775374976 29043684 1 0 4 3 3 3 3 5898240 4423680 4423680 4426478 4492800 150 150 365 1383 514 0 0 0 0 32 0 0 0 0 0
117 1783879022427209800 DEPTH 43 1 0.52979699774434197 0 1 10 1 10 0 0 1671 48 2557 23678194 81600 1285.3186492919922 8.5985999999999994 2327.3406 120960 52150 1 0 0.17599883130959393 0.89364042994081905 4096 2048 384 12 96 360 72 24 0 2557 1920 0 384 1 11779842024 33510732 1 0 4 3 3 3 3 5898240 4423680 4423680 4426464 4492800 150 150 317 1433 507 0 0 0 2 46 0 0 0 0 0
118 1783879024757153700 DEPTH 43 1 0.52924597042372534 0 1 10 1 10 0 0 1673 33 2548 23678213 81600 1282.1678161621094 8.5968999999999998 2328.7822000000001 120960 41228 1 0 0.17599883130959393 0.89364042994081905 4096 2048 384 12 96 360 72 24 0 2548 1920 0 384 1 11784299892 37968600 1 0 4 3 3 3 3 5898240 4423680 4423680 4426470 4492800 150 150 281 1467 500 1 0 0 0 32 0 0 0 0 0
119 1783879027147919300 DEPTH 43 1 0.52871669122280862 0 1 10 1 10 0 0 1678 37 2555 23678222 81600 1279.6540374755859 8.5866000000000007 2317.7336 120960 28356 1 0 0.17599883130959393 0.89364042994081905 4096 2048 384 12 96 360 72 24 0 2555 1920 0 384 1 11788764900 42433608 1 0 4 3 3 3 3 5898240 4423680 4423680 4426455 4492800 150 150 265 1489 501 0 0 0 0 37 0 0 0 0 0
120 1783879027546428400 REFRESH 43 0 0.52820731016046474 0 1 10 1 10 0 0 1680 14 420 3987773 55200 223.77369689941406 1.4319999999999999 397.2287 20160 13361 0 0 0.17599883130959393 0.89364042994081905 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 11789501524 43170232 1 0 4 3 3 3 3 983040 737280 737280 737537 748800 25 25 75 221 74 0 0 0 1 13 0 0 0 0 0
121 1783879029879781000 DEPTH 43 1 0.52771615689537565 0 1 10 1 10 0 0 1685 33 2563 23678313 81600 1295.7983245849609 8.6021000000000001 2332.2035000000001 120960 64625 1 0 0.17599883130959393 0.89364042994081905 4096 2048 384 12 96 360 72 24 0 2563 1920 0 384 1 11793974692 47643400 1 0 4 3 3 3 3 5898240 4423680 4423680 4426495 4492800 150 150 384 1376 503 0 0 0 2 31 0 0 0 0 0
122 1783879032192157800 DEPTH 43 1 0.52724172288563165 0 1 10 1 10 0 0 1690 38 2559 23678277 81600 1285.9655456542969 8.5766999999999989 2311.1577000000002 120960 53941 1 0 0.17599883130959393 0.89364042994081905 4096 2048 384 12 96 360 72 24 0 2559 1920 0 384 1 11798443780 52112488 1 0 4 3 3 3 3 5898240 4423680 4423680 4426491 4492800 150 150 309 1443 507 0 0 0 3 35 0 0 0 0 0
123 1783879034501797600 DEPTH 43 1 0.52678264532873909 0 1 10 1 10 0 0 1697 28 2559 23678113 81600 1280.8976593017578 8.5754999999999999 2308.377 120960 42638 1 0 0.17599883130959393 0.89364042994081905 4096 2048 384 12 96 360 72 24 0 2559 1920 0 384 1 11802912868 56581576 1 0 4 3 3 3 3 5898240 4423680 4423680 4426323 4492800 150 150 279 1481 499 0 0 0 0 28 0 0 0 0 0
124 1783879036804735000 DEPTH 43 1 0.52633769270412334 0 1 10 1 10 0 0 1700 37 2563 23678310 81600 1279.7805633544922 8.5898000000000003 2301.7202000000002 120960 29592 1 0 0.17599883130959393 0.89364042994081905 4096 2048 384 12 96 360 72 24 0 2563 1920 0 384 1 11807386036 61054744 1 0 4 3 3 3 3 5898240 4423680 4423680 4426475 4492800 150 150 266 1486 511 0 0 0 2 35 0 0 0 0 0
125 1783879037199862700 REFRESH 43 0 0.52590575175800436 0 1 10 1 10 0 0 1701 9 421 3987735 55200 225.57490539550781 1.4259999999999999 393.98379999999997 20160 13292 0 0 0.17599883130959393 0.89364042994081905 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 11808123680 61792388 1 0 4 3 3 3 3 983040 737280 737280 737510 748800 25 25 77 220 74 0 0 0 1 8 0 0 0 0 0
126 1783879039544778900 DEPTH 43 1 0.52448581578652109 0 1 10 1 10 0 0 1706 20 2576 23678251 81600 1294.6941528320312 8.6157000000000004 2343.6604000000002 120960 65786 1 0 0.17599883130959393 0.89364042994081905 4096 2048 384 12 96 360 72 24 0 2576 1920 0 384 1 11812610108 66278816 1 0 4 3 3 3 3 5898240 4423680 4423680 4426420 4492800 150 150 366 1411 499 0 0 0 1 19 0 0 0 0 0
127 1783879042966406900 DEPTH 43 1 0.52417697408739727 0 1 10 1 10 0 0 1707 29 2570 23678365 81600 1287.4795227050781 8.5967000000000002 3420.2975000000001 120960 54464 1 0 0.17599883130959393 0.89364042994081905 4096 2048 384 12 96 360 72 24 0 2570 1920 0 384 1 11817090496 3650564 1 0 4 3 3 3 3 5898240 4423680 4423680 4426516 4492800 150 150 298 1477 495 0 0 0 0 29 0 0 0 0 0
128 1783879045274817600 DEPTH 43 1 0.52386840246340116 0 1 10 1 10 0 0 1711 25 2577 23678330 81600 1283.753662109375 8.5963000000000012 2307.2606000000001 120960 42682 1 0 0.17599883130959393 0.89364042994081905 4096 2048 384 12 96 360 72 24 0 2577 1920 0 384 1 11821577944 8138012 1 0 4 3 3 3 3 5898240 4423680 4423680 4426513 4492800 150 150 278 1487 512 0 0 0 3 22 0 0 0 0 0
129 1783879047586164700 DEPTH 43 1 0.52356035467252426 0 1 10 1 10 0 0 1713 29 2569 23678291 81600 1277.8242645263672 8.5853999999999999 2310.1646999999998 120960 29255 1 0 0.17599883130959393 0.89364042994081905 4096 2048 384 12 96 360 72 24 0 2569 1920 0 384 1 11826057232 12617300 1 0 4 3 3 3 3 5898240 4423680 4423680 4426439 4492800 150 150 276 1491 502 0 0 0 2 27 0 0 0 0 0
130 1783879047977397000 REFRESH 43 0 0.52325305473030925 0 1 10 1 10 0 0 1713 8 419 3987785 55200 225.185791015625 1.4301999999999999 389.96339999999998 20160 13501 0 0 0.17599883130959393 0.89364042994081905 4096 2048 64 1 16 60 12 4 0 419 320 0 64 0 11826792836 13352904 1 0 4 3 3 3 3 983040 737280 737280 737526 748800 25 25 75 221 73 0 0 0 1 7 0 0 0 0 0
131 1783879050316157300 DEPTH 43 1 0.52094669997920595 0 1 10 1 10 0 0 1717 34 2568 23678223 81600 1296.8812866210938 8.5839999999999996 2337.5077000000001 120960 65752 1 0 0.17599883130959393 0.89364042994081905 4096 2048 384 12 96 360 72 24 0 2568 1920 0 384 1 11831271104 17831172 1 0 4 3 3 3 3 5898240 4423680 4423680 4426365 4492800 150 150 374 1390 504 1 0 0 2 31 0 0 0 0 0
132 1783879052655695300 DEPTH 43 1 0.52084146384834762 0 1 10 1 10 0 0 1718 30 2557 23678378 81600 1284.7380676269531 8.6393000000000004 2338.3229999999999 120960 54819 1 0 0.17599883130959393 0.89364042994081905 4096 2048 384 12 96 360 72 24 0 2557 1920 0 384 1 11835738152 22298220 1 0 4 3 3 3 3 5898240 4423680 4423680 4426523 4492800 150 150 321 1431 505 0 0 0 0 30 0 0 0 0 0
133 1783879054972730400 DEPTH 43 1 0.52071749833479264 0 1 10 1 10 0 0 1722 34 2567 23678282 81600 1281.986572265625 8.5961999999999996 2315.7979 120960 43886 1 0 0.17599883130959393 0.89364042994081905 4096 2048 384 12 96 360 72 24 0 2567 1920 0 384 1 11840215400 26775468 1 0 4 3 3 3 3 5898240 4423680 4423680 4426423 4492800 150 150 289 1462 516 0 0 0 0 34 0 0 0 0 0
134 1783879057357186400 DEPTH 43 1 0.5205769362341709 0 1 10 1 10 0 0 1724 24 2575 23678211 81600 1279.6989440917969 8.5820000000000007 2311.5857999999998 120960 30146 1 0 0.17599883130959393 0.89364042994081905 4096 2048 384 12 96 360 72 24 0 2575 1920 0 384 1 11844700808 31260876 1 0 4 3 3 3 3 5898240 4423680 4423680 4426384 4492800 150 150 283 1497 495 0 0 0 0 24 0 0 0 0 0
135 1783879057757523500 REFRESH 43 0 0.52042169314587683 0 1 10 1 10 0 0 1725 6 420 3987767 55200 224.51609802246094 1.4327000000000001 399.12979999999999 20160 13407 0 0 0.17599883130959393 0.89364042994081905 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 11845437432 31997500 1 0 4 3 3 3 3 983040 737280 737280 737534 748800 25 25 79 217 74 0 0 0 0 6 0 0 0 0 0
136 1783879060068476200 DEPTH 43 1 0.51625348927543346 0 1 10 1 10 0 0 1729 34 2580 23678338 81600 1294.7351989746094 8.5744000000000007 2309.8386 120960 65614 1 0 0.17599883130959393 0.89364042994081905 4096 2048 384 12 96 360 72 24 0 2580 1920 0 384 1 11849927940 36488008 1 0 4 3 3 3 3 5898240 4423680 4423680 4426431 4492800 150 150 387 1363 530 0 0 0 0 34 0 0 0 0 0
137 1783879062384769500 DEPTH 43 1 0.51647386905438541 0 1 10 1 10 0 0 1734 46 2576 23678306 81600 1287.436279296875 8.5853000000000002 2315.0475000000001 120960 54467 1 0 0.17599883130959393 0.89364042994081905 4096 2048 384 12 96 360 72 24 0 2576 1920 0 384 1 11854414368 40974436 1 0 4 3 3 3 3 5898240 4423680 4423680 4426444 4492800 150 150 342 1416 518 0 0 0 1 45 0 0 0 0 0
138 1783879064707258900 DEPTH 43 1 0.51664421879604194 0 1 10 1 10 0 0 1736 32 2567 23678280 81600 1281.9650421142578 8.5765999999999991 2321.2746999999999 120960 43930 1 0 0.17599883130959393 0.89364042994081905 4096 2048 384 12 96 360 72 24 0 2567 1920 0 384 1 11858891616 45451684 1 0 4 3 3 3 3 5898240 4423680 4423680 4426428 4492800 150 150 292 1462 513 0 0 0 0 32 0 0 0 0 0
139 1783879066992505500 DEPTH 43 1 0.51676978258355444 0 1 10 1 10 0 0 1739 31 2556 23678407 81600 1279.4337310791016 8.5746000000000002 2284.1062999999999 120960 29588 1 0 0.17599883130959393 0.89364042994081905 4096 2048 384 12 96 360 72 24 0 2556 1920 0 384 1 11863357644 49917712 1 0 4 3 3 3 3 5898240 4423680 4423680 4426527 4492800 150 150 280 1478 498 0 0 0 0 31 0 0 0 0 0
140 1783879067389249900 REFRESH 43 0 0.51685527656716301 0 1 10 1 10 0 0 1739 10 420 3987751 55200 225.85856628417969 1.4322999999999999 395.42809999999997 20160 13451 0 0 0.17599883130959393 0.89364042994081905 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 11864094268 50654336 1 0 4 3 3 3 3 983040 737280 737280 737491 748800 25 25 80 214 76 0 0 0 0 10 0 0 0 0 0
141 1783879069733451300 DEPTH 43 1 0.51690494182975988 0 1 10 1 10 0 0 1741 19 2580 23678277 81600 1296.1902770996094 8.5747999999999998 2342.8535000000002 120960 65530 1 0 0.17599883130959393 0.89364042994081905 4096 2048 384 12 96 360 72 24 0 2580 1920 0 384 1 11868584776 55144844 1 0 4 3 3 3 3 5898240 4423680 4423680 4426415 4492800 150 150 394 1385 501 0 0 0 0 19 0 0 0 0 0
142 1783879072060354700 DEPTH 43 1 0.51692259196400037 0 1 10 1 10 0 0 1744 26 2573 23678388 81600 1286.4255981445312 8.5835000000000008 2325.7431000000001 120960 55158 1 0 0.17599883130959393 0.89364042994081905 4096 2048 384 12 96 360 72 24 0 2573 1920 0 384 1 11873068144 59628212 1 0 4 3 3 3 3 5898240 4423680 4423680 4426472 4492800 150 150 341 1428 504 0 0 0 0 26 0 0 0 0 0
143 1783879074395548400 DEPTH 43 1 0.51691165588986776 0 1 10 1 10 1 0 1749 23 2586 23678862 81600 1284.5660095214844 8.5694999999999997 2333.9141 120960 44245 1 0 0.0099482089504120911 0.66186994104773156 4096 2048 384 12 96 360 72 24 0 2586 1920 0 384 1 11877564772 64124840 1 0 4 3 2 4 3 5898240 4423680 3440640 5410037 4492800 150 150 309 1471 506 0 0 0 3 20 0 0 0 3 1
144 1783879077774159200 DEPTH 43 1 0.52244625793254706 0 1 10 1 10 1 0 1752 34 2598 23679242 81600 1283.8403778076172 8.6057000000000006 3377.3964000000001 120960 30372 1 0 0.0026593134490549885 0.92730186089020639 4096 2048 384 12 96 360 72 24 0 2598 1920 0 384 1 11882073720 1525360 1 0 4 3 2 4 3 5898240 4423680 2949120 5902008 4492800 150 150 203 1571 524 0 0 0 1 33 0 0 0 1 0
145 1783879078167972500 REFRESH 43 0 0.5220454032671038 0 1 10 1 10 0 0 1753 11 422 3987778 55200 224.56524658203125 1.4277 392.62619999999998 20160 13482 0 0 0.0026593134490549885 0.92730186089020639 4096 2048 64 1 16 60 12 4 0 422 320 0 64 0 11882812384 2264024 1 0 4 3 2 4 3 983040 737280 491520 983345 748800 25 25 25 269 78 0 0 0 0 11 0 0 0 0 0
146 1783879080489099300 DEPTH 43 1 0.52144305477780684 0 1 10 1 10 0 0 1754 25 2591 23678977 81600 1296.7731781005859 8.5739000000000001 2319.9061000000002 120960 65539 1 0 0.0026593134490549885 0.92730186089020639 4096 2048 384 12 96 360 72 24 0 2591 1920 0 384 1 11887314112 6765752 1 0 4 3 2 4 3 5898240 4423680 2949120 5901992 4492800 150 150 150 1616 525 0 0 0 0 25 0 0 0 0 0
147 1783879082789092300 DEPTH 43 1 0.5208749977467757 0 1 10 1 10 0 0 1758 20 2585 23677945 81600 1287.181396484375 8.7744 2298.6711 120960 54731 1 0 0.0026593134490549885 0.92730186089020639 4096 2048 384 12 96 360 72 24 0 2585 1920 0 384 1 11891809720 11261360 1 0 4 3 3 3 3 5898240 4423680 4423680 4426398 4492800 150 150 150 1607 528 0 0 0 0 20 0 0 0 0 0
148 1783879085073331400 DEPTH 43 1 0.52033801483610764 0 1 10 1 10 0 0 1759 29 2581 23678069 81600 1282.2661285400391 8.6158999999999999 2282.9056 120960 42794 1 0 0.0026593134490549885 0.92730186089020639 4096 2048 384 12 96 360 72 24 0 2581 1920 0 384 1 11896301248 15752888 1 0 4 3 3 3 3 5898240 4423680 4423680 4426447 4492800 150 150 150 1618 513 0 0 0 0 29 0 0 0 0 0
149 1783879087465538600 DEPTH 43 1 0.51982920750408401 0 1 10 1 10 0 0 1763 29 2582 23678187 81600 1280.7227478027344 8.595600000000001 2320.8051999999998 120960 29482 1 0 0.0026593134490549885 0.92730186089020639 4096 2048 384 12 96 360 72 24 0 2582 1920 0 384 1 11900793796 20245436 1 0 4 3 3 3 3 5898240 4423680 4423680 4426505 4492800 150 150 150 1604 528 0 0 0 0 29 0 0 0 0 0
150 1783879087848923600 REFRESH 43 0 0.51934596418275403 0 1 10 1 10 0 0 1763 5 420 3987705 55200 224.12185668945312 1.4277 382.01409999999998 20160 13534 0 0 0.0026593134490549885 0.92730186089020639 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 11901530420 20982060 1 0 4 3 3 3 3 983040 737280 737280 737516 748800 25 25 25 271 74 0 0 0 0 5 0 0 0 0 0
151 1783879090166961400 DEPTH 43 1 0.51388593163633201 0 1 10 1 10 1 0 1763 16 2586 23677978 81600 1293.5442199707031 8.5809999999999995 2316.8831 120960 65880 1 0 0.0026591728994746554 0.83339662802986914 4096 2048 384 12 96 360 72 24 0 2586 1920 0 384 1 11906027048 25478688 1 0 4 3 3 3 3 5898240 4423680 4423680 4426424 4492800 150 150 150 1608 528 0 0 0 0 16 0 0 0 0 1
152 1783879092471483400 DEPTH 43 1 0.51398073205613959 0 1 10 1 10 1 0 1763 19 2586 23677999 81600 1287.1167907714844 8.5791000000000004 2303.386 120960 54960 1 0 0.01232804816409586 0.656193647820139 4096 2048 384 12 96 360 72 24 0 2586 1920 0 384 1 11910523676 29975316 1 0 4 3 3 3 3 5898240 4423680 4423680 4426402 4492800 150 150 150 1621 515 0 0 0 2 17 0 0 0 0 1
153 1783879094772289700 DEPTH 43 1 0.51432724683510078 0 1 10 1 10 0 0 1766 23 2592 23678001 81600 1283.0167083740234 8.588099999999999 2299.567 120960 43902 1 0 0.01232804816409586 0.656193647820139 4096 2048 384 12 96 360 72 24 0 2592 1920 0 384 1 11915026424 34478064 1 0 4 3 3 3 3 5898240 4423680 4423680 4426418 4492800 150 150 150 1630 512 0 0 0 0 23 0 0 0 0 0
154 1783879097075022500 DEPTH 43 1 0.51429493690503558 0 1 10 1 10 0 0 1773 32 2598 23678065 81600 1280.8468322753906 8.5906000000000002 2301.4432000000002 120960 29983 1 0 0.01232804816409586 0.656193647820139 4096 2048 384 12 96 360 72 24 0 2598 1920 0 384 1 11919535292 38986932 1 0 4 3 3 3 3 5898240 4423680 4423680 4426387 4492800 150 150 150 1633 515 0 0 0 0 32 0 0 0 0 0
155 1783879097460878600 REFRESH 43 0 0.51424152989352889 0 1 10 1 10 0 0 1773 10 416 3987746 55200 225.22572326660156 1.4313 384.53620000000001 20160 13552 0 0 0.01232804816409586 0.656193647820139 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 11920267836 39719476 1 0 4 3 3 3 3 983040 737280 737280 737517 748800 25 25 25 269 72 0 0 0 0 10 0 0 0 0 0
156 1783879099770141300 DEPTH 43 1 0.51416932534048565 0 1 10 1 10 0 0 1780 30 2584 23678115 81600 1293.7182312011719 8.5721999999999987 2308.1343999999999 120960 65872 1 0 0.01232804816409586 0.656193647820139 4096 2048 384 12 96 360 72 24 0 2584 1920 0 384 1 11924762424 44214064 1 0 4 3 3 3 3 5898240 4423680 4423680 4426446 4492800 150 150 150 1599 535 0 0 0 2 28 0 0 0 0 0
157 1783879102069633200 DEPTH 43 1 0.51408039031419173 0 1 10 1 10 0 0 1784 42 2575 23678020 81600 1287.2396697998047 8.5804000000000009 2298.2501000000002 120960 54644 1 0 0.01232804816409586 0.656193647820139 4096 2048 384 12 96 360 72 24 0 2575 1920 0 384 1 11929247832 48699472 1 0 4 3 3 3 3 5898240 4423680 4423680 4426379 4492800 150 150 150 1587 538 0 0 0 0 42 0 0 0 0 0
158 1783879104365324700 DEPTH 43 1 0.51397658270539093 0 1 10 1 10 0 0 1791 37 2580 23678178 81600 1283.3392639160156 8.5983000000000001 2294.4661999999998 120960 43813 1 0 0.01232804816409586 0.656193647820139 4096 2048 384 12 96 360 72 24 0 2580 1920 0 384 1 11933738340 53189980 1 0 4 3 3 3 3 5898240 4423680 4423680 4426501 4492800 150 150 150 1600 530 0 0 0 2 35 0 0 0 0 0
159 1783879106649500700 DEPTH 43 1 0.51385957219083234 0 1 10 1 10 0 0 1793 25 2565 23678056 81600 1282.3543548583984 8.5829000000000004 2282.9549000000002 120960 29883 1 0 0.01232804816409586 0.656193647820139 4096 2048 384 12 96 360 72 24 0 2565 1920 0 384 1 11938213548 57665188 1 0 4 3 3 3 3 5898240 4423680 4423680 4426390 4492800 150 150 150 1569 546 0 0 0 0 25 0 0 0 0 0
160 1783879107045220400 REFRESH 43 0 0.51373085909937588 0 1 10 1 10 0 0 1793 7 418 3987699 55200 224.90118408203125 1.4338 394.38549999999998 20160 13336 0 0 0.01232804816409586 0.656193647820139 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 11938948132 58399772 1 0 4 3 3 3 3 983040 737280 737280 737484 748800 25 25 25 271 72 0 0 0 0 7 0 0 0 0 0
161 1783879109362106900 DEPTH 43 1 0.51059179139042943 0 1 10 1 10 0 0 1793 25 2583 23678148 81600 1300.2751922607422 8.8521000000000001 2315.6293999999998 120960 65816 1 0 0.01232804816409586 0.656193647820139 4096 2048 384 12 96 360 72 24 0 2583 1920 0 384 1 11943441700 62893340 1 0 4 3 3 3 3 5898240 4423680 4423680 4426387 4492800 150 150 150 1604 529 0 0 0 0 25 0 0 0 0 0
162 1783879112735664400 DEPTH 43 1 0.5107435799335156 0 1 10 1 10 0 0 1795 27 2587 23678214 81600 1287.9953765869141 8.5760000000000005 3372.4301 120960 54529 1 0 0.01232804816409586 0.656193647820139 4096 2048 384 12 96 360 72 24 0 2587 1920 0 384 1 11947939428 282348 1 0 4 3 3 3 3 5898240 4423680 4423680 4426503 4492800 150 150 150 1614 523 0 0 0 1 26 0 0 0 0 0
163 1783879115032109200 DEPTH 43 1 0.5108573122588852 0 1 10 1 10 0 0 1797 26 2589 23678000 81600 1282.5765991210938 8.6156000000000006 2295.3150999999998 120960 43995 1 0 0.01232804816409586 0.656193647820139 4096 2048 384 12 96 360 72 24 0 2589 1920 0 384 1 11952439116 4782036 1 0 4 3 3 3 3 5898240 4423680 4423680 4426326 4492800 150 150 150 1615 524 0 0 0 0 26 0 0 0 0 0
164 1783879117334409600 DEPTH 43 1 0.51093696493209961 0 1 10 1 10 0 0 1804 24 2593 23678153 81600 1281.8074035644531 8.5792000000000002 2301.1439999999998 120960 30010 1 0 0.01232804816409586 0.656193647820139 4096 2048 384 12 96 360 72 24 0 2593 1920 0 384 1 11956942884 9285804 1 0 4 3 3 3 3 5898240 4423680 4423680 4426427 4492800 150 150 150 1623 520 0 0 0 0 24 0 0 0 0 0
165 1783879117788007400 REFRESH 43 0 0.51098611469021382 0 1 10 1 10 0 0 1805 7 420 3987743 55200 224.66047668457031 1.4357 388.46260000000001 20160 13421 0 0 0.01232804816409586 0.656193647820139 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 11957679508 10022428 1 0 4 3 3 3 3 983040 737280 737280 737518 748800 25 25 25 270 75 0 0 0 0 7 0 0 0 0 0
166 1783879120077485600 DEPTH 43 1 0.50800797846342649 0 1 10 1 10 0 0 1810 30 2593 23678158 81600 1296.4751434326172 8.5709999999999997 2288.3400999999999 120960 65837 1 0 0.01232804816409586 0.656193647820139 4096 2048 384 12 96 360 72 24 0 2593 1920 0 384 1 11962183276 14526196 1 0 4 3 3 3 3 5898240 4423680 4423680 4426426 4492800 150 150 150 1613 530 0 0 0 1 29 0 0 0 0 0
167 1783879122382229800 DEPTH 43 1 0.50830544939367484 0 1 10 1 10 0 0 1817 26 2587 23678338 81600 1288.7427520751953 8.6280999999999999 2303.4177 120960 54870 1 0 0.01232804816409586 0.656193647820139 4096 2048 384 12 96 360 72 24 0 2587 1920 0 384 1 11966680924 19023844 1 0 4 3 3 3 3 5898240 4423680 4423680 4426565 4492800 150 150 150 1603 534 0 0 2 0 24 0 0 0 0 0
168 1783879124663016700 DEPTH 43 1 0.50855112925050561 0 1 10 1 10 0 0 1824 36 2585 23678170 81600 1283.5328979492188 8.5975000000000001 2279.3831 120960 43673 1 0 0.01232804816409586 0.656193647820139 4096 2048 384 12 96 360 72 24 0 2585 1920 0 384 1 11971176532 23519452 1 0 4 3 3 3 3 5898240 4423680 4423680 4426431 4492800 150 150 150 1610 525 0 0 2 0 34 0 0 0 0 0
169 1783879126965481300 DEPTH 43 1 0.50875035760451914 0 1 10 1 10 0 0 1840 53 2587 23678150 81600 1284.3280639648438 8.7257999999999996 2301.2793000000001 120960 29828 1 0 0.01232804816409586 0.656193647820139 4096 2048 384 12 96 360 72 24 0 2587 1920 0 384 1 11975674180 28017100 1 0 4 3 3 3 3 5898240 4423680 4423680 4426441 4492800 150 150 150 1613 524 0 0 0 0 53 0 0 0 0 0
170 1783879127349029400 REFRESH 43 0 0.50890793808265034 0 1 10 1 10 0 0 1842 9 416 3987718 55200 225.37216186523438 1.4333 382.38900000000001 20160 13453 0 0 0.01232804816409586 0.656193647820139 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 11976406724 28749644 1 0 4 3 3 3 3 983040 737280 737280 737477 748800 25 25 25 269 72 0 0 0 0 9 0 0 0 0 0
171 1783879129626300300 DEPTH 43 1 0.50802819199712734 0 1 10 1 10 0 0 1854 69 2586 23678252 81600 1302.3700256347656 8.6089000000000002 2276.1248999999998 120960 65861 1 0 0.01232804816409586 0.656193647820139 4096 2048 384 12 96 360 72 24 0 2586 1920 0 384 1 11980903352 33246272 1 0 4 3 3 3 3 5898240 4423680 4423680 4426497 4492800 150 150 150 1595 541 0 0 1 0 68 0 0 0 0 0
172 1783879131935161800 DEPTH 43 1 0.50821500661076124 0 1 10 1 10 0 0 1859 48 2592 23678116 81600 1294.9841156005859 8.5691000000000006 2307.5468999999998 120960 54668 1 0 0.01232804816409586 0.656193647820139 4096 2048 384 12 96 360 72 24 0 2592 1920 0 384 1 11985406100 37749020 1 0 4 3 3 3 3 5898240 4423680 4423680 4426366 4492800 150 150 150 1606 536 0 0 0 0 48 0 0 0 0 0
173 1783879134258245600 DEPTH 43 1 0.50836187857495352 0 1 10 1 10 1 0 1863 40 2585 23678123 81600 1289.9467926025391 8.5893999999999995 2321.7431000000001 120960 43737 1 0 0.01017337260156595 0.63921982453475934 4096 2048 384 12 96 360 72 24 0 2585 1920 0 384 1 11989901708 42244628 1 0 4 3 3 3 3 5898240 4423680 4423680 4426358 4492800 150 150 150 1600 535 0 0 0 0 40 0 0 0 0 1
174 1783879136547379100 DEPTH 43 1 0.5085079846743612 0 1 10 1 10 0 0 1868 38 2594 23678223 81600 1284.9921875 8.5762 2287.9584 120960 29991 1 0 0.01017337260156595 0.63921982453475934 4096 2048 384 12 96 360 72 24 0 2594 1920 0 384 1 11994406496 46749416 1 0 4 3 3 3 3 5898240 4423680 4423680 4426435 4492800 150 150 150 1603 541 0 0 0 0 38 0 0 0 0 0
175 1783879136944101200 REFRESH 43 0 0.508583487240437 0 1 10 1 10 0 0 1868 7 420 3987719 55200 224.90419006347656 1.4263999999999999 395.1474 20160 13490 0 0 0.01017337260156595 0.63921982453475934 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 11995143120 47486040 1 0 4 3 3 3 3 983040 737280 737280 737491 748800 25 25 25 268 77 0 0 0 0 7 0 0 0 0 0
176 1783879139276742900 DEPTH 43 1 0.50563062553481364 0 1 10 1 10 0 0 1870 30 2584 23678250 81600 1298.5336303710938 8.5860000000000003 2331.4895000000001 120960 66412 1 0 0.01017337260156595 0.63921982453475934 4096 2048 384 12 96 360 72 24 0 2584 1920 0 384 1 11999637708 51980628 1 0 4 3 3 3 3 5898240 4423680 4423680 4426447 4492800 150 150 150 1606 528 0 0 0 0 30 0 0 0 0 0
177 1783879141577975700 DEPTH 43 1 0.50595238148178412 0 1 10 1 10 0 0 1871 30 2598 23678249 81600 1290.9851684570312 8.6024000000000012 2300.0717 120960 54997 1 0 0.01017337260156595 0.63921982453475934 4096 2048 384 12 96 360 72 24 0 2598 1920 0 384 1 12004146576 56489496 1 0 4 3 3 3 3 5898240 4423680 4423680 4426467 4492800 150 150 150 1614 534 0 0 0 0 30 0 0 0 0 0
178 1783879143907871000 DEPTH 43 1 0.50622143708282263 0 1 10 1 10 0 0 1875 25 2596 23678219 81600 1288.1296081542969 8.5731999999999999 2328.7283000000002 120960 44143 1 0 0.01017337260156595 0.63921982453475934 4096 2048 384 12 96 360 72 24 0 2596 1920 0 384 1 12008653404 60996324 1 0 4 3 3 3 3 5898240 4423680 4423680 4426421 4492800 150 150 150 1621 525 0 0 0 0 25 0 0 0 0 0
179 1783879146230281100 DEPTH 43 1 0.50644320443782498 0 1 10 1 10 1 0 1878 31 2592 23678218 81600 1284.2526702880859 8.5838000000000001 2321.1754000000001 120960 30252 1 0 0.010173385569902268 0.61003798606578097 4096 2048 384 12 96 360 72 24 0 2592 1920 0 384 1 12013156152 65499072 1 0 4 3 3 3 3 5898240 4423680 4423680 4426414 4492800 150 150 150 1616 526 0 0 0 0 31 0 0 0 0 1
180 1783879146627487100 REFRESH 43 0 0.50667308120150489 0 1 10 1 10 0 0 1879 8 420 3987751 55200 225.15199279785156 1.4313 396.01029999999997 20160 13530 0 0 0.010173385569902268 0.61003798606578097 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 12013892776 66235696 1 0 4 3 3 3 3 983040 737280 737280 737491 748800 25 25 25 271 74 0 0 0 0 8 0 0 0 0 0
181 1783879150069543800 DEPTH 43 1 0.50480933830403274 0 1 10 1 10 0 0 1880 26 2597 23678222 81600 1302.3909759521484 8.6058000000000003 3371.4321 120960 65948 1 0 0.010173385569902268 0.61003798606578097 4096 2048 384 12 96 360 72 24 0 2597 1920 0 384 1 12018400704 3635244 1 0 4 3 3 3 3 5898240 4423680 4423680 4426417 4492800 150 150 150 1625 522 0 0 0 0 26 0 0 0 0 0
182 1783879152373885700 DEPTH 43 1 0.50511200327804284 0 1 10 1 10 0 0 1881 27 2595 23678264 81600 1294.7261505126953 8.5831 2303.1590000000001 120960 54821 1 0 0.010173385569902268 0.61003798606578097 4096 2048 384 12 96 360 72 24 0 2595 1920 0 384 1 12022906512 8141052 1 0 4 3 3 3 3 5898240 4423680 4423680 4426438 4492800 150 150 150 1633 512 0 0 0 0 27 0 0 0 0 0
183 1783879154683369300 DEPTH 43 1 0.50536457087334186 0 1 10 1 10 0 0 1882 21 2597 23678255 81600 1289.3040771484375 8.7744999999999997 2308.1945000000001 120960 44176 1 0 0.010173385569902268 0.61003798606578097 4096 2048 384 12 96 360 72 24 0 2597 1920 0 384 1 12027414360 12648900 1 0 4 3 3 3 3 5898240 4423680 4423680 4426409 4492800 150 150 150 1625 522 0 0 0 0 21 0 0 0 0 0
184 1783879156980187900 DEPTH 43 1 0.50557218479909827 0 1 10 1 10 0 0 1884 17 2582 23678242 81600 1284.3522338867188 8.5775000000000006 2295.6734999999999 120960 29913 1 0 0.010173385569902268 0.61003798606578097 4096 2048 384 12 96 360 72 24 0 2582 1920 0 384 1 12031906908 17141448 1 0 4 3 3 3 3 5898240 4423680 4423680 4426431 4492800 150 150 150 1607 525 0 0 0 0 17 0 0 0 0 0
185 1783879157389114000 REFRESH 43 0 0.50573947285336307 0 1 10 1 10 0 0 1886 9 421 3987739 55200 226.53543090820312 1.4321999999999999 407.57209999999998 20160 13613 0 0 0.010173385569902268 0.61003798606578097 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 12032644552 17879092 1 0 4 3 3 3 3 983040 737280 737280 737495 748800 25 25 25 271 75 0 0 0 0 9 0 0 0 0 0
186 1783879159733613200 DEPTH 43 1 0.50487059853910865 0 1 10 1 10 0 0 1887 22 2588 23678308 81600 1301.1855316162109 8.5765999999999991 2343.1307000000002 120960 65740 1 0 0.010173385569902268 0.61003798606578097 4096 2048 384 12 96 360 72 24 0 2588 1920 0 384 1 12037143220 22377760 1 0 4 3 3 3 3 5898240 4423680 4423680 4426441 4492800 150 150 150 1630 508 0 0 0 1 21 0 0 0 0 0
187 1783879162051814400 DEPTH 43 1 0.50506930751814294 0 1 10 1 10 0 0 1889 32 2592 23678222 81600 1293.5034942626953 8.5829000000000004 2316.9160000000002 120960 55109 1 0 0.010173385569902268 0.61003798606578097 4096 2048 384 12 96 360 72 24 0 2592 1920 0 384 1 12041645968 26880508 1 0 4 3 3 3 3 5898240 4423680 4423680 4426382 4492800 150 150 150 1636 506 0 0 0 0 32 0 0 0 0 0
188 1783879164380431500 DEPTH 43 1 0.50522896941912898 0 1 10 1 10 0 0 1892 33 2610 23678256 81600 1287.1558532714844 8.5835000000000008 2327.3526999999999 120960 43276 1 0 0.010173385569902268 0.61003798606578097 4096 2048 384 12 96 360 72 24 0 2610 1920 0 384 1 12046167076 31401616 1 0 4 3 3 3 3 5898240 4423680 4423680 4426413 4492800 150 150 150 1642 518 0 0 0 0 33 0 0 0 0 0
189 1783879166709365200 DEPTH 43 1 0.50535361546430835 0 1 10 1 10 0 0 1900 35 2611 23678291 81600 1285.6821594238281 8.5731000000000002 2327.8121000000001 120960 29499 1 0 0.010173385569902268 0.61003798606578097 4096 2048 384 12 96 360 72 24 0 2611 1920 0 384 1 12050689204 35923744 1 0 4 3 3 3 3 5898240 4423680 4423680 4426442 4492800 150 150 150 1630 531 0 0 1 1 33 0 0 0 0 0
190 1783879167105771400 REFRESH 43 0 0.50544687233307295 0 1 10 1 10 0 0 1901 8 424 3987789 55200 225.73977661132812 1.4308000000000001 395.12569999999999 20160 13470 0 0 0.010173385569902268 0.61003798606578097 4096 2048 64 1 16 60 12 4 0 424 320 0 64 0 12051429908 36664448 1 0 4 3 3 3 3 983040 737280 737280 737537 748800 25 25 25 273 76 0 0 1 0 7 0 0 0 0 0
191 1783879169452125300 DEPTH 43 1 0.50351200263871154 0 1 10 1 10 0 0 1906 39 2621 23678330 81600 1300.5915374755859 8.5874999999999986 2345.1626999999999 120960 65559 1 0 0.010173385569902268 0.61003798606578097 4096 2048 384 12 96 360 72 24 0 2621 1920 0 384 1 12055962236 41196776 1 0 4 3 3 3 3 5898240 4423680 4423680 4426474 4492800 150 150 150 1654 517 0 0 2 0 37 0 0 0 0 0
192 1783879171775430900 DEPTH 43 1 0.50375194135702406 0 1 10 1 10 0 0 1910 33 2596 23678253 81600 1293.8874969482422 8.5804999999999989 2322.0214999999998 120960 54758 1 0 0.010173385569902268 0.61003798606578097 4096 2048 384 12 96 360 72 24 0 2596 1920 0 384 1 12060469064 45703604 1 0 4 3 3 3 3 5898240 4423680 4423680 4426425 4492800 150 150 150 1660 486 5 0 0 0 28 0 0 0 0 0
193 1783879174081603900 DEPTH 43 1 0.50394932861163055 0 1 10 1 10 0 0 1916 39 2586 23678310 81600 1290.3617553710938 8.5878999999999994 2305.0158999999999 120960 43035 1 0 0.010173385569902268 0.61003798606578097 4096 2048 384 12 96 360 72 24 0 2586 1920 0 384 1 12064965692 50200232 1 0 4 3 3 3 3 5898240 4423680 4423680 4426446 4492800 150 150 150 1629 507 0 0 0 0 39 0 0 0 0 0
194 1783879176377659500 DEPTH 43 1 0.50410853918031384 0 1 10 1 10 1 0 1921 48 2571 23678313 81600 1289.2282867431641 8.5823 2294.7550000000001 120960 29746 1 0 0.018792301583039003 0.43459967789178922 4096 2048 384 12 96 360 72 24 0 2571 1920 0 384 1 12069447020 54681560 1 0 4 3 3 3 3 5898240 4423680 4423680 4426440 4492800 150 150 150 1616 505 1 0 0 0 47 0 0 0 0 1
195 1783879176773249800 REFRESH 43 0 0.50426902320528555 0 1 10 1 10 0 0 1926 16 416 3987788 55200 225.25337219238281 1.4246000000000001 394.43419999999998 20160 13492 0 0 0.018792301583039003 0.43459967789178922 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 12070179564 55414104 1 0 4 3 3 3 3 983040 737280 737280 737522 748800 25 25 25 270 71 0 0 0 0 16 0 0 0 0 0
196 1783879179131070700 DEPTH 43 1 0.50435974205710976 0 1 10 1 10 1 0 1929 69 2504 23678213 81600 1301.6135711669922 8.5899000000000001 2356.6102999999998 120960 66128 1 0 0.01910576089822183 0.41606773921022733 4096 2048 384 12 96 360 72 24 0 2504 1920 0 384 1 12074592552 59827092 1 0 4 3 3 3 3 5898240 4423680 4423680 4426332 4492800 150 150 150 1450 604 2 0 0 1 66 0 0 0 0 2
197 1783879181463664500 DEPTH 43 1 0.50447561213561443 0 1 10 1 9 1 0 1966 161 2504 23715247 119040 1293.2833404541016 8.6905999999999999 2254.9508000000001 107520 51658 1 0 0.009912286308801796 0.43127298951197091 4096 2048 384 12 96 360 72 24 0 2504 1920 0 384 1 12079005540 64240080 1 0 4 2 2 2 6 5898240 3932160 2949120 3934638 6988800 150 150 150 873 1181 2 0 0 5 154 0 0 0 0 4
198 1783879184764574500 DEPTH 43 1 0.60450961287061866 0 1 9 1 9 1 0 2011 156 2484 23743353 147840 1279.1397399902344 8.5727999999999991 3299.6089999999999 80640 27980 1 0 0.051954670644896256 0.45871553646269403 4096 2048 384 12 96 360 72 24 0 2484 1920 0 384 1 12083398208 1525384 1 0 4 2 2 2 6 5898240 2949120 2949120 2950972 8985600 150 150 150 252 1782 0 0 0 0 156 0 0 0 0 2
199 1783879186977105900 DEPTH 43 1 0.59678437594922196 0 1 9 1 9 0 0 2030 125 2489 23743382 147840 1274.2932891845703 8.5745000000000005 2211.3861999999999 80640 20890 1 0 0.051954670644896256 0.45871553646269403 4096 2048 384 12 96 360 72 24 0 2489 1920 0 384 1 12087795896 5923072 1 0 4 2 2 2 6 5898240 2949120 2949120 2950987 8985600 150 150 150 409 1630 0 0 0 0 125 0 0 0 0 0
200 1783879187342982600 REFRESH 43 0 0.58755189416358955 0 1 9 1 9 0 0 2045 32 401 3989001 56640 222.44044494628906 1.4289000000000001 364.57979999999998 13440 8128 0 0 0.051954670644896256 0.45871553646269403 4096 2048 64 1 16 60 12 4 0 401 320 0 64 0 12088513140 6640316 1 0 4 2 2 2 6 983040 491520 491520 491669 1497600 27 25 25 29 295 0 0 0 0 32 0 0 0 0 0
201 1783879189515047500 DEPTH 43 1 0.57922502436674761 0 1 9 1 9 0 0 2068 81 2503 23743131 147840 1283.9680023193359 8.581900000000001 2170.7238000000002 80640 40390 1 0 0.051954670644896256 0.45871553646269403 4096 2048 384 12 96 360 72 24 0 2503 1920 0 384 1 12092925108 11052284 1 0 4 2 2 2 6 5898240 2949120 2949120 2951051 8985600 150 150 150 173 1880 0 0 0 0 81 0 0 0 0 0
202 1783879191681358500 DEPTH 43 1 0.57171331503520306 0 1 9 1 9 0 0 2096 123 2487 23743177 147840 1279.2954864501953 8.5854000000000017 2165.1581000000001 80640 32697 1 0 0.051954670644896256 0.45871553646269403 4096 2048 384 12 96 360 72 24 0 2487 1920 0 384 1 12097320756 15447932 1 0 4 2 2 2 6 5898240 2949120 2949120 2951011 8985600 150 150 150 181 1856 0 0 0 0 123 0 0 0 0 0
203 1783879193840280100 DEPTH 43 1 0.56493535863658351 0 1 9 1 9 0 0 2140 178 2492 23743361 147840 1277.5353393554688 8.5947999999999993 2157.6990000000001 80640 26219 1 0 0.051954670644896256 0.45871553646269403 4096 2048 384 12 96 360 72 24 0 2492 1920 0 384 1 12101721504 19848680 1 0 4 2 2 2 6 5898240 2949120 2949120 2951039 8985600 150 150 150 200 1842 4 0 0 0 174 0 0 0 0 0
204 1783879196005297500 DEPTH 43 1 0.55881788724784631 0 1 9 1 9 1 0 2182 149 2488 23743038 147840 1269.7932586669922 8.6096000000000004 2163.7568999999999 80640 18201 1 0 0.030209943552192954 0.44446393910354609 4096 2048 384 12 96 360 72 24 0 2488 1920 0 384 1 12106118172 24245348 1 0 4 2 2 2 6 5898240 2949120 2949120 2950893 8985600 150 150 150 216 1822 0 0 0 0 149 0 0 0 0 2
205 1783879196358608800 REFRESH 43 0 0.55338001363533418 0 1 9 1 9 0 0 2196 35 400 3989011 56640 222.87667846679688 1.4278999999999999 352.01929999999999 13440 8465 0 0 0.030209943552192954 0.44446393910354609 4096 2048 64 1 16 60 12 4 0 400 320 0 64 0 12106834396 24961572 1 0 4 2 2 2 6 983040 491520 491520 491645 1497600 27 25 25 29 294 0 0 0 0 35 0 0 0 0 0
206 1783879198624191800 DEPTH 43 1 0.54838377310650099 0 1 9 1 9 0 0 2226 139 2511 23731696 136320 1283.2879028320312 8.5914000000000001 2264.4198999999999 100800 50223 1 0 0.030209943552192954 0.44446393910354609 4096 2048 384 12 96 360 72 24 0 2511 1920 0 384 1 12111254524 29381700 1 0 4 3 2 2 5 5898240 3686400 2949120 2951042 8236800 150 150 150 436 1625 0 0 0 9 130 0 0 0 0 0
207 1783879200936638900 DEPTH 43 1 0.54387016141614786 0 1 9 1 9 0 0 2235 79 2566 23721049 125760 1277.7173004150391 8.5964999999999989 2311.1963000000001 120960 46281 1 0 0.030209943552192954 0.44446393910354609 4096 2048 384 12 96 360 72 24 0 2566 1920 0 384 1 12115730752 33857928 1 0 4 3 2 2 5 5898240 4423680 2949120 2951015 7488000 150 150 150 1372 744 1 0 0 20 58 0 0 0 0 0
208 1783879203265190000 DEPTH 43 1 0.53979101864172563 0 1 9 1 9 0 0 2241 42 2602 23702657 106560 1273.7222747802734 8.6113 2327.3908000000001 120960 36935 1 0 0.030209943552192954 0.44446393910354609 4096 2048 384 12 96 360 72 24 0 2602 1920 0 384 1 12120243700 38370876 1 0 4 3 2 3 4 5898240 4423680 2949120 4180585 6240000 150 150 150 1608 544 0 0 0 4 38 0 0 0 0 0
209 1783879205592509200 DEPTH 43 1 0.53610299979080522 0 1 9 1 9 0 0 2252 63 2589 23692147 96000 1270.4820861816406 8.5738000000000003 2326.1125000000002 120960 26242 1 0 0.030209943552192954 0.44446393910354609 4096 2048 384 12 96 360 72 24 0 2589 1920 0 384 1 12124743388 42870564 1 0 4 3 3 3 3 5898240 4423680 3440640 4426379 5491200 150 150 152 1619 518 0 0 8 7 48 0 0 0 0 0
210 1783879205959684200 REFRESH 43 0 0.5327670933235048 0 1 9 1 9 0 0 2275 60 412 3987659 55200 224.49562072753906 1.4289000000000001 366.0059 20160 12152 0 0 0.030209943552192954 0.44446393910354609 4096 2048 64 1 16 60 12 4 0 412 320 0 64 0 12125471852 43599028 1 0 4 3 3 3 3 983040 737280 737280 737513 748800 25 25 28 240 94 0 0 0 40 20 0 0 0 0 0
211 1783879208210015900 DEPTH 43 1 0.52974818782238553 0 1 9 1 9 0 0 2303 97 2531 23677642 81600 1296.5684509277344 8.5813999999999986 2249.0668999999998 120960 59632 1 0 0.030209943552192954 0.44446393910354609 4096 2048 384 12 96 360 72 24 0 2531 1920 0 384 1 12129912380 48039556 1 0 4 3 3 3 3 5898240 4423680 4423680 4426405 4492800 150 150 168 1070 993 2 0 2 4 89 0 0 0 0 0
212 1783879210481546700 DEPTH 43 1 0.52701468199507595 0 1 9 1 9 1 0 2321 96 2547 23681712 85440 1286.4523773193359 8.5915999999999997 2270.3926000000001 120960 48194 1 0 0.031067137964755395 0.28224061304809089 4096 2048 384 12 96 360 72 24 0 2547 1920 0 384 1 12134369228 52496404 1 0 4 3 2 3 4 5898240 4423680 4177920 4426530 4742400 150 150 177 1025 1045 4 0 7 0 85 0 0 0 0 1
213 1783879212867937200 DEPTH 43 1 0.52511813361071003 0 1 9 1 9 0 0 2335 73 2548 23677731 81600 1281.1149597167969 8.5853999999999999 2293.1298999999999 120960 39052 1 0 0.031067137964755395 0.28224061304809089 4096 2048 384 12 96 360 72 24 0 2548 1920 0 384 1 12138827096 56954272 1 0 4 3 3 3 3 5898240 4423680 4423680 4426402 4492800 150 150 191 1190 867 1 0 1 7 64 0 0 0 0 0
214 1783879215166034900 DEPTH 43 1 0.52281494387068983 0 1 9 1 9 0 0 2342 65 2562 23677869 81600 1278.2879028320312 8.6199000000000012 2296.8654999999999 120960 27477 1 0 0.031067137964755395 0.28224061304809089 4096 2048 384 12 96 360 72 24 0 2562 1920 0 384 1 12143299244 61426420 1 0 4 3 3 3 3 5898240 4423680 4423680 4426479 4492800 150 150 195 1491 576 0 0 6 1 58 0 0 0 0 0
215 1783879215557221500 REFRESH 43 0 0.5207258726856332 0 1 9 1 9 0 0 2350 25 417 3987674 55200 224.68415832519531 1.4346000000000001 389.8777 20160 12202 0 0 0.031067137964755395 0.28224061304809089 4096 2048 64 1 16 60 12 4 0 417 320 0 64 0 12144032808 62159984 1 0 4 3 3 3 3 983040 737280 737280 737514 748800 25 25 41 255 71 0 0 3 12 10 0 0 0 0 0
216 1783879217842583600 DEPTH 43 1 0.51882960308084414 0 1 9 1 9 0 0 2371 100 2556 23678085 81600 1297.3606262207031 8.5815000000000001 2284.2139999999999 120960 57319 1 0 0.031067137964755395 0.28224061304809089 4096 2048 384 12 96 360 72 24 0 2556 1920 0 384 1 12148498836 66626012 1 0 4 3 3 3 3 5898240 4423680 4423680 4426518 4492800 150 150 243 1037 976 0 0 4 1 95 0 0 0 0 0
217 1783879221231407300 DEPTH 43 1 0.51710694883274677 0 1 9 1 9 0 0 2376 57 2557 23677731 81600 1285.9127655029297 8.5746000000000002 3387.5976999999998 120960 46082 1 1 0.031067137964755395 0.28224061304809089 4096 2048 384 12 96 360 72 24 0 2557 1920 0 384 1 12152965964 3984848 1 0 4 3 3 3 3 5898240 4423680 4423680 4426408 4492800 150 150 259 1170 828 1 0 3 1 51 0 0 0 0 0
218 1783879223554414700 DEPTH 43 1 0.51554064140707767 0 1 9 1 9 0 0 2380 46 2544 23677904 81600 1285.0782012939453 8.5703999999999994 2321.7696000000001 120960 36440 1 0 0.031067137964755395 0.28224061304809089 4096 2048 384 12 96 360 72 24 0 2544 1920 0 384 1 12157419752 8438636 1 0 4 3 3 3 3 5898240 4423680 4423680 4426487 4492800 150 150 256 1260 728 0 0 4 0 42 0 0 0 0 0
219 1783879225861087200 DEPTH 43 1 0.51411513820301735 0 1 9 1 9 0 0 2383 45 2551 23678036 81600 1279.7601623535156 8.6133000000000006 2305.2919999999999 120960 25562 1 0 0.031067137964755395 0.28224061304809089 4096 2048 384 12 96 360 72 24 0 2551 1920 0 384 1 12161880680 12899564 1 0 4 3 3 3 3 5898240 4423680 4423680 4426541 4492800 150 150 263 1380 608 0 0 2 0 43 0 0 0 0 0
220 1783879226244304900 REFRESH 43 0 0.51281644997267395 0 1 9 1 9 0 0 2389 21 418 3987710 55200 224.5611572265625 1.4317 381.8854 20160 12238 0 0 0.031067137964755395 0.28224061304809089 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 12162615264 13634148 1 0 4 3 3 3 3 983040 737280 737280 737516 748800 25 25 55 235 78 0 0 2 8 11 0 0 0 0 0
221 1783879228562792300 DEPTH 43 1 0.51163198549838795 0 1 9 1 9 0 0 2393 61 2556 23678058 81600 1297.5492095947266 8.6186000000000007 2317.2746999999999 120960 58160 1 0 0.031067137964755395 0.28224061304809089 4096 2048 384 12 96 360 72 24 0 2556 1920 0 384 1 12167081292 18100176 1 0 4 3 3 3 3 5898240 4423680 4423680 4426459 4492800 150 150 285 1130 841 0 0 4 0 57 0 0 0 0 0
222 1783879230873606300 DEPTH 43 1 0.51055041180208105 0 1 9 1 9 0 0 2401 54 2545 23678155 81600 1286.7707672119141 8.7111999999999998 2309.4506999999999 120960 47257 1 0 0.031067137964755395 0.28224061304809089 4096 2048 384 12 96 360 72 24 0 2545 1920 0 384 1 12171536100 22554984 1 0 4 3 3 3 3 5898240 4423680 4423680 4426508 4492800 150 150 289 1167 789 0 0 5 3 46 0 0 0 0 0
223 1783879233181319600 DEPTH 43 1 0.50956152833345048 0 1 9 1 9 0 0 2409 48 2544 23677898 81600 1285.5767974853516 8.5750999999999991 2306.5196999999998 120960 37520 1 0 0.031067137964755395 0.28224061304809089 4096 2048 384 12 96 360 72 24 0 2544 1920 0 384 1 12175989888 27008772 1 0 4 3 3 3 3 5898240 4423680 4423680 4426435 4492800 150 150 286 1296 662 0 0 3 0 45 0 0 0 0 0
224 1783879235499703900 DEPTH 43 1 0.50865615373912765 0 1 9 1 9 1 0 2416 54 2547 23677942 81600 1282.0387878417969 8.5814000000000004 2317.2156 120960 25505 1 0 0.037346797275121628 0.2555694096638077 4096 2048 384 12 96 360 72 24 0 2547 1920 0 384 1 12180446736 31465620 1 0 4 3 3 3 3 5898240 4423680 4423680 4426420 4492800 150 150 288 1398 561 0 0 5 1 48 0 0 0 0 1
225 1783879235885245600 REFRESH 43 0 0.50788597969769644 0 1 9 1 9 0 0 2417 18 414 3987672 55200 224.09625244140625 2.2663000000000002 384.2303 20160 12432 0 0 0.037346797275121628 0.2555694096638077 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 12181177240 32196124 1 0 4 3 3 3 3 983040 737280 737280 737498 748800 25 25 58 235 71 0 0 1 5 12 0 0 0 0 0
226 1783879238195700200 DEPTH 43 1 0.50711766065607322 0 1 9 1 9 0 0 2419 59 2537 23678071 81600 1298.1566467285156 8.5826999999999991 2309.232 120960 58532 1 0 0.037346797275121628 0.2555694096638077 4096 2048 384 12 96 360 72 24 0 2537 1920 0 384 1 12185623888 36642772 1 0 4 3 3 3 3 5898240 4423680 4423680 4426424 4492800 150 150 301 1199 737 1 0 1 1 56 0 0 0 0 0
227 1783879240536792100 DEPTH 43 1 0.50641105202190762 0 1 9 1 9 1 0 2424 58 2550 23678061 81600 1291.1419830322266 8.6036999999999999 2339.9128999999998 120960 47699 1 0 0.03004081750325693 0.17916452195622409 4096 2048 384 12 96 360 72 24 0 2550 1920 0 384 1 12190083796 41102680 1 0 4 3 3 3 3 5898240 4423680 4423680 4426393 4492800 150 150 309 1338 603 0 0 5 1 52 0 0 0 0 1
228 1783879242933249200 DEPTH 43 1 0.50592462296271568 0 1 9 1 9 0 0 2427 31 2551 23678185 81600 1286.7079315185547 8.5757000000000012 2314.7058999999999 120960 38490 1 0 0.03004081750325693 0.17916452195622409 4096 2048 384 12 96 360 72 24 0 2551 1920 0 384 1 12194544724 45563608 1 0 4 3 3 3 3 5898240 4423680 4423680 4426486 4492800 150 150 322 1397 532 0 0 0 0 31 0 0 0 0 0
229 1783879245259606400 DEPTH 43 1 0.50530732735968098 0 1 9 1 9 0 0 2438 45 2565 23677972 81600 1283.8040771484375 8.5874000000000006 2325.0664999999999 120960 26096 1 0 0.03004081750325693 0.17916452195622409 4096 2048 384 12 96 360 72 24 0 2565 1920 0 384 1 12199019932 50038816 1 0 4 3 3 3 3 5898240 4423680 4423680 4426397 4492800 150 150 323 1447 495 0 0 3 1 41 0 0 0 0 0
230 1783879245648136100 REFRESH 43 0 0.50473689048321335 0 1 9 1 9 0 0 2440 13 422 3987680 55200 225.08338928222656 1.4317 387.15199999999999 20160 12615 0 0 0.03004081750325693 0.17916452195622409 4096 2048 64 1 16 60 12 4 0 422 320 0 64 0 12199758596 50777480 1 0 4 3 3 3 3 983040 737280 737280 737478 748800 25 25 71 228 73 0 0 1 5 7 0 0 0 0 0
231 1783879247945735200 DEPTH 43 1 0.50420870844045262 0 1 9 1 9 0 0 2451 50 2540 23678102 81600 1297.7651672363281 8.6112000000000002 2296.3292000000001 120960 60718 1 0 0.03004081750325693 0.17916452195622409 4096 2048 384 12 96 360 72 24 0 2540 1920 0 384 1 12204208304 55227188 1 0 4 3 3 3 3 5898240 4423680 4423680 4426458 4492800 150 150 360 1188 692 0 0 5 0 45 0 0 0 0 0
232 1783879250300351700 DEPTH 43 1 0.50371863695799812 0 1 9 1 9 0 0 2456 41 2541 23678186 81600 1290.6697540283203 8.6231000000000009 2353.1765999999998 120960 49394 1 0 0.03004081750325693 0.17916452195622409 4096 2048 384 12 96 360 72 24 0 2541 1920 0 384 1 12208659032 59677916 1 0 4 3 3 3 3 5898240 4423680 4423680 4426460 4492800 150 150 358 1343 540 0 0 1 1 39 0 0 0 0 0
233 1783879252615813500 DEPTH 43 1 0.50326294543015582 0 1 9 1 9 0 0 2458 47 2549 23678185 81600 1285.4384002685547 8.581900000000001 2314.1682999999998 120960 39465 1 0 0.03004081750325693 0.17916452195622409 4096 2048 384 12 96 360 72 24 0 2549 1920 0 384 1 12213117920 64136804 1 0 4 3 3 3 3 5898240 4423680 4423680 4426414 4492800 150 150 363 1391 495 0 0 2 0 45 0 0 0 0 0
234 1783879256011035100 DEPTH 43 1 0.50283827556218674 0 1 9 1 9 1 0 2460 38 2559 23678165 81600 1286.0990142822266 8.5731000000000002 3394.0383000000002 120960 27382 1 0 0.030060195524671131 0.15182181677363818 4096 2048 384 12 96 360 72 24 0 2559 1920 0 384 1 12217587088 1497112 1 0 4 3 3 3 3 5898240 4423680 4423680 4426406 4492800 150 150 359 1417 483 0 0 1 3 34 0 0 0 0 1
235 1783879256394105300 REFRESH 43 0 0.50247342969050757 0 1 9 1 9 0 0 2463 19 414 3987755 55200 227.1856689453125 1.4244000000000001 381.7568 20160 13107 0 0 0.030060195524671131 0.15182181677363818 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 12218317592 2227616 1 0 4 3 3 3 3 983040 737280 737280 737525 748800 25 25 72 220 72 0 0 2 6 11 0 0 0 0 0
236 1783879258720714600 DEPTH 43 1 0.50209885256347275 0 1 9 1 9 0 0 2471 50 2537 23678142 81600 1299.8547821044922 8.6158000000000001 2325.3026 120960 62936 1 0 0.030060195524671131 0.15182181677363818 4096 2048 384 12 96 360 72 24 0 2537 1920 0 384 1 12222764240 6674264 1 0 4 3 3 3 3 5898240 4423680 4423680 4426436 4492800 150 150 387 1190 660 0 0 4 3 43 0 0 0 0 0
237 1783879261058038100 DEPTH 43 1 0.50174742035837638 0 1 9 1 9 1 0 2476 37 2557 23681936 85440 1290.9324035644531 8.5992999999999995 2336.1273000000001 120960 52140 1 0 0.027277433786763575 0.15243551269901376 4096 2048 384 12 96 360 72 24 0 2557 1920 0 384 1 12227231288 11141312 1 0 4 3 3 3 3 5898240 4423680 4177920 4426406 4742400 150 150 377 1227 653 0 0 2 1 34 0 0 0 0 1
238 1783879263390002300 DEPTH 43 1 0.50142557524274689 0 1 9 1 9 0 0 2480 40 2576 23678157 81600 1283.8522796630859 8.585799999999999 2330.7552000000001 120960 41946 1 0 0.027277433786763575 0.15243551269901376 4096 2048 384 12 96 360 72 24 0 2576 1920 0 384 1 12231717716 15627740 1 0 4 3 3 3 3 5898240 4423680 4423680 4426450 4492800 150 150 378 1373 525 0 0 2 3 35 0 0 0 0 0
239 1783879265720494000 DEPTH 43 1 0.50111307488352008 0 1 9 1 9 0 0 2481 38 2576 23678269 81600 1282.4971008300781 8.5840999999999994 2329.1293000000001 120960 29501 1 0 0.027277433786763575 0.15243551269901376 4096 2048 384 12 96 360 72 24 0 2576 1920 0 384 1 12236204144 20114168 1 0 4 3 3 3 3 5898240 4423680 4423680 4426476 4492800 150 150 376 1438 462 0 0 0 7 31 0 0 0 0 0
240 1783879266101976800 REFRESH 43 0 0.50081774006982616 0 1 9 1 9 0 0 2481 13 418 3987717 55200 225.29434204101562 1.4300999999999999 380.12529999999998 20160 13455 0 0 0.027277433786763575 0.15243551269901376 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 12236938728 20848752 1 0 4 3 3 3 3 983040 737280 737280 737504 748800 25 25 74 227 67 0 0 1 2 10 0 0 0 0 0
241 1783879268403598500 DEPTH 43 1 0.50053792896721738 0 1 9 1 9 0 0 2484 59 2553 23678274 81600 1298.9603881835938 8.5790000000000006 2300.4466000000002 120960 64445 1 0 0.027277433786763575 0.15243551269901376 4096 2048 384 12 96 360 72 24 0 2553 1920 0 384 1 12241401696 25311720 1 0 4 3 3 3 3 5898240 4423680 4423680 4426478 4492800 150 150 410 1202 641 0 0 1 2 56 0 0 0 0 0
242 1783879270734837900 DEPTH 43 1 0.50027216324939094 0 1 9 1 9 0 0 2487 54 2571 23678140 81600 1290.3277587890625 8.5815000000000001 2329.9877999999999 120960 53971 1 0 0.027277433786763575 0.15243551269901376 4096 2048 384 12 96 360 72 24 0 2571 1920 0 384 1 12245883024 29793048 1 0 4 3 3 3 3 5898240 4423680 4423680 4426449 4492800 150 150 402 1326 543 0 0 3 2 49 0 0 0 0 0
243 1783879273126286300 DEPTH 43 1 0.50001911175598179 0 1 9 1 9 1 0 2491 54 2567 23678264 81600 1288.0232849121094 8.6932000000000009 2316.2420000000002 120960 43492 1 0 0.027277504371411413 0.15044339324434738 4096 2048 384 12 96 360 72 24 0 2567 1920 0 384 1 12250360272 34270296 1 0 4 3 3 3 3 5898240 4423680 4423680 4426493 4492800 150 150 401 1383 483 0 0 4 0 50 0 0 0 0 1
244 1783879275435013700 DEPTH 43 1 0.49978148840799963 0 1 9 1 9 0 0 2498 47 2583 23678247 81600 1286.3189239501953 8.6024999999999991 2307.5327000000002 120960 29916 1 0 0.027277504371411413 0.15044339324434738 4096 2048 384 12 96 360 72 24 0 2583 1920 0 384 1 12254853840 38763864 1 0 4 3 3 3 3 5898240 4423680 4423680 4426472 4492800 150 150 395 1405 483 0 0 4 0 43 0 0 0 0 0
245 1783879275815344000 REFRESH 43 0 0.49954999721376381 0 1 9 1 9 0 0 2498 14 417 3987761 55200 226.14938354492188 1.4254 378.91109999999998 20160 13324 0 0 0.027277504371411413 0.15044339324434738 4096 2048 64 1 16 60 12 4 0 417 320 0 64 0 12255587404 39497428 1 0 4 3 3 3 3 983040 737280 737280 737499 748800 25 25 72 221 74 0 0 0 1 13 0 0 0 0 0
246 1783879278142897700 DEPTH 43 1 0.49932800900974722 0 1 9 1 9 1 0 2511 54 2591 23678363 81600 1297.9138488769531 8.5897000000000006 2326.2483000000002 120960 64844 1 0 0.027277663851285012 0.15131389402939593 4096 2048 384 12 96 360 72 24 0 2591 1920 0 384 1 12260089132 43999156 1 0 4 3 3 3 3 5898240 4423680 4423680 4426430 4492800 150 150 428 1040 823 0 0 0 0 54 0 0 0 0 1
247 1783879280459699400 DEPTH 43 1 0.49911674233282111 0 1 9 1 9 0 0 2523 75 2593 23678301 81600 1291.2332153320312 8.5799000000000003 2315.4729000000002 120960 54066 1 0 0.027277663851285012 0.15131389402939593 4096 2048 384 12 96 360 72 24 0 2593 1920 0 384 1 12264592900 48502924 1 0 4 3 3 3 3 5898240 4423680 4423680 4426460 4492800 150 150 426 966 901 0 0 2 3 70 0 0 0 0 0
248 1783879282756759400 DEPTH 43 1 0.49891099911668313 0 1 9 1 9 1 0 2530 70 2575 23685855 89280 1286.9365844726562 8.5824999999999996 2295.7285999999999 120960 43218 1 0 0.025974600216796432 0.1508554050604666 4096 2048 384 12 96 360 72 24 0 2575 1920 0 384 1 12269078308 52988332 1 0 4 3 2 3 4 5898240 4423680 3932160 4426415 4992000 150 150 429 1011 835 0 0 2 0 68 0 0 0 0 1
249 1783879285078392800 DEPTH 43 1 0.49871796506827282 0 1 9 1 9 0 0 2535 37 2593 23678298 81600 1284.9850158691406 8.5783999999999985 2320.4562999999998 120960 30292 1 0 0.025974600216796432 0.1508554050604666 4096 2048 384 12 96 360 72 24 0 2593 1920 0 384 1 12273582076 57492100 1 0 4 3 3 3 3 5898240 4423680 4423680 4426494 4492800 150 150 466 1149 678 0 0 0 3 34 0 0 0 0 0
250 1783879285467780000 REFRESH 43 0 0.4985252972900569 0 1 9 1 9 0 0 2535 13 421 3987743 55200 225.78994750976562 1.4307000000000001 388.23899999999998 20160 13454 0 0 0.025974600216796432 0.1508554050604666 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 12274319720 58229744 1 0 4 3 3 3 3 983040 737280 737280 737520 748800 25 25 74 228 69 0 0 1 3 9 0 0 0 0 0
251 1783879287804741100 DEPTH 43 1 0.49833859795384761 0 1 9 1 9 0 0 2542 55 2599 23678260 81600 1299.8440856933594 8.6016999999999992 2335.6176 120960 65716 1 0 0.025974600216796432 0.1508554050604666 4096 2048 384 12 96 360 72 24 0 2599 1920 0 384 1 12278829608 62739632 1 0 4 3 3 3 3 5898240 4423680 4423680 4426460 4492800 150 150 426 1217 656 0 0 2 0 53 0 0 0 0 0
252 1783879291185236000 DEPTH 43 1 0.49815733795825889 0 1 9 1 9 1 0 2554 64 2592 23682136 85440 1290.0074768066406 8.5908000000000015 3379.2154999999998 120960 54484 1 0 0.025976297568135263 0.14906275451572254 4096 2048 384 12 96 360 72 24 0 2592 1920 0 384 1 12283332436 134448 1 0 4 3 3 3 3 5898240 4423680 4177920 4426398 4742400 150 150 459 1285 548 0 0 0 0 64 0 0 0 0 1
253 1783879293512894700 DEPTH 43 1 0.49798309763318732 0 1 9 1 9 0 0 2570 60 2581 23678248 81600 1285.4394989013672 8.5839999999999996 2326.4243000000001 120960 44097 1 0 0.025976297568135263 0.14906275451572254 4096 2048 384 12 96 360 72 24 0 2581 1920 0 384 1 12287823964 4625976 1 0 4 3 3 3 3 5898240 4423680 4423680 4426441 4492800 150 150 465 1370 446 2 0 1 0 57 0 0 0 0 0
254 1783879295843159200 DEPTH 43 1 0.49781112736753641 0 1 9 1 9 0 0 2581 51 2584 23678154 81600 1279.6570281982422 8.6878999999999991 2329.0708 120960 30239 1 0 0.025976297568135263 0.14906275451572254 4096 2048 384 12 96 360 72 24 0 2584 1920 0 384 1 12292318552 9120564 1 0 4 3 3 3 3 5898240 4423680 4423680 4426403 4492800 150 150 456 1376 452 1 0 0 1 49 0 0 0 0 0
255 1783879296231669100 REFRESH 43 0 0.49764332326491922 0 1 9 1 9 0 0 2583 18 416 3987750 55200 225.32710266113281 1.4330000000000001 387.20979999999997 20160 13476 0 0 0.025976297568135263 0.14906275451572254 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 12293051096 9853108 1 0 4 3 3 3 3 983040 737280 737280 737521 748800 25 25 76 225 65 0 0 1 1 16 0 0 0 0 0
256 1783879298551788300 DEPTH 43 1 0.49747933414281531 0 1 9 1 9 0 0 2589 56 2564 23678384 81600 1300.1349029541016 8.5829999999999984 2318.8795 120960 65577 1 0 0.025976297568135263 0.14906275451572254 4096 2048 384 12 96 360 72 24 0 2564 1920 0 384 1 12297525284 14327296 1 0 4 3 3 3 3 5898240 4423680 4423680 4426529 4492800 150 150 455 1256 553 0 0 1 1 54 0 0 0 0 0
257 1783879300861479000 DEPTH 43 1 0.49731884337713439 0 1 9 1 9 1 0 2593 40 2585 23685904 89280 1290.7561950683594 8.5858000000000008 2308.4766 120960 54651 1 0 0.037103923289790841 0.26143901161566629 4096 2048 384 12 96 360 72 24 0 2585 1920 0 384 1 12302020892 18822904 1 0 4 3 2 3 4 5898240 4423680 3932160 4426437 4992000 150 150 454 1292 539 0 0 0 0 40 0 0 0 0 2
258 1783879303229119600 DEPTH 43 1 0.49735714878000409 0 1 9 1 9 0 0 2606 61 2586 23692718 96000 1284.9557800292969 9.0975999999999999 2292.8719000000001 120960 43511 1 0 0.037103923289790841 0.26143901161566629 4096 2048 384 12 96 360 72 24 0 2586 1920 0 384 1 12306517520 23319532 1 0 4 3 3 3 3 5898240 4423680 3440640 4426562 5491200 150 150 549 889 848 0 0 0 5 56 0 0 0 0 0
259 1783879305576196900 DEPTH 43 1 0.49718326785530603 0 1 9 1 9 0 0 2609 55 2618 23678143 81600 1283.2283935546875 8.5731000000000002 2345.8317999999999 120960 29451 1 0 0.037103923289790841 0.26143901161566629 4096 2048 384 12 96 360 72 24 0 2618 1920 0 384 1 12311046788 27848800 1 0 4 3 3 3 3 5898240 4423680 4423680 4426486 4492800 150 150 570 1147 601 0 0 3 4 48 0 0 0 0 0
260 1783879305956828800 REFRESH 43 0 0.49701406579729007 0 1 9 1 9 0 0 2625 35 421 3987749 55200 225.14994812011719 1.4288000000000001 379.36169999999998 20160 13608 0 0 0.037103923289790841 0.26143901161566629 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 12311784432 28586444 1 0 4 3 3 3 3 983040 737280 737280 737523 748800 25 25 122 162 87 0 0 7 11 17 0 0 0 0 0
261 1783879308174594800 DEPTH 43 1 0.49684913742049147 0 1 9 1 9 0 0 2652 87 2551 23678146 81600 1297.9199676513672 8.6112000000000002 2216.6210000000001 120960 66312 1 1 0.037103923289790841 0.26143901161566629 4096 2048 384 12 96 360 72 24 0 2551 1920 0 384 1 12316245360 33047372 1 0 4 3 3 3 3 5898240 4423680 4423680 4426494 4492800 150 150 642 771 838 0 0 0 3 83 0 0 0 0 0
262 1783879310401022100 DEPTH 43 1 0.4966881175309239 0 1 9 1 9 0 0 2663 71 2548 23678130 81600 1291.2209930419922 8.5766000000000009 2225.1943999999999 120960 55358 1 0 0.037103923289790841 0.26143901161566629 4096 2048 384 12 96 360 72 24 0 2548 1920 0 384 1 12320703228 37505240 1 0 4 3 3 3 3 5898240 4423680 4423680 4426412 4492800 150 150 603 860 785 0 0 0 3 68 0 0 0 0 0
263 1783879312663660500 DEPTH 43 1 0.49653067693318292 0 1 9 1 9 0 0 2671 65 2542 23678123 81600 1286.7642517089844 8.5680999999999994 2261.2029000000002 120960 44339 1 0 0.037103923289790841 0.26143901161566629 4096 2048 384 12 96 360 72 24 0 2542 1920 0 384 1 12325154976 41956988 1 0 4 3 3 3 3 5898240 4423680 4423680 4426440 4492800 150 150 552 960 730 0 0 0 0 65 0 0 0 0 0
264 1783879314940363600 DEPTH 43 1 0.49637651883674316 0 1 9 1 9 0 0 2681 53 2555 23678327 81600 1283.2747497558594 8.5906000000000002 2275.5001999999999 120960 30089 1 0 0.037103923289790841 0.26143901161566629 4096 2048 384 12 96 360 72 24 0 2555 1920 0 384 1 12329619984 46421996 1 0 4 3 3 3 3 5898240 4423680 4423680 4426468 4492800 150 150 518 1005 732 0 0 0 1 52 0 0 0 0 0
265 1783879315322017000 REFRESH 43 0 0.49622537562153213 0 1 9 1 9 0 0 2682 15 421 3987767 55200 225.54521179199219 1.4275 380.4203 20160 13715 0 0 0.037103923289790841 0.26143901161566629 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 12330357628 47159640 1 0 4 3 3 3 3 983040 737280 737280 737526 748800 25 25 119 181 71 0 0 0 5 10 0 0 0 0 0
266 1783879317590372000 DEPTH 43 1 0.49607700592685466 0 1 9 1 9 0 0 2701 76 2553 23678152 81600 1297.7407989501953 8.6535999999999991 2267.1048999999998 120960 66361 1 0 0.037103923289790841 0.26143901161566629 4096 2048 384 12 96 360 72 24 0 2553 1920 0 384 1 12334820596 51622608 1 0 4 3 3 3 3 5898240 4423680 4423680 4426322 4492800 150 150 582 879 792 0 0 0 0 76 0 0 0 0 0
267 1783879319883084500 DEPTH 43 1 0.49593119203133451 0 1 9 1 9 0 0 2712 51 2552 23678195 81600 1286.3338012695312 8.6542999999999992 2291.3928000000001 120960 55207 1 0 0.037103923289790841 0.26143901161566629 4096 2048 384 12 96 360 72 24 0 2552 1920 0 384 1 12339282544 56084556 1 0 4 3 3 3 3 5898240 4423680 4423680 4426488 4492800 150 150 520 917 815 0 0 0 1 50 0 0 0 0 0
268 1783879322177757200 DEPTH 43 1 0.49578773749477323 0 1 9 1 9 0 0 2714 34 2559 23678195 81600 1285.3114624023438 8.5792999999999999 2293.48 120960 44051 1 0 0.037103923289790841 0.26143901161566629 4096 2048 384 12 96 360 72 24 0 2559 1920 0 384 1 12343751632 60553644 1 0 4 3 3 3 3 5898240 4423680 4423680 4426391 4492800 150 150 517 1069 673 0 0 0 0 34 0 0 0 0 0
269 1783879324486424000 DEPTH 43 1 0.49564646503573612 0 1 9 1 9 0 0 2717 43 2554 23678234 81600 1283.6395568847656 8.6240000000000006 2307.5297 120960 30568 1 0 0.037103923289790841 0.26143901161566629 4096 2048 384 12 96 360 72 24 0 2554 1920 0 384 1 12348215620 65017632 1 0 4 3 3 3 3 5898240 4423680 4423680 4426455 4492800 150 150 517 1167 570 0 0 1 0 42 0 0 0 0 0
270 1783879324858604300 REFRESH 43 0 0.49550721462129416 0 1 9 1 9 0 0 2719 14 420 3987730 55200 224.73933410644531 1.4313 370.92689999999999 20160 13602 0 0 0.037103923289790841 0.26143901161566629 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 12348952244 65754256 1 0 4 3 3 3 3 983040 737280 737280 737503 748800 25 25 119 180 71 0 0 2 3 9 0 0 0 0 0
271 1783879328155923400 DEPTH 43 1 0.49536984174770782 0 1 9 1 9 0 0 2728 77 2561 23678368 81600 1299.562744140625 8.5849000000000011 3296.1628999999998 120960 65805 1 0 0.037103923289790841 0.26143901161566629 4096 2048 384 12 96 360 72 24 0 2561 1920 0 384 1 12353423452 3116644 1 0 4 3 3 3 3 5898240 4423680 4423680 4426425 4492800 150 150 562 873 826 0 0 1 0 76 0 0 0 0 0
272 1783879330421365800 DEPTH 43 1 0.49523421589296029 0 1 9 1 9 0 0 2741 58 2580 23678259 81600 1290.6690673828125 8.5704999999999991 2264.2530000000002 120960 54930 1 0 0.037103923289790841 0.26143901161566629 4096 2048 384 12 96 360 72 24 0 2580 1920 0 384 1 12357913960 7607152 1 0 4 3 3 3 3 5898240 4423680 4423680 4426432 4492800 150 150 549 992 739 0 0 0 0 58 0 0 0 0 0
273 1783879332729726200 DEPTH 43 1 0.49510021912395663 0 1 9 1 9 0 0 2751 50 2569 23678201 81600 1284.5444793701172 8.6921999999999997 2307.2201 120960 43663 1 0 0.037103923289790841 0.26143901161566629 4096 2048 384 12 96 360 72 24 0 2569 1920 0 384 1 12362393248 12086440 1 0 4 3 3 3 3 5898240 4423680 4423680 4426442 4492800 150 150 543 1038 688 0 0 2 0 48 0 0 0 0 0
274 1783879335099145100 DEPTH 43 1 0.49496774484292339 0 1 9 1 9 0 0 2756 37 2568 23678260 81600 1286.3561096191406 8.6081000000000003 2292.6714999999999 120960 30172 1 0 0.037103923289790841 0.26143901161566629 4096 2048 384 12 96 360 72 24 0 2568 1920 0 384 1 12366871516 16564708 1 0 4 3 3 3 3 5898240 4423680 4423680 4426430 4492800 150 150 543 1123 602 0 0 0 0 37 0 0 0 0 0
275 1783879335485005200 REFRESH 43 0 0.49483669665909052 0 1 9 1 9 0 0 2758 18 420 3987714 55200 225.71110534667969 1.4339 384.51900000000001 20160 13497 0 0 0.037103923289790841 0.26143901161566629 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 12367608140 17301332 1 0 4 3 3 3 3 983040 737280 737280 737486 748800 25 25 121 175 74 0 0 0 4 14 0 0 0 0 0
276 1783879337759894500 DEPTH 43 1 0.49470698737312857 0 1 9 1 9 0 0 2767 53 2554 23678335 81600 1294.4888916015625 8.5945999999999998 2273.7208999999998 120960 65696 1 0 0.037103923289790841 0.26143901161566629 4096 2048 384 12 96 360 72 24 0 2554 1920 0 384 1 12372072128 21765320 1 0 4 3 3 3 3 5898240 4423680 4423680 4426502 4492800 150 150 555 797 902 0 0 1 0 52 0 0 0 0 0
277 1783879340070401500 DEPTH 43 1 0.49457853806306679 0 1 9 1 9 0 0 2774 54 2570 23678448 81600 1289.0151672363281 8.5851000000000006 2309.3020000000001 120960 55076 1 0 0.037103923289790841 0.26143901161566629 4096 2048 384 12 96 360 72 24 0 2570 1920 0 384 1 12376552436 26245628 1 0 4 3 3 3 3 5898240 4423680 4423680 4426501 4492800 150 150 551 941 778 0 0 0 0 54 0 0 0 0 0
278 1783879342391626000 DEPTH 43 1 0.4944512772615462 0 1 9 1 9 0 0 2781 51 2568 23678306 81600 1284.7913055419922 8.5957000000000008 2320.0318000000002 120960 45143 1 0 0.037103923289790841 0.26143901161566629 4096 2048 384 12 96 360 72 24 0 2568 1920 0 384 1 12381030704 30723896 1 0 4 3 3 3 3 5898240 4423680 4423680 4426443 4492800 150 150 540 1122 606 0 0 0 0 51 0 0 0 0 0
279 1783879344701409400 DEPTH 43 1 0.49432514021527396 0 1 9 1 9 0 0 2786 47 2563 23678257 81600 1282.7403259277344 8.5835999999999988 2308.4614000000001 120960 30292 1 0 0.037103923289790841 0.26143901161566629 4096 2048 384 12 96 360 72 24 0 2563 1920 0 384 1 12385503872 35197064 1 0 4 3 3 3 3 5898240 4423680 4423680 4426466 4492800 150 150 533 1211 519 0 0 0 2 45 0 0 0 0 0
280 1783879345079866700 REFRESH 43 0 0.49420006821846196 0 1 9 1 9 0 0 2791 16 420 3987777 55200 225.5032958984375 1.4335 376.9744 20160 13424 0 0 0.037103923289790841 0.26143901161566629 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 12386240496 35933688 1 0 4 3 3 3 3 983040 737280 737280 737522 748800 25 25 123 173 74 0 0 0 4 12 0 0 0 0 0
281 1783879347380321900 DEPTH 43 1 0.49407600801285112 0 1 9 1 9 0 0 2797 60 2565 23678255 81600 1299.8233642578125 8.5783000000000005 2299.2235999999998 120960 65901 1 0 0.037103923289790841 0.26143901161566629 4096 2048 384 12 96 360 72 24 0 2565 1920 0 384 1 12390715704 40408896 1 0 4 3 3 3 3 5898240 4423680 4423680 4426406 4492800 150 150 591 999 675 0 0 0 0 60 0 0 0 0 0
282 1783879349685736100 DEPTH 43 1 0.49395291124766461 0 1 9 1 9 0 0 2802 59 2568 23678214 81600 1290.2761077880859 8.5865000000000009 2304.2716 120960 55171 1 0 0.037103923289790841 0.26143901161566629 4096 2048 384 12 96 360 72 24 0 2568 1920 0 384 1 12395193972 44887164 1 0 4 3 3 3 3 5898240 4423680 4423680 4426371 4492800 150 150 571 1070 627 0 0 0 1 58 0 0 0 0 0
283 1783879351992581800 DEPTH 43 1 0.49383073399349842 0 1 9 1 9 0 0 2807 53 2566 23678408 81600 1287.3214111328125 8.575899999999999 2305.6143000000002 120960 43819 1 0 0.037103923289790841 0.26143901161566629 4096 2048 384 12 96 360 72 24 0 2566 1920 0 384 1 12399670200 49363392 1 0 4 3 3 3 3 5898240 4423680 4423680 4426462 4492800 150 150 554 1135 577 0 0 0 1 52 0 0 0 0 0
284 1783879354298025600 DEPTH 43 1 0.49370943630475633 0 1 9 1 9 1 0 2812 54 2573 23678335 81600 1283.8584136962891 8.8619000000000003 2304.2584000000002 120960 30366 1 0 0.037103711830741314 0.25419441036366852 4096 2048 384 12 96 360 72 24 0 2573 1920 0 384 1 12404153568 53846760 1 0 4 3 3 3 3 5898240 4423680 4423680 4426467 4492800 150 150 557 1200 516 0 0 0 1 53 0 0 0 0 1
285 1783879354684877700 REFRESH 43 0 0.49360217258055294 0 1 9 1 9 0 0 2812 16 423 3987743 55200 224.91853332519531 1.4306000000000001 385.41289999999998 20160 13616 0 0 0.037103711830741314 0.25419441036366852 4096 2048 64 1 16 60 12 4 0 423 320 0 64 0 12404893252 54586444 1 0 4 3 3 3 3 983040 737280 737280 737497 748800 25 25 125 177 71 0 0 2 1 13 0 0 0 0 0
286 1783879356985985200 DEPTH 43 1 0.49348120911557991 0 1 9 1 9 0 0 2823 48 2574 23678256 81600 1300.8519439697266 8.5727000000000011 2299.9122000000002 120960 66361 1 0 0.037103711830741314 0.25419441036366852 4096 2048 384 12 96 360 72 24 0 2574 1920 0 384 1 12409377640 59070832 1 0 4 3 3 3 3 5898240 4423680 4423680 4426412 4492800 150 150 603 1081 590 0 0 1 5 42 0 0 0 0 0
287 1783879359302034700 DEPTH 43 1 0.493361157443587 0 1 9 1 9 0 0 2825 36 2579 23678316 81600 1293.1573181152344 8.5838000000000001 2314.6305000000002 120960 55490 1 0 0.037103711830741314 0.25419441036366852 4096 2048 384 12 96 360 72 24 0 2579 1920 0 384 1 12413867128 63560320 1 0 4 3 3 3 3 5898240 4423680 4423680 4426469 4492800 150 150 567 1108 604 0 0 2 5 29 0 0 0 0 0
288 1783879362693176200 DEPTH 43 1 0.49324197679868931 0 1 9 1 9 0 0 2830 41 2595 23678357 81600 1286.6734008789062 8.6277000000000008 3389.7507999999998 120960 44006 1 0 0.037103711830741314 0.25419441036366852 4096 2048 384 12 96 360 72 24 0 2595 1920 0 384 1 12418373016 957772 1 0 4 3 3 3 3 5898240 4423680 4423680 4426473 4492800 150 150 569 1190 536 0 0 2 1 38 0 0 0 0 0
289 1783879365001897700 DEPTH 43 1 0.49312363010436461 0 1 9 1 9 0 0 2834 31 2578 23678363 81600 1286.3795166015625 8.5681999999999992 2307.5502000000001 120960 30073 1 0 0.037103711830741314 0.25419441036366852 4096 2048 384 12 96 360 72 24 0 2578 1920 0 384 1 12422861484 5446240 1 0 4 3 3 3 3 5898240 4423680 4423680 4426419 4492800 150 150 563 1229 486 0 0 0 0 31 0 0 0 0 0
290 1783879365466629500 REFRESH 43 0 0.49300608360871523 0 1 9 1 9 0 0 2834 12 420 3987760 55200 225.40287780761719 1.4234 385.61939999999998 20160 13714 0 0 0.037103711830741314 0.25419441036366852 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 12423598108 6182864 1 0 4 3 3 3 3 983040 737280 737280 737507 748800 25 25 126 176 68 0 0 1 1 10 0 0 0 0 0
291 1783879367766003300 DEPTH 43 1 0.4928893065561446 0 1 9 1 9 0 0 2838 51 2575 23678326 81600 1297.6835784912109 8.5833999999999993 2298.2539999999999 120960 66336 1 0 0.037103711830741314 0.25419441036366852 4096 2048 384 12 96 360 72 24 0 2575 1920 0 384 1 12428083516 10668272 1 0 4 3 3 3 3 5898240 4423680 4423680 4426414 4492800 150 150 599 986 690 0 0 5 0 46 0 0 0 0 0
292 1783879370087156500 DEPTH 43 1 0.49277327089180933 0 1 9 1 9 0 0 2840 38 2568 23678329 81600 1292.3975524902344 8.593 2320.0093000000002 120960 55172 1 0 0.037103711830741314 0.25419441036366852 4096 2048 384 12 96 360 72 24 0 2568 1920 0 384 1 12432561784 15146540 1 0 4 3 3 3 3 5898240 4423680 4423680 4426481 4492800 150 150 580 1106 582 0 0 2 2 34 0 0 0 0 0
293 1783879372398226200 DEPTH 43 1 0.49265795099556803 0 1 9 1 9 0 0 2848 42 2572 23678332 81600 1287.6245727539062 8.6082000000000001 2309.7806999999998 120960 44417 1 0 0.037103711830741314 0.25419441036366852 4096 2048 384 12 96 360 72 24 0 2572 1920 0 384 1 12437044132 19628888 1 0 4 3 3 3 3 5898240 4423680 4423680 4426447 4492800 150 150 563 1175 534 0 0 0 0 42 0 0 0 0 0
294 1783879374725029600 DEPTH 43 1 0.49254332344248103 0 1 9 1 9 0 0 2851 33 2573 23678329 81600 1284.5588531494141 8.5778000000000016 2325.6414 120960 30358 1 0 0.037103711830741314 0.25419441036366852 4096 2048 384 12 96 360 72 24 0 2573 1920 0 384 1 12441527500 24112256 1 0 4 3 3 3 3 5898240 4423680 4423680 4426414 4492800 150 150 562 1198 513 0 0 1 0 32 0 0 0 0 0
295 1783879375100669100 REFRESH 43 0 0.49242936678720406 0 1 9 1 9 0 0 2854 9 421 3987744 55200 224.61541748046875 1.4322999999999999 374.40499999999997 20160 13496 0 0 0.037103711830741314 0.25419441036366852 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 12442265144 24849900 1 0 4 3 3 3 3 983040 737280 737280 737503 748800 25 25 126 174 71 0 0 1 0 8 0 0 0 0 0
296 1783879377403451200 DEPTH 43 1 0.49131606136988965 0 1 9 1 9 0 0 2860 36 2550 23678429 81600 1300.5414276123047 8.5868000000000002 2301.5686000000001 120960 65958 1 0 0.037103711830741314 0.25419441036366852 4096 2048 384 12 96 360 72 24 0 2550 1920 0 384 1 12446725052 29309808 1 0 4 3 3 3 3 5898240 4423680 4423680 4426415 4492800 150 150 602 1057 591 0 0 0 0 36 0 0 0 0 0
297 1783879379700571800 DEPTH 43 1 0.4913033891414445 0 1 9 1 9 0 0 2864 34 2561 23678425 81600 1291.9184417724609 8.5831999999999997 2295.6264999999999 120960 54928 1 0 0.037103711830741314 0.25419441036366852 4096 2048 384 12 96 360 72 24 0 2561 1920 0 384 1 12451196180 33780936 1 0 4 3 3 3 3 5898240 4423680 4423680 4426515 4492800 150 150 577 1164 520 0 0 0 0 34 0 0 0 0 0
298 1783879381984688700 DEPTH 43 1 0.49128133350621006 0 1 9 1 9 0 0 2871 37 2583 23678372 81600 1288.1753387451172 8.6801999999999992 2282.9252000000001 120960 43871 1 0 0.037103711830741314 0.25419441036366852 4096 2048 384 12 96 360 72 24 0 2583 1920 0 384 1 12455689748 38274504 1 0 4 3 3 3 3 5898240 4423680 4423680 4426469 4492800 150 150 559 1232 492 0 0 0 0 37 0 0 0 0 0
299 1783879384292575900 DEPTH 43 1 0.49125087918032301 0 1 9 1 9 0 0 2874 36 2604 23678384 81600 1285.7407531738281 8.5904000000000007 2306.6370999999999 120960 30622 1 0 0.037103711830741314 0.25419441036366852 4096 2048 384 12 96 360 72 24 0 2604 1920 0 384 1 12460204736 42789492 1 0 4 3 3 3 3 5898240 4423680 4423680 4426477 4492800 150 150 550 1235 519 0 0 0 0 36 0 0 0 0 0
300 1783879384680744900 REFRESH 43 0 0.49121291206418966 0 1 9 1 9 0 0 2874 11 419 3987773 55200 224.59904479980469 1.4511000000000001 386.62290000000002 20160 13388 0 0 0.037103711830741314 0.25419441036366852 4096 2048 64 1 16 60 12 4 0 419 320 0 64 0 12460940340 43525096 1 0 4 3 3 3 3 983040 737280 737280 737514 748800 25 25 124 174 71 0 0 1 0 10 0 0 0 0 0
301 1783879386981245300 DEPTH 43 1 0.49116822912766361 0 1 9 1 9 0 0 2878 34 2558 23678332 81600 1299.1649017333984 8.5779999999999994 2299.3213000000001 120960 65703 1 0 0.037103711830741314 0.25419441036366852 4096 2048 384 12 96 360 72 24 0 2558 1920 0 384 1 12465408408 47993164 1 0 4 3 3 3 3 5898240 4423680 4423680 4426408 4492800 150 150 614 1077 567 0 0 0 2 32 0 0 0 0 0
302 1783879389301156100 DEPTH 43 1 0.49111754730665658 0 1 9 1 9 0 0 2883 37 2589 23678412 81600 1292.5334320068359 8.6077000000000012 2318.5468000000001 120960 55011 1 0 0.037103711830741314 0.25419441036366852 4096 2048 384 12 96 360 72 24 0 2589 1920 0 384 1 12469908096 52492852 1 0 4 3 3 3 3 5898240 4423680 4423680 4426396 4492800 150 150 589 1093 607 0 0 0 0 37 0 0 0 0 0
303 1783879391598108700 DEPTH 43 1 0.49106151151004057 0 1 9 1 9 0 0 2887 33 2597 23678353 81600 1289.7640991210938 8.5787000000000013 2295.6581000000001 120960 43594 1 0 0.037103711830741314 0.25419441036366852 4096 2048 384 12 96 360 72 24 0 2597 1920 0 384 1 12474415944 57000700 1 0 4 3 3 3 3 5898240 4423680 4423680 4426414 4492800 150 150 590 1143 564 0 0 1 0 32 0 0 0 0 0
304 1783879393910816100 DEPTH 43 1 0.49100070182581224 0 1 9 1 9 0 0 2890 29 2571 23678330 81600 1284.216796875 8.7731999999999992 2311.5077000000001 120960 29759 1 0 0.037103711830741314 0.25419441036366852 4096 2048 384 12 96 360 72 24 0 2571 1920 0 384 1 12478897272 61482028 1 0 4 3 3 3 3 5898240 4423680 4423680 4426419 4492800 150 150 588 1210 473 0 0 0 0 29 0 0 0 0 0
305 1783879394288814200 REFRESH 43 0 0.49093564000659534 0 1 9 1 9 0 0 2891 9 419 3987778 55200 225.08460998535156 1.4334 376.69200000000001 20160 13572 0 0 0.037103711830741314 0.25419441036366852 4096 2048 64 1 16 60 12 4 0 419 320 0 64 0 12479632876 62217632 1 0 4 3 3 3 3 983040 737280 737280 737509 748800 25 25 128 173 68 0 0 0 0 9 0 0 0 0 0
306 1783879396669161900 DEPTH 43 1 0.48986679530654642 0 1 9 1 9 0 0 2894 36 2575 23678383 81600 1300.8249206542969 8.5765999999999991 2301.2352000000001 120960 66030 1 0 0.037103711830741314 0.25419441036366852 4096 2048 384 12 96 360 72 24 0 2575 1920 0 384 1 12484118284 66703040 1 0 4 3 3 3 3 5898240 4423680 4423680 4426441 4492800 150 150 616 1062 597 0 0 0 0 36 0 0 0 0 0
307 1783879400029548200 DEPTH 43 1 0.48989458973452582 0 1 9 1 9 0 0 2897 32 2588 23678384 81600 1292.4856262207031 8.5784000000000002 3358.8049000000001 120960 55124 1 0 0.037103711830741314 0.25419441036366852 4096 2048 384 12 96 360 72 24 0 2588 1920 0 384 1 12488617032 4092968 1 0 4 3 3 3 3 5898240 4423680 4423680 4426472 4492800 150 150 600 1138 550 0 0 2 1 29 0 0 0 0 0
308 1783879402358185500 DEPTH 43 1 0.4899094027819072 0 1 9 1 9 0 0 2899 40 2574 23678472 81600 1285.7127990722656 8.5967999999999982 2327.3083999999999 120960 43487 1 0 0.037103711830741314 0.25419441036366852 4096 2048 384 12 96 360 72 24 0 2574 1920 0 384 1 12493101420 8577356 1 0 4 3 3 3 3 5898240 4423680 4423680 4426436 4492800 150 150 602 1183 489 0 0 0 0 40 0 0 0 0 0
309 1783879404672509000 DEPTH 43 1 0.48991257567756252 0 1 9 1 9 0 0 2901 30 2579 23678469 81600 1287.5295867919922 8.5800999999999998 2313.1385 120960 29137 1 0 0.037103711830741314 0.25419441036366852 4096 2048 384 12 96 360 72 24 0 2579 1920 0 384 1 12497590908 13066844 1 0 4 3 3 3 3 5898240 4423680 4423680 4426537 4492800 150 150 588 1209 482 0 0 0 0 30 0 0 0 0 0
310 1783879405055959200 REFRESH 43 0 0.48990531521730651 0 1 9 1 9 0 0 2903 17 422 3987792 55200 224.97587585449219 1.4418 382.04820000000001 20160 13535 0 0 0.037103711830741314 0.25419441036366852 4096 2048 64 1 16 60 12 4 0 422 320 0 64 0 12498329572 13805508 1 0 4 3 3 3 3 983040 737280 737280 737510 748800 25 25 126 178 68 0 0 4 1 12 0 0 0 0 0
311 1783879407376369600 DEPTH 43 1 0.48988870721035377 0 1 9 1 9 0 0 2907 52 2590 23678011 81600 1299.9854736328125 8.5800000000000001 2319.1246999999998 134400 76924 1 0 0.037103711830741314 0.25419441036366852 4096 2048 384 12 96 360 72 24 0 2590 1920 0 384 1 12502830280 18306216 1 0 4 4 3 2 3 5898240 4915200 4423680 3934571 4492800 150 150 621 1057 612 0 0 0 7 45 0 0 0 0 0
312 1783879409699091700 DEPTH 43 1 0.48986372858108984 0 1 9 1 9 0 0 2908 33 2579 23677305 81600 1292.3205108642578 8.6009000000000011 2321.5118000000002 161280 71118 1 0 0.037103711830741314 0.25419441036366852 4096 2048 384 12 96 360 72 24 0 2579 1920 0 384 1 12507319768 22795704 1 0 4 4 3 2 3 5898240 5898240 4423680 2950968 4492800 150 150 612 1056 611 0 0 0 0 33 0 0 0 0 0
313 1783879412028584300 DEPTH 43 1 0.48983125826062357 0 1 9 1 9 0 0 2910 21 2581 23677444 81600 1288.8810424804688 8.5961999999999996 2328.3640999999998 154560 61187 1 0 0.037103711830741314 0.25419441036366852 4096 2048 384 12 96 360 72 24 0 2581 1920 0 384 1 12511811296 27287232 1 0 4 4 3 2 3 5898240 5652480 4423680 3196889 4492800 150 150 613 1137 531 0 0 0 0 21 0 0 0 0 0
314 1783879414351561900 DEPTH 43 1 0.48979208698914517 0 1 9 1 9 0 0 2915 37 2597 23677366 81600 1282.5807342529297 8.5868000000000002 2321.8474000000001 161280 43370 1 0 0.037103711830741314 0.25419441036366852 4096 2048 384 12 96 360 72 24 0 2597 1920 0 384 1 12516319144 31795080 1 0 4 4 3 2 3 5898240 5898240 4423680 2950971 4492800 150 150 610 1174 513 0 0 0 0 37 0 0 0 0 0
315 1783879414728382100 REFRESH 43 0 0.48974692613800819 0 1 9 1 9 0 0 2930 39 414 3987607 55200 223.70918273925781 1.4349000000000001 375.43349999999998 26880 16550 0 0 0.037103711830741314 0.25419441036366852 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 12517049648 32525584 1 0 4 4 3 2 3 983040 983040 737280 491693 748800 25 25 25 233 106 0 0 0 26 13 0 0 0 0 0
316 1783879416990495800 DEPTH 43 1 0.48969641564956529 0 1 9 1 9 0 0 2946 75 2587 23677251 81600 1298.0868988037109 9.9070999999999998 2260.9297000000001 147840 93211 1 0 0.037103711830741314 0.25419441036366852 4096 2048 384 12 96 360 72 24 0 2587 1920 0 384 1 12521547296 37023232 1 0 4 4 3 2 3 5898240 5406720 4423680 3442783 4492800 150 150 150 1200 937 0 0 0 0 75 0 0 0 0 0
317 1783879419284720800 DEPTH 43 1 0.48964113118298203 0 1 9 1 9 0 0 2949 39 2573 23677702 81600 1290.1380767822266 8.5845000000000002 2292.6196 134400 72534 1 0 0.037103711830741314 0.25419441036366852 4096 2048 384 12 96 360 72 24 0 2573 1920 0 384 1 12526030664 41506600 1 0 4 3 3 3 3 5898240 4915200 4423680 3934668 4492800 150 150 150 1242 881 0 0 0 0 39 0 0 0 0 0
318 1783879421593571700 DEPTH 43 1 0.48958159054543138 0 1 9 1 9 0 0 2951 38 2597 23677838 81600 1285.138427734375 8.5789000000000009 2307.6707000000001 120960 45766 1 0 0.037103711830741314 0.25419441036366852 4096 2048 384 12 96 360 72 24 0 2597 1920 0 384 1 12530538512 46014448 1 0 4 3 3 3 3 5898240 4423680 4423680 4426437 4492800 150 150 150 1382 765 0 0 0 0 38 0 0 0 0 0
319 1783879423900778800 DEPTH 43 1 0.48951825948013272 0 1 9 1 9 0 0 2957 43 2571 23677935 81600 1282.7955169677734 8.5842999999999989 2306.0250000000001 120960 32979 1 0 0.037103711830741314 0.25419441036366852 4096 2048 384 12 96 360 72 24 0 2571 1920 0 384 1 12535019840 50495776 1 0 4 3 3 3 3 5898240 4423680 4423680 4426429 4492800 150 150 150 1447 674 0 0 0 1 42 0 0 0 0 0
320 1783879424269059700 REFRESH 43 0 0.48945155687554986 0 1 9 1 9 0 0 2960 18 409 3987686 55200 224.09625244140625 1.4311 367.09050000000002 20160 12179 0 0 0.037103711830741314 0.25419441036366852 4096 2048 64 1 16 60 12 4 0 409 320 0 64 0 12535745244 51221180 1 0 4 3 3 3 3 983040 737280 737280 737521 748800 25 25 25 229 105 0 0 0 4 14 0 0 0 0 0
321 1783879426510740700 DEPTH 43 1 0.48938185945363361 0 1 9 1 9 0 0 2978 63 2567 23677857 81600 1295.0448303222656 8.5841999999999992 2240.5462000000002 120960 60325 1 0 0.037103711830741314 0.25419441036366852 4096 2048 384 12 96 360 72 24 0 2567 1920 0 384 1 12540222492 55698428 1 0 4 3 3 3 3 5898240 4423680 4423680 4426436 4492800 150 150 150 904 1213 0 0 0 0 63 0 0 0 0 0
322 1783879428907432200 DEPTH 43 1 0.48930950598920497 0 1 9 1 9 0 0 2983 35 2569 23678002 81600 1288.1758728027344 8.9938000000000002 2318.3569000000002 120960 49464 1 0 0.037103711830741314 0.25419441036366852 4096 2048 384 12 96 360 72 24 0 2569 1920 0 384 1 12544701780 60177716 1 0 4 3 3 3 3 5898240 4423680 4423680 4426372 4492800 150 150 150 927 1192 0 0 0 0 35 0 0 0 0 0
323 1783879431215626700 DEPTH 43 1 0.48923480110736567 0 1 9 1 9 1 0 2987 40 2579 23678227 81600 1288.02099609375 8.6052 2307.0097999999998 120960 39090 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2579 1920 0 384 1 12549191268 64667204 1 0 4 3 3 3 3 5898240 4423680 4423680 4426456 4492800 150 150 150 1095 1034 0 0 0 1 39 0 0 0 0 1
324 1783879434567634600 DEPTH 43 1 0.48916015625905906 0 1 9 1 9 0 0 2990 46 2572 23678031 81600 1283.2387847900391 8.6525999999999996 3350.8148999999999 120960 27272 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2572 1920 0 384 1 12553673696 2041196 1 0 4 3 3 3 3 5898240 4423680 4423680 4426569 4492800 150 150 150 1359 763 0 0 0 2 44 0 0 0 0 0
325 1783879434938793900 REFRESH 43 0 0.48908132880941002 0 1 9 1 9 0 0 2992 8 410 3987667 55200 224.83967590332031 1.4286000000000001 370.0068 20160 12763 0 0 0.03710369420162668 0.24547566744898053 4096 2048 64 1 16 60 12 4 0 410 320 0 64 0 12554400120 2767620 1 0 4 3 3 3 3 983040 737280 737280 737489 748800 25 25 25 231 104 0 0 0 0 8 0 0 0 0 0
326 1783879437159212700 DEPTH 43 1 0.4870009127964619 0 1 9 1 9 0 0 3007 80 2544 23677992 81600 1295.3518371582031 8.5845000000000002 2219.2242000000001 120960 61286 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2544 1920 0 384 1 12558853908 7221408 1 0 4 3 3 3 3 5898240 4423680 4423680 4426471 4492800 150 150 150 1127 967 0 0 0 0 80 0 0 0 0 0
327 1783879439399972500 DEPTH 43 1 0.48711910503474237 0 1 9 1 9 0 0 3015 49 2555 23677967 81600 1289.0111694335938 8.5951000000000004 2239.5756000000001 120960 49933 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2555 1920 0 384 1 12563318916 11686416 1 0 4 3 3 3 3 5898240 4423680 4423680 4426455 4492800 150 150 150 1246 859 0 0 0 0 49 0 0 0 0 0
328 1783879441648417500 DEPTH 43 1 0.48721608239807329 0 1 9 1 9 0 0 3020 31 2536 23678165 81600 1288.9016265869141 8.5846999999999998 2247.1459 120960 40055 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2536 1920 0 384 1 12567764544 16132044 1 0 4 3 3 3 3 5898240 4423680 4423680 4426472 4492800 150 150 150 1420 666 0 0 0 0 31 0 0 0 0 0
329 1783879443936194600 DEPTH 43 1 0.48729400381614163 0 1 9 1 9 0 0 3023 32 2564 23678315 81600 1284.9633331298828 8.5861000000000001 2286.3629999999998 120960 26624 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2564 1920 0 384 1 12572238732 20606232 1 0 4 3 3 3 3 5898240 4423680 4423680 4426472 4492800 150 150 150 1502 612 0 0 0 0 32 0 0 0 0 0
330 1783879444310817100 REFRESH 43 0 0.48735481207138165 0 1 9 1 9 0 0 3028 19 412 3987719 55200 225.97853088378906 1.4263999999999999 373.14460000000003 20160 13016 0 0 0.03710369420162668 0.24547566744898053 4096 2048 64 1 16 60 12 4 0 412 320 0 64 0 12572967196 21334696 1 0 4 3 3 3 3 983040 737280 737280 737510 748800 25 25 25 240 97 0 0 0 5 14 0 0 0 0 0
331 1783879446545182500 DEPTH 43 1 0.48740025541613879 0 1 9 1 9 0 0 3060 112 2539 23678033 81600 1298.2763214111328 8.7144999999999992 2233.2161000000001 120960 61400 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2539 1920 0 384 1 12577415884 25783384 1 0 4 3 3 3 3 5898240 4423680 4423680 4426477 4492800 150 150 150 1073 1016 0 0 0 0 112 0 0 0 0 0
332 1783879448789455900 DEPTH 43 1 0.48743190702808675 0 1 9 1 9 0 0 3069 64 2520 23678037 81600 1287.1045227050781 8.5772999999999993 2243.0565000000001 120960 49851 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2520 1920 0 384 1 12581845192 30212692 1 0 4 3 3 3 3 5898240 4423680 4423680 4426473 4492800 150 150 150 1151 919 2 0 0 0 62 0 0 0 0 0
333 1783879451032467800 DEPTH 43 1 0.48745118252007302 0 1 9 1 9 0 0 3072 63 2538 23677978 81600 1287.6564636230469 8.5907999999999998 2241.5643 120960 39621 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2538 1920 0 384 1 12586292860 34660360 1 0 4 3 3 3 3 5898240 4423680 4423680 4426386 4492800 150 150 150 1339 749 0 0 0 0 63 0 0 0 0 0
334 1783879453318586200 DEPTH 43 1 0.48745935569895099 0 1 9 1 9 0 0 3079 48 2536 23678142 81600 1284.3647003173828 8.5787999999999993 2284.8917000000001 120960 28032 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2536 1920 0 384 1 12590738488 39105988 1 0 4 3 3 3 3 5898240 4423680 4423680 4426472 4492800 150 150 150 1429 657 0 0 0 0 48 0 0 0 0 0
335 1783879453683943500 REFRESH 43 0 0.4874575727484996 0 1 9 1 9 0 0 3081 20 412 3987815 55200 224.62258911132812 1.4323999999999999 363.93340000000001 20160 12531 0 0 0.03710369420162668 0.24547566744898053 4096 2048 64 1 16 60 12 4 0 412 320 0 64 0 12591466952 39834452 1 0 4 3 3 3 3 983040 737280 737280 737497 748800 25 25 25 240 97 0 0 0 1 19 0 0 0 0 0
336 1783879455923694000 DEPTH 43 1 0.48744686499402284 0 1 9 1 9 0 0 3113 91 2529 23678220 81600 1298.7698516845703 8.7070000000000007 2238.4479000000001 120960 60464 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2529 1920 0 384 1 12595905440 44272940 1 0 4 3 3 3 3 5898240 4423680 4423680 4426380 4492800 150 150 150 1033 1046 0 0 0 0 91 0 0 0 0 0
337 1783879458168717500 DEPTH 43 1 0.48742816039046144 0 1 9 1 9 0 0 3134 99 2535 23678124 81600 1288.887451171875 8.5907999999999998 2243.7736 120960 49981 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2535 1920 0 384 1 12600350048 48717548 1 0 4 3 3 3 3 5898240 4423680 4423680 4426503 4492800 150 150 150 1247 838 1 0 0 0 98 0 0 0 0 0
338 1783879460542331500 DEPTH 43 1 0.48740229386166567 0 1 9 1 9 0 0 3141 44 2540 23678138 81600 1283.7455291748047 8.5733999999999995 2297.1381000000001 120960 39612 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2540 1920 0 384 1 12604799756 53167256 1 0 4 3 3 3 3 5898240 4423680 4423680 4426508 4492800 150 150 150 1222 868 0 0 0 1 43 0 0 0 0 0
339 1783879462868612900 DEPTH 43 1 0.48737001660571377 0 1 9 1 9 0 0 3146 49 2541 23678129 81600 1282.2210540771484 8.6414000000000009 2324.9220999999998 120960 28189 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2541 1920 0 384 1 12609250484 57617984 1 0 4 3 3 3 3 5898240 4423680 4423680 4426473 4492800 150 150 150 1401 690 1 0 0 1 47 0 0 0 0 0
340 1783879463236014400 REFRESH 43 0 0.48733200446967162 0 1 9 1 9 0 0 3149 18 408 3987712 55200 224.81817626953125 1.4328000000000001 366.20749999999998 20160 12536 0 0 0.03710369420162668 0.24547566744898053 4096 2048 64 1 16 60 12 4 0 408 320 0 64 0 12609974868 58342368 1 0 4 3 3 3 3 983040 737280 737280 737523 748800 25 25 25 237 96 1 0 0 2 15 0 0 0 0 0
341 1783879465499502800 DEPTH 43 1 0.4872888654868508 0 1 9 1 9 0 0 3181 109 2545 23678375 81600 1301.3000640869141 8.5901999999999994 2262.3002999999999 120960 60641 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2545 1920 0 384 1 12614429676 62797176 1 0 4 3 3 3 3 5898240 4423680 4423680 4426498 4492800 150 150 150 929 1166 1 0 0 1 107 0 0 0 0 0
342 1783879468794244000 DEPTH 43 1 0.48724114666031371 0 1 9 1 9 0 0 3217 156 2539 23678338 81600 1290.7837066650391 8.5942000000000007 3293.6183999999998 120960 50085 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2539 1920 0 384 1 12618878444 137508 1 0 4 3 3 3 3 5898240 4423680 4423680 4426437 4492800 150 150 150 1046 1043 0 0 0 0 156 0 0 0 0 0
343 1783879471042170900 DEPTH 43 1 0.48718934006800402 0 1 9 1 9 0 0 3234 91 2538 23678135 81600 1286.8863220214844 8.583400000000001 2246.75 120960 40251 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2538 1920 0 384 1 12623326112 4585176 1 0 4 3 3 3 3 5898240 4423680 4423680 4426450 4492800 150 150 150 1180 908 0 0 0 0 91 0 0 0 0 0
344 1783879473319140500 DEPTH 43 1 0.48713388835733745 0 1 9 1 9 0 0 3240 73 2557 23678070 81600 1283.09228515625 8.6011000000000006 2275.7705000000001 120960 28082 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2557 1920 0 384 1 12627793160 9052224 1 0 4 3 3 3 3 5898240 4423680 4423680 4426365 4492800 150 150 150 1207 900 0 0 0 0 73 0 0 0 0 0
345 1783879473696152600 REFRESH 43 0 0.48707518969030988 0 1 9 1 9 0 0 3249 24 409 3987730 55200 224.82330322265625 1.4313 375.82530000000003 20160 13042 0 0 0.03710369420162668 0.24547566744898053 4096 2048 64 1 16 60 12 4 0 409 320 0 64 0 12628518564 9777628 1 0 4 3 3 3 3 983040 737280 737280 737523 748800 25 25 25 239 95 0 0 0 3 21 0 0 0 0 0
346 1783879475956650700 DEPTH 43 1 0.48701360219406942 0 1 9 1 9 0 0 3263 73 2567 23678062 81600 1298.1165924072266 8.7106999999999992 2259.2447000000002 120960 63038 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2567 1920 0 384 1 12632995812 14254876 1 0 4 3 3 3 3 5898240 4423680 4423680 4426336 4492800 150 150 150 1046 1071 0 0 0 0 73 0 0 0 0 0
347 1783879478201593800 DEPTH 43 1 0.48694944796640749 0 1 9 1 9 0 0 3286 93 2548 23678275 81600 1289.7249450683594 8.7254000000000005 2243.7910000000002 120960 52005 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2548 1920 0 384 1 12637453680 18712744 1 0 4 3 3 3 3 5898240 4423680 4423680 4426389 4492800 150 150 150 1092 1006 0 0 0 0 93 0 0 0 0 0
348 1783879480454999600 DEPTH 43 1 0.48688301668067679 0 1 9 1 9 0 0 3294 64 2542 23678428 81600 1286.7594451904297 8.5823999999999998 2252.2773999999999 120960 40553 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2542 1920 0 384 1 12641905428 23164492 1 0 4 3 3 3 3 5898240 4423680 4423680 4426474 4492800 150 150 150 1193 899 0 0 0 0 64 0 0 0 0 0
349 1783879482737778700 DEPTH 43 1 0.48681456883019464 0 1 9 1 9 0 0 3300 58 2557 23678311 81600 1283.6649932861328 8.5878999999999994 2281.5047 120960 27702 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2557 1920 0 384 1 12646372476 27631540 1 0 4 3 3 3 3 5898240 4423680 4423680 4426534 4492800 150 150 150 1382 725 0 0 0 0 58 0 0 0 0 0
350 1783879483110371900 REFRESH 43 0 0.48674433864818195 0 1 9 1 9 0 0 3308 24 409 3987729 55200 225.3516845703125 1.4271 371.2672 20160 13625 0 0 0.03710369420162668 0.24547566744898053 4096 2048 64 1 16 60 12 4 0 409 320 0 64 0 12647097880 28356944 1 0 4 3 3 3 3 983040 737280 737280 737513 748800 25 25 25 246 88 0 0 0 5 19 0 0 0 0 0
351 1783879485390870800 DEPTH 43 1 0.48667253673568661 0 1 9 1 9 0 0 3339 86 2536 23678158 81600 1299.0668792724609 8.5767000000000007 2279.1779999999999 120960 65127 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2536 1920 0 384 1 12651543508 32802572 1 0 4 3 3 3 3 5898240 4423680 4423680 4426394 4492800 150 150 150 997 1089 0 0 0 0 86 0 0 0 0 0
352 1783879487667166700 DEPTH 43 1 0.48659935242669139 0 1 9 1 9 0 0 3350 66 2549 23678206 81600 1291.9796752929688 8.5815999999999999 2275.0306999999998 120960 54134 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2549 1920 0 384 1 12656002396 37261460 1 0 4 3 3 3 3 5898240 4423680 4423680 4426429 4492800 150 150 150 1080 1019 0 0 0 0 66 0 0 0 0 0
353 1783879489953084600 DEPTH 43 1 0.48652495591668909 0 1 9 1 9 0 0 3368 63 2544 23678279 81600 1288.7533111572266 8.5921000000000003 2284.7381 120960 43716 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2544 1920 0 384 1 12660456184 41715248 1 0 4 3 3 3 3 5898240 4423680 4423680 4426381 4492800 150 150 150 1234 860 0 0 0 0 63 0 0 0 0 0
354 1783879492341095800 DEPTH 43 1 0.48644950017837885 0 1 9 1 9 0 0 3375 38 2536 23678527 81600 1285.7088928222656 8.5747 2302.0052999999998 120960 29371 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2536 1920 0 384 1 12664901812 46160876 1 0 4 3 3 3 3 5898240 4423680 4423680 4426523 4492800 150 150 150 1241 845 0 0 0 0 38 0 0 0 0 0
355 1783879492712988200 REFRESH 43 0 0.48637312268577071 0 1 9 1 9 0 0 3382 22 410 3987765 55200 224.64408874511719 1.4329000000000001 370.65679999999998 20160 13516 0 0 0.03710369420162668 0.24547566744898053 4096 2048 64 1 16 60 12 4 0 410 320 0 64 0 12665628236 46887300 1 0 4 3 3 3 3 983040 737280 737280 737515 748800 25 25 25 240 95 0 0 0 4 18 0 0 0 0 0
356 1783879494978928100 DEPTH 43 1 0.48629594696585904 0 1 9 1 9 0 0 3392 46 2525 23678293 81600 1301.7158660888672 8.5701000000000001 2264.7651999999998 120960 65290 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2525 1920 0 384 1 12670062644 51321708 1 0 4 3 3 3 3 5898240 4423680 4423680 4426469 4492800 150 150 150 1001 1074 0 0 0 0 46 0 0 0 0 0
357 1783879497295953600 DEPTH 43 1 0.48621808399510746 0 1 9 1 9 0 0 3403 47 2527 23678300 81600 1291.3942413330078 8.581900000000001 2315.7955999999999 120960 54280 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2527 1920 0 384 1 12674499092 55758156 1 0 4 3 3 3 3 5898240 4423680 4423680 4426543 4492800 150 150 150 1092 985 0 0 0 0 47 0 0 0 0 0
358 1783879499630857300 DEPTH 43 1 0.4861396334562651 0 1 9 1 9 0 0 3406 44 2527 23678241 81600 1290.0444183349609 8.5921000000000003 2333.7572 120960 43469 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2527 1920 0 384 1 12678935540 60194604 1 0 4 3 3 3 3 5898240 4423680 4423680 4426399 4492800 150 150 150 1141 936 5 0 0 0 39 0 0 0 0 0
359 1783879501927871000 DEPTH 43 1 0.4860606848694804 0 1 9 1 9 0 0 3417 46 2535 23678247 81600 1285.3299102783203 8.5792000000000002 2295.8092999999999 120960 30050 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2535 1920 0 384 1 12683380148 64639212 1 0 4 3 3 3 3 5898240 4423680 4423680 4426384 4492800 150 150 150 1281 804 2 0 0 0 44 0 0 0 0 0
360 1783879502295886500 REFRESH 43 0 0.48598131861028387 0 1 9 1 9 0 0 3422 21 412 3987866 55200 225.94583129882812 1.4305000000000001 366.80489999999998 20160 13383 0 0 0.03710369420162668 0.24547566744898053 4096 2048 64 1 16 60 12 4 0 412 320 0 64 0 12684108612 65367676 1 0 4 3 3 3 3 983040 737280 737280 737513 748800 25 25 25 250 87 0 0 0 4 17 0 0 0 0 0
361 1783879505674946200 DEPTH 43 1 0.48590160682575317 0 1 9 1 9 0 0 3436 87 2549 23678359 81600 1300.7170257568359 8.5991999999999997 3377.6167 120960 64979 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2549 1920 0 384 1 12688567580 2718660 1 0 4 3 3 3 3 5898240 4423680 4423680 4426408 4492800 150 150 150 980 1119 0 0 4 2 81 0 0 0 0 0
362 1783879507998783400 DEPTH 43 1 0.48582161425904158 0 1 9 1 9 0 0 3444 48 2534 23678265 81600 1290.9680633544922 8.5949000000000009 2322.5369000000001 120960 54017 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2534 1920 0 384 1 12693011168 7162248 1 0 4 3 3 3 3 5898240 4423680 4423680 4426432 4492800 150 150 150 1052 1032 0 0 0 2 46 0 0 0 0 0
363 1783879510314049300 DEPTH 43 1 0.48574139899143498 0 1 9 1 9 0 0 3447 57 2540 23678188 81600 1289.4330749511719 8.5806000000000004 2314.0043999999998 120960 43344 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2540 1920 0 384 1 12697460876 11611956 1 0 4 3 3 3 3 5898240 4423680 4423680 4426394 4492800 150 150 150 1179 911 0 0 2 0 55 0 0 0 0 0
364 1783879512613905000 DEPTH 43 1 0.48566101311018384 0 1 9 1 9 0 0 3453 59 2547 23678217 81600 1285.7763977050781 8.7781000000000002 2298.5538999999999 120960 30010 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2547 1920 0 384 1 12701917724 16068804 1 0 4 3 3 3 3 5898240 4423680 4423680 4426365 4492800 150 150 150 1283 814 0 0 3 0 56 0 0 0 0 0
365 1783879512983262000 REFRESH 43 0 0.4855805033095339 0 1 9 1 9 0 0 3459 24 416 3987717 55200 224.67481994628906 1.4371 368.22460000000001 20160 13106 0 0 0.03710369420162668 0.24547566744898053 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 12702650268 16801348 1 0 4 3 3 3 3 983040 737280 737280 737510 748800 25 25 25 244 97 0 0 0 3 21 0 0 0 0 0
366 1783879515272353100 DEPTH 43 1 0.4854999114316349 0 1 9 1 9 0 0 3464 62 2531 23678488 81600 1300.6526794433594 8.6729000000000003 2287.8798999999999 120960 64420 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2531 1920 0 384 1 12707090796 21241876 1 0 4 3 3 3 3 5898240 4423680 4423680 4426490 4492800 150 150 150 1030 1051 0 0 0 0 62 0 0 0 0 0
367 1783879517585538200 DEPTH 43 1 0.48541927495334058 0 1 9 1 9 0 0 3469 48 2531 23678429 81600 1293.7256927490234 8.6324000000000005 2312.0526 120960 53703 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2531 1920 0 384 1 12711531324 25682404 1 0 4 3 3 3 3 5898240 4423680 4423680 4426447 4492800 150 150 150 1108 973 0 0 2 2 44 0 0 0 0 0
368 1783879519903011600 DEPTH 43 1 0.48533862742431083 0 1 9 1 9 0 0 3472 54 2528 23678299 81600 1289.4071960449219 8.8907000000000007 2316.1509999999998 120960 43018 1 1 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2528 1920 0 384 1 12715968792 30119872 1 0 4 3 3 3 3 5898240 4423680 4423680 4426431 4492800 150 150 150 1217 861 0 0 0 3 50 0 0 0 0 0
369 1783879522203070500 DEPTH 43 1 0.48525799886128584 0 1 9 1 9 0 0 3479 41 2522 23678246 81600 1286.6715698242188 8.5858000000000008 2298.7687999999998 120960 29613 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2522 1920 0 384 1 12720400140 34551220 1 0 4 3 3 3 3 5898240 4423680 4423680 4426441 4492800 150 150 150 1347 725 0 0 0 0 41 0 0 0 0 0
370 1783879522659567500 REFRESH 43 0 0.48517741610291554 0 1 9 1 9 0 0 3486 24 408 3987754 55200 226.01011657714844 1.4298 376.19600000000003 20160 13319 0 0 0.03710369420162668 0.24547566744898053 4096 2048 64 1 16 60 12 4 0 408 320 0 64 0 12721124524 35275604 1 0 4 3 3 3 3 983040 737280 737280 737516 748800 25 25 25 255 78 0 0 0 3 21 0 0 0 0 0
371 1783879524925041400 DEPTH 43 1 0.48509690312908904 0 1 9 1 9 0 0 3499 49 2516 23678314 81600 1300.9786987304688 8.6442999999999994 2264.2350000000001 120960 65195 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2516 1920 0 384 1 12725549752 39700832 1 0 4 3 3 3 3 5898240 4423680 4423680 4426439 4492800 150 150 150 1102 964 0 0 0 0 49 0 0 0 0 0
372 1783879527188354900 DEPTH 43 1 0.48501648134831399 0 1 9 1 9 0 0 3508 33 2522 23678397 81600 1291.1513824462891 8.5902999999999992 2262.0533 120960 54302 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2522 1920 0 384 1 12729981100 44132180 1 0 4 3 3 3 3 5898240 4423680 4423680 4426427 4492800 150 150 150 1231 841 0 0 0 0 33 0 0 0 0 0
373 1783879529490229000 DEPTH 43 1 0.48493616985634164 0 1 9 1 9 0 0 3518 50 2550 23678478 81600 1288.1069946289062 8.6097999999999999 2300.6158999999998 120960 43614 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2550 1920 0 384 1 12734441008 48592088 1 0 4 3 3 3 3 5898240 4423680 4423680 4426474 4492800 150 150 150 1262 838 0 0 0 1 49 0 0 0 0 0
374 1783879531749067700 DEPTH 43 1 0.48485598566891258 0 1 9 1 9 0 0 3527 59 2558 23678328 81600 1285.5879364013672 8.5937999999999999 2257.4965999999999 120960 29573 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2558 1920 0 384 1 12738909076 53060156 1 0 4 3 3 3 3 5898240 4423680 4423680 4426441 4492800 150 150 150 1409 699 0 0 0 0 59 0 0 0 0 0
375 1783879532116747500 REFRESH 43 0 0.48477594393121215 0 1 9 1 9 0 0 3533 18 412 3987732 55200 225.18476867675781 1.4282999999999999 366.35050000000001 20160 13578 0 0 0.03710369420162668 0.24547566744898053 4096 2048 64 1 16 60 12 4 0 412 320 0 64 0 12739637540 53788620 1 0 4 3 3 3 3 983040 737280 737280 737489 748800 25 25 25 254 83 0 0 0 0 18 0 0 0 0 0
376 1783879534360042200 DEPTH 43 1 0.48469605810636363 0 1 9 1 9 0 0 3551 81 2558 23678339 81600 1300.42041015625 8.6246000000000009 2242.1138999999998 120960 65964 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2558 1920 0 384 1 12744105608 58256688 1 0 4 3 3 3 3 5898240 4423680 4423680 4426505 4492800 150 150 150 1101 1007 0 0 0 1 80 0 0 0 0 0
377 1783879536610721300 DEPTH 43 1 0.48461634014505683 0 1 9 1 9 0 0 3560 50 2572 23678292 81600 1293.9970397949219 8.5878999999999994 2249.5115999999998 120960 54655 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2572 1920 0 384 1 12748587956 62739036 1 0 4 3 3 3 3 5898240 4423680 4423680 4426414 4492800 150 150 150 1267 855 0 0 0 0 50 0 0 0 0 0
378 1783879539956595300 DEPTH 43 1 0.48453680063819848 0 1 9 1 9 0 0 3566 57 2556 23678406 81600 1291.6877593994141 8.6423000000000005 3344.6601000000001 120960 43367 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2556 1920 0 384 1 12753054064 96868 1 0 4 3 3 3 3 5898240 4423680 4423680 4426460 4492800 150 150 150 1424 682 0 0 0 0 57 0 0 0 0 0
379 1783879542256833800 DEPTH 43 1 0.48445744895428117 0 1 9 1 9 0 0 3571 42 2543 23678477 81600 1287.0133819580078 8.5827000000000009 2298.9731999999999 120960 29198 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2543 1920 0 384 1 12757506832 4549636 1 0 4 3 3 3 3 5898240 4423680 4423680 4426452 4492800 150 150 150 1510 583 2 0 0 2 38 0 0 0 0 0
380 1783879542634596800 REFRESH 43 0 0.48437829336300142 0 1 9 1 9 0 0 3579 19 414 3987767 55200 226.19442749023438 1.4315 376.60550000000001 20160 13716 0 0 0.03710369420162668 0.24547566744898053 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 12758237336 5280140 1 0 4 3 3 3 3 983040 737280 737280 737513 748800 25 25 25 244 95 0 0 0 3 16 0 0 0 0 0
381 1783879544908028500 DEPTH 43 1 0.48429934114650008 0 1 9 1 9 0 0 3593 77 2558 23678438 81600 1302.2227783203125 8.5762 2272.2148999999999 120960 66172 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2558 1920 0 384 1 12762705404 9748208 1 0 4 3 3 3 3 5898240 4423680 4423680 4426542 4492800 150 150 150 1082 1026 0 0 0 0 77 0 0 0 0 0
382 1783879547190589700 DEPTH 43 1 0.48422059869946471 0 1 9 1 9 0 0 3599 48 2558 23678269 81600 1294.6760864257812 8.5745000000000005 2281.4007000000001 120960 55116 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2558 1920 0 384 1 12767173472 14216276 1 0 4 3 3 3 3 5898240 4423680 4423680 4426404 4492800 150 150 150 1286 822 0 0 0 1 47 0 0 0 0 0
383 1783879549475239700 DEPTH 43 1 0.4841420716192063 0 1 9 1 9 0 0 3602 44 2547 23678367 81600 1288.8883209228516 8.833499999999999 2283.4816999999998 120960 44154 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2547 1920 0 384 1 12771630320 18673124 1 0 4 3 3 3 3 5898240 4423680 4423680 4426476 4492800 150 150 150 1374 723 0 0 0 0 44 0 0 0 0 0
384 1783879551758037400 DEPTH 43 1 0.48406376478671453 0 1 9 1 9 0 0 3603 42 2535 23678353 81600 1285.3122711181641 8.5762999999999998 2281.5216 120960 30515 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2535 1920 0 384 1 12776074928 23117732 1 0 4 3 3 3 3 5898240 4423680 4423680 4426407 4492800 150 150 150 1411 674 0 0 0 1 41 0 0 0 0 0
385 1783879552133403800 REFRESH 43 0 0.48398568243959328 0 1 9 1 9 0 0 3610 17 414 3987857 55200 226.29580688476562 1.4278 374.1472 20160 13494 0 0 0.03710369420162668 0.24547566744898053 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 12776805432 23848236 1 0 4 3 3 3 3 983040 737280 737280 737521 748800 25 25 25 241 98 0 0 0 1 16 0 0 0 0 0
386 1783879554467454400 DEPTH 43 1 0.4839078282376883 0 1 9 1 9 0 0 3619 41 2536 23678468 81600 1302.8383331298828 8.5736999999999988 2260.0273999999999 120960 65590 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2536 1920 0 384 1 12781251060 28293864 1 0 4 3 3 3 3 5898240 4423680 4423680 4426469 4492800 150 150 150 1144 942 0 0 0 0 41 0 0 0 0 0
387 1783879556732710100 DEPTH 43 1 0.48383020532213855 0 1 9 1 9 0 0 3628 45 2554 23678363 81600 1293.4066925048828 8.5886999999999993 2264.0889000000002 120960 54928 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2554 1920 0 384 1 12785715048 32757852 1 0 4 3 3 3 3 5898240 4423680 4423680 4426463 4492800 150 150 150 1360 744 0 0 0 1 44 0 0 0 0 0
388 1783879559028334700 DEPTH 43 1 0.4837528163685087 0 1 9 1 9 0 0 3636 55 2551 23678392 81600 1290.8042449951172 8.6063999999999989 2294.2417 120960 43600 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2551 1920 0 384 1 12790175976 37218780 1 0 4 3 3 3 3 5898240 4423680 4423680 4426507 4492800 150 150 150 1330 771 0 0 0 1 54 0 0 0 0 0
389 1783879561362659300 DEPTH 43 1 0.4836756636345948 0 1 9 1 9 0 0 3640 45 2552 23678319 81600 1286.1257476806641 8.5876000000000001 2332.9947999999999 120960 30417 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2552 1920 0 384 1 12794637924 41680728 1 0 4 3 3 3 3 5898240 4423680 4423680 4426427 4492800 150 150 150 1396 706 0 0 0 0 45 0 0 0 0 0
390 1783879561745304400 REFRESH 43 0 0.48359874900343625 0 1 9 1 9 0 0 3646 21 415 3987767 55200 225.24415588378906 1.4276 381.33269999999999 20160 13286 0 0 0.03710369420162668 0.24547566744898053 4096 2048 64 1 16 60 12 4 0 415 320 0 64 0 12795369448 42412252 1 0 4 3 3 3 3 983040 737280 737280 737540 748800 25 25 25 242 98 0 0 0 6 15 0 0 0 0 0
391 1783879564061137100 DEPTH 43 1 0.48352207402201353 0 1 9 1 9 0 0 3648 45 2543 23678486 81600 1301.3849334716797 8.6441999999999997 2314.6307000000002 120960 65177 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2543 1920 0 384 1 12799822216 46865020 1 0 4 3 3 3 3 5898240 4423680 4423680 4426423 4492800 150 150 150 988 1105 0 0 0 1 44 0 0 0 0 0
392 1783879566354771200 DEPTH 43 1 0.48344563993606299 0 1 9 1 9 0 0 3652 43 2540 23678420 81600 1293.7164916992188 8.5737000000000005 2292.4214999999999 120960 54339 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2540 1920 0 384 1 12804271924 51314728 1 0 4 3 3 3 3 5898240 4423680 4423680 4426392 4492800 150 150 150 1171 919 0 0 0 0 43 0 0 0 0 0
393 1783879568648494300 DEPTH 43 1 0.48336944772139762 0 1 9 1 9 0 0 3653 21 2531 23678351 81600 1288.3742828369141 8.5997999999999983 2292.4312 120960 42953 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2531 1920 0 384 1 12808712452 55755256 1 0 4 3 3 3 3 5898240 4423680 4423680 4426440 4492800 150 150 150 1197 884 0 0 0 0 21 0 0 0 0 0
394 1783879570948161300 DEPTH 43 1 0.48329349811208283 0 1 9 1 9 0 0 3655 39 2529 23678339 81600 1286.4846038818359 8.5649999999999995 2298.2959000000001 120960 29220 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2529 1920 0 384 1 12813150940 60193744 1 0 4 3 3 3 3 5898240 4423680 4423680 4426449 4492800 150 150 150 1200 879 0 0 0 0 39 0 0 0 0 0
395 1783879571319392000 REFRESH 43 0 0.48321779162578266 0 1 9 1 9 0 0 3663 19 413 3987782 55200 226.02957153320312 1.4326000000000001 369.95679999999999 20160 13417 0 0 0.03710369420162668 0.24547566744898053 4096 2048 64 1 16 60 12 4 0 413 320 0 64 0 12813880424 60923228 1 0 4 3 3 3 3 983040 737280 737280 737545 748800 25 25 25 250 88 0 0 0 1 18 0 0 0 0 0
396 1783879573611826400 DEPTH 43 1 0.48314232858655864 0 1 9 1 9 0 0 3674 44 2524 23678334 81600 1299.6495513916016 8.5877999999999997 2291.2132000000001 120960 66561 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2524 1920 0 384 1 12818313812 65356616 1 0 4 3 3 3 3 5898240 4423680 4423680 4426423 4492800 150 150 150 1004 1070 0 0 0 0 44 0 0 0 0 0
397 1783879576988557000 DEPTH 43 1 0.48306710914537704 0 1 9 1 9 0 0 3677 52 2502 23678421 81600 1293.0571899414062 8.6791 3375.4337999999998 120960 55217 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2502 1920 0 384 1 12822724840 2659500 1 0 4 3 3 3 3 5898240 4423680 4423680 4426417 4492800 150 150 150 1071 981 0 0 0 1 51 0 0 0 0 0
398 1783879579296915300 DEPTH 43 1 0.48299213329855301 0 1 9 1 9 0 0 3681 42 2513 23678504 81600 1289.5180816650391 8.572000000000001 2307.1199999999999 120960 43739 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2513 1920 0 384 1 12827147008 7081668 1 0 4 3 3 3 3 5898240 4423680 4423680 4426449 4492800 150 150 150 1173 890 0 0 0 0 42 0 0 0 0 0
399 1783879581612898700 DEPTH 43 1 0.48291740090433882 0 1 9 1 9 0 0 3683 30 2514 23678440 81600 1288.8537445068359 8.6640000000000015 2314.7431000000001 120960 29718 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2514 1920 0 384 1 12831570196 11504856 1 0 4 3 3 3 3 5898240 4423680 4423680 4426496 4492800 150 150 150 1290 774 0 0 0 0 30 0 0 0 0 0
400 1783879581980771100 REFRESH 43 0 0.48284291169784149 0 1 9 1 9 0 0 3688 15 416 3987806 55200 225.20729064941406 1.4258 366.63799999999998 20160 13527 0 0 0.03710369420162668 0.24547566744898053 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 12832302740 12237400 1 0 4 3 3 3 3 983040 737280 737280 737541 748800 25 25 25 251 90 0 0 0 3 12 0 0 0 0 0
401 1783879584282383600 DEPTH 43 1 0.48276866530443707 0 1 9 1 9 0 0 3696 57 2540 23678341 81600 1300.2257537841797 8.5856999999999992 2300.1037000000001 120960 66413 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2540 1920 0 384 1 12836752448 16687108 1 0 4 3 3 3 3 5898240 4423680 4423680 4426449 4492800 150 150 150 1096 994 0 0 0 0 57 0 0 0 0 0
402 1783879586657285300 DEPTH 43 1 0.4826946612518323 0 1 9 1 9 0 0 3703 50 2540 23678309 81600 1291.6817779541016 8.7750000000000004 2295.9169999999999 120960 54607 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2540 1920 0 384 1 12841202156 21136816 1 0 4 3 3 3 3 5898240 4423680 4423680 4426392 4492800 150 150 150 1164 926 0 0 0 0 50 0 0 0 0 0
403 1783879588939189900 DEPTH 43 1 0.48262089898090876 0 1 9 1 9 0 0 3710 47 2544 23678381 81600 1289.4652404785156 8.6042999999999985 2280.7516999999998 120960 44291 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2544 1920 0 384 1 12845655944 25590604 1 0 4 3 3 3 3 5898240 4423680 4423680 4426404 4492800 150 150 150 1374 720 0 0 0 0 47 0 0 0 0 0
404 1783879591201723100 DEPTH 43 1 0.48254737785547142 0 1 9 1 9 0 0 3717 36 2534 23678502 81600 1285.4898223876953 8.5722999999999985 2261.2759000000001 120960 29831 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2534 1920 0 384 1 12850099532 30034192 1 0 4 3 3 3 3 5898240 4423680 4423680 4426438 4492800 150 150 150 1409 675 0 0 0 0 36 0 0 0 0 0
405 1783879591579195300 REFRESH 43 0 0.48247409717101158 0 1 9 1 9 0 0 3721 17 413 3987757 55200 226.41561889648438 1.4297 376.08499999999998 20160 13530 0 0 0.03710369420162668 0.24547566744898053 4096 2048 64 1 16 60 12 4 0 413 320 0 64 0 12850829016 30763676 1 0 4 3 3 3 3 983040 737280 737280 737483 748800 25 25 25 253 85 0 0 0 4 13 0 0 0 0 0
406 1783879593794308200 DEPTH 43 1 0.48240105616258261 0 1 9 1 9 0 0 3727 53 2541 23678472 81600 1299.8338470458984 8.5823000000000018 2213.9598000000001 120960 66142 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2541 1920 0 384 1 12855279744 35214404 1 0 4 3 3 3 3 5898240 4423680 4423680 4426533 4492800 150 150 150 1214 877 0 0 0 0 53 0 0 0 0 0
407 1783879595279284200 DEPTH 43 1 0.48232825401187751 0 1 9 1 9 0 0 3729 27 1688 15789644 58560 868.87832641601562 5.7592999999999996 1483.6569 80640 37643 0 0 0.03710369420162668 0.24547566744898053 4096 2048 256 8 64 240 48 16 0 1688 1280 0 256 0 12858234400 38169060 1 0 4 3 3 3 3 3932160 2949120 2949120 2950934 2995200 100 100 100 905 483 0 0 0 1 26 0 0 0 0 0
1 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 best_crossing_loss best_intersection_loss neural_replay neural_positive neural_samples neural_train_steps neural_seeds transformer_scored transformer_selected transformer_controls transformer_invalid training_verified training_fp32 training_seeds training_rollouts training_refinements training_cache_accounted_bytes training_wal_bytes training_collection_enabled training_limit_reached weight_baseline weight_replica weight_adaptive weight_pbt weight_injected 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
2 1 1783878782303980000 DEPTH 43 1 0.62348542587702926 0 2 11 2 11 0 0 835 53 2591 23803906 209280 1480.4595336914062 8.6115999999999993 2469.8202999999999 40320 20882 1 0 0.009842172204325185 1.2471290918008606 4096 2048 384 12 96 360 72 24 0 2591 1920 128 384 1 11348341948 4662024 1 0 5 1 2 2 6 7618560 1474560 2949120 2705007 8985600 198 171 158 171 1893 9 2 5 1 36 0 0 0 0 0
3 2 1783878784467118500 DEPTH 43 1 0.61380985317164116 0 2 11 2 11 0 0 837 36 2589 23742624 147840 1302.7329559326172 8.6377000000000006 2161.2862 40320 15008 1 0 0.009842172204325185 1.2471290918008606 4096 2048 384 12 96 360 72 24 0 2589 1920 0 384 1 11352841636 9161712 1 0 5 1 2 2 6 7372800 1474560 2949120 2950925 8985600 187 175 165 346 1716 0 1 1 0 34 0 0 0 0 0
4 3 1783878786619805400 DEPTH 43 1 0.61417401289287477 0 2 11 2 11 0 0 839 44 2595 23742570 147840 1288.4408416748047 8.6143999999999998 2151.2764000000002 47040 18548 1 0 0.009842172204325185 1.2471290918008606 4096 2048 384 12 96 360 72 24 0 2595 1920 0 384 1 11357347444 13667520 1 0 4 2 2 2 6 7127040 1720320 2949120 2950874 8985600 195 175 169 543 1513 0 0 1 2 41 0 0 0 0 0
5 4 1783878788830222200 DEPTH 43 1 0.61449589168523411 0 2 11 2 11 0 0 843 24 2595 23742698 147840 1293.9502410888672 8.6465999999999994 2208.5844000000002 80640 21855 1 0 0.009842172204325185 1.2471290918008606 4096 2048 384 12 96 360 72 24 0 2595 1920 0 384 1 11361853252 18173328 1 0 4 2 2 2 6 5898240 2949120 2949120 2951002 8985600 184 184 198 826 1203 0 0 0 0 24 0 0 0 0 0
6 5 1783878789220690400 REFRESH 43 0 0.61472606416707642 0 2 11 2 11 0 0 844 20 422 3988948 56640 227.83078002929688 1.4386000000000001 388.70679999999999 13440 8138 0 0 0.009842172204325185 1.2471290918008606 4096 2048 64 1 16 60 12 4 0 422 320 0 64 0 11362591916 18911992 1 0 4 2 2 2 6 983040 491520 491520 491667 1497600 33 26 41 124 198 3 0 2 3 12 0 0 0 0 0
7 6 1783878791412050000 DEPTH 43 1 0.61483653692798534 0 2 11 2 11 0 0 845 43 2584 23742623 147840 1324.7293395996094 8.5982000000000003 2189.3458000000001 80640 40415 1 0 0.009842172204325185 1.2471290918008606 4096 2048 384 12 96 360 72 24 0 2584 1920 0 384 1 11367086504 23406580 1 0 4 2 2 2 6 5898240 2949120 2949120 2950927 8985600 171 156 174 322 1761 0 0 1 1 41 0 0 0 0 0
8 7 1783878793593982000 DEPTH 43 1 0.61481351150575647 0 2 11 2 11 0 0 847 22 2585 23727807 132480 1318.3313903808594 8.6113 2180.0158000000001 107520 46371 1 0 0.009842172204325185 1.2471290918008606 4096 2048 384 12 96 360 72 24 0 2585 1920 0 384 1 11371582112 27902188 1 0 4 3 2 2 5 5898240 3932160 2949120 2951029 7987200 164 156 188 590 1487 0 1 0 0 21 0 0 0 0 0
9 8 1783878795758580700 DEPTH 43 1 0.61465258708349124 0 2 11 2 11 0 0 847 22 2613 23720755 125760 1321.0654754638672 8.6795999999999989 2163.1878999999999 120960 41417 1 0 0.009842172204325185 1.2471290918008606 4096 2048 384 12 96 360 72 24 0 2613 1920 0 384 1 11376106280 32426356 1 0 4 3 2 2 5 5898240 4423680 2949120 2950975 7488000 163 156 188 1413 693 0 0 0 0 22 0 0 0 0 0
10 9 1783878797936971200 DEPTH 43 1 0.61435552741369981 0 2 11 2 11 0 0 847 34 2622 23705482 110400 1315.7295684814453 8.6105999999999998 2177.1043 120960 30503 1 0 0.009842172204325185 1.2471290918008606 4096 2048 384 12 96 360 72 24 0 2622 1920 0 384 1 11380639628 36959704 1 0 4 3 3 2 4 5898240 4423680 3932160 2951008 6489600 163 155 197 1511 596 0 0 0 4 30 0 0 0 0 0
11 10 1783878798298749000 REFRESH 43 0 0.61392805552847884 0 2 11 2 11 0 0 847 11 425 3987991 55680 229.04115295410156 1.4313 360.18360000000001 20160 12118 0 0 0.009842172204325185 1.2471290918008606 4096 2048 64 1 16 60 12 4 0 425 320 0 64 0 11381381352 37701428 1 0 4 3 3 2 4 983040 737280 737280 491665 998400 30 25 39 246 85 0 0 1 2 8 0 0 0 0 0
12 11 1783878800494713800 DEPTH 43 1 0.6133783376548172 0 2 11 2 11 0 0 849 28 2605 23698571 103680 1338.7051849365234 8.5991 2194.6106 120960 59957 1 0 0.009842172204325185 1.2471290918008606 4096 2048 384 12 96 360 72 24 0 2605 1920 0 384 1 11385897360 42217436 1 0 4 3 3 2 4 5898240 4423680 4423680 2950963 5990400 168 150 229 1339 719 0 0 0 0 28 0 0 0 0 0
13 12 1783878802685897200 DEPTH 43 1 0.61271593712317007 0 2 11 2 11 0 0 851 24 2622 23687538 92160 1336.0076751708984 8.6174999999999997 2189.9306000000001 120960 49037 1 0 0.009842172204325185 1.2471290918008606 4096 2048 384 12 96 360 72 24 0 2622 1920 0 384 1 11390430708 46750784 1 0 4 3 3 3 3 5898240 4423680 4423680 3688683 5241600 177 150 260 1498 537 0 0 0 1 23 0 0 0 0 0
14 13 1783878804961759400 DEPTH 43 1 0.61195109319157881 0 2 11 2 11 0 0 851 32 2621 23677624 81600 1390.3780059814453 8.6474000000000011 2274.1918000000001 120960 38961 1 0 0.009842172204325185 1.2471290918008606 4096 2048 384 12 96 360 72 24 0 2621 1920 0 384 1 11394963036 51283112 1 0 4 3 3 3 3 5898240 4423680 4423680 4426456 4492800 180 150 263 1513 515 2 0 1 0 29 0 0 0 0 0
15 14 1783878807254708200 DEPTH 43 1 0.61109422693463689 0 2 11 2 11 0 0 851 37 2621 23677369 81600 1401.6645050048828 8.8420000000000005 2291.6201000000001 120960 28124 1 0 0.009842172204325185 1.2471290918008606 4096 2048 384 12 96 360 72 24 0 2621 1920 0 384 1 11399495364 55815440 1 0 4 3 3 3 3 5898240 4423680 4423680 4426344 4492800 173 150 253 1552 493 1 0 0 3 33 0 0 0 0 0
16 15 1783878807630521600 REFRESH 43 0 0.6101556071142944 0 2 11 2 11 0 0 852 8 429 3987631 55200 231.59910583496094 2.0969000000000002 374.36810000000003 20160 12312 0 0 0.009842172204325185 1.2471290918008606 4096 2048 64 1 16 60 12 4 0 429 320 0 64 0 11400241168 56561244 1 0 4 3 3 3 3 983040 737280 737280 737522 748800 71 25 102 156 75 1 0 1 0 6 0 0 0 0 0
17 16 1783878809999674900 DEPTH 43 1 0.60714512939514831 0 2 11 1 11 1 0 897 109 2530 23676804 81600 1337.8355102539062 8.6052 2367.5823 120960 59674 1 0 0.01321162306883184 0.70350935863804531 4096 2048 384 12 96 360 72 24 0 2530 1920 0 384 1 11404680676 61000752 1 0 6 3 2 2 3 8355840 4423680 3194880 3196924 4492800 196 150 313 377 1494 10 0 0 1 98 1 0 0 0 4
18 17 1783878812513400100 DEPTH 43 1 0.70627217609360193 0 1 11 1 11 1 0 917 89 2546 23676500 81600 1327.8107452392578 8.6380999999999997 2436.3764000000001 120960 48576 1 0 0.0097154611702509747 0.70842359234667862 4096 2048 384 12 96 360 72 24 0 2546 1920 0 384 1 11409136504 65456580 1 0 6 3 2 2 3 8847360 4423680 2949120 2950905 4492800 156 150 182 174 1884 4 0 1 0 84 0 0 0 0 1
19 18 1783878816055499800 DEPTH 43 1 0.6953465550401261 0 1 11 1 11 0 0 926 85 2551 23676611 81600 1331.3250579833984 8.6232000000000006 3540.7311 120960 40454 1 0 0.0097154611702509747 0.70842359234667862 4096 2048 384 12 96 360 72 24 0 2551 1920 0 384 1 11413597512 2808700 1 0 6 3 2 2 3 8847360 4423680 2949120 2950964 4492800 156 150 192 174 1879 5 0 0 0 80 0 0 0 0 0
20 19 1783878818467780600 DEPTH 43 1 0.68533426730668279 0 1 11 1 11 1 0 943 94 2555 23676834 81600 1319.3555603027344 8.5946999999999996 2410.8159999999998 120960 30392 1 0 0.03023503934461445 0.40160674742793606 4096 2048 384 12 96 360 72 24 0 2555 1920 0 384 1 11418062520 7273708 1 0 6 3 2 2 3 8847360 4423680 2949120 2951049 4492800 156 150 185 208 1856 16 0 0 0 78 0 0 0 0 2
21 20 1783878818855859300 REFRESH 43 0 0.67638530217159232 0 1 11 1 11 0 0 963 29 415 3987507 55200 230.21875 1.4352 386.2552 20160 12187 0 0 0.03023503934461445 0.40160674742793606 4096 2048 64 1 16 60 12 4 0 415 320 0 64 0 11418794044 8005232 1 0 6 3 2 2 3 1474560 737280 491520 491663 748800 25 25 25 203 137 0 0 0 4 25 0 0 0 0 0
22 21 1783878821335072700 DEPTH 43 1 0.66796164775491507 0 1 11 1 11 1 0 984 84 2538 23676765 81600 1341.5609588623047 8.6268999999999991 2477.9007999999999 120960 61706 1 0 0.026905195926877075 0.3923808980695746 4096 2048 384 12 96 360 72 24 0 2538 1920 0 384 1 11423241712 12452900 1 0 5 3 2 3 3 8355840 4423680 2949120 3442784 4492800 150 150 150 162 1926 0 0 0 0 84 0 0 0 0 2
23 22 1783878823772235200 DEPTH 43 1 0.66025411891300489 0 1 11 1 11 0 0 1018 107 2550 23687374 92160 1323.6142120361328 8.6853000000000016 2435.5944 120960 47032 1 0 0.026905195926877075 0.3923808980695746 4096 2048 384 12 96 360 72 24 0 2550 1920 0 384 1 11427701620 16912808 1 0 4 3 3 3 3 6881280 4423680 3440640 3688621 5241600 150 150 150 398 1702 0 3 3 4 97 0 0 0 0 0
24 23 1783878826238920500 DEPTH 43 1 0.65314845097629992 0 1 11 1 11 1 0 1040 93 2551 23685040 89280 1331.3658752441406 8.5866000000000007 2465.0585000000001 120960 40153 1 0 0.026904236575297922 0.38557621408633436 4096 2048 384 12 96 360 72 24 0 2551 1920 0 384 1 11432162548 21373736 1 0 4 3 3 3 3 5898240 4423680 3932160 4426428 4992000 150 150 150 584 1517 0 1 5 4 83 0 0 0 0 2
25 24 1783878828706153800 DEPTH 43 1 0.6466230419227037 0 1 11 1 11 0 0 1052 74 2557 23684234 88320 1323.931640625 8.5961999999999996 2465.8586 120960 33570 1 0 0.026904236575297922 0.38557621408633436 4096 2048 384 12 96 360 72 24 0 2557 1920 0 384 1 11436629596 25840784 1 0 4 3 3 3 3 5898240 4423680 3932160 4426559 4992000 150 150 150 709 1398 0 1 7 2 64 0 0 0 0 0
26 25 1783878829110657000 REFRESH 43 0 0.64059779308859 0 1 11 1 11 0 0 1064 37 418 3987585 55200 228.2373046875 1.4602999999999999 402.74759999999998 20160 12293 0 0 0.026904236575297922 0.38557621408633436 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 11437364180 26575368 1 0 4 3 3 3 3 983040 737280 737280 737503 748800 25 25 25 197 146 0 0 0 16 21 0 0 0 0 0
27 26 1783878831574652800 DEPTH 43 1 0.63503832131669324 0 1 11 1 11 1 0 1084 76 2550 23677275 81600 1322.060791015625 8.601700000000001 2462.1134000000002 120960 59903 1 0 0.023513122486761771 0.37543211103372959 4096 2048 384 12 96 360 72 24 0 2550 1920 0 384 1 11441824088 31035276 1 0 4 3 3 3 3 5898240 4423680 4423680 4426381 4492800 150 150 150 806 1294 0 0 1 0 75 0 0 0 0 1
28 27 1783878834061931000 DEPTH 43 1 0.62991590927652485 0 1 11 1 11 1 0 1091 56 2560 23689014 93120 1334.8157501220703 8.5919999999999987 2485.7959000000001 120960 48809 1 0 0.023513206095578918 0.37042460049529408 4096 2048 384 12 96 360 72 24 0 2560 1920 0 384 1 11446294196 35505384 1 0 4 3 2 3 4 5898240 4423680 3686400 4426478 5241600 150 150 150 775 1335 0 0 0 0 56 0 0 0 0 2
29 28 1783878836540678700 DEPTH 43 1 0.62516828349881448 0 1 11 1 11 1 0 1102 49 2566 23680412 84480 1309.5743103027344 8.633799999999999 2477.1259 120960 38799 1 0 0.023489798491358991 0.37137792366689748 4096 2048 384 12 96 360 72 24 0 2566 1920 0 384 1 11450770424 39981612 1 0 4 3 3 3 3 5898240 4423680 4177920 4426382 4742400 150 150 150 934 1182 1 0 1 0 47 0 0 0 0 1
30 29 1783878839023722200 DEPTH 43 1 0.62076668377676203 0 1 11 1 11 0 0 1117 52 2572 23680248 84480 1318.4993286132812 8.7275999999999989 2481.5369999999998 120960 26810 1 0 0.023489798491358991 0.37137792366689748 4096 2048 384 12 96 360 72 24 0 2572 1920 0 384 1 11455252772 44463960 1 0 4 3 3 3 3 5898240 4423680 4177920 4426392 4742400 150 150 152 1036 1084 0 0 2 0 50 0 0 0 0 0
31 30 1783878839415723700 REFRESH 43 0 0.61667270592261625 0 1 11 1 11 0 0 1135 39 421 3987600 55200 231.46188354492188 1.4390000000000001 390.42880000000002 20160 12371 0 0 0.023489798491358991 0.37137792366689748 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 11455990416 45201604 1 0 4 3 3 3 3 983040 737280 737280 737506 748800 25 25 28 195 148 0 0 0 21 18 0 0 0 0 0
32 31 1783878841912138800 DEPTH 43 1 0.61286573147711199 0 1 11 1 11 0 0 1149 50 2558 23677484 81600 1377.2533569335938 8.6547999999999998 2495.1329000000001 120960 58924 1 0 0.023489798491358991 0.37137792366689748 4096 2048 384 12 96 360 72 24 0 2558 1920 0 384 1 11460458484 49669672 1 0 4 3 3 3 3 5898240 4423680 4423680 4426465 4492800 150 150 152 641 1465 0 0 0 0 50 0 0 0 0 0
33 32 1783878844542874400 DEPTH 43 1 0.60931972010495827 0 1 11 1 11 1 0 1161 63 2568 23677413 81600 1408.5519866943359 9.6678999999999995 2542.0735 120960 48114 1 0 0.023489775560579393 0.37113068697740526 4096 2048 384 12 96 360 72 24 0 2568 1920 0 384 1 11464936752 54147940 1 0 4 3 3 3 3 5898240 4423680 4423680 4426408 4492800 150 150 150 836 1282 0 0 0 1 62 0 0 0 0 1
34 33 1783878847126095300 DEPTH 43 1 0.60601155447608401 0 1 11 1 11 1 0 1169 47 2567 23681410 85440 1389.868408203125 8.6465999999999994 2581.4036999999998 120960 37908 1 0 0.00036655077805125216 0.62206274473982437 4096 2048 384 12 96 360 72 24 0 2567 1920 0 384 1 11469414000 58625188 1 0 4 3 2 3 4 5898240 4423680 4177920 4426455 4742400 150 150 151 877 1239 0 0 0 0 47 0 0 0 0 2
35 34 1783878849741066700 DEPTH 43 1 0.60303953049728976 0 1 11 1 11 0 0 1176 73 2570 23680521 84480 1375.9540100097656 9.2362000000000002 2612.8915000000002 120960 26367 1 0 0.00036655077805125216 0.62206274473982437 4096 2048 384 12 96 360 72 24 0 2570 1920 0 384 1 11473894308 63105496 1 0 4 3 3 3 3 5898240 4423680 4177920 4426419 4742400 150 150 155 888 1227 0 0 1 1 71 0 0 0 0 0
36 35 1783878850152445000 REFRESH 43 0 0.60013215782030138 0 1 11 1 11 0 0 1182 28 420 3987621 55200 231.04409790039062 1.4334 409.66739999999999 20160 12477 0 0 0.00036655077805125216 0.62206274473982437 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 11474630932 63842120 1 0 4 3 3 3 3 983040 737280 737280 737505 748800 25 25 29 199 142 0 0 0 8 20 0 0 0 0 0
37 36 1783878853779694200 DEPTH 43 1 0.59740569238359242 0 1 11 1 11 1 0 1193 58 2558 23677497 81600 1349.0964660644531 8.6234000000000002 3625.8074000000001 120960 59109 1 0 0.0063723423564975195 0.62842458707157101 4096 2048 384 12 96 360 72 24 0 2558 1920 0 384 1 11479099080 1201552 1 0 4 3 3 3 3 5898240 4423680 4423680 4426401 4492800 150 150 162 721 1375 0 0 3 0 55 0 0 0 0 1
38 37 1783878856260546300 DEPTH 43 1 0.59488626866957528 0 1 11 1 11 1 0 1202 58 2571 23681382 85440 1315.9413757324219 8.6296999999999997 2479.1417999999999 120960 48003 1 0 0.0010562019082033984 0.57581095940555616 4096 2048 384 12 96 360 72 24 0 2571 1920 0 384 1 11483580408 5682880 1 0 4 3 2 3 4 5898240 4423680 4177920 4426433 4742400 150 150 161 696 1414 0 0 1 0 57 0 0 0 0 2
39 38 1783878858759938300 DEPTH 43 1 0.59250594788971689 0 1 11 1 11 1 0 1215 63 2558 23699678 103680 1331.0854644775391 8.6417999999999999 2497.9535000000001 120960 38903 1 0 0.0074959312965014934 0.63901230229659434 4096 2048 384 12 96 360 72 24 0 2558 1920 0 384 1 11488048476 10150948 1 0 4 3 2 3 4 5898240 4423680 2949120 4426520 5990400 150 150 163 572 1523 2 0 0 0 61 0 0 0 0 3
40 39 1783878861203100300 DEPTH 43 1 0.59033187555163846 0 1 11 1 11 1 0 1237 68 2558 23699680 103680 1327.2821960449219 8.6090999999999998 2441.8099999999999 120960 26813 1 0 0.0089534794104050661 0.5660456004506329 4096 2048 384 12 96 360 72 24 0 2558 1920 0 384 1 11492516544 14619016 1 0 4 3 2 3 4 5898240 4423680 2949120 4426437 5990400 150 150 161 697 1400 2 0 0 0 66 0 0 0 0 1
41 40 1783878861590329800 REFRESH 43 0 0.58826651649895734 0 1 11 1 11 0 0 1257 52 415 3988088 55680 228.71040344238281 1.4329000000000001 385.7167 20160 12352 0 0 0.0089534794104050661 0.5660456004506329 4096 2048 64 1 16 60 12 4 0 415 320 0 64 0 11493248068 15350540 1 0 4 3 2 3 4 983040 737280 491520 737505 998400 25 25 25 100 240 1 0 0 7 44 0 0 0 0 0
42 41 1783878864041975800 DEPTH 43 1 0.58621055235424269 0 1 11 1 11 1 0 1274 68 2552 23699660 103680 1322.3570404052734 8.6202000000000005 2450.2959999999998 120960 59344 1 0 0.0089534655716098747 0.5897130624482595 4096 2048 384 12 96 360 72 24 0 2552 1920 0 384 1 11497710016 19812488 1 0 4 3 2 3 4 5898240 4423680 2949120 4426423 5990400 150 150 150 360 1742 0 0 0 0 68 0 0 0 0 1
43 42 1783878866523814300 DEPTH 43 1 0.58426507665283745 0 1 11 1 11 1 0 1278 52 2544 23699648 103680 1377.9814605712891 8.616299999999999 2480.3948 120960 48921 1 0 0.0089535026001445021 0.59017937691416078 4096 2048 384 12 96 360 72 24 0 2544 1920 0 384 1 11502163804 24266276 1 0 4 3 2 3 4 5898240 4423680 2949120 4426467 5990400 150 150 150 427 1667 1 0 0 0 51 0 0 0 0 1
44 43 1783878869084819200 DEPTH 43 1 0.58241785547291958 0 1 11 1 11 1 0 1286 45 2560 23692026 96000 1401.7167816162109 8.6343999999999994 2559.5794000000001 120960 39248 1 0 0.0071610230477030194 0.59156244541004277 4096 2048 384 12 96 360 72 24 0 2560 1920 0 384 1 11506633912 28736384 1 0 4 3 3 3 3 5898240 4423680 3440640 4426425 5491200 150 150 150 645 1465 1 0 0 0 44 0 0 0 0 1
45 44 1783878871649421700 DEPTH 43 1 0.58066886803152529 0 1 11 1 11 0 0 1292 43 2544 23691993 96000 1413.4425506591797 8.6527999999999992 2563.2750999999998 120960 26854 1 0 0.0071610230477030194 0.59156244541004277 4096 2048 384 12 96 360 72 24 0 2544 1920 0 384 1 11511087700 33190172 1 0 4 3 3 3 3 5898240 4423680 3440640 4426432 5491200 150 150 150 699 1395 0 0 2 0 41 0 0 0 0 0
46 45 1783878872057388200 REFRESH 43 0 0.57899568038245031 0 1 11 1 11 1 0 1296 23 414 3987611 55200 241.56364440917969 1.4332 406.23590000000002 20160 12666 0 0 0.0070406733235316406 0.55110175138820661 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 11511818204 33920676 1 0 4 3 3 3 3 983040 737280 737280 737499 748800 25 25 26 178 160 0 0 0 10 13 0 0 0 0 1
47 46 1783878874625899600 DEPTH 43 1 0.57742386219135433 0 1 11 1 11 1 0 1315 71 2521 23699680 103680 1356.5278472900391 8.6898999999999997 2483.8800999999999 120960 61350 1 0 0.0040811110137337027 0.54912215547857646 4096 2048 384 12 96 360 72 24 0 2521 1920 0 384 1 11516248532 38351004 1 0 4 3 2 3 4 5898240 4423680 2949120 4426484 5990400 150 150 150 200 1871 0 1 0 1 69 0 0 0 0 1
48 47 1783878877111370300 DEPTH 43 1 0.57590995596749028 0 1 11 1 11 1 0 1319 50 2549 23684398 88320 1358.8695068359375 8.6112000000000002 2484.1062999999999 120960 50536 1 0 0.0040811121666749104 0.54439612102319435 4096 2048 384 12 96 360 72 24 0 2549 1920 0 384 1 11520707420 42809892 1 0 4 3 3 3 3 5898240 4423680 3932160 4426433 4992000 150 150 156 642 1451 0 0 0 0 50 0 0 0 0 1
49 48 1783878879656324800 DEPTH 43 1 0.57445162430901886 0 1 11 1 11 1 0 1329 57 2546 23699684 103680 1349.3145599365234 8.6504999999999992 2543.5996 120960 40535 1 0 0.00070350750975902169 0.53719728041054415 4096 2048 384 12 96 360 72 24 0 2546 1920 0 384 1 11525163248 47265720 1 0 4 3 2 3 4 5898240 4423680 2949120 4426413 5990400 150 150 156 650 1440 0 0 0 1 56 0 0 0 0 2
50 49 1783878882136385900 DEPTH 43 1 0.57307165416311157 0 1 11 1 11 1 0 1334 51 2554 23699714 103680 1358.6380767822266 8.6060999999999996 2478.6790999999998 120960 27986 1 0 0.00071730002828579312 0.53446775439727545 4096 2048 384 12 96 360 72 24 0 2554 1920 0 384 1 11529627236 51729708 1 0 4 3 2 3 4 5898240 4423680 2949120 4426412 5990400 150 150 156 835 1263 0 0 0 0 51 0 0 0 0 2
51 50 1783878882530701500 REFRESH 43 0 0.57173959456635748 0 1 11 1 11 0 0 1347 32 408 3988170 55680 235.3438720703125 1.4710000000000001 392.8272 20160 13033 0 0 0.00071730002828579312 0.53446775439727545 4096 2048 64 1 16 60 12 4 0 408 320 0 64 0 11530351620 52454092 1 0 4 3 2 3 4 983040 737280 491520 737548 998400 25 25 25 127 206 0 0 0 6 26 0 0 0 0 0
52 51 1783878885100768300 DEPTH 43 1 0.57044517535789352 0 1 11 1 11 0 0 1360 49 2521 23699771 103680 1379.3546142578125 8.6146000000000011 2568.7017999999998 120960 63051 1 1 0.00071730002828579312 0.53446775439727545 4096 2048 384 12 96 360 72 24 0 2521 1920 0 384 1 11534781948 56884420 1 0 4 3 2 3 4 5898240 4423680 2949120 4426500 5990400 150 150 150 350 1721 0 0 0 0 48 0 0 0 0 0
53 52 1783878887609475700 DEPTH 43 1 0.56919986592266758 0 1 11 1 11 0 0 1368 37 2541 23684531 88320 1347.6855926513672 9.1583000000000006 2507.3627000000001 120960 51882 1 0 0.00071730002828579312 0.53446775439727545 4096 2048 384 12 96 360 72 24 0 2541 1920 0 384 1 11539232676 61335148 1 0 4 3 3 3 3 5898240 4423680 3932160 4426533 4992000 150 150 150 772 1319 0 0 0 0 37 0 0 0 0 0
54 53 1783878890130544000 DEPTH 43 1 0.56800017047694695 0 1 11 1 11 0 0 1376 48 2557 23677891 81600 1339.5006408691406 8.6416000000000004 2519.6552999999999 120960 41408 1 0 0.00071730002828579312 0.53446775439727545 4096 2048 384 12 96 360 72 24 0 2557 1920 0 384 1 11543699724 65802196 1 0 4 3 3 3 3 5898240 4423680 4423680 4426473 4492800 150 150 150 1230 877 0 0 0 2 46 0 0 0 0 0
55 54 1783878893758156600 DEPTH 43 1 0.56684290265271986 0 1 11 1 11 1 0 1388 61 2536 23685460 89280 1338.7409515380859 8.595699999999999 3626.1768000000002 120960 28610 1 0 0.00073477427226610668 0.51700763160517571 4096 2048 384 12 96 360 72 24 0 2536 1920 0 384 1 11548145432 3139084 1 0 4 3 2 3 4 5898240 4423680 3932160 4426423 4992000 150 150 150 1275 811 1 0 0 0 60 0 0 0 0 2
56 55 1783878894168770900 REFRESH 43 0 0.56575305064473902 0 1 11 1 11 0 0 1393 17 419 3988154 55680 234.89228820800781 1.4306000000000001 408.98809999999997 20160 13425 0 0 0.00073477427226610668 0.51700763160517571 4096 2048 64 1 16 60 12 4 0 419 320 0 64 0 11548881036 3874688 1 0 4 3 2 3 4 983040 737280 491520 737518 998400 25 25 25 226 118 0 0 0 3 14 0 0 0 0 0
57 56 1783878896715756900 DEPTH 43 1 0.56466938262906785 0 1 11 1 11 0 0 1400 53 2549 23680737 84480 1367.2284393310547 8.6456 2545.634 120960 64167 1 0 0.00073477427226610668 0.51700763160517571 4096 2048 384 12 96 360 72 24 0 2549 1920 0 384 1 11553339924 8333576 1 0 4 3 3 3 3 5898240 4423680 4177920 4426449 4742400 150 150 150 1126 973 0 0 1 0 52 0 0 0 0 0
58 57 1783878899211454100 DEPTH 43 1 0.56362043790210348 0 1 11 1 11 0 0 1407 62 2539 23677868 81600 1341.2075500488281 8.8908000000000005 2494.2145 120960 53440 1 0 0.00073477427226610668 0.51700763160517571 4096 2048 384 12 96 360 72 24 0 2539 1920 0 384 1 11557788612 12782264 1 0 4 3 3 3 3 5898240 4423680 4423680 4426477 4492800 150 150 150 1319 770 2 0 0 0 60 0 0 0 0 0
59 58 1783878901691015200 DEPTH 43 1 0.56260397253613403 0 1 11 1 11 0 0 1413 57 2546 23677922 81600 1330.0951232910156 8.6436000000000011 2478.0371 120960 42418 1 0 0.00073477427226610668 0.51700763160517571 4096 2048 384 12 96 360 72 24 0 2546 1920 0 384 1 11562244440 17238092 1 0 4 3 3 3 3 5898240 4423680 4423680 4426488 4492800 150 150 150 1447 649 3 0 4 2 48 0 0 0 0 0
60 59 1783878904175765400 DEPTH 43 1 0.56161793357624357 0 1 11 1 11 0 0 1415 52 2524 23678026 81600 1337.3798370361328 9.1855999999999991 2482.7772 120960 29352 1 0 0.00073477427226610668 0.51700763160517571 4096 2048 384 12 96 360 72 24 0 2524 1920 0 384 1 11566677828 21671480 1 0 4 3 3 3 3 5898240 4423680 4423680 4426467 4492800 150 150 150 1440 634 0 0 0 0 52 0 0 0 0 0
61 60 1783878904684071000 REFRESH 43 0 0.5606604411360594 0 1 11 1 11 0 0 1417 14 416 3987647 55200 250.5166015625 1.4337 425.89949999999999 20160 13487 0 0 0.00073477427226610668 0.51700763160517571 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 11567410372 22404024 1 0 4 3 3 3 3 983040 737280 737280 737494 748800 25 25 25 259 82 0 0 0 0 14 0 0 0 0 0
62 61 1783878907217671400 DEPTH 43 1 0.55972977223580278 0 1 11 1 11 0 0 1424 50 2506 23677724 81600 1375.9705657958984 8.6801999999999992 2531.9376999999999 120960 64965 1 0 0.00073477427226610668 0.51700763160517571 4096 2048 384 12 96 360 72 24 0 2506 1920 0 384 1 11571825400 26819052 1 0 4 3 3 3 3 5898240 4423680 4423680 4426374 4492800 150 150 150 1364 692 0 0 0 0 50 0 0 0 0 0
63 62 1783878909701053000 DEPTH 43 1 0.55882434621012367 0 1 11 1 11 0 0 1426 38 2509 23677917 81600 1393.4848022460938 8.5987000000000009 2481.8234000000002 120960 53791 1 0 0.00073477427226610668 0.51700763160517571 4096 2048 384 12 96 360 72 24 0 2509 1920 0 384 1 11576243488 31237140 1 0 4 3 3 3 3 5898240 4423680 4423680 4426460 4492800 150 150 150 1482 577 0 0 0 0 38 0 0 0 0 0
64 63 1783878912157339400 DEPTH 43 1 0.55794271153046904 0 1 11 1 11 0 0 1429 49 2504 23677931 81600 1344.1957397460938 8.6807999999999996 2454.8607999999999 120960 42943 1 0 0.00073477427226610668 0.51700763160517571 4096 2048 384 12 96 360 72 24 0 2504 1920 0 384 1 11580656476 35650128 1 0 4 3 3 3 3 5898240 4423680 4423680 4426381 4492800 150 150 150 1466 588 0 0 3 0 46 0 0 0 0 0
65 64 1783878914613911500 DEPTH 43 1 0.55708353390225662 0 1 11 1 11 0 0 1434 48 2509 23678003 81600 1311.110595703125 8.5789000000000009 2455.2453 120960 29454 1 0 0.00073477427226610668 0.51700763160517571 4096 2048 384 12 96 360 72 24 0 2509 1920 0 384 1 11585074564 40068216 1 0 4 3 3 3 3 5898240 4423680 4423680 4426413 4492800 150 150 150 1491 568 0 0 3 0 45 0 0 0 0 0
66 65 1783878915017747000 REFRESH 43 0 0.55624558551107728 0 1 11 1 11 0 0 1437 15 414 3987689 55200 230.11943054199219 1.4309000000000001 402.39909999999998 20160 13336 0 0 0.00073477427226610668 0.51700763160517571 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 11585805068 40798720 1 0 4 3 3 3 3 983040 737280 737280 737481 748800 25 25 25 263 76 0 0 0 0 15 0 0 0 0 0
67 66 1783878917453658300 DEPTH 43 1 0.55542773530470202 0 1 11 1 11 0 0 1439 40 2498 23678079 81600 1328.8131256103516 8.8466000000000005 2434.5601999999999 120960 64845 1 0 0.00073477427226610668 0.51700763160517571 4096 2048 384 12 96 360 72 24 0 2498 1920 0 384 1 11590211936 45205588 1 0 4 3 3 3 3 5898240 4423680 4423680 4426390 4492800 150 150 150 1449 599 0 0 1 0 39 0 0 0 0 0
68 67 1783878919925527300 DEPTH 43 1 0.5546289402089537 0 1 11 1 11 0 0 1444 49 2511 23677908 81600 1324.1722869873047 8.6414000000000009 2470.5293999999999 120960 53766 1 0 0.00073477427226610668 0.51700763160517571 4096 2048 384 12 96 360 72 24 0 2511 1920 0 384 1 11594632064 49625716 1 0 4 3 3 3 3 5898240 4423680 4423680 4426409 4492800 150 150 150 1496 565 0 0 1 0 48 0 0 0 0 0
69 68 1783878922383191300 DEPTH 43 1 0.55384823718565412 0 1 11 1 11 1 0 1446 44 2523 23678041 81600 1366.2546844482422 8.6036000000000001 2456.0155 120960 43420 1 0 0.00029692792149424023 0.48659870226076979 4096 2048 384 12 96 360 72 24 0 2523 1920 0 384 1 11599064432 54058084 1 0 4 3 3 3 3 5898240 4423680 4423680 4426463 4492800 150 150 150 1514 559 0 0 0 0 44 0 0 0 0 2
70 69 1783878924810756000 DEPTH 43 1 0.553098641645135 0 1 11 1 11 0 0 1447 52 2524 23678146 81600 1316.39501953125 8.6318999999999999 2426.2345 120960 29493 1 0 0.00029692792149424023 0.48659870226076979 4096 2048 384 12 96 360 72 24 0 2524 1920 0 384 1 11603497820 58491472 1 0 4 3 3 3 3 5898240 4423680 4423680 4426485 4492800 150 150 150 1518 556 0 0 0 0 52 0 0 0 0 0
71 70 1783878925230393200 REFRESH 43 0 0.55235012800848438 0 1 11 1 11 0 0 1449 8 415 3987742 55200 235.14828491210938 1.4317 418.18549999999999 20160 13418 0 0 0.00029692792149424023 0.48659870226076979 4096 2048 64 1 16 60 12 4 0 415 320 0 64 0 11604229344 59222996 1 0 4 3 3 3 3 983040 737280 737280 737493 748800 25 25 25 260 80 0 0 0 0 8 0 0 0 0 0
72 71 1783878927717286900 DEPTH 43 1 0.54961736813318296 0 1 11 1 11 1 0 1452 35 2489 23678110 81600 1355.6285552978516 8.6184999999999992 2485.0454 120960 65156 1 0 0.00051938344312636307 0.43196715463298035 4096 2048 384 12 96 360 72 24 0 2489 1920 0 384 1 11608627032 63620684 1 0 4 3 3 3 3 5898240 4423680 4423680 4426422 4492800 150 150 150 1451 588 0 0 0 1 34 0 0 0 0 1
73 72 1783878931324399800 DEPTH 43 1 0.54910256969701143 0 1 11 1 11 0 0 1458 41 2506 23678209 81600 1353.5274505615234 8.6722000000000001 3605.6086 120960 54661 1 0 0.00051938344312636307 0.43196715463298035 4096 2048 384 12 96 360 72 24 0 2506 1920 0 384 1 11613042140 927172 1 0 4 3 3 3 3 5898240 4423680 4423680 4426461 4492800 150 150 150 1498 558 0 0 0 0 41 0 0 0 0 0
74 73 1783878933755002200 DEPTH 43 1 0.54857890977651036 0 1 11 1 11 1 0 1463 42 2501 23677991 81600 1319.1773223876953 8.9969999999999999 2429.3008 120960 43315 1 0 0.0005193975339547051 0.43317359090119911 4096 2048 384 12 96 360 72 24 0 2501 1920 0 384 1 11617452068 5337100 1 0 4 3 3 3 3 5898240 4423680 4423680 4426440 4492800 150 150 150 1493 558 0 0 0 0 42 0 0 0 0 1
75 74 1783878936280851000 DEPTH 43 1 0.54805721529321982 0 1 11 1 11 1 0 1469 36 2494 23693424 96960 1312.5498809814453 8.5892999999999997 2451.8928000000001 120960 29842 1 0 0.0041288744677333844 0.43285221904509885 4096 2048 384 12 96 360 72 24 0 2494 1920 0 384 1 11621854856 9739888 1 0 4 3 2 3 4 5898240 4423680 3440640 4426503 5491200 150 150 150 1469 575 0 0 0 0 36 0 0 0 0 3
76 75 1783878936676789300 REFRESH 43 0 0.54754219441037111 0 1 11 1 11 1 0 1474 20 414 3988153 55680 228.490234375 1.4459 394.32080000000002 20160 13598 0 0 0.0025413004395503985 0.42294455127780806 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 11622585360 10470392 1 0 4 3 2 3 4 983040 737280 491520 737514 998400 25 25 25 264 75 0 0 0 5 15 0 0 0 0 2
77 76 1783878939150536400 DEPTH 43 1 0.5470281054508046 0 1 11 1 11 0 0 1479 34 2470 23706384 110400 1339.0623626708984 8.6274999999999995 2472.3517000000002 120960 65871 1 0 0.0025413004395503985 0.42294455127780806 4096 2048 384 12 96 360 72 24 0 2470 1920 0 384 1 11626963668 14848700 1 0 4 3 2 3 4 5898240 4423680 2949120 3934682 6489600 150 150 150 849 1171 0 0 0 0 34 0 0 0 0 0
78 77 1783878941615250700 DEPTH 43 1 0.54649018677433703 0 1 11 1 11 1 0 1482 40 2493 23699816 103680 1359.2770538330078 8.8026999999999997 2462.9962999999998 120960 55192 1 0 0.0011463520571648299 0.38931510915441858 4096 2048 384 12 96 360 72 24 0 2493 1920 0 384 1 11631365436 19250468 1 0 4 3 2 3 4 5898240 4423680 2949120 4426317 5990400 150 150 150 1307 736 0 0 0 0 40 0 0 0 0 1
79 78 1783878944147762300 DEPTH 43 1 0.5460235910913428 0 1 11 1 10 1 0 1490 57 2510 23700133 103680 1380.7924041748047 8.6821999999999999 2530.9598000000001 120960 43898 1 0 0.1191474730947204 1.0542153319768179 4096 2048 384 12 96 360 72 24 0 2510 1920 0 384 1 11635784544 23669576 1 0 4 3 2 3 4 5898240 4423680 2949120 4426537 5990400 150 150 150 1428 632 0 0 0 1 56 0 0 0 0 2
80 79 1783878946587354000 DEPTH 43 1 0.64547978206387979 0 1 10 1 10 0 0 1496 43 2554 23743103 147840 1330.8672027587891 8.6517999999999997 2438.2779999999998 80640 22450 1 0 0.1191474730947204 1.0542153319768179 4096 2048 384 12 96 360 72 24 0 2554 1920 0 384 1 11640248532 28133564 1 0 4 2 2 2 6 5898240 2949120 2949120 2950900 8985600 150 150 150 1384 720 0 0 0 0 43 0 0 0 0 0
81 80 1783878946986835000 REFRESH 43 0 0.63493825125345649 0 1 10 1 10 0 0 1507 28 410 3988981 56640 229.58285522460938 1.4335 398.13630000000001 13440 8019 0 0 0.1191474730947204 1.0542153319768179 4096 2048 64 1 16 60 12 4 0 410 320 0 64 0 11640974956 28859988 1 0 4 2 2 2 6 983040 491520 491520 491663 1497600 25 25 25 167 168 0 0 0 6 22 0 0 0 0 0
82 81 1783878949509790300 DEPTH 43 1 0.62539946171575811 0 1 10 1 10 0 0 1520 62 2537 23742888 147840 1366.5238952636719 9.3079000000000001 2520.9079999999999 80640 39923 1 0 0.1191474730947204 1.0542153319768179 4096 2048 384 12 96 360 72 24 0 2537 1920 0 384 1 11645421604 33306636 1 0 4 2 2 2 6 5898240 2949120 2949120 2950979 8985600 150 150 150 592 1495 0 0 0 0 62 0 0 0 0 0
83 82 1783878952019597500 DEPTH 43 1 0.61676381486740295 0 1 10 1 10 0 0 1524 42 2545 23742919 147840 1339.1177673339844 8.7262000000000004 2508.2460999999998 80640 32065 1 0 0.1191474730947204 1.0542153319768179 4096 2048 384 12 96 360 72 24 0 2545 1920 0 384 1 11649876412 37761444 1 0 4 2 2 2 6 5898240 2949120 2949120 2950910 8985600 150 150 150 717 1378 0 0 0 0 42 0 0 0 0 0
84 83 1783878954479808000 DEPTH 43 1 0.60894165711734449 0 1 10 1 10 0 0 1527 30 2547 23743064 147840 1345.1274261474609 8.5828999999999986 2459.0079000000001 80640 25858 1 0 0.1191474730947204 1.0542153319768179 4096 2048 384 12 96 360 72 24 0 2547 1920 0 384 1 11654333260 42218292 1 0 4 2 2 2 6 5898240 2949120 2949120 2950969 8985600 150 150 150 845 1252 0 0 0 0 30 0 0 0 0 0
85 84 1783878956811526900 DEPTH 43 1 0.60185228581743844 0 1 10 1 10 0 0 1530 38 2559 23743179 147840 1290.3475494384766 8.6285999999999987 2330.4162999999999 80640 18658 1 0 0.1191474730947204 1.0542153319768179 4096 2048 384 12 96 360 72 24 0 2559 1920 0 384 1 11658802348 46687380 1 0 4 2 2 2 6 5898240 2949120 2949120 2951001 8985600 150 150 150 1003 1106 0 0 0 0 38 0 0 0 0 0
86 85 1783878957181852100 REFRESH 43 0 0.59542305460103306 0 1 10 1 10 0 0 1532 17 416 3989074 56640 223.34873962402344 1.4483999999999999 368.98599999999999 13440 8384 0 0 0.1191474730947204 1.0542153319768179 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 11659534892 47419924 1 0 4 2 2 2 6 983040 491520 491520 491664 1497600 25 25 25 188 153 0 0 0 3 14 0 0 0 0 0
87 86 1783878959552900700 DEPTH 43 1 0.58958856817151917 0 1 10 1 10 0 0 1539 41 2551 23727704 132480 1278.8613128662109 8.5978999999999992 2369.7037 107520 52796 1 0 0.1191474730947204 1.0542153319768179 4096 2048 384 12 96 360 72 24 0 2551 1920 0 384 1 11663995820 51880852 1 0 4 3 2 2 5 5898240 3932160 2949120 2950969 7987200 150 150 153 983 1115 0 0 0 1 40 0 0 0 0 0
88 87 1783878961963747700 DEPTH 43 1 0.58428995759654501 0 1 10 1 10 0 0 1551 46 2556 23717211 121920 1317.6381683349609 8.6981999999999999 2409.5257000000001 120960 45817 1 0 0.1191474730947204 1.0542153319768179 4096 2048 384 12 96 360 72 24 0 2556 1920 0 384 1 11668461848 56346880 1 0 4 3 2 3 4 5898240 4423680 2949120 3196912 7238400 150 150 151 1450 655 0 0 0 0 46 0 0 0 0 0
89 88 1783878964276680000 DEPTH 43 1 0.57947422805800208 0 1 10 1 10 0 0 1557 40 2551 23699780 103680 1266.5642242431641 8.6010000000000009 2311.6774999999998 120960 38080 1 0 0.1191474730947204 1.0542153319768179 4096 2048 384 12 96 360 72 24 0 2551 1920 0 384 1 11672922776 60807808 1 0 4 3 2 3 4 5898240 4423680 2949120 4426445 5990400 150 150 150 1496 605 0 1 0 1 38 0 0 0 0 0
90 89 1783878966648408600 DEPTH 43 1 0.57509367181284032 0 1 10 1 10 0 0 1558 41 2555 23692204 96000 1260.3525238037109 8.587299999999999 2294.0799000000002 120960 27356 1 0 0.1191474730947204 1.0542153319768179 4096 2048 384 12 96 360 72 24 0 2555 1920 0 384 1 11677387784 65272816 1 0 4 3 3 3 3 5898240 4423680 3440640 4426491 5491200 150 150 151 1515 589 0 1 0 2 38 0 0 0 0 0
91 90 1783878967035679800 REFRESH 43 0 0.57110533984423739 0 1 10 1 10 0 0 1559 15 416 3987630 55200 224.47308349609375 1.4319 385.93119999999999 20160 12206 0 0 0.1191474730947204 1.0542153319768179 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 11678120328 66005360 1 0 4 3 3 3 3 983040 737280 737280 737512 748800 25 25 30 256 80 0 0 1 1 13 0 0 0 0 0
92 91 1783878970445765900 DEPTH 43 1 0.56747056633466975 0 1 10 1 10 0 0 1562 42 2527 23677547 81600 1288.6702117919922 8.6029999999999998 3408.7613999999999 120960 59871 1 0 0.1191474730947204 1.0542153319768179 4096 2048 384 12 96 360 72 24 0 2527 1920 0 384 1 11682556856 3333904 1 0 4 3 3 3 3 5898240 4423680 4423680 4426383 4492800 150 150 178 1310 739 2 0 1 0 39 0 0 0 0 0
93 92 1783878972776542200 DEPTH 43 1 0.56415454067924109 0 1 10 1 10 0 0 1564 29 2526 23677667 81600 1283.7108917236328 8.7163000000000004 2329.5792000000001 120960 48690 1 0 0.1191474730947204 1.0542153319768179 4096 2048 384 12 96 360 72 24 0 2526 1920 0 384 1 11686992284 7769332 1 0 4 3 3 3 3 5898240 4423680 4423680 4426424 4492800 150 150 189 1406 631 0 0 0 0 29 0 0 0 0 0
94 93 1783878975082125200 DEPTH 43 1 0.56112592228577318 0 1 10 1 10 0 0 1567 37 2542 23677757 81600 1278.3144378662109 8.6022999999999996 2304.3733000000002 120960 38907 1 0 0.1191474730947204 1.0542153319768179 4096 2048 384 12 96 360 72 24 0 2542 1920 0 384 1 11691444032 12221080 1 0 4 3 3 3 3 5898240 4423680 4423680 4426548 4492800 150 150 200 1436 606 0 1 0 0 36 0 0 0 0 0
95 94 1783878977381206600 DEPTH 43 1 0.55835649388348085 0 1 10 1 10 0 0 1569 31 2540 23677709 81600 1274.9003143310547 8.5883000000000003 2297.8177000000001 120960 27230 1 0 0.1191474730947204 1.0542153319768179 4096 2048 384 12 96 360 72 24 0 2540 1920 0 384 1 11695893740 16670788 1 0 4 3 3 3 3 5898240 4423680 4423680 4426395 4492800 150 150 202 1421 617 0 1 0 0 30 0 0 0 0 0
96 95 1783878977780025000 REFRESH 43 0 0.55582084948985078 0 1 10 1 10 0 0 1569 6 418 3987664 55200 223.30470275878906 1.4301999999999999 397.55380000000002 20160 11942 0 0 0.1191474730947204 1.0542153319768179 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 11696628324 17405372 1 0 4 3 3 3 3 983040 737280 737280 737511 748800 25 25 42 252 74 0 0 0 0 6 0 0 0 0 0
97 96 1783878980117467700 DEPTH 43 1 0.54949611357035999 0 1 10 1 10 0 0 1572 37 2536 23677921 81600 1291.4363098144531 8.5772999999999993 2336.2873 120960 56577 1 0 0.1191474730947204 1.0542153319768179 4096 2048 384 12 96 360 72 24 0 2536 1920 0 384 1 11701073952 21851000 1 0 4 3 3 3 3 5898240 4423680 4423680 4426375 4492800 150 150 210 1409 617 2 0 0 0 35 0 0 0 0 0
98 97 1783878982457876400 DEPTH 43 1 0.54776168827218119 0 1 10 1 10 0 0 1577 35 2547 23677826 81600 1281.2757415771484 8.5829000000000004 2339.1522 120960 45996 1 0 0.1191474730947204 1.0542153319768179 4096 2048 384 12 96 360 72 24 0 2547 1920 0 384 1 11705530800 26307848 1 0 4 3 3 3 3 5898240 4423680 4423680 4426471 4492800 150 150 221 1439 587 0 0 0 0 35 0 0 0 0 0
99 98 1783878984800360600 DEPTH 43 1 0.54615902592489318 0 1 10 1 10 0 0 1588 51 2541 23677816 81600 1278.6626434326172 8.5764999999999993 2341.1949 120960 36897 1 0 0.1191474730947204 1.0542153319768179 4096 2048 384 12 96 360 72 24 0 2541 1920 0 384 1 11709981528 30758576 1 0 4 3 3 3 3 5898240 4423680 4423680 4426437 4492800 150 150 223 1461 557 2 0 2 0 47 0 0 0 0 0
100 99 1783878987109025400 DEPTH 43 1 0.54467542428188587 0 1 10 1 10 0 0 1597 44 2537 23677903 81600 1277.0729370117188 8.5906000000000002 2307.4677000000001 120960 25615 1 0 0.1191474730947204 1.0542153319768179 4096 2048 384 12 96 360 72 24 0 2537 1920 0 384 1 11714428176 35205224 1 0 4 3 3 3 3 5898240 4423680 4423680 4426477 4492800 150 150 240 1459 538 0 0 0 0 44 0 0 0 0 0
101 100 1783878987505891900 REFRESH 43 0 0.54329944222877125 0 1 10 1 10 0 0 1598 11 424 3987690 55200 223.80032348632812 1.4345000000000001 395.52280000000002 20160 12214 0 0 0.1191474730947204 1.0542153319768179 4096 2048 64 1 16 60 12 4 0 424 320 0 64 0 11715168880 35945928 1 0 4 3 3 3 3 983040 737280 737280 737535 748800 25 25 53 240 81 0 0 0 0 11 0 0 0 0 0
102 101 1783878989843333200 DEPTH 43 1 0.54202077391245473 0 1 10 1 10 0 0 1600 40 2546 23677922 81600 1291.0236663818359 8.6164000000000005 2336.2503999999999 120960 57741 1 0 0.1191474730947204 1.0542153319768179 4096 2048 384 12 96 360 72 24 0 2546 1920 0 384 1 11719624708 40401756 1 0 4 3 3 3 3 5898240 4423680 4423680 4426379 4492800 150 150 278 1390 578 0 0 0 0 40 0 0 0 0 0
103 102 1783878992164427000 DEPTH 43 1 0.5408301354491446 0 1 10 1 10 0 0 1606 27 2544 23678087 81600 1284.4475555419922 8.5729000000000006 2319.9254000000001 120960 47588 1 0 0.1191474730947204 1.0542153319768179 4096 2048 384 12 96 360 72 24 0 2544 1920 0 384 1 11724078496 44855544 1 0 4 3 3 3 3 5898240 4423680 4423680 4426459 4492800 150 150 276 1397 571 2 0 0 0 25 0 0 0 0 0
104 103 1783878994491264800 DEPTH 43 1 0.53971916295373268 0 1 10 1 10 0 0 1611 31 2547 23677920 81600 1279.0053863525391 8.8504000000000005 2325.6325000000002 120960 37474 1 0 0.1191474730947204 1.0542153319768179 4096 2048 384 12 96 360 72 24 0 2547 1920 0 384 1 11728535344 49312392 1 0 4 3 3 3 3 5898240 4423680 4423680 4426430 4492800 150 150 264 1430 553 0 0 2 0 29 0 0 0 0 0
105 104 1783878996878256000 DEPTH 43 1 0.53868032075871963 0 1 10 1 10 0 0 1613 43 2536 23677962 81600 1275.8804473876953 8.5842000000000009 2312.6104999999998 120960 25675 1 0 0.1191474730947204 1.0542153319768179 4096 2048 384 12 96 360 72 24 0 2536 1920 0 384 1 11732980972 53758020 1 0 4 3 3 3 3 5898240 4423680 4423680 4426462 4492800 150 150 255 1451 530 2 0 0 0 41 0 0 0 0 0
106 105 1783878997274952500 REFRESH 43 0 0.53770681880402882 0 1 10 1 10 0 0 1614 10 421 3987673 55200 224.611328125 1.4266000000000001 395.49860000000001 20160 12289 0 0 0.1191474730947204 1.0542153319768179 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 11733718616 54495664 1 0 4 3 3 3 3 983040 737280 737280 737499 748800 25 25 58 233 80 1 0 0 0 9 0 0 0 0 0
107 106 1783878999614508200 DEPTH 43 1 0.53679253828090467 0 1 10 1 10 0 0 1615 33 2538 23678016 81600 1292.322021484375 8.5855999999999995 2338.2993000000001 120960 59271 1 0 0.1191474730947204 1.0542153319768179 4096 2048 384 12 96 360 72 24 0 2538 1920 0 384 1 11738166284 58943332 1 0 4 3 3 3 3 5898240 4423680 4423680 4426470 4492800 150 150 298 1396 544 0 0 0 0 33 0 0 0 0 0
108 107 1783879001935658500 DEPTH 43 1 0.53593196470475624 0 1 10 1 10 1 0 1622 42 2538 23677944 81600 1282.4883117675781 8.5855000000000015 2319.8773999999999 120960 47990 1 0 0.17599883130959393 0.89364042994081905 4096 2048 384 12 96 360 72 24 0 2538 1920 0 384 1 11742613952 63391000 1 0 4 3 3 3 3 5898240 4423680 4423680 4426333 4492800 150 150 278 1424 536 0 0 0 0 42 0 0 0 0 1
109 108 1783879005325031100 DEPTH 43 1 0.53615881116732922 0 1 10 1 10 0 0 1630 41 2555 23678104 81600 1282.13525390625 8.5946999999999996 3388.1266000000001 120960 38447 1 0 0.17599883130959393 0.89364042994081905 4096 2048 384 12 96 360 72 24 0 2555 1920 0 384 1 11747079040 747748 1 0 4 3 3 3 3 5898240 4423680 4423680 4426440 4492800 150 150 257 1472 526 2 0 0 0 39 0 0 0 0 0
110 109 1783879007642279600 DEPTH 43 1 0.53528736179242398 0 1 10 1 10 0 0 1635 31 2555 23678078 81600 1275.2089233398438 8.5862999999999996 2315.9549999999999 120960 26373 1 0 0.17599883130959393 0.89364042994081905 4096 2048 384 12 96 360 72 24 0 2555 1920 0 384 1 11751544048 5212756 1 0 4 3 3 3 3 5898240 4423680 4423680 4426482 4492800 150 150 246 1477 532 2 0 0 0 29 0 0 0 0 0
111 110 1783879008036380000 REFRESH 43 0 0.53446651577028059 0 1 10 1 10 0 0 1637 12 423 3987714 55200 224.28364562988281 1.4311 392.77749999999997 20160 12597 0 0 0.17599883130959393 0.89364042994081905 4096 2048 64 1 16 60 12 4 0 423 320 0 64 0 11752283732 5952440 1 0 4 3 3 3 3 983040 737280 737280 737522 748800 25 25 60 237 76 0 0 0 0 12 0 0 0 0 0
112 111 1783879010373123400 DEPTH 43 1 0.53369159205267358 0 1 10 1 10 0 0 1642 28 2561 23678107 81600 1292.8543853759766 8.6811000000000007 2335.4641999999999 120960 60755 1 0 0.17599883130959393 0.89364042994081905 4096 2048 384 12 96 360 72 24 0 2561 1920 0 384 1 11756754860 10423568 1 0 4 3 3 3 3 5898240 4423680 4423680 4426470 4492800 150 150 335 1391 535 0 0 1 0 27 0 0 0 0 0
113 112 1783879012691385000 DEPTH 43 1 0.53295837103809807 0 1 10 1 10 0 0 1647 33 2567 23678103 81600 1286.2289886474609 8.5840000000000014 2316.9969999999998 120960 49471 1 0 0.17599883130959393 0.89364042994081905 4096 2048 384 12 96 360 72 24 0 2567 1920 0 384 1 11761232108 14900816 1 0 4 3 3 3 3 5898240 4423680 4423680 4426463 4492800 150 150 307 1420 540 0 0 0 3 30 0 0 0 0 0
114 113 1783879015005445300 DEPTH 43 1 0.53226304859015228 0 1 10 1 10 0 0 1650 38 2554 23678089 81600 1279.2105255126953 8.5761999999999983 2312.4974999999999 120960 39741 1 0 0.17599883130959393 0.89364042994081905 4096 2048 384 12 96 360 72 24 0 2554 1920 0 384 1 11765696096 19364804 1 0 4 3 3 3 3 5898240 4423680 4423680 4426408 4492800 150 150 284 1456 514 1 0 0 2 35 0 0 0 0 0
115 114 1783879017317244800 DEPTH 43 1 0.53160219464900793 0 1 10 1 10 0 0 1656 37 2561 23678156 81600 1279.0610046386719 8.5890000000000004 2310.3058999999998 120960 27313 1 0 0.17599883130959393 0.89364042994081905 4096 2048 384 12 96 360 72 24 0 2561 1920 0 384 1 11770167224 23835932 1 0 4 3 3 3 3 5898240 4423680 4423680 4426403 4492800 150 150 270 1481 510 1 1 0 0 35 0 0 0 0 0
116 115 1783879017714254400 REFRESH 43 0 0.53097271597685192 0 1 10 1 10 0 0 1657 13 419 3987709 55200 224.81304931640625 1.4341999999999999 395.48140000000001 20160 13015 0 0 0.17599883130959393 0.89364042994081905 4096 2048 64 1 16 60 12 4 0 419 320 0 64 0 11770902828 24571536 1 0 4 3 3 3 3 983040 737280 737280 737502 748800 25 25 70 226 73 0 0 0 0 13 0 0 0 0 0
117 116 1783879020098546700 DEPTH 43 1 0.53037182262407945 0 1 10 1 10 0 0 1665 32 2562 23678187 81600 1291.4985198974609 8.6755000000000013 2383.0088000000001 120960 62661 1 0 0.17599883130959393 0.89364042994081905 4096 2048 384 12 96 360 72 24 0 2562 1920 0 384 1 11775374976 29043684 1 0 4 3 3 3 3 5898240 4423680 4423680 4426478 4492800 150 150 365 1383 514 0 0 0 0 32 0 0 0 0 0
118 117 1783879022427209800 DEPTH 43 1 0.52979699774434197 0 1 10 1 10 0 0 1671 48 2557 23678194 81600 1285.3186492919922 8.5985999999999994 2327.3406 120960 52150 1 0 0.17599883130959393 0.89364042994081905 4096 2048 384 12 96 360 72 24 0 2557 1920 0 384 1 11779842024 33510732 1 0 4 3 3 3 3 5898240 4423680 4423680 4426464 4492800 150 150 317 1433 507 0 0 0 2 46 0 0 0 0 0
119 118 1783879024757153700 DEPTH 43 1 0.52924597042372534 0 1 10 1 10 0 0 1673 33 2548 23678213 81600 1282.1678161621094 8.5968999999999998 2328.7822000000001 120960 41228 1 0 0.17599883130959393 0.89364042994081905 4096 2048 384 12 96 360 72 24 0 2548 1920 0 384 1 11784299892 37968600 1 0 4 3 3 3 3 5898240 4423680 4423680 4426470 4492800 150 150 281 1467 500 1 0 0 0 32 0 0 0 0 0
120 119 1783879027147919300 DEPTH 43 1 0.52871669122280862 0 1 10 1 10 0 0 1678 37 2555 23678222 81600 1279.6540374755859 8.5866000000000007 2317.7336 120960 28356 1 0 0.17599883130959393 0.89364042994081905 4096 2048 384 12 96 360 72 24 0 2555 1920 0 384 1 11788764900 42433608 1 0 4 3 3 3 3 5898240 4423680 4423680 4426455 4492800 150 150 265 1489 501 0 0 0 0 37 0 0 0 0 0
121 120 1783879027546428400 REFRESH 43 0 0.52820731016046474 0 1 10 1 10 0 0 1680 14 420 3987773 55200 223.77369689941406 1.4319999999999999 397.2287 20160 13361 0 0 0.17599883130959393 0.89364042994081905 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 11789501524 43170232 1 0 4 3 3 3 3 983040 737280 737280 737537 748800 25 25 75 221 74 0 0 0 1 13 0 0 0 0 0
122 121 1783879029879781000 DEPTH 43 1 0.52771615689537565 0 1 10 1 10 0 0 1685 33 2563 23678313 81600 1295.7983245849609 8.6021000000000001 2332.2035000000001 120960 64625 1 0 0.17599883130959393 0.89364042994081905 4096 2048 384 12 96 360 72 24 0 2563 1920 0 384 1 11793974692 47643400 1 0 4 3 3 3 3 5898240 4423680 4423680 4426495 4492800 150 150 384 1376 503 0 0 0 2 31 0 0 0 0 0
123 122 1783879032192157800 DEPTH 43 1 0.52724172288563165 0 1 10 1 10 0 0 1690 38 2559 23678277 81600 1285.9655456542969 8.5766999999999989 2311.1577000000002 120960 53941 1 0 0.17599883130959393 0.89364042994081905 4096 2048 384 12 96 360 72 24 0 2559 1920 0 384 1 11798443780 52112488 1 0 4 3 3 3 3 5898240 4423680 4423680 4426491 4492800 150 150 309 1443 507 0 0 0 3 35 0 0 0 0 0
124 123 1783879034501797600 DEPTH 43 1 0.52678264532873909 0 1 10 1 10 0 0 1697 28 2559 23678113 81600 1280.8976593017578 8.5754999999999999 2308.377 120960 42638 1 0 0.17599883130959393 0.89364042994081905 4096 2048 384 12 96 360 72 24 0 2559 1920 0 384 1 11802912868 56581576 1 0 4 3 3 3 3 5898240 4423680 4423680 4426323 4492800 150 150 279 1481 499 0 0 0 0 28 0 0 0 0 0
125 124 1783879036804735000 DEPTH 43 1 0.52633769270412334 0 1 10 1 10 0 0 1700 37 2563 23678310 81600 1279.7805633544922 8.5898000000000003 2301.7202000000002 120960 29592 1 0 0.17599883130959393 0.89364042994081905 4096 2048 384 12 96 360 72 24 0 2563 1920 0 384 1 11807386036 61054744 1 0 4 3 3 3 3 5898240 4423680 4423680 4426475 4492800 150 150 266 1486 511 0 0 0 2 35 0 0 0 0 0
126 125 1783879037199862700 REFRESH 43 0 0.52590575175800436 0 1 10 1 10 0 0 1701 9 421 3987735 55200 225.57490539550781 1.4259999999999999 393.98379999999997 20160 13292 0 0 0.17599883130959393 0.89364042994081905 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 11808123680 61792388 1 0 4 3 3 3 3 983040 737280 737280 737510 748800 25 25 77 220 74 0 0 0 1 8 0 0 0 0 0
127 126 1783879039544778900 DEPTH 43 1 0.52448581578652109 0 1 10 1 10 0 0 1706 20 2576 23678251 81600 1294.6941528320312 8.6157000000000004 2343.6604000000002 120960 65786 1 0 0.17599883130959393 0.89364042994081905 4096 2048 384 12 96 360 72 24 0 2576 1920 0 384 1 11812610108 66278816 1 0 4 3 3 3 3 5898240 4423680 4423680 4426420 4492800 150 150 366 1411 499 0 0 0 1 19 0 0 0 0 0
128 127 1783879042966406900 DEPTH 43 1 0.52417697408739727 0 1 10 1 10 0 0 1707 29 2570 23678365 81600 1287.4795227050781 8.5967000000000002 3420.2975000000001 120960 54464 1 0 0.17599883130959393 0.89364042994081905 4096 2048 384 12 96 360 72 24 0 2570 1920 0 384 1 11817090496 3650564 1 0 4 3 3 3 3 5898240 4423680 4423680 4426516 4492800 150 150 298 1477 495 0 0 0 0 29 0 0 0 0 0
129 128 1783879045274817600 DEPTH 43 1 0.52386840246340116 0 1 10 1 10 0 0 1711 25 2577 23678330 81600 1283.753662109375 8.5963000000000012 2307.2606000000001 120960 42682 1 0 0.17599883130959393 0.89364042994081905 4096 2048 384 12 96 360 72 24 0 2577 1920 0 384 1 11821577944 8138012 1 0 4 3 3 3 3 5898240 4423680 4423680 4426513 4492800 150 150 278 1487 512 0 0 0 3 22 0 0 0 0 0
130 129 1783879047586164700 DEPTH 43 1 0.52356035467252426 0 1 10 1 10 0 0 1713 29 2569 23678291 81600 1277.8242645263672 8.5853999999999999 2310.1646999999998 120960 29255 1 0 0.17599883130959393 0.89364042994081905 4096 2048 384 12 96 360 72 24 0 2569 1920 0 384 1 11826057232 12617300 1 0 4 3 3 3 3 5898240 4423680 4423680 4426439 4492800 150 150 276 1491 502 0 0 0 2 27 0 0 0 0 0
131 130 1783879047977397000 REFRESH 43 0 0.52325305473030925 0 1 10 1 10 0 0 1713 8 419 3987785 55200 225.185791015625 1.4301999999999999 389.96339999999998 20160 13501 0 0 0.17599883130959393 0.89364042994081905 4096 2048 64 1 16 60 12 4 0 419 320 0 64 0 11826792836 13352904 1 0 4 3 3 3 3 983040 737280 737280 737526 748800 25 25 75 221 73 0 0 0 1 7 0 0 0 0 0
132 131 1783879050316157300 DEPTH 43 1 0.52094669997920595 0 1 10 1 10 0 0 1717 34 2568 23678223 81600 1296.8812866210938 8.5839999999999996 2337.5077000000001 120960 65752 1 0 0.17599883130959393 0.89364042994081905 4096 2048 384 12 96 360 72 24 0 2568 1920 0 384 1 11831271104 17831172 1 0 4 3 3 3 3 5898240 4423680 4423680 4426365 4492800 150 150 374 1390 504 1 0 0 2 31 0 0 0 0 0
133 132 1783879052655695300 DEPTH 43 1 0.52084146384834762 0 1 10 1 10 0 0 1718 30 2557 23678378 81600 1284.7380676269531 8.6393000000000004 2338.3229999999999 120960 54819 1 0 0.17599883130959393 0.89364042994081905 4096 2048 384 12 96 360 72 24 0 2557 1920 0 384 1 11835738152 22298220 1 0 4 3 3 3 3 5898240 4423680 4423680 4426523 4492800 150 150 321 1431 505 0 0 0 0 30 0 0 0 0 0
134 133 1783879054972730400 DEPTH 43 1 0.52071749833479264 0 1 10 1 10 0 0 1722 34 2567 23678282 81600 1281.986572265625 8.5961999999999996 2315.7979 120960 43886 1 0 0.17599883130959393 0.89364042994081905 4096 2048 384 12 96 360 72 24 0 2567 1920 0 384 1 11840215400 26775468 1 0 4 3 3 3 3 5898240 4423680 4423680 4426423 4492800 150 150 289 1462 516 0 0 0 0 34 0 0 0 0 0
135 134 1783879057357186400 DEPTH 43 1 0.5205769362341709 0 1 10 1 10 0 0 1724 24 2575 23678211 81600 1279.6989440917969 8.5820000000000007 2311.5857999999998 120960 30146 1 0 0.17599883130959393 0.89364042994081905 4096 2048 384 12 96 360 72 24 0 2575 1920 0 384 1 11844700808 31260876 1 0 4 3 3 3 3 5898240 4423680 4423680 4426384 4492800 150 150 283 1497 495 0 0 0 0 24 0 0 0 0 0
136 135 1783879057757523500 REFRESH 43 0 0.52042169314587683 0 1 10 1 10 0 0 1725 6 420 3987767 55200 224.51609802246094 1.4327000000000001 399.12979999999999 20160 13407 0 0 0.17599883130959393 0.89364042994081905 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 11845437432 31997500 1 0 4 3 3 3 3 983040 737280 737280 737534 748800 25 25 79 217 74 0 0 0 0 6 0 0 0 0 0
137 136 1783879060068476200 DEPTH 43 1 0.51625348927543346 0 1 10 1 10 0 0 1729 34 2580 23678338 81600 1294.7351989746094 8.5744000000000007 2309.8386 120960 65614 1 0 0.17599883130959393 0.89364042994081905 4096 2048 384 12 96 360 72 24 0 2580 1920 0 384 1 11849927940 36488008 1 0 4 3 3 3 3 5898240 4423680 4423680 4426431 4492800 150 150 387 1363 530 0 0 0 0 34 0 0 0 0 0
138 137 1783879062384769500 DEPTH 43 1 0.51647386905438541 0 1 10 1 10 0 0 1734 46 2576 23678306 81600 1287.436279296875 8.5853000000000002 2315.0475000000001 120960 54467 1 0 0.17599883130959393 0.89364042994081905 4096 2048 384 12 96 360 72 24 0 2576 1920 0 384 1 11854414368 40974436 1 0 4 3 3 3 3 5898240 4423680 4423680 4426444 4492800 150 150 342 1416 518 0 0 0 1 45 0 0 0 0 0
139 138 1783879064707258900 DEPTH 43 1 0.51664421879604194 0 1 10 1 10 0 0 1736 32 2567 23678280 81600 1281.9650421142578 8.5765999999999991 2321.2746999999999 120960 43930 1 0 0.17599883130959393 0.89364042994081905 4096 2048 384 12 96 360 72 24 0 2567 1920 0 384 1 11858891616 45451684 1 0 4 3 3 3 3 5898240 4423680 4423680 4426428 4492800 150 150 292 1462 513 0 0 0 0 32 0 0 0 0 0
140 139 1783879066992505500 DEPTH 43 1 0.51676978258355444 0 1 10 1 10 0 0 1739 31 2556 23678407 81600 1279.4337310791016 8.5746000000000002 2284.1062999999999 120960 29588 1 0 0.17599883130959393 0.89364042994081905 4096 2048 384 12 96 360 72 24 0 2556 1920 0 384 1 11863357644 49917712 1 0 4 3 3 3 3 5898240 4423680 4423680 4426527 4492800 150 150 280 1478 498 0 0 0 0 31 0 0 0 0 0
141 140 1783879067389249900 REFRESH 43 0 0.51685527656716301 0 1 10 1 10 0 0 1739 10 420 3987751 55200 225.85856628417969 1.4322999999999999 395.42809999999997 20160 13451 0 0 0.17599883130959393 0.89364042994081905 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 11864094268 50654336 1 0 4 3 3 3 3 983040 737280 737280 737491 748800 25 25 80 214 76 0 0 0 0 10 0 0 0 0 0
142 141 1783879069733451300 DEPTH 43 1 0.51690494182975988 0 1 10 1 10 0 0 1741 19 2580 23678277 81600 1296.1902770996094 8.5747999999999998 2342.8535000000002 120960 65530 1 0 0.17599883130959393 0.89364042994081905 4096 2048 384 12 96 360 72 24 0 2580 1920 0 384 1 11868584776 55144844 1 0 4 3 3 3 3 5898240 4423680 4423680 4426415 4492800 150 150 394 1385 501 0 0 0 0 19 0 0 0 0 0
143 142 1783879072060354700 DEPTH 43 1 0.51692259196400037 0 1 10 1 10 0 0 1744 26 2573 23678388 81600 1286.4255981445312 8.5835000000000008 2325.7431000000001 120960 55158 1 0 0.17599883130959393 0.89364042994081905 4096 2048 384 12 96 360 72 24 0 2573 1920 0 384 1 11873068144 59628212 1 0 4 3 3 3 3 5898240 4423680 4423680 4426472 4492800 150 150 341 1428 504 0 0 0 0 26 0 0 0 0 0
144 143 1783879074395548400 DEPTH 43 1 0.51691165588986776 0 1 10 1 10 1 0 1749 23 2586 23678862 81600 1284.5660095214844 8.5694999999999997 2333.9141 120960 44245 1 0 0.0099482089504120911 0.66186994104773156 4096 2048 384 12 96 360 72 24 0 2586 1920 0 384 1 11877564772 64124840 1 0 4 3 2 4 3 5898240 4423680 3440640 5410037 4492800 150 150 309 1471 506 0 0 0 3 20 0 0 0 3 1
145 144 1783879077774159200 DEPTH 43 1 0.52244625793254706 0 1 10 1 10 1 0 1752 34 2598 23679242 81600 1283.8403778076172 8.6057000000000006 3377.3964000000001 120960 30372 1 0 0.0026593134490549885 0.92730186089020639 4096 2048 384 12 96 360 72 24 0 2598 1920 0 384 1 11882073720 1525360 1 0 4 3 2 4 3 5898240 4423680 2949120 5902008 4492800 150 150 203 1571 524 0 0 0 1 33 0 0 0 1 0
146 145 1783879078167972500 REFRESH 43 0 0.5220454032671038 0 1 10 1 10 0 0 1753 11 422 3987778 55200 224.56524658203125 1.4277 392.62619999999998 20160 13482 0 0 0.0026593134490549885 0.92730186089020639 4096 2048 64 1 16 60 12 4 0 422 320 0 64 0 11882812384 2264024 1 0 4 3 2 4 3 983040 737280 491520 983345 748800 25 25 25 269 78 0 0 0 0 11 0 0 0 0 0
147 146 1783879080489099300 DEPTH 43 1 0.52144305477780684 0 1 10 1 10 0 0 1754 25 2591 23678977 81600 1296.7731781005859 8.5739000000000001 2319.9061000000002 120960 65539 1 0 0.0026593134490549885 0.92730186089020639 4096 2048 384 12 96 360 72 24 0 2591 1920 0 384 1 11887314112 6765752 1 0 4 3 2 4 3 5898240 4423680 2949120 5901992 4492800 150 150 150 1616 525 0 0 0 0 25 0 0 0 0 0
148 147 1783879082789092300 DEPTH 43 1 0.5208749977467757 0 1 10 1 10 0 0 1758 20 2585 23677945 81600 1287.181396484375 8.7744 2298.6711 120960 54731 1 0 0.0026593134490549885 0.92730186089020639 4096 2048 384 12 96 360 72 24 0 2585 1920 0 384 1 11891809720 11261360 1 0 4 3 3 3 3 5898240 4423680 4423680 4426398 4492800 150 150 150 1607 528 0 0 0 0 20 0 0 0 0 0
149 148 1783879085073331400 DEPTH 43 1 0.52033801483610764 0 1 10 1 10 0 0 1759 29 2581 23678069 81600 1282.2661285400391 8.6158999999999999 2282.9056 120960 42794 1 0 0.0026593134490549885 0.92730186089020639 4096 2048 384 12 96 360 72 24 0 2581 1920 0 384 1 11896301248 15752888 1 0 4 3 3 3 3 5898240 4423680 4423680 4426447 4492800 150 150 150 1618 513 0 0 0 0 29 0 0 0 0 0
150 149 1783879087465538600 DEPTH 43 1 0.51982920750408401 0 1 10 1 10 0 0 1763 29 2582 23678187 81600 1280.7227478027344 8.595600000000001 2320.8051999999998 120960 29482 1 0 0.0026593134490549885 0.92730186089020639 4096 2048 384 12 96 360 72 24 0 2582 1920 0 384 1 11900793796 20245436 1 0 4 3 3 3 3 5898240 4423680 4423680 4426505 4492800 150 150 150 1604 528 0 0 0 0 29 0 0 0 0 0
151 150 1783879087848923600 REFRESH 43 0 0.51934596418275403 0 1 10 1 10 0 0 1763 5 420 3987705 55200 224.12185668945312 1.4277 382.01409999999998 20160 13534 0 0 0.0026593134490549885 0.92730186089020639 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 11901530420 20982060 1 0 4 3 3 3 3 983040 737280 737280 737516 748800 25 25 25 271 74 0 0 0 0 5 0 0 0 0 0
152 151 1783879090166961400 DEPTH 43 1 0.51388593163633201 0 1 10 1 10 1 0 1763 16 2586 23677978 81600 1293.5442199707031 8.5809999999999995 2316.8831 120960 65880 1 0 0.0026591728994746554 0.83339662802986914 4096 2048 384 12 96 360 72 24 0 2586 1920 0 384 1 11906027048 25478688 1 0 4 3 3 3 3 5898240 4423680 4423680 4426424 4492800 150 150 150 1608 528 0 0 0 0 16 0 0 0 0 1
153 152 1783879092471483400 DEPTH 43 1 0.51398073205613959 0 1 10 1 10 1 0 1763 19 2586 23677999 81600 1287.1167907714844 8.5791000000000004 2303.386 120960 54960 1 0 0.01232804816409586 0.656193647820139 4096 2048 384 12 96 360 72 24 0 2586 1920 0 384 1 11910523676 29975316 1 0 4 3 3 3 3 5898240 4423680 4423680 4426402 4492800 150 150 150 1621 515 0 0 0 2 17 0 0 0 0 1
154 153 1783879094772289700 DEPTH 43 1 0.51432724683510078 0 1 10 1 10 0 0 1766 23 2592 23678001 81600 1283.0167083740234 8.588099999999999 2299.567 120960 43902 1 0 0.01232804816409586 0.656193647820139 4096 2048 384 12 96 360 72 24 0 2592 1920 0 384 1 11915026424 34478064 1 0 4 3 3 3 3 5898240 4423680 4423680 4426418 4492800 150 150 150 1630 512 0 0 0 0 23 0 0 0 0 0
155 154 1783879097075022500 DEPTH 43 1 0.51429493690503558 0 1 10 1 10 0 0 1773 32 2598 23678065 81600 1280.8468322753906 8.5906000000000002 2301.4432000000002 120960 29983 1 0 0.01232804816409586 0.656193647820139 4096 2048 384 12 96 360 72 24 0 2598 1920 0 384 1 11919535292 38986932 1 0 4 3 3 3 3 5898240 4423680 4423680 4426387 4492800 150 150 150 1633 515 0 0 0 0 32 0 0 0 0 0
156 155 1783879097460878600 REFRESH 43 0 0.51424152989352889 0 1 10 1 10 0 0 1773 10 416 3987746 55200 225.22572326660156 1.4313 384.53620000000001 20160 13552 0 0 0.01232804816409586 0.656193647820139 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 11920267836 39719476 1 0 4 3 3 3 3 983040 737280 737280 737517 748800 25 25 25 269 72 0 0 0 0 10 0 0 0 0 0
157 156 1783879099770141300 DEPTH 43 1 0.51416932534048565 0 1 10 1 10 0 0 1780 30 2584 23678115 81600 1293.7182312011719 8.5721999999999987 2308.1343999999999 120960 65872 1 0 0.01232804816409586 0.656193647820139 4096 2048 384 12 96 360 72 24 0 2584 1920 0 384 1 11924762424 44214064 1 0 4 3 3 3 3 5898240 4423680 4423680 4426446 4492800 150 150 150 1599 535 0 0 0 2 28 0 0 0 0 0
158 157 1783879102069633200 DEPTH 43 1 0.51408039031419173 0 1 10 1 10 0 0 1784 42 2575 23678020 81600 1287.2396697998047 8.5804000000000009 2298.2501000000002 120960 54644 1 0 0.01232804816409586 0.656193647820139 4096 2048 384 12 96 360 72 24 0 2575 1920 0 384 1 11929247832 48699472 1 0 4 3 3 3 3 5898240 4423680 4423680 4426379 4492800 150 150 150 1587 538 0 0 0 0 42 0 0 0 0 0
159 158 1783879104365324700 DEPTH 43 1 0.51397658270539093 0 1 10 1 10 0 0 1791 37 2580 23678178 81600 1283.3392639160156 8.5983000000000001 2294.4661999999998 120960 43813 1 0 0.01232804816409586 0.656193647820139 4096 2048 384 12 96 360 72 24 0 2580 1920 0 384 1 11933738340 53189980 1 0 4 3 3 3 3 5898240 4423680 4423680 4426501 4492800 150 150 150 1600 530 0 0 0 2 35 0 0 0 0 0
160 159 1783879106649500700 DEPTH 43 1 0.51385957219083234 0 1 10 1 10 0 0 1793 25 2565 23678056 81600 1282.3543548583984 8.5829000000000004 2282.9549000000002 120960 29883 1 0 0.01232804816409586 0.656193647820139 4096 2048 384 12 96 360 72 24 0 2565 1920 0 384 1 11938213548 57665188 1 0 4 3 3 3 3 5898240 4423680 4423680 4426390 4492800 150 150 150 1569 546 0 0 0 0 25 0 0 0 0 0
161 160 1783879107045220400 REFRESH 43 0 0.51373085909937588 0 1 10 1 10 0 0 1793 7 418 3987699 55200 224.90118408203125 1.4338 394.38549999999998 20160 13336 0 0 0.01232804816409586 0.656193647820139 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 11938948132 58399772 1 0 4 3 3 3 3 983040 737280 737280 737484 748800 25 25 25 271 72 0 0 0 0 7 0 0 0 0 0
162 161 1783879109362106900 DEPTH 43 1 0.51059179139042943 0 1 10 1 10 0 0 1793 25 2583 23678148 81600 1300.2751922607422 8.8521000000000001 2315.6293999999998 120960 65816 1 0 0.01232804816409586 0.656193647820139 4096 2048 384 12 96 360 72 24 0 2583 1920 0 384 1 11943441700 62893340 1 0 4 3 3 3 3 5898240 4423680 4423680 4426387 4492800 150 150 150 1604 529 0 0 0 0 25 0 0 0 0 0
163 162 1783879112735664400 DEPTH 43 1 0.5107435799335156 0 1 10 1 10 0 0 1795 27 2587 23678214 81600 1287.9953765869141 8.5760000000000005 3372.4301 120960 54529 1 0 0.01232804816409586 0.656193647820139 4096 2048 384 12 96 360 72 24 0 2587 1920 0 384 1 11947939428 282348 1 0 4 3 3 3 3 5898240 4423680 4423680 4426503 4492800 150 150 150 1614 523 0 0 0 1 26 0 0 0 0 0
164 163 1783879115032109200 DEPTH 43 1 0.5108573122588852 0 1 10 1 10 0 0 1797 26 2589 23678000 81600 1282.5765991210938 8.6156000000000006 2295.3150999999998 120960 43995 1 0 0.01232804816409586 0.656193647820139 4096 2048 384 12 96 360 72 24 0 2589 1920 0 384 1 11952439116 4782036 1 0 4 3 3 3 3 5898240 4423680 4423680 4426326 4492800 150 150 150 1615 524 0 0 0 0 26 0 0 0 0 0
165 164 1783879117334409600 DEPTH 43 1 0.51093696493209961 0 1 10 1 10 0 0 1804 24 2593 23678153 81600 1281.8074035644531 8.5792000000000002 2301.1439999999998 120960 30010 1 0 0.01232804816409586 0.656193647820139 4096 2048 384 12 96 360 72 24 0 2593 1920 0 384 1 11956942884 9285804 1 0 4 3 3 3 3 5898240 4423680 4423680 4426427 4492800 150 150 150 1623 520 0 0 0 0 24 0 0 0 0 0
166 165 1783879117788007400 REFRESH 43 0 0.51098611469021382 0 1 10 1 10 0 0 1805 7 420 3987743 55200 224.66047668457031 1.4357 388.46260000000001 20160 13421 0 0 0.01232804816409586 0.656193647820139 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 11957679508 10022428 1 0 4 3 3 3 3 983040 737280 737280 737518 748800 25 25 25 270 75 0 0 0 0 7 0 0 0 0 0
167 166 1783879120077485600 DEPTH 43 1 0.50800797846342649 0 1 10 1 10 0 0 1810 30 2593 23678158 81600 1296.4751434326172 8.5709999999999997 2288.3400999999999 120960 65837 1 0 0.01232804816409586 0.656193647820139 4096 2048 384 12 96 360 72 24 0 2593 1920 0 384 1 11962183276 14526196 1 0 4 3 3 3 3 5898240 4423680 4423680 4426426 4492800 150 150 150 1613 530 0 0 0 1 29 0 0 0 0 0
168 167 1783879122382229800 DEPTH 43 1 0.50830544939367484 0 1 10 1 10 0 0 1817 26 2587 23678338 81600 1288.7427520751953 8.6280999999999999 2303.4177 120960 54870 1 0 0.01232804816409586 0.656193647820139 4096 2048 384 12 96 360 72 24 0 2587 1920 0 384 1 11966680924 19023844 1 0 4 3 3 3 3 5898240 4423680 4423680 4426565 4492800 150 150 150 1603 534 0 0 2 0 24 0 0 0 0 0
169 168 1783879124663016700 DEPTH 43 1 0.50855112925050561 0 1 10 1 10 0 0 1824 36 2585 23678170 81600 1283.5328979492188 8.5975000000000001 2279.3831 120960 43673 1 0 0.01232804816409586 0.656193647820139 4096 2048 384 12 96 360 72 24 0 2585 1920 0 384 1 11971176532 23519452 1 0 4 3 3 3 3 5898240 4423680 4423680 4426431 4492800 150 150 150 1610 525 0 0 2 0 34 0 0 0 0 0
170 169 1783879126965481300 DEPTH 43 1 0.50875035760451914 0 1 10 1 10 0 0 1840 53 2587 23678150 81600 1284.3280639648438 8.7257999999999996 2301.2793000000001 120960 29828 1 0 0.01232804816409586 0.656193647820139 4096 2048 384 12 96 360 72 24 0 2587 1920 0 384 1 11975674180 28017100 1 0 4 3 3 3 3 5898240 4423680 4423680 4426441 4492800 150 150 150 1613 524 0 0 0 0 53 0 0 0 0 0
171 170 1783879127349029400 REFRESH 43 0 0.50890793808265034 0 1 10 1 10 0 0 1842 9 416 3987718 55200 225.37216186523438 1.4333 382.38900000000001 20160 13453 0 0 0.01232804816409586 0.656193647820139 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 11976406724 28749644 1 0 4 3 3 3 3 983040 737280 737280 737477 748800 25 25 25 269 72 0 0 0 0 9 0 0 0 0 0
172 171 1783879129626300300 DEPTH 43 1 0.50802819199712734 0 1 10 1 10 0 0 1854 69 2586 23678252 81600 1302.3700256347656 8.6089000000000002 2276.1248999999998 120960 65861 1 0 0.01232804816409586 0.656193647820139 4096 2048 384 12 96 360 72 24 0 2586 1920 0 384 1 11980903352 33246272 1 0 4 3 3 3 3 5898240 4423680 4423680 4426497 4492800 150 150 150 1595 541 0 0 1 0 68 0 0 0 0 0
173 172 1783879131935161800 DEPTH 43 1 0.50821500661076124 0 1 10 1 10 0 0 1859 48 2592 23678116 81600 1294.9841156005859 8.5691000000000006 2307.5468999999998 120960 54668 1 0 0.01232804816409586 0.656193647820139 4096 2048 384 12 96 360 72 24 0 2592 1920 0 384 1 11985406100 37749020 1 0 4 3 3 3 3 5898240 4423680 4423680 4426366 4492800 150 150 150 1606 536 0 0 0 0 48 0 0 0 0 0
174 173 1783879134258245600 DEPTH 43 1 0.50836187857495352 0 1 10 1 10 1 0 1863 40 2585 23678123 81600 1289.9467926025391 8.5893999999999995 2321.7431000000001 120960 43737 1 0 0.01017337260156595 0.63921982453475934 4096 2048 384 12 96 360 72 24 0 2585 1920 0 384 1 11989901708 42244628 1 0 4 3 3 3 3 5898240 4423680 4423680 4426358 4492800 150 150 150 1600 535 0 0 0 0 40 0 0 0 0 1
175 174 1783879136547379100 DEPTH 43 1 0.5085079846743612 0 1 10 1 10 0 0 1868 38 2594 23678223 81600 1284.9921875 8.5762 2287.9584 120960 29991 1 0 0.01017337260156595 0.63921982453475934 4096 2048 384 12 96 360 72 24 0 2594 1920 0 384 1 11994406496 46749416 1 0 4 3 3 3 3 5898240 4423680 4423680 4426435 4492800 150 150 150 1603 541 0 0 0 0 38 0 0 0 0 0
176 175 1783879136944101200 REFRESH 43 0 0.508583487240437 0 1 10 1 10 0 0 1868 7 420 3987719 55200 224.90419006347656 1.4263999999999999 395.1474 20160 13490 0 0 0.01017337260156595 0.63921982453475934 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 11995143120 47486040 1 0 4 3 3 3 3 983040 737280 737280 737491 748800 25 25 25 268 77 0 0 0 0 7 0 0 0 0 0
177 176 1783879139276742900 DEPTH 43 1 0.50563062553481364 0 1 10 1 10 0 0 1870 30 2584 23678250 81600 1298.5336303710938 8.5860000000000003 2331.4895000000001 120960 66412 1 0 0.01017337260156595 0.63921982453475934 4096 2048 384 12 96 360 72 24 0 2584 1920 0 384 1 11999637708 51980628 1 0 4 3 3 3 3 5898240 4423680 4423680 4426447 4492800 150 150 150 1606 528 0 0 0 0 30 0 0 0 0 0
178 177 1783879141577975700 DEPTH 43 1 0.50595238148178412 0 1 10 1 10 0 0 1871 30 2598 23678249 81600 1290.9851684570312 8.6024000000000012 2300.0717 120960 54997 1 0 0.01017337260156595 0.63921982453475934 4096 2048 384 12 96 360 72 24 0 2598 1920 0 384 1 12004146576 56489496 1 0 4 3 3 3 3 5898240 4423680 4423680 4426467 4492800 150 150 150 1614 534 0 0 0 0 30 0 0 0 0 0
179 178 1783879143907871000 DEPTH 43 1 0.50622143708282263 0 1 10 1 10 0 0 1875 25 2596 23678219 81600 1288.1296081542969 8.5731999999999999 2328.7283000000002 120960 44143 1 0 0.01017337260156595 0.63921982453475934 4096 2048 384 12 96 360 72 24 0 2596 1920 0 384 1 12008653404 60996324 1 0 4 3 3 3 3 5898240 4423680 4423680 4426421 4492800 150 150 150 1621 525 0 0 0 0 25 0 0 0 0 0
180 179 1783879146230281100 DEPTH 43 1 0.50644320443782498 0 1 10 1 10 1 0 1878 31 2592 23678218 81600 1284.2526702880859 8.5838000000000001 2321.1754000000001 120960 30252 1 0 0.010173385569902268 0.61003798606578097 4096 2048 384 12 96 360 72 24 0 2592 1920 0 384 1 12013156152 65499072 1 0 4 3 3 3 3 5898240 4423680 4423680 4426414 4492800 150 150 150 1616 526 0 0 0 0 31 0 0 0 0 1
181 180 1783879146627487100 REFRESH 43 0 0.50667308120150489 0 1 10 1 10 0 0 1879 8 420 3987751 55200 225.15199279785156 1.4313 396.01029999999997 20160 13530 0 0 0.010173385569902268 0.61003798606578097 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 12013892776 66235696 1 0 4 3 3 3 3 983040 737280 737280 737491 748800 25 25 25 271 74 0 0 0 0 8 0 0 0 0 0
182 181 1783879150069543800 DEPTH 43 1 0.50480933830403274 0 1 10 1 10 0 0 1880 26 2597 23678222 81600 1302.3909759521484 8.6058000000000003 3371.4321 120960 65948 1 0 0.010173385569902268 0.61003798606578097 4096 2048 384 12 96 360 72 24 0 2597 1920 0 384 1 12018400704 3635244 1 0 4 3 3 3 3 5898240 4423680 4423680 4426417 4492800 150 150 150 1625 522 0 0 0 0 26 0 0 0 0 0
183 182 1783879152373885700 DEPTH 43 1 0.50511200327804284 0 1 10 1 10 0 0 1881 27 2595 23678264 81600 1294.7261505126953 8.5831 2303.1590000000001 120960 54821 1 0 0.010173385569902268 0.61003798606578097 4096 2048 384 12 96 360 72 24 0 2595 1920 0 384 1 12022906512 8141052 1 0 4 3 3 3 3 5898240 4423680 4423680 4426438 4492800 150 150 150 1633 512 0 0 0 0 27 0 0 0 0 0
184 183 1783879154683369300 DEPTH 43 1 0.50536457087334186 0 1 10 1 10 0 0 1882 21 2597 23678255 81600 1289.3040771484375 8.7744999999999997 2308.1945000000001 120960 44176 1 0 0.010173385569902268 0.61003798606578097 4096 2048 384 12 96 360 72 24 0 2597 1920 0 384 1 12027414360 12648900 1 0 4 3 3 3 3 5898240 4423680 4423680 4426409 4492800 150 150 150 1625 522 0 0 0 0 21 0 0 0 0 0
185 184 1783879156980187900 DEPTH 43 1 0.50557218479909827 0 1 10 1 10 0 0 1884 17 2582 23678242 81600 1284.3522338867188 8.5775000000000006 2295.6734999999999 120960 29913 1 0 0.010173385569902268 0.61003798606578097 4096 2048 384 12 96 360 72 24 0 2582 1920 0 384 1 12031906908 17141448 1 0 4 3 3 3 3 5898240 4423680 4423680 4426431 4492800 150 150 150 1607 525 0 0 0 0 17 0 0 0 0 0
186 185 1783879157389114000 REFRESH 43 0 0.50573947285336307 0 1 10 1 10 0 0 1886 9 421 3987739 55200 226.53543090820312 1.4321999999999999 407.57209999999998 20160 13613 0 0 0.010173385569902268 0.61003798606578097 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 12032644552 17879092 1 0 4 3 3 3 3 983040 737280 737280 737495 748800 25 25 25 271 75 0 0 0 0 9 0 0 0 0 0
187 186 1783879159733613200 DEPTH 43 1 0.50487059853910865 0 1 10 1 10 0 0 1887 22 2588 23678308 81600 1301.1855316162109 8.5765999999999991 2343.1307000000002 120960 65740 1 0 0.010173385569902268 0.61003798606578097 4096 2048 384 12 96 360 72 24 0 2588 1920 0 384 1 12037143220 22377760 1 0 4 3 3 3 3 5898240 4423680 4423680 4426441 4492800 150 150 150 1630 508 0 0 0 1 21 0 0 0 0 0
188 187 1783879162051814400 DEPTH 43 1 0.50506930751814294 0 1 10 1 10 0 0 1889 32 2592 23678222 81600 1293.5034942626953 8.5829000000000004 2316.9160000000002 120960 55109 1 0 0.010173385569902268 0.61003798606578097 4096 2048 384 12 96 360 72 24 0 2592 1920 0 384 1 12041645968 26880508 1 0 4 3 3 3 3 5898240 4423680 4423680 4426382 4492800 150 150 150 1636 506 0 0 0 0 32 0 0 0 0 0
189 188 1783879164380431500 DEPTH 43 1 0.50522896941912898 0 1 10 1 10 0 0 1892 33 2610 23678256 81600 1287.1558532714844 8.5835000000000008 2327.3526999999999 120960 43276 1 0 0.010173385569902268 0.61003798606578097 4096 2048 384 12 96 360 72 24 0 2610 1920 0 384 1 12046167076 31401616 1 0 4 3 3 3 3 5898240 4423680 4423680 4426413 4492800 150 150 150 1642 518 0 0 0 0 33 0 0 0 0 0
190 189 1783879166709365200 DEPTH 43 1 0.50535361546430835 0 1 10 1 10 0 0 1900 35 2611 23678291 81600 1285.6821594238281 8.5731000000000002 2327.8121000000001 120960 29499 1 0 0.010173385569902268 0.61003798606578097 4096 2048 384 12 96 360 72 24 0 2611 1920 0 384 1 12050689204 35923744 1 0 4 3 3 3 3 5898240 4423680 4423680 4426442 4492800 150 150 150 1630 531 0 0 1 1 33 0 0 0 0 0
191 190 1783879167105771400 REFRESH 43 0 0.50544687233307295 0 1 10 1 10 0 0 1901 8 424 3987789 55200 225.73977661132812 1.4308000000000001 395.12569999999999 20160 13470 0 0 0.010173385569902268 0.61003798606578097 4096 2048 64 1 16 60 12 4 0 424 320 0 64 0 12051429908 36664448 1 0 4 3 3 3 3 983040 737280 737280 737537 748800 25 25 25 273 76 0 0 1 0 7 0 0 0 0 0
192 191 1783879169452125300 DEPTH 43 1 0.50351200263871154 0 1 10 1 10 0 0 1906 39 2621 23678330 81600 1300.5915374755859 8.5874999999999986 2345.1626999999999 120960 65559 1 0 0.010173385569902268 0.61003798606578097 4096 2048 384 12 96 360 72 24 0 2621 1920 0 384 1 12055962236 41196776 1 0 4 3 3 3 3 5898240 4423680 4423680 4426474 4492800 150 150 150 1654 517 0 0 2 0 37 0 0 0 0 0
193 192 1783879171775430900 DEPTH 43 1 0.50375194135702406 0 1 10 1 10 0 0 1910 33 2596 23678253 81600 1293.8874969482422 8.5804999999999989 2322.0214999999998 120960 54758 1 0 0.010173385569902268 0.61003798606578097 4096 2048 384 12 96 360 72 24 0 2596 1920 0 384 1 12060469064 45703604 1 0 4 3 3 3 3 5898240 4423680 4423680 4426425 4492800 150 150 150 1660 486 5 0 0 0 28 0 0 0 0 0
194 193 1783879174081603900 DEPTH 43 1 0.50394932861163055 0 1 10 1 10 0 0 1916 39 2586 23678310 81600 1290.3617553710938 8.5878999999999994 2305.0158999999999 120960 43035 1 0 0.010173385569902268 0.61003798606578097 4096 2048 384 12 96 360 72 24 0 2586 1920 0 384 1 12064965692 50200232 1 0 4 3 3 3 3 5898240 4423680 4423680 4426446 4492800 150 150 150 1629 507 0 0 0 0 39 0 0 0 0 0
195 194 1783879176377659500 DEPTH 43 1 0.50410853918031384 0 1 10 1 10 1 0 1921 48 2571 23678313 81600 1289.2282867431641 8.5823 2294.7550000000001 120960 29746 1 0 0.018792301583039003 0.43459967789178922 4096 2048 384 12 96 360 72 24 0 2571 1920 0 384 1 12069447020 54681560 1 0 4 3 3 3 3 5898240 4423680 4423680 4426440 4492800 150 150 150 1616 505 1 0 0 0 47 0 0 0 0 1
196 195 1783879176773249800 REFRESH 43 0 0.50426902320528555 0 1 10 1 10 0 0 1926 16 416 3987788 55200 225.25337219238281 1.4246000000000001 394.43419999999998 20160 13492 0 0 0.018792301583039003 0.43459967789178922 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 12070179564 55414104 1 0 4 3 3 3 3 983040 737280 737280 737522 748800 25 25 25 270 71 0 0 0 0 16 0 0 0 0 0
197 196 1783879179131070700 DEPTH 43 1 0.50435974205710976 0 1 10 1 10 1 0 1929 69 2504 23678213 81600 1301.6135711669922 8.5899000000000001 2356.6102999999998 120960 66128 1 0 0.01910576089822183 0.41606773921022733 4096 2048 384 12 96 360 72 24 0 2504 1920 0 384 1 12074592552 59827092 1 0 4 3 3 3 3 5898240 4423680 4423680 4426332 4492800 150 150 150 1450 604 2 0 0 1 66 0 0 0 0 2
198 197 1783879181463664500 DEPTH 43 1 0.50447561213561443 0 1 10 1 9 1 0 1966 161 2504 23715247 119040 1293.2833404541016 8.6905999999999999 2254.9508000000001 107520 51658 1 0 0.009912286308801796 0.43127298951197091 4096 2048 384 12 96 360 72 24 0 2504 1920 0 384 1 12079005540 64240080 1 0 4 2 2 2 6 5898240 3932160 2949120 3934638 6988800 150 150 150 873 1181 2 0 0 5 154 0 0 0 0 4
199 198 1783879184764574500 DEPTH 43 1 0.60450961287061866 0 1 9 1 9 1 0 2011 156 2484 23743353 147840 1279.1397399902344 8.5727999999999991 3299.6089999999999 80640 27980 1 0 0.051954670644896256 0.45871553646269403 4096 2048 384 12 96 360 72 24 0 2484 1920 0 384 1 12083398208 1525384 1 0 4 2 2 2 6 5898240 2949120 2949120 2950972 8985600 150 150 150 252 1782 0 0 0 0 156 0 0 0 0 2
200 199 1783879186977105900 DEPTH 43 1 0.59678437594922196 0 1 9 1 9 0 0 2030 125 2489 23743382 147840 1274.2932891845703 8.5745000000000005 2211.3861999999999 80640 20890 1 0 0.051954670644896256 0.45871553646269403 4096 2048 384 12 96 360 72 24 0 2489 1920 0 384 1 12087795896 5923072 1 0 4 2 2 2 6 5898240 2949120 2949120 2950987 8985600 150 150 150 409 1630 0 0 0 0 125 0 0 0 0 0
201 200 1783879187342982600 REFRESH 43 0 0.58755189416358955 0 1 9 1 9 0 0 2045 32 401 3989001 56640 222.44044494628906 1.4289000000000001 364.57979999999998 13440 8128 0 0 0.051954670644896256 0.45871553646269403 4096 2048 64 1 16 60 12 4 0 401 320 0 64 0 12088513140 6640316 1 0 4 2 2 2 6 983040 491520 491520 491669 1497600 27 25 25 29 295 0 0 0 0 32 0 0 0 0 0
202 201 1783879189515047500 DEPTH 43 1 0.57922502436674761 0 1 9 1 9 0 0 2068 81 2503 23743131 147840 1283.9680023193359 8.581900000000001 2170.7238000000002 80640 40390 1 0 0.051954670644896256 0.45871553646269403 4096 2048 384 12 96 360 72 24 0 2503 1920 0 384 1 12092925108 11052284 1 0 4 2 2 2 6 5898240 2949120 2949120 2951051 8985600 150 150 150 173 1880 0 0 0 0 81 0 0 0 0 0
203 202 1783879191681358500 DEPTH 43 1 0.57171331503520306 0 1 9 1 9 0 0 2096 123 2487 23743177 147840 1279.2954864501953 8.5854000000000017 2165.1581000000001 80640 32697 1 0 0.051954670644896256 0.45871553646269403 4096 2048 384 12 96 360 72 24 0 2487 1920 0 384 1 12097320756 15447932 1 0 4 2 2 2 6 5898240 2949120 2949120 2951011 8985600 150 150 150 181 1856 0 0 0 0 123 0 0 0 0 0
204 203 1783879193840280100 DEPTH 43 1 0.56493535863658351 0 1 9 1 9 0 0 2140 178 2492 23743361 147840 1277.5353393554688 8.5947999999999993 2157.6990000000001 80640 26219 1 0 0.051954670644896256 0.45871553646269403 4096 2048 384 12 96 360 72 24 0 2492 1920 0 384 1 12101721504 19848680 1 0 4 2 2 2 6 5898240 2949120 2949120 2951039 8985600 150 150 150 200 1842 4 0 0 0 174 0 0 0 0 0
205 204 1783879196005297500 DEPTH 43 1 0.55881788724784631 0 1 9 1 9 1 0 2182 149 2488 23743038 147840 1269.7932586669922 8.6096000000000004 2163.7568999999999 80640 18201 1 0 0.030209943552192954 0.44446393910354609 4096 2048 384 12 96 360 72 24 0 2488 1920 0 384 1 12106118172 24245348 1 0 4 2 2 2 6 5898240 2949120 2949120 2950893 8985600 150 150 150 216 1822 0 0 0 0 149 0 0 0 0 2
206 205 1783879196358608800 REFRESH 43 0 0.55338001363533418 0 1 9 1 9 0 0 2196 35 400 3989011 56640 222.87667846679688 1.4278999999999999 352.01929999999999 13440 8465 0 0 0.030209943552192954 0.44446393910354609 4096 2048 64 1 16 60 12 4 0 400 320 0 64 0 12106834396 24961572 1 0 4 2 2 2 6 983040 491520 491520 491645 1497600 27 25 25 29 294 0 0 0 0 35 0 0 0 0 0
207 206 1783879198624191800 DEPTH 43 1 0.54838377310650099 0 1 9 1 9 0 0 2226 139 2511 23731696 136320 1283.2879028320312 8.5914000000000001 2264.4198999999999 100800 50223 1 0 0.030209943552192954 0.44446393910354609 4096 2048 384 12 96 360 72 24 0 2511 1920 0 384 1 12111254524 29381700 1 0 4 3 2 2 5 5898240 3686400 2949120 2951042 8236800 150 150 150 436 1625 0 0 0 9 130 0 0 0 0 0
208 207 1783879200936638900 DEPTH 43 1 0.54387016141614786 0 1 9 1 9 0 0 2235 79 2566 23721049 125760 1277.7173004150391 8.5964999999999989 2311.1963000000001 120960 46281 1 0 0.030209943552192954 0.44446393910354609 4096 2048 384 12 96 360 72 24 0 2566 1920 0 384 1 12115730752 33857928 1 0 4 3 2 2 5 5898240 4423680 2949120 2951015 7488000 150 150 150 1372 744 1 0 0 20 58 0 0 0 0 0
209 208 1783879203265190000 DEPTH 43 1 0.53979101864172563 0 1 9 1 9 0 0 2241 42 2602 23702657 106560 1273.7222747802734 8.6113 2327.3908000000001 120960 36935 1 0 0.030209943552192954 0.44446393910354609 4096 2048 384 12 96 360 72 24 0 2602 1920 0 384 1 12120243700 38370876 1 0 4 3 2 3 4 5898240 4423680 2949120 4180585 6240000 150 150 150 1608 544 0 0 0 4 38 0 0 0 0 0
210 209 1783879205592509200 DEPTH 43 1 0.53610299979080522 0 1 9 1 9 0 0 2252 63 2589 23692147 96000 1270.4820861816406 8.5738000000000003 2326.1125000000002 120960 26242 1 0 0.030209943552192954 0.44446393910354609 4096 2048 384 12 96 360 72 24 0 2589 1920 0 384 1 12124743388 42870564 1 0 4 3 3 3 3 5898240 4423680 3440640 4426379 5491200 150 150 152 1619 518 0 0 8 7 48 0 0 0 0 0
211 210 1783879205959684200 REFRESH 43 0 0.5327670933235048 0 1 9 1 9 0 0 2275 60 412 3987659 55200 224.49562072753906 1.4289000000000001 366.0059 20160 12152 0 0 0.030209943552192954 0.44446393910354609 4096 2048 64 1 16 60 12 4 0 412 320 0 64 0 12125471852 43599028 1 0 4 3 3 3 3 983040 737280 737280 737513 748800 25 25 28 240 94 0 0 0 40 20 0 0 0 0 0
212 211 1783879208210015900 DEPTH 43 1 0.52974818782238553 0 1 9 1 9 0 0 2303 97 2531 23677642 81600 1296.5684509277344 8.5813999999999986 2249.0668999999998 120960 59632 1 0 0.030209943552192954 0.44446393910354609 4096 2048 384 12 96 360 72 24 0 2531 1920 0 384 1 12129912380 48039556 1 0 4 3 3 3 3 5898240 4423680 4423680 4426405 4492800 150 150 168 1070 993 2 0 2 4 89 0 0 0 0 0
213 212 1783879210481546700 DEPTH 43 1 0.52701468199507595 0 1 9 1 9 1 0 2321 96 2547 23681712 85440 1286.4523773193359 8.5915999999999997 2270.3926000000001 120960 48194 1 0 0.031067137964755395 0.28224061304809089 4096 2048 384 12 96 360 72 24 0 2547 1920 0 384 1 12134369228 52496404 1 0 4 3 2 3 4 5898240 4423680 4177920 4426530 4742400 150 150 177 1025 1045 4 0 7 0 85 0 0 0 0 1
214 213 1783879212867937200 DEPTH 43 1 0.52511813361071003 0 1 9 1 9 0 0 2335 73 2548 23677731 81600 1281.1149597167969 8.5853999999999999 2293.1298999999999 120960 39052 1 0 0.031067137964755395 0.28224061304809089 4096 2048 384 12 96 360 72 24 0 2548 1920 0 384 1 12138827096 56954272 1 0 4 3 3 3 3 5898240 4423680 4423680 4426402 4492800 150 150 191 1190 867 1 0 1 7 64 0 0 0 0 0
215 214 1783879215166034900 DEPTH 43 1 0.52281494387068983 0 1 9 1 9 0 0 2342 65 2562 23677869 81600 1278.2879028320312 8.6199000000000012 2296.8654999999999 120960 27477 1 0 0.031067137964755395 0.28224061304809089 4096 2048 384 12 96 360 72 24 0 2562 1920 0 384 1 12143299244 61426420 1 0 4 3 3 3 3 5898240 4423680 4423680 4426479 4492800 150 150 195 1491 576 0 0 6 1 58 0 0 0 0 0
216 215 1783879215557221500 REFRESH 43 0 0.5207258726856332 0 1 9 1 9 0 0 2350 25 417 3987674 55200 224.68415832519531 1.4346000000000001 389.8777 20160 12202 0 0 0.031067137964755395 0.28224061304809089 4096 2048 64 1 16 60 12 4 0 417 320 0 64 0 12144032808 62159984 1 0 4 3 3 3 3 983040 737280 737280 737514 748800 25 25 41 255 71 0 0 3 12 10 0 0 0 0 0
217 216 1783879217842583600 DEPTH 43 1 0.51882960308084414 0 1 9 1 9 0 0 2371 100 2556 23678085 81600 1297.3606262207031 8.5815000000000001 2284.2139999999999 120960 57319 1 0 0.031067137964755395 0.28224061304809089 4096 2048 384 12 96 360 72 24 0 2556 1920 0 384 1 12148498836 66626012 1 0 4 3 3 3 3 5898240 4423680 4423680 4426518 4492800 150 150 243 1037 976 0 0 4 1 95 0 0 0 0 0
218 217 1783879221231407300 DEPTH 43 1 0.51710694883274677 0 1 9 1 9 0 0 2376 57 2557 23677731 81600 1285.9127655029297 8.5746000000000002 3387.5976999999998 120960 46082 1 1 0.031067137964755395 0.28224061304809089 4096 2048 384 12 96 360 72 24 0 2557 1920 0 384 1 12152965964 3984848 1 0 4 3 3 3 3 5898240 4423680 4423680 4426408 4492800 150 150 259 1170 828 1 0 3 1 51 0 0 0 0 0
219 218 1783879223554414700 DEPTH 43 1 0.51554064140707767 0 1 9 1 9 0 0 2380 46 2544 23677904 81600 1285.0782012939453 8.5703999999999994 2321.7696000000001 120960 36440 1 0 0.031067137964755395 0.28224061304809089 4096 2048 384 12 96 360 72 24 0 2544 1920 0 384 1 12157419752 8438636 1 0 4 3 3 3 3 5898240 4423680 4423680 4426487 4492800 150 150 256 1260 728 0 0 4 0 42 0 0 0 0 0
220 219 1783879225861087200 DEPTH 43 1 0.51411513820301735 0 1 9 1 9 0 0 2383 45 2551 23678036 81600 1279.7601623535156 8.6133000000000006 2305.2919999999999 120960 25562 1 0 0.031067137964755395 0.28224061304809089 4096 2048 384 12 96 360 72 24 0 2551 1920 0 384 1 12161880680 12899564 1 0 4 3 3 3 3 5898240 4423680 4423680 4426541 4492800 150 150 263 1380 608 0 0 2 0 43 0 0 0 0 0
221 220 1783879226244304900 REFRESH 43 0 0.51281644997267395 0 1 9 1 9 0 0 2389 21 418 3987710 55200 224.5611572265625 1.4317 381.8854 20160 12238 0 0 0.031067137964755395 0.28224061304809089 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 12162615264 13634148 1 0 4 3 3 3 3 983040 737280 737280 737516 748800 25 25 55 235 78 0 0 2 8 11 0 0 0 0 0
222 221 1783879228562792300 DEPTH 43 1 0.51163198549838795 0 1 9 1 9 0 0 2393 61 2556 23678058 81600 1297.5492095947266 8.6186000000000007 2317.2746999999999 120960 58160 1 0 0.031067137964755395 0.28224061304809089 4096 2048 384 12 96 360 72 24 0 2556 1920 0 384 1 12167081292 18100176 1 0 4 3 3 3 3 5898240 4423680 4423680 4426459 4492800 150 150 285 1130 841 0 0 4 0 57 0 0 0 0 0
223 222 1783879230873606300 DEPTH 43 1 0.51055041180208105 0 1 9 1 9 0 0 2401 54 2545 23678155 81600 1286.7707672119141 8.7111999999999998 2309.4506999999999 120960 47257 1 0 0.031067137964755395 0.28224061304809089 4096 2048 384 12 96 360 72 24 0 2545 1920 0 384 1 12171536100 22554984 1 0 4 3 3 3 3 5898240 4423680 4423680 4426508 4492800 150 150 289 1167 789 0 0 5 3 46 0 0 0 0 0
224 223 1783879233181319600 DEPTH 43 1 0.50956152833345048 0 1 9 1 9 0 0 2409 48 2544 23677898 81600 1285.5767974853516 8.5750999999999991 2306.5196999999998 120960 37520 1 0 0.031067137964755395 0.28224061304809089 4096 2048 384 12 96 360 72 24 0 2544 1920 0 384 1 12175989888 27008772 1 0 4 3 3 3 3 5898240 4423680 4423680 4426435 4492800 150 150 286 1296 662 0 0 3 0 45 0 0 0 0 0
225 224 1783879235499703900 DEPTH 43 1 0.50865615373912765 0 1 9 1 9 1 0 2416 54 2547 23677942 81600 1282.0387878417969 8.5814000000000004 2317.2156 120960 25505 1 0 0.037346797275121628 0.2555694096638077 4096 2048 384 12 96 360 72 24 0 2547 1920 0 384 1 12180446736 31465620 1 0 4 3 3 3 3 5898240 4423680 4423680 4426420 4492800 150 150 288 1398 561 0 0 5 1 48 0 0 0 0 1
226 225 1783879235885245600 REFRESH 43 0 0.50788597969769644 0 1 9 1 9 0 0 2417 18 414 3987672 55200 224.09625244140625 2.2663000000000002 384.2303 20160 12432 0 0 0.037346797275121628 0.2555694096638077 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 12181177240 32196124 1 0 4 3 3 3 3 983040 737280 737280 737498 748800 25 25 58 235 71 0 0 1 5 12 0 0 0 0 0
227 226 1783879238195700200 DEPTH 43 1 0.50711766065607322 0 1 9 1 9 0 0 2419 59 2537 23678071 81600 1298.1566467285156 8.5826999999999991 2309.232 120960 58532 1 0 0.037346797275121628 0.2555694096638077 4096 2048 384 12 96 360 72 24 0 2537 1920 0 384 1 12185623888 36642772 1 0 4 3 3 3 3 5898240 4423680 4423680 4426424 4492800 150 150 301 1199 737 1 0 1 1 56 0 0 0 0 0
228 227 1783879240536792100 DEPTH 43 1 0.50641105202190762 0 1 9 1 9 1 0 2424 58 2550 23678061 81600 1291.1419830322266 8.6036999999999999 2339.9128999999998 120960 47699 1 0 0.03004081750325693 0.17916452195622409 4096 2048 384 12 96 360 72 24 0 2550 1920 0 384 1 12190083796 41102680 1 0 4 3 3 3 3 5898240 4423680 4423680 4426393 4492800 150 150 309 1338 603 0 0 5 1 52 0 0 0 0 1
229 228 1783879242933249200 DEPTH 43 1 0.50592462296271568 0 1 9 1 9 0 0 2427 31 2551 23678185 81600 1286.7079315185547 8.5757000000000012 2314.7058999999999 120960 38490 1 0 0.03004081750325693 0.17916452195622409 4096 2048 384 12 96 360 72 24 0 2551 1920 0 384 1 12194544724 45563608 1 0 4 3 3 3 3 5898240 4423680 4423680 4426486 4492800 150 150 322 1397 532 0 0 0 0 31 0 0 0 0 0
230 229 1783879245259606400 DEPTH 43 1 0.50530732735968098 0 1 9 1 9 0 0 2438 45 2565 23677972 81600 1283.8040771484375 8.5874000000000006 2325.0664999999999 120960 26096 1 0 0.03004081750325693 0.17916452195622409 4096 2048 384 12 96 360 72 24 0 2565 1920 0 384 1 12199019932 50038816 1 0 4 3 3 3 3 5898240 4423680 4423680 4426397 4492800 150 150 323 1447 495 0 0 3 1 41 0 0 0 0 0
231 230 1783879245648136100 REFRESH 43 0 0.50473689048321335 0 1 9 1 9 0 0 2440 13 422 3987680 55200 225.08338928222656 1.4317 387.15199999999999 20160 12615 0 0 0.03004081750325693 0.17916452195622409 4096 2048 64 1 16 60 12 4 0 422 320 0 64 0 12199758596 50777480 1 0 4 3 3 3 3 983040 737280 737280 737478 748800 25 25 71 228 73 0 0 1 5 7 0 0 0 0 0
232 231 1783879247945735200 DEPTH 43 1 0.50420870844045262 0 1 9 1 9 0 0 2451 50 2540 23678102 81600 1297.7651672363281 8.6112000000000002 2296.3292000000001 120960 60718 1 0 0.03004081750325693 0.17916452195622409 4096 2048 384 12 96 360 72 24 0 2540 1920 0 384 1 12204208304 55227188 1 0 4 3 3 3 3 5898240 4423680 4423680 4426458 4492800 150 150 360 1188 692 0 0 5 0 45 0 0 0 0 0
233 232 1783879250300351700 DEPTH 43 1 0.50371863695799812 0 1 9 1 9 0 0 2456 41 2541 23678186 81600 1290.6697540283203 8.6231000000000009 2353.1765999999998 120960 49394 1 0 0.03004081750325693 0.17916452195622409 4096 2048 384 12 96 360 72 24 0 2541 1920 0 384 1 12208659032 59677916 1 0 4 3 3 3 3 5898240 4423680 4423680 4426460 4492800 150 150 358 1343 540 0 0 1 1 39 0 0 0 0 0
234 233 1783879252615813500 DEPTH 43 1 0.50326294543015582 0 1 9 1 9 0 0 2458 47 2549 23678185 81600 1285.4384002685547 8.581900000000001 2314.1682999999998 120960 39465 1 0 0.03004081750325693 0.17916452195622409 4096 2048 384 12 96 360 72 24 0 2549 1920 0 384 1 12213117920 64136804 1 0 4 3 3 3 3 5898240 4423680 4423680 4426414 4492800 150 150 363 1391 495 0 0 2 0 45 0 0 0 0 0
235 234 1783879256011035100 DEPTH 43 1 0.50283827556218674 0 1 9 1 9 1 0 2460 38 2559 23678165 81600 1286.0990142822266 8.5731000000000002 3394.0383000000002 120960 27382 1 0 0.030060195524671131 0.15182181677363818 4096 2048 384 12 96 360 72 24 0 2559 1920 0 384 1 12217587088 1497112 1 0 4 3 3 3 3 5898240 4423680 4423680 4426406 4492800 150 150 359 1417 483 0 0 1 3 34 0 0 0 0 1
236 235 1783879256394105300 REFRESH 43 0 0.50247342969050757 0 1 9 1 9 0 0 2463 19 414 3987755 55200 227.1856689453125 1.4244000000000001 381.7568 20160 13107 0 0 0.030060195524671131 0.15182181677363818 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 12218317592 2227616 1 0 4 3 3 3 3 983040 737280 737280 737525 748800 25 25 72 220 72 0 0 2 6 11 0 0 0 0 0
237 236 1783879258720714600 DEPTH 43 1 0.50209885256347275 0 1 9 1 9 0 0 2471 50 2537 23678142 81600 1299.8547821044922 8.6158000000000001 2325.3026 120960 62936 1 0 0.030060195524671131 0.15182181677363818 4096 2048 384 12 96 360 72 24 0 2537 1920 0 384 1 12222764240 6674264 1 0 4 3 3 3 3 5898240 4423680 4423680 4426436 4492800 150 150 387 1190 660 0 0 4 3 43 0 0 0 0 0
238 237 1783879261058038100 DEPTH 43 1 0.50174742035837638 0 1 9 1 9 1 0 2476 37 2557 23681936 85440 1290.9324035644531 8.5992999999999995 2336.1273000000001 120960 52140 1 0 0.027277433786763575 0.15243551269901376 4096 2048 384 12 96 360 72 24 0 2557 1920 0 384 1 12227231288 11141312 1 0 4 3 3 3 3 5898240 4423680 4177920 4426406 4742400 150 150 377 1227 653 0 0 2 1 34 0 0 0 0 1
239 238 1783879263390002300 DEPTH 43 1 0.50142557524274689 0 1 9 1 9 0 0 2480 40 2576 23678157 81600 1283.8522796630859 8.585799999999999 2330.7552000000001 120960 41946 1 0 0.027277433786763575 0.15243551269901376 4096 2048 384 12 96 360 72 24 0 2576 1920 0 384 1 12231717716 15627740 1 0 4 3 3 3 3 5898240 4423680 4423680 4426450 4492800 150 150 378 1373 525 0 0 2 3 35 0 0 0 0 0
240 239 1783879265720494000 DEPTH 43 1 0.50111307488352008 0 1 9 1 9 0 0 2481 38 2576 23678269 81600 1282.4971008300781 8.5840999999999994 2329.1293000000001 120960 29501 1 0 0.027277433786763575 0.15243551269901376 4096 2048 384 12 96 360 72 24 0 2576 1920 0 384 1 12236204144 20114168 1 0 4 3 3 3 3 5898240 4423680 4423680 4426476 4492800 150 150 376 1438 462 0 0 0 7 31 0 0 0 0 0
241 240 1783879266101976800 REFRESH 43 0 0.50081774006982616 0 1 9 1 9 0 0 2481 13 418 3987717 55200 225.29434204101562 1.4300999999999999 380.12529999999998 20160 13455 0 0 0.027277433786763575 0.15243551269901376 4096 2048 64 1 16 60 12 4 0 418 320 0 64 0 12236938728 20848752 1 0 4 3 3 3 3 983040 737280 737280 737504 748800 25 25 74 227 67 0 0 1 2 10 0 0 0 0 0
242 241 1783879268403598500 DEPTH 43 1 0.50053792896721738 0 1 9 1 9 0 0 2484 59 2553 23678274 81600 1298.9603881835938 8.5790000000000006 2300.4466000000002 120960 64445 1 0 0.027277433786763575 0.15243551269901376 4096 2048 384 12 96 360 72 24 0 2553 1920 0 384 1 12241401696 25311720 1 0 4 3 3 3 3 5898240 4423680 4423680 4426478 4492800 150 150 410 1202 641 0 0 1 2 56 0 0 0 0 0
243 242 1783879270734837900 DEPTH 43 1 0.50027216324939094 0 1 9 1 9 0 0 2487 54 2571 23678140 81600 1290.3277587890625 8.5815000000000001 2329.9877999999999 120960 53971 1 0 0.027277433786763575 0.15243551269901376 4096 2048 384 12 96 360 72 24 0 2571 1920 0 384 1 12245883024 29793048 1 0 4 3 3 3 3 5898240 4423680 4423680 4426449 4492800 150 150 402 1326 543 0 0 3 2 49 0 0 0 0 0
244 243 1783879273126286300 DEPTH 43 1 0.50001911175598179 0 1 9 1 9 1 0 2491 54 2567 23678264 81600 1288.0232849121094 8.6932000000000009 2316.2420000000002 120960 43492 1 0 0.027277504371411413 0.15044339324434738 4096 2048 384 12 96 360 72 24 0 2567 1920 0 384 1 12250360272 34270296 1 0 4 3 3 3 3 5898240 4423680 4423680 4426493 4492800 150 150 401 1383 483 0 0 4 0 50 0 0 0 0 1
245 244 1783879275435013700 DEPTH 43 1 0.49978148840799963 0 1 9 1 9 0 0 2498 47 2583 23678247 81600 1286.3189239501953 8.6024999999999991 2307.5327000000002 120960 29916 1 0 0.027277504371411413 0.15044339324434738 4096 2048 384 12 96 360 72 24 0 2583 1920 0 384 1 12254853840 38763864 1 0 4 3 3 3 3 5898240 4423680 4423680 4426472 4492800 150 150 395 1405 483 0 0 4 0 43 0 0 0 0 0
246 245 1783879275815344000 REFRESH 43 0 0.49954999721376381 0 1 9 1 9 0 0 2498 14 417 3987761 55200 226.14938354492188 1.4254 378.91109999999998 20160 13324 0 0 0.027277504371411413 0.15044339324434738 4096 2048 64 1 16 60 12 4 0 417 320 0 64 0 12255587404 39497428 1 0 4 3 3 3 3 983040 737280 737280 737499 748800 25 25 72 221 74 0 0 0 1 13 0 0 0 0 0
247 246 1783879278142897700 DEPTH 43 1 0.49932800900974722 0 1 9 1 9 1 0 2511 54 2591 23678363 81600 1297.9138488769531 8.5897000000000006 2326.2483000000002 120960 64844 1 0 0.027277663851285012 0.15131389402939593 4096 2048 384 12 96 360 72 24 0 2591 1920 0 384 1 12260089132 43999156 1 0 4 3 3 3 3 5898240 4423680 4423680 4426430 4492800 150 150 428 1040 823 0 0 0 0 54 0 0 0 0 1
248 247 1783879280459699400 DEPTH 43 1 0.49911674233282111 0 1 9 1 9 0 0 2523 75 2593 23678301 81600 1291.2332153320312 8.5799000000000003 2315.4729000000002 120960 54066 1 0 0.027277663851285012 0.15131389402939593 4096 2048 384 12 96 360 72 24 0 2593 1920 0 384 1 12264592900 48502924 1 0 4 3 3 3 3 5898240 4423680 4423680 4426460 4492800 150 150 426 966 901 0 0 2 3 70 0 0 0 0 0
249 248 1783879282756759400 DEPTH 43 1 0.49891099911668313 0 1 9 1 9 1 0 2530 70 2575 23685855 89280 1286.9365844726562 8.5824999999999996 2295.7285999999999 120960 43218 1 0 0.025974600216796432 0.1508554050604666 4096 2048 384 12 96 360 72 24 0 2575 1920 0 384 1 12269078308 52988332 1 0 4 3 2 3 4 5898240 4423680 3932160 4426415 4992000 150 150 429 1011 835 0 0 2 0 68 0 0 0 0 1
250 249 1783879285078392800 DEPTH 43 1 0.49871796506827282 0 1 9 1 9 0 0 2535 37 2593 23678298 81600 1284.9850158691406 8.5783999999999985 2320.4562999999998 120960 30292 1 0 0.025974600216796432 0.1508554050604666 4096 2048 384 12 96 360 72 24 0 2593 1920 0 384 1 12273582076 57492100 1 0 4 3 3 3 3 5898240 4423680 4423680 4426494 4492800 150 150 466 1149 678 0 0 0 3 34 0 0 0 0 0
251 250 1783879285467780000 REFRESH 43 0 0.4985252972900569 0 1 9 1 9 0 0 2535 13 421 3987743 55200 225.78994750976562 1.4307000000000001 388.23899999999998 20160 13454 0 0 0.025974600216796432 0.1508554050604666 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 12274319720 58229744 1 0 4 3 3 3 3 983040 737280 737280 737520 748800 25 25 74 228 69 0 0 1 3 9 0 0 0 0 0
252 251 1783879287804741100 DEPTH 43 1 0.49833859795384761 0 1 9 1 9 0 0 2542 55 2599 23678260 81600 1299.8440856933594 8.6016999999999992 2335.6176 120960 65716 1 0 0.025974600216796432 0.1508554050604666 4096 2048 384 12 96 360 72 24 0 2599 1920 0 384 1 12278829608 62739632 1 0 4 3 3 3 3 5898240 4423680 4423680 4426460 4492800 150 150 426 1217 656 0 0 2 0 53 0 0 0 0 0
253 252 1783879291185236000 DEPTH 43 1 0.49815733795825889 0 1 9 1 9 1 0 2554 64 2592 23682136 85440 1290.0074768066406 8.5908000000000015 3379.2154999999998 120960 54484 1 0 0.025976297568135263 0.14906275451572254 4096 2048 384 12 96 360 72 24 0 2592 1920 0 384 1 12283332436 134448 1 0 4 3 3 3 3 5898240 4423680 4177920 4426398 4742400 150 150 459 1285 548 0 0 0 0 64 0 0 0 0 1
254 253 1783879293512894700 DEPTH 43 1 0.49798309763318732 0 1 9 1 9 0 0 2570 60 2581 23678248 81600 1285.4394989013672 8.5839999999999996 2326.4243000000001 120960 44097 1 0 0.025976297568135263 0.14906275451572254 4096 2048 384 12 96 360 72 24 0 2581 1920 0 384 1 12287823964 4625976 1 0 4 3 3 3 3 5898240 4423680 4423680 4426441 4492800 150 150 465 1370 446 2 0 1 0 57 0 0 0 0 0
255 254 1783879295843159200 DEPTH 43 1 0.49781112736753641 0 1 9 1 9 0 0 2581 51 2584 23678154 81600 1279.6570281982422 8.6878999999999991 2329.0708 120960 30239 1 0 0.025976297568135263 0.14906275451572254 4096 2048 384 12 96 360 72 24 0 2584 1920 0 384 1 12292318552 9120564 1 0 4 3 3 3 3 5898240 4423680 4423680 4426403 4492800 150 150 456 1376 452 1 0 0 1 49 0 0 0 0 0
256 255 1783879296231669100 REFRESH 43 0 0.49764332326491922 0 1 9 1 9 0 0 2583 18 416 3987750 55200 225.32710266113281 1.4330000000000001 387.20979999999997 20160 13476 0 0 0.025976297568135263 0.14906275451572254 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 12293051096 9853108 1 0 4 3 3 3 3 983040 737280 737280 737521 748800 25 25 76 225 65 0 0 1 1 16 0 0 0 0 0
257 256 1783879298551788300 DEPTH 43 1 0.49747933414281531 0 1 9 1 9 0 0 2589 56 2564 23678384 81600 1300.1349029541016 8.5829999999999984 2318.8795 120960 65577 1 0 0.025976297568135263 0.14906275451572254 4096 2048 384 12 96 360 72 24 0 2564 1920 0 384 1 12297525284 14327296 1 0 4 3 3 3 3 5898240 4423680 4423680 4426529 4492800 150 150 455 1256 553 0 0 1 1 54 0 0 0 0 0
258 257 1783879300861479000 DEPTH 43 1 0.49731884337713439 0 1 9 1 9 1 0 2593 40 2585 23685904 89280 1290.7561950683594 8.5858000000000008 2308.4766 120960 54651 1 0 0.037103923289790841 0.26143901161566629 4096 2048 384 12 96 360 72 24 0 2585 1920 0 384 1 12302020892 18822904 1 0 4 3 2 3 4 5898240 4423680 3932160 4426437 4992000 150 150 454 1292 539 0 0 0 0 40 0 0 0 0 2
259 258 1783879303229119600 DEPTH 43 1 0.49735714878000409 0 1 9 1 9 0 0 2606 61 2586 23692718 96000 1284.9557800292969 9.0975999999999999 2292.8719000000001 120960 43511 1 0 0.037103923289790841 0.26143901161566629 4096 2048 384 12 96 360 72 24 0 2586 1920 0 384 1 12306517520 23319532 1 0 4 3 3 3 3 5898240 4423680 3440640 4426562 5491200 150 150 549 889 848 0 0 0 5 56 0 0 0 0 0
260 259 1783879305576196900 DEPTH 43 1 0.49718326785530603 0 1 9 1 9 0 0 2609 55 2618 23678143 81600 1283.2283935546875 8.5731000000000002 2345.8317999999999 120960 29451 1 0 0.037103923289790841 0.26143901161566629 4096 2048 384 12 96 360 72 24 0 2618 1920 0 384 1 12311046788 27848800 1 0 4 3 3 3 3 5898240 4423680 4423680 4426486 4492800 150 150 570 1147 601 0 0 3 4 48 0 0 0 0 0
261 260 1783879305956828800 REFRESH 43 0 0.49701406579729007 0 1 9 1 9 0 0 2625 35 421 3987749 55200 225.14994812011719 1.4288000000000001 379.36169999999998 20160 13608 0 0 0.037103923289790841 0.26143901161566629 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 12311784432 28586444 1 0 4 3 3 3 3 983040 737280 737280 737523 748800 25 25 122 162 87 0 0 7 11 17 0 0 0 0 0
262 261 1783879308174594800 DEPTH 43 1 0.49684913742049147 0 1 9 1 9 0 0 2652 87 2551 23678146 81600 1297.9199676513672 8.6112000000000002 2216.6210000000001 120960 66312 1 1 0.037103923289790841 0.26143901161566629 4096 2048 384 12 96 360 72 24 0 2551 1920 0 384 1 12316245360 33047372 1 0 4 3 3 3 3 5898240 4423680 4423680 4426494 4492800 150 150 642 771 838 0 0 0 3 83 0 0 0 0 0
263 262 1783879310401022100 DEPTH 43 1 0.4966881175309239 0 1 9 1 9 0 0 2663 71 2548 23678130 81600 1291.2209930419922 8.5766000000000009 2225.1943999999999 120960 55358 1 0 0.037103923289790841 0.26143901161566629 4096 2048 384 12 96 360 72 24 0 2548 1920 0 384 1 12320703228 37505240 1 0 4 3 3 3 3 5898240 4423680 4423680 4426412 4492800 150 150 603 860 785 0 0 0 3 68 0 0 0 0 0
264 263 1783879312663660500 DEPTH 43 1 0.49653067693318292 0 1 9 1 9 0 0 2671 65 2542 23678123 81600 1286.7642517089844 8.5680999999999994 2261.2029000000002 120960 44339 1 0 0.037103923289790841 0.26143901161566629 4096 2048 384 12 96 360 72 24 0 2542 1920 0 384 1 12325154976 41956988 1 0 4 3 3 3 3 5898240 4423680 4423680 4426440 4492800 150 150 552 960 730 0 0 0 0 65 0 0 0 0 0
265 264 1783879314940363600 DEPTH 43 1 0.49637651883674316 0 1 9 1 9 0 0 2681 53 2555 23678327 81600 1283.2747497558594 8.5906000000000002 2275.5001999999999 120960 30089 1 0 0.037103923289790841 0.26143901161566629 4096 2048 384 12 96 360 72 24 0 2555 1920 0 384 1 12329619984 46421996 1 0 4 3 3 3 3 5898240 4423680 4423680 4426468 4492800 150 150 518 1005 732 0 0 0 1 52 0 0 0 0 0
266 265 1783879315322017000 REFRESH 43 0 0.49622537562153213 0 1 9 1 9 0 0 2682 15 421 3987767 55200 225.54521179199219 1.4275 380.4203 20160 13715 0 0 0.037103923289790841 0.26143901161566629 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 12330357628 47159640 1 0 4 3 3 3 3 983040 737280 737280 737526 748800 25 25 119 181 71 0 0 0 5 10 0 0 0 0 0
267 266 1783879317590372000 DEPTH 43 1 0.49607700592685466 0 1 9 1 9 0 0 2701 76 2553 23678152 81600 1297.7407989501953 8.6535999999999991 2267.1048999999998 120960 66361 1 0 0.037103923289790841 0.26143901161566629 4096 2048 384 12 96 360 72 24 0 2553 1920 0 384 1 12334820596 51622608 1 0 4 3 3 3 3 5898240 4423680 4423680 4426322 4492800 150 150 582 879 792 0 0 0 0 76 0 0 0 0 0
268 267 1783879319883084500 DEPTH 43 1 0.49593119203133451 0 1 9 1 9 0 0 2712 51 2552 23678195 81600 1286.3338012695312 8.6542999999999992 2291.3928000000001 120960 55207 1 0 0.037103923289790841 0.26143901161566629 4096 2048 384 12 96 360 72 24 0 2552 1920 0 384 1 12339282544 56084556 1 0 4 3 3 3 3 5898240 4423680 4423680 4426488 4492800 150 150 520 917 815 0 0 0 1 50 0 0 0 0 0
269 268 1783879322177757200 DEPTH 43 1 0.49578773749477323 0 1 9 1 9 0 0 2714 34 2559 23678195 81600 1285.3114624023438 8.5792999999999999 2293.48 120960 44051 1 0 0.037103923289790841 0.26143901161566629 4096 2048 384 12 96 360 72 24 0 2559 1920 0 384 1 12343751632 60553644 1 0 4 3 3 3 3 5898240 4423680 4423680 4426391 4492800 150 150 517 1069 673 0 0 0 0 34 0 0 0 0 0
270 269 1783879324486424000 DEPTH 43 1 0.49564646503573612 0 1 9 1 9 0 0 2717 43 2554 23678234 81600 1283.6395568847656 8.6240000000000006 2307.5297 120960 30568 1 0 0.037103923289790841 0.26143901161566629 4096 2048 384 12 96 360 72 24 0 2554 1920 0 384 1 12348215620 65017632 1 0 4 3 3 3 3 5898240 4423680 4423680 4426455 4492800 150 150 517 1167 570 0 0 1 0 42 0 0 0 0 0
271 270 1783879324858604300 REFRESH 43 0 0.49550721462129416 0 1 9 1 9 0 0 2719 14 420 3987730 55200 224.73933410644531 1.4313 370.92689999999999 20160 13602 0 0 0.037103923289790841 0.26143901161566629 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 12348952244 65754256 1 0 4 3 3 3 3 983040 737280 737280 737503 748800 25 25 119 180 71 0 0 2 3 9 0 0 0 0 0
272 271 1783879328155923400 DEPTH 43 1 0.49536984174770782 0 1 9 1 9 0 0 2728 77 2561 23678368 81600 1299.562744140625 8.5849000000000011 3296.1628999999998 120960 65805 1 0 0.037103923289790841 0.26143901161566629 4096 2048 384 12 96 360 72 24 0 2561 1920 0 384 1 12353423452 3116644 1 0 4 3 3 3 3 5898240 4423680 4423680 4426425 4492800 150 150 562 873 826 0 0 1 0 76 0 0 0 0 0
273 272 1783879330421365800 DEPTH 43 1 0.49523421589296029 0 1 9 1 9 0 0 2741 58 2580 23678259 81600 1290.6690673828125 8.5704999999999991 2264.2530000000002 120960 54930 1 0 0.037103923289790841 0.26143901161566629 4096 2048 384 12 96 360 72 24 0 2580 1920 0 384 1 12357913960 7607152 1 0 4 3 3 3 3 5898240 4423680 4423680 4426432 4492800 150 150 549 992 739 0 0 0 0 58 0 0 0 0 0
274 273 1783879332729726200 DEPTH 43 1 0.49510021912395663 0 1 9 1 9 0 0 2751 50 2569 23678201 81600 1284.5444793701172 8.6921999999999997 2307.2201 120960 43663 1 0 0.037103923289790841 0.26143901161566629 4096 2048 384 12 96 360 72 24 0 2569 1920 0 384 1 12362393248 12086440 1 0 4 3 3 3 3 5898240 4423680 4423680 4426442 4492800 150 150 543 1038 688 0 0 2 0 48 0 0 0 0 0
275 274 1783879335099145100 DEPTH 43 1 0.49496774484292339 0 1 9 1 9 0 0 2756 37 2568 23678260 81600 1286.3561096191406 8.6081000000000003 2292.6714999999999 120960 30172 1 0 0.037103923289790841 0.26143901161566629 4096 2048 384 12 96 360 72 24 0 2568 1920 0 384 1 12366871516 16564708 1 0 4 3 3 3 3 5898240 4423680 4423680 4426430 4492800 150 150 543 1123 602 0 0 0 0 37 0 0 0 0 0
276 275 1783879335485005200 REFRESH 43 0 0.49483669665909052 0 1 9 1 9 0 0 2758 18 420 3987714 55200 225.71110534667969 1.4339 384.51900000000001 20160 13497 0 0 0.037103923289790841 0.26143901161566629 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 12367608140 17301332 1 0 4 3 3 3 3 983040 737280 737280 737486 748800 25 25 121 175 74 0 0 0 4 14 0 0 0 0 0
277 276 1783879337759894500 DEPTH 43 1 0.49470698737312857 0 1 9 1 9 0 0 2767 53 2554 23678335 81600 1294.4888916015625 8.5945999999999998 2273.7208999999998 120960 65696 1 0 0.037103923289790841 0.26143901161566629 4096 2048 384 12 96 360 72 24 0 2554 1920 0 384 1 12372072128 21765320 1 0 4 3 3 3 3 5898240 4423680 4423680 4426502 4492800 150 150 555 797 902 0 0 1 0 52 0 0 0 0 0
278 277 1783879340070401500 DEPTH 43 1 0.49457853806306679 0 1 9 1 9 0 0 2774 54 2570 23678448 81600 1289.0151672363281 8.5851000000000006 2309.3020000000001 120960 55076 1 0 0.037103923289790841 0.26143901161566629 4096 2048 384 12 96 360 72 24 0 2570 1920 0 384 1 12376552436 26245628 1 0 4 3 3 3 3 5898240 4423680 4423680 4426501 4492800 150 150 551 941 778 0 0 0 0 54 0 0 0 0 0
279 278 1783879342391626000 DEPTH 43 1 0.4944512772615462 0 1 9 1 9 0 0 2781 51 2568 23678306 81600 1284.7913055419922 8.5957000000000008 2320.0318000000002 120960 45143 1 0 0.037103923289790841 0.26143901161566629 4096 2048 384 12 96 360 72 24 0 2568 1920 0 384 1 12381030704 30723896 1 0 4 3 3 3 3 5898240 4423680 4423680 4426443 4492800 150 150 540 1122 606 0 0 0 0 51 0 0 0 0 0
280 279 1783879344701409400 DEPTH 43 1 0.49432514021527396 0 1 9 1 9 0 0 2786 47 2563 23678257 81600 1282.7403259277344 8.5835999999999988 2308.4614000000001 120960 30292 1 0 0.037103923289790841 0.26143901161566629 4096 2048 384 12 96 360 72 24 0 2563 1920 0 384 1 12385503872 35197064 1 0 4 3 3 3 3 5898240 4423680 4423680 4426466 4492800 150 150 533 1211 519 0 0 0 2 45 0 0 0 0 0
281 280 1783879345079866700 REFRESH 43 0 0.49420006821846196 0 1 9 1 9 0 0 2791 16 420 3987777 55200 225.5032958984375 1.4335 376.9744 20160 13424 0 0 0.037103923289790841 0.26143901161566629 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 12386240496 35933688 1 0 4 3 3 3 3 983040 737280 737280 737522 748800 25 25 123 173 74 0 0 0 4 12 0 0 0 0 0
282 281 1783879347380321900 DEPTH 43 1 0.49407600801285112 0 1 9 1 9 0 0 2797 60 2565 23678255 81600 1299.8233642578125 8.5783000000000005 2299.2235999999998 120960 65901 1 0 0.037103923289790841 0.26143901161566629 4096 2048 384 12 96 360 72 24 0 2565 1920 0 384 1 12390715704 40408896 1 0 4 3 3 3 3 5898240 4423680 4423680 4426406 4492800 150 150 591 999 675 0 0 0 0 60 0 0 0 0 0
283 282 1783879349685736100 DEPTH 43 1 0.49395291124766461 0 1 9 1 9 0 0 2802 59 2568 23678214 81600 1290.2761077880859 8.5865000000000009 2304.2716 120960 55171 1 0 0.037103923289790841 0.26143901161566629 4096 2048 384 12 96 360 72 24 0 2568 1920 0 384 1 12395193972 44887164 1 0 4 3 3 3 3 5898240 4423680 4423680 4426371 4492800 150 150 571 1070 627 0 0 0 1 58 0 0 0 0 0
284 283 1783879351992581800 DEPTH 43 1 0.49383073399349842 0 1 9 1 9 0 0 2807 53 2566 23678408 81600 1287.3214111328125 8.575899999999999 2305.6143000000002 120960 43819 1 0 0.037103923289790841 0.26143901161566629 4096 2048 384 12 96 360 72 24 0 2566 1920 0 384 1 12399670200 49363392 1 0 4 3 3 3 3 5898240 4423680 4423680 4426462 4492800 150 150 554 1135 577 0 0 0 1 52 0 0 0 0 0
285 284 1783879354298025600 DEPTH 43 1 0.49370943630475633 0 1 9 1 9 1 0 2812 54 2573 23678335 81600 1283.8584136962891 8.8619000000000003 2304.2584000000002 120960 30366 1 0 0.037103711830741314 0.25419441036366852 4096 2048 384 12 96 360 72 24 0 2573 1920 0 384 1 12404153568 53846760 1 0 4 3 3 3 3 5898240 4423680 4423680 4426467 4492800 150 150 557 1200 516 0 0 0 1 53 0 0 0 0 1
286 285 1783879354684877700 REFRESH 43 0 0.49360217258055294 0 1 9 1 9 0 0 2812 16 423 3987743 55200 224.91853332519531 1.4306000000000001 385.41289999999998 20160 13616 0 0 0.037103711830741314 0.25419441036366852 4096 2048 64 1 16 60 12 4 0 423 320 0 64 0 12404893252 54586444 1 0 4 3 3 3 3 983040 737280 737280 737497 748800 25 25 125 177 71 0 0 2 1 13 0 0 0 0 0
287 286 1783879356985985200 DEPTH 43 1 0.49348120911557991 0 1 9 1 9 0 0 2823 48 2574 23678256 81600 1300.8519439697266 8.5727000000000011 2299.9122000000002 120960 66361 1 0 0.037103711830741314 0.25419441036366852 4096 2048 384 12 96 360 72 24 0 2574 1920 0 384 1 12409377640 59070832 1 0 4 3 3 3 3 5898240 4423680 4423680 4426412 4492800 150 150 603 1081 590 0 0 1 5 42 0 0 0 0 0
288 287 1783879359302034700 DEPTH 43 1 0.493361157443587 0 1 9 1 9 0 0 2825 36 2579 23678316 81600 1293.1573181152344 8.5838000000000001 2314.6305000000002 120960 55490 1 0 0.037103711830741314 0.25419441036366852 4096 2048 384 12 96 360 72 24 0 2579 1920 0 384 1 12413867128 63560320 1 0 4 3 3 3 3 5898240 4423680 4423680 4426469 4492800 150 150 567 1108 604 0 0 2 5 29 0 0 0 0 0
289 288 1783879362693176200 DEPTH 43 1 0.49324197679868931 0 1 9 1 9 0 0 2830 41 2595 23678357 81600 1286.6734008789062 8.6277000000000008 3389.7507999999998 120960 44006 1 0 0.037103711830741314 0.25419441036366852 4096 2048 384 12 96 360 72 24 0 2595 1920 0 384 1 12418373016 957772 1 0 4 3 3 3 3 5898240 4423680 4423680 4426473 4492800 150 150 569 1190 536 0 0 2 1 38 0 0 0 0 0
290 289 1783879365001897700 DEPTH 43 1 0.49312363010436461 0 1 9 1 9 0 0 2834 31 2578 23678363 81600 1286.3795166015625 8.5681999999999992 2307.5502000000001 120960 30073 1 0 0.037103711830741314 0.25419441036366852 4096 2048 384 12 96 360 72 24 0 2578 1920 0 384 1 12422861484 5446240 1 0 4 3 3 3 3 5898240 4423680 4423680 4426419 4492800 150 150 563 1229 486 0 0 0 0 31 0 0 0 0 0
291 290 1783879365466629500 REFRESH 43 0 0.49300608360871523 0 1 9 1 9 0 0 2834 12 420 3987760 55200 225.40287780761719 1.4234 385.61939999999998 20160 13714 0 0 0.037103711830741314 0.25419441036366852 4096 2048 64 1 16 60 12 4 0 420 320 0 64 0 12423598108 6182864 1 0 4 3 3 3 3 983040 737280 737280 737507 748800 25 25 126 176 68 0 0 1 1 10 0 0 0 0 0
292 291 1783879367766003300 DEPTH 43 1 0.4928893065561446 0 1 9 1 9 0 0 2838 51 2575 23678326 81600 1297.6835784912109 8.5833999999999993 2298.2539999999999 120960 66336 1 0 0.037103711830741314 0.25419441036366852 4096 2048 384 12 96 360 72 24 0 2575 1920 0 384 1 12428083516 10668272 1 0 4 3 3 3 3 5898240 4423680 4423680 4426414 4492800 150 150 599 986 690 0 0 5 0 46 0 0 0 0 0
293 292 1783879370087156500 DEPTH 43 1 0.49277327089180933 0 1 9 1 9 0 0 2840 38 2568 23678329 81600 1292.3975524902344 8.593 2320.0093000000002 120960 55172 1 0 0.037103711830741314 0.25419441036366852 4096 2048 384 12 96 360 72 24 0 2568 1920 0 384 1 12432561784 15146540 1 0 4 3 3 3 3 5898240 4423680 4423680 4426481 4492800 150 150 580 1106 582 0 0 2 2 34 0 0 0 0 0
294 293 1783879372398226200 DEPTH 43 1 0.49265795099556803 0 1 9 1 9 0 0 2848 42 2572 23678332 81600 1287.6245727539062 8.6082000000000001 2309.7806999999998 120960 44417 1 0 0.037103711830741314 0.25419441036366852 4096 2048 384 12 96 360 72 24 0 2572 1920 0 384 1 12437044132 19628888 1 0 4 3 3 3 3 5898240 4423680 4423680 4426447 4492800 150 150 563 1175 534 0 0 0 0 42 0 0 0 0 0
295 294 1783879374725029600 DEPTH 43 1 0.49254332344248103 0 1 9 1 9 0 0 2851 33 2573 23678329 81600 1284.5588531494141 8.5778000000000016 2325.6414 120960 30358 1 0 0.037103711830741314 0.25419441036366852 4096 2048 384 12 96 360 72 24 0 2573 1920 0 384 1 12441527500 24112256 1 0 4 3 3 3 3 5898240 4423680 4423680 4426414 4492800 150 150 562 1198 513 0 0 1 0 32 0 0 0 0 0
296 295 1783879375100669100 REFRESH 43 0 0.49242936678720406 0 1 9 1 9 0 0 2854 9 421 3987744 55200 224.61541748046875 1.4322999999999999 374.40499999999997 20160 13496 0 0 0.037103711830741314 0.25419441036366852 4096 2048 64 1 16 60 12 4 0 421 320 0 64 0 12442265144 24849900 1 0 4 3 3 3 3 983040 737280 737280 737503 748800 25 25 126 174 71 0 0 1 0 8 0 0 0 0 0
297 296 1783879377403451200 DEPTH 43 1 0.49131606136988965 0 1 9 1 9 0 0 2860 36 2550 23678429 81600 1300.5414276123047 8.5868000000000002 2301.5686000000001 120960 65958 1 0 0.037103711830741314 0.25419441036366852 4096 2048 384 12 96 360 72 24 0 2550 1920 0 384 1 12446725052 29309808 1 0 4 3 3 3 3 5898240 4423680 4423680 4426415 4492800 150 150 602 1057 591 0 0 0 0 36 0 0 0 0 0
298 297 1783879379700571800 DEPTH 43 1 0.4913033891414445 0 1 9 1 9 0 0 2864 34 2561 23678425 81600 1291.9184417724609 8.5831999999999997 2295.6264999999999 120960 54928 1 0 0.037103711830741314 0.25419441036366852 4096 2048 384 12 96 360 72 24 0 2561 1920 0 384 1 12451196180 33780936 1 0 4 3 3 3 3 5898240 4423680 4423680 4426515 4492800 150 150 577 1164 520 0 0 0 0 34 0 0 0 0 0
299 298 1783879381984688700 DEPTH 43 1 0.49128133350621006 0 1 9 1 9 0 0 2871 37 2583 23678372 81600 1288.1753387451172 8.6801999999999992 2282.9252000000001 120960 43871 1 0 0.037103711830741314 0.25419441036366852 4096 2048 384 12 96 360 72 24 0 2583 1920 0 384 1 12455689748 38274504 1 0 4 3 3 3 3 5898240 4423680 4423680 4426469 4492800 150 150 559 1232 492 0 0 0 0 37 0 0 0 0 0
300 299 1783879384292575900 DEPTH 43 1 0.49125087918032301 0 1 9 1 9 0 0 2874 36 2604 23678384 81600 1285.7407531738281 8.5904000000000007 2306.6370999999999 120960 30622 1 0 0.037103711830741314 0.25419441036366852 4096 2048 384 12 96 360 72 24 0 2604 1920 0 384 1 12460204736 42789492 1 0 4 3 3 3 3 5898240 4423680 4423680 4426477 4492800 150 150 550 1235 519 0 0 0 0 36 0 0 0 0 0
301 300 1783879384680744900 REFRESH 43 0 0.49121291206418966 0 1 9 1 9 0 0 2874 11 419 3987773 55200 224.59904479980469 1.4511000000000001 386.62290000000002 20160 13388 0 0 0.037103711830741314 0.25419441036366852 4096 2048 64 1 16 60 12 4 0 419 320 0 64 0 12460940340 43525096 1 0 4 3 3 3 3 983040 737280 737280 737514 748800 25 25 124 174 71 0 0 1 0 10 0 0 0 0 0
302 301 1783879386981245300 DEPTH 43 1 0.49116822912766361 0 1 9 1 9 0 0 2878 34 2558 23678332 81600 1299.1649017333984 8.5779999999999994 2299.3213000000001 120960 65703 1 0 0.037103711830741314 0.25419441036366852 4096 2048 384 12 96 360 72 24 0 2558 1920 0 384 1 12465408408 47993164 1 0 4 3 3 3 3 5898240 4423680 4423680 4426408 4492800 150 150 614 1077 567 0 0 0 2 32 0 0 0 0 0
303 302 1783879389301156100 DEPTH 43 1 0.49111754730665658 0 1 9 1 9 0 0 2883 37 2589 23678412 81600 1292.5334320068359 8.6077000000000012 2318.5468000000001 120960 55011 1 0 0.037103711830741314 0.25419441036366852 4096 2048 384 12 96 360 72 24 0 2589 1920 0 384 1 12469908096 52492852 1 0 4 3 3 3 3 5898240 4423680 4423680 4426396 4492800 150 150 589 1093 607 0 0 0 0 37 0 0 0 0 0
304 303 1783879391598108700 DEPTH 43 1 0.49106151151004057 0 1 9 1 9 0 0 2887 33 2597 23678353 81600 1289.7640991210938 8.5787000000000013 2295.6581000000001 120960 43594 1 0 0.037103711830741314 0.25419441036366852 4096 2048 384 12 96 360 72 24 0 2597 1920 0 384 1 12474415944 57000700 1 0 4 3 3 3 3 5898240 4423680 4423680 4426414 4492800 150 150 590 1143 564 0 0 1 0 32 0 0 0 0 0
305 304 1783879393910816100 DEPTH 43 1 0.49100070182581224 0 1 9 1 9 0 0 2890 29 2571 23678330 81600 1284.216796875 8.7731999999999992 2311.5077000000001 120960 29759 1 0 0.037103711830741314 0.25419441036366852 4096 2048 384 12 96 360 72 24 0 2571 1920 0 384 1 12478897272 61482028 1 0 4 3 3 3 3 5898240 4423680 4423680 4426419 4492800 150 150 588 1210 473 0 0 0 0 29 0 0 0 0 0
306 305 1783879394288814200 REFRESH 43 0 0.49093564000659534 0 1 9 1 9 0 0 2891 9 419 3987778 55200 225.08460998535156 1.4334 376.69200000000001 20160 13572 0 0 0.037103711830741314 0.25419441036366852 4096 2048 64 1 16 60 12 4 0 419 320 0 64 0 12479632876 62217632 1 0 4 3 3 3 3 983040 737280 737280 737509 748800 25 25 128 173 68 0 0 0 0 9 0 0 0 0 0
307 306 1783879396669161900 DEPTH 43 1 0.48986679530654642 0 1 9 1 9 0 0 2894 36 2575 23678383 81600 1300.8249206542969 8.5765999999999991 2301.2352000000001 120960 66030 1 0 0.037103711830741314 0.25419441036366852 4096 2048 384 12 96 360 72 24 0 2575 1920 0 384 1 12484118284 66703040 1 0 4 3 3 3 3 5898240 4423680 4423680 4426441 4492800 150 150 616 1062 597 0 0 0 0 36 0 0 0 0 0
308 307 1783879400029548200 DEPTH 43 1 0.48989458973452582 0 1 9 1 9 0 0 2897 32 2588 23678384 81600 1292.4856262207031 8.5784000000000002 3358.8049000000001 120960 55124 1 0 0.037103711830741314 0.25419441036366852 4096 2048 384 12 96 360 72 24 0 2588 1920 0 384 1 12488617032 4092968 1 0 4 3 3 3 3 5898240 4423680 4423680 4426472 4492800 150 150 600 1138 550 0 0 2 1 29 0 0 0 0 0
309 308 1783879402358185500 DEPTH 43 1 0.4899094027819072 0 1 9 1 9 0 0 2899 40 2574 23678472 81600 1285.7127990722656 8.5967999999999982 2327.3083999999999 120960 43487 1 0 0.037103711830741314 0.25419441036366852 4096 2048 384 12 96 360 72 24 0 2574 1920 0 384 1 12493101420 8577356 1 0 4 3 3 3 3 5898240 4423680 4423680 4426436 4492800 150 150 602 1183 489 0 0 0 0 40 0 0 0 0 0
310 309 1783879404672509000 DEPTH 43 1 0.48991257567756252 0 1 9 1 9 0 0 2901 30 2579 23678469 81600 1287.5295867919922 8.5800999999999998 2313.1385 120960 29137 1 0 0.037103711830741314 0.25419441036366852 4096 2048 384 12 96 360 72 24 0 2579 1920 0 384 1 12497590908 13066844 1 0 4 3 3 3 3 5898240 4423680 4423680 4426537 4492800 150 150 588 1209 482 0 0 0 0 30 0 0 0 0 0
311 310 1783879405055959200 REFRESH 43 0 0.48990531521730651 0 1 9 1 9 0 0 2903 17 422 3987792 55200 224.97587585449219 1.4418 382.04820000000001 20160 13535 0 0 0.037103711830741314 0.25419441036366852 4096 2048 64 1 16 60 12 4 0 422 320 0 64 0 12498329572 13805508 1 0 4 3 3 3 3 983040 737280 737280 737510 748800 25 25 126 178 68 0 0 4 1 12 0 0 0 0 0
312 311 1783879407376369600 DEPTH 43 1 0.48988870721035377 0 1 9 1 9 0 0 2907 52 2590 23678011 81600 1299.9854736328125 8.5800000000000001 2319.1246999999998 134400 76924 1 0 0.037103711830741314 0.25419441036366852 4096 2048 384 12 96 360 72 24 0 2590 1920 0 384 1 12502830280 18306216 1 0 4 4 3 2 3 5898240 4915200 4423680 3934571 4492800 150 150 621 1057 612 0 0 0 7 45 0 0 0 0 0
313 312 1783879409699091700 DEPTH 43 1 0.48986372858108984 0 1 9 1 9 0 0 2908 33 2579 23677305 81600 1292.3205108642578 8.6009000000000011 2321.5118000000002 161280 71118 1 0 0.037103711830741314 0.25419441036366852 4096 2048 384 12 96 360 72 24 0 2579 1920 0 384 1 12507319768 22795704 1 0 4 4 3 2 3 5898240 5898240 4423680 2950968 4492800 150 150 612 1056 611 0 0 0 0 33 0 0 0 0 0
314 313 1783879412028584300 DEPTH 43 1 0.48983125826062357 0 1 9 1 9 0 0 2910 21 2581 23677444 81600 1288.8810424804688 8.5961999999999996 2328.3640999999998 154560 61187 1 0 0.037103711830741314 0.25419441036366852 4096 2048 384 12 96 360 72 24 0 2581 1920 0 384 1 12511811296 27287232 1 0 4 4 3 2 3 5898240 5652480 4423680 3196889 4492800 150 150 613 1137 531 0 0 0 0 21 0 0 0 0 0
315 314 1783879414351561900 DEPTH 43 1 0.48979208698914517 0 1 9 1 9 0 0 2915 37 2597 23677366 81600 1282.5807342529297 8.5868000000000002 2321.8474000000001 161280 43370 1 0 0.037103711830741314 0.25419441036366852 4096 2048 384 12 96 360 72 24 0 2597 1920 0 384 1 12516319144 31795080 1 0 4 4 3 2 3 5898240 5898240 4423680 2950971 4492800 150 150 610 1174 513 0 0 0 0 37 0 0 0 0 0
316 315 1783879414728382100 REFRESH 43 0 0.48974692613800819 0 1 9 1 9 0 0 2930 39 414 3987607 55200 223.70918273925781 1.4349000000000001 375.43349999999998 26880 16550 0 0 0.037103711830741314 0.25419441036366852 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 12517049648 32525584 1 0 4 4 3 2 3 983040 983040 737280 491693 748800 25 25 25 233 106 0 0 0 26 13 0 0 0 0 0
317 316 1783879416990495800 DEPTH 43 1 0.48969641564956529 0 1 9 1 9 0 0 2946 75 2587 23677251 81600 1298.0868988037109 9.9070999999999998 2260.9297000000001 147840 93211 1 0 0.037103711830741314 0.25419441036366852 4096 2048 384 12 96 360 72 24 0 2587 1920 0 384 1 12521547296 37023232 1 0 4 4 3 2 3 5898240 5406720 4423680 3442783 4492800 150 150 150 1200 937 0 0 0 0 75 0 0 0 0 0
318 317 1783879419284720800 DEPTH 43 1 0.48964113118298203 0 1 9 1 9 0 0 2949 39 2573 23677702 81600 1290.1380767822266 8.5845000000000002 2292.6196 134400 72534 1 0 0.037103711830741314 0.25419441036366852 4096 2048 384 12 96 360 72 24 0 2573 1920 0 384 1 12526030664 41506600 1 0 4 3 3 3 3 5898240 4915200 4423680 3934668 4492800 150 150 150 1242 881 0 0 0 0 39 0 0 0 0 0
319 318 1783879421593571700 DEPTH 43 1 0.48958159054543138 0 1 9 1 9 0 0 2951 38 2597 23677838 81600 1285.138427734375 8.5789000000000009 2307.6707000000001 120960 45766 1 0 0.037103711830741314 0.25419441036366852 4096 2048 384 12 96 360 72 24 0 2597 1920 0 384 1 12530538512 46014448 1 0 4 3 3 3 3 5898240 4423680 4423680 4426437 4492800 150 150 150 1382 765 0 0 0 0 38 0 0 0 0 0
320 319 1783879423900778800 DEPTH 43 1 0.48951825948013272 0 1 9 1 9 0 0 2957 43 2571 23677935 81600 1282.7955169677734 8.5842999999999989 2306.0250000000001 120960 32979 1 0 0.037103711830741314 0.25419441036366852 4096 2048 384 12 96 360 72 24 0 2571 1920 0 384 1 12535019840 50495776 1 0 4 3 3 3 3 5898240 4423680 4423680 4426429 4492800 150 150 150 1447 674 0 0 0 1 42 0 0 0 0 0
321 320 1783879424269059700 REFRESH 43 0 0.48945155687554986 0 1 9 1 9 0 0 2960 18 409 3987686 55200 224.09625244140625 1.4311 367.09050000000002 20160 12179 0 0 0.037103711830741314 0.25419441036366852 4096 2048 64 1 16 60 12 4 0 409 320 0 64 0 12535745244 51221180 1 0 4 3 3 3 3 983040 737280 737280 737521 748800 25 25 25 229 105 0 0 0 4 14 0 0 0 0 0
322 321 1783879426510740700 DEPTH 43 1 0.48938185945363361 0 1 9 1 9 0 0 2978 63 2567 23677857 81600 1295.0448303222656 8.5841999999999992 2240.5462000000002 120960 60325 1 0 0.037103711830741314 0.25419441036366852 4096 2048 384 12 96 360 72 24 0 2567 1920 0 384 1 12540222492 55698428 1 0 4 3 3 3 3 5898240 4423680 4423680 4426436 4492800 150 150 150 904 1213 0 0 0 0 63 0 0 0 0 0
323 322 1783879428907432200 DEPTH 43 1 0.48930950598920497 0 1 9 1 9 0 0 2983 35 2569 23678002 81600 1288.1758728027344 8.9938000000000002 2318.3569000000002 120960 49464 1 0 0.037103711830741314 0.25419441036366852 4096 2048 384 12 96 360 72 24 0 2569 1920 0 384 1 12544701780 60177716 1 0 4 3 3 3 3 5898240 4423680 4423680 4426372 4492800 150 150 150 927 1192 0 0 0 0 35 0 0 0 0 0
324 323 1783879431215626700 DEPTH 43 1 0.48923480110736567 0 1 9 1 9 1 0 2987 40 2579 23678227 81600 1288.02099609375 8.6052 2307.0097999999998 120960 39090 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2579 1920 0 384 1 12549191268 64667204 1 0 4 3 3 3 3 5898240 4423680 4423680 4426456 4492800 150 150 150 1095 1034 0 0 0 1 39 0 0 0 0 1
325 324 1783879434567634600 DEPTH 43 1 0.48916015625905906 0 1 9 1 9 0 0 2990 46 2572 23678031 81600 1283.2387847900391 8.6525999999999996 3350.8148999999999 120960 27272 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2572 1920 0 384 1 12553673696 2041196 1 0 4 3 3 3 3 5898240 4423680 4423680 4426569 4492800 150 150 150 1359 763 0 0 0 2 44 0 0 0 0 0
326 325 1783879434938793900 REFRESH 43 0 0.48908132880941002 0 1 9 1 9 0 0 2992 8 410 3987667 55200 224.83967590332031 1.4286000000000001 370.0068 20160 12763 0 0 0.03710369420162668 0.24547566744898053 4096 2048 64 1 16 60 12 4 0 410 320 0 64 0 12554400120 2767620 1 0 4 3 3 3 3 983040 737280 737280 737489 748800 25 25 25 231 104 0 0 0 0 8 0 0 0 0 0
327 326 1783879437159212700 DEPTH 43 1 0.4870009127964619 0 1 9 1 9 0 0 3007 80 2544 23677992 81600 1295.3518371582031 8.5845000000000002 2219.2242000000001 120960 61286 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2544 1920 0 384 1 12558853908 7221408 1 0 4 3 3 3 3 5898240 4423680 4423680 4426471 4492800 150 150 150 1127 967 0 0 0 0 80 0 0 0 0 0
328 327 1783879439399972500 DEPTH 43 1 0.48711910503474237 0 1 9 1 9 0 0 3015 49 2555 23677967 81600 1289.0111694335938 8.5951000000000004 2239.5756000000001 120960 49933 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2555 1920 0 384 1 12563318916 11686416 1 0 4 3 3 3 3 5898240 4423680 4423680 4426455 4492800 150 150 150 1246 859 0 0 0 0 49 0 0 0 0 0
329 328 1783879441648417500 DEPTH 43 1 0.48721608239807329 0 1 9 1 9 0 0 3020 31 2536 23678165 81600 1288.9016265869141 8.5846999999999998 2247.1459 120960 40055 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2536 1920 0 384 1 12567764544 16132044 1 0 4 3 3 3 3 5898240 4423680 4423680 4426472 4492800 150 150 150 1420 666 0 0 0 0 31 0 0 0 0 0
330 329 1783879443936194600 DEPTH 43 1 0.48729400381614163 0 1 9 1 9 0 0 3023 32 2564 23678315 81600 1284.9633331298828 8.5861000000000001 2286.3629999999998 120960 26624 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2564 1920 0 384 1 12572238732 20606232 1 0 4 3 3 3 3 5898240 4423680 4423680 4426472 4492800 150 150 150 1502 612 0 0 0 0 32 0 0 0 0 0
331 330 1783879444310817100 REFRESH 43 0 0.48735481207138165 0 1 9 1 9 0 0 3028 19 412 3987719 55200 225.97853088378906 1.4263999999999999 373.14460000000003 20160 13016 0 0 0.03710369420162668 0.24547566744898053 4096 2048 64 1 16 60 12 4 0 412 320 0 64 0 12572967196 21334696 1 0 4 3 3 3 3 983040 737280 737280 737510 748800 25 25 25 240 97 0 0 0 5 14 0 0 0 0 0
332 331 1783879446545182500 DEPTH 43 1 0.48740025541613879 0 1 9 1 9 0 0 3060 112 2539 23678033 81600 1298.2763214111328 8.7144999999999992 2233.2161000000001 120960 61400 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2539 1920 0 384 1 12577415884 25783384 1 0 4 3 3 3 3 5898240 4423680 4423680 4426477 4492800 150 150 150 1073 1016 0 0 0 0 112 0 0 0 0 0
333 332 1783879448789455900 DEPTH 43 1 0.48743190702808675 0 1 9 1 9 0 0 3069 64 2520 23678037 81600 1287.1045227050781 8.5772999999999993 2243.0565000000001 120960 49851 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2520 1920 0 384 1 12581845192 30212692 1 0 4 3 3 3 3 5898240 4423680 4423680 4426473 4492800 150 150 150 1151 919 2 0 0 0 62 0 0 0 0 0
334 333 1783879451032467800 DEPTH 43 1 0.48745118252007302 0 1 9 1 9 0 0 3072 63 2538 23677978 81600 1287.6564636230469 8.5907999999999998 2241.5643 120960 39621 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2538 1920 0 384 1 12586292860 34660360 1 0 4 3 3 3 3 5898240 4423680 4423680 4426386 4492800 150 150 150 1339 749 0 0 0 0 63 0 0 0 0 0
335 334 1783879453318586200 DEPTH 43 1 0.48745935569895099 0 1 9 1 9 0 0 3079 48 2536 23678142 81600 1284.3647003173828 8.5787999999999993 2284.8917000000001 120960 28032 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2536 1920 0 384 1 12590738488 39105988 1 0 4 3 3 3 3 5898240 4423680 4423680 4426472 4492800 150 150 150 1429 657 0 0 0 0 48 0 0 0 0 0
336 335 1783879453683943500 REFRESH 43 0 0.4874575727484996 0 1 9 1 9 0 0 3081 20 412 3987815 55200 224.62258911132812 1.4323999999999999 363.93340000000001 20160 12531 0 0 0.03710369420162668 0.24547566744898053 4096 2048 64 1 16 60 12 4 0 412 320 0 64 0 12591466952 39834452 1 0 4 3 3 3 3 983040 737280 737280 737497 748800 25 25 25 240 97 0 0 0 1 19 0 0 0 0 0
337 336 1783879455923694000 DEPTH 43 1 0.48744686499402284 0 1 9 1 9 0 0 3113 91 2529 23678220 81600 1298.7698516845703 8.7070000000000007 2238.4479000000001 120960 60464 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2529 1920 0 384 1 12595905440 44272940 1 0 4 3 3 3 3 5898240 4423680 4423680 4426380 4492800 150 150 150 1033 1046 0 0 0 0 91 0 0 0 0 0
338 337 1783879458168717500 DEPTH 43 1 0.48742816039046144 0 1 9 1 9 0 0 3134 99 2535 23678124 81600 1288.887451171875 8.5907999999999998 2243.7736 120960 49981 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2535 1920 0 384 1 12600350048 48717548 1 0 4 3 3 3 3 5898240 4423680 4423680 4426503 4492800 150 150 150 1247 838 1 0 0 0 98 0 0 0 0 0
339 338 1783879460542331500 DEPTH 43 1 0.48740229386166567 0 1 9 1 9 0 0 3141 44 2540 23678138 81600 1283.7455291748047 8.5733999999999995 2297.1381000000001 120960 39612 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2540 1920 0 384 1 12604799756 53167256 1 0 4 3 3 3 3 5898240 4423680 4423680 4426508 4492800 150 150 150 1222 868 0 0 0 1 43 0 0 0 0 0
340 339 1783879462868612900 DEPTH 43 1 0.48737001660571377 0 1 9 1 9 0 0 3146 49 2541 23678129 81600 1282.2210540771484 8.6414000000000009 2324.9220999999998 120960 28189 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2541 1920 0 384 1 12609250484 57617984 1 0 4 3 3 3 3 5898240 4423680 4423680 4426473 4492800 150 150 150 1401 690 1 0 0 1 47 0 0 0 0 0
341 340 1783879463236014400 REFRESH 43 0 0.48733200446967162 0 1 9 1 9 0 0 3149 18 408 3987712 55200 224.81817626953125 1.4328000000000001 366.20749999999998 20160 12536 0 0 0.03710369420162668 0.24547566744898053 4096 2048 64 1 16 60 12 4 0 408 320 0 64 0 12609974868 58342368 1 0 4 3 3 3 3 983040 737280 737280 737523 748800 25 25 25 237 96 1 0 0 2 15 0 0 0 0 0
342 341 1783879465499502800 DEPTH 43 1 0.4872888654868508 0 1 9 1 9 0 0 3181 109 2545 23678375 81600 1301.3000640869141 8.5901999999999994 2262.3002999999999 120960 60641 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2545 1920 0 384 1 12614429676 62797176 1 0 4 3 3 3 3 5898240 4423680 4423680 4426498 4492800 150 150 150 929 1166 1 0 0 1 107 0 0 0 0 0
343 342 1783879468794244000 DEPTH 43 1 0.48724114666031371 0 1 9 1 9 0 0 3217 156 2539 23678338 81600 1290.7837066650391 8.5942000000000007 3293.6183999999998 120960 50085 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2539 1920 0 384 1 12618878444 137508 1 0 4 3 3 3 3 5898240 4423680 4423680 4426437 4492800 150 150 150 1046 1043 0 0 0 0 156 0 0 0 0 0
344 343 1783879471042170900 DEPTH 43 1 0.48718934006800402 0 1 9 1 9 0 0 3234 91 2538 23678135 81600 1286.8863220214844 8.583400000000001 2246.75 120960 40251 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2538 1920 0 384 1 12623326112 4585176 1 0 4 3 3 3 3 5898240 4423680 4423680 4426450 4492800 150 150 150 1180 908 0 0 0 0 91 0 0 0 0 0
345 344 1783879473319140500 DEPTH 43 1 0.48713388835733745 0 1 9 1 9 0 0 3240 73 2557 23678070 81600 1283.09228515625 8.6011000000000006 2275.7705000000001 120960 28082 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2557 1920 0 384 1 12627793160 9052224 1 0 4 3 3 3 3 5898240 4423680 4423680 4426365 4492800 150 150 150 1207 900 0 0 0 0 73 0 0 0 0 0
346 345 1783879473696152600 REFRESH 43 0 0.48707518969030988 0 1 9 1 9 0 0 3249 24 409 3987730 55200 224.82330322265625 1.4313 375.82530000000003 20160 13042 0 0 0.03710369420162668 0.24547566744898053 4096 2048 64 1 16 60 12 4 0 409 320 0 64 0 12628518564 9777628 1 0 4 3 3 3 3 983040 737280 737280 737523 748800 25 25 25 239 95 0 0 0 3 21 0 0 0 0 0
347 346 1783879475956650700 DEPTH 43 1 0.48701360219406942 0 1 9 1 9 0 0 3263 73 2567 23678062 81600 1298.1165924072266 8.7106999999999992 2259.2447000000002 120960 63038 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2567 1920 0 384 1 12632995812 14254876 1 0 4 3 3 3 3 5898240 4423680 4423680 4426336 4492800 150 150 150 1046 1071 0 0 0 0 73 0 0 0 0 0
348 347 1783879478201593800 DEPTH 43 1 0.48694944796640749 0 1 9 1 9 0 0 3286 93 2548 23678275 81600 1289.7249450683594 8.7254000000000005 2243.7910000000002 120960 52005 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2548 1920 0 384 1 12637453680 18712744 1 0 4 3 3 3 3 5898240 4423680 4423680 4426389 4492800 150 150 150 1092 1006 0 0 0 0 93 0 0 0 0 0
349 348 1783879480454999600 DEPTH 43 1 0.48688301668067679 0 1 9 1 9 0 0 3294 64 2542 23678428 81600 1286.7594451904297 8.5823999999999998 2252.2773999999999 120960 40553 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2542 1920 0 384 1 12641905428 23164492 1 0 4 3 3 3 3 5898240 4423680 4423680 4426474 4492800 150 150 150 1193 899 0 0 0 0 64 0 0 0 0 0
350 349 1783879482737778700 DEPTH 43 1 0.48681456883019464 0 1 9 1 9 0 0 3300 58 2557 23678311 81600 1283.6649932861328 8.5878999999999994 2281.5047 120960 27702 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2557 1920 0 384 1 12646372476 27631540 1 0 4 3 3 3 3 5898240 4423680 4423680 4426534 4492800 150 150 150 1382 725 0 0 0 0 58 0 0 0 0 0
351 350 1783879483110371900 REFRESH 43 0 0.48674433864818195 0 1 9 1 9 0 0 3308 24 409 3987729 55200 225.3516845703125 1.4271 371.2672 20160 13625 0 0 0.03710369420162668 0.24547566744898053 4096 2048 64 1 16 60 12 4 0 409 320 0 64 0 12647097880 28356944 1 0 4 3 3 3 3 983040 737280 737280 737513 748800 25 25 25 246 88 0 0 0 5 19 0 0 0 0 0
352 351 1783879485390870800 DEPTH 43 1 0.48667253673568661 0 1 9 1 9 0 0 3339 86 2536 23678158 81600 1299.0668792724609 8.5767000000000007 2279.1779999999999 120960 65127 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2536 1920 0 384 1 12651543508 32802572 1 0 4 3 3 3 3 5898240 4423680 4423680 4426394 4492800 150 150 150 997 1089 0 0 0 0 86 0 0 0 0 0
353 352 1783879487667166700 DEPTH 43 1 0.48659935242669139 0 1 9 1 9 0 0 3350 66 2549 23678206 81600 1291.9796752929688 8.5815999999999999 2275.0306999999998 120960 54134 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2549 1920 0 384 1 12656002396 37261460 1 0 4 3 3 3 3 5898240 4423680 4423680 4426429 4492800 150 150 150 1080 1019 0 0 0 0 66 0 0 0 0 0
354 353 1783879489953084600 DEPTH 43 1 0.48652495591668909 0 1 9 1 9 0 0 3368 63 2544 23678279 81600 1288.7533111572266 8.5921000000000003 2284.7381 120960 43716 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2544 1920 0 384 1 12660456184 41715248 1 0 4 3 3 3 3 5898240 4423680 4423680 4426381 4492800 150 150 150 1234 860 0 0 0 0 63 0 0 0 0 0
355 354 1783879492341095800 DEPTH 43 1 0.48644950017837885 0 1 9 1 9 0 0 3375 38 2536 23678527 81600 1285.7088928222656 8.5747 2302.0052999999998 120960 29371 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2536 1920 0 384 1 12664901812 46160876 1 0 4 3 3 3 3 5898240 4423680 4423680 4426523 4492800 150 150 150 1241 845 0 0 0 0 38 0 0 0 0 0
356 355 1783879492712988200 REFRESH 43 0 0.48637312268577071 0 1 9 1 9 0 0 3382 22 410 3987765 55200 224.64408874511719 1.4329000000000001 370.65679999999998 20160 13516 0 0 0.03710369420162668 0.24547566744898053 4096 2048 64 1 16 60 12 4 0 410 320 0 64 0 12665628236 46887300 1 0 4 3 3 3 3 983040 737280 737280 737515 748800 25 25 25 240 95 0 0 0 4 18 0 0 0 0 0
357 356 1783879494978928100 DEPTH 43 1 0.48629594696585904 0 1 9 1 9 0 0 3392 46 2525 23678293 81600 1301.7158660888672 8.5701000000000001 2264.7651999999998 120960 65290 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2525 1920 0 384 1 12670062644 51321708 1 0 4 3 3 3 3 5898240 4423680 4423680 4426469 4492800 150 150 150 1001 1074 0 0 0 0 46 0 0 0 0 0
358 357 1783879497295953600 DEPTH 43 1 0.48621808399510746 0 1 9 1 9 0 0 3403 47 2527 23678300 81600 1291.3942413330078 8.581900000000001 2315.7955999999999 120960 54280 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2527 1920 0 384 1 12674499092 55758156 1 0 4 3 3 3 3 5898240 4423680 4423680 4426543 4492800 150 150 150 1092 985 0 0 0 0 47 0 0 0 0 0
359 358 1783879499630857300 DEPTH 43 1 0.4861396334562651 0 1 9 1 9 0 0 3406 44 2527 23678241 81600 1290.0444183349609 8.5921000000000003 2333.7572 120960 43469 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2527 1920 0 384 1 12678935540 60194604 1 0 4 3 3 3 3 5898240 4423680 4423680 4426399 4492800 150 150 150 1141 936 5 0 0 0 39 0 0 0 0 0
360 359 1783879501927871000 DEPTH 43 1 0.4860606848694804 0 1 9 1 9 0 0 3417 46 2535 23678247 81600 1285.3299102783203 8.5792000000000002 2295.8092999999999 120960 30050 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2535 1920 0 384 1 12683380148 64639212 1 0 4 3 3 3 3 5898240 4423680 4423680 4426384 4492800 150 150 150 1281 804 2 0 0 0 44 0 0 0 0 0
361 360 1783879502295886500 REFRESH 43 0 0.48598131861028387 0 1 9 1 9 0 0 3422 21 412 3987866 55200 225.94583129882812 1.4305000000000001 366.80489999999998 20160 13383 0 0 0.03710369420162668 0.24547566744898053 4096 2048 64 1 16 60 12 4 0 412 320 0 64 0 12684108612 65367676 1 0 4 3 3 3 3 983040 737280 737280 737513 748800 25 25 25 250 87 0 0 0 4 17 0 0 0 0 0
362 361 1783879505674946200 DEPTH 43 1 0.48590160682575317 0 1 9 1 9 0 0 3436 87 2549 23678359 81600 1300.7170257568359 8.5991999999999997 3377.6167 120960 64979 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2549 1920 0 384 1 12688567580 2718660 1 0 4 3 3 3 3 5898240 4423680 4423680 4426408 4492800 150 150 150 980 1119 0 0 4 2 81 0 0 0 0 0
363 362 1783879507998783400 DEPTH 43 1 0.48582161425904158 0 1 9 1 9 0 0 3444 48 2534 23678265 81600 1290.9680633544922 8.5949000000000009 2322.5369000000001 120960 54017 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2534 1920 0 384 1 12693011168 7162248 1 0 4 3 3 3 3 5898240 4423680 4423680 4426432 4492800 150 150 150 1052 1032 0 0 0 2 46 0 0 0 0 0
364 363 1783879510314049300 DEPTH 43 1 0.48574139899143498 0 1 9 1 9 0 0 3447 57 2540 23678188 81600 1289.4330749511719 8.5806000000000004 2314.0043999999998 120960 43344 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2540 1920 0 384 1 12697460876 11611956 1 0 4 3 3 3 3 5898240 4423680 4423680 4426394 4492800 150 150 150 1179 911 0 0 2 0 55 0 0 0 0 0
365 364 1783879512613905000 DEPTH 43 1 0.48566101311018384 0 1 9 1 9 0 0 3453 59 2547 23678217 81600 1285.7763977050781 8.7781000000000002 2298.5538999999999 120960 30010 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2547 1920 0 384 1 12701917724 16068804 1 0 4 3 3 3 3 5898240 4423680 4423680 4426365 4492800 150 150 150 1283 814 0 0 3 0 56 0 0 0 0 0
366 365 1783879512983262000 REFRESH 43 0 0.4855805033095339 0 1 9 1 9 0 0 3459 24 416 3987717 55200 224.67481994628906 1.4371 368.22460000000001 20160 13106 0 0 0.03710369420162668 0.24547566744898053 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 12702650268 16801348 1 0 4 3 3 3 3 983040 737280 737280 737510 748800 25 25 25 244 97 0 0 0 3 21 0 0 0 0 0
367 366 1783879515272353100 DEPTH 43 1 0.4854999114316349 0 1 9 1 9 0 0 3464 62 2531 23678488 81600 1300.6526794433594 8.6729000000000003 2287.8798999999999 120960 64420 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2531 1920 0 384 1 12707090796 21241876 1 0 4 3 3 3 3 5898240 4423680 4423680 4426490 4492800 150 150 150 1030 1051 0 0 0 0 62 0 0 0 0 0
368 367 1783879517585538200 DEPTH 43 1 0.48541927495334058 0 1 9 1 9 0 0 3469 48 2531 23678429 81600 1293.7256927490234 8.6324000000000005 2312.0526 120960 53703 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2531 1920 0 384 1 12711531324 25682404 1 0 4 3 3 3 3 5898240 4423680 4423680 4426447 4492800 150 150 150 1108 973 0 0 2 2 44 0 0 0 0 0
369 368 1783879519903011600 DEPTH 43 1 0.48533862742431083 0 1 9 1 9 0 0 3472 54 2528 23678299 81600 1289.4071960449219 8.8907000000000007 2316.1509999999998 120960 43018 1 1 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2528 1920 0 384 1 12715968792 30119872 1 0 4 3 3 3 3 5898240 4423680 4423680 4426431 4492800 150 150 150 1217 861 0 0 0 3 50 0 0 0 0 0
370 369 1783879522203070500 DEPTH 43 1 0.48525799886128584 0 1 9 1 9 0 0 3479 41 2522 23678246 81600 1286.6715698242188 8.5858000000000008 2298.7687999999998 120960 29613 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2522 1920 0 384 1 12720400140 34551220 1 0 4 3 3 3 3 5898240 4423680 4423680 4426441 4492800 150 150 150 1347 725 0 0 0 0 41 0 0 0 0 0
371 370 1783879522659567500 REFRESH 43 0 0.48517741610291554 0 1 9 1 9 0 0 3486 24 408 3987754 55200 226.01011657714844 1.4298 376.19600000000003 20160 13319 0 0 0.03710369420162668 0.24547566744898053 4096 2048 64 1 16 60 12 4 0 408 320 0 64 0 12721124524 35275604 1 0 4 3 3 3 3 983040 737280 737280 737516 748800 25 25 25 255 78 0 0 0 3 21 0 0 0 0 0
372 371 1783879524925041400 DEPTH 43 1 0.48509690312908904 0 1 9 1 9 0 0 3499 49 2516 23678314 81600 1300.9786987304688 8.6442999999999994 2264.2350000000001 120960 65195 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2516 1920 0 384 1 12725549752 39700832 1 0 4 3 3 3 3 5898240 4423680 4423680 4426439 4492800 150 150 150 1102 964 0 0 0 0 49 0 0 0 0 0
373 372 1783879527188354900 DEPTH 43 1 0.48501648134831399 0 1 9 1 9 0 0 3508 33 2522 23678397 81600 1291.1513824462891 8.5902999999999992 2262.0533 120960 54302 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2522 1920 0 384 1 12729981100 44132180 1 0 4 3 3 3 3 5898240 4423680 4423680 4426427 4492800 150 150 150 1231 841 0 0 0 0 33 0 0 0 0 0
374 373 1783879529490229000 DEPTH 43 1 0.48493616985634164 0 1 9 1 9 0 0 3518 50 2550 23678478 81600 1288.1069946289062 8.6097999999999999 2300.6158999999998 120960 43614 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2550 1920 0 384 1 12734441008 48592088 1 0 4 3 3 3 3 5898240 4423680 4423680 4426474 4492800 150 150 150 1262 838 0 0 0 1 49 0 0 0 0 0
375 374 1783879531749067700 DEPTH 43 1 0.48485598566891258 0 1 9 1 9 0 0 3527 59 2558 23678328 81600 1285.5879364013672 8.5937999999999999 2257.4965999999999 120960 29573 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2558 1920 0 384 1 12738909076 53060156 1 0 4 3 3 3 3 5898240 4423680 4423680 4426441 4492800 150 150 150 1409 699 0 0 0 0 59 0 0 0 0 0
376 375 1783879532116747500 REFRESH 43 0 0.48477594393121215 0 1 9 1 9 0 0 3533 18 412 3987732 55200 225.18476867675781 1.4282999999999999 366.35050000000001 20160 13578 0 0 0.03710369420162668 0.24547566744898053 4096 2048 64 1 16 60 12 4 0 412 320 0 64 0 12739637540 53788620 1 0 4 3 3 3 3 983040 737280 737280 737489 748800 25 25 25 254 83 0 0 0 0 18 0 0 0 0 0
377 376 1783879534360042200 DEPTH 43 1 0.48469605810636363 0 1 9 1 9 0 0 3551 81 2558 23678339 81600 1300.42041015625 8.6246000000000009 2242.1138999999998 120960 65964 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2558 1920 0 384 1 12744105608 58256688 1 0 4 3 3 3 3 5898240 4423680 4423680 4426505 4492800 150 150 150 1101 1007 0 0 0 1 80 0 0 0 0 0
378 377 1783879536610721300 DEPTH 43 1 0.48461634014505683 0 1 9 1 9 0 0 3560 50 2572 23678292 81600 1293.9970397949219 8.5878999999999994 2249.5115999999998 120960 54655 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2572 1920 0 384 1 12748587956 62739036 1 0 4 3 3 3 3 5898240 4423680 4423680 4426414 4492800 150 150 150 1267 855 0 0 0 0 50 0 0 0 0 0
379 378 1783879539956595300 DEPTH 43 1 0.48453680063819848 0 1 9 1 9 0 0 3566 57 2556 23678406 81600 1291.6877593994141 8.6423000000000005 3344.6601000000001 120960 43367 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2556 1920 0 384 1 12753054064 96868 1 0 4 3 3 3 3 5898240 4423680 4423680 4426460 4492800 150 150 150 1424 682 0 0 0 0 57 0 0 0 0 0
380 379 1783879542256833800 DEPTH 43 1 0.48445744895428117 0 1 9 1 9 0 0 3571 42 2543 23678477 81600 1287.0133819580078 8.5827000000000009 2298.9731999999999 120960 29198 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2543 1920 0 384 1 12757506832 4549636 1 0 4 3 3 3 3 5898240 4423680 4423680 4426452 4492800 150 150 150 1510 583 2 0 0 2 38 0 0 0 0 0
381 380 1783879542634596800 REFRESH 43 0 0.48437829336300142 0 1 9 1 9 0 0 3579 19 414 3987767 55200 226.19442749023438 1.4315 376.60550000000001 20160 13716 0 0 0.03710369420162668 0.24547566744898053 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 12758237336 5280140 1 0 4 3 3 3 3 983040 737280 737280 737513 748800 25 25 25 244 95 0 0 0 3 16 0 0 0 0 0
382 381 1783879544908028500 DEPTH 43 1 0.48429934114650008 0 1 9 1 9 0 0 3593 77 2558 23678438 81600 1302.2227783203125 8.5762 2272.2148999999999 120960 66172 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2558 1920 0 384 1 12762705404 9748208 1 0 4 3 3 3 3 5898240 4423680 4423680 4426542 4492800 150 150 150 1082 1026 0 0 0 0 77 0 0 0 0 0
383 382 1783879547190589700 DEPTH 43 1 0.48422059869946471 0 1 9 1 9 0 0 3599 48 2558 23678269 81600 1294.6760864257812 8.5745000000000005 2281.4007000000001 120960 55116 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2558 1920 0 384 1 12767173472 14216276 1 0 4 3 3 3 3 5898240 4423680 4423680 4426404 4492800 150 150 150 1286 822 0 0 0 1 47 0 0 0 0 0
384 383 1783879549475239700 DEPTH 43 1 0.4841420716192063 0 1 9 1 9 0 0 3602 44 2547 23678367 81600 1288.8883209228516 8.833499999999999 2283.4816999999998 120960 44154 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2547 1920 0 384 1 12771630320 18673124 1 0 4 3 3 3 3 5898240 4423680 4423680 4426476 4492800 150 150 150 1374 723 0 0 0 0 44 0 0 0 0 0
385 384 1783879551758037400 DEPTH 43 1 0.48406376478671453 0 1 9 1 9 0 0 3603 42 2535 23678353 81600 1285.3122711181641 8.5762999999999998 2281.5216 120960 30515 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2535 1920 0 384 1 12776074928 23117732 1 0 4 3 3 3 3 5898240 4423680 4423680 4426407 4492800 150 150 150 1411 674 0 0 0 1 41 0 0 0 0 0
386 385 1783879552133403800 REFRESH 43 0 0.48398568243959328 0 1 9 1 9 0 0 3610 17 414 3987857 55200 226.29580688476562 1.4278 374.1472 20160 13494 0 0 0.03710369420162668 0.24547566744898053 4096 2048 64 1 16 60 12 4 0 414 320 0 64 0 12776805432 23848236 1 0 4 3 3 3 3 983040 737280 737280 737521 748800 25 25 25 241 98 0 0 0 1 16 0 0 0 0 0
387 386 1783879554467454400 DEPTH 43 1 0.4839078282376883 0 1 9 1 9 0 0 3619 41 2536 23678468 81600 1302.8383331298828 8.5736999999999988 2260.0273999999999 120960 65590 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2536 1920 0 384 1 12781251060 28293864 1 0 4 3 3 3 3 5898240 4423680 4423680 4426469 4492800 150 150 150 1144 942 0 0 0 0 41 0 0 0 0 0
388 387 1783879556732710100 DEPTH 43 1 0.48383020532213855 0 1 9 1 9 0 0 3628 45 2554 23678363 81600 1293.4066925048828 8.5886999999999993 2264.0889000000002 120960 54928 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2554 1920 0 384 1 12785715048 32757852 1 0 4 3 3 3 3 5898240 4423680 4423680 4426463 4492800 150 150 150 1360 744 0 0 0 1 44 0 0 0 0 0
389 388 1783879559028334700 DEPTH 43 1 0.4837528163685087 0 1 9 1 9 0 0 3636 55 2551 23678392 81600 1290.8042449951172 8.6063999999999989 2294.2417 120960 43600 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2551 1920 0 384 1 12790175976 37218780 1 0 4 3 3 3 3 5898240 4423680 4423680 4426507 4492800 150 150 150 1330 771 0 0 0 1 54 0 0 0 0 0
390 389 1783879561362659300 DEPTH 43 1 0.4836756636345948 0 1 9 1 9 0 0 3640 45 2552 23678319 81600 1286.1257476806641 8.5876000000000001 2332.9947999999999 120960 30417 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2552 1920 0 384 1 12794637924 41680728 1 0 4 3 3 3 3 5898240 4423680 4423680 4426427 4492800 150 150 150 1396 706 0 0 0 0 45 0 0 0 0 0
391 390 1783879561745304400 REFRESH 43 0 0.48359874900343625 0 1 9 1 9 0 0 3646 21 415 3987767 55200 225.24415588378906 1.4276 381.33269999999999 20160 13286 0 0 0.03710369420162668 0.24547566744898053 4096 2048 64 1 16 60 12 4 0 415 320 0 64 0 12795369448 42412252 1 0 4 3 3 3 3 983040 737280 737280 737540 748800 25 25 25 242 98 0 0 0 6 15 0 0 0 0 0
392 391 1783879564061137100 DEPTH 43 1 0.48352207402201353 0 1 9 1 9 0 0 3648 45 2543 23678486 81600 1301.3849334716797 8.6441999999999997 2314.6307000000002 120960 65177 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2543 1920 0 384 1 12799822216 46865020 1 0 4 3 3 3 3 5898240 4423680 4423680 4426423 4492800 150 150 150 988 1105 0 0 0 1 44 0 0 0 0 0
393 392 1783879566354771200 DEPTH 43 1 0.48344563993606299 0 1 9 1 9 0 0 3652 43 2540 23678420 81600 1293.7164916992188 8.5737000000000005 2292.4214999999999 120960 54339 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2540 1920 0 384 1 12804271924 51314728 1 0 4 3 3 3 3 5898240 4423680 4423680 4426392 4492800 150 150 150 1171 919 0 0 0 0 43 0 0 0 0 0
394 393 1783879568648494300 DEPTH 43 1 0.48336944772139762 0 1 9 1 9 0 0 3653 21 2531 23678351 81600 1288.3742828369141 8.5997999999999983 2292.4312 120960 42953 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2531 1920 0 384 1 12808712452 55755256 1 0 4 3 3 3 3 5898240 4423680 4423680 4426440 4492800 150 150 150 1197 884 0 0 0 0 21 0 0 0 0 0
395 394 1783879570948161300 DEPTH 43 1 0.48329349811208283 0 1 9 1 9 0 0 3655 39 2529 23678339 81600 1286.4846038818359 8.5649999999999995 2298.2959000000001 120960 29220 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2529 1920 0 384 1 12813150940 60193744 1 0 4 3 3 3 3 5898240 4423680 4423680 4426449 4492800 150 150 150 1200 879 0 0 0 0 39 0 0 0 0 0
396 395 1783879571319392000 REFRESH 43 0 0.48321779162578266 0 1 9 1 9 0 0 3663 19 413 3987782 55200 226.02957153320312 1.4326000000000001 369.95679999999999 20160 13417 0 0 0.03710369420162668 0.24547566744898053 4096 2048 64 1 16 60 12 4 0 413 320 0 64 0 12813880424 60923228 1 0 4 3 3 3 3 983040 737280 737280 737545 748800 25 25 25 250 88 0 0 0 1 18 0 0 0 0 0
397 396 1783879573611826400 DEPTH 43 1 0.48314232858655864 0 1 9 1 9 0 0 3674 44 2524 23678334 81600 1299.6495513916016 8.5877999999999997 2291.2132000000001 120960 66561 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2524 1920 0 384 1 12818313812 65356616 1 0 4 3 3 3 3 5898240 4423680 4423680 4426423 4492800 150 150 150 1004 1070 0 0 0 0 44 0 0 0 0 0
398 397 1783879576988557000 DEPTH 43 1 0.48306710914537704 0 1 9 1 9 0 0 3677 52 2502 23678421 81600 1293.0571899414062 8.6791 3375.4337999999998 120960 55217 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2502 1920 0 384 1 12822724840 2659500 1 0 4 3 3 3 3 5898240 4423680 4423680 4426417 4492800 150 150 150 1071 981 0 0 0 1 51 0 0 0 0 0
399 398 1783879579296915300 DEPTH 43 1 0.48299213329855301 0 1 9 1 9 0 0 3681 42 2513 23678504 81600 1289.5180816650391 8.572000000000001 2307.1199999999999 120960 43739 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2513 1920 0 384 1 12827147008 7081668 1 0 4 3 3 3 3 5898240 4423680 4423680 4426449 4492800 150 150 150 1173 890 0 0 0 0 42 0 0 0 0 0
400 399 1783879581612898700 DEPTH 43 1 0.48291740090433882 0 1 9 1 9 0 0 3683 30 2514 23678440 81600 1288.8537445068359 8.6640000000000015 2314.7431000000001 120960 29718 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2514 1920 0 384 1 12831570196 11504856 1 0 4 3 3 3 3 5898240 4423680 4423680 4426496 4492800 150 150 150 1290 774 0 0 0 0 30 0 0 0 0 0
401 400 1783879581980771100 REFRESH 43 0 0.48284291169784149 0 1 9 1 9 0 0 3688 15 416 3987806 55200 225.20729064941406 1.4258 366.63799999999998 20160 13527 0 0 0.03710369420162668 0.24547566744898053 4096 2048 64 1 16 60 12 4 0 416 320 0 64 0 12832302740 12237400 1 0 4 3 3 3 3 983040 737280 737280 737541 748800 25 25 25 251 90 0 0 0 3 12 0 0 0 0 0
402 401 1783879584282383600 DEPTH 43 1 0.48276866530443707 0 1 9 1 9 0 0 3696 57 2540 23678341 81600 1300.2257537841797 8.5856999999999992 2300.1037000000001 120960 66413 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2540 1920 0 384 1 12836752448 16687108 1 0 4 3 3 3 3 5898240 4423680 4423680 4426449 4492800 150 150 150 1096 994 0 0 0 0 57 0 0 0 0 0
403 402 1783879586657285300 DEPTH 43 1 0.4826946612518323 0 1 9 1 9 0 0 3703 50 2540 23678309 81600 1291.6817779541016 8.7750000000000004 2295.9169999999999 120960 54607 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2540 1920 0 384 1 12841202156 21136816 1 0 4 3 3 3 3 5898240 4423680 4423680 4426392 4492800 150 150 150 1164 926 0 0 0 0 50 0 0 0 0 0
404 403 1783879588939189900 DEPTH 43 1 0.48262089898090876 0 1 9 1 9 0 0 3710 47 2544 23678381 81600 1289.4652404785156 8.6042999999999985 2280.7516999999998 120960 44291 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2544 1920 0 384 1 12845655944 25590604 1 0 4 3 3 3 3 5898240 4423680 4423680 4426404 4492800 150 150 150 1374 720 0 0 0 0 47 0 0 0 0 0
405 404 1783879591201723100 DEPTH 43 1 0.48254737785547142 0 1 9 1 9 0 0 3717 36 2534 23678502 81600 1285.4898223876953 8.5722999999999985 2261.2759000000001 120960 29831 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2534 1920 0 384 1 12850099532 30034192 1 0 4 3 3 3 3 5898240 4423680 4423680 4426438 4492800 150 150 150 1409 675 0 0 0 0 36 0 0 0 0 0
406 405 1783879591579195300 REFRESH 43 0 0.48247409717101158 0 1 9 1 9 0 0 3721 17 413 3987757 55200 226.41561889648438 1.4297 376.08499999999998 20160 13530 0 0 0.03710369420162668 0.24547566744898053 4096 2048 64 1 16 60 12 4 0 413 320 0 64 0 12850829016 30763676 1 0 4 3 3 3 3 983040 737280 737280 737483 748800 25 25 25 253 85 0 0 0 4 13 0 0 0 0 0
407 406 1783879593794308200 DEPTH 43 1 0.48240105616258261 0 1 9 1 9 0 0 3727 53 2541 23678472 81600 1299.8338470458984 8.5823000000000018 2213.9598000000001 120960 66142 1 0 0.03710369420162668 0.24547566744898053 4096 2048 384 12 96 360 72 24 0 2541 1920 0 384 1 12855279744 35214404 1 0 4 3 3 3 3 5898240 4423680 4423680 4426533 4492800 150 150 150 1214 877 0 0 0 0 53 0 0 0 0 0
408 407 1783879595279284200 DEPTH 43 1 0.48232825401187751 0 1 9 1 9 0 0 3729 27 1688 15789644 58560 868.87832641601562 5.7592999999999996 1483.6569 80640 37643 0 0 0.03710369420162668 0.24547566744898053 4096 2048 256 8 64 240 48 16 0 1688 1280 0 256 0 12858234400 38169060 1 0 4 3 3 3 3 3932160 2949120 2949120 2950934 2995200 100 100 100 905 483 0 0 0 1 26 0 0 0 0 0
@@ -0,0 +1,58 @@
format szilassi-global-search-v5
run_id 20e1402c-f882-4e28-bb4f-c015c2528150
node_id LOOKICH
seed 1190500451
topology_from 43
topology_to 43
backend cuda-fp32
objective_version 5
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-neural-v3-transformer-ranker-v1
control_baseline_min_fraction 0.25
strategy_weights adaptive-total:16,floors:baseline4/replica1/adaptive1/pbt1/injected3,max6
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
fp32_population_sample per-producing-strategy:64,finite-chain-bests-before-host-selection,deterministic-circular-offset,exact-numerator-denominator-recorded
accounted_fp32_steps iterations-plus-initialization-fresh-stagnation-injection-pbt-and-retries
map_elites_bins determinant:8,edge:8,turn:8,extent:8,crossing-face-mask:12,intersection-face-mask:12
map_elites_max_cells_per_topology 4096
cem diagonal-weighted,covariance-adaptation:0.18,new-injected-only
intersection_loss segment-depth-times-boundary-depth,weight:0.01,cap:4
repair injected-quarter,offending-face-biased,neural-policy-with-exploration
neural_enabled 1
neural_schema 2
neural_model_format 2
neural per-topology-ensemble:5,residual-mlp:45-128-128-128,value-policy,online-adamw,replay:4096,recent:25%
neural_safety baseline-floor:25%,policy-exploration:25%,exact-cuda-plus-cpu-dd-authoritative
transformer_enabled 1
transformer_model_id 568ec2d600768cc5d2189f2c45ef6218689e8537937b51693eeb461b298d9f45-s1511499089-p56c66b83
transformer global-ensemble:3,set-transformer:12-faces-plus-cls,width:64,heads:4,layers:3,ff:256,host-fp32-ranker
transformer_scope guided-seeds-only,ranked:12/64,score-independent-controls:4/64,map-cem-random:48/64
transformer_failure_mode missing-invalid-nonfinite:fallback-to-online-mlp
training_archive_schema 3
training_archive_format 3
training_archive_layout run-uuid/immutable-64MiB-crc-shards-plus-durable-wal
training_archive_records seed-proposals,stratified-fp32-chain-bests,cpu-verified,anchor-injected-result,spsa-steps,legacy-replay
training_cache_limit_bytes 200000000000
training_cache_accounted_bytes_at_start 11343679868
training_neural_model_reserve_bytes 265316868
training_collection_enabled_at_start 1
training_recovered_wals 0
training_wals_deferred_at_limit 0
training_recovered_records 0
training_recovered_torn_bytes_discarded 0
training_limit_behavior freeze-collection-and-online-learning;search-continues;rewrite-warning
spsa adam:6,cpu-double,all-plus-minus-and-updated-double-states,c-plus-i-smooth-loss,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
1 format szilassi-global-search-v5
2 run_id 20e1402c-f882-4e28-bb4f-c015c2528150
3 node_id LOOKICH
4 seed 1190500451
5 topology_from 43
6 topology_to 43
7 backend cuda-fp32
8 objective_version 5
9 cuda_math standard-fp32
10 cuda_chains_requested 0
11 cuda_chains_effective 61440
12 cuda_iterations_per_batch 64
13 cuda_depth_batches 6
14 cuda_session_cache 1
15 algorithm hybrid-quality-diversity-neural-v3-transformer-ranker-v1
16 control_baseline_min_fraction 0.25
17 strategy_weights adaptive-total:16,floors:baseline4/replica1/adaptive1/pbt1/injected3,max6
18 fresh_fractions depth:1/4,breadth:7/8,injected-protected
19 replica_exchange group:8,temperature-ratio:16
20 pbt rotating-pairs,depth-chance:0.08,breadth-chance:0.04
21 verification_quotas overall:128,per-strategy:max(8,overall/5),per-injected-seed:1
22 fp32_population_sample per-producing-strategy:64,finite-chain-bests-before-host-selection,deterministic-circular-offset,exact-numerator-denominator-recorded
23 accounted_fp32_steps iterations-plus-initialization-fresh-stagnation-injection-pbt-and-retries
24 map_elites_bins determinant:8,edge:8,turn:8,extent:8,crossing-face-mask:12,intersection-face-mask:12
25 map_elites_max_cells_per_topology 4096
26 cem diagonal-weighted,covariance-adaptation:0.18,new-injected-only
27 intersection_loss segment-depth-times-boundary-depth,weight:0.01,cap:4
28 repair injected-quarter,offending-face-biased,neural-policy-with-exploration
29 neural_enabled 1
30 neural_schema 2
31 neural_model_format 2
32 neural per-topology-ensemble:5,residual-mlp:45-128-128-128,value-policy,online-adamw,replay:4096,recent:25%
33 neural_safety baseline-floor:25%,policy-exploration:25%,exact-cuda-plus-cpu-dd-authoritative
34 transformer_enabled 1
35 transformer_model_id 568ec2d600768cc5d2189f2c45ef6218689e8537937b51693eeb461b298d9f45-s1511499089-p56c66b83
36 transformer global-ensemble:3,set-transformer:12-faces-plus-cls,width:64,heads:4,layers:3,ff:256,host-fp32-ranker
37 transformer_scope guided-seeds-only,ranked:12/64,score-independent-controls:4/64,map-cem-random:48/64
38 transformer_failure_mode missing-invalid-nonfinite:fallback-to-online-mlp
39 training_archive_schema 3
40 training_archive_format 3
41 training_archive_layout run-uuid/immutable-64MiB-crc-shards-plus-durable-wal
42 training_archive_records seed-proposals,stratified-fp32-chain-bests,cpu-verified,anchor-injected-result,spsa-steps,legacy-replay
43 training_cache_limit_bytes 200000000000
44 training_cache_accounted_bytes_at_start 11343679868
45 training_neural_model_reserve_bytes 265316868
46 training_collection_enabled_at_start 1
47 training_recovered_wals 0
48 training_wals_deferred_at_limit 0
49 training_recovered_records 0
50 training_recovered_torn_bytes_discarded 0
51 training_limit_behavior freeze-collection-and-online-learning;search-continues;rewrite-warning
52 spsa adam:6,cpu-double,all-plus-minus-and-updated-double-states,c-plus-i-smooth-loss,fp32-roundtrip,final-canonical-dd-gate
53 topology_scheduler ucb-plus-reward-plus-staleness,full-refresh-every-5
54 topology_scheduler_mode quality-first
55 worst_priority_coefficient 0.65
56 cpu_iterations_per_trial 50000
57 degeneracy_formula worst-plus-0.05-rest
58 degeneracy_weight 0.01
@@ -0,0 +1,328 @@
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 best_crossing_loss best_intersection_loss neural_replay neural_positive neural_samples neural_train_steps neural_seeds training_verified training_fp32 training_seeds training_rollouts training_refinements training_cache_accounted_bytes training_wal_bytes training_collection_enabled training_limit_reached weight_baseline weight_replica weight_adaptive weight_pbt weight_injected 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 1783859482858331200 DEPTH 42 1 0.81643558783371195 0 0 4 0 4 0 0 4096 61 2558 23803978 209280 1495.4158172607422 8.6181000000000001 2624.5346 40320 21252 1 0 0 0.0063610145412278767 4096 2048 384 12 96 2558 1920 128 384 1 5414886048 4628364 1 0 5 1 2 2 6 7618560 1474560 2949120 2705080 8985600 181 157 156 160 1904 19 6 10 4 22 0 0 0 0 0
2 1783859485211546600 DEPTH 56 1 0.62652048513770875 0.17206132879045993 2 4 2 4 0 0 4096 133 2532 23804020 209280 1272.595458984375 8.6524999999999999 2281.7804000000001 40320 20516 1 0 0.0054355512702489233 0.48957545601177821 4096 2048 384 12 96 2532 1920 128 384 1 5419487852 9230168 1 0 5 1 2 2 6 7618560 1474560 2949120 2705124 8985600 209 180 154 170 1819 31 10 19 15 58 0 0 0 0 0
3 1783859487291810100 DEPTH 8 1 0.61160518943045372 0.26575809199318562 2 5 2 5 0 0 2353 41 2540 23803936 209280 1305.1730346679688 8.6021000000000001 2014.6561999999999 40320 20101 1 0 0.030103035119069095 0.91796646697047368 4096 2048 384 12 96 2540 1920 128 384 1 5424097816 13840132 1 0 5 1 2 2 6 7618560 1474560 2949120 2705041 8985600 184 166 157 158 1875 6 2 2 1 30 0 0 0 0 0
4 1783859489501317500 DEPTH 48 1 0.62168970155977021 0.26575809199318562 2 5 2 5 0 0 2380 66 2586 23803907 209280 1262.3831176757812 8.8483000000000001 2137.2909 40320 21091 1 0 0.0046043101471456684 0.20405439432789962 4096 2048 384 12 96 2586 1920 128 384 1 5428754700 18497016 1 0 5 1 2 2 6 7618560 1474560 2949120 2705010 8985600 158 154 156 151 1967 10 8 13 8 27 0 0 0 0 0
5 1783859491726142500 DEPTH 20 1 0.63177402236797597 0.26575809199318562 2 5 2 5 0 0 2046 64 2588 23803972 209280 1263.9713134765625 8.8116000000000003 2159.6822999999999 40320 19639 1 0 0.001771835568079596 0.77081764157800148 4096 2048 384 12 96 2588 1920 128 384 1 5433413624 23155940 1 0 5 1 2 2 6 7618560 1474560 2949120 2705076 8985600 171 163 153 159 1942 10 6 17 4 27 0 0 0 0 0
6 1783859493904616200 DEPTH 9 1 0.64185815269192936 0.27342419080068137 1 6 1 6 0 0 2958 91 2566 23803971 209280 1300.1575927734375 8.6667000000000005 2110.1637000000001 40320 21353 1 0 0.00029749737042186297 0.32936763850020839 4096 2048 384 12 96 2566 1920 128 384 1 5438050108 27792424 1 0 5 1 2 2 6 7618560 1474560 2949120 2705074 8985600 169 163 159 170 1905 17 3 8 11 52 0 0 0 0 0
7 1783859496055538600 DEPTH 13 1 0.65194209336307729 0.27342419080068137 1 6 1 6 0 0 4096 138 2557 23803945 209280 1267.9272918701172 8.6363000000000003 2080.7467999999999 40320 20357 1 0 0.022786735533611113 0.15623055639937777 4096 2048 384 12 96 2557 1920 128 384 1 5442677412 32419728 1 0 5 1 2 2 6 7618560 1474560 2949120 2705048 8985600 169 150 150 152 1936 19 12 24 15 68 0 0 0 0 0
8 1783859498230173200 DEPTH 57 1 0.66202584520750063 0.27342419080068137 1 6 1 6 0 0 4096 65 2534 23803875 209280 1288.1461334228516 8.9376999999999995 2113.5268999999998 40320 22315 1 0 0.00072752635965749523 0.50646269260782129 4096 2048 384 12 96 2534 1920 128 384 1 5447281256 37023572 1 0 5 1 2 2 6 7618560 1474560 2949120 2704978 8985600 193 162 154 161 1864 16 2 6 3 38 0 0 0 0 0
9 1783859500414416300 DEPTH 17 1 0.67210940904596039 0.28109028960817717 0 7 0 7 0 0 3801 123 2569 23803930 209280 1262.4959411621094 8.6677 2117.8371000000002 40320 22461 1 0 1.7384002172801471e-05 0.059782352022523813 4096 2048 384 12 96 2569 1920 128 384 1 5451920800 41663116 1 0 5 1 2 2 6 7618560 1474560 2949120 2705034 8985600 176 150 151 160 1932 18 19 25 20 41 0 0 0 0 0
10 1783859502524622100 DEPTH 31 1 0.66719278569394269 0.3594548551959113 2 6 2 6 0 0 2584 93 2547 23803950 209280 1264.3483581542969 8.6189 2047.2363 40320 21586 1 1 0.038014368460935123 0.97909598530596631 4096 2048 384 12 96 2547 1920 128 384 1 5456537904 46280220 1 0 5 1 2 2 6 7618560 1474560 2949120 2705053 8985600 156 150 151 160 1930 16 1 20 25 30 0 0 0 0 0
11 1783859504462193000 DEPTH 16 1 0.67727597596170408 0.3594548551959113 2 6 2 6 0 0 3144 83 2554 23803925 209280 1307.1319122314453 8.6824999999999992 1878.0409 40320 21855 1 0 0.0062991239157878338 0.25319780240096146 4096 2048 384 12 96 2554 1920 128 384 1 5461162148 50904464 1 0 5 1 2 2 6 7618560 1474560 2949120 2705031 8985600 213 155 157 162 1867 13 3 4 18 45 0 0 0 0 0
12 1783859506625166800 DEPTH 33 1 0.68735898065431511 0.36712095400340705 1 7 1 7 0 0 3316 106 2542 23803962 209280 1296.2375793457031 8.6776999999999997 2088.0246000000002 40320 20259 1 0 0.00023585005086066899 0.32811287371681425 4096 2048 384 12 96 2542 1920 128 384 1 5465774152 55516468 1 0 5 1 2 2 6 7618560 1474560 2949120 2705065 8985600 180 167 176 161 1858 20 8 20 11 47 0 0 0 0 0
13 1783859508798236600 DEPTH 1 1 0.6974418005717048 0.36712095400340705 1 7 1 7 0 0 2931 142 2579 23803914 209280 1269.3473205566406 8.7161000000000008 2099.1925999999999 40320 21769 1 0 0.028773653260515411 1.8199943181710654 4096 2048 384 12 96 2579 1920 128 384 1 5470423896 60166212 1 0 5 1 2 2 6 7618560 1474560 2949120 2705020 8985600 170 150 151 152 1956 25 12 30 15 60 0 0 0 0 0
14 1783859511029502300 DEPTH 44 1 0.70752443650870411 0.36712095400340705 1 7 1 7 0 0 2151 87 2624 23803971 209280 1289.4443664550781 8.7358000000000011 2150.1129999999998 40320 20545 1 0 0.027664597694635307 0.87919275545735165 4096 2048 384 12 96 2624 1920 128 384 1 5475119540 64861856 1 0 5 1 2 2 6 7618560 1474560 2949120 2705075 8985600 174 150 152 153 1995 13 4 11 6 53 0 0 0 0 0
15 1783859514359102700 DEPTH 52 1 0.71760688925508853 0.36712095400340705 1 7 1 7 0 0 2112 81 2569 23803899 209280 1249.2555084228516 8.6443999999999992 3264.2584999999999 40320 21644 1 0 7.4202217947583462e-05 1.936591165712374 4096 2048 384 12 96 2569 1920 128 384 1 5479759164 2393280 1 0 5 1 2 2 6 7618560 1474560 2949120 2705000 8985600 190 166 168 166 1879 6 11 19 8 37 0 0 0 0 0
16 1783859516545279600 DEPTH 53 1 0.72768915959562042 0.37478705281090291 0 8 0 8 1 0 4096 118 2529 23803896 209280 1289.0676727294922 8.6239000000000008 2112.9456 40320 21376 1 0 0 0.22565469819514533 4096 2048 384 12 96 2529 1920 128 384 1 5484357908 6992024 1 0 5 1 2 2 6 7618560 1474560 2949120 2704998 8985600 195 172 153 155 1854 30 5 7 11 65 0 0 0 0 1
17 1783859518751335000 DEPTH 46 1 0.73777124831009155 0.37478705281090291 0 8 0 8 0 0 2659 69 2564 23803951 209280 1285.9791412353516 8.8445 2143.8800000000001 40320 21441 1 0 3.8232733419501159e-05 0.39408488134986086 4096 2048 384 12 96 2564 1920 128 384 1 5488992352 11626468 1 0 5 1 2 2 6 7618560 1474560 2949120 2705054 8985600 178 163 153 153 1917 14 6 10 5 34 0 0 0 0 0
18 1783859520987516800 DEPTH 11 1 0.74785315617336479 0.37478705281090291 0 8 0 8 1 0 2355 120 2566 23803920 209280 1266.7271118164062 8.6816000000000013 2150.1727999999998 40320 20920 1 0 0 0.7282841747625155 4096 2048 384 12 96 2566 1920 128 384 1 5493628836 16262952 1 0 5 1 2 2 6 7618560 1474560 2949120 2705023 8985600 189 160 161 151 1905 18 17 20 17 48 0 0 0 0 1
19 1783859522890208600 DEPTH 49 1 0.74793488395541474 0.4454855195911413 3 6 3 6 0 0 1449 96 2524 23803868 209280 1271.9523773193359 9.9571000000000005 1837.0108 40320 21042 1 0 0.058061103203911842 2.3022417889218207 4096 2048 384 12 96 2524 1920 128 384 1 5498222480 20856596 1 0 5 1 2 2 6 7618560 1474560 2949120 2704973 8985600 194 192 163 163 1812 16 4 3 9 64 0 0 0 0 0
20 1783859525040565600 DEPTH 2 1 0.75801643242136851 0.45315161839863699 2 7 2 7 0 0 3397 145 2534 23803931 209280 1283.183349609375 8.6815999999999995 2068.7017999999998 40320 21260 1 0 0.2773399391733698 2.0710771777085544 4096 2048 384 12 96 2534 1920 128 384 1 5502826324 25460440 1 0 5 1 2 2 6 7618560 1474560 2949120 2705036 8985600 198 177 164 162 1833 17 12 9 13 94 0 0 0 0 0
21 1783859527246744800 DEPTH 45 1 0.76809780233154701 0.45315161839863699 2 7 2 7 0 0 2085 71 2598 23803860 209280 1301.1816101074219 8.6685999999999996 2143.248 40320 19623 1 0 0.2309103244036371 1.4859222174523592 4096 2048 384 12 96 2598 1920 128 384 1 5507495448 30129564 1 0 5 1 2 2 6 7618560 1474560 2949120 2704963 8985600 161 150 151 159 1977 6 16 14 11 24 0 0 0 0 0
22 1783859529403483500 DEPTH 54 1 0.77817899444150351 0.4608177172061329 1 8 1 8 0 0 1178 49 2542 23803992 209280 1262.9637145996094 8.8901000000000003 2077.3618000000001 40320 20395 1 0 0.00048566486093188938 1.0664299709342928 4096 2048 384 12 96 2542 1920 128 384 1 5512107452 34741568 1 0 5 1 2 2 6 7618560 1474560 2949120 2705097 8985600 159 150 156 160 1917 7 8 13 3 18 0 0 0 0 0
23 1783859531576029900 DEPTH 32 1 0.78826000950206421 0.4608177172061329 1 8 1 8 0 0 2877 111 2547 23803961 209280 1281.9139862060547 8.6373999999999995 2094.8515000000002 40320 21566 1 0 0.0011665864340913636 1.8037808584357806 4096 2048 384 12 96 2547 1920 128 384 1 5516724556 39358672 1 0 5 1 2 2 6 7618560 1474560 2949120 2705064 8985600 162 156 154 153 1922 18 12 27 14 40 0 0 0 0 0
24 1783859533729822900 DEPTH 30 1 0.79834084825936669 0.4608177172061329 1 8 1 8 0 0 3369 108 2535 23803951 209280 1280.0040893554688 8.6679999999999993 2080.7575000000002 40320 20834 1 0 0.0010823191780834386 1.5810805031597897 4096 2048 384 12 96 2535 1920 128 384 1 5521329420 43963536 1 0 5 1 2 2 6 7618560 1474560 2949120 2705052 8985600 179 157 168 165 1866 18 9 25 4 52 0 0 0 0 0
25 1783859535939031600 DEPTH 25 1 0.79842151145489915 0.4608177172061329 1 8 1 8 0 0 2269 76 2558 23803963 209280 1306.4998168945312 8.8238000000000003 2130.1007 40320 21144 1 0 0.0002866720556610524 1.4641012066807393 4096 2048 384 12 96 2558 1920 128 384 1 5525957744 48591860 1 0 5 1 2 2 6 7618560 1474560 2949120 2705066 8985600 174 152 150 159 1923 18 6 7 4 41 0 0 0 0 0
26 1783859538100772900 DEPTH 39 1 0.79135914268268093 0.55451448040885853 1 9 1 9 0 0 1564 64 2582 23803940 209280 1259.9510955810547 8.7548000000000012 2092.6412 40320 23116 1 0 0.00014839428778928599 1.5497505427452305 4096 2048 384 12 96 2582 1920 128 384 1 5530610548 53244664 1 0 5 1 2 2 6 7618560 1474560 2949120 2705044 8985600 167 150 150 156 1959 7 2 4 6 45 0 0 0 0 0
27 1783859540036224800 DEPTH 38 1 0.79143945696072959 0.55451448040885853 1 9 1 9 0 0 2029 93 2547 23803989 209280 1274.82861328125 8.7203000000000017 1874.7381 40320 20480 1 0 0.13433027919204674 2.3057515358806704 4096 2048 384 12 96 2547 1920 128 384 1 5535227652 57861768 1 0 5 1 2 2 6 7618560 1474560 2949120 2705088 8985600 193 175 161 155 1863 11 8 26 4 44 0 0 0 0 0
28 1783859542155409500 DEPTH 41 1 0.79151959787395532 0.55451448040885853 1 9 1 9 0 0 2132 102 2554 23803953 209280 1249.8995208740234 8.6153999999999993 2041.3098 40320 21276 1 0 0.00047546691312138533 1.497358551665477 4096 2048 384 12 96 2554 1920 128 384 1 5539851896 62486012 1 0 5 1 2 2 6 7618560 1474560 2949120 2705052 8985600 159 168 150 171 1906 11 9 17 16 49 0 0 0 0 0
29 1783859544350225800 DEPTH 21 1 0.79159956614562654 0.56218057921635434 0 10 0 10 0 0 2448 70 2551 23803893 209280 1271.9963226318359 8.6923999999999992 2126.2433999999998 40320 22586 1 0 2.4584779324138999e-05 1.0722633759184834 4096 2048 384 12 96 2551 1920 128 384 1 5544473080 67107196 1 0 5 1 2 2 6 7618560 1474560 2949120 2704999 8985600 183 157 156 156 1899 20 5 9 4 32 0 0 0 0 0
30 1783859547427145200 DEPTH 12 1 0.786322219637407 0.63287904599659284 3 8 3 8 0 0 1430 100 2643 23803983 209280 1277.8661499023438 8.6981000000000002 2999.9007000000001 40320 19768 1 0 0.0015342879221033493 0.52805712610492539 4096 2048 384 12 96 2643 1920 128 384 1 5549188184 4713812 1 0 5 1 2 2 6 7618560 1474560 2949120 2705086 8985600 172 161 151 152 2007 28 5 6 4 57 0 0 0 0 0
31 1783859549664817300 DEPTH 42 1 1.0332998475074435 0 0 4 0 4 0 0 4096 20 2563 23742721 147840 1264.9236450195312 8.6529999999999987 2167.6929 40320 14848 1 0 0 0.0063610145412278767 4096 2048 384 12 96 2563 1920 0 384 1 5553661352 9186980 1 0 5 1 2 2 6 7372800 1474560 2949120 2951021 8985600 174 156 164 181 1888 2 1 6 0 11 0 0 0 0 0
32 1783859551837044400 DEPTH 56 1 0.83337522479943216 0.17206132879045993 2 4 2 4 0 0 4096 81 2534 23742649 147840 1276.0627136230469 8.9589999999999996 2104.529 40320 15313 1 0 0.0054355512702489233 0.48957545601177821 4096 2048 384 12 96 2534 1920 0 384 1 5558104940 13630568 1 0 5 1 2 2 6 7372800 1474560 2949120 2950955 8985600 206 187 160 315 1666 4 17 21 1 38 0 0 0 0 0
33 1783859554102899100 DEPTH 8 1 0.80845044101188535 0.26575809199318562 2 5 2 5 0 0 2355 36 2538 23742661 147840 1301.2572021484375 8.6571999999999996 2196.1028999999999 40320 16079 1 0 0.030103035119069095 0.91796646697047368 4096 2048 384 12 96 2538 1920 0 384 1 5562552608 18078236 1 0 5 1 2 2 6 7372800 1474560 2949120 2950965 8985600 216 174 166 167 1815 1 0 1 0 34 0 0 0 0 0
34 1783859556298837600 DEPTH 48 1 0.80852549681013219 0.26575809199318562 2 5 2 5 0 0 2395 47 2585 23742679 147840 1268.2065887451172 8.5968999999999998 2128.7918 40320 15453 1 0 0.0046043101471456684 0.20405439432789962 4096 2048 384 12 96 2585 1920 0 384 1 5567048216 22573844 1 0 5 1 2 2 6 7372800 1474560 2949120 2950984 8985600 168 158 160 168 1931 0 7 7 2 31 0 0 0 0 0
35 1783859558497144600 DEPTH 20 1 0.80860039285543817 0.26575809199318562 2 5 2 5 0 0 2051 25 2591 23742623 147840 1262.0585174560547 8.601799999999999 2128.8753000000002 40320 14561 1 0 0.001771835568079596 0.77081764157800148 4096 2048 384 12 96 2591 1920 0 384 1 5571549944 27075572 1 0 5 1 2 2 6 7372800 1474560 2949120 2950928 8985600 170 156 183 198 1884 0 0 0 0 25 0 0 0 0 0
36 1783859560682680900 DEPTH 9 1 0.80867512980503709 0.27342419080068137 1 6 1 6 0 0 2980 78 2550 23742651 147840 1306.5482177734375 8.6560000000000006 2118.0875000000001 40320 16219 1 0 0.00029749737042186297 0.32936763850020839 4096 2048 384 12 96 2550 1920 0 384 1 5576009852 31535480 1 0 5 1 2 2 6 7372800 1474560 2949120 2950952 8985600 173 168 161 183 1865 8 7 13 14 36 0 0 0 0 0
37 1783859562813822200 DEPTH 13 1 0.80874970831216497 0.27342419080068137 1 6 1 6 0 0 4096 84 2561 23742594 147840 1272.3138275146484 8.6225000000000005 2066.2374 40320 15248 1 0 0.022786735533611113 0.15623055639937777 4096 2048 384 12 96 2561 1920 0 384 1 5580480980 36006608 1 0 5 1 2 2 6 7372800 1474560 2949120 2950897 8985600 174 150 150 190 1897 8 17 7 6 46 0 0 0 0 0
38 1783859564961364500 DEPTH 57 1 0.80882412902609058 0.27342419080068137 1 6 1 6 0 0 4096 43 2545 23742681 147840 1290.4775695800781 8.9346999999999994 2083.4537999999998 40320 16187 1 0 0.00072752635965749523 0.50646269260782129 4096 2048 384 12 96 2545 1920 0 384 1 5584935788 40461416 1 0 5 1 2 2 6 7372800 1474560 2949120 2950987 8985600 187 163 169 164 1862 6 0 6 2 29 0 0 0 0 0
39 1783859567022960200 DEPTH 3 1 0.78703276669461864 0.64054514480408853 2 9 2 9 0 0 1095 52 2537 23803942 209280 1232.6533203125 8.7820999999999998 1994.4851000000001 40320 22603 1 0 0.0077247780151947464 0.15611804084716696 4096 2048 384 12 96 2537 1920 128 384 1 5589542692 45068320 1 0 5 1 2 2 6 7618560 1474560 2949120 2705047 8985600 190 164 150 176 1857 13 1 3 4 31 0 0 0 0 0
40 1783859569126833700 DEPTH 50 1 0.7871108823943197 0.64054514480408853 2 9 2 9 0 0 1034 49 2597 23804027 209280 1264.6726989746094 8.6475000000000009 2044.136 40320 21815 1 0 0.059365983438523645 2.1081194948679065 4096 2048 384 12 96 2597 1920 128 384 1 5594210796 49736424 1 0 5 1 2 2 6 7618560 1474560 2949120 2705130 8985600 151 150 150 150 1996 11 4 6 3 25 0 0 0 0 0
41 1783859571017917100 DEPTH 55 1 0.78718883379379867 0.64054514480408853 2 9 2 9 0 0 1068 53 2528 23803911 209280 1305.8864440917969 8.8234999999999992 1835.5429999999999 40320 21809 1 0 0.11267375438910436 0.93501389544354829 4096 2048 384 12 96 2528 1920 128 384 1 5598808520 54334148 1 0 5 1 2 2 6 7618560 1474560 2949120 2705016 8985600 196 202 168 168 1794 11 0 2 1 39 0 0 0 0 0
42 1783859573128031800 DEPTH 26 1 0.78726662156105365 0.64821124361158422 1 10 1 10 1 0 1792 80 2563 23803908 209280 1275.8805389404297 8.6456 2047.2760000000001 40320 20909 1 0 0.0018752441683851566 1.0565908685925454 4096 2048 384 12 96 2563 1920 128 384 1 5603441944 58967572 1 0 5 1 2 2 6 7618560 1474560 2949120 2705011 8985600 162 150 161 158 1932 13 5 13 10 39 0 0 0 0 1
43 1783859575259037700 DEPTH 40 1 0.78734424636006617 0.64821124361158422 1 10 1 10 0 0 1668 111 2585 23803912 209280 1264.4229125976562 8.6616999999999997 2068.5812000000001 40320 22251 1 0 0.08315556845306328 0.52708806647616635 4096 2048 384 12 96 2585 1920 128 384 1 5608097808 63623436 1 0 5 1 2 2 6 7618560 1474560 2949120 2705017 8985600 160 150 150 150 1975 13 12 7 14 65 0 0 0 0 0
44 1783859578367942700 DEPTH 10 1 0.78742170885083307 0.64821124361158422 1 10 1 10 0 0 1118 75 2559 23803889 209280 1274.0997924804688 8.6402000000000001 3040.6541999999999 40320 20833 1 0 0.0023995083271502065 2.8416920354575197 4096 2048 384 12 96 2559 1920 128 384 1 5612727232 1144432 1 0 5 1 2 2 6 7618560 1474560 2949120 2704995 8985600 199 156 161 164 1879 13 10 6 3 43 0 0 0 0 0
45 1783859580538982400 DEPTH 14 1 0.78749900968939857 0.65587734241908002 0 11 0 11 0 0 1618 117 2540 23803898 209280 1317.3084106445312 8.8140999999999998 2100.5536000000002 40320 19953 1 0 1.6719593580913314e-05 0.72140234505359491 4096 2048 384 12 96 2540 1920 128 384 1 5617337196 5754396 1 0 5 1 2 2 6 7618560 1474560 2949120 2705001 8985600 188 180 166 177 1829 12 5 6 1 93 0 0 0 0 0
46 1783859582476225800 DEPTH 23 1 0.78340948286121825 0.74190800681430991 1 11 1 11 1 0 3395 74 2533 23803971 209280 1305.2886962890625 8.6009000000000011 1870.6911 40320 20902 1 0 0.019300881082243489 0.74477203843732076 4096 2048 384 12 96 2533 1920 128 384 1 5621940020 10357220 1 0 5 1 2 2 6 7618560 1474560 2949120 2705070 8985600 199 160 158 173 1843 11 3 7 11 42 0 0 0 0 1
47 1783859584719746600 DEPTH 42 1 0.93140552727183434 0 0 4 0 4 0 0 4096 17 2563 23742682 147840 1260.0279388427734 8.6652000000000005 2180.9434000000001 47040 17856 1 0 0 0.0063610145412278767 4096 2048 384 12 96 2563 1920 0 384 1 5626413188 14830388 1 0 4 2 2 2 6 7127040 1720320 2949120 2950986 8985600 210 156 176 264 1757 0 1 0 0 16 0 0 0 0 0
48 1783859586957187100 DEPTH 17 1 0.80955979760523455 0.28109028960817717 0 7 0 7 0 0 3841 79 2567 23742690 147840 1264.2703399658203 8.8209 2153.183 40320 15584 1 0 1.7384002172801471e-05 0.059782352022523813 4096 2048 384 12 96 2567 1920 0 384 1 5630890436 19307636 1 0 5 1 2 2 6 7372800 1474560 2949120 2950993 8985600 169 150 156 165 1927 2 16 5 0 56 0 0 0 0 0
49 1783859589136932600 DEPTH 53 1 0.79463686179767468 0.37478705281090291 0 8 0 8 1 0 4096 103 2520 23742677 147840 1287.9771270751953 8.6140000000000008 2102.8492000000001 40320 16268 1 0 0 0.2106332408498392 4096 2048 384 12 96 2520 1920 0 384 1 5635319744 23736944 1 0 5 1 2 2 6 7372800 1474560 2949120 2950981 8985600 199 159 156 156 1850 17 3 16 19 48 0 0 0 0 2
50 1783859591323625700 DEPTH 11 1 0.79470530652385984 0.37478705281090291 0 8 0 8 1 0 2377 68 2561 23742681 147840 1270.2064514160156 8.6475000000000009 2120.6930000000002 40320 14997 1 0 0 0.7148495433218599 4096 2048 384 12 96 2561 1920 0 384 1 5639790872 28208072 1 0 5 1 2 2 6 7372800 1474560 2949120 2950985 8985600 182 156 167 180 1876 0 15 1 0 52 0 0 0 0 2
51 1783859593434170300 DEPTH 31 1 0.79477752751742314 0.3594548551959113 2 6 2 6 0 0 2595 48 2548 23742742 147840 1274.2277374267578 8.5823 2039.6128000000001 40320 15758 1 0 0.038014368460935123 0.97909598530596631 4096 2048 384 12 96 2548 1920 0 384 1 5644248740 32665940 1 0 5 1 2 2 6 7372800 1474560 2949120 2951044 8985600 166 165 177 194 1846 7 4 4 3 30 0 0 0 0 0
52 1783859595383219400 DEPTH 16 1 0.79484980515242754 0.3594548551959113 2 6 2 6 0 0 3163 78 2545 23742609 147840 1306.5699310302734 8.8133999999999997 1887.4042999999999 40320 17343 1 0 0.0062991239157878338 0.25319780240096146 4096 2048 384 12 96 2545 1920 0 384 1 5648703548 37120748 1 0 5 1 2 2 6 7372800 1474560 2949120 2950915 8985600 208 150 165 165 1857 17 2 11 7 41 0 0 0 0 0
53 1783859597582912900 DEPTH 33 1 0.79492193427821123 0.36712095400340705 1 7 1 7 0 0 3332 77 2546 23742650 147840 1322.2614898681641 8.7895000000000003 2125.3717999999999 40320 15731 1 0 0.00023585005086066899 0.32811287371681425 4096 2048 384 12 96 2546 1920 0 384 1 5653159376 41576576 1 0 5 1 2 2 6 7372800 1474560 2949120 2950956 8985600 188 162 166 186 1844 9 2 8 2 56 0 0 0 0 0
54 1783859599918041400 DEPTH 1 1 0.79499391548470288 0.36712095400340705 1 7 1 7 0 0 2950 68 2566 23742577 147840 1337.0747833251953 9.3988000000000014 2255.5216999999998 40320 15271 1 0 0.028773653260515411 1.8199943181710654 4096 2048 384 12 96 2566 1920 0 384 1 5657635604 46052804 1 0 5 1 2 2 6 7372800 1474560 2949120 2950881 8985600 183 150 162 179 1892 6 10 3 2 47 0 0 0 0 0
55 1783859602207005000 DEPTH 42 1 0.84077371203612028 0 0 4 0 4 0 0 4096 22 2560 23742657 147840 1314.2323303222656 8.7874000000000017 2286.9185000000002 80640 20000 1 0 0 0.0063610145412278767 4096 2048 384 12 96 2560 1920 0 384 1 5662105712 50522912 1 0 4 2 2 2 6 5898240 2949120 2949120 2950962 8985600 208 160 181 328 1683 1 0 1 0 20 0 0 0 0 0
56 1783859604404024700 DEPTH 56 1 0.81202577043585378 0.17206132879045993 2 4 2 4 0 0 4096 52 2540 23742635 147840 1278.9362640380859 8.6928999999999998 2137.1958 47040 19082 1 0 0.0054355512702489233 0.48957545601177821 4096 2048 384 12 96 2540 1920 0 384 1 5666555420 54972620 1 0 4 2 2 2 6 7127040 1720320 2949120 2950941 8985600 257 188 178 531 1386 2 2 8 1 39 0 0 0 0 0
57 1783859606645519300 DEPTH 44 1 0.7952089774358877 0.36712095400340705 1 7 1 7 0 0 2165 46 2621 23742624 147840 1290.0657501220703 8.7012 2181.1804000000002 40320 15182 1 0 0.027664597694635307 0.87919275545735165 4096 2048 384 12 96 2621 1920 0 384 1 5671087748 59504948 1 0 5 1 2 2 6 7372800 1474560 2949120 2950928 8985600 179 150 166 212 1914 0 4 5 0 37 0 0 0 0 0
58 1783859608811128700 DEPTH 52 1 0.79528037279558439 0.36712095400340705 1 7 1 7 0 0 2134 58 2566 23742631 147840 1269.1724395751953 8.7843999999999998 2095.4479999999999 40320 15348 1 0 7.4202217947583462e-05 1.936591165712374 4096 2048 384 12 96 2566 1920 0 384 1 5675563976 63981176 1 0 5 1 2 2 6 7372800 1474560 2949120 2950936 8985600 252 174 182 181 1777 1 2 2 5 48 0 0 0 0 0
59 1783859612282576100 DEPTH 46 1 0.79535162313417973 0.37478705281090291 0 8 0 8 0 0 2663 48 2564 23742666 147840 1312.9963684082031 9.1288 3409.0234 40320 15486 1 0 3.8232733419501159e-05 0.39408488134986086 4096 2048 384 12 96 2564 1920 0 384 1 5680038244 1347112 1 0 5 1 2 2 6 7372800 1474560 2949120 2950972 8985600 170 159 160 176 1899 4 5 3 1 35 0 0 0 0 0
60 1783859614234686900 DEPTH 49 1 0.78542272902120525 0.4454855195911413 3 6 3 6 0 0 1472 88 2538 23742596 147840 1343.4716186523438 8.6334 1888.8767 40320 15133 1 0 0.058061103203911842 2.3022417889218207 4096 2048 384 12 96 2538 1920 0 384 1 5684485912 5794780 1 0 5 1 2 2 6 7372800 1474560 2949120 2950898 8985600 186 178 163 173 1838 9 3 5 8 63 0 0 0 0 0
61 1783859616469119900 DEPTH 2 1 0.78549369102288524 0.45315161839863699 2 7 2 7 0 0 3433 121 2544 23742578 147840 1316.6808929443359 8.6409000000000002 2076.8883999999998 40320 15506 1 0 0.2773399391733698 2.0710771777085544 4096 2048 384 12 96 2544 1920 0 384 1 5688939700 10248568 1 0 5 1 2 2 6 7372800 1474560 2949120 2950883 8985600 187 178 182 181 1816 10 7 15 7 82 0 0 0 0 0
62 1783859618682613000 DEPTH 45 1 0.78556450970216041 0.45315161839863699 2 7 2 7 0 0 2099 58 2580 23742640 147840 1288.7234954833984 8.8470000000000013 2142.3341999999998 40320 15739 1 0 0.2309103244036371 1.4859222174523592 4096 2048 384 12 96 2580 1920 0 384 1 5693430208 14739076 1 0 5 1 2 2 6 7372800 1474560 2949120 2950943 8985600 200 150 156 170 1904 1 1 11 8 37 0 0 0 0 0
63 1783859619066569700 REFRESH 8 0 0.79750035561632726 0.26575809199318562 2 5 2 5 0 0 2358 11 414 3988953 56640 239.66514587402344 1.4325000000000001 323.9511 6720 4723 0 0 0.030103035119069095 0.91796646697047368 4096 2048 64 1 16 414 320 0 64 0 5694160712 15469580 1 0 5 1 2 2 6 1228800 245760 491520 491672 1497600 28 25 25 27 309 0 0 0 0 11 0 0 0 0 0
64 1783859619480261900 REFRESH 26 0 0.74326971551611154 0.64821124361158422 1 10 1 10 0 0 1807 37 416 3988946 56640 227.80621337890625 1.4496 342.9744 6720 4977 0 0 0.0018752441683851566 1.0565908685925454 4096 2048 64 1 16 416 320 0 64 0 5694893256 16202124 1 0 5 1 2 2 6 1228800 245760 491520 491665 1497600 28 25 29 30 304 7 0 1 2 27 0 0 0 0 0
65 1783859619884478800 REFRESH 10 0 0.73327611138625293 0.64821124361158422 1 10 1 10 0 0 1130 35 421 3988953 56640 242.71769714355469 1.4439 340.55419999999998 6720 4992 0 0 0.0023995083271502065 2.8416920354575197 4096 2048 64 1 16 421 320 0 64 0 5695630900 16939768 1 0 5 1 2 2 6 1228800 245760 491520 491672 1497600 27 25 27 31 311 4 0 2 5 24 0 0 0 0 0
66 1783859620222004800 REFRESH 33 0 0.66270170472030709 0.36712095400340705 1 7 1 7 0 0 3348 41 413 3988957 56640 236.44876098632812 1.8366 335.77120000000002 6720 4773 0 0 0.00023585005086066899 0.32811287371681425 4096 2048 64 1 16 413 320 0 64 0 5696360384 17669252 1 0 5 1 2 2 6 1228800 245760 491520 491676 1497600 26 25 43 29 290 1 0 3 0 37 0 0 0 0 0
67 1783859620637723100 REFRESH 25 0 0.78591647273875642 0.4608177172061329 1 8 1 8 0 0 2281 36 413 3988966 56640 241.32199096679688 1.4414 348.91890000000001 6720 4938 0 0 0.0002866720556610524 1.4641012066807393 4096 2048 64 1 16 413 320 0 64 0 5697089868 18398736 1 0 5 1 2 2 6 1228800 245760 491520 491685 1497600 30 25 27 28 303 3 0 2 0 31 0 0 0 0 0
68 1783859621039611800 REFRESH 4 0 0.78173376521204874 0.8356047700170357 1 12 1 12 0 0 276 12 418 4050322 118080 231.11091613769531 1.4772000000000001 331.39440000000002 6720 5064 0 0 0.040411785743191188 1.4510951908289993 4096 2048 64 1 16 418 320 128 64 0 5697984708 19293576 1 0 6 1 2 1 6 1474560 245760 491520 245841 1497600 26 25 25 25 317 3 0 0 1 8 0 0 0 0 0
69 1783859621465496000 REFRESH 17 0 0.75790184767176583 0.28109028960817717 0 7 0 7 0 0 3863 54 418 3988952 56640 235.68486022949219 1.4887999999999999 360.8039 6720 4830 0 0 1.7384002172801471e-05 0.059782352022523813 4096 2048 64 1 16 418 320 0 64 0 5698719292 20028160 1 0 5 1 2 2 6 1228800 245760 491520 491672 1497600 29 25 32 34 298 7 0 3 7 37 0 0 0 0 0
70 1783859621858677000 REFRESH 28 0 0.78188083525609686 0.8279386712095399 2 11 2 11 0 0 630 15 408 4050327 118080 221.77792358398438 1.4514 320.75979999999998 6720 4850 0 0 0.00022189812580462688 0.92047472736303015 4096 2048 64 1 16 408 320 128 64 0 5699603932 20912800 1 0 6 1 2 1 6 1474560 245760 491520 245839 1497600 31 28 25 26 298 4 0 0 0 11 0 0 0 0 0
71 1783859622232847500 REFRESH 43 0 0.78195415116745248 0.8279386712095399 2 11 2 11 0 0 769 15 418 4050323 118080 221.29971313476562 1.4518 310.83999999999997 6720 5160 0 0 0.009842172204325185 1.2471290918008606 4096 2048 64 1 16 418 320 128 64 0 5700498772 21807640 1 0 6 1 2 1 6 1474560 245760 491520 245840 1497600 26 25 25 25 317 2 1 0 1 11 0 0 0 0 0
72 1783859622596741100 REFRESH 15 0 0.77930004902576655 0.91396933560476989 3 11 3 11 0 0 320 9 412 4050325 118080 221.88914489746094 1.4494 308.82909999999998 6720 5086 0 0 0.13215737202774189 0.95319511763653475 4096 2048 64 1 16 412 320 128 64 0 5701387492 22696360 1 0 6 1 2 1 6 1474560 245760 491520 245842 1497600 31 25 27 25 304 0 0 0 0 9 0 0 0 0 0
73 1783859623005383900 REFRESH 39 0 0.77919135654204763 0.55451448040885853 1 9 1 9 0 0 1569 11 425 3988947 56640 219.9234619140625 1.4316 340.28789999999998 6720 5019 0 0 0.00014839428778928599 1.5497505427452305 4096 2048 64 1 16 425 320 0 64 0 5702129216 23438084 1 0 5 1 2 2 6 1228800 245760 491520 491667 1497600 26 25 34 38 302 1 0 4 0 6 0 0 0 0 0
74 1783859623409657500 REFRESH 54 0 0.78640335524342331 0.4608177172061329 1 8 1 8 0 0 1186 19 421 3988954 56640 219.86714172363281 1.4299999999999999 342.19049999999999 6720 4985 0 0 0.00048566486093188938 1.0664299709342928 4096 2048 64 1 16 421 320 0 64 0 5702866860 24175728 1 0 5 1 2 2 6 1228800 245760 491520 491671 1497600 31 25 37 38 290 4 0 2 2 11 0 0 0 0 0
75 1783859623778931000 REFRESH 24 0 0.77724596710966298 1 4 11 4 11 0 0 491 17 408 4050343 118080 221.18070983886719 1.4497 312.42320000000001 6720 5039 0 0 0.027869521123281102 1.4468046609733554 4096 2048 64 1 16 408 320 128 64 0 5703751500 25060368 1 0 6 1 2 1 6 1474560 245760 491520 245862 1497600 28 27 25 25 303 2 0 0 0 15 0 0 0 0 0
76 1783859624164542500 REFRESH 37 0 0.7823185619309535 0.8356047700170357 1 12 1 12 0 0 978 31 414 4050306 118080 219.88070678710938 1.4502999999999999 316.38639999999998 6720 5047 0 0 0.0033651663875057473 0.47165320917887499 4096 2048 64 1 16 414 320 128 64 0 5704642260 25951128 1 0 6 1 2 1 6 1474560 245760 491520 245825 1497600 30 25 25 26 308 2 0 0 1 28 0 0 0 0 0
77 1783859624530049600 REFRESH 22 0 0.77966374145297768 0.91396933560476989 3 11 3 11 0 0 472 16 417 4050321 118080 221.62022399902344 1.4531000000000001 310.17309999999998 6720 4786 0 0 0.0083533723482868329 0.70040182967037024 4096 2048 64 1 16 417 320 128 64 0 5705536080 26844948 1 0 6 1 2 1 6 1474560 245760 491520 245840 1497600 27 25 26 25 314 1 0 0 0 15 0 0 0 0 0
78 1783859624895949200 REFRESH 36 0 0.78246332439902178 0.82027257240204421 3 10 3 10 0 0 1194 27 410 4050299 118080 219.52716064453125 1.4573 308.14299999999997 6720 5044 0 0 0.063069086016965495 0.15492757616277195 4096 2048 64 1 16 410 320 128 64 0 5706422760 27731628 1 0 6 1 2 1 6 1474560 245760 491520 245818 1497600 31 28 25 26 300 1 0 0 0 26 0 0 0 0 0
79 1783859625249850500 REFRESH 42 0 0.99252480497044648 0 0 4 0 4 0 0 4096 19 417 3988946 56640 220.16717529296875 1.4328000000000001 352.44819999999999 13440 8148 0 0 0 0.0063610145412278767 4096 2048 64 1 16 417 320 0 64 0 5707156324 28465192 1 0 4 2 2 2 6 983040 491520 491520 491665 1497600 52 29 36 51 249 1 1 4 1 12 0 0 0 0 0
80 1783859625622313800 REFRESH 51 0 0.77988024816839929 0.91396933560476989 3 11 3 11 0 0 533 14 410 4050306 118080 219.74937438964844 1.4745999999999999 311.0643 6720 5072 0 0 0.04374756045180065 0.27288744213454319 4096 2048 64 1 16 410 320 128 64 0 5708043004 29351872 1 0 6 1 2 1 6 1474560 245760 491520 245824 1497600 30 25 25 26 304 1 0 0 0 13 0 0 0 0 0
81 1783859626009019500 REFRESH 27 0 0.7799521355140947 0.93696763202725719 0 14 0 14 0 0 867 15 416 4050326 118080 220.88397216796875 1.4530000000000001 331.39429999999999 6720 4971 0 0 4.4312838867707149e-06 0.92228926599200534 4096 2048 64 1 16 416 320 128 64 0 5708935804 30244672 1 0 6 1 2 1 6 1474560 245760 491520 245844 1497600 28 25 25 25 313 0 0 0 0 15 0 0 0 0 0
82 1783859626383104800 REFRESH 6 0 0.78002388296494174 0.91396933560476989 3 11 3 11 0 0 380 12 422 4050323 118080 219.56608581542969 1.4479 311.22070000000002 6720 5109 0 0 0.078472369408099776 0.14391543825984973 4096 2048 64 1 16 422 320 128 64 0 5709834724 31143592 1 0 6 1 2 1 6 1474560 245760 491520 245840 1497600 28 25 25 27 317 4 0 0 0 8 0 0 0 0 0
83 1783859626740903800 REFRESH 47 0 0.78282276377469551 0.8279386712095399 2 11 2 11 0 0 654 17 410 4050337 118080 220.45695495605469 1.4470000000000001 305.03129999999999 6720 5042 0 0 0.018949803200694559 1.2450274644230548 4096 2048 64 1 16 410 320 128 64 0 5710721404 32030272 1 0 6 1 2 1 6 1474560 245760 491520 245854 1497600 28 25 26 26 305 0 0 0 0 17 0 0 0 0 0
84 1783859627119551700 REFRESH 18 0 0.7801669602850887 0.9293015332197615 1 13 1 13 0 0 440 12 414 4050317 118080 222.18547058105469 1.4520999999999999 322.16090000000003 6720 4792 0 0 0.0012157253655346659 1.5441952694290573 4096 2048 64 1 16 414 320 128 64 0 5711612164 32921032 1 0 6 1 2 1 6 1474560 245760 491520 245835 1497600 28 27 25 26 308 1 0 0 1 10 0 0 0 0 0
85 1783859627558668700 REFRESH 11 0 0.78397236678580662 0.37478705281090291 0 8 0 8 0 0 2395 41 415 3988962 56640 219.85078430175781 1.4326000000000001 351.52809999999999 6720 4836 0 0 0 0.7148495433218599 4096 2048 64 1 16 415 320 0 64 0 5712343688 33652556 1 0 5 1 2 2 6 1228800 245760 491520 491682 1497600 36 25 47 35 272 5 0 2 5 29 0 0 0 0 0
86 1783859627999640200 REFRESH 13 0 0.79901386695510679 0.27342419080068137 1 6 1 6 0 0 4096 67 412 3988960 56640 220.10981750488281 1.4332 321.06689999999998 6720 4766 0 0 0.022786735533611113 0.15623055639937777 4096 2048 64 1 16 412 320 0 64 0 5713072152 34381020 1 0 5 1 2 2 6 1228800 245760 491520 491680 1497600 29 25 42 31 285 5 0 6 9 47 0 0 0 0 0
87 1783859628322987100 REFRESH 1 0 0.78407813935855719 0.36712095400340705 1 7 1 7 0 0 2989 69 415 3988949 56640 220.31564331054688 1.4311 322.14640000000003 6720 4843 0 0 0.028773653260515411 1.8199943181710654 4096 2048 64 1 16 415 320 0 64 0 5713803676 35112544 1 0 5 1 2 2 6 1228800 245760 491520 491668 1497600 33 25 30 39 288 4 0 6 11 48 0 0 0 0 0
88 1783859628662321400 REFRESH 46 0 0.78414228804030173 0.37478705281090291 0 8 0 8 0 0 2671 21 408 3988964 56640 221.34477233886719 1.4296 338.1388 6720 4865 0 0 3.8232733419501159e-05 0.39408488134986086 4096 2048 64 1 16 408 320 0 64 0 5714528060 35836928 1 0 5 1 2 2 6 1228800 245760 491520 491684 1497600 49 25 37 32 265 2 0 0 1 18 0 0 0 0 0
89 1783859628971740300 REFRESH 2 0 0.77420631346094337 0.45315161839863699 2 7 2 7 0 0 3457 48 413 3988953 56640 220.18048095703125 1.4335 308.32499999999999 6720 4816 0 0 0.2773399391733698 2.0710771777085544 4096 2048 64 1 16 413 320 0 64 0 5715257544 36566412 1 0 5 1 2 2 6 1228800 245760 491520 491673 1497600 31 25 33 29 295 1 0 4 2 41 0 0 0 0 0
90 1783859629341199400 REFRESH 35 0 0.78332016165219098 0.8279386712095399 2 11 2 11 0 0 1086 14 407 4050313 118080 221.0672607421875 1.4490000000000001 307.87959999999998 6720 5061 0 0 0.12120608375158826 1.1047241122088913 4096 2048 64 1 16 407 320 128 64 0 5716141164 37450032 1 0 6 1 2 1 6 1474560 245760 491520 245832 1497600 30 25 25 26 301 1 0 0 0 13 0 0 0 0 0
91 1783859629714726200 REFRESH 9 0 0.79933399634866442 0.27342419080068137 1 6 1 6 0 0 3019 64 411 3988955 56640 221.51577758789062 1.4452 310.97489999999999 6720 4827 0 0 0.00029749737042186297 0.32936763850020839 4096 2048 64 1 16 411 320 0 64 0 5716868608 38177476 1 0 5 1 2 2 6 1228800 245760 491520 491674 1497600 35 25 27 32 292 6 0 0 1 57 0 0 0 0 0
92 1783859630139617500 REFRESH 58 0 0.78073377764887864 0.92163543441226559 2 12 2 12 0 0 522 17 408 4050330 118080 220.86041259765625 1.4531000000000001 309.02260000000001 6720 5079 0 0 0.0096214935481512883 1.6134051887685537 4096 2048 64 1 16 408 320 128 64 0 5717753248 39062116 1 0 6 1 2 1 6 1474560 245760 491520 245850 1497600 31 27 25 25 300 3 0 0 0 14 0 0 0 0 0
93 1783859630496557600 REFRESH 41 0 0.78054887066422407 0.55451448040885853 1 9 1 9 0 0 2154 52 411 3988951 56640 218.935302734375 1.4339 302.41759999999999 6720 5046 0 0 0.00047546691312138533 1.497358551665477 4096 2048 64 1 16 411 320 0 64 0 5718480692 39789560 1 0 5 1 2 2 6 1228800 245760 491520 491668 1497600 29 25 32 32 293 2 0 1 1 48 0 0 0 0 0
94 1783859630850240300 REFRESH 55 0 0.7752582390019026 0.64054514480408853 2 9 2 9 0 0 1069 11 408 3988951 56640 222.129150390625 1.4374 299.04730000000001 6720 4993 0 0 0.11267375438910436 0.93501389544354829 4096 2048 64 1 16 408 320 0 64 0 5719205076 40513944 1 0 5 1 2 2 6 1228800 245760 491520 491671 1497600 29 26 27 26 300 0 0 0 0 11 0 0 0 0 0
95 1783859631176939800 REFRESH 52 0 0.78458790297808068 0.36712095400340705 1 7 1 7 0 0 2146 35 420 3988960 56640 219.36128234863281 1.4291 325.3537 6720 4729 0 0 7.4202217947583462e-05 1.936591165712374 4096 2048 64 1 16 420 320 0 64 0 5719941700 41250568 1 0 5 1 2 2 6 1228800 245760 491520 491679 1497600 70 25 41 27 257 1 2 1 11 20 0 0 0 0 0
96 1783859631540421400 REFRESH 16 0 0.78465107825710423 0.3594548551959113 2 6 2 6 0 0 3185 42 411 3988962 56640 222.10969543457031 1.4329000000000001 307.2706 6720 4808 0 0 0.0062991239157878338 0.25319780240096146 4096 2048 64 1 16 411 320 0 64 0 5720669144 41978012 1 0 5 1 2 2 6 1228800 245760 491520 491682 1497600 30 25 27 28 301 0 0 0 1 41 0 0 0 0 0
97 1783859631908510400 REFRESH 0 0 0.78381093123625634 0.8279386712095399 2 11 2 11 0 0 868 17 415 4050310 118080 219.43807983398438 1.4583999999999999 308.38330000000002 6720 5056 0 0 0.00014140214567446167 2.30096177437744 4096 2048 64 1 16 415 320 128 64 0 5721560924 42869792 1 0 6 1 2 1 6 1474560 245760 491520 245828 1497600 27 25 25 25 313 1 0 0 0 16 0 0 0 0 0
98 1783859632302351500 REFRESH 48 0 0.79977707025536104 0.26575809199318562 2 5 2 5 0 0 2408 36 417 3988948 56640 220.23680114746094 1.4335 325.46269999999998 6720 4787 0 0 0.0046043101471456684 0.20405439432789962 4096 2048 64 1 16 417 320 0 64 0 5722294488 43603356 1 0 5 1 2 2 6 1228800 245760 491520 491668 1497600 30 25 39 29 294 5 1 3 3 24 0 0 0 0 0
99 1783859632647453700 REFRESH 44 0 0.78483988784906478 0.36712095400340705 1 7 1 7 0 0 2195 57 422 3988949 56640 220.44773864746094 1.4389000000000001 343.75369999999998 6720 4792 0 0 0.027664597694635307 0.87919275545735165 4096 2048 64 1 16 422 320 0 64 0 5723033152 44342020 1 0 5 1 2 2 6 1228800 245760 491520 491669 1497600 28 25 53 26 290 12 0 7 9 29 0 0 0 0 0
100 1783859633035778300 REFRESH 30 0 0.78815466723825955 0.4608177172061329 1 8 1 8 0 0 3392 74 414 3988969 56640 220.3187255859375 1.4512 328.88479999999998 6720 5003 0 0 0.0010823191780834386 1.5810805031597897 4096 2048 64 1 16 414 320 0 64 0 5723763656 45072524 1 0 5 1 2 2 6 1228800 245760 491520 491688 1497600 29 25 35 31 294 0 0 4 4 66 0 0 0 0 0
101 1783859633411258600 REFRESH 32 0 0.78822030306910262 0.4608177172061329 1 8 1 8 0 0 2901 55 411 3988970 56640 220.65766906738281 1.4343999999999999 306.26420000000002 6720 4952 0 0 0.0011665864340913636 1.8037808584357806 4096 2048 64 1 16 411 320 0 64 0 5724491100 45799968 1 0 5 1 2 2 6 1228800 245760 491520 491689 1497600 30 25 26 28 302 1 0 2 1 51 0 0 0 0 0
102 1783859633772904100 REFRESH 34 0 0.78415751668689226 0.8356047700170357 1 12 1 12 0 0 699 13 416 4050315 118080 220.07376098632812 1.4509000000000001 306.5829 6720 5088 0 0 0.00024456112032069028 1.7981817145069319 4096 2048 64 1 16 416 320 128 64 0 5725383900 46692768 1 0 6 1 2 1 6 1474560 245760 491520 245833 1497600 28 25 25 26 312 2 0 0 0 11 0 0 0 0 0
103 1783859634154736600 REFRESH 50 0 0.77585120548092279 0.64054514480408853 2 9 2 9 0 0 1039 11 424 3988962 56640 219.35206604003906 1.4323999999999999 315.07260000000002 6720 4920 0 0 0.059365983438523645 2.1081194948679065 4096 2048 64 1 16 424 320 0 64 0 5726124604 47433472 1 0 5 1 2 2 6 1228800 245760 491520 491681 1497600 28 25 25 25 321 1 0 0 3 7 0 0 0 0 0
104 1783859634524384400 REFRESH 3 0 0.77591647295457078 0.64054514480408853 2 9 2 9 0 0 1098 21 412 3988970 56640 218.71002197265625 1.4339 300.10480000000001 6720 5037 0 0 0.0077247780151947464 0.15611804084716696 4096 2048 64 1 16 412 320 0 64 0 5726853068 48161936 1 0 5 1 2 2 6 1228800 245760 491520 491690 1497600 28 25 33 27 299 0 0 0 2 19 0 0 0 0 0
105 1783859634887376300 REFRESH 38 0 0.78133876138831027 0.55451448040885853 1 9 1 9 0 0 2049 40 414 3988959 56640 220.02482604980469 1.4340999999999999 299.3109 6720 4927 0 0 0.13433027919204674 2.3057515358806704 4096 2048 64 1 16 414 320 0 64 0 5727583572 48892440 1 0 5 1 2 2 6 1228800 245760 491520 491679 1497600 26 26 27 26 309 0 0 0 0 40 0 0 0 0 0
106 1783859635246974500 REFRESH 14 0 0.77604664265108769 0.65587734241908002 0 11 0 11 0 0 1621 21 416 3988949 56640 223.29344177246094 1.4326000000000001 302.70850000000002 6720 4938 0 0 1.6719593580913314e-05 0.72140234505359491 4096 2048 64 1 16 416 320 0 64 0 5728316116 49624984 1 0 5 1 2 2 6 1228800 245760 491520 491669 1497600 27 25 26 26 312 0 0 0 0 21 0 0 0 0 0
107 1783859635620914900 REFRESH 5 0 0.78450086634377414 0.8279386712095399 2 11 2 11 0 0 849 15 414 4050323 118080 218.45811462402344 1.4545999999999999 309.10399999999998 6720 5114 0 0 0.0052130349881175271 0.43131802450155321 4096 2048 64 1 16 414 320 128 64 0 5729206876 50515744 1 0 6 1 2 1 6 1474560 245760 491520 245838 1497600 25 25 26 25 313 1 0 0 1 13 0 0 0 0 0
108 1783859636015907000 REFRESH 40 0 0.77617632827064764 0.64821124361158422 1 10 1 10 0 0 1674 26 417 3988945 56640 219.23942565917969 1.4333 329.85160000000002 6720 4965 0 0 0.08315556845306328 0.52708806647616635 4096 2048 64 1 16 417 320 0 64 0 5729940440 51249308 1 0 5 1 2 2 6 1228800 245760 491520 491665 1497600 25 25 26 26 315 3 1 0 5 17 0 0 0 0 0
109 1783859636379920300 REFRESH 57 0 0.80046162451298009 0.27342419080068137 1 6 1 6 0 0 4096 25 405 3988951 56640 220.83174133300781 1.4406000000000001 307.89429999999999 6720 4809 0 0 0.00072752635965749523 0.50646269260782129 4096 2048 64 1 16 405 320 0 64 0 5730661764 51970632 1 0 5 1 2 2 6 1228800 245760 491520 491669 1497600 33 25 35 36 276 1 0 0 0 24 0 0 0 0 0
110 1783859636741876100 REFRESH 49 0 0.77552316351529871 0.4454855195911413 3 6 3 6 0 0 1482 33 408 3988958 56640 219.66131591796875 1.4341999999999999 295.57089999999999 6720 4754 0 0 0.058061103203911842 2.3022417889218207 4096 2048 64 1 16 408 320 0 64 0 5731386148 52695016 1 0 5 1 2 2 6 1228800 245760 491520 491678 1497600 31 26 28 31 292 1 0 0 0 32 0 0 0 0 0
111 1783859637129664800 REFRESH 19 0 0.78477325534652587 0.8279386712095399 2 11 2 11 0 0 848 19 413 4050334 118080 219.9908447265625 1.4544999999999999 314.19799999999998 6720 5021 0 0 0.024134501803917539 0.35880585544835542 4096 2048 64 1 16 413 320 128 64 0 5732275888 53584756 1 0 6 1 2 1 6 1474560 245760 491520 245853 1497600 26 26 26 26 309 2 0 0 0 17 0 0 0 0 0
112 1783859637508415400 REFRESH 12 0 0.77643426114692071 0.63287904599659284 3 8 3 8 0 0 1445 37 426 3988948 56640 220.68025207519531 1.4289000000000001 298.89760000000001 6720 4994 0 0 0.0015342879221033493 0.52805712610492539 4096 2048 64 1 16 426 320 0 64 0 5733018632 54327500 1 0 5 1 2 2 6 1228800 245760 491520 491665 1497600 38 25 26 33 304 0 0 0 1 36 0 0 0 0 0
113 1783859637882258700 REFRESH 31 0 0.78570709971666886 0.3594548551959113 2 6 2 6 0 0 2622 58 416 3988951 56640 219.43193054199219 1.444 316.10590000000002 6720 4788 0 0 0.038014368460935123 0.97909598530596631 4096 2048 64 1 16 416 320 0 64 0 5733751176 55060044 1 0 5 1 2 2 6 1228800 245760 491520 491670 1497600 32 25 39 39 281 3 0 3 7 45 0 0 0 0 0
114 1783859638368909000 REFRESH 29 0 0.78497622992881944 0.82027257240204421 3 10 3 10 0 0 1102 9 415 4050328 118080 218.73123168945312 1.4531000000000001 418.49090000000001 6720 5076 0 0 0.26278519260479372 0.96843308429688912 4096 2048 64 1 16 415 320 128 64 0 5734642956 55951824 1 0 6 1 2 1 6 1474560 245760 491520 245847 1497600 26 25 25 25 314 0 1 0 0 8 0 0 0 0 0
115 1783859638733927600 REFRESH 7 0 0.78504363961537527 0.8356047700170357 1 12 1 12 0 0 857 12 410 4050329 118080 220.37094116210938 1.4557 307.79969999999997 6720 5053 0 0 0.00025497404471684274 0.86876728204740172 4096 2048 64 1 16 410 320 128 64 0 5735529636 56838504 1 0 6 1 2 1 6 1474560 245760 491520 245848 1497600 28 28 25 25 304 0 0 0 0 12 0 0 0 0 0
116 1783859639206400700 REFRESH 56 0 0.81453889345775787 0.17206132879045993 2 4 2 4 0 0 4096 56 416 3988958 56640 241.03321838378906 1.4329000000000001 357.12630000000001 13440 8755 0 0 0.0054355512702489233 0.48957545601177821 4096 2048 64 1 16 416 320 0 64 0 5736262180 57571048 1 0 4 2 2 2 6 983040 491520 491520 491676 1497600 36 26 36 49 269 6 1 7 6 36 0 0 0 0 0
117 1783859639534917100 REFRESH 45 0 0.77595077448072869 0.45315161839863699 2 7 2 7 0 0 2104 29 413 3988987 56640 225.90156555175781 1.4359 327.03809999999999 6720 4710 0 0 0.2309103244036371 1.4859222174523592 4096 2048 64 1 16 413 320 0 64 0 5736991664 58300532 1 0 5 1 2 2 6 1228800 245760 491520 491707 1497600 54 25 25 28 281 3 0 1 3 22 0 0 0 0 0
118 1783859639947952000 REFRESH 53 0 0.78602760910663005 0.37478705281090291 0 8 0 8 0 0 4096 54 403 3988953 56640 240.62771606445312 1.4525999999999999 346.89550000000003 6720 4753 0 0 0 0.2106332408498392 4096 2048 64 1 16 403 320 0 64 0 5737710948 59019816 1 0 5 1 2 2 6 1228800 245760 491520 491671 1497600 29 25 29 29 291 0 0 2 3 49 0 0 0 0 0
119 1783859640376387000 REFRESH 20 0 0.80107194466101705 0.26575809199318562 2 5 2 5 0 0 2051 4 431 3988958 56640 226.47212219238281 1.4388000000000001 373.1404 6720 4797 0 0 0.001771835568079596 0.77081764157800148 4096 2048 64 1 16 431 320 0 64 0 5738458792 59767660 1 0 5 1 2 2 6 1228800 245760 491520 491676 1497600 32 25 36 50 288 0 0 0 0 4 0 0 0 0 0
120 1783859640742830100 REFRESH 23 0 0.77280087044746548 0.74190800681430991 1 11 1 11 0 0 3399 11 407 3988974 56640 223.9129638671875 1.4343999999999999 304.46140000000003 6720 4962 0 0 0.019300881082243489 0.74477203843732076 4096 2048 64 1 16 407 320 0 64 0 5739182156 60491024 1 0 5 1 2 2 6 1228800 245760 491520 491692 1497600 29 25 31 26 296 0 0 0 0 11 0 0 0 0 0
121 1783859641126523800 REFRESH 21 0 0.78236486489825363 0.56218057921635434 0 10 0 10 0 0 2465 43 415 3988951 56640 221.14201354980469 1.4588000000000001 324.53730000000002 6720 4917 0 0 2.4584779324138999e-05 1.0722633759184834 4096 2048 64 1 16 415 320 0 64 0 5739913680 61222548 1 0 5 1 2 2 6 1228800 245760 491520 491671 1497600 30 25 27 32 301 2 0 6 5 30 0 0 0 0 0
122 1783859643371313600 DEPTH 42 1 0.99626235351166648 0 0 4 0 4 0 0 4096 19 2549 23742608 147840 1307.0255279541016 8.6059999999999999 2182.6197000000002 80640 40450 1 0 0 0.0063610145412278767 4096 2048 384 12 96 2549 1920 0 384 1 5744372568 65681436 1 0 4 2 2 2 6 5898240 2949120 2949120 2950913 8985600 190 150 155 213 1841 0 0 1 0 18 0 0 0 0 0
123 1783859646650584900 DEPTH 8 1 0.78994383061996032 0.26575809199318562 2 5 2 5 0 0 2365 44 2532 23742618 147840 1283.1841278076172 8.7830000000000013 3083.9605999999999 53760 32672 1 0 0.030103035119069095 0.91796646697047368 4096 2048 384 12 96 2532 1920 0 384 1 5748814196 3015628 1 0 4 2 2 2 6 6881280 1966080 2949120 2950923 8985600 161 152 150 156 1913 0 0 0 0 44 0 0 0 0 0
124 1783859648784622700 DEPTH 9 1 0.79000125987690195 0.27342419080068137 1 6 1 6 0 0 3036 56 2535 23742684 147840 1299.1714477539062 9.0946999999999996 2049.2062000000001 53760 32662 1 0 0.00029749737042186297 0.32936763850020839 4096 2048 384 12 96 2535 1920 0 384 1 5753258804 7460236 1 0 4 2 2 2 6 6881280 1966080 2949120 2950989 8985600 165 150 155 156 1909 14 0 0 2 40 0 0 0 0 0
125 1783859650890356800 DEPTH 13 1 0.79005858550611718 0.27342419080068137 1 6 1 6 0 0 4096 73 2562 23742708 147840 1267.5420227050781 8.787700000000001 2047.8126999999999 73920 40365 1 0 0.022786735533611113 0.15623055639937777 4096 2048 384 12 96 2562 1920 0 384 1 5757730952 11932384 1 0 4 2 2 2 6 6144000 2703360 2949120 2951012 8985600 161 154 151 150 1946 2 3 8 4 56 0 0 0 0 0
126 1783859653101618300 DEPTH 17 1 0.79011580786937752 0.28109028960817717 0 7 0 7 0 0 3900 78 2557 23742635 147840 1306.672119140625 8.7594999999999992 2146.8897000000002 73920 40508 1 1 1.7384002172801471e-05 0.059782352022523813 4096 2048 384 12 96 2557 1920 0 384 1 5762198000 16399432 1 0 4 2 2 2 6 6144000 2703360 2949120 2950939 8985600 162 150 156 156 1933 13 12 0 4 48 0 0 0 0 0
127 1783859655236074700 DEPTH 48 1 0.79017292732658606 0.26575809199318562 2 5 2 5 0 0 2416 45 2584 23742688 147840 1287.1475067138672 8.8102 2132.3739 73920 40740 1 0 0.0046043101471456684 0.20405439432789962 4096 2048 384 12 96 2584 1920 0 384 1 5766692588 20894020 1 0 4 2 2 2 6 6144000 2703360 2949120 2950991 8985600 153 157 150 150 1974 3 5 1 4 32 0 0 0 0 0
128 1783859657405286100 DEPTH 54 1 0.7766118021794014 0.4608177172061329 1 8 1 8 0 0 1190 35 2553 23742649 147840 1311.9477844238281 8.593 2107.5001000000002 40320 22589 1 0 0.00048566486093188938 1.0664299709342928 4096 2048 384 12 96 2553 1920 0 384 1 5771155556 25356988 1 0 5 1 2 2 6 7372800 1474560 2949120 2950955 8985600 154 150 173 193 1883 1 0 3 3 28 0 0 0 0 0
129 1783859659746415100 DEPTH 25 1 0.77667124766297002 0.4608177172061329 1 8 1 8 0 0 2300 64 2545 23742163 147840 1398.0724487304688 8.8847000000000005 2204.8355999999999 73920 45124 1 0 0.0002866720556610524 1.4641012066807393 4096 2048 384 12 96 2545 1920 0 384 1 5775610364 29811796 1 0 4 2 2 2 6 6881280 2703360 2949120 2213186 8985600 156 150 156 160 1923 11 2 10 6 35 0 0 0 0 0
130 1783859661958786700 DEPTH 42 1 0.81883295637122744 0 0 4 0 4 0 0 4096 17 2563 23731735 136320 1281.3885498046875 8.6743000000000006 2143.8806 100800 45761 1 0 0 0.0063610145412278767 4096 2048 383 12 96 2563 1920 0 383 1 5780081916 34283348 1 0 4 3 2 2 5 5898240 3686400 2949120 2950944 8236800 195 150 158 476 1584 0 0 0 0 17 0 0 0 0 0
131 1783859664149250800 DEPTH 32 1 0.77678981990116314 0.4608177172061329 1 8 1 8 0 0 2922 75 2554 23742664 147840 1277.9263610839844 8.6893999999999991 2057.4546 40320 22890 1 0 0.0011665864340913636 1.8037808584357806 4096 2048 384 12 96 2554 1920 0 384 1 5784545904 38747336 1 0 5 1 2 2 6 7372800 1474560 2949120 2950968 8985600 150 150 154 155 1945 14 0 14 6 41 0 0 0 0 0
132 1783859666361263800 DEPTH 30 1 0.77684894739036359 0.4608177172061329 1 8 1 8 0 0 3415 90 2534 23742680 147840 1318.7254486083984 8.6788000000000007 2140.6943000000001 40320 22872 1 0 0.0010823191780834386 1.5810805031597897 4096 2048 384 12 96 2534 1920 0 384 1 5788989492 43190924 1 0 5 1 2 2 6 7372800 1474560 2949120 2950985 8985600 159 150 163 169 1893 8 0 12 9 61 0 0 0 0 0
133 1783859668614663500 DEPTH 11 1 0.77553410974215553 0.37478705281090291 0 8 0 8 1 0 2414 48 2544 23742716 147840 1325.3937377929688 8.6201999999999988 2178.2067000000002 73920 40504 1 0 0 0.71061916362628685 4096 2048 384 12 96 2544 1920 0 384 1 5793443280 47644712 1 0 4 2 2 2 6 6144000 2703360 2949120 2951020 8985600 162 150 174 164 1894 1 5 1 1 40 0 0 0 0 2
134 1783859670636622700 DEPTH 16 1 0.77556991200284764 0.3594548551959113 2 6 2 6 0 0 3193 54 2525 23742737 147840 1344.427001953125 8.7600999999999996 1929.8870999999999 73920 41395 1 0 0.0062991239157878338 0.25319780240096146 4096 2048 384 12 96 2525 1920 0 384 1 5797877688 52079120 1 0 4 2 2 2 6 6144000 2703360 2949120 2951044 8985600 163 170 156 163 1873 0 1 0 3 50 0 0 0 0 0
135 1783859672794477100 DEPTH 33 1 0.775626220948058 0.36712095400340705 1 7 1 7 0 0 3353 34 2537 23742606 147840 1303.7721710205078 8.649799999999999 2086.0673000000002 73920 41126 1 0 0.00023585005086066899 0.32811287371681425 4096 2048 384 12 96 2537 1920 0 384 1 5802324336 56525768 1 0 4 2 2 2 6 6144000 2703360 2949120 2950911 8985600 150 156 173 159 1899 3 0 1 1 29 0 0 0 0 0
136 1783859674963265600 DEPTH 1 1 0.77568243014431948 0.36712095400340705 1 7 1 7 0 0 3009 71 2579 23742713 147840 1295.9487915039062 8.642199999999999 2095.2692000000002 73920 40596 1 0 0.028773653260515411 1.8199943181710654 4096 2048 384 12 96 2579 1920 0 384 1 5806813824 61015256 1 0 4 2 2 2 6 6144000 2703360 2949120 2951018 8985600 159 152 154 158 1956 1 7 15 4 44 0 0 0 0 0
137 1783859677219137000 DEPTH 44 1 0.77573853993353192 0.36712095400340705 1 7 1 7 0 0 2213 72 2606 23742636 147840 1318.1113739013672 8.6388999999999996 2132.2280999999998 73920 40588 1 0 0.027664597694635307 0.87919275545735165 4096 2048 384 12 96 2606 1920 0 384 1 5811330852 65532284 1 0 4 2 2 2 6 6144000 2703360 2949120 2950938 8985600 155 150 186 151 1964 17 7 2 6 40 0 0 0 0 0
138 1783859680535078800 DEPTH 42 1 0.81209093536977484 0 0 4 0 4 0 0 4096 21 2594 23720772 125760 1281.1376800537109 8.6188000000000002 3314.1363999999999 120960 42511 1 0 0 0.0063610145412278767 4096 2048 384 12 96 2594 1920 0 384 1 5815835720 2928240 1 0 4 3 2 2 5 5898240 4423680 2949120 2951001 7488000 171 150 152 1288 833 0 0 0 1 20 0 0 0 0 0
139 1783859682700734600 DEPTH 57 1 0.79085046264975012 0.27342419080068137 1 6 1 6 0 0 4096 61 2537 23742705 147840 1277.4343719482422 8.6326000000000001 2090.6448 53760 32747 1 0 0.00072752635965749523 0.50646269260782129 4096 2048 384 12 96 2537 1920 0 384 1 5820282368 7374888 1 0 4 2 2 2 6 6881280 1966080 2949120 2951006 8985600 163 150 174 163 1887 3 2 1 2 53 0 0 0 0 0
140 1783859684911919500 DEPTH 56 1 0.79598143336584093 0.17206132879045993 2 4 2 4 0 0 4096 71 2547 23742589 147840 1299.5641937255859 8.7393999999999998 2145.3820000000001 80640 43233 1 0 0.0054355512702489233 0.48957545601177821 4096 2048 384 12 96 2547 1920 0 384 1 5824739216 11831736 1 0 4 2 2 2 6 5898240 2949120 2949120 2950894 8985600 181 150 163 239 1814 9 0 13 1 48 0 0 0 0 0
141 1783859687075372600 DEPTH 31 1 0.77596199179743763 0.3594548551959113 2 6 2 6 0 0 2629 44 2566 23742657 147840 1330.4719390869141 8.8184000000000005 2089.4728 73920 40708 1 1 0.038014368460935123 0.97909598530596631 4096 2048 384 12 96 2566 1920 0 384 1 5829215444 16307964 1 0 4 2 2 2 6 6144000 2703360 2949120 2950961 8985600 160 152 192 180 1882 2 0 6 3 32 0 0 0 0 0
142 1783859689225004100 DEPTH 52 1 0.77601760961961364 0.36712095400340705 1 7 1 7 0 0 2167 58 2572 23742684 147840 1321.1094970703125 8.7820999999999998 2091.7849999999999 73920 40615 1 0 7.4202217947583462e-05 1.936591165712374 4096 2048 384 12 96 2572 1920 0 384 1 5833697792 20790312 1 0 4 2 2 2 6 6144000 2703360 2949120 2950987 8985600 257 150 197 152 1816 0 2 6 8 42 0 0 0 0 0
143 1783859691547740400 DEPTH 46 1 0.7760731300501269 0.37478705281090291 0 8 0 8 1 0 2681 53 2563 23742702 147840 1346.2722473144531 8.8872 2250.5043999999998 73920 40928 1 0 3.9081084752213203e-05 0.39562579086132238 4096 2048 384 12 96 2563 1920 0 384 1 5838170960 25263480 1 0 4 2 2 2 6 6144000 2703360 2949120 2951005 8985600 172 150 162 169 1910 6 3 4 1 39 0 0 0 0 1
144 1783859693412279200 DEPTH 36 1 0.77093168419287372 0.82027257240204421 3 10 3 10 0 0 1201 44 2575 23742609 147840 1273.8597869873047 8.7074999999999996 1803.4698000000001 40320 21351 1 0 0.063069086016965495 0.15492757616277195 4096 2048 384 12 96 2575 1920 0 384 1 5842656368 29748888 1 0 5 1 2 2 6 7372800 1474560 2949120 2950913 8985600 167 156 156 150 1946 5 0 1 1 37 0 0 0 0 0
145 1783859695299487300 DEPTH 5 1 0.77099229148550485 0.8279386712095399 2 11 2 11 1 0 860 42 2563 23742725 147840 1264.9270477294922 8.6638000000000002 1815.4594999999999 40320 20608 1 0 0.005213560619153213 0.426630687374281 4096 2048 384 12 96 2563 1920 0 384 1 5847129536 34222056 1 0 5 1 2 2 6 7372800 1474560 2949120 2951031 8985600 156 151 150 154 1952 5 2 4 4 27 0 0 0 0 1
146 1783859697513643600 DEPTH 42 1 0.80590392914861475 0 0 4 0 4 0 0 4096 17 2612 23705401 110400 1268.6704711914062 8.6869000000000014 2212.2429000000002 120960 31919 1 0 0 0.0063610145412278767 4096 2048 384 12 96 2612 1920 0 384 1 5851652684 38745204 1 0 4 3 3 2 4 5898240 4423680 3932160 2950920 6489600 168 150 180 1545 569 0 1 0 0 16 0 0 0 0 0
147 1783859699702961700 DEPTH 20 1 0.7852942444308374 0.26575809199318562 2 5 2 5 0 0 2060 24 2594 23742643 147840 1292.5274963378906 8.597900000000001 2115.2797999999998 73920 40542 1 0 0.001771835568079596 0.77081764157800148 4096 2048 384 12 96 2594 1920 0 384 1 5856157472 43249992 1 0 4 2 2 2 6 6144000 2703360 2949120 2950947 8985600 156 155 179 228 1876 0 1 0 1 22 0 0 0 0 0
148 1783859701866897600 DEPTH 53 1 0.77636385765727944 0.37478705281090291 0 8 0 8 0 0 4096 69 2523 23742700 147840 1273.2274169921875 8.6135000000000002 2086.3591000000001 53760 32248 1 0 0 0.2106332408498392 4096 2048 384 12 96 2523 1920 0 384 1 5860589840 47682360 1 0 4 2 2 2 6 6881280 1966080 2949120 2951003 8985600 162 150 156 157 1898 4 1 8 6 50 0 0 0 0 0
149 1783859703766731200 DEPTH 19 1 0.77123366812662897 0.8279386712095399 2 11 2 11 0 0 851 40 2560 23742623 147840 1300.2291259765625 8.6801999999999992 1842.7973999999999 40320 21011 1 0 0.024134501803917539 0.35880585544835542 4096 2048 384 12 96 2560 1920 0 384 1 5865059948 52152468 1 0 5 1 2 2 6 7372800 1474560 2949120 2950927 8985600 150 150 150 159 1951 2 1 3 5 29 0 0 0 0 0
150 1783859705692690400 DEPTH 35 1 0.77129375092177155 0.8279386712095399 2 11 2 11 0 0 1094 80 2487 23742640 147840 1299.1376495361328 8.7021999999999995 1861.4576999999999 40320 21214 1 0 0.12120608375158826 1.1047241122088913 4096 2048 384 12 96 2487 1920 0 384 1 5869455596 56548116 1 0 5 1 2 2 6 7372800 1474560 2949120 2950942 8985600 173 154 150 155 1855 0 0 0 1 79 0 0 0 0 0
151 1783859707605000300 DEPTH 43 1 0.771353729871598 0.8279386712095399 2 11 2 11 0 0 773 50 2565 23742617 147840 1278.831298828125 8.6131999999999991 1785.3088 40320 20958 1 0 0.009842172204325185 1.2471290918008606 4096 2048 384 12 96 2565 1920 0 384 1 5873930804 61023324 1 0 5 1 2 2 6 7372800 1474560 2949120 2950919 8985600 154 150 150 160 1951 2 5 0 2 41 0 0 0 0 0
152 1783859709458337000 DEPTH 47 1 0.7714136053234375 0.8279386712095399 2 11 2 11 0 0 655 27 2608 23742684 147840 1272.7040710449219 8.6031000000000013 1788.7475999999999 40320 21337 1 0 0.018949803200694559 1.2450274644230548 4096 2048 384 12 96 2608 1920 0 384 1 5878449872 65542392 1 0 5 1 2 2 6 7372800 1474560 2949120 2950989 8985600 150 150 158 157 1993 0 0 0 0 27 0 0 0 0 0
153 1783859712412939100 DEPTH 0 1 0.77147337762289991 0.8279386712095399 2 11 2 11 0 0 879 49 2566 23742634 147840 1271.7532501220703 8.6597000000000008 2897.7039 40320 21606 1 0 0.00014140214567446167 2.30096177437744 4096 2048 384 12 96 2566 1920 0 384 1 5882926180 2909880 1 0 5 1 2 2 6 7372800 1474560 2949120 2950938 8985600 155 150 150 157 1954 9 1 6 2 31 0 0 0 0 0
154 1783859712779293900 REFRESH 14 0 0.76562374590852667 0.65587734241908002 0 11 0 11 0 0 1624 27 413 3988945 56640 222.35340881347656 1.4434 303.4452 6720 4905 0 0 1.6719593580913314e-05 0.72140234505359491 4096 2048 64 1 16 413 320 0 64 0 5883655664 3639364 1 0 5 1 2 2 6 1228800 245760 491520 491664 1497600 27 25 27 26 308 0 0 0 0 27 0 0 0 0 0
155 1783859713145151500 REFRESH 38 0 0.77103768369529047 0.55451448040885853 1 9 1 9 0 0 2058 21 410 3988970 56640 219.75859069824219 1.4379 309.66359999999997 6720 4922 0 0 0.13433027919204674 2.3057515358806704 4096 2048 64 1 16 410 320 0 64 0 5884382088 4365788 1 0 5 1 2 2 6 1228800 245760 491520 491689 1497600 26 26 28 27 303 0 0 1 0 20 0 0 0 0 0
156 1783859713542129800 REFRESH 54 0 0.76678618093023254 0.4608177172061329 1 8 1 8 0 0 1190 11 419 3988962 56640 219.31724548339844 1.4346000000000001 334.49959999999999 6720 4701 0 0 0.00048566486093188938 1.0664299709342928 4096 2048 64 1 16 419 320 0 64 0 5885117692 5101392 1 0 5 1 2 2 6 1228800 245760 491520 491682 1497600 40 25 43 45 266 0 0 0 0 11 0 0 0 0 0
157 1783859713939422400 REFRESH 39 0 0.77115098175836183 0.55451448040885853 1 9 1 9 0 0 1570 11 423 3988946 56640 219.48518371582031 1.4313 338.86680000000001 6720 4944 0 0 0.00014839428778928599 1.5497505427452305 4096 2048 64 1 16 423 320 0 64 0 5885857376 5841076 1 0 5 1 2 2 6 1228800 245760 491520 491665 1497600 25 25 34 37 302 0 0 0 0 11 0 0 0 0 0
158 1783859714308491500 REFRESH 57 0 0.72193085924548228 0.27342419080068137 1 6 1 6 0 0 4096 39 416 3988971 56640 221.739013671875 1.4366000000000001 309.58589999999998 13440 9349 0 0 0.00072752635965749523 0.50646269260782129 4096 2048 64 1 16 416 320 0 64 0 5886589920 6573620 1 0 4 2 2 2 6 983040 491520 491520 491689 1497600 26 25 43 46 276 0 0 0 1 38 0 0 0 0 0
159 1783859714693719500 REFRESH 37 0 0.77182986436011503 0.8356047700170357 1 12 1 12 0 0 986 28 405 3988969 56640 221.08364868164062 1.4561999999999999 315.94569999999999 6720 5154 0 0 0.0033651663875057473 0.47165320917887499 4096 2048 64 1 16 405 320 0 64 0 5887311244 7294944 1 0 5 1 2 2 6 1228800 245760 491520 491689 1497600 25 29 25 26 300 0 0 0 0 28 0 0 0 0 0
160 1783859715054524800 REFRESH 3 0 0.76596306132780523 0.64054514480408853 2 9 2 9 0 0 1109 33 408 3988947 56640 218.23283386230469 1.4871000000000001 300.86250000000001 6720 4952 0 0 0.0077247780151947464 0.15611804084716696 4096 2048 64 1 16 408 320 0 64 0 5888035628 8019328 1 0 5 1 2 2 6 1228800 245760 491520 491667 1497600 34 25 41 31 277 0 0 0 1 32 0 0 0 0 0
161 1783859715404326800 REFRESH 28 0 0.77194788344772314 0.8279386712095399 2 11 2 11 0 0 630 13 407 3988960 56640 222.33113098144531 1.4390000000000001 294.87729999999999 6720 5066 0 0 0.00022189812580462688 0.92047472736303015 4096 2048 64 1 16 407 320 0 64 0 5888758992 8742692 1 0 5 1 2 2 6 1228800 245760 491520 491678 1497600 26 27 25 26 303 0 0 0 0 13 0 0 0 0 0
162 1783859715781691400 REFRESH 21 0 0.77143253973811843 0.56218057921635434 0 10 0 10 0 0 2478 34 415 3988957 56640 219.77395629882812 1.4461999999999999 314.33120000000002 6720 4916 0 0 2.4584779324138999e-05 1.0722633759184834 4096 2048 64 1 16 415 320 0 64 0 5889490516 9474216 1 0 5 1 2 2 6 1228800 245760 491520 491677 1497600 30 25 30 35 295 1 0 0 1 32 0 0 0 0 0
163 1783859716081910700 REFRESH 35 0 0.63863142178394561 0.8279386712095399 2 11 2 11 0 0 1099 14 408 3988968 56640 220.31564331054688 1.4363999999999999 298.63339999999999 6720 4964 0 0 0.12120608375158826 1.1047241122088913 4096 2048 64 1 16 408 320 0 64 0 5890214900 10198600 1 0 5 1 2 2 6 1228800 245760 491520 491688 1497600 26 25 25 31 301 0 0 0 0 14 0 0 0 0 0
164 1783859716378497900 REFRESH 36 0 0.70868735185459375 0.82027257240204421 3 10 3 10 0 0 1217 45 406 3988942 56640 220.48870849609375 1.4419999999999999 294.64150000000001 6720 4987 0 0 0.063069086016965495 0.15492757616277195 4096 2048 64 1 16 406 320 0 64 0 5890937244 10920944 1 0 5 1 2 2 6 1228800 245760 491520 491661 1497600 25 25 25 27 304 0 0 0 0 45 0 0 0 0 0
165 1783859716777503400 REFRESH 13 0 0.78229222383358799 0.27342419080068137 1 6 1 6 0 0 4096 54 416 3988954 56640 220.08320617675781 1.4386000000000001 320.86770000000001 13440 9267 0 0 0.022786735533611113 0.15623055639937777 4096 2048 64 1 16 416 320 0 64 0 5891669788 11653488 1 0 4 2 2 2 6 983040 491520 491520 491673 1497600 26 25 58 32 275 0 0 10 4 40 0 0 0 0 0
166 1783859717164198000 REFRESH 31 0 0.76734349840559513 0.3594548551959113 2 6 2 6 0 0 2649 44 418 3988968 56640 219.89077758789062 1.4638 314.32819999999998 13440 9244 0 0 0.038014368460935123 0.97909598530596631 4096 2048 64 1 16 418 320 0 64 0 5892404372 12388072 1 0 4 2 2 2 6 983040 491520 491520 491688 1497600 27 25 43 42 281 0 0 2 0 42 0 0 0 0 0
167 1783859717584657400 REFRESH 44 0 0.76739468659772725 0.36712095400340705 1 7 1 7 0 0 2228 39 429 3988935 56640 221.54751586914062 1.4402999999999999 354.71080000000001 13440 9239 0 0 0.027664597694635307 0.87919275545735165 4096 2048 64 1 16 429 320 0 64 0 5893150176 13133876 1 0 4 2 2 2 6 983040 491520 491520 491655 1497600 26 25 62 27 289 0 0 2 2 35 0 0 0 0 0
168 1783859717994937300 REFRESH 23 0 0.76226422510149461 0.74190800681430991 1 11 1 11 0 0 3401 15 408 3988946 56640 239.35897827148438 1.446 332.8974 6720 4913 0 0 0.019300881082243489 0.74477203843732076 4096 2048 64 1 16 408 320 0 64 0 5893874560 13858260 1 0 5 1 2 2 6 1228800 245760 491520 491666 1497600 29 25 29 28 297 0 0 0 0 15 0 0 0 0 0
169 1783859718383532100 REFRESH 45 0 0.76748352502188233 0.45315161839863699 2 7 2 7 0 0 2115 39 412 3988978 56640 221.06419372558594 1.4436 317.18040000000002 6720 4749 0 0 0.2309103244036371 1.4859222174523592 4096 2048 64 1 16 412 320 0 64 0 5894603024 14586724 1 0 5 1 2 2 6 1228800 245760 491520 491697 1497600 57 25 25 31 274 3 0 0 1 35 0 0 0 0 0
170 1783859718756884100 REFRESH 6 0 0.76974677846362216 0.91396933560476989 3 11 3 11 0 0 380 4 419 3988935 56640 227.45497131347656 1.4644999999999999 305.69549999999998 6720 5063 0 0 0.078472369408099776 0.14391543825984973 4096 2048 64 1 16 419 320 0 64 0 5895338628 15322328 1 0 5 1 2 2 6 1228800 245760 491520 491654 1497600 25 25 25 26 318 0 0 0 0 4 0 0 0 0 0
171 1783859719149268400 REFRESH 26 0 0.76663382952012915 0.64821124361158422 1 10 1 10 1 0 1819 43 418 3988953 56640 222.54489135742188 1.4472 322.26830000000001 6720 4933 0 0 0.090960598249431271 0.70032506168692255 4096 2048 64 1 16 418 320 0 64 0 5896073212 16056912 1 0 5 1 2 2 6 1228800 245760 491520 491673 1497600 28 25 28 31 306 2 0 1 2 38 0 0 0 0 1
172 1783859719540319800 REFRESH 40 0 0.76663141542256241 0.64821124361158422 1 10 1 10 0 0 1681 19 419 3988949 56640 219.05509948730469 1.4318 331.4067 6720 4973 0 0 0.08315556845306328 0.52708806647616635 4096 2048 64 1 16 419 320 0 64 0 5896808816 16792516 1 0 5 1 2 2 6 1228800 245760 491520 491669 1497600 25 25 29 27 313 2 0 0 5 12 0 0 0 0 0
173 1783859719899348600 REFRESH 29 0 0.77164767909539733 0.82027257240204421 3 10 3 10 0 0 1102 5 410 3988961 56640 221.41746520996094 1.4410000000000001 298.87270000000001 6720 5061 0 0 0.26278519260479372 0.96843308429688912 4096 2048 64 1 16 410 320 0 64 0 5897535240 17518940 1 0 5 1 2 2 6 1228800 245760 491520 491681 1497600 25 25 25 25 310 0 0 0 1 4 0 0 0 0 0
174 1783859720317501600 REFRESH 50 0 0.76674150439251354 0.64054514480408853 2 9 2 9 0 0 1041 8 424 3988958 56640 221.60383605957031 1.4530000000000001 334.87689999999998 6720 4842 0 0 0.059365983438523645 2.1081194948679065 4096 2048 64 1 16 424 320 0 64 0 5898275944 18259644 1 0 5 1 2 2 6 1228800 245760 491520 491678 1497600 28 25 25 25 321 1 0 0 0 7 0 0 0 0 0
175 1783859720734481800 REFRESH 56 0 0.79896016049649976 0.17206132879045993 2 4 2 4 0 0 4096 49 412 3988949 56640 221.10617065429688 1.4376 347.9169 13440 8211 0 0 0.0054355512702489233 0.48957545601177821 4096 2048 64 1 16 412 320 0 64 0 5899004408 18988108 1 0 4 2 2 2 6 983040 491520 491520 491668 1497600 45 26 40 56 245 2 0 2 6 39 0 0 0 0 0
176 1783859721035250900 REFRESH 5 0 0.75935809817009003 0.8279386712095399 2 11 2 11 0 0 869 24 416 3988948 56640 219.37161254882812 1.4334 299.22579999999999 6720 4952 0 0 0.005213560619153213 0.426630687374281 4096 2048 64 1 16 416 320 0 64 0 5899736952 19720652 1 0 5 1 2 2 6 1228800 245760 491520 491667 1497600 25 25 25 31 310 0 0 1 2 21 0 0 0 0 0
177 1783859721348751800 REFRESH 43 0 0.75940595235867525 0.8279386712095399 2 11 2 11 0 0 774 18 420 3988957 56640 223.46342468261719 1.6080000000000001 311.7441 6720 4947 0 0 0.009842172204325185 1.2471290918008606 4096 2048 64 1 16 420 320 0 64 0 5900473576 20457276 1 0 5 1 2 2 6 1228800 245760 491520 491676 1497600 25 25 25 36 309 0 0 0 1 17 0 0 0 0 0
178 1783859721738528800 REFRESH 34 0 0.77293513759045163 0.8356047700170357 1 12 1 12 0 0 701 13 419 3988956 56640 225.41619873046875 1.4409000000000001 311.58390000000003 6720 5082 0 0 0.00024456112032069028 1.7981817145069319 4096 2048 64 1 16 419 320 0 64 0 5901209180 21192880 1 0 5 1 2 2 6 1228800 245760 491520 491674 1497600 25 28 25 26 315 0 0 0 0 13 0 0 0 0 0
179 1783859722161744600 REFRESH 17 0 0.78300230844811158 0.28109028960817717 0 7 0 7 0 0 3911 31 415 3988930 56640 222.04722595214844 1.4437 355.43560000000002 13440 9263 0 0 1.7384002172801471e-05 0.059782352022523813 4096 2048 64 1 16 415 320 0 64 0 5901940704 21924404 1 0 4 2 2 2 6 983040 491520 491520 491647 1497600 26 25 33 38 293 0 0 1 4 26 0 0 0 0 0
180 1783859722569237800 REFRESH 30 0 0.76806180546425207 0.4608177172061329 1 8 1 8 0 0 3441 59 415 3988949 56640 219.931640625 1.4371 328.19659999999999 6720 4771 0 0 0.0010823191780834386 1.5810805031597897 4096 2048 64 1 16 415 320 0 64 0 5902672228 22655928 1 0 5 1 2 2 6 1228800 245760 491520 491668 1497600 30 25 45 34 281 3 0 4 2 50 0 0 0 0 0
181 1783859722913588400 REFRESH 53 0 0.76811552403845207 0.37478705281090291 0 8 0 8 0 0 4096 56 411 3988973 56640 220.76313781738281 1.4372 342.49689999999998 13440 9357 0 0 0 0.2106332408498392 4096 2048 64 1 16 411 320 0 64 0 5903399672 23383372 1 0 4 2 2 2 6 983040 491520 491520 491693 1497600 26 25 32 31 297 0 0 2 2 52 0 0 0 0 0
182 1783859723278972800 REFRESH 15 0 0.76943612456485355 0.91396933560476989 3 11 3 11 0 0 322 8 414 3988956 56640 222.03596496582031 1.4391 303.74880000000002 6720 5063 0 0 0.13215737202774189 0.95319511763653475 4096 2048 64 1 16 414 320 0 64 0 5904130176 24113876 1 0 5 1 2 2 6 1228800 245760 491520 491676 1497600 27 28 25 25 309 0 1 0 1 6 0 0 0 0 0
183 1783859723739914700 REFRESH 10 0 0.76723240942299209 0.64821124361158422 1 10 1 10 0 0 1138 20 417 3988968 56640 219.84255981445312 1.9141999999999999 312.57150000000001 6720 4872 0 0 0.0023995083271502065 2.8416920354575197 4096 2048 64 1 16 417 320 0 64 0 5904863740 24847440 1 0 5 1 2 2 6 1228800 245760 491520 491688 1497600 27 25 29 31 305 2 0 2 1 15 0 0 0 0 0
184 1783859724113256500 REFRESH 18 0 0.77054969203045909 0.9293015332197615 1 13 1 13 0 0 441 20 412 3988955 56640 227.17439270019531 1.4359999999999999 305.58460000000002 6720 5030 0 0 0.0012157253655346659 1.5441952694290573 4096 2048 64 1 16 412 320 0 64 0 5905592204 25575904 1 0 5 1 2 2 6 1228800 245760 491520 491674 1497600 25 25 25 26 311 0 0 0 1 19 0 0 0 0 0
185 1783859724480663100 REFRESH 16 0 0.76830161771848271 0.3594548551959113 2 6 2 6 0 0 3212 39 412 3988936 56640 226.89894104003906 1.4504999999999999 305.05259999999998 13440 9455 0 0 0.0062991239157878338 0.25319780240096146 4096 2048 64 1 16 412 320 0 64 0 5906320668 26304368 1 0 4 2 2 2 6 983040 491520 491520 491656 1497600 26 25 27 28 306 0 0 0 0 39 0 0 0 0 0
186 1783859724790314800 REFRESH 0 0 0.75989443402040679 0.8279386712095399 2 11 2 11 0 0 884 20 418 3988953 56640 223.36408996582031 1.4567000000000001 307.83229999999998 6720 4984 0 0 0.00014140214567446167 2.30096177437744 4096 2048 64 1 16 418 320 0 64 0 5907055252 27038952 1 0 5 1 2 2 6 1228800 245760 491520 491673 1497600 26 25 25 30 312 0 0 1 1 18 0 0 0 0 0
187 1783859725200123700 REFRESH 11 0 0.76842945924215522 0.37478705281090291 0 8 0 8 0 0 2421 18 411 3988984 56640 225.17453002929688 1.4360999999999999 348.51429999999999 13440 9318 0 0 0 0.71061916362628685 4096 2048 64 1 16 411 320 0 64 0 5907782696 27766396 1 0 4 2 2 2 6 983040 491520 491520 491702 1497600 26 25 53 33 274 0 0 1 2 15 0 0 0 0 0
188 1783859725559353900 REFRESH 47 0 0.76000200969258325 0.8279386712095399 2 11 2 11 0 0 656 14 407 3988954 56640 225.43667602539062 1.4439 303.11160000000001 6720 4996 0 0 0.018949803200694559 1.2450274644230548 4096 2048 64 1 16 407 320 0 64 0 5908506060 28489760 1 0 5 1 2 2 6 1228800 245760 491520 491673 1497600 26 25 25 27 304 0 0 0 0 14 0 0 0 0 0
189 1783859725919713500 REFRESH 55 0 0.76755566614586912 0.64054514480408853 2 9 2 9 0 0 1069 11 406 3988974 56640 226.62042236328125 1.4343999999999999 301.62270000000001 6720 4949 0 0 0.11267375438910436 0.93501389544354829 4096 2048 64 1 16 406 320 0 64 0 5909228404 29212104 1 0 5 1 2 2 6 1228800 245760 491520 491693 1497600 31 26 27 26 296 0 0 0 0 11 0 0 0 0 0
190 1783859726293611800 REFRESH 1 0 0.76854880520851632 0.36712095400340705 1 7 1 7 0 0 3026 52 411 3988953 56640 224.82124328613281 1.4329000000000001 314.34840000000003 13440 9285 0 0 0.028773653260515411 1.8199943181710654 4096 2048 64 1 16 411 320 0 64 0 5909955848 29939548 1 0 4 2 2 2 6 983040 491520 491520 491673 1497600 26 25 30 51 279 0 1 3 7 41 0 0 0 0 0
191 1783859726659171700 REFRESH 7 0 0.77367153873383077 0.8356047700170357 1 12 1 12 1 0 858 17 408 3988955 56640 224.26112365722656 1.4439 308.32049999999998 6720 5041 0 0 0.0015439939761988503 1.0294096654276503 4096 2048 64 1 16 408 320 0 64 0 5910680232 30663932 1 0 5 1 2 2 6 1228800 245760 491520 491675 1497600 26 27 25 25 305 0 0 0 0 17 0 0 0 0 1
192 1783859727047910200 REFRESH 25 0 0.76868080938790306 0.4608177172061329 1 8 1 8 0 0 2309 20 408 3988937 56640 224.78239440917969 1.4507000000000001 331.29349999999999 13440 9744 0 0 0.0002866720556610524 1.4641012066807393 4096 2048 64 1 16 408 320 0 64 0 5911404616 31388316 1 0 4 2 2 2 6 983040 491520 491520 491657 1497600 26 25 33 30 294 0 0 3 1 16 0 0 0 0 0
193 1783859727413329800 REFRESH 32 0 0.76873184907365055 0.4608177172061329 1 8 1 8 0 0 2940 46 413 3988967 56640 221.67654418945312 1.4319999999999999 303.64909999999998 6720 4722 0 0 0.0011665864340913636 1.8037808584357806 4096 2048 64 1 16 413 320 0 64 0 5912134100 32117800 1 0 5 1 2 2 6 1228800 245760 491520 491687 1497600 33 25 28 29 298 3 0 3 2 38 0 0 0 0 0
194 1783859727782448700 REFRESH 4 0 0.77383927254095697 0.8356047700170357 1 12 1 12 0 0 277 9 424 3988962 56640 220.00639343261719 1.4390000000000001 315.19209999999998 6720 5083 0 0 0.040411785743191188 1.4510951908289993 4096 2048 64 1 16 424 320 0 64 0 5912874804 32858504 1 0 5 1 2 2 6 1228800 245760 491520 491682 1497600 26 25 25 25 323 0 1 1 0 7 0 0 0 0 0
195 1783859728170495600 REFRESH 12 0 0.76787578279761115 0.63287904599659284 3 8 3 8 0 0 1469 46 426 3988964 56640 221.5731201171875 1.4535 309.77879999999999 6720 4937 0 0 0.0015342879221033493 0.52805712610492539 4096 2048 64 1 16 426 320 0 64 0 5913617548 33601248 1 0 5 1 2 2 6 1228800 245760 491520 491683 1497600 34 25 25 32 310 1 0 0 1 44 0 0 0 0 0
196 1783859728530458200 REFRESH 22 0 0.77122337162049148 0.91396933560476989 3 11 3 11 0 0 472 11 420 3988962 56640 222.92291259765625 1.4977 301.39819999999997 6720 5060 0 0 0.0083533723482868329 0.70040182967037024 4096 2048 64 1 16 420 320 0 64 0 5914354172 34337872 1 0 5 1 2 2 6 1228800 245760 491520 491680 1497600 25 25 25 25 320 0 0 0 0 11 0 0 0 0 0
197 1783859728902619100 REFRESH 42 0 0.97201486960288919 0 0 4 0 4 0 0 4096 3 426 3987986 55680 223.91398620605469 1.4377 370.56810000000002 20160 12173 0 0 0 0.0063610145412278767 4096 2048 64 1 16 426 320 0 64 0 5915096916 35080616 1 0 4 3 3 2 4 983040 737280 737280 491663 998400 66 25 34 208 93 0 0 0 0 3 0 0 0 0 0
198 1783859729273377800 REFRESH 20 0 0.77854015915580077 0.26575809199318562 2 5 2 5 0 0 2064 15 433 3988967 56640 224.06144714355469 1.4482999999999999 369.2724 13440 9303 0 0 0.001771835568079596 0.77081764157800148 4096 2048 64 1 16 433 320 0 64 0 5915846800 35830500 1 0 4 2 2 2 6 983040 491520 491520 491686 1497600 25 25 46 73 264 1 2 0 0 12 0 0 0 0 0
199 1783859729667090800 REFRESH 8 0 0.78398872482401483 0.26575809199318562 2 5 2 5 0 0 2366 14 411 3988941 56640 226.10739135742188 1.4372 313.17790000000002 13440 9379 0 0 0.030103035119069095 0.91796646697047368 4096 2048 64 1 16 411 320 0 64 0 5916574244 36557944 1 0 4 2 2 2 6 983040 491520 491520 491661 1497600 25 26 25 27 308 0 0 0 0 14 0 0 0 0 0
200 1783859730119173500 REFRESH 52 0 0.76903721273366354 0.36712095400340705 1 7 1 7 0 0 2179 42 417 3988962 56640 224.16793823242188 1.4341999999999999 334.48379999999997 13440 9169 0 0 7.4202217947583462e-05 1.936591165712374 4096 2048 64 1 16 417 320 0 64 0 5917307808 37291508 1 0 4 2 2 2 6 983040 491520 491520 491682 1497600 25 25 72 32 263 0 0 6 4 32 0 0 0 0 0
201 1783859730502463600 REFRESH 24 0 0.76922751263516931 1 4 11 4 11 0 0 491 9 407 3988944 56640 226.12991333007812 1.4372 314.11989999999997 6720 5063 0 0 0.027869521123281102 1.4468046609733554 4096 2048 64 1 16 407 320 0 64 0 5918031172 38014872 1 0 5 1 2 2 6 1228800 245760 491520 491663 1497600 27 28 25 25 302 0 0 0 0 9 0 0 0 0 0
202 1783859730879317600 REFRESH 49 0 0.76918752609203522 0.4454855195911413 3 6 3 6 0 0 1494 35 409 3988932 56640 222.54489135742188 1.4349000000000001 303.09199999999998 6720 4667 0 0 0.058061103203911842 2.3022417889218207 4096 2048 64 1 16 409 320 0 64 0 5918756576 38740276 1 0 5 1 2 2 6 1228800 245760 491520 491652 1497600 31 26 28 32 292 0 0 0 0 35 0 0 0 0 0
203 1783859731254591600 REFRESH 2 0 0.76923775260804061 0.45315161839863699 2 7 2 7 0 0 3486 59 413 3988928 56640 220.516357421875 1.4444999999999999 312.30829999999997 6720 4694 0 0 0.2773399391733698 2.0710771777085544 4096 2048 64 1 16 413 320 0 64 0 5919486060 39469760 1 0 5 1 2 2 6 1228800 245760 491520 491647 1497600 31 25 33 29 295 0 0 2 1 56 0 0 0 0 0
204 1783859731632652800 REFRESH 58 0 0.77166530135375289 0.92163543441226559 2 12 2 12 0 0 524 16 410 3988956 56640 221.43693542480469 1.4379999999999999 308.64640000000003 6720 5033 0 0 0.0096214935481512883 1.6134051887685537 4096 2048 64 1 16 410 320 0 64 0 5920212484 40196184 1 0 5 1 2 2 6 1228800 245760 491520 491676 1497600 26 25 25 25 309 0 0 0 1 15 0 0 0 0 0
205 1783859732006162400 REFRESH 19 0 0.76090249105377816 0.8279386712095399 2 11 2 11 0 0 852 17 417 3988978 56640 220.42726135253906 1.4443999999999999 302.88569999999999 6720 4983 0 0 0.024134501803917539 0.35880585544835542 4096 2048 64 1 16 417 320 0 64 0 5920946048 40929748 1 0 5 1 2 2 6 1228800 245760 491520 491698 1497600 25 26 25 26 315 0 0 0 1 16 0 0 0 0 0
206 1783859732415450500 REFRESH 33 0 0.76932652068199281 0.36712095400340705 1 7 1 7 0 0 3384 64 412 3988953 56640 241.05984497070312 1.474 345.65449999999998 13440 9314 0 0 0.00023585005086066899 0.32811287371681425 4096 2048 64 1 16 412 320 0 64 0 5921674512 41658212 1 0 4 2 2 2 6 983040 491520 491520 491673 1497600 25 25 57 31 274 0 0 4 0 60 0 0 0 0 0
207 1783859732804838900 REFRESH 9 0 0.78437447096889534 0.27342419080068137 1 6 1 6 0 0 3052 33 412 3988944 56640 221.68063354492188 1.4377 316.36849999999998 13440 9320 0 0 0.00029749737042186297 0.32936763850020839 4096 2048 64 1 16 412 320 0 64 0 5922402976 42386676 1 0 4 2 2 2 6 983040 491520 491520 491663 1497600 26 25 27 31 303 0 0 0 0 33 0 0 0 0 0
208 1783859733239694400 REFRESH 48 0 0.78442234539483302 0.26575809199318562 2 5 2 5 0 0 2419 17 414 3988938 56640 226.39411926269531 1.4384999999999999 359.67140000000001 13440 9196 0 0 0.0046043101471456684 0.20405439432789962 4096 2048 64 1 16 414 320 0 64 0 5923133480 43117180 1 0 4 2 2 2 6 983040 491520 491520 491656 1497600 25 25 43 28 293 0 0 1 0 16 0 0 0 0 0
209 1783859733679178500 REFRESH 46 0 0.76948940423860002 0.37478705281090291 0 8 0 8 0 0 2692 22 410 3988950 56640 246.83418273925781 1.7938000000000001 377.55489999999998 13440 9325 0 0 3.9081084752213203e-05 0.39562579086132238 4096 2048 64 1 16 410 320 0 64 0 5923859904 43843604 1 0 4 2 2 2 6 983040 491520 491520 491670 1497600 27 25 51 41 266 0 0 0 1 21 0 0 0 0 0
210 1783859734152851200 REFRESH 51 0 0.77199307442616416 0.91396933560476989 3 11 3 11 0 0 535 16 407 3988969 56640 239.572998046875 1.4330000000000001 319.90260000000001 6720 5081 0 0 0.04374756045180065 0.27288744213454319 4096 2048 64 1 16 407 320 0 64 0 5924583268 44566968 1 0 5 1 2 2 6 1228800 245760 491520 491689 1497600 26 28 25 26 302 0 2 0 0 14 0 0 0 0 0
211 1783859734542285700 REFRESH 27 0 0.77204740177048992 0.93696763202725719 0 14 0 14 0 0 869 14 419 3988943 56640 239.36614990234375 1.4335 321.0292 6720 5116 0 0 4.4312838867707149e-06 0.92228926599200534 4096 2048 64 1 16 419 320 0 64 0 5925318872 45302572 1 0 5 1 2 2 6 1228800 245760 491520 491661 1497600 27 25 25 25 317 0 0 0 0 14 0 0 0 0 0
212 1783859734942864800 REFRESH 41 0 0.77412337682886623 0.55451448040885853 1 9 1 9 0 0 2168 35 414 3988955 56640 234.24819946289062 1.4729000000000001 329.36720000000003 6720 4867 0 0 0.00047546691312138533 1.497358551665477 4096 2048 64 1 16 414 320 0 64 0 5926049376 46033076 1 0 5 1 2 2 6 1228800 245760 491520 491674 1497600 28 25 32 33 296 1 0 0 0 34 0 0 0 0 0
213 1783859737218400700 DEPTH 42 1 0.86990330961879392 0 0 4 0 4 0 0 4096 20 2587 23698459 103680 1312.9458312988281 8.8274000000000008 2210.0018 120960 59650 1 0 0 0.0063610145412278767 4096 2048 384 12 96 2587 1920 0 384 1 5930547024 50530724 1 0 4 3 3 2 4 5898240 4423680 4423680 2950867 5990400 249 150 214 1077 897 0 0 0 0 20 0 0 0 0 0
214 1783859739482895600 DEPTH 56 1 0.79280542078937588 0.17206132879045993 2 4 2 4 0 0 4096 73 2550 23731174 136320 1306.7162322998047 8.5958000000000006 2145.5322999999999 100800 48983 1 0 0.0054355512702489233 0.48957545601177821 4096 2048 384 12 96 2550 1920 0 384 1 5935006932 54990632 1 0 4 3 2 2 5 5898240 3686400 2949120 2950973 8236800 205 150 178 547 1470 9 0 11 5 48 0 0 0 0 0
215 1783859741678375400 DEPTH 13 1 0.7758433187563154 0.27342419080068137 1 6 1 6 0 0 4096 60 2552 23742637 147840 1313.3226928710938 8.6702000000000012 2136.2085000000002 80640 44820 1 0 0.022786735533611113 0.15623055639937777 4096 2048 384 12 96 2552 1920 0 384 1 5939468880 59452580 1 0 4 2 2 2 6 5898240 2949120 2949120 2950943 8985600 156 150 153 150 1943 0 0 1 6 53 0 0 0 0 0
216 1783859743832891500 DEPTH 57 1 0.7758888748720798 0.27342419080068137 1 6 1 6 0 0 4096 42 2538 23742695 147840 1277.7666320800781 8.6552999999999987 2098.4387000000002 80640 45370 1 0 0.00072752635965749523 0.50646269260782129 4096 2048 384 12 96 2538 1920 0 384 1 5943916548 63900248 1 0 4 2 2 2 6 5898240 2949120 2949120 2950997 8985600 156 150 183 192 1857 0 0 0 6 36 0 0 0 0 0
217 1783859747234428900 DEPTH 17 1 0.77593435986553594 0.28109028960817717 0 7 0 7 0 0 3926 47 2558 23742654 147840 1266.7654724121094 8.660400000000001 3271.4645999999998 80640 44945 1 0 1.7384002172801471e-05 0.059782352022523813 4096 2048 384 12 96 2558 1920 0 384 1 5948384696 1259692 1 0 4 2 2 2 6 5898240 2949120 2949120 2950958 8985600 156 150 156 162 1934 0 0 3 2 42 0 0 0 0 0
218 1783859749407921300 DEPTH 39 1 0.76283883666828933 0.55451448040885853 1 9 1 9 0 0 1577 32 2580 23742191 147840 1311.2607269287109 8.6168999999999993 2112.9843999999998 80640 47763 1 0 0.00014839428778928599 1.5497505427452305 4096 2048 384 12 96 2580 1920 0 384 1 5952875204 5750200 1 0 4 2 2 2 6 6635520 2949120 2949120 2213218 8985600 150 152 162 177 1939 2 0 0 0 30 0 0 0 0 0
219 1783859751419233300 DEPTH 38 1 0.76288781313018916 0.55451448040885853 1 9 1 9 0 0 2068 46 2534 23742226 147840 1268.4284820556641 8.6176000000000013 1878.7422999999999 80640 48384 1 0 0.13433027919204674 2.3057515358806704 4096 2048 384 12 96 2534 1920 0 384 1 5957318792 10193788 1 0 4 2 2 2 6 6635520 2949120 2949120 2213251 8985600 150 156 156 156 1916 2 0 1 2 41 0 0 0 0 0
220 1783859753651340100 DEPTH 21 1 0.76293671346474667 0.56218057921635434 0 10 0 10 0 0 2490 56 2554 23742219 147840 1270.2971801757812 8.6813000000000002 2085.0542999999998 80640 48041 1 0 2.4584779324138999e-05 1.0722633759184834 4096 2048 384 12 96 2554 1920 0 384 1 5961782780 14657776 1 0 4 2 2 2 6 6635520 2949120 2949120 2213246 8985600 162 150 156 165 1921 7 3 7 6 33 0 0 0 0 0
221 1783859755784278700 DEPTH 42 1 0.7854872595714314 0 0 4 0 4 0 0 4096 21 2593 23691337 96000 1272.94873046875 8.8388999999999989 2131.3049999999998 120960 48895 1 0 0 0.0063610145412278767 4096 2048 384 12 96 2593 1920 0 384 1 5966286548 19161544 1 0 4 3 3 3 3 5898240 4423680 4423680 3442885 5491200 240 150 219 1223 761 0 0 0 0 21 0 0 0 0 0
222 1783859757643258900 DEPTH 7 1 0.7617896098842577 0.8356047700170357 1 12 1 12 1 0 861 43 2522 23742683 147840 1274.3470916748047 8.5238000000000014 1775.3012000000001 40320 21739 1 0 0.0015317392842735759 1.0209349543212158 4096 2048 384 12 96 2522 1920 0 384 1 5970717896 23592892 1 0 5 1 2 2 6 7372800 1474560 2949120 2950989 8985600 150 150 150 150 1922 0 0 0 0 43 0 0 0 0 1
223 1783859759566914500 DEPTH 28 1 0.76182982124008225 0.8279386712095399 2 11 2 11 0 0 632 32 2523 23742682 147840 1302.3631286621094 8.6245999999999992 1853.4874 40320 22550 1 0 0.00022189812580462688 0.92047472736303015 4096 2048 384 12 96 2523 1920 0 384 1 5975150264 28025260 1 0 5 1 2 2 6 7372800 1474560 2949120 2950985 8985600 156 169 150 161 1887 0 0 0 0 32 0 0 0 0 0
224 1783859761473594300 DEPTH 37 1 0.76188058030650829 0.8356047700170357 1 12 1 12 0 0 989 25 2563 23741731 147840 1361.7868957519531 8.6172000000000004 1847.2736 47040 27506 1 0 0.0033651663875057473 0.47165320917887499 4096 2048 384 12 96 2563 1920 0 384 1 5979623432 32498428 1 0 6 1 2 1 6 8601600 1720320 2949120 1475475 8985600 154 153 150 157 1949 0 0 0 1 24 0 0 0 0 0
225 1783859763476411100 DEPTH 34 1 0.76193126104643361 0.8356047700170357 1 12 1 12 0 0 705 41 2569 23741789 147840 1333.5244903564453 8.6967999999999996 1932.9495999999999 47040 27488 1 0 0.00024456112032069028 1.7981817145069319 4096 2048 384 12 96 2569 1920 0 384 1 5984102720 36977716 1 0 6 1 2 1 6 8601600 1720320 2949120 1475534 8985600 150 150 150 162 1957 0 0 0 3 38 0 0 0 0 0
226 1783859765650310300 DEPTH 11 1 0.76136641156717111 0.37478705281090291 0 8 0 8 1 0 2434 39 2548 23742697 147840 1289.5477752685547 8.7028999999999996 2105.4488999999999 80640 45010 1 1 0 0.7068416979302139 4096 2048 384 12 96 2548 1920 0 384 1 5988560588 41435584 1 0 4 2 2 2 6 5898240 2949120 2949120 2951002 8985600 156 150 181 172 1889 0 0 0 0 38 0 0 0 0 2
227 1783859767843355700 DEPTH 53 1 0.76139715051693146 0.37478705281090291 0 8 0 8 0 0 4096 77 2523 23742552 147840 1295.5689239501953 8.5891000000000002 2115.1190000000001 80640 44799 1 0 0 0.2106332408498392 4096 2048 384 12 96 2523 1920 0 384 1 5992992956 45867952 1 0 4 2 2 2 6 5898240 2949120 2949120 2950856 8985600 156 150 156 165 1896 0 0 18 6 53 0 0 0 0 0
228 1783859770017993700 DEPTH 31 1 0.76143006152728177 0.3594548551959113 2 6 2 6 0 0 2676 55 2571 23742672 147840 1293.2413330078125 8.7461000000000002 2049.6084999999998 80640 44976 1 0 0.038014368460935123 0.97909598530596631 4096 2048 384 12 96 2571 1920 0 384 1 5997474284 50349280 1 0 4 2 2 2 6 5898240 2949120 2949120 2950975 8985600 155 150 201 183 1882 0 0 4 0 51 0 0 0 0 0
229 1783859772163846600 DEPTH 42 1 0.78127825159006525 0 0 4 0 4 0 0 4096 14 2595 23677636 81600 1293.9028625488281 9.0612999999999992 2144.1323000000002 120960 38940 1 0 0 0.0063610145412278767 4096 2048 384 12 96 2595 1920 0 384 1 6001980092 54855088 1 0 4 3 3 3 3 5898240 4423680 4423680 4426373 4492800 203 150 210 1440 592 0 0 0 0 14 0 0 0 0 0
230 1783859774198835500 DEPTH 8 1 0.77651928917383695 0.26575809199318562 2 5 2 5 0 0 2372 41 2546 23742744 147840 1305.0890960693359 8.6493000000000002 1966.7519 80640 45282 1 0 0.030103035119069095 0.91796646697047368 4096 2048 384 12 96 2546 1920 0 384 1 6006435920 59310916 1 0 4 2 2 2 6 5898240 2949120 2949120 2951048 8985600 150 154 150 156 1936 0 0 0 0 41 0 0 0 0 0
231 1783859776353819700 DEPTH 20 1 0.77170380059868138 0.26575809199318562 2 5 2 5 0 0 2074 23 2597 23742661 147840 1302.8229064941406 9.0114000000000019 2096.0034000000001 80640 45255 1 0 0.001771835568079596 0.77081764157800148 4096 2048 384 12 96 2597 1920 0 384 1 6010943768 63818764 1 0 4 2 2 2 6 5898240 2949120 2949120 2950965 8985600 150 150 202 256 1839 0 0 0 0 23 0 0 0 0 0
232 1783859779445845300 DEPTH 16 1 0.76160824402756555 0.3594548551959113 2 6 2 6 0 0 3221 71 2544 23742652 147840 1307.7414245605469 8.6106999999999996 3033.6518999999998 80640 45323 1 0 0.0062991239157878338 0.25319780240096146 4096 2048 384 12 96 2544 1920 0 384 1 6015397636 1163812 1 0 4 2 2 2 6 5898240 2949120 2949120 2950958 8985600 151 150 156 162 1925 0 0 3 0 68 0 0 0 0 0
233 1783859781592002900 DEPTH 1 1 0.76165261966162656 0.36712095400340705 1 7 1 7 0 0 3036 52 2572 23742586 147840 1295.9621734619141 8.581999999999999 2082.0095999999999 80640 44623 1 0 0.028773653260515411 1.8199943181710654 4096 2048 384 12 96 2572 1920 0 384 1 6019879984 5646160 1 0 4 2 2 2 6 5898240 2949120 2949120 2950893 8985600 152 150 153 169 1948 0 0 4 2 46 0 0 0 0 0
234 1783859783908675500 DEPTH 44 1 0.7616969277011213 0.36712095400340705 1 7 1 7 0 0 2238 48 2613 23742672 147840 1348.0674285888672 8.7278000000000002 2243.9232999999999 80640 44471 1 0 0.027664597694635307 0.87919275545735165 4096 2048 384 12 96 2613 1920 0 384 1 6024404152 10170328 1 0 4 2 2 2 6 5898240 2949120 2949120 2950978 8985600 151 150 215 159 1938 0 0 1 0 47 0 0 0 0 0
235 1783859786048053600 DEPTH 52 1 0.76174116834543049 0.36712095400340705 1 7 1 7 0 0 2198 52 2568 23742668 147840 1304.3793792724609 8.6211000000000002 2075.4258 80640 44690 1 0 7.4202217947583462e-05 1.936591165712374 4096 2048 384 12 96 2568 1920 0 384 1 6028882420 14648596 1 0 4 2 2 2 6 5898240 2949120 2949120 2950972 8985600 150 150 214 152 1902 0 0 4 4 44 0 0 0 0 0
236 1783859787922953300 DEPTH 4 1 0.76148364583794459 0.8356047700170357 1 12 1 12 1 0 282 34 2560 23741661 147840 1325.0508728027344 8.6633000000000013 1817.8226999999999 47040 26747 1 0 0.040028929433672061 1.2420241261414608 4096 2048 384 12 96 2560 1920 0 384 1 6033352528 19118704 1 0 6 1 2 1 6 8601600 1720320 2949120 1475407 8985600 160 150 150 156 1944 0 0 2 0 32 0 0 0 0 1
237 1783859790074706900 DEPTH 42 1 0.77724595543194364 0 0 4 0 4 0 0 4096 19 2601 23677534 81600 1308.9867858886719 8.8496000000000006 2149.7471999999998 120960 27463 1 0 0 0.0063610145412278767 4096 2048 384 12 96 2601 1920 0 384 1 6037864456 23630632 1 0 4 3 3 3 3 5898240 4423680 4423680 4426497 4492800 157 150 197 1578 519 0 0 0 0 19 0 0 0 0 0
238 1783859792233817600 DEPTH 48 1 0.77687348788802413 0.26575809199318562 2 5 2 5 0 0 2433 45 2596 23742707 147840 1296.9318237304688 8.5524000000000004 2092.5513999999998 80640 44543 1 0 0.0046043101471456684 0.20405439432789962 4096 2048 384 12 96 2596 1920 0 384 1 6042371284 28137460 1 0 4 2 2 2 6 5898240 2949120 2949120 2951011 8985600 150 150 150 150 1996 0 0 4 2 39 0 0 0 0 0
239 1783859794398619700 DEPTH 9 1 0.77691746092806224 0.27342419080068137 1 6 1 6 0 0 3061 54 2548 23742628 147840 1302.0518341064453 8.595600000000001 2101.0996 80640 44882 1 0 0.00029749737042186297 0.32936763850020839 4096 2048 384 12 96 2548 1920 0 384 1 6046829152 32595328 1 0 4 2 2 2 6 5898240 2949120 2949120 2950934 8985600 156 150 154 156 1932 0 0 0 1 53 0 0 0 0 0
240 1783859796627081200 DEPTH 56 1 0.786635304452449 0.17206132879045993 2 4 2 4 0 0 4096 62 2580 23720946 125760 1286.8270263671875 8.8532999999999991 2149.5689000000002 120960 46087 1 0 0.0054355512702489233 0.48957545601177821 4096 2048 384 12 96 2580 1920 0 384 1 6051319660 37085836 1 0 4 3 2 2 5 5898240 4423680 2949120 2950976 7488000 169 150 153 1500 608 1 2 2 15 42 0 0 0 0 0
241 1783859798767849600 DEPTH 41 1 0.76394643199618006 0.55451448040885853 1 9 1 9 0 0 2184 84 2561 23742207 147840 1303.9554443359375 8.6574999999999989 2066.5641000000001 80640 47925 1 0 0.00047546691312138533 1.497358551665477 4096 2048 384 12 96 2561 1920 0 384 1 6055790788 41556964 1 0 4 2 2 2 6 6635520 2949120 2949120 2213231 8985600 152 150 151 184 1924 16 2 13 5 48 0 0 0 0 0
242 1783859801014763000 DEPTH 46 1 0.76206631639860589 0.37478705281090291 0 8 0 8 0 0 2697 33 2578 23742656 147840 1311.4962615966797 8.706900000000001 2122.8114999999998 80640 44914 1 0 3.9081084752213203e-05 0.39562579086132238 4096 2048 384 12 96 2578 1920 0 384 1 6060279256 46045432 1 0 4 2 2 2 6 5898240 2949120 2949120 2950959 8985600 152 150 160 168 1948 0 0 2 1 30 0 0 0 0 0
243 1783859803190140400 DEPTH 33 1 0.76209269091392262 0.36712095400340705 1 7 1 7 0 0 3386 34 2554 23742724 147840 1310.3638000488281 8.6919000000000004 2098.9740999999999 80640 45167 1 0 0.00023585005086066899 0.32811287371681425 4096 2048 384 12 96 2554 1920 0 384 1 6064743244 50509420 1 0 4 2 2 2 6 5898240 2949120 2949120 2951031 8985600 150 150 186 158 1910 0 0 2 0 32 0 0 0 0 0
244 1783859805111048800 DEPTH 49 1 0.76109718681332683 0.4454855195911413 3 6 3 6 0 0 1508 64 2528 23742659 147840 1316.8056488037109 8.7032000000000007 1858.5988 80640 42468 1 0 0.058061103203911842 2.3022417889218207 4096 2048 384 12 96 2528 1920 0 384 1 6069180712 54946888 1 0 4 2 2 2 6 5898240 2949120 2949120 2950965 8985600 154 156 159 160 1899 0 0 6 6 52 0 0 0 0 0
245 1783859805516715600 REFRESH 58 0 0.76020150754923799 0.92163543441226559 2 12 2 12 0 0 525 13 409 3988874 56640 238.0369873046875 1.5044999999999999 337.541 6720 4997 0 0 0.0096214935481512883 1.6134051887685537 4096 2048 64 1 16 409 320 0 64 0 6069906116 55672292 1 0 6 1 2 1 6 1474560 245760 491520 245834 1497600 26 25 25 25 308 0 0 0 1 12 0 0 0 0 0
246 1783859805867725600 REFRESH 52 0 0.61418280896200972 0.36712095400340705 1 7 1 7 0 0 2200 15 418 3988970 56640 230.82392883300781 1.5165999999999999 349.286 13440 8576 0 0 7.4202217947583462e-05 1.936591165712374 4096 2048 64 1 16 418 320 0 64 0 6070640700 56406876 1 0 4 2 2 2 6 983040 491520 491520 491690 1497600 25 25 52 30 286 0 0 1 0 14 0 0 0 0 0
247 1783859806231148700 REFRESH 47 0 0.75137191714118401 0.8279386712095399 2 11 2 11 1 0 657 13 409 3988960 56640 223.78189086914062 1.4655 304.48349999999999 6720 4877 0 0 0.018960026908908086 1.2351126180506042 4096 2048 64 1 16 409 320 0 64 0 6071366104 57132280 1 0 5 1 2 2 6 1228800 245760 491520 491677 1497600 26 25 25 28 305 0 0 0 0 13 0 0 0 0 1
248 1783859806613821000 REFRESH 27 0 0.7603485527212086 0.93696763202725719 0 14 0 14 0 0 874 22 414 3988886 56640 229.18246459960938 1.5159 310.03160000000003 6720 4980 0 0 4.4312838867707149e-06 0.92228926599200534 4096 2048 64 1 16 414 320 0 64 0 6072096608 57862784 1 0 6 1 2 1 6 1474560 245760 491520 245846 1497600 27 25 25 25 312 0 0 0 0 22 0 0 0 0 0
249 1783859806945269400 REFRESH 16 0 0.67430854288142295 0.3594548551959113 2 6 2 6 0 0 3232 38 417 3988947 56640 239.7286376953125 1.4384999999999999 329.79500000000002 13440 8649 0 0 0.0062991239157878338 0.25319780240096146 4096 2048 64 1 16 417 320 0 64 0 6072830172 58596348 1 0 4 2 2 2 6 983040 491520 491520 491665 1497600 26 25 27 29 310 0 0 0 0 38 0 0 0 0 0
250 1783859807345961100 REFRESH 8 0 0.71935032930915432 0.26575809199318562 2 5 2 5 0 0 2377 20 409 3988951 56640 240.068603515625 1.4478 331.47919999999999 13440 8752 0 0 0.030103035119069095 0.91796646697047368 4096 2048 64 1 16 409 320 0 64 0 6073555576 59321752 1 0 4 2 2 2 6 983040 491520 491520 491671 1497600 25 26 25 26 307 0 0 0 0 20 0 0 0 0 0
251 1783859807772341400 REFRESH 11 0 0.75441891089835411 0.37478705281090291 0 8 0 8 1 0 2445 32 409 3988946 56640 223.99078369140625 1.5987 361.52949999999998 13440 8578 0 0 0 0.70642063573804703 4096 2048 64 1 16 409 320 0 64 0 6074280980 60047156 1 0 4 2 2 2 6 983040 491520 491520 491665 1497600 26 25 75 48 235 0 0 3 5 24 0 0 0 0 1
252 1783859808115097400 REFRESH 41 0 0.61431422421625548 0.55451448040885853 1 9 1 9 0 0 2200 36 414 3988947 56640 236.92185974121094 1.4479 340.83580000000001 13440 9604 0 0 0.00047546691312138533 1.497358551665477 4096 2048 64 1 16 414 320 0 64 0 6075011484 60777660 1 0 4 2 2 2 6 983040 491520 491520 491666 1497600 27 25 38 42 282 0 0 3 1 32 0 0 0 0 0
253 1783859808497727100 REFRESH 23 0 0.75500404112331387 0.74190800681430991 1 11 1 11 0 0 3403 16 409 3988969 56640 228.5086669921875 1.4443999999999999 322.39760000000001 6720 4889 0 0 0.019300881082243489 0.74477203843732076 4096 2048 64 1 16 409 320 0 64 0 6075736888 61503064 1 0 5 1 2 2 6 1228800 245760 491520 491688 1497600 29 25 36 28 291 0 0 1 0 15 0 0 0 0 0
254 1783859808841390000 REFRESH 46 0 0.62453245605164642 0.37478705281090291 0 8 0 8 0 0 2704 23 408 3988949 56640 225.02809143066406 1.4295 342.00009999999997 13440 8591 0 0 3.9081084752213203e-05 0.39562579086132238 4096 2048 64 1 16 408 320 0 64 0 6076461272 62227448 1 0 4 2 2 2 6 983040 491520 491520 491669 1497600 26 25 68 50 239 0 0 0 0 23 0 0 0 0 0
255 1783859809211143000 REFRESH 19 0 0.75174483742184683 0.8279386712095399 2 11 2 11 0 0 856 14 416 3988942 56640 225.37420654296875 1.4345000000000001 304.51819999999998 6720 4911 0 0 0.024134501803917539 0.35880585544835542 4096 2048 64 1 16 416 320 0 64 0 6077193816 62959992 1 0 5 1 2 2 6 1228800 245760 491520 491662 1497600 25 26 25 26 314 0 0 0 1 13 0 0 0 0 0
256 1783859809666736600 REFRESH 32 0 0.76163542969361997 0.4608177172061329 1 8 1 8 0 0 2954 36 414 3988981 56640 224.69938659667969 1.4476 316.30349999999999 13440 9671 0 0 0.0011665864340913636 1.8037808584357806 4096 2048 64 1 16 414 320 0 64 0 6077924320 63690496 1 0 4 2 2 2 6 983040 491520 491520 491699 1497600 26 25 29 29 305 0 0 2 3 31 0 0 0 0 0
257 1783859810048257500 REFRESH 22 0 0.76078576968589173 0.91396933560476989 3 11 3 11 0 0 472 10 417 3988959 56640 241.39161682128906 1.456 320.04629999999997 6720 4898 0 0 0.0083533723482868329 0.70040182967037024 4096 2048 64 1 16 417 320 0 64 0 6078657884 64424060 1 0 5 1 2 2 6 1228800 245760 491520 491675 1497600 25 25 25 25 317 0 0 0 0 10 0 0 0 0 0
258 1783859810442858600 REFRESH 57 0 0.7696823986573853 0.27342419080068137 1 6 1 6 0 0 4096 34 407 3988985 56640 233.21702575683594 1.4292 327.20580000000001 13440 8663 0 0 0.00072752635965749523 0.50646269260782129 4096 2048 64 1 16 407 320 0 64 0 6079381248 65147424 1 0 4 2 2 2 6 983040 491520 491520 491703 1497600 26 25 47 46 263 0 0 0 1 33 0 0 0 0 0
259 1783859810760059300 REFRESH 4 0 0.73125282517907986 0.8356047700170357 1 12 1 12 0 0 283 7 420 3988879 56640 229.41798400878906 1.4339 315.51420000000002 6720 4955 0 0 0.040028929433672061 1.2420241261414608 4096 2048 64 1 16 420 320 0 64 0 6080117872 65884048 1 0 6 1 2 1 6 1474560 245760 491520 245838 1497600 26 25 25 34 310 0 0 0 0 7 0 0 0 0 0
260 1783859811088138500 REFRESH 1 0 0.75476480520982259 0.36712095400340705 1 7 1 7 0 0 3056 45 422 3988492 56160 225.19296264648438 1.4319999999999999 326.12670000000003 13440 9921 0 0 0.028773653260515411 1.8199943181710654 4096 2048 64 1 16 422 320 0 64 0 6080856536 66622712 1 0 5 2 2 2 5 1228800 491520 491520 491692 1248000 25 25 25 102 245 0 0 2 9 34 0 0 0 0 0
261 1783859812689448000 REFRESH 55 0 0.75952164575173842 0.64054514480408853 2 9 2 9 0 0 1070 8 409 3988950 56640 224.73216247558594 1.4358 1475.7898 6720 4939 0 0 0.11267375438910436 0.93501389544354829 4096 2048 64 1 16 409 320 0 64 0 6081582020 240144 1 0 5 1 2 2 6 1228800 245760 491520 491670 1497600 30 26 28 26 299 0 0 0 0 8 0 0 0 0 0
262 1783859813108721500 REFRESH 20 0 0.76547297022784822 0.26575809199318562 2 5 2 5 0 0 2079 9 432 3988477 56160 227.80415344238281 1.5111000000000001 358.59690000000001 13440 9901 0 0 0.001771835568079596 0.77081764157800148 4096 2048 64 1 16 432 320 0 64 0 6082330884 989008 1 0 5 2 2 2 5 1228800 491520 491520 491676 1248000 25 25 27 51 304 0 0 1 0 8 0 0 0 0 0
263 1783859813495097200 REFRESH 35 0 0.75211337458762551 0.8279386712095399 2 11 2 11 0 0 1100 11 404 3988934 56640 240.15676879882812 1.4503999999999999 319.44209999999998 6720 4920 0 0 0.12120608375158826 1.1047241122088913 4096 2048 64 1 16 404 320 0 64 0 6083051188 1709312 1 0 5 1 2 2 6 1228800 245760 491520 491653 1497600 26 25 25 31 297 0 0 0 0 11 0 0 0 0 0
264 1783859813873262900 REFRESH 5 0 0.75216532221832089 0.8279386712095399 2 11 2 11 0 0 870 12 412 3988960 56640 235.70533752441406 1.4548000000000001 319.81939999999997 6720 4858 0 0 0.005213560619153213 0.426630687374281 4096 2048 64 1 16 412 320 0 64 0 6083779652 2437776 1 0 5 1 2 2 6 1228800 245760 491520 491679 1497600 25 25 25 33 304 0 0 1 2 9 0 0 0 0 0
265 1783859814231746200 REFRESH 48 0 0.76996976786999938 0.26575809199318562 2 5 2 5 0 0 2445 26 421 3988944 56640 236.70988464355469 1.4321999999999999 356.6429 13440 8678 0 0 0.0046043101471456684 0.20405439432789962 4096 2048 64 1 16 421 320 0 64 0 6084517296 3175420 1 0 4 2 2 2 6 983040 491520 491520 491663 1497600 25 25 51 34 286 0 0 2 0 24 0 0 0 0 0
266 1783859814627972600 REFRESH 31 0 0.75501058112626385 0.3594548551959113 2 6 2 6 0 0 2694 32 419 3988964 56640 224.04197692871094 1.4341999999999999 332.1823 13440 8728 0 0 0.038014368460935123 0.97909598530596631 4096 2048 64 1 16 419 320 0 64 0 6085252900 3911024 1 0 4 2 2 2 6 983040 491520 491520 491681 1497600 27 25 47 44 276 0 0 1 2 29 0 0 0 0 0
267 1783859815001087400 REFRESH 38 0 0.75497765354306856 0.55451448040885853 1 9 1 9 0 0 2079 26 415 3988946 56640 224.27033996582031 1.4318 308.72140000000002 13440 9508 0 0 0.13433027919204674 2.3057515358806704 4096 2048 64 1 16 415 320 0 64 0 6085984424 4642548 1 0 4 2 2 2 6 983040 491520 491520 491665 1497600 25 26 30 31 303 0 0 0 0 26 0 0 0 0 0
268 1783859815319741500 REFRESH 33 0 0.75509202971088651 0.36712095400340705 1 7 1 7 0 0 3404 48 419 3988948 56640 225.49810791015625 1.4359 314.86559999999997 13440 8643 0 0 0.00023585005086066899 0.32811287371681425 4096 2048 64 1 16 419 320 0 64 0 6086720028 5378152 1 0 4 2 2 2 6 983040 491520 491520 491668 1497600 25 25 51 30 288 0 0 4 0 44 0 0 0 0 0
269 1783859815712621700 REFRESH 50 0 0.75788696061643368 0.64054514480408853 2 9 2 9 0 0 1042 13 427 3988898 56640 223.96620178222656 1.5024999999999999 324.36430000000001 13440 9997 0 0 0.059365983438523645 2.1081194948679065 4096 2048 64 1 16 427 320 0 64 0 6087463792 6121916 1 0 5 2 2 1 6 1228800 491520 491520 245857 1497600 27 25 25 26 324 2 0 0 0 11 0 0 0 0 0
270 1783859816174765500 REFRESH 29 0 0.75823444548063867 0.82027257240204421 3 10 3 10 0 0 1103 9 416 3988881 56640 238.19161987304688 1.4302999999999999 319.08569999999997 6720 5025 0 0 0.26278519260479372 0.96843308429688912 4096 2048 64 1 16 416 320 0 64 0 6088196336 6854460 1 0 6 1 2 1 6 1474560 245760 491520 245841 1497600 25 25 25 26 315 0 0 0 0 9 0 0 0 0 0
271 1783859816565376000 REFRESH 2 0 0.76229498339089552 0.45315161839863699 2 7 2 7 0 0 3526 72 411 3988949 56640 236.66586303710938 1.5699000000000001 331.25549999999998 13440 9720 0 0 0.2773399391733698 2.0710771777085544 4096 2048 64 1 16 411 320 0 64 0 6088923780 7581904 1 0 4 2 2 2 6 983040 491520 491520 491668 1497600 26 25 33 29 298 0 0 1 0 71 0 0 0 0 0
272 1783859816936523600 REFRESH 42 0 0.94426617535303015 0 0 4 0 4 0 0 4096 5 426 3987629 55200 227.74681091308594 1.4347000000000001 369.34350000000001 20160 12540 0 0 0 0.0063610145412278767 4096 2048 64 1 16 426 320 0 64 0 6089666524 8324648 1 0 4 3 3 3 3 983040 737280 737280 737519 748800 82 25 48 194 77 0 0 0 0 5 0 0 0 0 0
273 1783859817310506500 REFRESH 6 0 0.75554891270879831 0.91396933560476989 3 11 3 11 0 0 380 6 422 3988871 56640 236.57778930664062 1.4329000000000001 317.74110000000002 6720 4952 0 0 0.078472369408099776 0.14391543825984973 4096 2048 64 1 16 422 320 0 64 0 6090405188 9063312 1 0 6 1 2 1 6 1474560 245760 491520 245828 1497600 25 25 25 26 321 0 0 0 0 6 0 0 0 0 0
274 1783859817677771900 REFRESH 0 0 0.75261313735285573 0.8279386712095399 2 11 2 11 0 0 884 11 416 3988944 56640 229.56442260742188 1.4330000000000001 310.19540000000001 6720 4849 0 0 0.00014140214567446167 2.30096177437744 4096 2048 64 1 16 416 320 0 64 0 6091137732 9795856 1 0 5 1 2 2 6 1228800 245760 491520 491663 1497600 26 25 25 29 311 0 0 1 2 8 0 0 0 0 0
275 1783859818092929600 REFRESH 9 0 0.77037524892974452 0.27342419080068137 1 6 1 6 0 0 3088 43 414 3988961 56640 238.5479736328125 1.4724999999999999 344.07780000000002 13440 8697 0 0 0.00029749737042186297 0.32936763850020839 4096 2048 64 1 16 414 320 0 64 0 6091868236 10526360 1 0 4 2 2 2 6 983040 491520 491520 491681 1497600 26 25 27 38 298 0 0 0 1 42 0 0 0 0 0
276 1783859818469656700 REFRESH 45 0 0.76251166082391897 0.45315161839863699 2 7 2 7 0 0 2126 26 416 3988952 56640 226.10432434082031 1.4484999999999999 321.58159999999998 13440 9725 0 0 0.2309103244036371 1.4859222174523592 4096 2048 64 1 16 416 320 0 64 0 6092600780 11258904 1 0 4 2 2 2 6 983040 491520 491520 491672 1497600 27 25 25 31 308 1 0 0 0 25 0 0 0 0 0
277 1783859818782638300 REFRESH 49 0 0.75354093429579583 0.4454855195911413 3 6 3 6 0 0 1516 22 406 3988960 56640 224.11672973632812 1.4509000000000001 311.37740000000002 13440 9294 0 0 0.058061103203911842 2.3022417889218207 4096 2048 64 1 16 406 320 0 64 0 6093323124 11981248 1 0 4 2 2 2 6 983040 491520 491520 491679 1497600 25 26 30 35 290 0 0 0 2 20 0 0 0 0 0
278 1783859819152218200 REFRESH 51 0 0.76178378901368071 0.91396933560476989 3 11 3 11 0 0 535 12 408 3988886 56640 222.71897888183594 1.4545999999999999 304.21850000000001 6720 4928 0 0 0.04374756045180065 0.27288744213454319 4096 2048 64 1 16 408 320 0 64 0 6094047508 12705632 1 0 6 1 2 1 6 1474560 245760 491520 245846 1497600 27 25 25 27 304 0 0 0 0 12 0 0 0 0 0
279 1783859819520509100 REFRESH 30 0 0.76264092182952947 0.4608177172061329 1 8 1 8 0 0 3469 66 416 3988966 56640 223.393798828125 1.4246000000000001 309.55410000000001 6720 4688 0 0 0.0010823191780834386 1.5810805031597897 4096 2048 64 1 16 416 320 0 64 0 6094780052 13438176 1 0 5 1 2 2 6 1228800 245760 491520 491686 1497600 30 25 43 34 284 3 0 4 2 57 0 0 0 0 0
280 1783859819892324000 REFRESH 26 0 0.76052877696709942 0.64821124361158422 1 10 1 10 0 0 1834 51 416 3988969 56640 223.60887145996094 1.6487000000000001 313.9873 6720 4921 0 0 0.090960598249431271 0.70032506168692255 4096 2048 64 1 16 416 320 0 64 0 6095512596 14170720 1 0 5 1 2 2 6 1228800 245760 491520 491688 1497600 28 25 28 31 304 4 0 1 1 45 0 0 0 0 0
281 1783859820309318700 REFRESH 44 0 0.7556157485707794 0.36712095400340705 1 7 1 7 0 0 2246 22 424 3988951 56640 228.92442321777344 1.4318 358.12349999999998 13440 8597 0 0 0.027664597694635307 0.87919275545735165 4096 2048 64 1 16 424 320 0 64 0 6096253300 14911424 1 0 4 2 2 2 6 983040 491520 491520 491671 1497600 26 25 72 27 274 0 0 2 0 20 0 0 0 0 0
282 1783859820715151200 REFRESH 53 0 0.75566625672867505 0.37478705281090291 0 8 0 8 0 0 4096 55 413 3988983 56640 231.76602172851562 1.4383999999999999 340.4169 13440 8672 0 0 0 0.2106332408498392 4096 2048 64 1 16 413 320 0 64 0 6096982784 15640908 1 0 4 2 2 2 6 983040 491520 491520 491700 1497600 26 25 31 32 299 0 0 2 1 52 0 0 0 0 0
283 1783859821089446500 REFRESH 3 0 0.76051618190573222 0.64054514480408853 2 9 2 9 0 0 1112 14 407 3988878 56640 228.30284118652344 1.4396 317.32780000000002 13440 9911 0 0 0.0077247780151947464 0.15611804084716696 4096 2048 64 1 16 407 320 0 64 0 6097706148 16364272 1 0 5 2 2 1 6 1228800 491520 491520 245836 1497600 37 25 25 31 289 0 0 0 0 14 0 0 0 0 0
284 1783859821466489000 REFRESH 28 0 0.75306064580086374 0.8279386712095399 2 11 2 11 0 0 633 9 407 3988950 56640 223.46751403808594 1.4407000000000001 313.30029999999999 6720 4949 0 0 0.00022189812580462688 0.92047472736303015 4096 2048 64 1 16 407 320 0 64 0 6098429512 17087636 1 0 5 1 2 2 6 1228800 245760 491520 491669 1497600 26 25 25 26 305 0 0 0 0 9 0 0 0 0 0
285 1783859821864801900 REFRESH 40 0 0.76060504657377048 0.64821124361158422 1 10 1 10 0 0 1688 26 422 3988866 56640 223.7337646484375 1.8196000000000001 342.72280000000001 13440 9978 0 0 0.08315556845306328 0.52708806647616635 4096 2048 64 1 16 422 320 0 64 0 6099168176 17826300 1 0 5 2 2 1 6 1228800 491520 491520 245826 1497600 25 25 25 27 320 3 0 0 4 19 0 0 0 0 0
286 1783859822348556500 REFRESH 39 0 0.75579752943446388 0.55451448040885853 1 9 1 9 0 0 1580 14 425 3988956 56640 240.50483703613281 1.4317 362.71469999999999 13440 9495 0 0 0.00014839428778928599 1.5497505427452305 4096 2048 64 1 16 425 320 0 64 0 6099909900 18568024 1 0 4 2 2 2 6 983040 491520 491520 491675 1497600 25 25 36 45 294 3 1 1 0 9 0 0 0 0 0
287 1783859822714274300 REFRESH 14 0 0.76069365944654643 0.65587734241908002 0 11 0 11 0 0 1633 28 415 3988963 56640 228.41343688964844 1.4281999999999999 307.762 6720 4814 0 0 1.6719593580913314e-05 0.72140234505359491 4096 2048 64 1 16 415 320 0 64 0 6100641424 19299548 1 0 5 1 2 2 6 1228800 245760 491520 491682 1497600 27 25 27 27 309 0 0 1 0 27 0 0 0 0 0
288 1783859823118137300 REFRESH 13 0 0.77089374355456874 0.27342419080068137 1 6 1 6 0 0 4096 52 420 3988949 56640 225.20115661621094 1.4684999999999999 330.69670000000002 13440 8559 0 0 0.022786735533611113 0.15623055639937777 4096 2048 64 1 16 420 320 0 64 0 6101378048 20036172 1 0 4 2 2 2 6 983040 491520 491520 491669 1497600 26 25 68 33 268 0 0 6 3 43 0 0 0 0 0
289 1783859823502303300 REFRESH 15 0 0.75939465028876196 0.91396933560476989 3 11 3 11 0 0 322 11 409 3988881 56640 240.14028930664062 1.4350000000000001 321.42590000000001 6720 4979 0 0 0.13215737202774189 0.95319511763653475 4096 2048 64 1 16 409 320 0 64 0 6102103452 20761576 1 0 6 1 2 1 6 1474560 245760 491520 245841 1497600 28 26 25 25 305 1 0 0 0 10 0 0 0 0 0
290 1783859823944547800 REFRESH 17 0 0.77097266581024126 0.28109028960817717 0 7 0 7 0 0 3931 25 416 3988953 56640 224.15155029296875 1.4529000000000001 367.77800000000002 13440 8697 0 0 1.7384002172801471e-05 0.059782352022523813 4096 2048 64 1 16 416 320 0 64 0 6102835996 21494120 1 0 4 2 2 2 6 983040 491520 491520 491671 1497600 26 25 39 44 282 0 0 1 3 21 0 0 0 0 0
291 1783859824316279100 REFRESH 36 0 0.7533701353160388 0.82027257240204421 3 10 3 10 0 0 1224 24 407 3988961 56640 225.25541687011719 1.4314 312.69830000000002 6720 4823 0 0 0.063069086016965495 0.15492757616277195 4096 2048 64 1 16 407 320 0 64 0 6103559360 22217484 1 0 5 1 2 2 6 1228800 245760 491520 491679 1497600 25 25 25 28 304 0 0 0 0 24 0 0 0 0 0
292 1783859824739613300 REFRESH 56 0 0.78193212547612045 0.17206132879045993 2 4 2 4 0 0 4096 10 426 3988472 56160 225.45304870605469 1.4365000000000001 360.5179 20160 13985 0 0 0.0054355512702489233 0.48957545601177821 4096 2048 64 1 16 426 320 0 64 0 6104302104 22960228 1 0 4 3 2 2 5 983040 737280 491520 491670 1248000 38 25 25 252 86 1 0 1 0 8 0 0 0 0 0
293 1783859825124388000 REFRESH 12 0 0.76095800103976818 0.63287904599659284 3 8 3 8 0 0 1485 43 431 3988967 56640 224.81205749511719 1.4330000000000001 318.17230000000001 6720 4905 0 0 0.0015342879221033493 0.52805712610492539 4096 2048 64 1 16 431 320 0 64 0 6105049948 23708072 1 0 5 1 2 2 6 1228800 245760 491520 491685 1497600 35 25 25 32 314 0 0 0 1 42 0 0 0 0 0
294 1783859825503459000 REFRESH 21 0 0.75613615920700783 0.56218057921635434 0 10 0 10 0 0 2520 54 414 3988964 56640 223.73887634277344 1.4412 318.01179999999999 13440 9618 0 0 2.4584779324138999e-05 1.0722633759184834 4096 2048 64 1 16 414 320 0 64 0 6105780452 24438576 1 0 4 2 2 2 6 983040 491520 491520 491684 1497600 26 25 38 40 285 0 0 5 4 45 0 0 0 0 0
295 1783859825864985100 REFRESH 24 0 0.75929724268901522 1 4 11 4 11 0 0 491 12 411 3988962 56640 226.47807312011719 1.4305000000000001 304.66829999999999 6720 4953 0 0 0.027869521123281102 1.4468046609733554 4096 2048 64 1 16 411 320 0 64 0 6106507896 25166020 1 0 5 1 2 2 6 1228800 245760 491520 491682 1497600 27 25 25 27 307 0 0 0 0 12 0 0 0 0 0
296 1783859826246956600 REFRESH 34 0 0.75358933815396911 0.8356047700170357 1 12 1 12 1 0 707 12 413 3988899 56640 224.12696838378906 1.4321999999999999 317.3519 6720 4985 0 0 0.00020654801738738873 1.769932182842139 4096 2048 64 1 16 413 320 0 64 0 6107237380 25895504 1 0 6 1 2 1 6 1474560 245760 491520 245858 1497600 26 27 25 34 301 0 0 0 2 10 0 0 0 0 1
297 1783859826696889600 REFRESH 10 0 0.76113299480041996 0.64821124361158422 1 10 1 10 0 0 1140 18 422 3988865 56640 224.95654296875 1.4244000000000001 310.40730000000002 13440 10009 0 0 0.0023995083271502065 2.8416920354575197 4096 2048 64 1 16 422 320 0 64 0 6107976044 26634168 1 0 5 2 2 1 6 1228800 491520 491520 245824 1497600 26 25 25 28 318 3 0 0 3 12 0 0 0 0 0
298 1783859827068705000 REFRESH 18 0 0.76270676377470381 0.9293015332197615 1 13 1 13 1 0 441 12 411 3988945 56640 225.22572326660156 1.4419999999999999 311.66680000000002 6720 4856 0 0 0.001215977528803138 1.5422979655869309 4096 2048 64 1 16 411 320 0 64 0 6108703488 27361612 1 0 5 1 2 2 6 1228800 245760 491520 491665 1497600 25 25 25 26 310 0 0 0 0 12 0 0 0 0 1
299 1783859827493011800 REFRESH 25 0 0.7634887368901081 0.4608177172061329 1 8 1 8 0 0 2317 32 411 3988962 56640 225.46022033691406 1.4316 360.04730000000001 13440 9525 0 0 0.0002866720556610524 1.4641012066807393 4096 2048 64 1 16 411 320 0 64 0 6109430932 28089056 1 0 4 2 2 2 6 983040 491520 491520 491681 1497600 26 25 33 32 295 0 0 3 4 25 0 0 0 0 0
300 1783859827893321300 REFRESH 54 0 0.7635305057241627 0.4608177172061329 1 8 1 8 0 0 1191 14 420 3988944 56640 223.43064880371094 1.4578 337.48750000000001 13440 9650 0 0 0.00048566486093188938 1.0664299709342928 4096 2048 64 1 16 420 320 0 64 0 6110167556 28825680 1 0 4 2 2 2 6 983040 491520 491520 491664 1497600 26 25 44 53 272 0 0 0 0 14 0 0 0 0 0
301 1783859828254190100 REFRESH 7 0 0.75383096429550178 0.8356047700170357 1 12 1 12 1 0 868 21 408 3988949 56640 224.18739318847656 1.4401999999999999 300.79969999999997 6720 4898 0 0 0.00025497451229948798 0.8256864504409217 4096 2048 64 1 16 408 320 0 64 0 6110891940 29550064 1 0 5 1 2 2 6 1228800 245760 491520 491667 1497600 25 25 25 25 308 0 0 0 0 21 0 0 0 0 1
302 1783859828627255700 REFRESH 43 0 0.75385036752150569 0.8279386712095399 2 11 2 11 0 0 779 13 422 3988956 56640 225.06291198730469 1.4319999999999999 312.44499999999999 6720 4923 0 0 0.009842172204325185 1.2471290918008606 4096 2048 64 1 16 422 320 0 64 0 6111630604 30288728 1 0 5 1 2 2 6 1228800 245760 491520 491676 1497600 26 25 25 48 298 0 0 0 2 11 0 0 0 0 0
303 1783859829052037800 REFRESH 37 0 0.75389366110711165 0.8356047700170357 1 12 1 12 0 0 991 18 408 3988886 56640 224.94003295898438 1.4262999999999999 304.3295 6720 4958 0 0 0.0033651663875057473 0.47165320917887499 4096 2048 64 1 16 408 320 0 64 0 6112354988 31013112 1 0 6 1 2 1 6 1474560 245760 491520 245844 1497600 26 26 25 31 300 0 0 0 0 18 0 0 0 0 0
304 1783859831352938600 DEPTH 42 1 0.93623885515355454 0 0 4 0 4 0 0 4096 18 2593 23677553 81600 1307.8773651123047 8.7285000000000004 2178.6356000000001 120960 59732 1 0 0 0.0063610145412278767 4096 2048 384 12 96 2593 1920 0 384 1 6116858756 35516880 1 0 4 3 3 3 3 5898240 4423680 4423680 4426479 4492800 395 150 245 1146 657 0 0 0 0 18 0 0 0 0 0
305 1783859833447898900 DEPTH 8 1 0.76417980186552747 0.26575809199318562 2 5 2 5 0 0 2381 37 2556 23742657 147840 1304.7470855712891 8.6632999999999996 2003.6455000000001 80640 42672 1 0 0.030103035119069095 0.91796646697047368 4096 2048 384 12 96 2556 1920 0 384 1 6121324784 39982908 1 0 4 2 2 2 6 5898240 2949120 2949120 2950944 8985600 150 153 150 156 1947 0 0 0 0 37 0 0 0 0 0
306 1783859835633143400 DEPTH 48 1 0.76421713989541695 0.26575809199318562 2 5 2 5 0 0 2449 32 2588 23742867 147840 1295.3057556152344 8.6809000000000012 2122.5641999999998 80640 42595 1 0 0.0046043101471456684 0.20405439432789962 4096 2048 384 12 96 2588 1920 0 384 1 6125823452 44481576 1 0 4 2 2 2 6 5898240 2949120 2949120 2950974 8985600 150 150 150 150 1988 0 0 0 2 30 0 0 0 0 0
307 1783859837827238000 DEPTH 9 1 0.76425442643063035 0.27342419080068137 1 6 1 6 0 0 3114 73 2529 23742775 147840 1316.1339721679688 8.8003 2135.5412999999999 80640 42821 1 0 0.00029749737042186297 0.32936763850020839 4096 2048 384 12 96 2529 1920 0 384 1 6130261940 48920064 1 0 4 2 2 2 6 5898240 2949120 2949120 2950992 8985600 156 150 156 162 1905 0 0 4 1 68 0 0 0 0 0
308 1783859840045055200 DEPTH 57 1 0.76429166160875961 0.27342419080068137 1 6 1 6 1 0 4096 44 2544 23742759 147840 1357.6306610107422 8.6378000000000004 2215.1531 80640 42989 1 0 0.0007301784849736558 0.45465524976525634 4096 2048 384 12 96 2544 1920 0 384 1 6134715728 53373852 1 0 4 2 2 2 6 5898240 2949120 2949120 2950949 8985600 156 150 193 191 1854 0 0 2 3 39 0 0 0 0 1
309 1783859842388958000 DEPTH 20 1 0.75939224556685214 0.26575809199318562 2 5 2 5 0 0 2100 45 2590 23720525 125760 1390.5732574462891 9.4380000000000006 2272.4083000000001 80640 45837 1 0 0.001771835568079596 0.77081764157800148 4096 2048 384 12 96 2590 1920 0 384 1 6139216436 57874560 1 0 5 2 2 2 5 7372800 2949120 2949120 2950910 7488000 150 150 154 284 1852 0 0 18 0 27 0 0 0 0 0
310 1783859844567379000 DEPTH 2 1 0.75488058084305398 0.45315161839863699 2 7 2 7 0 0 3554 106 2542 23742671 147840 1299.5737609863281 9.0709 2120.9535000000001 80640 45724 1 0 0.2773399391733698 2.0710771777085544 4096 2048 384 12 96 2542 1920 0 384 1 6143668184 62326308 1 0 4 2 2 2 6 5898240 2949120 2949120 2950976 8985600 156 150 163 156 1917 0 0 14 1 91 0 0 0 0 0
311 1783859846762567400 DEPTH 45 1 0.75492022309050144 0.45315161839863699 2 7 2 7 0 0 2131 34 2586 23742675 147840 1301.6227722167969 8.6951000000000001 2117.5291000000002 80640 45843 1 0 0.2309103244036371 1.4859222174523592 4096 2048 384 12 96 2586 1920 0 384 1 6148164812 66822936 1 0 4 2 2 2 6 5898240 2949120 2949120 2950979 8985600 150 150 150 156 1980 0 0 0 4 30 0 0 0 0 0
312 1783859850139495000 DEPTH 42 1 0.76306553629810214 0 0 4 0 4 0 0 4096 16 2587 23677481 81600 1290.0669555664062 8.6252999999999993 3316.6455999999998 120960 49373 1 0 0 0.0063610145412278767 4096 2048 384 12 96 2587 1920 0 384 1 6152662540 4212308 1 0 4 3 3 3 3 5898240 4423680 4423680 4426432 4492800 392 150 231 1236 578 0 0 0 0 16 0 0 0 0 0
313 1783859852250616100 DEPTH 32 1 0.75499934476824382 0.4608177172061329 1 8 1 8 0 0 2977 80 2551 23741875 147840 1288.2001953125 8.6305999999999994 2046.3279 80640 44622 1 0 0.0011665864340913636 1.8037808584357806 4096 2048 384 12 96 2551 1920 0 384 1 6157123468 8673236 1 0 5 2 2 1 6 7127040 2949120 2949120 1721382 8985600 150 150 156 156 1939 0 0 11 18 51 0 0 0 0 0
314 1783859854545681500 DEPTH 30 1 0.75503882448639581 0.4608177172061329 1 8 1 8 0 0 3485 95 2526 23742638 147840 1313.08544921875 8.7832000000000008 2152.8955999999998 67200 37625 1 0 0.0010823191780834386 1.5810805031597897 4096 2048 384 12 96 2526 1920 0 384 1 6161558896 13108664 1 0 4 2 2 2 6 6389760 2457600 2949120 2950941 8985600 168 150 199 195 1814 5 0 6 8 76 0 0 0 0 0
315 1783859856872996500 DEPTH 13 1 0.76455088130140414 0.27342419080068137 1 6 1 6 0 0 4096 50 2561 23742911 147840 1344.2642059326172 8.6227 2194.7676000000001 80640 42494 1 0 0.022786735533611113 0.15623055639937777 4096 2048 384 12 96 2561 1920 0 384 1 6166030024 17579792 1 0 4 2 2 2 6 5898240 2949120 2949120 2951023 8985600 154 150 155 150 1952 0 0 1 5 44 0 0 0 0 0
316 1783859859008769600 DEPTH 26 1 0.75182274667350468 0.64821124361158422 1 10 1 10 1 0 1864 89 2565 23742642 147840 1329.6221923828125 8.6128999999999998 2074.7934 47040 29201 1 0 0.0023266425042342159 1.1740011678228659 4096 2048 384 12 96 2565 1920 0 384 1 6170505232 22055000 1 0 4 2 2 2 6 7127040 1720320 2949120 2950947 8985600 163 150 165 156 1931 19 6 5 7 52 0 0 1 0 0
317 1783859860864500100 DEPTH 51 1 0.75176627702935039 0.91396933560476989 3 11 3 11 1 0 535 30 2569 23741735 147840 1278.4854888916016 8.6023999999999994 1801.9456 47040 27111 1 0 0.044092769239544943 0.28194752902809894 4096 2048 384 12 96 2569 1920 0 384 1 6174984520 26534288 1 0 6 1 2 1 6 8601600 1720320 2949120 1475480 8985600 162 150 150 162 1945 0 1 0 1 28 0 0 0 0 1
318 1783859862906424200 DEPTH 22 1 0.75180868809061863 0.91396933560476989 3 11 3 11 0 0 474 43 2567 23742637 147840 1350.8653564453125 8.6508000000000003 1893.0464999999999 40320 22951 1 0 0.0083533723482868329 0.70040182967037024 4096 2048 384 12 96 2567 1920 0 384 1 6179461768 31011536 1 0 5 1 2 2 6 7372800 1474560 2949120 2950940 8985600 150 150 150 150 1967 0 0 0 0 43 0 0 0 0 0
319 1783859864785277700 DEPTH 58 1 0.75185104155670768 0.92163543441226559 2 12 2 12 0 0 527 19 2547 23741699 147840 1290.7787170410156 8.6688000000000009 1822.2824000000001 47040 26761 1 0 0.0096214935481512883 1.6134051887685537 4096 2048 384 12 96 2547 1920 0 384 1 6183918616 35468384 1 0 6 1 2 1 6 8601600 1720320 2949120 1475445 8985600 163 150 150 150 1934 0 0 0 0 19 0 0 0 0 0
320 1783859867003879800 DEPTH 56 1 0.77665699930989474 0.17206132879045993 2 4 2 4 0 0 4096 59 2581 23712856 118080 1303.3830261230469 8.6735000000000007 2144.6801 134400 78744 1 0 0.0054355512702489233 0.48957545601177821 4096 2048 384 12 96 2581 1920 0 384 1 6188410144 39959912 1 0 4 4 2 2 4 5898240 4915200 2949120 2950917 6988800 178 150 151 1325 777 0 0 4 7 48 0 0 0 0 0
321 1783859869156145100 DEPTH 17 1 0.76477110705550211 0.28109028960817717 0 7 0 7 0 0 3946 49 2560 23742878 147840 1270.1327362060547 8.6295999999999999 2085.4821999999999 80640 42696 1 0 1.7384002172801471e-05 0.059782352022523813 4096 2048 384 12 96 2560 1920 0 384 1 6192880252 44430020 1 0 4 2 2 2 6 5898240 2949120 2949120 2950955 8985600 156 150 156 162 1936 0 0 1 0 48 0 0 0 0 0
322 1783859871274673800 DEPTH 42 1 0.7800124779260057 0 0 4 0 4 0 0 4096 18 2590 23677678 81600 1274.3060455322266 8.6318000000000001 2117.3424 120960 39352 1 0 0 0.0063610145412278767 4096 2048 384 12 96 2590 1920 0 384 1 6197380960 48930728 1 0 4 3 3 3 3 5898240 4423680 4423680 4426497 4492800 370 150 219 1299 552 0 0 0 0 18 0 0 0 0 0
323 1783859873075036600 DEPTH 27 1 0.75201988249135643 0.93696763202725719 0 14 0 14 1 0 879 54 2508 23741698 147840 1279.2626342773438 8.5945999999999998 1736.8150000000001 47040 27163 1 0 4.4782237923609263e-06 0.9356687662810621 4096 2048 384 12 96 2508 1920 0 384 1 6201798028 53347796 1 0 6 1 2 1 6 8601600 1720320 2949120 1475442 8985600 156 150 150 150 1902 0 0 0 0 54 0 0 0 0 1
324 1783859874882122400 DEPTH 12 1 0.75201589251596102 0.63287904599659284 3 8 3 8 0 0 1518 119 2632 23742302 147840 1274.9720916748047 8.7653999999999996 1748.1923999999999 80640 47315 1 0 0.0015342879221033493 0.52805712610492539 4096 2048 384 12 96 2632 1920 0 384 1 6206341576 57891344 1 0 4 2 2 2 6 6389760 2949120 2949120 2459087 8985600 157 150 150 152 2023 2 0 1 1 115 0 0 0 0 0
325 1783859876877024400 DEPTH 3 1 0.75205625543386667 0.64054514480408853 2 9 2 9 0 0 1115 31 2531 23742311 147840 1265.0391845703125 8.7083999999999993 1942.6298999999999 80640 46501 1 0 0.0077247780151947464 0.15611804084716696 4096 2048 384 12 96 2531 1920 0 384 1 6210782104 62331872 1 0 4 2 2 2 6 6389760 2949120 2949120 2459092 8985600 164 158 150 156 1903 0 1 0 3 27 0 0 0 0 0
326 1783859878902894300 DEPTH 40 1 0.75209656402350744 0.64821124361158422 1 10 1 10 0 0 1716 76 2568 23742384 147840 1269.3582153320312 8.6222999999999992 1972.0811000000001 80640 46570 1 0 0.08315556845306328 0.52708806647616635 4096 2048 384 12 96 2568 1920 0 384 1 6215260372 66810140 1 0 4 2 2 2 6 6389760 2949120 2949120 2459171 8985600 150 150 150 154 1964 6 12 2 7 49 0 0 0 0 0
327 1783859880429641500 DEPTH 14 1 0.75213681842657332 0.65587734241908002 0 11 0 11 0 0 1633 16 426 3965101 32640 222.63194274902344 1.4303999999999999 1472.8162 6720 5351 0 0 1.6719593580913314e-05 0.72140234505359491 4096 2048 64 2 16 426 320 0 64 0 6216003196 444144 1 0 5 1 2 2 6 1228800 245760 491520 491821 1497600 26 25 26 25 324 0 0 1 0 15 0 0 0 0 0
1 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 best_crossing_loss best_intersection_loss neural_replay neural_positive neural_samples neural_train_steps neural_seeds training_verified training_fp32 training_seeds training_rollouts training_refinements training_cache_accounted_bytes training_wal_bytes training_collection_enabled training_limit_reached weight_baseline weight_replica weight_adaptive weight_pbt weight_injected 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
2 1 1783859482858331200 DEPTH 42 1 0.81643558783371195 0 0 4 0 4 0 0 4096 61 2558 23803978 209280 1495.4158172607422 8.6181000000000001 2624.5346 40320 21252 1 0 0 0.0063610145412278767 4096 2048 384 12 96 2558 1920 128 384 1 5414886048 4628364 1 0 5 1 2 2 6 7618560 1474560 2949120 2705080 8985600 181 157 156 160 1904 19 6 10 4 22 0 0 0 0 0
3 2 1783859485211546600 DEPTH 56 1 0.62652048513770875 0.17206132879045993 2 4 2 4 0 0 4096 133 2532 23804020 209280 1272.595458984375 8.6524999999999999 2281.7804000000001 40320 20516 1 0 0.0054355512702489233 0.48957545601177821 4096 2048 384 12 96 2532 1920 128 384 1 5419487852 9230168 1 0 5 1 2 2 6 7618560 1474560 2949120 2705124 8985600 209 180 154 170 1819 31 10 19 15 58 0 0 0 0 0
4 3 1783859487291810100 DEPTH 8 1 0.61160518943045372 0.26575809199318562 2 5 2 5 0 0 2353 41 2540 23803936 209280 1305.1730346679688 8.6021000000000001 2014.6561999999999 40320 20101 1 0 0.030103035119069095 0.91796646697047368 4096 2048 384 12 96 2540 1920 128 384 1 5424097816 13840132 1 0 5 1 2 2 6 7618560 1474560 2949120 2705041 8985600 184 166 157 158 1875 6 2 2 1 30 0 0 0 0 0
5 4 1783859489501317500 DEPTH 48 1 0.62168970155977021 0.26575809199318562 2 5 2 5 0 0 2380 66 2586 23803907 209280 1262.3831176757812 8.8483000000000001 2137.2909 40320 21091 1 0 0.0046043101471456684 0.20405439432789962 4096 2048 384 12 96 2586 1920 128 384 1 5428754700 18497016 1 0 5 1 2 2 6 7618560 1474560 2949120 2705010 8985600 158 154 156 151 1967 10 8 13 8 27 0 0 0 0 0
6 5 1783859491726142500 DEPTH 20 1 0.63177402236797597 0.26575809199318562 2 5 2 5 0 0 2046 64 2588 23803972 209280 1263.9713134765625 8.8116000000000003 2159.6822999999999 40320 19639 1 0 0.001771835568079596 0.77081764157800148 4096 2048 384 12 96 2588 1920 128 384 1 5433413624 23155940 1 0 5 1 2 2 6 7618560 1474560 2949120 2705076 8985600 171 163 153 159 1942 10 6 17 4 27 0 0 0 0 0
7 6 1783859493904616200 DEPTH 9 1 0.64185815269192936 0.27342419080068137 1 6 1 6 0 0 2958 91 2566 23803971 209280 1300.1575927734375 8.6667000000000005 2110.1637000000001 40320 21353 1 0 0.00029749737042186297 0.32936763850020839 4096 2048 384 12 96 2566 1920 128 384 1 5438050108 27792424 1 0 5 1 2 2 6 7618560 1474560 2949120 2705074 8985600 169 163 159 170 1905 17 3 8 11 52 0 0 0 0 0
8 7 1783859496055538600 DEPTH 13 1 0.65194209336307729 0.27342419080068137 1 6 1 6 0 0 4096 138 2557 23803945 209280 1267.9272918701172 8.6363000000000003 2080.7467999999999 40320 20357 1 0 0.022786735533611113 0.15623055639937777 4096 2048 384 12 96 2557 1920 128 384 1 5442677412 32419728 1 0 5 1 2 2 6 7618560 1474560 2949120 2705048 8985600 169 150 150 152 1936 19 12 24 15 68 0 0 0 0 0
9 8 1783859498230173200 DEPTH 57 1 0.66202584520750063 0.27342419080068137 1 6 1 6 0 0 4096 65 2534 23803875 209280 1288.1461334228516 8.9376999999999995 2113.5268999999998 40320 22315 1 0 0.00072752635965749523 0.50646269260782129 4096 2048 384 12 96 2534 1920 128 384 1 5447281256 37023572 1 0 5 1 2 2 6 7618560 1474560 2949120 2704978 8985600 193 162 154 161 1864 16 2 6 3 38 0 0 0 0 0
10 9 1783859500414416300 DEPTH 17 1 0.67210940904596039 0.28109028960817717 0 7 0 7 0 0 3801 123 2569 23803930 209280 1262.4959411621094 8.6677 2117.8371000000002 40320 22461 1 0 1.7384002172801471e-05 0.059782352022523813 4096 2048 384 12 96 2569 1920 128 384 1 5451920800 41663116 1 0 5 1 2 2 6 7618560 1474560 2949120 2705034 8985600 176 150 151 160 1932 18 19 25 20 41 0 0 0 0 0
11 10 1783859502524622100 DEPTH 31 1 0.66719278569394269 0.3594548551959113 2 6 2 6 0 0 2584 93 2547 23803950 209280 1264.3483581542969 8.6189 2047.2363 40320 21586 1 1 0.038014368460935123 0.97909598530596631 4096 2048 384 12 96 2547 1920 128 384 1 5456537904 46280220 1 0 5 1 2 2 6 7618560 1474560 2949120 2705053 8985600 156 150 151 160 1930 16 1 20 25 30 0 0 0 0 0
12 11 1783859504462193000 DEPTH 16 1 0.67727597596170408 0.3594548551959113 2 6 2 6 0 0 3144 83 2554 23803925 209280 1307.1319122314453 8.6824999999999992 1878.0409 40320 21855 1 0 0.0062991239157878338 0.25319780240096146 4096 2048 384 12 96 2554 1920 128 384 1 5461162148 50904464 1 0 5 1 2 2 6 7618560 1474560 2949120 2705031 8985600 213 155 157 162 1867 13 3 4 18 45 0 0 0 0 0
13 12 1783859506625166800 DEPTH 33 1 0.68735898065431511 0.36712095400340705 1 7 1 7 0 0 3316 106 2542 23803962 209280 1296.2375793457031 8.6776999999999997 2088.0246000000002 40320 20259 1 0 0.00023585005086066899 0.32811287371681425 4096 2048 384 12 96 2542 1920 128 384 1 5465774152 55516468 1 0 5 1 2 2 6 7618560 1474560 2949120 2705065 8985600 180 167 176 161 1858 20 8 20 11 47 0 0 0 0 0
14 13 1783859508798236600 DEPTH 1 1 0.6974418005717048 0.36712095400340705 1 7 1 7 0 0 2931 142 2579 23803914 209280 1269.3473205566406 8.7161000000000008 2099.1925999999999 40320 21769 1 0 0.028773653260515411 1.8199943181710654 4096 2048 384 12 96 2579 1920 128 384 1 5470423896 60166212 1 0 5 1 2 2 6 7618560 1474560 2949120 2705020 8985600 170 150 151 152 1956 25 12 30 15 60 0 0 0 0 0
15 14 1783859511029502300 DEPTH 44 1 0.70752443650870411 0.36712095400340705 1 7 1 7 0 0 2151 87 2624 23803971 209280 1289.4443664550781 8.7358000000000011 2150.1129999999998 40320 20545 1 0 0.027664597694635307 0.87919275545735165 4096 2048 384 12 96 2624 1920 128 384 1 5475119540 64861856 1 0 5 1 2 2 6 7618560 1474560 2949120 2705075 8985600 174 150 152 153 1995 13 4 11 6 53 0 0 0 0 0
16 15 1783859514359102700 DEPTH 52 1 0.71760688925508853 0.36712095400340705 1 7 1 7 0 0 2112 81 2569 23803899 209280 1249.2555084228516 8.6443999999999992 3264.2584999999999 40320 21644 1 0 7.4202217947583462e-05 1.936591165712374 4096 2048 384 12 96 2569 1920 128 384 1 5479759164 2393280 1 0 5 1 2 2 6 7618560 1474560 2949120 2705000 8985600 190 166 168 166 1879 6 11 19 8 37 0 0 0 0 0
17 16 1783859516545279600 DEPTH 53 1 0.72768915959562042 0.37478705281090291 0 8 0 8 1 0 4096 118 2529 23803896 209280 1289.0676727294922 8.6239000000000008 2112.9456 40320 21376 1 0 0 0.22565469819514533 4096 2048 384 12 96 2529 1920 128 384 1 5484357908 6992024 1 0 5 1 2 2 6 7618560 1474560 2949120 2704998 8985600 195 172 153 155 1854 30 5 7 11 65 0 0 0 0 1
18 17 1783859518751335000 DEPTH 46 1 0.73777124831009155 0.37478705281090291 0 8 0 8 0 0 2659 69 2564 23803951 209280 1285.9791412353516 8.8445 2143.8800000000001 40320 21441 1 0 3.8232733419501159e-05 0.39408488134986086 4096 2048 384 12 96 2564 1920 128 384 1 5488992352 11626468 1 0 5 1 2 2 6 7618560 1474560 2949120 2705054 8985600 178 163 153 153 1917 14 6 10 5 34 0 0 0 0 0
19 18 1783859520987516800 DEPTH 11 1 0.74785315617336479 0.37478705281090291 0 8 0 8 1 0 2355 120 2566 23803920 209280 1266.7271118164062 8.6816000000000013 2150.1727999999998 40320 20920 1 0 0 0.7282841747625155 4096 2048 384 12 96 2566 1920 128 384 1 5493628836 16262952 1 0 5 1 2 2 6 7618560 1474560 2949120 2705023 8985600 189 160 161 151 1905 18 17 20 17 48 0 0 0 0 1
20 19 1783859522890208600 DEPTH 49 1 0.74793488395541474 0.4454855195911413 3 6 3 6 0 0 1449 96 2524 23803868 209280 1271.9523773193359 9.9571000000000005 1837.0108 40320 21042 1 0 0.058061103203911842 2.3022417889218207 4096 2048 384 12 96 2524 1920 128 384 1 5498222480 20856596 1 0 5 1 2 2 6 7618560 1474560 2949120 2704973 8985600 194 192 163 163 1812 16 4 3 9 64 0 0 0 0 0
21 20 1783859525040565600 DEPTH 2 1 0.75801643242136851 0.45315161839863699 2 7 2 7 0 0 3397 145 2534 23803931 209280 1283.183349609375 8.6815999999999995 2068.7017999999998 40320 21260 1 0 0.2773399391733698 2.0710771777085544 4096 2048 384 12 96 2534 1920 128 384 1 5502826324 25460440 1 0 5 1 2 2 6 7618560 1474560 2949120 2705036 8985600 198 177 164 162 1833 17 12 9 13 94 0 0 0 0 0
22 21 1783859527246744800 DEPTH 45 1 0.76809780233154701 0.45315161839863699 2 7 2 7 0 0 2085 71 2598 23803860 209280 1301.1816101074219 8.6685999999999996 2143.248 40320 19623 1 0 0.2309103244036371 1.4859222174523592 4096 2048 384 12 96 2598 1920 128 384 1 5507495448 30129564 1 0 5 1 2 2 6 7618560 1474560 2949120 2704963 8985600 161 150 151 159 1977 6 16 14 11 24 0 0 0 0 0
23 22 1783859529403483500 DEPTH 54 1 0.77817899444150351 0.4608177172061329 1 8 1 8 0 0 1178 49 2542 23803992 209280 1262.9637145996094 8.8901000000000003 2077.3618000000001 40320 20395 1 0 0.00048566486093188938 1.0664299709342928 4096 2048 384 12 96 2542 1920 128 384 1 5512107452 34741568 1 0 5 1 2 2 6 7618560 1474560 2949120 2705097 8985600 159 150 156 160 1917 7 8 13 3 18 0 0 0 0 0
24 23 1783859531576029900 DEPTH 32 1 0.78826000950206421 0.4608177172061329 1 8 1 8 0 0 2877 111 2547 23803961 209280 1281.9139862060547 8.6373999999999995 2094.8515000000002 40320 21566 1 0 0.0011665864340913636 1.8037808584357806 4096 2048 384 12 96 2547 1920 128 384 1 5516724556 39358672 1 0 5 1 2 2 6 7618560 1474560 2949120 2705064 8985600 162 156 154 153 1922 18 12 27 14 40 0 0 0 0 0
25 24 1783859533729822900 DEPTH 30 1 0.79834084825936669 0.4608177172061329 1 8 1 8 0 0 3369 108 2535 23803951 209280 1280.0040893554688 8.6679999999999993 2080.7575000000002 40320 20834 1 0 0.0010823191780834386 1.5810805031597897 4096 2048 384 12 96 2535 1920 128 384 1 5521329420 43963536 1 0 5 1 2 2 6 7618560 1474560 2949120 2705052 8985600 179 157 168 165 1866 18 9 25 4 52 0 0 0 0 0
26 25 1783859535939031600 DEPTH 25 1 0.79842151145489915 0.4608177172061329 1 8 1 8 0 0 2269 76 2558 23803963 209280 1306.4998168945312 8.8238000000000003 2130.1007 40320 21144 1 0 0.0002866720556610524 1.4641012066807393 4096 2048 384 12 96 2558 1920 128 384 1 5525957744 48591860 1 0 5 1 2 2 6 7618560 1474560 2949120 2705066 8985600 174 152 150 159 1923 18 6 7 4 41 0 0 0 0 0
27 26 1783859538100772900 DEPTH 39 1 0.79135914268268093 0.55451448040885853 1 9 1 9 0 0 1564 64 2582 23803940 209280 1259.9510955810547 8.7548000000000012 2092.6412 40320 23116 1 0 0.00014839428778928599 1.5497505427452305 4096 2048 384 12 96 2582 1920 128 384 1 5530610548 53244664 1 0 5 1 2 2 6 7618560 1474560 2949120 2705044 8985600 167 150 150 156 1959 7 2 4 6 45 0 0 0 0 0
28 27 1783859540036224800 DEPTH 38 1 0.79143945696072959 0.55451448040885853 1 9 1 9 0 0 2029 93 2547 23803989 209280 1274.82861328125 8.7203000000000017 1874.7381 40320 20480 1 0 0.13433027919204674 2.3057515358806704 4096 2048 384 12 96 2547 1920 128 384 1 5535227652 57861768 1 0 5 1 2 2 6 7618560 1474560 2949120 2705088 8985600 193 175 161 155 1863 11 8 26 4 44 0 0 0 0 0
29 28 1783859542155409500 DEPTH 41 1 0.79151959787395532 0.55451448040885853 1 9 1 9 0 0 2132 102 2554 23803953 209280 1249.8995208740234 8.6153999999999993 2041.3098 40320 21276 1 0 0.00047546691312138533 1.497358551665477 4096 2048 384 12 96 2554 1920 128 384 1 5539851896 62486012 1 0 5 1 2 2 6 7618560 1474560 2949120 2705052 8985600 159 168 150 171 1906 11 9 17 16 49 0 0 0 0 0
30 29 1783859544350225800 DEPTH 21 1 0.79159956614562654 0.56218057921635434 0 10 0 10 0 0 2448 70 2551 23803893 209280 1271.9963226318359 8.6923999999999992 2126.2433999999998 40320 22586 1 0 2.4584779324138999e-05 1.0722633759184834 4096 2048 384 12 96 2551 1920 128 384 1 5544473080 67107196 1 0 5 1 2 2 6 7618560 1474560 2949120 2704999 8985600 183 157 156 156 1899 20 5 9 4 32 0 0 0 0 0
31 30 1783859547427145200 DEPTH 12 1 0.786322219637407 0.63287904599659284 3 8 3 8 0 0 1430 100 2643 23803983 209280 1277.8661499023438 8.6981000000000002 2999.9007000000001 40320 19768 1 0 0.0015342879221033493 0.52805712610492539 4096 2048 384 12 96 2643 1920 128 384 1 5549188184 4713812 1 0 5 1 2 2 6 7618560 1474560 2949120 2705086 8985600 172 161 151 152 2007 28 5 6 4 57 0 0 0 0 0
32 31 1783859549664817300 DEPTH 42 1 1.0332998475074435 0 0 4 0 4 0 0 4096 20 2563 23742721 147840 1264.9236450195312 8.6529999999999987 2167.6929 40320 14848 1 0 0 0.0063610145412278767 4096 2048 384 12 96 2563 1920 0 384 1 5553661352 9186980 1 0 5 1 2 2 6 7372800 1474560 2949120 2951021 8985600 174 156 164 181 1888 2 1 6 0 11 0 0 0 0 0
33 32 1783859551837044400 DEPTH 56 1 0.83337522479943216 0.17206132879045993 2 4 2 4 0 0 4096 81 2534 23742649 147840 1276.0627136230469 8.9589999999999996 2104.529 40320 15313 1 0 0.0054355512702489233 0.48957545601177821 4096 2048 384 12 96 2534 1920 0 384 1 5558104940 13630568 1 0 5 1 2 2 6 7372800 1474560 2949120 2950955 8985600 206 187 160 315 1666 4 17 21 1 38 0 0 0 0 0
34 33 1783859554102899100 DEPTH 8 1 0.80845044101188535 0.26575809199318562 2 5 2 5 0 0 2355 36 2538 23742661 147840 1301.2572021484375 8.6571999999999996 2196.1028999999999 40320 16079 1 0 0.030103035119069095 0.91796646697047368 4096 2048 384 12 96 2538 1920 0 384 1 5562552608 18078236 1 0 5 1 2 2 6 7372800 1474560 2949120 2950965 8985600 216 174 166 167 1815 1 0 1 0 34 0 0 0 0 0
35 34 1783859556298837600 DEPTH 48 1 0.80852549681013219 0.26575809199318562 2 5 2 5 0 0 2395 47 2585 23742679 147840 1268.2065887451172 8.5968999999999998 2128.7918 40320 15453 1 0 0.0046043101471456684 0.20405439432789962 4096 2048 384 12 96 2585 1920 0 384 1 5567048216 22573844 1 0 5 1 2 2 6 7372800 1474560 2949120 2950984 8985600 168 158 160 168 1931 0 7 7 2 31 0 0 0 0 0
36 35 1783859558497144600 DEPTH 20 1 0.80860039285543817 0.26575809199318562 2 5 2 5 0 0 2051 25 2591 23742623 147840 1262.0585174560547 8.601799999999999 2128.8753000000002 40320 14561 1 0 0.001771835568079596 0.77081764157800148 4096 2048 384 12 96 2591 1920 0 384 1 5571549944 27075572 1 0 5 1 2 2 6 7372800 1474560 2949120 2950928 8985600 170 156 183 198 1884 0 0 0 0 25 0 0 0 0 0
37 36 1783859560682680900 DEPTH 9 1 0.80867512980503709 0.27342419080068137 1 6 1 6 0 0 2980 78 2550 23742651 147840 1306.5482177734375 8.6560000000000006 2118.0875000000001 40320 16219 1 0 0.00029749737042186297 0.32936763850020839 4096 2048 384 12 96 2550 1920 0 384 1 5576009852 31535480 1 0 5 1 2 2 6 7372800 1474560 2949120 2950952 8985600 173 168 161 183 1865 8 7 13 14 36 0 0 0 0 0
38 37 1783859562813822200 DEPTH 13 1 0.80874970831216497 0.27342419080068137 1 6 1 6 0 0 4096 84 2561 23742594 147840 1272.3138275146484 8.6225000000000005 2066.2374 40320 15248 1 0 0.022786735533611113 0.15623055639937777 4096 2048 384 12 96 2561 1920 0 384 1 5580480980 36006608 1 0 5 1 2 2 6 7372800 1474560 2949120 2950897 8985600 174 150 150 190 1897 8 17 7 6 46 0 0 0 0 0
39 38 1783859564961364500 DEPTH 57 1 0.80882412902609058 0.27342419080068137 1 6 1 6 0 0 4096 43 2545 23742681 147840 1290.4775695800781 8.9346999999999994 2083.4537999999998 40320 16187 1 0 0.00072752635965749523 0.50646269260782129 4096 2048 384 12 96 2545 1920 0 384 1 5584935788 40461416 1 0 5 1 2 2 6 7372800 1474560 2949120 2950987 8985600 187 163 169 164 1862 6 0 6 2 29 0 0 0 0 0
40 39 1783859567022960200 DEPTH 3 1 0.78703276669461864 0.64054514480408853 2 9 2 9 0 0 1095 52 2537 23803942 209280 1232.6533203125 8.7820999999999998 1994.4851000000001 40320 22603 1 0 0.0077247780151947464 0.15611804084716696 4096 2048 384 12 96 2537 1920 128 384 1 5589542692 45068320 1 0 5 1 2 2 6 7618560 1474560 2949120 2705047 8985600 190 164 150 176 1857 13 1 3 4 31 0 0 0 0 0
41 40 1783859569126833700 DEPTH 50 1 0.7871108823943197 0.64054514480408853 2 9 2 9 0 0 1034 49 2597 23804027 209280 1264.6726989746094 8.6475000000000009 2044.136 40320 21815 1 0 0.059365983438523645 2.1081194948679065 4096 2048 384 12 96 2597 1920 128 384 1 5594210796 49736424 1 0 5 1 2 2 6 7618560 1474560 2949120 2705130 8985600 151 150 150 150 1996 11 4 6 3 25 0 0 0 0 0
42 41 1783859571017917100 DEPTH 55 1 0.78718883379379867 0.64054514480408853 2 9 2 9 0 0 1068 53 2528 23803911 209280 1305.8864440917969 8.8234999999999992 1835.5429999999999 40320 21809 1 0 0.11267375438910436 0.93501389544354829 4096 2048 384 12 96 2528 1920 128 384 1 5598808520 54334148 1 0 5 1 2 2 6 7618560 1474560 2949120 2705016 8985600 196 202 168 168 1794 11 0 2 1 39 0 0 0 0 0
43 42 1783859573128031800 DEPTH 26 1 0.78726662156105365 0.64821124361158422 1 10 1 10 1 0 1792 80 2563 23803908 209280 1275.8805389404297 8.6456 2047.2760000000001 40320 20909 1 0 0.0018752441683851566 1.0565908685925454 4096 2048 384 12 96 2563 1920 128 384 1 5603441944 58967572 1 0 5 1 2 2 6 7618560 1474560 2949120 2705011 8985600 162 150 161 158 1932 13 5 13 10 39 0 0 0 0 1
44 43 1783859575259037700 DEPTH 40 1 0.78734424636006617 0.64821124361158422 1 10 1 10 0 0 1668 111 2585 23803912 209280 1264.4229125976562 8.6616999999999997 2068.5812000000001 40320 22251 1 0 0.08315556845306328 0.52708806647616635 4096 2048 384 12 96 2585 1920 128 384 1 5608097808 63623436 1 0 5 1 2 2 6 7618560 1474560 2949120 2705017 8985600 160 150 150 150 1975 13 12 7 14 65 0 0 0 0 0
45 44 1783859578367942700 DEPTH 10 1 0.78742170885083307 0.64821124361158422 1 10 1 10 0 0 1118 75 2559 23803889 209280 1274.0997924804688 8.6402000000000001 3040.6541999999999 40320 20833 1 0 0.0023995083271502065 2.8416920354575197 4096 2048 384 12 96 2559 1920 128 384 1 5612727232 1144432 1 0 5 1 2 2 6 7618560 1474560 2949120 2704995 8985600 199 156 161 164 1879 13 10 6 3 43 0 0 0 0 0
46 45 1783859580538982400 DEPTH 14 1 0.78749900968939857 0.65587734241908002 0 11 0 11 0 0 1618 117 2540 23803898 209280 1317.3084106445312 8.8140999999999998 2100.5536000000002 40320 19953 1 0 1.6719593580913314e-05 0.72140234505359491 4096 2048 384 12 96 2540 1920 128 384 1 5617337196 5754396 1 0 5 1 2 2 6 7618560 1474560 2949120 2705001 8985600 188 180 166 177 1829 12 5 6 1 93 0 0 0 0 0
47 46 1783859582476225800 DEPTH 23 1 0.78340948286121825 0.74190800681430991 1 11 1 11 1 0 3395 74 2533 23803971 209280 1305.2886962890625 8.6009000000000011 1870.6911 40320 20902 1 0 0.019300881082243489 0.74477203843732076 4096 2048 384 12 96 2533 1920 128 384 1 5621940020 10357220 1 0 5 1 2 2 6 7618560 1474560 2949120 2705070 8985600 199 160 158 173 1843 11 3 7 11 42 0 0 0 0 1
48 47 1783859584719746600 DEPTH 42 1 0.93140552727183434 0 0 4 0 4 0 0 4096 17 2563 23742682 147840 1260.0279388427734 8.6652000000000005 2180.9434000000001 47040 17856 1 0 0 0.0063610145412278767 4096 2048 384 12 96 2563 1920 0 384 1 5626413188 14830388 1 0 4 2 2 2 6 7127040 1720320 2949120 2950986 8985600 210 156 176 264 1757 0 1 0 0 16 0 0 0 0 0
49 48 1783859586957187100 DEPTH 17 1 0.80955979760523455 0.28109028960817717 0 7 0 7 0 0 3841 79 2567 23742690 147840 1264.2703399658203 8.8209 2153.183 40320 15584 1 0 1.7384002172801471e-05 0.059782352022523813 4096 2048 384 12 96 2567 1920 0 384 1 5630890436 19307636 1 0 5 1 2 2 6 7372800 1474560 2949120 2950993 8985600 169 150 156 165 1927 2 16 5 0 56 0 0 0 0 0
50 49 1783859589136932600 DEPTH 53 1 0.79463686179767468 0.37478705281090291 0 8 0 8 1 0 4096 103 2520 23742677 147840 1287.9771270751953 8.6140000000000008 2102.8492000000001 40320 16268 1 0 0 0.2106332408498392 4096 2048 384 12 96 2520 1920 0 384 1 5635319744 23736944 1 0 5 1 2 2 6 7372800 1474560 2949120 2950981 8985600 199 159 156 156 1850 17 3 16 19 48 0 0 0 0 2
51 50 1783859591323625700 DEPTH 11 1 0.79470530652385984 0.37478705281090291 0 8 0 8 1 0 2377 68 2561 23742681 147840 1270.2064514160156 8.6475000000000009 2120.6930000000002 40320 14997 1 0 0 0.7148495433218599 4096 2048 384 12 96 2561 1920 0 384 1 5639790872 28208072 1 0 5 1 2 2 6 7372800 1474560 2949120 2950985 8985600 182 156 167 180 1876 0 15 1 0 52 0 0 0 0 2
52 51 1783859593434170300 DEPTH 31 1 0.79477752751742314 0.3594548551959113 2 6 2 6 0 0 2595 48 2548 23742742 147840 1274.2277374267578 8.5823 2039.6128000000001 40320 15758 1 0 0.038014368460935123 0.97909598530596631 4096 2048 384 12 96 2548 1920 0 384 1 5644248740 32665940 1 0 5 1 2 2 6 7372800 1474560 2949120 2951044 8985600 166 165 177 194 1846 7 4 4 3 30 0 0 0 0 0
53 52 1783859595383219400 DEPTH 16 1 0.79484980515242754 0.3594548551959113 2 6 2 6 0 0 3163 78 2545 23742609 147840 1306.5699310302734 8.8133999999999997 1887.4042999999999 40320 17343 1 0 0.0062991239157878338 0.25319780240096146 4096 2048 384 12 96 2545 1920 0 384 1 5648703548 37120748 1 0 5 1 2 2 6 7372800 1474560 2949120 2950915 8985600 208 150 165 165 1857 17 2 11 7 41 0 0 0 0 0
54 53 1783859597582912900 DEPTH 33 1 0.79492193427821123 0.36712095400340705 1 7 1 7 0 0 3332 77 2546 23742650 147840 1322.2614898681641 8.7895000000000003 2125.3717999999999 40320 15731 1 0 0.00023585005086066899 0.32811287371681425 4096 2048 384 12 96 2546 1920 0 384 1 5653159376 41576576 1 0 5 1 2 2 6 7372800 1474560 2949120 2950956 8985600 188 162 166 186 1844 9 2 8 2 56 0 0 0 0 0
55 54 1783859599918041400 DEPTH 1 1 0.79499391548470288 0.36712095400340705 1 7 1 7 0 0 2950 68 2566 23742577 147840 1337.0747833251953 9.3988000000000014 2255.5216999999998 40320 15271 1 0 0.028773653260515411 1.8199943181710654 4096 2048 384 12 96 2566 1920 0 384 1 5657635604 46052804 1 0 5 1 2 2 6 7372800 1474560 2949120 2950881 8985600 183 150 162 179 1892 6 10 3 2 47 0 0 0 0 0
56 55 1783859602207005000 DEPTH 42 1 0.84077371203612028 0 0 4 0 4 0 0 4096 22 2560 23742657 147840 1314.2323303222656 8.7874000000000017 2286.9185000000002 80640 20000 1 0 0 0.0063610145412278767 4096 2048 384 12 96 2560 1920 0 384 1 5662105712 50522912 1 0 4 2 2 2 6 5898240 2949120 2949120 2950962 8985600 208 160 181 328 1683 1 0 1 0 20 0 0 0 0 0
57 56 1783859604404024700 DEPTH 56 1 0.81202577043585378 0.17206132879045993 2 4 2 4 0 0 4096 52 2540 23742635 147840 1278.9362640380859 8.6928999999999998 2137.1958 47040 19082 1 0 0.0054355512702489233 0.48957545601177821 4096 2048 384 12 96 2540 1920 0 384 1 5666555420 54972620 1 0 4 2 2 2 6 7127040 1720320 2949120 2950941 8985600 257 188 178 531 1386 2 2 8 1 39 0 0 0 0 0
58 57 1783859606645519300 DEPTH 44 1 0.7952089774358877 0.36712095400340705 1 7 1 7 0 0 2165 46 2621 23742624 147840 1290.0657501220703 8.7012 2181.1804000000002 40320 15182 1 0 0.027664597694635307 0.87919275545735165 4096 2048 384 12 96 2621 1920 0 384 1 5671087748 59504948 1 0 5 1 2 2 6 7372800 1474560 2949120 2950928 8985600 179 150 166 212 1914 0 4 5 0 37 0 0 0 0 0
59 58 1783859608811128700 DEPTH 52 1 0.79528037279558439 0.36712095400340705 1 7 1 7 0 0 2134 58 2566 23742631 147840 1269.1724395751953 8.7843999999999998 2095.4479999999999 40320 15348 1 0 7.4202217947583462e-05 1.936591165712374 4096 2048 384 12 96 2566 1920 0 384 1 5675563976 63981176 1 0 5 1 2 2 6 7372800 1474560 2949120 2950936 8985600 252 174 182 181 1777 1 2 2 5 48 0 0 0 0 0
60 59 1783859612282576100 DEPTH 46 1 0.79535162313417973 0.37478705281090291 0 8 0 8 0 0 2663 48 2564 23742666 147840 1312.9963684082031 9.1288 3409.0234 40320 15486 1 0 3.8232733419501159e-05 0.39408488134986086 4096 2048 384 12 96 2564 1920 0 384 1 5680038244 1347112 1 0 5 1 2 2 6 7372800 1474560 2949120 2950972 8985600 170 159 160 176 1899 4 5 3 1 35 0 0 0 0 0
61 60 1783859614234686900 DEPTH 49 1 0.78542272902120525 0.4454855195911413 3 6 3 6 0 0 1472 88 2538 23742596 147840 1343.4716186523438 8.6334 1888.8767 40320 15133 1 0 0.058061103203911842 2.3022417889218207 4096 2048 384 12 96 2538 1920 0 384 1 5684485912 5794780 1 0 5 1 2 2 6 7372800 1474560 2949120 2950898 8985600 186 178 163 173 1838 9 3 5 8 63 0 0 0 0 0
62 61 1783859616469119900 DEPTH 2 1 0.78549369102288524 0.45315161839863699 2 7 2 7 0 0 3433 121 2544 23742578 147840 1316.6808929443359 8.6409000000000002 2076.8883999999998 40320 15506 1 0 0.2773399391733698 2.0710771777085544 4096 2048 384 12 96 2544 1920 0 384 1 5688939700 10248568 1 0 5 1 2 2 6 7372800 1474560 2949120 2950883 8985600 187 178 182 181 1816 10 7 15 7 82 0 0 0 0 0
63 62 1783859618682613000 DEPTH 45 1 0.78556450970216041 0.45315161839863699 2 7 2 7 0 0 2099 58 2580 23742640 147840 1288.7234954833984 8.8470000000000013 2142.3341999999998 40320 15739 1 0 0.2309103244036371 1.4859222174523592 4096 2048 384 12 96 2580 1920 0 384 1 5693430208 14739076 1 0 5 1 2 2 6 7372800 1474560 2949120 2950943 8985600 200 150 156 170 1904 1 1 11 8 37 0 0 0 0 0
64 63 1783859619066569700 REFRESH 8 0 0.79750035561632726 0.26575809199318562 2 5 2 5 0 0 2358 11 414 3988953 56640 239.66514587402344 1.4325000000000001 323.9511 6720 4723 0 0 0.030103035119069095 0.91796646697047368 4096 2048 64 1 16 414 320 0 64 0 5694160712 15469580 1 0 5 1 2 2 6 1228800 245760 491520 491672 1497600 28 25 25 27 309 0 0 0 0 11 0 0 0 0 0
65 64 1783859619480261900 REFRESH 26 0 0.74326971551611154 0.64821124361158422 1 10 1 10 0 0 1807 37 416 3988946 56640 227.80621337890625 1.4496 342.9744 6720 4977 0 0 0.0018752441683851566 1.0565908685925454 4096 2048 64 1 16 416 320 0 64 0 5694893256 16202124 1 0 5 1 2 2 6 1228800 245760 491520 491665 1497600 28 25 29 30 304 7 0 1 2 27 0 0 0 0 0
66 65 1783859619884478800 REFRESH 10 0 0.73327611138625293 0.64821124361158422 1 10 1 10 0 0 1130 35 421 3988953 56640 242.71769714355469 1.4439 340.55419999999998 6720 4992 0 0 0.0023995083271502065 2.8416920354575197 4096 2048 64 1 16 421 320 0 64 0 5695630900 16939768 1 0 5 1 2 2 6 1228800 245760 491520 491672 1497600 27 25 27 31 311 4 0 2 5 24 0 0 0 0 0
67 66 1783859620222004800 REFRESH 33 0 0.66270170472030709 0.36712095400340705 1 7 1 7 0 0 3348 41 413 3988957 56640 236.44876098632812 1.8366 335.77120000000002 6720 4773 0 0 0.00023585005086066899 0.32811287371681425 4096 2048 64 1 16 413 320 0 64 0 5696360384 17669252 1 0 5 1 2 2 6 1228800 245760 491520 491676 1497600 26 25 43 29 290 1 0 3 0 37 0 0 0 0 0
68 67 1783859620637723100 REFRESH 25 0 0.78591647273875642 0.4608177172061329 1 8 1 8 0 0 2281 36 413 3988966 56640 241.32199096679688 1.4414 348.91890000000001 6720 4938 0 0 0.0002866720556610524 1.4641012066807393 4096 2048 64 1 16 413 320 0 64 0 5697089868 18398736 1 0 5 1 2 2 6 1228800 245760 491520 491685 1497600 30 25 27 28 303 3 0 2 0 31 0 0 0 0 0
69 68 1783859621039611800 REFRESH 4 0 0.78173376521204874 0.8356047700170357 1 12 1 12 0 0 276 12 418 4050322 118080 231.11091613769531 1.4772000000000001 331.39440000000002 6720 5064 0 0 0.040411785743191188 1.4510951908289993 4096 2048 64 1 16 418 320 128 64 0 5697984708 19293576 1 0 6 1 2 1 6 1474560 245760 491520 245841 1497600 26 25 25 25 317 3 0 0 1 8 0 0 0 0 0
70 69 1783859621465496000 REFRESH 17 0 0.75790184767176583 0.28109028960817717 0 7 0 7 0 0 3863 54 418 3988952 56640 235.68486022949219 1.4887999999999999 360.8039 6720 4830 0 0 1.7384002172801471e-05 0.059782352022523813 4096 2048 64 1 16 418 320 0 64 0 5698719292 20028160 1 0 5 1 2 2 6 1228800 245760 491520 491672 1497600 29 25 32 34 298 7 0 3 7 37 0 0 0 0 0
71 70 1783859621858677000 REFRESH 28 0 0.78188083525609686 0.8279386712095399 2 11 2 11 0 0 630 15 408 4050327 118080 221.77792358398438 1.4514 320.75979999999998 6720 4850 0 0 0.00022189812580462688 0.92047472736303015 4096 2048 64 1 16 408 320 128 64 0 5699603932 20912800 1 0 6 1 2 1 6 1474560 245760 491520 245839 1497600 31 28 25 26 298 4 0 0 0 11 0 0 0 0 0
72 71 1783859622232847500 REFRESH 43 0 0.78195415116745248 0.8279386712095399 2 11 2 11 0 0 769 15 418 4050323 118080 221.29971313476562 1.4518 310.83999999999997 6720 5160 0 0 0.009842172204325185 1.2471290918008606 4096 2048 64 1 16 418 320 128 64 0 5700498772 21807640 1 0 6 1 2 1 6 1474560 245760 491520 245840 1497600 26 25 25 25 317 2 1 0 1 11 0 0 0 0 0
73 72 1783859622596741100 REFRESH 15 0 0.77930004902576655 0.91396933560476989 3 11 3 11 0 0 320 9 412 4050325 118080 221.88914489746094 1.4494 308.82909999999998 6720 5086 0 0 0.13215737202774189 0.95319511763653475 4096 2048 64 1 16 412 320 128 64 0 5701387492 22696360 1 0 6 1 2 1 6 1474560 245760 491520 245842 1497600 31 25 27 25 304 0 0 0 0 9 0 0 0 0 0
74 73 1783859623005383900 REFRESH 39 0 0.77919135654204763 0.55451448040885853 1 9 1 9 0 0 1569 11 425 3988947 56640 219.9234619140625 1.4316 340.28789999999998 6720 5019 0 0 0.00014839428778928599 1.5497505427452305 4096 2048 64 1 16 425 320 0 64 0 5702129216 23438084 1 0 5 1 2 2 6 1228800 245760 491520 491667 1497600 26 25 34 38 302 1 0 4 0 6 0 0 0 0 0
75 74 1783859623409657500 REFRESH 54 0 0.78640335524342331 0.4608177172061329 1 8 1 8 0 0 1186 19 421 3988954 56640 219.86714172363281 1.4299999999999999 342.19049999999999 6720 4985 0 0 0.00048566486093188938 1.0664299709342928 4096 2048 64 1 16 421 320 0 64 0 5702866860 24175728 1 0 5 1 2 2 6 1228800 245760 491520 491671 1497600 31 25 37 38 290 4 0 2 2 11 0 0 0 0 0
76 75 1783859623778931000 REFRESH 24 0 0.77724596710966298 1 4 11 4 11 0 0 491 17 408 4050343 118080 221.18070983886719 1.4497 312.42320000000001 6720 5039 0 0 0.027869521123281102 1.4468046609733554 4096 2048 64 1 16 408 320 128 64 0 5703751500 25060368 1 0 6 1 2 1 6 1474560 245760 491520 245862 1497600 28 27 25 25 303 2 0 0 0 15 0 0 0 0 0
77 76 1783859624164542500 REFRESH 37 0 0.7823185619309535 0.8356047700170357 1 12 1 12 0 0 978 31 414 4050306 118080 219.88070678710938 1.4502999999999999 316.38639999999998 6720 5047 0 0 0.0033651663875057473 0.47165320917887499 4096 2048 64 1 16 414 320 128 64 0 5704642260 25951128 1 0 6 1 2 1 6 1474560 245760 491520 245825 1497600 30 25 25 26 308 2 0 0 1 28 0 0 0 0 0
78 77 1783859624530049600 REFRESH 22 0 0.77966374145297768 0.91396933560476989 3 11 3 11 0 0 472 16 417 4050321 118080 221.62022399902344 1.4531000000000001 310.17309999999998 6720 4786 0 0 0.0083533723482868329 0.70040182967037024 4096 2048 64 1 16 417 320 128 64 0 5705536080 26844948 1 0 6 1 2 1 6 1474560 245760 491520 245840 1497600 27 25 26 25 314 1 0 0 0 15 0 0 0 0 0
79 78 1783859624895949200 REFRESH 36 0 0.78246332439902178 0.82027257240204421 3 10 3 10 0 0 1194 27 410 4050299 118080 219.52716064453125 1.4573 308.14299999999997 6720 5044 0 0 0.063069086016965495 0.15492757616277195 4096 2048 64 1 16 410 320 128 64 0 5706422760 27731628 1 0 6 1 2 1 6 1474560 245760 491520 245818 1497600 31 28 25 26 300 1 0 0 0 26 0 0 0 0 0
80 79 1783859625249850500 REFRESH 42 0 0.99252480497044648 0 0 4 0 4 0 0 4096 19 417 3988946 56640 220.16717529296875 1.4328000000000001 352.44819999999999 13440 8148 0 0 0 0.0063610145412278767 4096 2048 64 1 16 417 320 0 64 0 5707156324 28465192 1 0 4 2 2 2 6 983040 491520 491520 491665 1497600 52 29 36 51 249 1 1 4 1 12 0 0 0 0 0
81 80 1783859625622313800 REFRESH 51 0 0.77988024816839929 0.91396933560476989 3 11 3 11 0 0 533 14 410 4050306 118080 219.74937438964844 1.4745999999999999 311.0643 6720 5072 0 0 0.04374756045180065 0.27288744213454319 4096 2048 64 1 16 410 320 128 64 0 5708043004 29351872 1 0 6 1 2 1 6 1474560 245760 491520 245824 1497600 30 25 25 26 304 1 0 0 0 13 0 0 0 0 0
82 81 1783859626009019500 REFRESH 27 0 0.7799521355140947 0.93696763202725719 0 14 0 14 0 0 867 15 416 4050326 118080 220.88397216796875 1.4530000000000001 331.39429999999999 6720 4971 0 0 4.4312838867707149e-06 0.92228926599200534 4096 2048 64 1 16 416 320 128 64 0 5708935804 30244672 1 0 6 1 2 1 6 1474560 245760 491520 245844 1497600 28 25 25 25 313 0 0 0 0 15 0 0 0 0 0
83 82 1783859626383104800 REFRESH 6 0 0.78002388296494174 0.91396933560476989 3 11 3 11 0 0 380 12 422 4050323 118080 219.56608581542969 1.4479 311.22070000000002 6720 5109 0 0 0.078472369408099776 0.14391543825984973 4096 2048 64 1 16 422 320 128 64 0 5709834724 31143592 1 0 6 1 2 1 6 1474560 245760 491520 245840 1497600 28 25 25 27 317 4 0 0 0 8 0 0 0 0 0
84 83 1783859626740903800 REFRESH 47 0 0.78282276377469551 0.8279386712095399 2 11 2 11 0 0 654 17 410 4050337 118080 220.45695495605469 1.4470000000000001 305.03129999999999 6720 5042 0 0 0.018949803200694559 1.2450274644230548 4096 2048 64 1 16 410 320 128 64 0 5710721404 32030272 1 0 6 1 2 1 6 1474560 245760 491520 245854 1497600 28 25 26 26 305 0 0 0 0 17 0 0 0 0 0
85 84 1783859627119551700 REFRESH 18 0 0.7801669602850887 0.9293015332197615 1 13 1 13 0 0 440 12 414 4050317 118080 222.18547058105469 1.4520999999999999 322.16090000000003 6720 4792 0 0 0.0012157253655346659 1.5441952694290573 4096 2048 64 1 16 414 320 128 64 0 5711612164 32921032 1 0 6 1 2 1 6 1474560 245760 491520 245835 1497600 28 27 25 26 308 1 0 0 1 10 0 0 0 0 0
86 85 1783859627558668700 REFRESH 11 0 0.78397236678580662 0.37478705281090291 0 8 0 8 0 0 2395 41 415 3988962 56640 219.85078430175781 1.4326000000000001 351.52809999999999 6720 4836 0 0 0 0.7148495433218599 4096 2048 64 1 16 415 320 0 64 0 5712343688 33652556 1 0 5 1 2 2 6 1228800 245760 491520 491682 1497600 36 25 47 35 272 5 0 2 5 29 0 0 0 0 0
87 86 1783859627999640200 REFRESH 13 0 0.79901386695510679 0.27342419080068137 1 6 1 6 0 0 4096 67 412 3988960 56640 220.10981750488281 1.4332 321.06689999999998 6720 4766 0 0 0.022786735533611113 0.15623055639937777 4096 2048 64 1 16 412 320 0 64 0 5713072152 34381020 1 0 5 1 2 2 6 1228800 245760 491520 491680 1497600 29 25 42 31 285 5 0 6 9 47 0 0 0 0 0
88 87 1783859628322987100 REFRESH 1 0 0.78407813935855719 0.36712095400340705 1 7 1 7 0 0 2989 69 415 3988949 56640 220.31564331054688 1.4311 322.14640000000003 6720 4843 0 0 0.028773653260515411 1.8199943181710654 4096 2048 64 1 16 415 320 0 64 0 5713803676 35112544 1 0 5 1 2 2 6 1228800 245760 491520 491668 1497600 33 25 30 39 288 4 0 6 11 48 0 0 0 0 0
89 88 1783859628662321400 REFRESH 46 0 0.78414228804030173 0.37478705281090291 0 8 0 8 0 0 2671 21 408 3988964 56640 221.34477233886719 1.4296 338.1388 6720 4865 0 0 3.8232733419501159e-05 0.39408488134986086 4096 2048 64 1 16 408 320 0 64 0 5714528060 35836928 1 0 5 1 2 2 6 1228800 245760 491520 491684 1497600 49 25 37 32 265 2 0 0 1 18 0 0 0 0 0
90 89 1783859628971740300 REFRESH 2 0 0.77420631346094337 0.45315161839863699 2 7 2 7 0 0 3457 48 413 3988953 56640 220.18048095703125 1.4335 308.32499999999999 6720 4816 0 0 0.2773399391733698 2.0710771777085544 4096 2048 64 1 16 413 320 0 64 0 5715257544 36566412 1 0 5 1 2 2 6 1228800 245760 491520 491673 1497600 31 25 33 29 295 1 0 4 2 41 0 0 0 0 0
91 90 1783859629341199400 REFRESH 35 0 0.78332016165219098 0.8279386712095399 2 11 2 11 0 0 1086 14 407 4050313 118080 221.0672607421875 1.4490000000000001 307.87959999999998 6720 5061 0 0 0.12120608375158826 1.1047241122088913 4096 2048 64 1 16 407 320 128 64 0 5716141164 37450032 1 0 6 1 2 1 6 1474560 245760 491520 245832 1497600 30 25 25 26 301 1 0 0 0 13 0 0 0 0 0
92 91 1783859629714726200 REFRESH 9 0 0.79933399634866442 0.27342419080068137 1 6 1 6 0 0 3019 64 411 3988955 56640 221.51577758789062 1.4452 310.97489999999999 6720 4827 0 0 0.00029749737042186297 0.32936763850020839 4096 2048 64 1 16 411 320 0 64 0 5716868608 38177476 1 0 5 1 2 2 6 1228800 245760 491520 491674 1497600 35 25 27 32 292 6 0 0 1 57 0 0 0 0 0
93 92 1783859630139617500 REFRESH 58 0 0.78073377764887864 0.92163543441226559 2 12 2 12 0 0 522 17 408 4050330 118080 220.86041259765625 1.4531000000000001 309.02260000000001 6720 5079 0 0 0.0096214935481512883 1.6134051887685537 4096 2048 64 1 16 408 320 128 64 0 5717753248 39062116 1 0 6 1 2 1 6 1474560 245760 491520 245850 1497600 31 27 25 25 300 3 0 0 0 14 0 0 0 0 0
94 93 1783859630496557600 REFRESH 41 0 0.78054887066422407 0.55451448040885853 1 9 1 9 0 0 2154 52 411 3988951 56640 218.935302734375 1.4339 302.41759999999999 6720 5046 0 0 0.00047546691312138533 1.497358551665477 4096 2048 64 1 16 411 320 0 64 0 5718480692 39789560 1 0 5 1 2 2 6 1228800 245760 491520 491668 1497600 29 25 32 32 293 2 0 1 1 48 0 0 0 0 0
95 94 1783859630850240300 REFRESH 55 0 0.7752582390019026 0.64054514480408853 2 9 2 9 0 0 1069 11 408 3988951 56640 222.129150390625 1.4374 299.04730000000001 6720 4993 0 0 0.11267375438910436 0.93501389544354829 4096 2048 64 1 16 408 320 0 64 0 5719205076 40513944 1 0 5 1 2 2 6 1228800 245760 491520 491671 1497600 29 26 27 26 300 0 0 0 0 11 0 0 0 0 0
96 95 1783859631176939800 REFRESH 52 0 0.78458790297808068 0.36712095400340705 1 7 1 7 0 0 2146 35 420 3988960 56640 219.36128234863281 1.4291 325.3537 6720 4729 0 0 7.4202217947583462e-05 1.936591165712374 4096 2048 64 1 16 420 320 0 64 0 5719941700 41250568 1 0 5 1 2 2 6 1228800 245760 491520 491679 1497600 70 25 41 27 257 1 2 1 11 20 0 0 0 0 0
97 96 1783859631540421400 REFRESH 16 0 0.78465107825710423 0.3594548551959113 2 6 2 6 0 0 3185 42 411 3988962 56640 222.10969543457031 1.4329000000000001 307.2706 6720 4808 0 0 0.0062991239157878338 0.25319780240096146 4096 2048 64 1 16 411 320 0 64 0 5720669144 41978012 1 0 5 1 2 2 6 1228800 245760 491520 491682 1497600 30 25 27 28 301 0 0 0 1 41 0 0 0 0 0
98 97 1783859631908510400 REFRESH 0 0 0.78381093123625634 0.8279386712095399 2 11 2 11 0 0 868 17 415 4050310 118080 219.43807983398438 1.4583999999999999 308.38330000000002 6720 5056 0 0 0.00014140214567446167 2.30096177437744 4096 2048 64 1 16 415 320 128 64 0 5721560924 42869792 1 0 6 1 2 1 6 1474560 245760 491520 245828 1497600 27 25 25 25 313 1 0 0 0 16 0 0 0 0 0
99 98 1783859632302351500 REFRESH 48 0 0.79977707025536104 0.26575809199318562 2 5 2 5 0 0 2408 36 417 3988948 56640 220.23680114746094 1.4335 325.46269999999998 6720 4787 0 0 0.0046043101471456684 0.20405439432789962 4096 2048 64 1 16 417 320 0 64 0 5722294488 43603356 1 0 5 1 2 2 6 1228800 245760 491520 491668 1497600 30 25 39 29 294 5 1 3 3 24 0 0 0 0 0
100 99 1783859632647453700 REFRESH 44 0 0.78483988784906478 0.36712095400340705 1 7 1 7 0 0 2195 57 422 3988949 56640 220.44773864746094 1.4389000000000001 343.75369999999998 6720 4792 0 0 0.027664597694635307 0.87919275545735165 4096 2048 64 1 16 422 320 0 64 0 5723033152 44342020 1 0 5 1 2 2 6 1228800 245760 491520 491669 1497600 28 25 53 26 290 12 0 7 9 29 0 0 0 0 0
101 100 1783859633035778300 REFRESH 30 0 0.78815466723825955 0.4608177172061329 1 8 1 8 0 0 3392 74 414 3988969 56640 220.3187255859375 1.4512 328.88479999999998 6720 5003 0 0 0.0010823191780834386 1.5810805031597897 4096 2048 64 1 16 414 320 0 64 0 5723763656 45072524 1 0 5 1 2 2 6 1228800 245760 491520 491688 1497600 29 25 35 31 294 0 0 4 4 66 0 0 0 0 0
102 101 1783859633411258600 REFRESH 32 0 0.78822030306910262 0.4608177172061329 1 8 1 8 0 0 2901 55 411 3988970 56640 220.65766906738281 1.4343999999999999 306.26420000000002 6720 4952 0 0 0.0011665864340913636 1.8037808584357806 4096 2048 64 1 16 411 320 0 64 0 5724491100 45799968 1 0 5 1 2 2 6 1228800 245760 491520 491689 1497600 30 25 26 28 302 1 0 2 1 51 0 0 0 0 0
103 102 1783859633772904100 REFRESH 34 0 0.78415751668689226 0.8356047700170357 1 12 1 12 0 0 699 13 416 4050315 118080 220.07376098632812 1.4509000000000001 306.5829 6720 5088 0 0 0.00024456112032069028 1.7981817145069319 4096 2048 64 1 16 416 320 128 64 0 5725383900 46692768 1 0 6 1 2 1 6 1474560 245760 491520 245833 1497600 28 25 25 26 312 2 0 0 0 11 0 0 0 0 0
104 103 1783859634154736600 REFRESH 50 0 0.77585120548092279 0.64054514480408853 2 9 2 9 0 0 1039 11 424 3988962 56640 219.35206604003906 1.4323999999999999 315.07260000000002 6720 4920 0 0 0.059365983438523645 2.1081194948679065 4096 2048 64 1 16 424 320 0 64 0 5726124604 47433472 1 0 5 1 2 2 6 1228800 245760 491520 491681 1497600 28 25 25 25 321 1 0 0 3 7 0 0 0 0 0
105 104 1783859634524384400 REFRESH 3 0 0.77591647295457078 0.64054514480408853 2 9 2 9 0 0 1098 21 412 3988970 56640 218.71002197265625 1.4339 300.10480000000001 6720 5037 0 0 0.0077247780151947464 0.15611804084716696 4096 2048 64 1 16 412 320 0 64 0 5726853068 48161936 1 0 5 1 2 2 6 1228800 245760 491520 491690 1497600 28 25 33 27 299 0 0 0 2 19 0 0 0 0 0
106 105 1783859634887376300 REFRESH 38 0 0.78133876138831027 0.55451448040885853 1 9 1 9 0 0 2049 40 414 3988959 56640 220.02482604980469 1.4340999999999999 299.3109 6720 4927 0 0 0.13433027919204674 2.3057515358806704 4096 2048 64 1 16 414 320 0 64 0 5727583572 48892440 1 0 5 1 2 2 6 1228800 245760 491520 491679 1497600 26 26 27 26 309 0 0 0 0 40 0 0 0 0 0
107 106 1783859635246974500 REFRESH 14 0 0.77604664265108769 0.65587734241908002 0 11 0 11 0 0 1621 21 416 3988949 56640 223.29344177246094 1.4326000000000001 302.70850000000002 6720 4938 0 0 1.6719593580913314e-05 0.72140234505359491 4096 2048 64 1 16 416 320 0 64 0 5728316116 49624984 1 0 5 1 2 2 6 1228800 245760 491520 491669 1497600 27 25 26 26 312 0 0 0 0 21 0 0 0 0 0
108 107 1783859635620914900 REFRESH 5 0 0.78450086634377414 0.8279386712095399 2 11 2 11 0 0 849 15 414 4050323 118080 218.45811462402344 1.4545999999999999 309.10399999999998 6720 5114 0 0 0.0052130349881175271 0.43131802450155321 4096 2048 64 1 16 414 320 128 64 0 5729206876 50515744 1 0 6 1 2 1 6 1474560 245760 491520 245838 1497600 25 25 26 25 313 1 0 0 1 13 0 0 0 0 0
109 108 1783859636015907000 REFRESH 40 0 0.77617632827064764 0.64821124361158422 1 10 1 10 0 0 1674 26 417 3988945 56640 219.23942565917969 1.4333 329.85160000000002 6720 4965 0 0 0.08315556845306328 0.52708806647616635 4096 2048 64 1 16 417 320 0 64 0 5729940440 51249308 1 0 5 1 2 2 6 1228800 245760 491520 491665 1497600 25 25 26 26 315 3 1 0 5 17 0 0 0 0 0
110 109 1783859636379920300 REFRESH 57 0 0.80046162451298009 0.27342419080068137 1 6 1 6 0 0 4096 25 405 3988951 56640 220.83174133300781 1.4406000000000001 307.89429999999999 6720 4809 0 0 0.00072752635965749523 0.50646269260782129 4096 2048 64 1 16 405 320 0 64 0 5730661764 51970632 1 0 5 1 2 2 6 1228800 245760 491520 491669 1497600 33 25 35 36 276 1 0 0 0 24 0 0 0 0 0
111 110 1783859636741876100 REFRESH 49 0 0.77552316351529871 0.4454855195911413 3 6 3 6 0 0 1482 33 408 3988958 56640 219.66131591796875 1.4341999999999999 295.57089999999999 6720 4754 0 0 0.058061103203911842 2.3022417889218207 4096 2048 64 1 16 408 320 0 64 0 5731386148 52695016 1 0 5 1 2 2 6 1228800 245760 491520 491678 1497600 31 26 28 31 292 1 0 0 0 32 0 0 0 0 0
112 111 1783859637129664800 REFRESH 19 0 0.78477325534652587 0.8279386712095399 2 11 2 11 0 0 848 19 413 4050334 118080 219.9908447265625 1.4544999999999999 314.19799999999998 6720 5021 0 0 0.024134501803917539 0.35880585544835542 4096 2048 64 1 16 413 320 128 64 0 5732275888 53584756 1 0 6 1 2 1 6 1474560 245760 491520 245853 1497600 26 26 26 26 309 2 0 0 0 17 0 0 0 0 0
113 112 1783859637508415400 REFRESH 12 0 0.77643426114692071 0.63287904599659284 3 8 3 8 0 0 1445 37 426 3988948 56640 220.68025207519531 1.4289000000000001 298.89760000000001 6720 4994 0 0 0.0015342879221033493 0.52805712610492539 4096 2048 64 1 16 426 320 0 64 0 5733018632 54327500 1 0 5 1 2 2 6 1228800 245760 491520 491665 1497600 38 25 26 33 304 0 0 0 1 36 0 0 0 0 0
114 113 1783859637882258700 REFRESH 31 0 0.78570709971666886 0.3594548551959113 2 6 2 6 0 0 2622 58 416 3988951 56640 219.43193054199219 1.444 316.10590000000002 6720 4788 0 0 0.038014368460935123 0.97909598530596631 4096 2048 64 1 16 416 320 0 64 0 5733751176 55060044 1 0 5 1 2 2 6 1228800 245760 491520 491670 1497600 32 25 39 39 281 3 0 3 7 45 0 0 0 0 0
115 114 1783859638368909000 REFRESH 29 0 0.78497622992881944 0.82027257240204421 3 10 3 10 0 0 1102 9 415 4050328 118080 218.73123168945312 1.4531000000000001 418.49090000000001 6720 5076 0 0 0.26278519260479372 0.96843308429688912 4096 2048 64 1 16 415 320 128 64 0 5734642956 55951824 1 0 6 1 2 1 6 1474560 245760 491520 245847 1497600 26 25 25 25 314 0 1 0 0 8 0 0 0 0 0
116 115 1783859638733927600 REFRESH 7 0 0.78504363961537527 0.8356047700170357 1 12 1 12 0 0 857 12 410 4050329 118080 220.37094116210938 1.4557 307.79969999999997 6720 5053 0 0 0.00025497404471684274 0.86876728204740172 4096 2048 64 1 16 410 320 128 64 0 5735529636 56838504 1 0 6 1 2 1 6 1474560 245760 491520 245848 1497600 28 28 25 25 304 0 0 0 0 12 0 0 0 0 0
117 116 1783859639206400700 REFRESH 56 0 0.81453889345775787 0.17206132879045993 2 4 2 4 0 0 4096 56 416 3988958 56640 241.03321838378906 1.4329000000000001 357.12630000000001 13440 8755 0 0 0.0054355512702489233 0.48957545601177821 4096 2048 64 1 16 416 320 0 64 0 5736262180 57571048 1 0 4 2 2 2 6 983040 491520 491520 491676 1497600 36 26 36 49 269 6 1 7 6 36 0 0 0 0 0
118 117 1783859639534917100 REFRESH 45 0 0.77595077448072869 0.45315161839863699 2 7 2 7 0 0 2104 29 413 3988987 56640 225.90156555175781 1.4359 327.03809999999999 6720 4710 0 0 0.2309103244036371 1.4859222174523592 4096 2048 64 1 16 413 320 0 64 0 5736991664 58300532 1 0 5 1 2 2 6 1228800 245760 491520 491707 1497600 54 25 25 28 281 3 0 1 3 22 0 0 0 0 0
119 118 1783859639947952000 REFRESH 53 0 0.78602760910663005 0.37478705281090291 0 8 0 8 0 0 4096 54 403 3988953 56640 240.62771606445312 1.4525999999999999 346.89550000000003 6720 4753 0 0 0 0.2106332408498392 4096 2048 64 1 16 403 320 0 64 0 5737710948 59019816 1 0 5 1 2 2 6 1228800 245760 491520 491671 1497600 29 25 29 29 291 0 0 2 3 49 0 0 0 0 0
120 119 1783859640376387000 REFRESH 20 0 0.80107194466101705 0.26575809199318562 2 5 2 5 0 0 2051 4 431 3988958 56640 226.47212219238281 1.4388000000000001 373.1404 6720 4797 0 0 0.001771835568079596 0.77081764157800148 4096 2048 64 1 16 431 320 0 64 0 5738458792 59767660 1 0 5 1 2 2 6 1228800 245760 491520 491676 1497600 32 25 36 50 288 0 0 0 0 4 0 0 0 0 0
121 120 1783859640742830100 REFRESH 23 0 0.77280087044746548 0.74190800681430991 1 11 1 11 0 0 3399 11 407 3988974 56640 223.9129638671875 1.4343999999999999 304.46140000000003 6720 4962 0 0 0.019300881082243489 0.74477203843732076 4096 2048 64 1 16 407 320 0 64 0 5739182156 60491024 1 0 5 1 2 2 6 1228800 245760 491520 491692 1497600 29 25 31 26 296 0 0 0 0 11 0 0 0 0 0
122 121 1783859641126523800 REFRESH 21 0 0.78236486489825363 0.56218057921635434 0 10 0 10 0 0 2465 43 415 3988951 56640 221.14201354980469 1.4588000000000001 324.53730000000002 6720 4917 0 0 2.4584779324138999e-05 1.0722633759184834 4096 2048 64 1 16 415 320 0 64 0 5739913680 61222548 1 0 5 1 2 2 6 1228800 245760 491520 491671 1497600 30 25 27 32 301 2 0 6 5 30 0 0 0 0 0
123 122 1783859643371313600 DEPTH 42 1 0.99626235351166648 0 0 4 0 4 0 0 4096 19 2549 23742608 147840 1307.0255279541016 8.6059999999999999 2182.6197000000002 80640 40450 1 0 0 0.0063610145412278767 4096 2048 384 12 96 2549 1920 0 384 1 5744372568 65681436 1 0 4 2 2 2 6 5898240 2949120 2949120 2950913 8985600 190 150 155 213 1841 0 0 1 0 18 0 0 0 0 0
124 123 1783859646650584900 DEPTH 8 1 0.78994383061996032 0.26575809199318562 2 5 2 5 0 0 2365 44 2532 23742618 147840 1283.1841278076172 8.7830000000000013 3083.9605999999999 53760 32672 1 0 0.030103035119069095 0.91796646697047368 4096 2048 384 12 96 2532 1920 0 384 1 5748814196 3015628 1 0 4 2 2 2 6 6881280 1966080 2949120 2950923 8985600 161 152 150 156 1913 0 0 0 0 44 0 0 0 0 0
125 124 1783859648784622700 DEPTH 9 1 0.79000125987690195 0.27342419080068137 1 6 1 6 0 0 3036 56 2535 23742684 147840 1299.1714477539062 9.0946999999999996 2049.2062000000001 53760 32662 1 0 0.00029749737042186297 0.32936763850020839 4096 2048 384 12 96 2535 1920 0 384 1 5753258804 7460236 1 0 4 2 2 2 6 6881280 1966080 2949120 2950989 8985600 165 150 155 156 1909 14 0 0 2 40 0 0 0 0 0
126 125 1783859650890356800 DEPTH 13 1 0.79005858550611718 0.27342419080068137 1 6 1 6 0 0 4096 73 2562 23742708 147840 1267.5420227050781 8.787700000000001 2047.8126999999999 73920 40365 1 0 0.022786735533611113 0.15623055639937777 4096 2048 384 12 96 2562 1920 0 384 1 5757730952 11932384 1 0 4 2 2 2 6 6144000 2703360 2949120 2951012 8985600 161 154 151 150 1946 2 3 8 4 56 0 0 0 0 0
127 126 1783859653101618300 DEPTH 17 1 0.79011580786937752 0.28109028960817717 0 7 0 7 0 0 3900 78 2557 23742635 147840 1306.672119140625 8.7594999999999992 2146.8897000000002 73920 40508 1 1 1.7384002172801471e-05 0.059782352022523813 4096 2048 384 12 96 2557 1920 0 384 1 5762198000 16399432 1 0 4 2 2 2 6 6144000 2703360 2949120 2950939 8985600 162 150 156 156 1933 13 12 0 4 48 0 0 0 0 0
128 127 1783859655236074700 DEPTH 48 1 0.79017292732658606 0.26575809199318562 2 5 2 5 0 0 2416 45 2584 23742688 147840 1287.1475067138672 8.8102 2132.3739 73920 40740 1 0 0.0046043101471456684 0.20405439432789962 4096 2048 384 12 96 2584 1920 0 384 1 5766692588 20894020 1 0 4 2 2 2 6 6144000 2703360 2949120 2950991 8985600 153 157 150 150 1974 3 5 1 4 32 0 0 0 0 0
129 128 1783859657405286100 DEPTH 54 1 0.7766118021794014 0.4608177172061329 1 8 1 8 0 0 1190 35 2553 23742649 147840 1311.9477844238281 8.593 2107.5001000000002 40320 22589 1 0 0.00048566486093188938 1.0664299709342928 4096 2048 384 12 96 2553 1920 0 384 1 5771155556 25356988 1 0 5 1 2 2 6 7372800 1474560 2949120 2950955 8985600 154 150 173 193 1883 1 0 3 3 28 0 0 0 0 0
130 129 1783859659746415100 DEPTH 25 1 0.77667124766297002 0.4608177172061329 1 8 1 8 0 0 2300 64 2545 23742163 147840 1398.0724487304688 8.8847000000000005 2204.8355999999999 73920 45124 1 0 0.0002866720556610524 1.4641012066807393 4096 2048 384 12 96 2545 1920 0 384 1 5775610364 29811796 1 0 4 2 2 2 6 6881280 2703360 2949120 2213186 8985600 156 150 156 160 1923 11 2 10 6 35 0 0 0 0 0
131 130 1783859661958786700 DEPTH 42 1 0.81883295637122744 0 0 4 0 4 0 0 4096 17 2563 23731735 136320 1281.3885498046875 8.6743000000000006 2143.8806 100800 45761 1 0 0 0.0063610145412278767 4096 2048 383 12 96 2563 1920 0 383 1 5780081916 34283348 1 0 4 3 2 2 5 5898240 3686400 2949120 2950944 8236800 195 150 158 476 1584 0 0 0 0 17 0 0 0 0 0
132 131 1783859664149250800 DEPTH 32 1 0.77678981990116314 0.4608177172061329 1 8 1 8 0 0 2922 75 2554 23742664 147840 1277.9263610839844 8.6893999999999991 2057.4546 40320 22890 1 0 0.0011665864340913636 1.8037808584357806 4096 2048 384 12 96 2554 1920 0 384 1 5784545904 38747336 1 0 5 1 2 2 6 7372800 1474560 2949120 2950968 8985600 150 150 154 155 1945 14 0 14 6 41 0 0 0 0 0
133 132 1783859666361263800 DEPTH 30 1 0.77684894739036359 0.4608177172061329 1 8 1 8 0 0 3415 90 2534 23742680 147840 1318.7254486083984 8.6788000000000007 2140.6943000000001 40320 22872 1 0 0.0010823191780834386 1.5810805031597897 4096 2048 384 12 96 2534 1920 0 384 1 5788989492 43190924 1 0 5 1 2 2 6 7372800 1474560 2949120 2950985 8985600 159 150 163 169 1893 8 0 12 9 61 0 0 0 0 0
134 133 1783859668614663500 DEPTH 11 1 0.77553410974215553 0.37478705281090291 0 8 0 8 1 0 2414 48 2544 23742716 147840 1325.3937377929688 8.6201999999999988 2178.2067000000002 73920 40504 1 0 0 0.71061916362628685 4096 2048 384 12 96 2544 1920 0 384 1 5793443280 47644712 1 0 4 2 2 2 6 6144000 2703360 2949120 2951020 8985600 162 150 174 164 1894 1 5 1 1 40 0 0 0 0 2
135 134 1783859670636622700 DEPTH 16 1 0.77556991200284764 0.3594548551959113 2 6 2 6 0 0 3193 54 2525 23742737 147840 1344.427001953125 8.7600999999999996 1929.8870999999999 73920 41395 1 0 0.0062991239157878338 0.25319780240096146 4096 2048 384 12 96 2525 1920 0 384 1 5797877688 52079120 1 0 4 2 2 2 6 6144000 2703360 2949120 2951044 8985600 163 170 156 163 1873 0 1 0 3 50 0 0 0 0 0
136 135 1783859672794477100 DEPTH 33 1 0.775626220948058 0.36712095400340705 1 7 1 7 0 0 3353 34 2537 23742606 147840 1303.7721710205078 8.649799999999999 2086.0673000000002 73920 41126 1 0 0.00023585005086066899 0.32811287371681425 4096 2048 384 12 96 2537 1920 0 384 1 5802324336 56525768 1 0 4 2 2 2 6 6144000 2703360 2949120 2950911 8985600 150 156 173 159 1899 3 0 1 1 29 0 0 0 0 0
137 136 1783859674963265600 DEPTH 1 1 0.77568243014431948 0.36712095400340705 1 7 1 7 0 0 3009 71 2579 23742713 147840 1295.9487915039062 8.642199999999999 2095.2692000000002 73920 40596 1 0 0.028773653260515411 1.8199943181710654 4096 2048 384 12 96 2579 1920 0 384 1 5806813824 61015256 1 0 4 2 2 2 6 6144000 2703360 2949120 2951018 8985600 159 152 154 158 1956 1 7 15 4 44 0 0 0 0 0
138 137 1783859677219137000 DEPTH 44 1 0.77573853993353192 0.36712095400340705 1 7 1 7 0 0 2213 72 2606 23742636 147840 1318.1113739013672 8.6388999999999996 2132.2280999999998 73920 40588 1 0 0.027664597694635307 0.87919275545735165 4096 2048 384 12 96 2606 1920 0 384 1 5811330852 65532284 1 0 4 2 2 2 6 6144000 2703360 2949120 2950938 8985600 155 150 186 151 1964 17 7 2 6 40 0 0 0 0 0
139 138 1783859680535078800 DEPTH 42 1 0.81209093536977484 0 0 4 0 4 0 0 4096 21 2594 23720772 125760 1281.1376800537109 8.6188000000000002 3314.1363999999999 120960 42511 1 0 0 0.0063610145412278767 4096 2048 384 12 96 2594 1920 0 384 1 5815835720 2928240 1 0 4 3 2 2 5 5898240 4423680 2949120 2951001 7488000 171 150 152 1288 833 0 0 0 1 20 0 0 0 0 0
140 139 1783859682700734600 DEPTH 57 1 0.79085046264975012 0.27342419080068137 1 6 1 6 0 0 4096 61 2537 23742705 147840 1277.4343719482422 8.6326000000000001 2090.6448 53760 32747 1 0 0.00072752635965749523 0.50646269260782129 4096 2048 384 12 96 2537 1920 0 384 1 5820282368 7374888 1 0 4 2 2 2 6 6881280 1966080 2949120 2951006 8985600 163 150 174 163 1887 3 2 1 2 53 0 0 0 0 0
141 140 1783859684911919500 DEPTH 56 1 0.79598143336584093 0.17206132879045993 2 4 2 4 0 0 4096 71 2547 23742589 147840 1299.5641937255859 8.7393999999999998 2145.3820000000001 80640 43233 1 0 0.0054355512702489233 0.48957545601177821 4096 2048 384 12 96 2547 1920 0 384 1 5824739216 11831736 1 0 4 2 2 2 6 5898240 2949120 2949120 2950894 8985600 181 150 163 239 1814 9 0 13 1 48 0 0 0 0 0
142 141 1783859687075372600 DEPTH 31 1 0.77596199179743763 0.3594548551959113 2 6 2 6 0 0 2629 44 2566 23742657 147840 1330.4719390869141 8.8184000000000005 2089.4728 73920 40708 1 1 0.038014368460935123 0.97909598530596631 4096 2048 384 12 96 2566 1920 0 384 1 5829215444 16307964 1 0 4 2 2 2 6 6144000 2703360 2949120 2950961 8985600 160 152 192 180 1882 2 0 6 3 32 0 0 0 0 0
143 142 1783859689225004100 DEPTH 52 1 0.77601760961961364 0.36712095400340705 1 7 1 7 0 0 2167 58 2572 23742684 147840 1321.1094970703125 8.7820999999999998 2091.7849999999999 73920 40615 1 0 7.4202217947583462e-05 1.936591165712374 4096 2048 384 12 96 2572 1920 0 384 1 5833697792 20790312 1 0 4 2 2 2 6 6144000 2703360 2949120 2950987 8985600 257 150 197 152 1816 0 2 6 8 42 0 0 0 0 0
144 143 1783859691547740400 DEPTH 46 1 0.7760731300501269 0.37478705281090291 0 8 0 8 1 0 2681 53 2563 23742702 147840 1346.2722473144531 8.8872 2250.5043999999998 73920 40928 1 0 3.9081084752213203e-05 0.39562579086132238 4096 2048 384 12 96 2563 1920 0 384 1 5838170960 25263480 1 0 4 2 2 2 6 6144000 2703360 2949120 2951005 8985600 172 150 162 169 1910 6 3 4 1 39 0 0 0 0 1
145 144 1783859693412279200 DEPTH 36 1 0.77093168419287372 0.82027257240204421 3 10 3 10 0 0 1201 44 2575 23742609 147840 1273.8597869873047 8.7074999999999996 1803.4698000000001 40320 21351 1 0 0.063069086016965495 0.15492757616277195 4096 2048 384 12 96 2575 1920 0 384 1 5842656368 29748888 1 0 5 1 2 2 6 7372800 1474560 2949120 2950913 8985600 167 156 156 150 1946 5 0 1 1 37 0 0 0 0 0
146 145 1783859695299487300 DEPTH 5 1 0.77099229148550485 0.8279386712095399 2 11 2 11 1 0 860 42 2563 23742725 147840 1264.9270477294922 8.6638000000000002 1815.4594999999999 40320 20608 1 0 0.005213560619153213 0.426630687374281 4096 2048 384 12 96 2563 1920 0 384 1 5847129536 34222056 1 0 5 1 2 2 6 7372800 1474560 2949120 2951031 8985600 156 151 150 154 1952 5 2 4 4 27 0 0 0 0 1
147 146 1783859697513643600 DEPTH 42 1 0.80590392914861475 0 0 4 0 4 0 0 4096 17 2612 23705401 110400 1268.6704711914062 8.6869000000000014 2212.2429000000002 120960 31919 1 0 0 0.0063610145412278767 4096 2048 384 12 96 2612 1920 0 384 1 5851652684 38745204 1 0 4 3 3 2 4 5898240 4423680 3932160 2950920 6489600 168 150 180 1545 569 0 1 0 0 16 0 0 0 0 0
148 147 1783859699702961700 DEPTH 20 1 0.7852942444308374 0.26575809199318562 2 5 2 5 0 0 2060 24 2594 23742643 147840 1292.5274963378906 8.597900000000001 2115.2797999999998 73920 40542 1 0 0.001771835568079596 0.77081764157800148 4096 2048 384 12 96 2594 1920 0 384 1 5856157472 43249992 1 0 4 2 2 2 6 6144000 2703360 2949120 2950947 8985600 156 155 179 228 1876 0 1 0 1 22 0 0 0 0 0
149 148 1783859701866897600 DEPTH 53 1 0.77636385765727944 0.37478705281090291 0 8 0 8 0 0 4096 69 2523 23742700 147840 1273.2274169921875 8.6135000000000002 2086.3591000000001 53760 32248 1 0 0 0.2106332408498392 4096 2048 384 12 96 2523 1920 0 384 1 5860589840 47682360 1 0 4 2 2 2 6 6881280 1966080 2949120 2951003 8985600 162 150 156 157 1898 4 1 8 6 50 0 0 0 0 0
150 149 1783859703766731200 DEPTH 19 1 0.77123366812662897 0.8279386712095399 2 11 2 11 0 0 851 40 2560 23742623 147840 1300.2291259765625 8.6801999999999992 1842.7973999999999 40320 21011 1 0 0.024134501803917539 0.35880585544835542 4096 2048 384 12 96 2560 1920 0 384 1 5865059948 52152468 1 0 5 1 2 2 6 7372800 1474560 2949120 2950927 8985600 150 150 150 159 1951 2 1 3 5 29 0 0 0 0 0
151 150 1783859705692690400 DEPTH 35 1 0.77129375092177155 0.8279386712095399 2 11 2 11 0 0 1094 80 2487 23742640 147840 1299.1376495361328 8.7021999999999995 1861.4576999999999 40320 21214 1 0 0.12120608375158826 1.1047241122088913 4096 2048 384 12 96 2487 1920 0 384 1 5869455596 56548116 1 0 5 1 2 2 6 7372800 1474560 2949120 2950942 8985600 173 154 150 155 1855 0 0 0 1 79 0 0 0 0 0
152 151 1783859707605000300 DEPTH 43 1 0.771353729871598 0.8279386712095399 2 11 2 11 0 0 773 50 2565 23742617 147840 1278.831298828125 8.6131999999999991 1785.3088 40320 20958 1 0 0.009842172204325185 1.2471290918008606 4096 2048 384 12 96 2565 1920 0 384 1 5873930804 61023324 1 0 5 1 2 2 6 7372800 1474560 2949120 2950919 8985600 154 150 150 160 1951 2 5 0 2 41 0 0 0 0 0
153 152 1783859709458337000 DEPTH 47 1 0.7714136053234375 0.8279386712095399 2 11 2 11 0 0 655 27 2608 23742684 147840 1272.7040710449219 8.6031000000000013 1788.7475999999999 40320 21337 1 0 0.018949803200694559 1.2450274644230548 4096 2048 384 12 96 2608 1920 0 384 1 5878449872 65542392 1 0 5 1 2 2 6 7372800 1474560 2949120 2950989 8985600 150 150 158 157 1993 0 0 0 0 27 0 0 0 0 0
154 153 1783859712412939100 DEPTH 0 1 0.77147337762289991 0.8279386712095399 2 11 2 11 0 0 879 49 2566 23742634 147840 1271.7532501220703 8.6597000000000008 2897.7039 40320 21606 1 0 0.00014140214567446167 2.30096177437744 4096 2048 384 12 96 2566 1920 0 384 1 5882926180 2909880 1 0 5 1 2 2 6 7372800 1474560 2949120 2950938 8985600 155 150 150 157 1954 9 1 6 2 31 0 0 0 0 0
155 154 1783859712779293900 REFRESH 14 0 0.76562374590852667 0.65587734241908002 0 11 0 11 0 0 1624 27 413 3988945 56640 222.35340881347656 1.4434 303.4452 6720 4905 0 0 1.6719593580913314e-05 0.72140234505359491 4096 2048 64 1 16 413 320 0 64 0 5883655664 3639364 1 0 5 1 2 2 6 1228800 245760 491520 491664 1497600 27 25 27 26 308 0 0 0 0 27 0 0 0 0 0
156 155 1783859713145151500 REFRESH 38 0 0.77103768369529047 0.55451448040885853 1 9 1 9 0 0 2058 21 410 3988970 56640 219.75859069824219 1.4379 309.66359999999997 6720 4922 0 0 0.13433027919204674 2.3057515358806704 4096 2048 64 1 16 410 320 0 64 0 5884382088 4365788 1 0 5 1 2 2 6 1228800 245760 491520 491689 1497600 26 26 28 27 303 0 0 1 0 20 0 0 0 0 0
157 156 1783859713542129800 REFRESH 54 0 0.76678618093023254 0.4608177172061329 1 8 1 8 0 0 1190 11 419 3988962 56640 219.31724548339844 1.4346000000000001 334.49959999999999 6720 4701 0 0 0.00048566486093188938 1.0664299709342928 4096 2048 64 1 16 419 320 0 64 0 5885117692 5101392 1 0 5 1 2 2 6 1228800 245760 491520 491682 1497600 40 25 43 45 266 0 0 0 0 11 0 0 0 0 0
158 157 1783859713939422400 REFRESH 39 0 0.77115098175836183 0.55451448040885853 1 9 1 9 0 0 1570 11 423 3988946 56640 219.48518371582031 1.4313 338.86680000000001 6720 4944 0 0 0.00014839428778928599 1.5497505427452305 4096 2048 64 1 16 423 320 0 64 0 5885857376 5841076 1 0 5 1 2 2 6 1228800 245760 491520 491665 1497600 25 25 34 37 302 0 0 0 0 11 0 0 0 0 0
159 158 1783859714308491500 REFRESH 57 0 0.72193085924548228 0.27342419080068137 1 6 1 6 0 0 4096 39 416 3988971 56640 221.739013671875 1.4366000000000001 309.58589999999998 13440 9349 0 0 0.00072752635965749523 0.50646269260782129 4096 2048 64 1 16 416 320 0 64 0 5886589920 6573620 1 0 4 2 2 2 6 983040 491520 491520 491689 1497600 26 25 43 46 276 0 0 0 1 38 0 0 0 0 0
160 159 1783859714693719500 REFRESH 37 0 0.77182986436011503 0.8356047700170357 1 12 1 12 0 0 986 28 405 3988969 56640 221.08364868164062 1.4561999999999999 315.94569999999999 6720 5154 0 0 0.0033651663875057473 0.47165320917887499 4096 2048 64 1 16 405 320 0 64 0 5887311244 7294944 1 0 5 1 2 2 6 1228800 245760 491520 491689 1497600 25 29 25 26 300 0 0 0 0 28 0 0 0 0 0
161 160 1783859715054524800 REFRESH 3 0 0.76596306132780523 0.64054514480408853 2 9 2 9 0 0 1109 33 408 3988947 56640 218.23283386230469 1.4871000000000001 300.86250000000001 6720 4952 0 0 0.0077247780151947464 0.15611804084716696 4096 2048 64 1 16 408 320 0 64 0 5888035628 8019328 1 0 5 1 2 2 6 1228800 245760 491520 491667 1497600 34 25 41 31 277 0 0 0 1 32 0 0 0 0 0
162 161 1783859715404326800 REFRESH 28 0 0.77194788344772314 0.8279386712095399 2 11 2 11 0 0 630 13 407 3988960 56640 222.33113098144531 1.4390000000000001 294.87729999999999 6720 5066 0 0 0.00022189812580462688 0.92047472736303015 4096 2048 64 1 16 407 320 0 64 0 5888758992 8742692 1 0 5 1 2 2 6 1228800 245760 491520 491678 1497600 26 27 25 26 303 0 0 0 0 13 0 0 0 0 0
163 162 1783859715781691400 REFRESH 21 0 0.77143253973811843 0.56218057921635434 0 10 0 10 0 0 2478 34 415 3988957 56640 219.77395629882812 1.4461999999999999 314.33120000000002 6720 4916 0 0 2.4584779324138999e-05 1.0722633759184834 4096 2048 64 1 16 415 320 0 64 0 5889490516 9474216 1 0 5 1 2 2 6 1228800 245760 491520 491677 1497600 30 25 30 35 295 1 0 0 1 32 0 0 0 0 0
164 163 1783859716081910700 REFRESH 35 0 0.63863142178394561 0.8279386712095399 2 11 2 11 0 0 1099 14 408 3988968 56640 220.31564331054688 1.4363999999999999 298.63339999999999 6720 4964 0 0 0.12120608375158826 1.1047241122088913 4096 2048 64 1 16 408 320 0 64 0 5890214900 10198600 1 0 5 1 2 2 6 1228800 245760 491520 491688 1497600 26 25 25 31 301 0 0 0 0 14 0 0 0 0 0
165 164 1783859716378497900 REFRESH 36 0 0.70868735185459375 0.82027257240204421 3 10 3 10 0 0 1217 45 406 3988942 56640 220.48870849609375 1.4419999999999999 294.64150000000001 6720 4987 0 0 0.063069086016965495 0.15492757616277195 4096 2048 64 1 16 406 320 0 64 0 5890937244 10920944 1 0 5 1 2 2 6 1228800 245760 491520 491661 1497600 25 25 25 27 304 0 0 0 0 45 0 0 0 0 0
166 165 1783859716777503400 REFRESH 13 0 0.78229222383358799 0.27342419080068137 1 6 1 6 0 0 4096 54 416 3988954 56640 220.08320617675781 1.4386000000000001 320.86770000000001 13440 9267 0 0 0.022786735533611113 0.15623055639937777 4096 2048 64 1 16 416 320 0 64 0 5891669788 11653488 1 0 4 2 2 2 6 983040 491520 491520 491673 1497600 26 25 58 32 275 0 0 10 4 40 0 0 0 0 0
167 166 1783859717164198000 REFRESH 31 0 0.76734349840559513 0.3594548551959113 2 6 2 6 0 0 2649 44 418 3988968 56640 219.89077758789062 1.4638 314.32819999999998 13440 9244 0 0 0.038014368460935123 0.97909598530596631 4096 2048 64 1 16 418 320 0 64 0 5892404372 12388072 1 0 4 2 2 2 6 983040 491520 491520 491688 1497600 27 25 43 42 281 0 0 2 0 42 0 0 0 0 0
168 167 1783859717584657400 REFRESH 44 0 0.76739468659772725 0.36712095400340705 1 7 1 7 0 0 2228 39 429 3988935 56640 221.54751586914062 1.4402999999999999 354.71080000000001 13440 9239 0 0 0.027664597694635307 0.87919275545735165 4096 2048 64 1 16 429 320 0 64 0 5893150176 13133876 1 0 4 2 2 2 6 983040 491520 491520 491655 1497600 26 25 62 27 289 0 0 2 2 35 0 0 0 0 0
169 168 1783859717994937300 REFRESH 23 0 0.76226422510149461 0.74190800681430991 1 11 1 11 0 0 3401 15 408 3988946 56640 239.35897827148438 1.446 332.8974 6720 4913 0 0 0.019300881082243489 0.74477203843732076 4096 2048 64 1 16 408 320 0 64 0 5893874560 13858260 1 0 5 1 2 2 6 1228800 245760 491520 491666 1497600 29 25 29 28 297 0 0 0 0 15 0 0 0 0 0
170 169 1783859718383532100 REFRESH 45 0 0.76748352502188233 0.45315161839863699 2 7 2 7 0 0 2115 39 412 3988978 56640 221.06419372558594 1.4436 317.18040000000002 6720 4749 0 0 0.2309103244036371 1.4859222174523592 4096 2048 64 1 16 412 320 0 64 0 5894603024 14586724 1 0 5 1 2 2 6 1228800 245760 491520 491697 1497600 57 25 25 31 274 3 0 0 1 35 0 0 0 0 0
171 170 1783859718756884100 REFRESH 6 0 0.76974677846362216 0.91396933560476989 3 11 3 11 0 0 380 4 419 3988935 56640 227.45497131347656 1.4644999999999999 305.69549999999998 6720 5063 0 0 0.078472369408099776 0.14391543825984973 4096 2048 64 1 16 419 320 0 64 0 5895338628 15322328 1 0 5 1 2 2 6 1228800 245760 491520 491654 1497600 25 25 25 26 318 0 0 0 0 4 0 0 0 0 0
172 171 1783859719149268400 REFRESH 26 0 0.76663382952012915 0.64821124361158422 1 10 1 10 1 0 1819 43 418 3988953 56640 222.54489135742188 1.4472 322.26830000000001 6720 4933 0 0 0.090960598249431271 0.70032506168692255 4096 2048 64 1 16 418 320 0 64 0 5896073212 16056912 1 0 5 1 2 2 6 1228800 245760 491520 491673 1497600 28 25 28 31 306 2 0 1 2 38 0 0 0 0 1
173 172 1783859719540319800 REFRESH 40 0 0.76663141542256241 0.64821124361158422 1 10 1 10 0 0 1681 19 419 3988949 56640 219.05509948730469 1.4318 331.4067 6720 4973 0 0 0.08315556845306328 0.52708806647616635 4096 2048 64 1 16 419 320 0 64 0 5896808816 16792516 1 0 5 1 2 2 6 1228800 245760 491520 491669 1497600 25 25 29 27 313 2 0 0 5 12 0 0 0 0 0
174 173 1783859719899348600 REFRESH 29 0 0.77164767909539733 0.82027257240204421 3 10 3 10 0 0 1102 5 410 3988961 56640 221.41746520996094 1.4410000000000001 298.87270000000001 6720 5061 0 0 0.26278519260479372 0.96843308429688912 4096 2048 64 1 16 410 320 0 64 0 5897535240 17518940 1 0 5 1 2 2 6 1228800 245760 491520 491681 1497600 25 25 25 25 310 0 0 0 1 4 0 0 0 0 0
175 174 1783859720317501600 REFRESH 50 0 0.76674150439251354 0.64054514480408853 2 9 2 9 0 0 1041 8 424 3988958 56640 221.60383605957031 1.4530000000000001 334.87689999999998 6720 4842 0 0 0.059365983438523645 2.1081194948679065 4096 2048 64 1 16 424 320 0 64 0 5898275944 18259644 1 0 5 1 2 2 6 1228800 245760 491520 491678 1497600 28 25 25 25 321 1 0 0 0 7 0 0 0 0 0
176 175 1783859720734481800 REFRESH 56 0 0.79896016049649976 0.17206132879045993 2 4 2 4 0 0 4096 49 412 3988949 56640 221.10617065429688 1.4376 347.9169 13440 8211 0 0 0.0054355512702489233 0.48957545601177821 4096 2048 64 1 16 412 320 0 64 0 5899004408 18988108 1 0 4 2 2 2 6 983040 491520 491520 491668 1497600 45 26 40 56 245 2 0 2 6 39 0 0 0 0 0
177 176 1783859721035250900 REFRESH 5 0 0.75935809817009003 0.8279386712095399 2 11 2 11 0 0 869 24 416 3988948 56640 219.37161254882812 1.4334 299.22579999999999 6720 4952 0 0 0.005213560619153213 0.426630687374281 4096 2048 64 1 16 416 320 0 64 0 5899736952 19720652 1 0 5 1 2 2 6 1228800 245760 491520 491667 1497600 25 25 25 31 310 0 0 1 2 21 0 0 0 0 0
178 177 1783859721348751800 REFRESH 43 0 0.75940595235867525 0.8279386712095399 2 11 2 11 0 0 774 18 420 3988957 56640 223.46342468261719 1.6080000000000001 311.7441 6720 4947 0 0 0.009842172204325185 1.2471290918008606 4096 2048 64 1 16 420 320 0 64 0 5900473576 20457276 1 0 5 1 2 2 6 1228800 245760 491520 491676 1497600 25 25 25 36 309 0 0 0 1 17 0 0 0 0 0
179 178 1783859721738528800 REFRESH 34 0 0.77293513759045163 0.8356047700170357 1 12 1 12 0 0 701 13 419 3988956 56640 225.41619873046875 1.4409000000000001 311.58390000000003 6720 5082 0 0 0.00024456112032069028 1.7981817145069319 4096 2048 64 1 16 419 320 0 64 0 5901209180 21192880 1 0 5 1 2 2 6 1228800 245760 491520 491674 1497600 25 28 25 26 315 0 0 0 0 13 0 0 0 0 0
180 179 1783859722161744600 REFRESH 17 0 0.78300230844811158 0.28109028960817717 0 7 0 7 0 0 3911 31 415 3988930 56640 222.04722595214844 1.4437 355.43560000000002 13440 9263 0 0 1.7384002172801471e-05 0.059782352022523813 4096 2048 64 1 16 415 320 0 64 0 5901940704 21924404 1 0 4 2 2 2 6 983040 491520 491520 491647 1497600 26 25 33 38 293 0 0 1 4 26 0 0 0 0 0
181 180 1783859722569237800 REFRESH 30 0 0.76806180546425207 0.4608177172061329 1 8 1 8 0 0 3441 59 415 3988949 56640 219.931640625 1.4371 328.19659999999999 6720 4771 0 0 0.0010823191780834386 1.5810805031597897 4096 2048 64 1 16 415 320 0 64 0 5902672228 22655928 1 0 5 1 2 2 6 1228800 245760 491520 491668 1497600 30 25 45 34 281 3 0 4 2 50 0 0 0 0 0
182 181 1783859722913588400 REFRESH 53 0 0.76811552403845207 0.37478705281090291 0 8 0 8 0 0 4096 56 411 3988973 56640 220.76313781738281 1.4372 342.49689999999998 13440 9357 0 0 0 0.2106332408498392 4096 2048 64 1 16 411 320 0 64 0 5903399672 23383372 1 0 4 2 2 2 6 983040 491520 491520 491693 1497600 26 25 32 31 297 0 0 2 2 52 0 0 0 0 0
183 182 1783859723278972800 REFRESH 15 0 0.76943612456485355 0.91396933560476989 3 11 3 11 0 0 322 8 414 3988956 56640 222.03596496582031 1.4391 303.74880000000002 6720 5063 0 0 0.13215737202774189 0.95319511763653475 4096 2048 64 1 16 414 320 0 64 0 5904130176 24113876 1 0 5 1 2 2 6 1228800 245760 491520 491676 1497600 27 28 25 25 309 0 1 0 1 6 0 0 0 0 0
184 183 1783859723739914700 REFRESH 10 0 0.76723240942299209 0.64821124361158422 1 10 1 10 0 0 1138 20 417 3988968 56640 219.84255981445312 1.9141999999999999 312.57150000000001 6720 4872 0 0 0.0023995083271502065 2.8416920354575197 4096 2048 64 1 16 417 320 0 64 0 5904863740 24847440 1 0 5 1 2 2 6 1228800 245760 491520 491688 1497600 27 25 29 31 305 2 0 2 1 15 0 0 0 0 0
185 184 1783859724113256500 REFRESH 18 0 0.77054969203045909 0.9293015332197615 1 13 1 13 0 0 441 20 412 3988955 56640 227.17439270019531 1.4359999999999999 305.58460000000002 6720 5030 0 0 0.0012157253655346659 1.5441952694290573 4096 2048 64 1 16 412 320 0 64 0 5905592204 25575904 1 0 5 1 2 2 6 1228800 245760 491520 491674 1497600 25 25 25 26 311 0 0 0 1 19 0 0 0 0 0
186 185 1783859724480663100 REFRESH 16 0 0.76830161771848271 0.3594548551959113 2 6 2 6 0 0 3212 39 412 3988936 56640 226.89894104003906 1.4504999999999999 305.05259999999998 13440 9455 0 0 0.0062991239157878338 0.25319780240096146 4096 2048 64 1 16 412 320 0 64 0 5906320668 26304368 1 0 4 2 2 2 6 983040 491520 491520 491656 1497600 26 25 27 28 306 0 0 0 0 39 0 0 0 0 0
187 186 1783859724790314800 REFRESH 0 0 0.75989443402040679 0.8279386712095399 2 11 2 11 0 0 884 20 418 3988953 56640 223.36408996582031 1.4567000000000001 307.83229999999998 6720 4984 0 0 0.00014140214567446167 2.30096177437744 4096 2048 64 1 16 418 320 0 64 0 5907055252 27038952 1 0 5 1 2 2 6 1228800 245760 491520 491673 1497600 26 25 25 30 312 0 0 1 1 18 0 0 0 0 0
188 187 1783859725200123700 REFRESH 11 0 0.76842945924215522 0.37478705281090291 0 8 0 8 0 0 2421 18 411 3988984 56640 225.17453002929688 1.4360999999999999 348.51429999999999 13440 9318 0 0 0 0.71061916362628685 4096 2048 64 1 16 411 320 0 64 0 5907782696 27766396 1 0 4 2 2 2 6 983040 491520 491520 491702 1497600 26 25 53 33 274 0 0 1 2 15 0 0 0 0 0
189 188 1783859725559353900 REFRESH 47 0 0.76000200969258325 0.8279386712095399 2 11 2 11 0 0 656 14 407 3988954 56640 225.43667602539062 1.4439 303.11160000000001 6720 4996 0 0 0.018949803200694559 1.2450274644230548 4096 2048 64 1 16 407 320 0 64 0 5908506060 28489760 1 0 5 1 2 2 6 1228800 245760 491520 491673 1497600 26 25 25 27 304 0 0 0 0 14 0 0 0 0 0
190 189 1783859725919713500 REFRESH 55 0 0.76755566614586912 0.64054514480408853 2 9 2 9 0 0 1069 11 406 3988974 56640 226.62042236328125 1.4343999999999999 301.62270000000001 6720 4949 0 0 0.11267375438910436 0.93501389544354829 4096 2048 64 1 16 406 320 0 64 0 5909228404 29212104 1 0 5 1 2 2 6 1228800 245760 491520 491693 1497600 31 26 27 26 296 0 0 0 0 11 0 0 0 0 0
191 190 1783859726293611800 REFRESH 1 0 0.76854880520851632 0.36712095400340705 1 7 1 7 0 0 3026 52 411 3988953 56640 224.82124328613281 1.4329000000000001 314.34840000000003 13440 9285 0 0 0.028773653260515411 1.8199943181710654 4096 2048 64 1 16 411 320 0 64 0 5909955848 29939548 1 0 4 2 2 2 6 983040 491520 491520 491673 1497600 26 25 30 51 279 0 1 3 7 41 0 0 0 0 0
192 191 1783859726659171700 REFRESH 7 0 0.77367153873383077 0.8356047700170357 1 12 1 12 1 0 858 17 408 3988955 56640 224.26112365722656 1.4439 308.32049999999998 6720 5041 0 0 0.0015439939761988503 1.0294096654276503 4096 2048 64 1 16 408 320 0 64 0 5910680232 30663932 1 0 5 1 2 2 6 1228800 245760 491520 491675 1497600 26 27 25 25 305 0 0 0 0 17 0 0 0 0 1
193 192 1783859727047910200 REFRESH 25 0 0.76868080938790306 0.4608177172061329 1 8 1 8 0 0 2309 20 408 3988937 56640 224.78239440917969 1.4507000000000001 331.29349999999999 13440 9744 0 0 0.0002866720556610524 1.4641012066807393 4096 2048 64 1 16 408 320 0 64 0 5911404616 31388316 1 0 4 2 2 2 6 983040 491520 491520 491657 1497600 26 25 33 30 294 0 0 3 1 16 0 0 0 0 0
194 193 1783859727413329800 REFRESH 32 0 0.76873184907365055 0.4608177172061329 1 8 1 8 0 0 2940 46 413 3988967 56640 221.67654418945312 1.4319999999999999 303.64909999999998 6720 4722 0 0 0.0011665864340913636 1.8037808584357806 4096 2048 64 1 16 413 320 0 64 0 5912134100 32117800 1 0 5 1 2 2 6 1228800 245760 491520 491687 1497600 33 25 28 29 298 3 0 3 2 38 0 0 0 0 0
195 194 1783859727782448700 REFRESH 4 0 0.77383927254095697 0.8356047700170357 1 12 1 12 0 0 277 9 424 3988962 56640 220.00639343261719 1.4390000000000001 315.19209999999998 6720 5083 0 0 0.040411785743191188 1.4510951908289993 4096 2048 64 1 16 424 320 0 64 0 5912874804 32858504 1 0 5 1 2 2 6 1228800 245760 491520 491682 1497600 26 25 25 25 323 0 1 1 0 7 0 0 0 0 0
196 195 1783859728170495600 REFRESH 12 0 0.76787578279761115 0.63287904599659284 3 8 3 8 0 0 1469 46 426 3988964 56640 221.5731201171875 1.4535 309.77879999999999 6720 4937 0 0 0.0015342879221033493 0.52805712610492539 4096 2048 64 1 16 426 320 0 64 0 5913617548 33601248 1 0 5 1 2 2 6 1228800 245760 491520 491683 1497600 34 25 25 32 310 1 0 0 1 44 0 0 0 0 0
197 196 1783859728530458200 REFRESH 22 0 0.77122337162049148 0.91396933560476989 3 11 3 11 0 0 472 11 420 3988962 56640 222.92291259765625 1.4977 301.39819999999997 6720 5060 0 0 0.0083533723482868329 0.70040182967037024 4096 2048 64 1 16 420 320 0 64 0 5914354172 34337872 1 0 5 1 2 2 6 1228800 245760 491520 491680 1497600 25 25 25 25 320 0 0 0 0 11 0 0 0 0 0
198 197 1783859728902619100 REFRESH 42 0 0.97201486960288919 0 0 4 0 4 0 0 4096 3 426 3987986 55680 223.91398620605469 1.4377 370.56810000000002 20160 12173 0 0 0 0.0063610145412278767 4096 2048 64 1 16 426 320 0 64 0 5915096916 35080616 1 0 4 3 3 2 4 983040 737280 737280 491663 998400 66 25 34 208 93 0 0 0 0 3 0 0 0 0 0
199 198 1783859729273377800 REFRESH 20 0 0.77854015915580077 0.26575809199318562 2 5 2 5 0 0 2064 15 433 3988967 56640 224.06144714355469 1.4482999999999999 369.2724 13440 9303 0 0 0.001771835568079596 0.77081764157800148 4096 2048 64 1 16 433 320 0 64 0 5915846800 35830500 1 0 4 2 2 2 6 983040 491520 491520 491686 1497600 25 25 46 73 264 1 2 0 0 12 0 0 0 0 0
200 199 1783859729667090800 REFRESH 8 0 0.78398872482401483 0.26575809199318562 2 5 2 5 0 0 2366 14 411 3988941 56640 226.10739135742188 1.4372 313.17790000000002 13440 9379 0 0 0.030103035119069095 0.91796646697047368 4096 2048 64 1 16 411 320 0 64 0 5916574244 36557944 1 0 4 2 2 2 6 983040 491520 491520 491661 1497600 25 26 25 27 308 0 0 0 0 14 0 0 0 0 0
201 200 1783859730119173500 REFRESH 52 0 0.76903721273366354 0.36712095400340705 1 7 1 7 0 0 2179 42 417 3988962 56640 224.16793823242188 1.4341999999999999 334.48379999999997 13440 9169 0 0 7.4202217947583462e-05 1.936591165712374 4096 2048 64 1 16 417 320 0 64 0 5917307808 37291508 1 0 4 2 2 2 6 983040 491520 491520 491682 1497600 25 25 72 32 263 0 0 6 4 32 0 0 0 0 0
202 201 1783859730502463600 REFRESH 24 0 0.76922751263516931 1 4 11 4 11 0 0 491 9 407 3988944 56640 226.12991333007812 1.4372 314.11989999999997 6720 5063 0 0 0.027869521123281102 1.4468046609733554 4096 2048 64 1 16 407 320 0 64 0 5918031172 38014872 1 0 5 1 2 2 6 1228800 245760 491520 491663 1497600 27 28 25 25 302 0 0 0 0 9 0 0 0 0 0
203 202 1783859730879317600 REFRESH 49 0 0.76918752609203522 0.4454855195911413 3 6 3 6 0 0 1494 35 409 3988932 56640 222.54489135742188 1.4349000000000001 303.09199999999998 6720 4667 0 0 0.058061103203911842 2.3022417889218207 4096 2048 64 1 16 409 320 0 64 0 5918756576 38740276 1 0 5 1 2 2 6 1228800 245760 491520 491652 1497600 31 26 28 32 292 0 0 0 0 35 0 0 0 0 0
204 203 1783859731254591600 REFRESH 2 0 0.76923775260804061 0.45315161839863699 2 7 2 7 0 0 3486 59 413 3988928 56640 220.516357421875 1.4444999999999999 312.30829999999997 6720 4694 0 0 0.2773399391733698 2.0710771777085544 4096 2048 64 1 16 413 320 0 64 0 5919486060 39469760 1 0 5 1 2 2 6 1228800 245760 491520 491647 1497600 31 25 33 29 295 0 0 2 1 56 0 0 0 0 0
205 204 1783859731632652800 REFRESH 58 0 0.77166530135375289 0.92163543441226559 2 12 2 12 0 0 524 16 410 3988956 56640 221.43693542480469 1.4379999999999999 308.64640000000003 6720 5033 0 0 0.0096214935481512883 1.6134051887685537 4096 2048 64 1 16 410 320 0 64 0 5920212484 40196184 1 0 5 1 2 2 6 1228800 245760 491520 491676 1497600 26 25 25 25 309 0 0 0 1 15 0 0 0 0 0
206 205 1783859732006162400 REFRESH 19 0 0.76090249105377816 0.8279386712095399 2 11 2 11 0 0 852 17 417 3988978 56640 220.42726135253906 1.4443999999999999 302.88569999999999 6720 4983 0 0 0.024134501803917539 0.35880585544835542 4096 2048 64 1 16 417 320 0 64 0 5920946048 40929748 1 0 5 1 2 2 6 1228800 245760 491520 491698 1497600 25 26 25 26 315 0 0 0 1 16 0 0 0 0 0
207 206 1783859732415450500 REFRESH 33 0 0.76932652068199281 0.36712095400340705 1 7 1 7 0 0 3384 64 412 3988953 56640 241.05984497070312 1.474 345.65449999999998 13440 9314 0 0 0.00023585005086066899 0.32811287371681425 4096 2048 64 1 16 412 320 0 64 0 5921674512 41658212 1 0 4 2 2 2 6 983040 491520 491520 491673 1497600 25 25 57 31 274 0 0 4 0 60 0 0 0 0 0
208 207 1783859732804838900 REFRESH 9 0 0.78437447096889534 0.27342419080068137 1 6 1 6 0 0 3052 33 412 3988944 56640 221.68063354492188 1.4377 316.36849999999998 13440 9320 0 0 0.00029749737042186297 0.32936763850020839 4096 2048 64 1 16 412 320 0 64 0 5922402976 42386676 1 0 4 2 2 2 6 983040 491520 491520 491663 1497600 26 25 27 31 303 0 0 0 0 33 0 0 0 0 0
209 208 1783859733239694400 REFRESH 48 0 0.78442234539483302 0.26575809199318562 2 5 2 5 0 0 2419 17 414 3988938 56640 226.39411926269531 1.4384999999999999 359.67140000000001 13440 9196 0 0 0.0046043101471456684 0.20405439432789962 4096 2048 64 1 16 414 320 0 64 0 5923133480 43117180 1 0 4 2 2 2 6 983040 491520 491520 491656 1497600 25 25 43 28 293 0 0 1 0 16 0 0 0 0 0
210 209 1783859733679178500 REFRESH 46 0 0.76948940423860002 0.37478705281090291 0 8 0 8 0 0 2692 22 410 3988950 56640 246.83418273925781 1.7938000000000001 377.55489999999998 13440 9325 0 0 3.9081084752213203e-05 0.39562579086132238 4096 2048 64 1 16 410 320 0 64 0 5923859904 43843604 1 0 4 2 2 2 6 983040 491520 491520 491670 1497600 27 25 51 41 266 0 0 0 1 21 0 0 0 0 0
211 210 1783859734152851200 REFRESH 51 0 0.77199307442616416 0.91396933560476989 3 11 3 11 0 0 535 16 407 3988969 56640 239.572998046875 1.4330000000000001 319.90260000000001 6720 5081 0 0 0.04374756045180065 0.27288744213454319 4096 2048 64 1 16 407 320 0 64 0 5924583268 44566968 1 0 5 1 2 2 6 1228800 245760 491520 491689 1497600 26 28 25 26 302 0 2 0 0 14 0 0 0 0 0
212 211 1783859734542285700 REFRESH 27 0 0.77204740177048992 0.93696763202725719 0 14 0 14 0 0 869 14 419 3988943 56640 239.36614990234375 1.4335 321.0292 6720 5116 0 0 4.4312838867707149e-06 0.92228926599200534 4096 2048 64 1 16 419 320 0 64 0 5925318872 45302572 1 0 5 1 2 2 6 1228800 245760 491520 491661 1497600 27 25 25 25 317 0 0 0 0 14 0 0 0 0 0
213 212 1783859734942864800 REFRESH 41 0 0.77412337682886623 0.55451448040885853 1 9 1 9 0 0 2168 35 414 3988955 56640 234.24819946289062 1.4729000000000001 329.36720000000003 6720 4867 0 0 0.00047546691312138533 1.497358551665477 4096 2048 64 1 16 414 320 0 64 0 5926049376 46033076 1 0 5 1 2 2 6 1228800 245760 491520 491674 1497600 28 25 32 33 296 1 0 0 0 34 0 0 0 0 0
214 213 1783859737218400700 DEPTH 42 1 0.86990330961879392 0 0 4 0 4 0 0 4096 20 2587 23698459 103680 1312.9458312988281 8.8274000000000008 2210.0018 120960 59650 1 0 0 0.0063610145412278767 4096 2048 384 12 96 2587 1920 0 384 1 5930547024 50530724 1 0 4 3 3 2 4 5898240 4423680 4423680 2950867 5990400 249 150 214 1077 897 0 0 0 0 20 0 0 0 0 0
215 214 1783859739482895600 DEPTH 56 1 0.79280542078937588 0.17206132879045993 2 4 2 4 0 0 4096 73 2550 23731174 136320 1306.7162322998047 8.5958000000000006 2145.5322999999999 100800 48983 1 0 0.0054355512702489233 0.48957545601177821 4096 2048 384 12 96 2550 1920 0 384 1 5935006932 54990632 1 0 4 3 2 2 5 5898240 3686400 2949120 2950973 8236800 205 150 178 547 1470 9 0 11 5 48 0 0 0 0 0
216 215 1783859741678375400 DEPTH 13 1 0.7758433187563154 0.27342419080068137 1 6 1 6 0 0 4096 60 2552 23742637 147840 1313.3226928710938 8.6702000000000012 2136.2085000000002 80640 44820 1 0 0.022786735533611113 0.15623055639937777 4096 2048 384 12 96 2552 1920 0 384 1 5939468880 59452580 1 0 4 2 2 2 6 5898240 2949120 2949120 2950943 8985600 156 150 153 150 1943 0 0 1 6 53 0 0 0 0 0
217 216 1783859743832891500 DEPTH 57 1 0.7758888748720798 0.27342419080068137 1 6 1 6 0 0 4096 42 2538 23742695 147840 1277.7666320800781 8.6552999999999987 2098.4387000000002 80640 45370 1 0 0.00072752635965749523 0.50646269260782129 4096 2048 384 12 96 2538 1920 0 384 1 5943916548 63900248 1 0 4 2 2 2 6 5898240 2949120 2949120 2950997 8985600 156 150 183 192 1857 0 0 0 6 36 0 0 0 0 0
218 217 1783859747234428900 DEPTH 17 1 0.77593435986553594 0.28109028960817717 0 7 0 7 0 0 3926 47 2558 23742654 147840 1266.7654724121094 8.660400000000001 3271.4645999999998 80640 44945 1 0 1.7384002172801471e-05 0.059782352022523813 4096 2048 384 12 96 2558 1920 0 384 1 5948384696 1259692 1 0 4 2 2 2 6 5898240 2949120 2949120 2950958 8985600 156 150 156 162 1934 0 0 3 2 42 0 0 0 0 0
219 218 1783859749407921300 DEPTH 39 1 0.76283883666828933 0.55451448040885853 1 9 1 9 0 0 1577 32 2580 23742191 147840 1311.2607269287109 8.6168999999999993 2112.9843999999998 80640 47763 1 0 0.00014839428778928599 1.5497505427452305 4096 2048 384 12 96 2580 1920 0 384 1 5952875204 5750200 1 0 4 2 2 2 6 6635520 2949120 2949120 2213218 8985600 150 152 162 177 1939 2 0 0 0 30 0 0 0 0 0
220 219 1783859751419233300 DEPTH 38 1 0.76288781313018916 0.55451448040885853 1 9 1 9 0 0 2068 46 2534 23742226 147840 1268.4284820556641 8.6176000000000013 1878.7422999999999 80640 48384 1 0 0.13433027919204674 2.3057515358806704 4096 2048 384 12 96 2534 1920 0 384 1 5957318792 10193788 1 0 4 2 2 2 6 6635520 2949120 2949120 2213251 8985600 150 156 156 156 1916 2 0 1 2 41 0 0 0 0 0
221 220 1783859753651340100 DEPTH 21 1 0.76293671346474667 0.56218057921635434 0 10 0 10 0 0 2490 56 2554 23742219 147840 1270.2971801757812 8.6813000000000002 2085.0542999999998 80640 48041 1 0 2.4584779324138999e-05 1.0722633759184834 4096 2048 384 12 96 2554 1920 0 384 1 5961782780 14657776 1 0 4 2 2 2 6 6635520 2949120 2949120 2213246 8985600 162 150 156 165 1921 7 3 7 6 33 0 0 0 0 0
222 221 1783859755784278700 DEPTH 42 1 0.7854872595714314 0 0 4 0 4 0 0 4096 21 2593 23691337 96000 1272.94873046875 8.8388999999999989 2131.3049999999998 120960 48895 1 0 0 0.0063610145412278767 4096 2048 384 12 96 2593 1920 0 384 1 5966286548 19161544 1 0 4 3 3 3 3 5898240 4423680 4423680 3442885 5491200 240 150 219 1223 761 0 0 0 0 21 0 0 0 0 0
223 222 1783859757643258900 DEPTH 7 1 0.7617896098842577 0.8356047700170357 1 12 1 12 1 0 861 43 2522 23742683 147840 1274.3470916748047 8.5238000000000014 1775.3012000000001 40320 21739 1 0 0.0015317392842735759 1.0209349543212158 4096 2048 384 12 96 2522 1920 0 384 1 5970717896 23592892 1 0 5 1 2 2 6 7372800 1474560 2949120 2950989 8985600 150 150 150 150 1922 0 0 0 0 43 0 0 0 0 1
224 223 1783859759566914500 DEPTH 28 1 0.76182982124008225 0.8279386712095399 2 11 2 11 0 0 632 32 2523 23742682 147840 1302.3631286621094 8.6245999999999992 1853.4874 40320 22550 1 0 0.00022189812580462688 0.92047472736303015 4096 2048 384 12 96 2523 1920 0 384 1 5975150264 28025260 1 0 5 1 2 2 6 7372800 1474560 2949120 2950985 8985600 156 169 150 161 1887 0 0 0 0 32 0 0 0 0 0
225 224 1783859761473594300 DEPTH 37 1 0.76188058030650829 0.8356047700170357 1 12 1 12 0 0 989 25 2563 23741731 147840 1361.7868957519531 8.6172000000000004 1847.2736 47040 27506 1 0 0.0033651663875057473 0.47165320917887499 4096 2048 384 12 96 2563 1920 0 384 1 5979623432 32498428 1 0 6 1 2 1 6 8601600 1720320 2949120 1475475 8985600 154 153 150 157 1949 0 0 0 1 24 0 0 0 0 0
226 225 1783859763476411100 DEPTH 34 1 0.76193126104643361 0.8356047700170357 1 12 1 12 0 0 705 41 2569 23741789 147840 1333.5244903564453 8.6967999999999996 1932.9495999999999 47040 27488 1 0 0.00024456112032069028 1.7981817145069319 4096 2048 384 12 96 2569 1920 0 384 1 5984102720 36977716 1 0 6 1 2 1 6 8601600 1720320 2949120 1475534 8985600 150 150 150 162 1957 0 0 0 3 38 0 0 0 0 0
227 226 1783859765650310300 DEPTH 11 1 0.76136641156717111 0.37478705281090291 0 8 0 8 1 0 2434 39 2548 23742697 147840 1289.5477752685547 8.7028999999999996 2105.4488999999999 80640 45010 1 1 0 0.7068416979302139 4096 2048 384 12 96 2548 1920 0 384 1 5988560588 41435584 1 0 4 2 2 2 6 5898240 2949120 2949120 2951002 8985600 156 150 181 172 1889 0 0 0 0 38 0 0 0 0 2
228 227 1783859767843355700 DEPTH 53 1 0.76139715051693146 0.37478705281090291 0 8 0 8 0 0 4096 77 2523 23742552 147840 1295.5689239501953 8.5891000000000002 2115.1190000000001 80640 44799 1 0 0 0.2106332408498392 4096 2048 384 12 96 2523 1920 0 384 1 5992992956 45867952 1 0 4 2 2 2 6 5898240 2949120 2949120 2950856 8985600 156 150 156 165 1896 0 0 18 6 53 0 0 0 0 0
229 228 1783859770017993700 DEPTH 31 1 0.76143006152728177 0.3594548551959113 2 6 2 6 0 0 2676 55 2571 23742672 147840 1293.2413330078125 8.7461000000000002 2049.6084999999998 80640 44976 1 0 0.038014368460935123 0.97909598530596631 4096 2048 384 12 96 2571 1920 0 384 1 5997474284 50349280 1 0 4 2 2 2 6 5898240 2949120 2949120 2950975 8985600 155 150 201 183 1882 0 0 4 0 51 0 0 0 0 0
230 229 1783859772163846600 DEPTH 42 1 0.78127825159006525 0 0 4 0 4 0 0 4096 14 2595 23677636 81600 1293.9028625488281 9.0612999999999992 2144.1323000000002 120960 38940 1 0 0 0.0063610145412278767 4096 2048 384 12 96 2595 1920 0 384 1 6001980092 54855088 1 0 4 3 3 3 3 5898240 4423680 4423680 4426373 4492800 203 150 210 1440 592 0 0 0 0 14 0 0 0 0 0
231 230 1783859774198835500 DEPTH 8 1 0.77651928917383695 0.26575809199318562 2 5 2 5 0 0 2372 41 2546 23742744 147840 1305.0890960693359 8.6493000000000002 1966.7519 80640 45282 1 0 0.030103035119069095 0.91796646697047368 4096 2048 384 12 96 2546 1920 0 384 1 6006435920 59310916 1 0 4 2 2 2 6 5898240 2949120 2949120 2951048 8985600 150 154 150 156 1936 0 0 0 0 41 0 0 0 0 0
232 231 1783859776353819700 DEPTH 20 1 0.77170380059868138 0.26575809199318562 2 5 2 5 0 0 2074 23 2597 23742661 147840 1302.8229064941406 9.0114000000000019 2096.0034000000001 80640 45255 1 0 0.001771835568079596 0.77081764157800148 4096 2048 384 12 96 2597 1920 0 384 1 6010943768 63818764 1 0 4 2 2 2 6 5898240 2949120 2949120 2950965 8985600 150 150 202 256 1839 0 0 0 0 23 0 0 0 0 0
233 232 1783859779445845300 DEPTH 16 1 0.76160824402756555 0.3594548551959113 2 6 2 6 0 0 3221 71 2544 23742652 147840 1307.7414245605469 8.6106999999999996 3033.6518999999998 80640 45323 1 0 0.0062991239157878338 0.25319780240096146 4096 2048 384 12 96 2544 1920 0 384 1 6015397636 1163812 1 0 4 2 2 2 6 5898240 2949120 2949120 2950958 8985600 151 150 156 162 1925 0 0 3 0 68 0 0 0 0 0
234 233 1783859781592002900 DEPTH 1 1 0.76165261966162656 0.36712095400340705 1 7 1 7 0 0 3036 52 2572 23742586 147840 1295.9621734619141 8.581999999999999 2082.0095999999999 80640 44623 1 0 0.028773653260515411 1.8199943181710654 4096 2048 384 12 96 2572 1920 0 384 1 6019879984 5646160 1 0 4 2 2 2 6 5898240 2949120 2949120 2950893 8985600 152 150 153 169 1948 0 0 4 2 46 0 0 0 0 0
235 234 1783859783908675500 DEPTH 44 1 0.7616969277011213 0.36712095400340705 1 7 1 7 0 0 2238 48 2613 23742672 147840 1348.0674285888672 8.7278000000000002 2243.9232999999999 80640 44471 1 0 0.027664597694635307 0.87919275545735165 4096 2048 384 12 96 2613 1920 0 384 1 6024404152 10170328 1 0 4 2 2 2 6 5898240 2949120 2949120 2950978 8985600 151 150 215 159 1938 0 0 1 0 47 0 0 0 0 0
236 235 1783859786048053600 DEPTH 52 1 0.76174116834543049 0.36712095400340705 1 7 1 7 0 0 2198 52 2568 23742668 147840 1304.3793792724609 8.6211000000000002 2075.4258 80640 44690 1 0 7.4202217947583462e-05 1.936591165712374 4096 2048 384 12 96 2568 1920 0 384 1 6028882420 14648596 1 0 4 2 2 2 6 5898240 2949120 2949120 2950972 8985600 150 150 214 152 1902 0 0 4 4 44 0 0 0 0 0
237 236 1783859787922953300 DEPTH 4 1 0.76148364583794459 0.8356047700170357 1 12 1 12 1 0 282 34 2560 23741661 147840 1325.0508728027344 8.6633000000000013 1817.8226999999999 47040 26747 1 0 0.040028929433672061 1.2420241261414608 4096 2048 384 12 96 2560 1920 0 384 1 6033352528 19118704 1 0 6 1 2 1 6 8601600 1720320 2949120 1475407 8985600 160 150 150 156 1944 0 0 2 0 32 0 0 0 0 1
238 237 1783859790074706900 DEPTH 42 1 0.77724595543194364 0 0 4 0 4 0 0 4096 19 2601 23677534 81600 1308.9867858886719 8.8496000000000006 2149.7471999999998 120960 27463 1 0 0 0.0063610145412278767 4096 2048 384 12 96 2601 1920 0 384 1 6037864456 23630632 1 0 4 3 3 3 3 5898240 4423680 4423680 4426497 4492800 157 150 197 1578 519 0 0 0 0 19 0 0 0 0 0
239 238 1783859792233817600 DEPTH 48 1 0.77687348788802413 0.26575809199318562 2 5 2 5 0 0 2433 45 2596 23742707 147840 1296.9318237304688 8.5524000000000004 2092.5513999999998 80640 44543 1 0 0.0046043101471456684 0.20405439432789962 4096 2048 384 12 96 2596 1920 0 384 1 6042371284 28137460 1 0 4 2 2 2 6 5898240 2949120 2949120 2951011 8985600 150 150 150 150 1996 0 0 4 2 39 0 0 0 0 0
240 239 1783859794398619700 DEPTH 9 1 0.77691746092806224 0.27342419080068137 1 6 1 6 0 0 3061 54 2548 23742628 147840 1302.0518341064453 8.595600000000001 2101.0996 80640 44882 1 0 0.00029749737042186297 0.32936763850020839 4096 2048 384 12 96 2548 1920 0 384 1 6046829152 32595328 1 0 4 2 2 2 6 5898240 2949120 2949120 2950934 8985600 156 150 154 156 1932 0 0 0 1 53 0 0 0 0 0
241 240 1783859796627081200 DEPTH 56 1 0.786635304452449 0.17206132879045993 2 4 2 4 0 0 4096 62 2580 23720946 125760 1286.8270263671875 8.8532999999999991 2149.5689000000002 120960 46087 1 0 0.0054355512702489233 0.48957545601177821 4096 2048 384 12 96 2580 1920 0 384 1 6051319660 37085836 1 0 4 3 2 2 5 5898240 4423680 2949120 2950976 7488000 169 150 153 1500 608 1 2 2 15 42 0 0 0 0 0
242 241 1783859798767849600 DEPTH 41 1 0.76394643199618006 0.55451448040885853 1 9 1 9 0 0 2184 84 2561 23742207 147840 1303.9554443359375 8.6574999999999989 2066.5641000000001 80640 47925 1 0 0.00047546691312138533 1.497358551665477 4096 2048 384 12 96 2561 1920 0 384 1 6055790788 41556964 1 0 4 2 2 2 6 6635520 2949120 2949120 2213231 8985600 152 150 151 184 1924 16 2 13 5 48 0 0 0 0 0
243 242 1783859801014763000 DEPTH 46 1 0.76206631639860589 0.37478705281090291 0 8 0 8 0 0 2697 33 2578 23742656 147840 1311.4962615966797 8.706900000000001 2122.8114999999998 80640 44914 1 0 3.9081084752213203e-05 0.39562579086132238 4096 2048 384 12 96 2578 1920 0 384 1 6060279256 46045432 1 0 4 2 2 2 6 5898240 2949120 2949120 2950959 8985600 152 150 160 168 1948 0 0 2 1 30 0 0 0 0 0
244 243 1783859803190140400 DEPTH 33 1 0.76209269091392262 0.36712095400340705 1 7 1 7 0 0 3386 34 2554 23742724 147840 1310.3638000488281 8.6919000000000004 2098.9740999999999 80640 45167 1 0 0.00023585005086066899 0.32811287371681425 4096 2048 384 12 96 2554 1920 0 384 1 6064743244 50509420 1 0 4 2 2 2 6 5898240 2949120 2949120 2951031 8985600 150 150 186 158 1910 0 0 2 0 32 0 0 0 0 0
245 244 1783859805111048800 DEPTH 49 1 0.76109718681332683 0.4454855195911413 3 6 3 6 0 0 1508 64 2528 23742659 147840 1316.8056488037109 8.7032000000000007 1858.5988 80640 42468 1 0 0.058061103203911842 2.3022417889218207 4096 2048 384 12 96 2528 1920 0 384 1 6069180712 54946888 1 0 4 2 2 2 6 5898240 2949120 2949120 2950965 8985600 154 156 159 160 1899 0 0 6 6 52 0 0 0 0 0
246 245 1783859805516715600 REFRESH 58 0 0.76020150754923799 0.92163543441226559 2 12 2 12 0 0 525 13 409 3988874 56640 238.0369873046875 1.5044999999999999 337.541 6720 4997 0 0 0.0096214935481512883 1.6134051887685537 4096 2048 64 1 16 409 320 0 64 0 6069906116 55672292 1 0 6 1 2 1 6 1474560 245760 491520 245834 1497600 26 25 25 25 308 0 0 0 1 12 0 0 0 0 0
247 246 1783859805867725600 REFRESH 52 0 0.61418280896200972 0.36712095400340705 1 7 1 7 0 0 2200 15 418 3988970 56640 230.82392883300781 1.5165999999999999 349.286 13440 8576 0 0 7.4202217947583462e-05 1.936591165712374 4096 2048 64 1 16 418 320 0 64 0 6070640700 56406876 1 0 4 2 2 2 6 983040 491520 491520 491690 1497600 25 25 52 30 286 0 0 1 0 14 0 0 0 0 0
248 247 1783859806231148700 REFRESH 47 0 0.75137191714118401 0.8279386712095399 2 11 2 11 1 0 657 13 409 3988960 56640 223.78189086914062 1.4655 304.48349999999999 6720 4877 0 0 0.018960026908908086 1.2351126180506042 4096 2048 64 1 16 409 320 0 64 0 6071366104 57132280 1 0 5 1 2 2 6 1228800 245760 491520 491677 1497600 26 25 25 28 305 0 0 0 0 13 0 0 0 0 1
249 248 1783859806613821000 REFRESH 27 0 0.7603485527212086 0.93696763202725719 0 14 0 14 0 0 874 22 414 3988886 56640 229.18246459960938 1.5159 310.03160000000003 6720 4980 0 0 4.4312838867707149e-06 0.92228926599200534 4096 2048 64 1 16 414 320 0 64 0 6072096608 57862784 1 0 6 1 2 1 6 1474560 245760 491520 245846 1497600 27 25 25 25 312 0 0 0 0 22 0 0 0 0 0
250 249 1783859806945269400 REFRESH 16 0 0.67430854288142295 0.3594548551959113 2 6 2 6 0 0 3232 38 417 3988947 56640 239.7286376953125 1.4384999999999999 329.79500000000002 13440 8649 0 0 0.0062991239157878338 0.25319780240096146 4096 2048 64 1 16 417 320 0 64 0 6072830172 58596348 1 0 4 2 2 2 6 983040 491520 491520 491665 1497600 26 25 27 29 310 0 0 0 0 38 0 0 0 0 0
251 250 1783859807345961100 REFRESH 8 0 0.71935032930915432 0.26575809199318562 2 5 2 5 0 0 2377 20 409 3988951 56640 240.068603515625 1.4478 331.47919999999999 13440 8752 0 0 0.030103035119069095 0.91796646697047368 4096 2048 64 1 16 409 320 0 64 0 6073555576 59321752 1 0 4 2 2 2 6 983040 491520 491520 491671 1497600 25 26 25 26 307 0 0 0 0 20 0 0 0 0 0
252 251 1783859807772341400 REFRESH 11 0 0.75441891089835411 0.37478705281090291 0 8 0 8 1 0 2445 32 409 3988946 56640 223.99078369140625 1.5987 361.52949999999998 13440 8578 0 0 0 0.70642063573804703 4096 2048 64 1 16 409 320 0 64 0 6074280980 60047156 1 0 4 2 2 2 6 983040 491520 491520 491665 1497600 26 25 75 48 235 0 0 3 5 24 0 0 0 0 1
253 252 1783859808115097400 REFRESH 41 0 0.61431422421625548 0.55451448040885853 1 9 1 9 0 0 2200 36 414 3988947 56640 236.92185974121094 1.4479 340.83580000000001 13440 9604 0 0 0.00047546691312138533 1.497358551665477 4096 2048 64 1 16 414 320 0 64 0 6075011484 60777660 1 0 4 2 2 2 6 983040 491520 491520 491666 1497600 27 25 38 42 282 0 0 3 1 32 0 0 0 0 0
254 253 1783859808497727100 REFRESH 23 0 0.75500404112331387 0.74190800681430991 1 11 1 11 0 0 3403 16 409 3988969 56640 228.5086669921875 1.4443999999999999 322.39760000000001 6720 4889 0 0 0.019300881082243489 0.74477203843732076 4096 2048 64 1 16 409 320 0 64 0 6075736888 61503064 1 0 5 1 2 2 6 1228800 245760 491520 491688 1497600 29 25 36 28 291 0 0 1 0 15 0 0 0 0 0
255 254 1783859808841390000 REFRESH 46 0 0.62453245605164642 0.37478705281090291 0 8 0 8 0 0 2704 23 408 3988949 56640 225.02809143066406 1.4295 342.00009999999997 13440 8591 0 0 3.9081084752213203e-05 0.39562579086132238 4096 2048 64 1 16 408 320 0 64 0 6076461272 62227448 1 0 4 2 2 2 6 983040 491520 491520 491669 1497600 26 25 68 50 239 0 0 0 0 23 0 0 0 0 0
256 255 1783859809211143000 REFRESH 19 0 0.75174483742184683 0.8279386712095399 2 11 2 11 0 0 856 14 416 3988942 56640 225.37420654296875 1.4345000000000001 304.51819999999998 6720 4911 0 0 0.024134501803917539 0.35880585544835542 4096 2048 64 1 16 416 320 0 64 0 6077193816 62959992 1 0 5 1 2 2 6 1228800 245760 491520 491662 1497600 25 26 25 26 314 0 0 0 1 13 0 0 0 0 0
257 256 1783859809666736600 REFRESH 32 0 0.76163542969361997 0.4608177172061329 1 8 1 8 0 0 2954 36 414 3988981 56640 224.69938659667969 1.4476 316.30349999999999 13440 9671 0 0 0.0011665864340913636 1.8037808584357806 4096 2048 64 1 16 414 320 0 64 0 6077924320 63690496 1 0 4 2 2 2 6 983040 491520 491520 491699 1497600 26 25 29 29 305 0 0 2 3 31 0 0 0 0 0
258 257 1783859810048257500 REFRESH 22 0 0.76078576968589173 0.91396933560476989 3 11 3 11 0 0 472 10 417 3988959 56640 241.39161682128906 1.456 320.04629999999997 6720 4898 0 0 0.0083533723482868329 0.70040182967037024 4096 2048 64 1 16 417 320 0 64 0 6078657884 64424060 1 0 5 1 2 2 6 1228800 245760 491520 491675 1497600 25 25 25 25 317 0 0 0 0 10 0 0 0 0 0
259 258 1783859810442858600 REFRESH 57 0 0.7696823986573853 0.27342419080068137 1 6 1 6 0 0 4096 34 407 3988985 56640 233.21702575683594 1.4292 327.20580000000001 13440 8663 0 0 0.00072752635965749523 0.50646269260782129 4096 2048 64 1 16 407 320 0 64 0 6079381248 65147424 1 0 4 2 2 2 6 983040 491520 491520 491703 1497600 26 25 47 46 263 0 0 0 1 33 0 0 0 0 0
260 259 1783859810760059300 REFRESH 4 0 0.73125282517907986 0.8356047700170357 1 12 1 12 0 0 283 7 420 3988879 56640 229.41798400878906 1.4339 315.51420000000002 6720 4955 0 0 0.040028929433672061 1.2420241261414608 4096 2048 64 1 16 420 320 0 64 0 6080117872 65884048 1 0 6 1 2 1 6 1474560 245760 491520 245838 1497600 26 25 25 34 310 0 0 0 0 7 0 0 0 0 0
261 260 1783859811088138500 REFRESH 1 0 0.75476480520982259 0.36712095400340705 1 7 1 7 0 0 3056 45 422 3988492 56160 225.19296264648438 1.4319999999999999 326.12670000000003 13440 9921 0 0 0.028773653260515411 1.8199943181710654 4096 2048 64 1 16 422 320 0 64 0 6080856536 66622712 1 0 5 2 2 2 5 1228800 491520 491520 491692 1248000 25 25 25 102 245 0 0 2 9 34 0 0 0 0 0
262 261 1783859812689448000 REFRESH 55 0 0.75952164575173842 0.64054514480408853 2 9 2 9 0 0 1070 8 409 3988950 56640 224.73216247558594 1.4358 1475.7898 6720 4939 0 0 0.11267375438910436 0.93501389544354829 4096 2048 64 1 16 409 320 0 64 0 6081582020 240144 1 0 5 1 2 2 6 1228800 245760 491520 491670 1497600 30 26 28 26 299 0 0 0 0 8 0 0 0 0 0
263 262 1783859813108721500 REFRESH 20 0 0.76547297022784822 0.26575809199318562 2 5 2 5 0 0 2079 9 432 3988477 56160 227.80415344238281 1.5111000000000001 358.59690000000001 13440 9901 0 0 0.001771835568079596 0.77081764157800148 4096 2048 64 1 16 432 320 0 64 0 6082330884 989008 1 0 5 2 2 2 5 1228800 491520 491520 491676 1248000 25 25 27 51 304 0 0 1 0 8 0 0 0 0 0
264 263 1783859813495097200 REFRESH 35 0 0.75211337458762551 0.8279386712095399 2 11 2 11 0 0 1100 11 404 3988934 56640 240.15676879882812 1.4503999999999999 319.44209999999998 6720 4920 0 0 0.12120608375158826 1.1047241122088913 4096 2048 64 1 16 404 320 0 64 0 6083051188 1709312 1 0 5 1 2 2 6 1228800 245760 491520 491653 1497600 26 25 25 31 297 0 0 0 0 11 0 0 0 0 0
265 264 1783859813873262900 REFRESH 5 0 0.75216532221832089 0.8279386712095399 2 11 2 11 0 0 870 12 412 3988960 56640 235.70533752441406 1.4548000000000001 319.81939999999997 6720 4858 0 0 0.005213560619153213 0.426630687374281 4096 2048 64 1 16 412 320 0 64 0 6083779652 2437776 1 0 5 1 2 2 6 1228800 245760 491520 491679 1497600 25 25 25 33 304 0 0 1 2 9 0 0 0 0 0
266 265 1783859814231746200 REFRESH 48 0 0.76996976786999938 0.26575809199318562 2 5 2 5 0 0 2445 26 421 3988944 56640 236.70988464355469 1.4321999999999999 356.6429 13440 8678 0 0 0.0046043101471456684 0.20405439432789962 4096 2048 64 1 16 421 320 0 64 0 6084517296 3175420 1 0 4 2 2 2 6 983040 491520 491520 491663 1497600 25 25 51 34 286 0 0 2 0 24 0 0 0 0 0
267 266 1783859814627972600 REFRESH 31 0 0.75501058112626385 0.3594548551959113 2 6 2 6 0 0 2694 32 419 3988964 56640 224.04197692871094 1.4341999999999999 332.1823 13440 8728 0 0 0.038014368460935123 0.97909598530596631 4096 2048 64 1 16 419 320 0 64 0 6085252900 3911024 1 0 4 2 2 2 6 983040 491520 491520 491681 1497600 27 25 47 44 276 0 0 1 2 29 0 0 0 0 0
268 267 1783859815001087400 REFRESH 38 0 0.75497765354306856 0.55451448040885853 1 9 1 9 0 0 2079 26 415 3988946 56640 224.27033996582031 1.4318 308.72140000000002 13440 9508 0 0 0.13433027919204674 2.3057515358806704 4096 2048 64 1 16 415 320 0 64 0 6085984424 4642548 1 0 4 2 2 2 6 983040 491520 491520 491665 1497600 25 26 30 31 303 0 0 0 0 26 0 0 0 0 0
269 268 1783859815319741500 REFRESH 33 0 0.75509202971088651 0.36712095400340705 1 7 1 7 0 0 3404 48 419 3988948 56640 225.49810791015625 1.4359 314.86559999999997 13440 8643 0 0 0.00023585005086066899 0.32811287371681425 4096 2048 64 1 16 419 320 0 64 0 6086720028 5378152 1 0 4 2 2 2 6 983040 491520 491520 491668 1497600 25 25 51 30 288 0 0 4 0 44 0 0 0 0 0
270 269 1783859815712621700 REFRESH 50 0 0.75788696061643368 0.64054514480408853 2 9 2 9 0 0 1042 13 427 3988898 56640 223.96620178222656 1.5024999999999999 324.36430000000001 13440 9997 0 0 0.059365983438523645 2.1081194948679065 4096 2048 64 1 16 427 320 0 64 0 6087463792 6121916 1 0 5 2 2 1 6 1228800 491520 491520 245857 1497600 27 25 25 26 324 2 0 0 0 11 0 0 0 0 0
271 270 1783859816174765500 REFRESH 29 0 0.75823444548063867 0.82027257240204421 3 10 3 10 0 0 1103 9 416 3988881 56640 238.19161987304688 1.4302999999999999 319.08569999999997 6720 5025 0 0 0.26278519260479372 0.96843308429688912 4096 2048 64 1 16 416 320 0 64 0 6088196336 6854460 1 0 6 1 2 1 6 1474560 245760 491520 245841 1497600 25 25 25 26 315 0 0 0 0 9 0 0 0 0 0
272 271 1783859816565376000 REFRESH 2 0 0.76229498339089552 0.45315161839863699 2 7 2 7 0 0 3526 72 411 3988949 56640 236.66586303710938 1.5699000000000001 331.25549999999998 13440 9720 0 0 0.2773399391733698 2.0710771777085544 4096 2048 64 1 16 411 320 0 64 0 6088923780 7581904 1 0 4 2 2 2 6 983040 491520 491520 491668 1497600 26 25 33 29 298 0 0 1 0 71 0 0 0 0 0
273 272 1783859816936523600 REFRESH 42 0 0.94426617535303015 0 0 4 0 4 0 0 4096 5 426 3987629 55200 227.74681091308594 1.4347000000000001 369.34350000000001 20160 12540 0 0 0 0.0063610145412278767 4096 2048 64 1 16 426 320 0 64 0 6089666524 8324648 1 0 4 3 3 3 3 983040 737280 737280 737519 748800 82 25 48 194 77 0 0 0 0 5 0 0 0 0 0
274 273 1783859817310506500 REFRESH 6 0 0.75554891270879831 0.91396933560476989 3 11 3 11 0 0 380 6 422 3988871 56640 236.57778930664062 1.4329000000000001 317.74110000000002 6720 4952 0 0 0.078472369408099776 0.14391543825984973 4096 2048 64 1 16 422 320 0 64 0 6090405188 9063312 1 0 6 1 2 1 6 1474560 245760 491520 245828 1497600 25 25 25 26 321 0 0 0 0 6 0 0 0 0 0
275 274 1783859817677771900 REFRESH 0 0 0.75261313735285573 0.8279386712095399 2 11 2 11 0 0 884 11 416 3988944 56640 229.56442260742188 1.4330000000000001 310.19540000000001 6720 4849 0 0 0.00014140214567446167 2.30096177437744 4096 2048 64 1 16 416 320 0 64 0 6091137732 9795856 1 0 5 1 2 2 6 1228800 245760 491520 491663 1497600 26 25 25 29 311 0 0 1 2 8 0 0 0 0 0
276 275 1783859818092929600 REFRESH 9 0 0.77037524892974452 0.27342419080068137 1 6 1 6 0 0 3088 43 414 3988961 56640 238.5479736328125 1.4724999999999999 344.07780000000002 13440 8697 0 0 0.00029749737042186297 0.32936763850020839 4096 2048 64 1 16 414 320 0 64 0 6091868236 10526360 1 0 4 2 2 2 6 983040 491520 491520 491681 1497600 26 25 27 38 298 0 0 0 1 42 0 0 0 0 0
277 276 1783859818469656700 REFRESH 45 0 0.76251166082391897 0.45315161839863699 2 7 2 7 0 0 2126 26 416 3988952 56640 226.10432434082031 1.4484999999999999 321.58159999999998 13440 9725 0 0 0.2309103244036371 1.4859222174523592 4096 2048 64 1 16 416 320 0 64 0 6092600780 11258904 1 0 4 2 2 2 6 983040 491520 491520 491672 1497600 27 25 25 31 308 1 0 0 0 25 0 0 0 0 0
278 277 1783859818782638300 REFRESH 49 0 0.75354093429579583 0.4454855195911413 3 6 3 6 0 0 1516 22 406 3988960 56640 224.11672973632812 1.4509000000000001 311.37740000000002 13440 9294 0 0 0.058061103203911842 2.3022417889218207 4096 2048 64 1 16 406 320 0 64 0 6093323124 11981248 1 0 4 2 2 2 6 983040 491520 491520 491679 1497600 25 26 30 35 290 0 0 0 2 20 0 0 0 0 0
279 278 1783859819152218200 REFRESH 51 0 0.76178378901368071 0.91396933560476989 3 11 3 11 0 0 535 12 408 3988886 56640 222.71897888183594 1.4545999999999999 304.21850000000001 6720 4928 0 0 0.04374756045180065 0.27288744213454319 4096 2048 64 1 16 408 320 0 64 0 6094047508 12705632 1 0 6 1 2 1 6 1474560 245760 491520 245846 1497600 27 25 25 27 304 0 0 0 0 12 0 0 0 0 0
280 279 1783859819520509100 REFRESH 30 0 0.76264092182952947 0.4608177172061329 1 8 1 8 0 0 3469 66 416 3988966 56640 223.393798828125 1.4246000000000001 309.55410000000001 6720 4688 0 0 0.0010823191780834386 1.5810805031597897 4096 2048 64 1 16 416 320 0 64 0 6094780052 13438176 1 0 5 1 2 2 6 1228800 245760 491520 491686 1497600 30 25 43 34 284 3 0 4 2 57 0 0 0 0 0
281 280 1783859819892324000 REFRESH 26 0 0.76052877696709942 0.64821124361158422 1 10 1 10 0 0 1834 51 416 3988969 56640 223.60887145996094 1.6487000000000001 313.9873 6720 4921 0 0 0.090960598249431271 0.70032506168692255 4096 2048 64 1 16 416 320 0 64 0 6095512596 14170720 1 0 5 1 2 2 6 1228800 245760 491520 491688 1497600 28 25 28 31 304 4 0 1 1 45 0 0 0 0 0
282 281 1783859820309318700 REFRESH 44 0 0.7556157485707794 0.36712095400340705 1 7 1 7 0 0 2246 22 424 3988951 56640 228.92442321777344 1.4318 358.12349999999998 13440 8597 0 0 0.027664597694635307 0.87919275545735165 4096 2048 64 1 16 424 320 0 64 0 6096253300 14911424 1 0 4 2 2 2 6 983040 491520 491520 491671 1497600 26 25 72 27 274 0 0 2 0 20 0 0 0 0 0
283 282 1783859820715151200 REFRESH 53 0 0.75566625672867505 0.37478705281090291 0 8 0 8 0 0 4096 55 413 3988983 56640 231.76602172851562 1.4383999999999999 340.4169 13440 8672 0 0 0 0.2106332408498392 4096 2048 64 1 16 413 320 0 64 0 6096982784 15640908 1 0 4 2 2 2 6 983040 491520 491520 491700 1497600 26 25 31 32 299 0 0 2 1 52 0 0 0 0 0
284 283 1783859821089446500 REFRESH 3 0 0.76051618190573222 0.64054514480408853 2 9 2 9 0 0 1112 14 407 3988878 56640 228.30284118652344 1.4396 317.32780000000002 13440 9911 0 0 0.0077247780151947464 0.15611804084716696 4096 2048 64 1 16 407 320 0 64 0 6097706148 16364272 1 0 5 2 2 1 6 1228800 491520 491520 245836 1497600 37 25 25 31 289 0 0 0 0 14 0 0 0 0 0
285 284 1783859821466489000 REFRESH 28 0 0.75306064580086374 0.8279386712095399 2 11 2 11 0 0 633 9 407 3988950 56640 223.46751403808594 1.4407000000000001 313.30029999999999 6720 4949 0 0 0.00022189812580462688 0.92047472736303015 4096 2048 64 1 16 407 320 0 64 0 6098429512 17087636 1 0 5 1 2 2 6 1228800 245760 491520 491669 1497600 26 25 25 26 305 0 0 0 0 9 0 0 0 0 0
286 285 1783859821864801900 REFRESH 40 0 0.76060504657377048 0.64821124361158422 1 10 1 10 0 0 1688 26 422 3988866 56640 223.7337646484375 1.8196000000000001 342.72280000000001 13440 9978 0 0 0.08315556845306328 0.52708806647616635 4096 2048 64 1 16 422 320 0 64 0 6099168176 17826300 1 0 5 2 2 1 6 1228800 491520 491520 245826 1497600 25 25 25 27 320 3 0 0 4 19 0 0 0 0 0
287 286 1783859822348556500 REFRESH 39 0 0.75579752943446388 0.55451448040885853 1 9 1 9 0 0 1580 14 425 3988956 56640 240.50483703613281 1.4317 362.71469999999999 13440 9495 0 0 0.00014839428778928599 1.5497505427452305 4096 2048 64 1 16 425 320 0 64 0 6099909900 18568024 1 0 4 2 2 2 6 983040 491520 491520 491675 1497600 25 25 36 45 294 3 1 1 0 9 0 0 0 0 0
288 287 1783859822714274300 REFRESH 14 0 0.76069365944654643 0.65587734241908002 0 11 0 11 0 0 1633 28 415 3988963 56640 228.41343688964844 1.4281999999999999 307.762 6720 4814 0 0 1.6719593580913314e-05 0.72140234505359491 4096 2048 64 1 16 415 320 0 64 0 6100641424 19299548 1 0 5 1 2 2 6 1228800 245760 491520 491682 1497600 27 25 27 27 309 0 0 1 0 27 0 0 0 0 0
289 288 1783859823118137300 REFRESH 13 0 0.77089374355456874 0.27342419080068137 1 6 1 6 0 0 4096 52 420 3988949 56640 225.20115661621094 1.4684999999999999 330.69670000000002 13440 8559 0 0 0.022786735533611113 0.15623055639937777 4096 2048 64 1 16 420 320 0 64 0 6101378048 20036172 1 0 4 2 2 2 6 983040 491520 491520 491669 1497600 26 25 68 33 268 0 0 6 3 43 0 0 0 0 0
290 289 1783859823502303300 REFRESH 15 0 0.75939465028876196 0.91396933560476989 3 11 3 11 0 0 322 11 409 3988881 56640 240.14028930664062 1.4350000000000001 321.42590000000001 6720 4979 0 0 0.13215737202774189 0.95319511763653475 4096 2048 64 1 16 409 320 0 64 0 6102103452 20761576 1 0 6 1 2 1 6 1474560 245760 491520 245841 1497600 28 26 25 25 305 1 0 0 0 10 0 0 0 0 0
291 290 1783859823944547800 REFRESH 17 0 0.77097266581024126 0.28109028960817717 0 7 0 7 0 0 3931 25 416 3988953 56640 224.15155029296875 1.4529000000000001 367.77800000000002 13440 8697 0 0 1.7384002172801471e-05 0.059782352022523813 4096 2048 64 1 16 416 320 0 64 0 6102835996 21494120 1 0 4 2 2 2 6 983040 491520 491520 491671 1497600 26 25 39 44 282 0 0 1 3 21 0 0 0 0 0
292 291 1783859824316279100 REFRESH 36 0 0.7533701353160388 0.82027257240204421 3 10 3 10 0 0 1224 24 407 3988961 56640 225.25541687011719 1.4314 312.69830000000002 6720 4823 0 0 0.063069086016965495 0.15492757616277195 4096 2048 64 1 16 407 320 0 64 0 6103559360 22217484 1 0 5 1 2 2 6 1228800 245760 491520 491679 1497600 25 25 25 28 304 0 0 0 0 24 0 0 0 0 0
293 292 1783859824739613300 REFRESH 56 0 0.78193212547612045 0.17206132879045993 2 4 2 4 0 0 4096 10 426 3988472 56160 225.45304870605469 1.4365000000000001 360.5179 20160 13985 0 0 0.0054355512702489233 0.48957545601177821 4096 2048 64 1 16 426 320 0 64 0 6104302104 22960228 1 0 4 3 2 2 5 983040 737280 491520 491670 1248000 38 25 25 252 86 1 0 1 0 8 0 0 0 0 0
294 293 1783859825124388000 REFRESH 12 0 0.76095800103976818 0.63287904599659284 3 8 3 8 0 0 1485 43 431 3988967 56640 224.81205749511719 1.4330000000000001 318.17230000000001 6720 4905 0 0 0.0015342879221033493 0.52805712610492539 4096 2048 64 1 16 431 320 0 64 0 6105049948 23708072 1 0 5 1 2 2 6 1228800 245760 491520 491685 1497600 35 25 25 32 314 0 0 0 1 42 0 0 0 0 0
295 294 1783859825503459000 REFRESH 21 0 0.75613615920700783 0.56218057921635434 0 10 0 10 0 0 2520 54 414 3988964 56640 223.73887634277344 1.4412 318.01179999999999 13440 9618 0 0 2.4584779324138999e-05 1.0722633759184834 4096 2048 64 1 16 414 320 0 64 0 6105780452 24438576 1 0 4 2 2 2 6 983040 491520 491520 491684 1497600 26 25 38 40 285 0 0 5 4 45 0 0 0 0 0
296 295 1783859825864985100 REFRESH 24 0 0.75929724268901522 1 4 11 4 11 0 0 491 12 411 3988962 56640 226.47807312011719 1.4305000000000001 304.66829999999999 6720 4953 0 0 0.027869521123281102 1.4468046609733554 4096 2048 64 1 16 411 320 0 64 0 6106507896 25166020 1 0 5 1 2 2 6 1228800 245760 491520 491682 1497600 27 25 25 27 307 0 0 0 0 12 0 0 0 0 0
297 296 1783859826246956600 REFRESH 34 0 0.75358933815396911 0.8356047700170357 1 12 1 12 1 0 707 12 413 3988899 56640 224.12696838378906 1.4321999999999999 317.3519 6720 4985 0 0 0.00020654801738738873 1.769932182842139 4096 2048 64 1 16 413 320 0 64 0 6107237380 25895504 1 0 6 1 2 1 6 1474560 245760 491520 245858 1497600 26 27 25 34 301 0 0 0 2 10 0 0 0 0 1
298 297 1783859826696889600 REFRESH 10 0 0.76113299480041996 0.64821124361158422 1 10 1 10 0 0 1140 18 422 3988865 56640 224.95654296875 1.4244000000000001 310.40730000000002 13440 10009 0 0 0.0023995083271502065 2.8416920354575197 4096 2048 64 1 16 422 320 0 64 0 6107976044 26634168 1 0 5 2 2 1 6 1228800 491520 491520 245824 1497600 26 25 25 28 318 3 0 0 3 12 0 0 0 0 0
299 298 1783859827068705000 REFRESH 18 0 0.76270676377470381 0.9293015332197615 1 13 1 13 1 0 441 12 411 3988945 56640 225.22572326660156 1.4419999999999999 311.66680000000002 6720 4856 0 0 0.001215977528803138 1.5422979655869309 4096 2048 64 1 16 411 320 0 64 0 6108703488 27361612 1 0 5 1 2 2 6 1228800 245760 491520 491665 1497600 25 25 25 26 310 0 0 0 0 12 0 0 0 0 1
300 299 1783859827493011800 REFRESH 25 0 0.7634887368901081 0.4608177172061329 1 8 1 8 0 0 2317 32 411 3988962 56640 225.46022033691406 1.4316 360.04730000000001 13440 9525 0 0 0.0002866720556610524 1.4641012066807393 4096 2048 64 1 16 411 320 0 64 0 6109430932 28089056 1 0 4 2 2 2 6 983040 491520 491520 491681 1497600 26 25 33 32 295 0 0 3 4 25 0 0 0 0 0
301 300 1783859827893321300 REFRESH 54 0 0.7635305057241627 0.4608177172061329 1 8 1 8 0 0 1191 14 420 3988944 56640 223.43064880371094 1.4578 337.48750000000001 13440 9650 0 0 0.00048566486093188938 1.0664299709342928 4096 2048 64 1 16 420 320 0 64 0 6110167556 28825680 1 0 4 2 2 2 6 983040 491520 491520 491664 1497600 26 25 44 53 272 0 0 0 0 14 0 0 0 0 0
302 301 1783859828254190100 REFRESH 7 0 0.75383096429550178 0.8356047700170357 1 12 1 12 1 0 868 21 408 3988949 56640 224.18739318847656 1.4401999999999999 300.79969999999997 6720 4898 0 0 0.00025497451229948798 0.8256864504409217 4096 2048 64 1 16 408 320 0 64 0 6110891940 29550064 1 0 5 1 2 2 6 1228800 245760 491520 491667 1497600 25 25 25 25 308 0 0 0 0 21 0 0 0 0 1
303 302 1783859828627255700 REFRESH 43 0 0.75385036752150569 0.8279386712095399 2 11 2 11 0 0 779 13 422 3988956 56640 225.06291198730469 1.4319999999999999 312.44499999999999 6720 4923 0 0 0.009842172204325185 1.2471290918008606 4096 2048 64 1 16 422 320 0 64 0 6111630604 30288728 1 0 5 1 2 2 6 1228800 245760 491520 491676 1497600 26 25 25 48 298 0 0 0 2 11 0 0 0 0 0
304 303 1783859829052037800 REFRESH 37 0 0.75389366110711165 0.8356047700170357 1 12 1 12 0 0 991 18 408 3988886 56640 224.94003295898438 1.4262999999999999 304.3295 6720 4958 0 0 0.0033651663875057473 0.47165320917887499 4096 2048 64 1 16 408 320 0 64 0 6112354988 31013112 1 0 6 1 2 1 6 1474560 245760 491520 245844 1497600 26 26 25 31 300 0 0 0 0 18 0 0 0 0 0
305 304 1783859831352938600 DEPTH 42 1 0.93623885515355454 0 0 4 0 4 0 0 4096 18 2593 23677553 81600 1307.8773651123047 8.7285000000000004 2178.6356000000001 120960 59732 1 0 0 0.0063610145412278767 4096 2048 384 12 96 2593 1920 0 384 1 6116858756 35516880 1 0 4 3 3 3 3 5898240 4423680 4423680 4426479 4492800 395 150 245 1146 657 0 0 0 0 18 0 0 0 0 0
306 305 1783859833447898900 DEPTH 8 1 0.76417980186552747 0.26575809199318562 2 5 2 5 0 0 2381 37 2556 23742657 147840 1304.7470855712891 8.6632999999999996 2003.6455000000001 80640 42672 1 0 0.030103035119069095 0.91796646697047368 4096 2048 384 12 96 2556 1920 0 384 1 6121324784 39982908 1 0 4 2 2 2 6 5898240 2949120 2949120 2950944 8985600 150 153 150 156 1947 0 0 0 0 37 0 0 0 0 0
307 306 1783859835633143400 DEPTH 48 1 0.76421713989541695 0.26575809199318562 2 5 2 5 0 0 2449 32 2588 23742867 147840 1295.3057556152344 8.6809000000000012 2122.5641999999998 80640 42595 1 0 0.0046043101471456684 0.20405439432789962 4096 2048 384 12 96 2588 1920 0 384 1 6125823452 44481576 1 0 4 2 2 2 6 5898240 2949120 2949120 2950974 8985600 150 150 150 150 1988 0 0 0 2 30 0 0 0 0 0
308 307 1783859837827238000 DEPTH 9 1 0.76425442643063035 0.27342419080068137 1 6 1 6 0 0 3114 73 2529 23742775 147840 1316.1339721679688 8.8003 2135.5412999999999 80640 42821 1 0 0.00029749737042186297 0.32936763850020839 4096 2048 384 12 96 2529 1920 0 384 1 6130261940 48920064 1 0 4 2 2 2 6 5898240 2949120 2949120 2950992 8985600 156 150 156 162 1905 0 0 4 1 68 0 0 0 0 0
309 308 1783859840045055200 DEPTH 57 1 0.76429166160875961 0.27342419080068137 1 6 1 6 1 0 4096 44 2544 23742759 147840 1357.6306610107422 8.6378000000000004 2215.1531 80640 42989 1 0 0.0007301784849736558 0.45465524976525634 4096 2048 384 12 96 2544 1920 0 384 1 6134715728 53373852 1 0 4 2 2 2 6 5898240 2949120 2949120 2950949 8985600 156 150 193 191 1854 0 0 2 3 39 0 0 0 0 1
310 309 1783859842388958000 DEPTH 20 1 0.75939224556685214 0.26575809199318562 2 5 2 5 0 0 2100 45 2590 23720525 125760 1390.5732574462891 9.4380000000000006 2272.4083000000001 80640 45837 1 0 0.001771835568079596 0.77081764157800148 4096 2048 384 12 96 2590 1920 0 384 1 6139216436 57874560 1 0 5 2 2 2 5 7372800 2949120 2949120 2950910 7488000 150 150 154 284 1852 0 0 18 0 27 0 0 0 0 0
311 310 1783859844567379000 DEPTH 2 1 0.75488058084305398 0.45315161839863699 2 7 2 7 0 0 3554 106 2542 23742671 147840 1299.5737609863281 9.0709 2120.9535000000001 80640 45724 1 0 0.2773399391733698 2.0710771777085544 4096 2048 384 12 96 2542 1920 0 384 1 6143668184 62326308 1 0 4 2 2 2 6 5898240 2949120 2949120 2950976 8985600 156 150 163 156 1917 0 0 14 1 91 0 0 0 0 0
312 311 1783859846762567400 DEPTH 45 1 0.75492022309050144 0.45315161839863699 2 7 2 7 0 0 2131 34 2586 23742675 147840 1301.6227722167969 8.6951000000000001 2117.5291000000002 80640 45843 1 0 0.2309103244036371 1.4859222174523592 4096 2048 384 12 96 2586 1920 0 384 1 6148164812 66822936 1 0 4 2 2 2 6 5898240 2949120 2949120 2950979 8985600 150 150 150 156 1980 0 0 0 4 30 0 0 0 0 0
313 312 1783859850139495000 DEPTH 42 1 0.76306553629810214 0 0 4 0 4 0 0 4096 16 2587 23677481 81600 1290.0669555664062 8.6252999999999993 3316.6455999999998 120960 49373 1 0 0 0.0063610145412278767 4096 2048 384 12 96 2587 1920 0 384 1 6152662540 4212308 1 0 4 3 3 3 3 5898240 4423680 4423680 4426432 4492800 392 150 231 1236 578 0 0 0 0 16 0 0 0 0 0
314 313 1783859852250616100 DEPTH 32 1 0.75499934476824382 0.4608177172061329 1 8 1 8 0 0 2977 80 2551 23741875 147840 1288.2001953125 8.6305999999999994 2046.3279 80640 44622 1 0 0.0011665864340913636 1.8037808584357806 4096 2048 384 12 96 2551 1920 0 384 1 6157123468 8673236 1 0 5 2 2 1 6 7127040 2949120 2949120 1721382 8985600 150 150 156 156 1939 0 0 11 18 51 0 0 0 0 0
315 314 1783859854545681500 DEPTH 30 1 0.75503882448639581 0.4608177172061329 1 8 1 8 0 0 3485 95 2526 23742638 147840 1313.08544921875 8.7832000000000008 2152.8955999999998 67200 37625 1 0 0.0010823191780834386 1.5810805031597897 4096 2048 384 12 96 2526 1920 0 384 1 6161558896 13108664 1 0 4 2 2 2 6 6389760 2457600 2949120 2950941 8985600 168 150 199 195 1814 5 0 6 8 76 0 0 0 0 0
316 315 1783859856872996500 DEPTH 13 1 0.76455088130140414 0.27342419080068137 1 6 1 6 0 0 4096 50 2561 23742911 147840 1344.2642059326172 8.6227 2194.7676000000001 80640 42494 1 0 0.022786735533611113 0.15623055639937777 4096 2048 384 12 96 2561 1920 0 384 1 6166030024 17579792 1 0 4 2 2 2 6 5898240 2949120 2949120 2951023 8985600 154 150 155 150 1952 0 0 1 5 44 0 0 0 0 0
317 316 1783859859008769600 DEPTH 26 1 0.75182274667350468 0.64821124361158422 1 10 1 10 1 0 1864 89 2565 23742642 147840 1329.6221923828125 8.6128999999999998 2074.7934 47040 29201 1 0 0.0023266425042342159 1.1740011678228659 4096 2048 384 12 96 2565 1920 0 384 1 6170505232 22055000 1 0 4 2 2 2 6 7127040 1720320 2949120 2950947 8985600 163 150 165 156 1931 19 6 5 7 52 0 0 1 0 0
318 317 1783859860864500100 DEPTH 51 1 0.75176627702935039 0.91396933560476989 3 11 3 11 1 0 535 30 2569 23741735 147840 1278.4854888916016 8.6023999999999994 1801.9456 47040 27111 1 0 0.044092769239544943 0.28194752902809894 4096 2048 384 12 96 2569 1920 0 384 1 6174984520 26534288 1 0 6 1 2 1 6 8601600 1720320 2949120 1475480 8985600 162 150 150 162 1945 0 1 0 1 28 0 0 0 0 1
319 318 1783859862906424200 DEPTH 22 1 0.75180868809061863 0.91396933560476989 3 11 3 11 0 0 474 43 2567 23742637 147840 1350.8653564453125 8.6508000000000003 1893.0464999999999 40320 22951 1 0 0.0083533723482868329 0.70040182967037024 4096 2048 384 12 96 2567 1920 0 384 1 6179461768 31011536 1 0 5 1 2 2 6 7372800 1474560 2949120 2950940 8985600 150 150 150 150 1967 0 0 0 0 43 0 0 0 0 0
320 319 1783859864785277700 DEPTH 58 1 0.75185104155670768 0.92163543441226559 2 12 2 12 0 0 527 19 2547 23741699 147840 1290.7787170410156 8.6688000000000009 1822.2824000000001 47040 26761 1 0 0.0096214935481512883 1.6134051887685537 4096 2048 384 12 96 2547 1920 0 384 1 6183918616 35468384 1 0 6 1 2 1 6 8601600 1720320 2949120 1475445 8985600 163 150 150 150 1934 0 0 0 0 19 0 0 0 0 0
321 320 1783859867003879800 DEPTH 56 1 0.77665699930989474 0.17206132879045993 2 4 2 4 0 0 4096 59 2581 23712856 118080 1303.3830261230469 8.6735000000000007 2144.6801 134400 78744 1 0 0.0054355512702489233 0.48957545601177821 4096 2048 384 12 96 2581 1920 0 384 1 6188410144 39959912 1 0 4 4 2 2 4 5898240 4915200 2949120 2950917 6988800 178 150 151 1325 777 0 0 4 7 48 0 0 0 0 0
322 321 1783859869156145100 DEPTH 17 1 0.76477110705550211 0.28109028960817717 0 7 0 7 0 0 3946 49 2560 23742878 147840 1270.1327362060547 8.6295999999999999 2085.4821999999999 80640 42696 1 0 1.7384002172801471e-05 0.059782352022523813 4096 2048 384 12 96 2560 1920 0 384 1 6192880252 44430020 1 0 4 2 2 2 6 5898240 2949120 2949120 2950955 8985600 156 150 156 162 1936 0 0 1 0 48 0 0 0 0 0
323 322 1783859871274673800 DEPTH 42 1 0.7800124779260057 0 0 4 0 4 0 0 4096 18 2590 23677678 81600 1274.3060455322266 8.6318000000000001 2117.3424 120960 39352 1 0 0 0.0063610145412278767 4096 2048 384 12 96 2590 1920 0 384 1 6197380960 48930728 1 0 4 3 3 3 3 5898240 4423680 4423680 4426497 4492800 370 150 219 1299 552 0 0 0 0 18 0 0 0 0 0
324 323 1783859873075036600 DEPTH 27 1 0.75201988249135643 0.93696763202725719 0 14 0 14 1 0 879 54 2508 23741698 147840 1279.2626342773438 8.5945999999999998 1736.8150000000001 47040 27163 1 0 4.4782237923609263e-06 0.9356687662810621 4096 2048 384 12 96 2508 1920 0 384 1 6201798028 53347796 1 0 6 1 2 1 6 8601600 1720320 2949120 1475442 8985600 156 150 150 150 1902 0 0 0 0 54 0 0 0 0 1
325 324 1783859874882122400 DEPTH 12 1 0.75201589251596102 0.63287904599659284 3 8 3 8 0 0 1518 119 2632 23742302 147840 1274.9720916748047 8.7653999999999996 1748.1923999999999 80640 47315 1 0 0.0015342879221033493 0.52805712610492539 4096 2048 384 12 96 2632 1920 0 384 1 6206341576 57891344 1 0 4 2 2 2 6 6389760 2949120 2949120 2459087 8985600 157 150 150 152 2023 2 0 1 1 115 0 0 0 0 0
326 325 1783859876877024400 DEPTH 3 1 0.75205625543386667 0.64054514480408853 2 9 2 9 0 0 1115 31 2531 23742311 147840 1265.0391845703125 8.7083999999999993 1942.6298999999999 80640 46501 1 0 0.0077247780151947464 0.15611804084716696 4096 2048 384 12 96 2531 1920 0 384 1 6210782104 62331872 1 0 4 2 2 2 6 6389760 2949120 2949120 2459092 8985600 164 158 150 156 1903 0 1 0 3 27 0 0 0 0 0
327 326 1783859878902894300 DEPTH 40 1 0.75209656402350744 0.64821124361158422 1 10 1 10 0 0 1716 76 2568 23742384 147840 1269.3582153320312 8.6222999999999992 1972.0811000000001 80640 46570 1 0 0.08315556845306328 0.52708806647616635 4096 2048 384 12 96 2568 1920 0 384 1 6215260372 66810140 1 0 4 2 2 2 6 6389760 2949120 2949120 2459171 8985600 150 150 150 154 1964 6 12 2 7 49 0 0 0 0 0
328 327 1783859880429641500 DEPTH 14 1 0.75213681842657332 0.65587734241908002 0 11 0 11 0 0 1633 16 426 3965101 32640 222.63194274902344 1.4303999999999999 1472.8162 6720 5351 0 0 1.6719593580913314e-05 0.72140234505359491 4096 2048 64 2 16 426 320 0 64 0 6216003196 444144 1 0 5 1 2 2 6 1228800 245760 491520 491821 1497600 26 25 26 25 324 0 0 1 0 15 0 0 0 0 0
@@ -0,0 +1,53 @@
format szilassi-global-search-v5
run_id 39968628-bdef-4c6f-9617-c1fcd722ec3a
node_id LOOKICH
seed 1082316127
topology_from 0
topology_to 58
backend cuda-fp32
objective_version 5
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-neural-v3
control_baseline_min_fraction 0.25
strategy_weights adaptive-total:16,floors:baseline4/replica1/adaptive1/pbt1/injected3,max6
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
fp32_population_sample per-producing-strategy:64,finite-chain-bests-before-host-selection,deterministic-circular-offset,exact-numerator-denominator-recorded
accounted_fp32_steps iterations-plus-initialization-fresh-stagnation-injection-pbt-and-retries
map_elites_bins determinant:8,edge:8,turn:8,extent:8,crossing-face-mask:12,intersection-face-mask:12
map_elites_max_cells_per_topology 4096
cem diagonal-weighted,covariance-adaptation:0.18,new-injected-only
intersection_loss segment-depth-times-boundary-depth,weight:0.01,cap:4
repair injected-quarter,offending-face-biased,neural-policy-with-exploration
neural_enabled 1
neural_schema 2
neural_model_format 2
neural per-topology-ensemble:5,residual-mlp:45-128-128-128,value-policy,online-adamw,replay:4096,recent:25%
neural_safety baseline-floor:25%,policy-exploration:25%,exact-cuda-plus-cpu-dd-authoritative
training_archive_schema 3
training_archive_format 3
training_archive_layout run-uuid/immutable-64MiB-crc-shards-plus-durable-wal
training_archive_records seed-proposals,stratified-fp32-chain-bests,cpu-verified,anchor-injected-result,spsa-steps,legacy-replay
training_cache_limit_bytes 200000000000
training_cache_accounted_bytes_at_start 5410257628
training_neural_model_reserve_bytes 251207948
training_collection_enabled_at_start 1
training_recovered_wals 0
training_wals_deferred_at_limit 0
training_recovered_records 0
training_recovered_torn_bytes_discarded 0
training_limit_behavior freeze-collection-and-online-learning;search-continues;rewrite-warning
spsa adam:6,cpu-double,all-plus-minus-and-updated-double-states,c-plus-i-smooth-loss,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
1 format szilassi-global-search-v5
2 run_id 39968628-bdef-4c6f-9617-c1fcd722ec3a
3 node_id LOOKICH
4 seed 1082316127
5 topology_from 0
6 topology_to 58
7 backend cuda-fp32
8 objective_version 5
9 cuda_math standard-fp32
10 cuda_chains_requested 0
11 cuda_chains_effective 61440
12 cuda_iterations_per_batch 64
13 cuda_depth_batches 6
14 cuda_session_cache 59
15 algorithm hybrid-quality-diversity-neural-v3
16 control_baseline_min_fraction 0.25
17 strategy_weights adaptive-total:16,floors:baseline4/replica1/adaptive1/pbt1/injected3,max6
18 fresh_fractions depth:1/4,breadth:7/8,injected-protected
19 replica_exchange group:8,temperature-ratio:16
20 pbt rotating-pairs,depth-chance:0.08,breadth-chance:0.04
21 verification_quotas overall:128,per-strategy:max(8,overall/5),per-injected-seed:1
22 fp32_population_sample per-producing-strategy:64,finite-chain-bests-before-host-selection,deterministic-circular-offset,exact-numerator-denominator-recorded
23 accounted_fp32_steps iterations-plus-initialization-fresh-stagnation-injection-pbt-and-retries
24 map_elites_bins determinant:8,edge:8,turn:8,extent:8,crossing-face-mask:12,intersection-face-mask:12
25 map_elites_max_cells_per_topology 4096
26 cem diagonal-weighted,covariance-adaptation:0.18,new-injected-only
27 intersection_loss segment-depth-times-boundary-depth,weight:0.01,cap:4
28 repair injected-quarter,offending-face-biased,neural-policy-with-exploration
29 neural_enabled 1
30 neural_schema 2
31 neural_model_format 2
32 neural per-topology-ensemble:5,residual-mlp:45-128-128-128,value-policy,online-adamw,replay:4096,recent:25%
33 neural_safety baseline-floor:25%,policy-exploration:25%,exact-cuda-plus-cpu-dd-authoritative
34 training_archive_schema 3
35 training_archive_format 3
36 training_archive_layout run-uuid/immutable-64MiB-crc-shards-plus-durable-wal
37 training_archive_records seed-proposals,stratified-fp32-chain-bests,cpu-verified,anchor-injected-result,spsa-steps,legacy-replay
38 training_cache_limit_bytes 200000000000
39 training_cache_accounted_bytes_at_start 5410257628
40 training_neural_model_reserve_bytes 251207948
41 training_collection_enabled_at_start 1
42 training_recovered_wals 0
43 training_wals_deferred_at_limit 0
44 training_recovered_records 0
45 training_recovered_torn_bytes_discarded 0
46 training_limit_behavior freeze-collection-and-online-learning;search-continues;rewrite-warning
47 spsa adam:6,cpu-double,all-plus-minus-and-updated-double-states,c-plus-i-smooth-loss,fp32-roundtrip,final-canonical-dd-gate
48 topology_scheduler ucb-plus-reward-plus-staleness,full-refresh-every-5
49 topology_scheduler_mode quality-first
50 worst_priority_coefficient 0.65
51 cpu_iterations_per_trial 50000
52 degeneracy_formula worst-plus-0.05-rest
53 degeneracy_weight 0.01

Some files were not shown because too many files have changed in this diff Show More