diff --git a/.gitattributes b/.gitattributes
index 1a86827760baf02a662466b8c055d0cd14287465..75a0f5ef9bdcae674fcc8245fc4003996e46e559 100644
--- a/.gitattributes
+++ b/.gitattributes
@@ -59,3 +59,7 @@ notebooks/00a_Data[[:space:]]Analysis_greedy_decoding.ipynb filter=lfs diff=lfs
notebooks/00b_Data[[:space:]]Analysis_Few_Shots.ipynb filter=lfs diff=lfs merge=lfs -text
notebooks/01_Few-shot_Prompting.ipynb filter=lfs diff=lfs merge=lfs -text
notebooks/01a_Few-shot_Prompting.ipynb filter=lfs diff=lfs merge=lfs -text
+logs/l40-1gpu.txt filter=lfs diff=lfs merge=lfs -text
+logs/l40-4gpu.txt filter=lfs diff=lfs merge=lfs -text
+logs/openai-gpt-4o-mini.txt filter=lfs diff=lfs merge=lfs -text
+logs/openai-gpt-4o.txt filter=lfs diff=lfs merge=lfs -text
diff --git a/llm_toolkit/translation_utils.py b/llm_toolkit/translation_utils.py
index 50950a83ca59449ea1c85afcc61d0b7e062681b4..e58598002c97dd33593dc0beef85d8c34fc674c8 100644
--- a/llm_toolkit/translation_utils.py
+++ b/llm_toolkit/translation_utils.py
@@ -1,5 +1,6 @@
import os
import re
+import glob
import pandas as pd
import evaluate
import seaborn as sns
@@ -482,3 +483,82 @@ def eval_openai(num_shots, datasets, model="gpt-4o-mini", max_new_tokens=300):
predictions.append(output)
return predictions
+
+
+def convert_time_to_minutes(time_str):
+ # print(f"converting time_str: {time_str}")
+ # Split the time string into its components
+ time_parts = list(map(int, time_str.split(":")))
+
+ # Initialize total minutes
+ total_minutes = 0
+
+ # Calculate total minutes based on the number of parts
+ if len(time_parts) == 3: # HH:MM:SS
+ hours, minutes, seconds = time_parts
+ total_minutes = hours * 60 + minutes + seconds / 60
+ elif len(time_parts) == 2: # MM:SS
+ minutes, seconds = time_parts
+ total_minutes = minutes + seconds / 60
+ elif len(time_parts) == 1: # SS
+ seconds = time_parts[0]
+ total_minutes = seconds / 60
+
+ return total_minutes
+
+
+time_pattern = re.compile(r"\[(.{5,10})<00:00")
+metrics_pattern = re.compile(r"(.*)/shots-(.*) metrics:")
+
+
+def process_log_file(log_file):
+ model = []
+ shots = []
+ eval_time = []
+
+ with open(log_file, "r") as f:
+ try:
+ for line in f:
+ matches = time_pattern.search(line)
+ if matches:
+ time_pattern_matches = matches
+ else:
+ matches = metrics_pattern.search(line)
+ if matches:
+ metrics_pattern_matches = matches
+ groups = metrics_pattern_matches.groups()
+
+ model.append(groups[0])
+ shots.append(groups[1])
+
+ groups = time_pattern_matches.groups()
+ time_str = groups[0]
+ eval_time.append(convert_time_to_minutes(time_str))
+ except Exception as e:
+ print(f"Error processing log file: {log_file}")
+ print(e)
+
+ df = pd.DataFrame(
+ {
+ "model": model,
+ "shots": shots,
+ "eval_time": eval_time,
+ }
+ )
+ return df
+
+
+def load_eval_times(logs_folder):
+ # Get a list of all files in the logs folder
+ log_files = glob.glob(os.path.join(logs_folder, "*"))
+ log_files.sort()
+
+ time_df = pd.DataFrame({"model": [], "shots": [], "eval_time": []})
+
+ for log_file in log_files:
+ print(f"Loading content of {log_file}")
+ df = process_log_file(log_file)
+ time_df = pd.concat([time_df, df], ignore_index=True)
+
+ time_df["shots"] = time_df["shots"].apply(lambda x: int(x))
+ return time_df
diff --git a/logs/l40-1gpu.txt b/logs/l40-1gpu.txt
index 1c9f51ddbe1e7e42c666d3e0ffc3ed0223a5b2b3..f650b9b08889d378bfd8788b6ae43c9a7d53abdf 100644
--- a/logs/l40-1gpu.txt
+++ b/logs/l40-1gpu.txt
@@ -1,1223 +1,3 @@
-Submitting job: /common/home/users/d/dh.huang.2023/code/rapget-translation/scripts/eval-mac.sh
-Current Directory:
-/common/home/users/d/dh.huang.2023/code/rapget-translation
-Mon Aug 5 14:06:44 2024
-+-----------------------------------------------------------------------------------------+
-| NVIDIA-SMI 550.90.07 Driver Version: 550.90.07 CUDA Version: 12.4 |
-|-----------------------------------------+------------------------+----------------------+
-| GPU Name Persistence-M | Bus-Id Disp.A | Volatile Uncorr. ECC |
-| Fan Temp Perf Pwr:Usage/Cap | Memory-Usage | GPU-Util Compute M. |
-| | | MIG M. |
-|=========================================+========================+======================|
-| 0 NVIDIA L40 On | 00000000:01:00.0 Off | 0 |
-| N/A 38C P8 34W / 300W | 1MiB / 46068MiB | 0% Default |
-| | | N/A |
-+-----------------------------------------+------------------------+----------------------+
-
-+-----------------------------------------------------------------------------------------+
-| Processes: |
-| GPU GI CI PID Type Process name GPU Memory |
-| ID ID Usage |
-|=========================================================================================|
-| No running processes found |
-+-----------------------------------------------------------------------------------------+
-Linux lithium 4.18.0-553.5.1.el8_10.x86_64 #1 SMP Thu Jun 6 09:41:19 UTC 2024 x86_64 x86_64 x86_64 GNU/Linux
-NAME="Rocky Linux"
-VERSION="8.10 (Green Obsidian)"
-ID="rocky"
-ID_LIKE="rhel centos fedora"
-VERSION_ID="8.10"
-PLATFORM_ID="platform:el8"
-PRETTY_NAME="Rocky Linux 8.10 (Green Obsidian)"
-ANSI_COLOR="0;32"
-LOGO="fedora-logo-icon"
-CPE_NAME="cpe:/o:rocky:rocky:8:GA"
-HOME_URL="https://rockylinux.org/"
-BUG_REPORT_URL="https://bugs.rockylinux.org/"
-SUPPORT_END="2029-05-31"
-ROCKY_SUPPORT_PRODUCT="Rocky-Linux-8"
-ROCKY_SUPPORT_PRODUCT_VERSION="8.10"
-REDHAT_SUPPORT_PRODUCT="Rocky Linux"
-REDHAT_SUPPORT_PRODUCT_VERSION="8.10"
-Architecture: x86_64
-CPU op-mode(s): 32-bit, 64-bit
-Byte Order: Little Endian
-CPU(s): 128
-On-line CPU(s) list: 0-127
-Thread(s) per core: 2
-Core(s) per socket: 64
-Socket(s): 1
-NUMA node(s): 1
-Vendor ID: AuthenticAMD
-CPU family: 25
-Model: 1
-Model name: AMD EPYC 7763 64-Core Processor
-Stepping: 1
-CPU MHz: 3092.934
-CPU max MHz: 3529.0520
-CPU min MHz: 1500.0000
-BogoMIPS: 4890.62
-Virtualization: AMD-V
-L1d cache: 32K
-L1i cache: 32K
-L2 cache: 512K
-L3 cache: 32768K
-NUMA node0 CPU(s): 0-127
-Flags: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca fsrm
-MemTotal: 527670712 kB
-Current Directory:
-/common/home/users/d/dh.huang.2023/code/rapget-translation
-Evaluating internlm/internlm2_5-7b-chat
-[nltk_data] Downloading package wordnet to
-[nltk_data] /common/home/users/d/dh.huang.2023/nltk_data...
-[nltk_data] Package wordnet is already up-to-date!
-[nltk_data] Downloading package punkt to
-[nltk_data] /common/home/users/d/dh.huang.2023/nltk_data...
-[nltk_data] Package punkt is already up-to-date!
-[nltk_data] Downloading package omw-1.4 to
-[nltk_data] /common/home/users/d/dh.huang.2023/nltk_data...
-[nltk_data] Package omw-1.4 is already up-to-date!
-[nltk_data] Downloading package wordnet to
-[nltk_data] /common/home/users/d/dh.huang.2023/nltk_data...
-[nltk_data] Package wordnet is already up-to-date!
-[nltk_data] Downloading package punkt to
-[nltk_data] /common/home/users/d/dh.huang.2023/nltk_data...
-[nltk_data] Package punkt is already up-to-date!
-[nltk_data] Downloading package omw-1.4 to
-[nltk_data] /common/home/users/d/dh.huang.2023/nltk_data...
-[nltk_data] Package omw-1.4 is already up-to-date!
-loading env vars from: /common2/dh.huang.2023/code/rapget-translation/.env.example
-Adding /common2/dh.huang.2023/code/rapget-translation to sys.path
-loading: /common2/dh.huang.2023/code/rapget-translation/eval_modules/calc_repetitions.py
-loading /common2/dh.huang.2023/code/rapget-translation/llm_toolkit/translation_utils.py
-CUDA is available, we have found 1 GPU(s)
-NVIDIA L40
-CUDA version: 12.1
-internlm/internlm2_5-7b-chat None False datasets/mac/mac.tsv results/mac-results_few_shots.csv False 300 2
-(0) GPU = NVIDIA L40. Max memory = 44.309 GB.
-0.0 GB of memory reserved.
-loading model: internlm/internlm2_5-7b-chat with adapter: None
-
Loading checkpoint shards: 0%| | 0/8 [00:00, ?it/s]
Loading checkpoint shards: 12%|█▎ | 1/8 [00:01<00:11, 1.69s/it]
Loading checkpoint shards: 25%|██▌ | 2/8 [00:03<00:10, 1.71s/it]
Loading checkpoint shards: 38%|███▊ | 3/8 [00:05<00:08, 1.72s/it]
Loading checkpoint shards: 50%|█████ | 4/8 [00:06<00:06, 1.72s/it]
Loading checkpoint shards: 62%|██████▎ | 5/8 [00:08<00:05, 1.72s/it]
Loading checkpoint shards: 75%|███████▌ | 6/8 [00:10<00:03, 1.72s/it]
Loading checkpoint shards: 88%|████████▊ | 7/8 [00:12<00:01, 1.72s/it]
Loading checkpoint shards: 100%|██████████| 8/8 [00:13<00:00, 1.65s/it]
Loading checkpoint shards: 100%|██████████| 8/8 [00:13<00:00, 1.69s/it]
-(2) GPU = NVIDIA L40. Max memory = 44.309 GB.
-14.416 GB of memory reserved.
-Evaluating model: internlm/internlm2_5-7b-chat on cuda
-*** Evaluating with num_shots: 0
-loading train/test data files
-
Map: 0%| | 0/4528 [00:00, ? examples/s]
Map: 88%|████████▊ | 4000/4528 [00:00<00:00, 37738.41 examples/s]
Map: 100%|██████████| 4528/4528 [00:00<00:00, 38411.37 examples/s]
-
Map: 0%| | 0/1133 [00:00, ? examples/s]
Map: 100%|██████████| 1133/1133 [00:00<00:00, 47398.23 examples/s]
-DatasetDict({
- train: Dataset({
- features: ['chinese', 'english', 'text', 'prompt'],
- num_rows: 4528
- })
- test: Dataset({
- features: ['chinese', 'english', 'text', 'prompt'],
- num_rows: 1133
- })
-})
---------------------------------------------------
-chinese: 老耿端起枪,眯缝起一只三角眼,一搂扳机响了枪,冰雹般的金麻雀劈哩啪啦往下落,铁砂子在柳枝间飞迸着,嚓嚓有声。
---------------------------------------------------
-english: Old Geng picked up his shotgun, squinted, and pulled the trigger. Two sparrows crashed to the ground like hailstones as shotgun pellets tore noisily through the branches.
---------------------------------------------------
-text: <|im_start|>system
-You are a helpful assistant that translates Chinese to English.<|im_end|>
-<|im_start|>user
-You will be given a Chinese sentence to translate. If it is an incomplete sentence, or if you are unsure about the meaning, simply copy the input text as your output. Do not output any additional sentence such as explanation or reasoning.
-
-Chinese: 老耿端起枪,眯缝起一只三角眼,一搂扳机响了枪,冰雹般的金麻雀劈哩啪啦往下落,铁砂子在柳枝间飞迸着,嚓嚓有声。
-English:<|im_end|>
-<|im_start|>assistant
-Old Geng picked up his shotgun, squinted, and pulled the trigger. Two sparrows crashed to the ground like hailstones as shotgun pellets tore noisily through the branches.
---------------------------------------------------
-prompt: <|im_start|>system
-You are a helpful assistant that translates Chinese to English.<|im_end|>
-<|im_start|>user
-You will be given a Chinese sentence to translate. If it is an incomplete sentence, or if you are unsure about the meaning, simply copy the input text as your output. Do not output any additional sentence such as explanation or reasoning.
-
-Chinese: 老耿端起枪,眯缝起一只三角眼,一搂扳机响了枪,冰雹般的金麻雀劈哩啪啦往下落,铁砂子在柳枝间飞迸着,嚓嚓有声。
-English:<|im_end|>
-<|im_start|>assistant
-
-
0%| | 0/567 [00:00, ?it/s]
0%| | 1/567 [00:04<37:44, 4.00s/it]
0%| | 2/567 [00:09<44:50, 4.76s/it]
1%| | 3/567 [00:12<38:50, 4.13s/it]
1%| | 4/567 [00:19<47:02, 5.01s/it]
1%| | 5/567 [00:19<33:09, 3.54s/it]
1%| | 6/567 [00:21<27:45, 2.97s/it]
1%| | 7/567 [00:22<21:17, 2.28s/it]
1%|▏ | 8/567 [00:25<24:05, 2.59s/it]
2%|▏ | 9/567 [00:29<25:28, 2.74s/it]
2%|▏ | 10/567 [00:31<23:44, 2.56s/it]
2%|▏ | 11/567 [00:34<25:45, 2.78s/it]
2%|▏ | 12/567 [00:35<21:24, 2.32s/it]
2%|▏ | 13/567 [00:38<23:19, 2.53s/it]
2%|▏ | 14/567 [00:39<19:45, 2.14s/it]
3%|▎ | 15/567 [00:40<15:53, 1.73s/it]
3%|▎ | 16/567 [00:42<16:49, 1.83s/it]
3%|▎ | 17/567 [00:47<25:31, 2.78s/it]
3%|▎ | 18/567 [00:49<21:54, 2.39s/it]
3%|▎ | 19/567 [00:50<18:24, 2.02s/it]
4%|▎ | 20/567 [00:51<17:00, 1.87s/it]
4%|▎ | 21/567 [00:54<20:06, 2.21s/it]
4%|▍ | 22/567 [00:56<17:55, 1.97s/it]
4%|▍ | 23/567 [00:59<21:45, 2.40s/it]
4%|▍ | 24/567 [01:01<19:05, 2.11s/it]
4%|▍ | 25/567 [01:02<15:59, 1.77s/it]
5%|▍ | 26/567 [01:05<19:07, 2.12s/it]
5%|▍ | 27/567 [01:06<16:45, 1.86s/it]
5%|▍ | 28/567 [01:11<25:27, 2.83s/it]
5%|▌ | 29/567 [01:14<25:06, 2.80s/it]
5%|▌ | 30/567 [01:16<24:01, 2.68s/it]
5%|▌ | 31/567 [01:17<18:58, 2.12s/it]
6%|▌ | 32/567 [01:19<18:00, 2.02s/it]
6%|▌ | 33/567 [01:20<17:00, 1.91s/it]
6%|▌ | 34/567 [01:24<21:19, 2.40s/it]
6%|▌ | 35/567 [01:28<26:23, 2.98s/it]
6%|▋ | 36/567 [01:29<20:36, 2.33s/it]
7%|▋ | 37/567 [01:30<16:59, 1.92s/it]
7%|▋ | 38/567 [01:31<14:54, 1.69s/it]
7%|▋ | 39/567 [01:33<15:28, 1.76s/it]
7%|▋ | 40/567 [01:35<16:56, 1.93s/it]
7%|▋ | 41/567 [01:36<13:24, 1.53s/it]
7%|▋ | 42/567 [01:39<16:59, 1.94s/it]
8%|▊ | 43/567 [01:40<14:44, 1.69s/it]
8%|▊ | 44/567 [01:42<15:17, 1.75s/it]
8%|▊ | 45/567 [01:44<16:35, 1.91s/it]
8%|▊ | 46/567 [01:45<14:34, 1.68s/it]
8%|▊ | 47/567 [01:47<15:08, 1.75s/it]
8%|▊ | 48/567 [01:49<16:25, 1.90s/it]
9%|▊ | 49/567 [01:50<13:44, 1.59s/it]
9%|▉ | 50/567 [01:53<15:48, 1.84s/it]
9%|▉ | 51/567 [01:56<19:41, 2.29s/it]
9%|▉ | 52/567 [01:57<16:26, 1.92s/it]
9%|▉ | 53/567 [02:09<40:48, 4.76s/it]
10%|▉ | 54/567 [02:12<36:45, 4.30s/it]
10%|▉ | 55/567 [02:15<34:52, 4.09s/it]
10%|▉ | 56/567 [02:19<34:41, 4.07s/it]
10%|█ | 57/567 [02:24<34:48, 4.10s/it]
10%|█ | 58/567 [02:24<26:40, 3.15s/it]
10%|█ | 59/567 [02:27<24:58, 2.95s/it]
11%|█ | 60/567 [02:29<22:13, 2.63s/it]
11%|█ | 61/567 [02:30<19:15, 2.28s/it]
11%|█ | 62/567 [02:32<17:10, 2.04s/it]
11%|█ | 63/567 [02:35<19:20, 2.30s/it]
11%|█▏ | 64/567 [02:39<24:07, 2.88s/it]
11%|█▏ | 65/567 [02:40<19:51, 2.37s/it]
12%|█▏ | 66/567 [02:43<20:49, 2.49s/it]
12%|█▏ | 67/567 [02:44<16:59, 2.04s/it]
12%|█▏ | 68/567 [02:49<24:49, 2.98s/it]
12%|█▏ | 69/567 [02:50<20:28, 2.47s/it]
12%|█▏ | 70/567 [02:52<19:00, 2.30s/it]
13%|█▎ | 71/567 [02:53<16:00, 1.94s/it]
13%|█▎ | 72/567 [02:56<17:40, 2.14s/it]
13%|█▎ | 73/567 [02:57<14:37, 1.78s/it]
13%|█▎ | 74/567 [02:58<12:56, 1.57s/it]
13%|█▎ | 75/567 [02:59<11:43, 1.43s/it]
13%|█▎ | 76/567 [03:01<12:47, 1.56s/it]
14%|█▎ | 77/567 [03:03<14:04, 1.72s/it]
14%|█▍ | 78/567 [03:05<13:49, 1.70s/it]
14%|█▍ | 79/567 [03:08<17:49, 2.19s/it]
14%|█▍ | 80/567 [03:10<17:53, 2.20s/it]
14%|█▍ | 81/567 [03:11<14:29, 1.79s/it]
14%|█▍ | 82/567 [03:13<14:05, 1.74s/it]
15%|█▍ | 83/567 [03:14<13:52, 1.72s/it]
15%|█▍ | 84/567 [03:16<13:10, 1.64s/it]
15%|█▍ | 85/567 [03:17<11:41, 1.46s/it]
15%|█▌ | 86/567 [03:17<09:29, 1.18s/it]
15%|█▌ | 87/567 [03:18<09:07, 1.14s/it]
16%|█▌ | 88/567 [03:20<09:46, 1.23s/it]
16%|█▌ | 89/567 [03:25<18:34, 2.33s/it]
16%|█▌ | 90/567 [03:27<18:16, 2.30s/it]
16%|█▌ | 91/567 [03:30<19:50, 2.50s/it]
16%|█▌ | 92/567 [03:32<17:28, 2.21s/it]
16%|█▋ | 93/567 [03:33<14:32, 1.84s/it]
17%|█▋ | 94/567 [03:36<18:16, 2.32s/it]
17%|█▋ | 95/567 [03:37<15:28, 1.97s/it]
17%|█▋ | 96/567 [03:39<15:45, 2.01s/it]
17%|█▋ | 97/567 [03:41<16:01, 2.05s/it]
17%|█▋ | 98/567 [03:42<13:05, 1.68s/it]
17%|█▋ | 99/567 [03:44<13:03, 1.67s/it]
18%|█▊ | 100/567 [03:47<17:04, 2.19s/it]
18%|█▊ | 101/567 [03:49<15:00, 1.93s/it]
18%|█▊ | 102/567 [03:53<20:05, 2.59s/it]
18%|█▊ | 103/567 [03:53<15:47, 2.04s/it]
18%|█▊ | 104/567 [03:56<17:35, 2.28s/it]
19%|█▊ | 105/567 [04:03<27:54, 3.62s/it]
19%|█▊ | 106/567 [04:06<25:42, 3.35s/it]
19%|█▉ | 107/567 [04:07<20:05, 2.62s/it]
19%|█▉ | 108/567 [04:14<29:53, 3.91s/it]
19%|█▉ | 109/567 [04:14<22:14, 2.91s/it]
19%|█▉ | 110/567 [04:16<18:47, 2.47s/it]
20%|█▉ | 111/567 [04:21<25:06, 3.30s/it]
20%|█▉ | 112/567 [04:23<23:22, 3.08s/it]
20%|█▉ | 113/567 [04:27<25:37, 3.39s/it]
20%|██ | 114/567 [04:29<21:14, 2.81s/it]
20%|██ | 115/567 [04:31<20:23, 2.71s/it]
20%|██ | 116/567 [04:33<17:43, 2.36s/it]
21%|██ | 117/567 [04:34<15:43, 2.10s/it]
21%|██ | 118/567 [04:37<17:43, 2.37s/it]
21%|██ | 119/567 [04:42<23:05, 3.09s/it]
21%|██ | 120/567 [04:44<20:41, 2.78s/it]
21%|██▏ | 121/567 [04:45<17:06, 2.30s/it]
22%|██▏ | 122/567 [04:47<15:15, 2.06s/it]
22%|██▏ | 123/567 [04:49<14:35, 1.97s/it]
22%|██▏ | 124/567 [04:50<13:27, 1.82s/it]
22%|██▏ | 125/567 [04:52<12:32, 1.70s/it]
22%|██▏ | 126/567 [04:54<12:53, 1.75s/it]
22%|██▏ | 127/567 [04:58<18:18, 2.50s/it]
23%|██▎ | 128/567 [05:00<18:07, 2.48s/it]
23%|██▎ | 129/567 [05:03<19:44, 2.70s/it]
23%|██▎ | 130/567 [05:10<28:06, 3.86s/it]
23%|██▎ | 131/567 [05:15<31:07, 4.28s/it]
23%|██▎ | 132/567 [05:22<37:24, 5.16s/it]
23%|██▎ | 133/567 [05:29<40:42, 5.63s/it]
24%|██▎ | 134/567 [05:37<45:14, 6.27s/it]
24%|██▍ | 135/567 [05:39<35:13, 4.89s/it]
24%|██▍ | 136/567 [05:42<31:59, 4.45s/it]
24%|██▍ | 137/567 [05:44<26:04, 3.64s/it]
24%|██▍ | 138/567 [05:45<19:57, 2.79s/it]
25%|██▍ | 139/567 [05:46<17:36, 2.47s/it]
25%|██▍ | 140/567 [05:48<16:13, 2.28s/it]
25%|██▍ | 141/567 [05:50<15:21, 2.16s/it]
25%|██▌ | 142/567 [05:51<13:44, 1.94s/it]
25%|██▌ | 143/567 [05:53<12:02, 1.70s/it]
25%|██▌ | 144/567 [05:54<12:10, 1.73s/it]
26%|██▌ | 145/567 [05:56<12:19, 1.75s/it]
26%|██▌ | 146/567 [05:59<13:52, 1.98s/it]
26%|██▌ | 147/567 [06:03<18:40, 2.67s/it]
26%|██▌ | 148/567 [06:05<17:35, 2.52s/it]
26%|██▋ | 149/567 [06:06<14:12, 2.04s/it]
26%|██▋ | 150/567 [06:07<11:23, 1.64s/it]
27%|██▋ | 151/567 [06:07<09:19, 1.35s/it]
27%|██▋ | 152/567 [06:09<10:47, 1.56s/it]
27%|██▋ | 153/567 [06:12<12:02, 1.75s/it]
27%|██▋ | 154/567 [06:13<10:41, 1.55s/it]
27%|██▋ | 155/567 [06:14<10:31, 1.53s/it]
28%|██▊ | 156/567 [06:16<11:04, 1.62s/it]
28%|██▊ | 157/567 [06:18<11:01, 1.61s/it]
28%|██▊ | 158/567 [06:23<18:17, 2.68s/it]
28%|██▊ | 159/567 [06:24<15:59, 2.35s/it]
28%|██▊ | 160/567 [06:28<18:51, 2.78s/it]
28%|██▊ | 161/567 [06:29<15:04, 2.23s/it]
29%|██▊ | 162/567 [06:31<14:23, 2.13s/it]
29%|██▊ | 163/567 [06:33<13:02, 1.94s/it]
29%|██▉ | 164/567 [06:36<16:53, 2.51s/it]
29%|██▉ | 165/567 [06:39<16:50, 2.51s/it]
29%|██▉ | 166/567 [06:40<14:30, 2.17s/it]
29%|██▉ | 167/567 [06:45<18:35, 2.79s/it]
30%|██▉ | 168/567 [06:46<15:44, 2.37s/it]
30%|██▉ | 169/567 [06:48<15:35, 2.35s/it]
30%|██▉ | 170/567 [06:50<15:09, 2.29s/it]
30%|███ | 171/567 [06:52<14:44, 2.23s/it]
30%|███ | 172/567 [06:55<14:49, 2.25s/it]
31%|███ | 173/567 [06:56<13:04, 1.99s/it]
31%|███ | 174/567 [06:58<12:49, 1.96s/it]
31%|███ | 175/567 [07:00<13:44, 2.10s/it]
31%|███ | 176/567 [07:02<12:44, 1.95s/it]
31%|███ | 177/567 [07:05<14:58, 2.30s/it]
31%|███▏ | 178/567 [07:06<12:40, 1.96s/it]
32%|███▏ | 179/567 [07:08<12:59, 2.01s/it]
32%|███▏ | 180/567 [07:11<13:34, 2.10s/it]
32%|███▏ | 181/567 [07:13<13:07, 2.04s/it]
32%|███▏ | 182/567 [07:14<10:54, 1.70s/it]
32%|███▏ | 183/567 [07:14<09:04, 1.42s/it]
32%|███▏ | 184/567 [07:16<10:27, 1.64s/it]
33%|███▎ | 185/567 [07:18<09:17, 1.46s/it]
33%|███▎ | 186/567 [07:25<20:47, 3.28s/it]
33%|███▎ | 187/567 [07:26<17:13, 2.72s/it]
33%|███▎ | 188/567 [07:28<14:19, 2.27s/it]
33%|███▎ | 189/567 [07:30<13:36, 2.16s/it]
34%|███▎ | 190/567 [07:30<11:08, 1.77s/it]
34%|███▎ | 191/567 [07:34<15:20, 2.45s/it]
34%|███▍ | 192/567 [07:37<15:42, 2.51s/it]
34%|███▍ | 193/567 [07:46<26:55, 4.32s/it]
34%|███▍ | 194/567 [07:47<20:43, 3.33s/it]
34%|███▍ | 195/567 [07:48<17:42, 2.86s/it]
35%|███▍ | 196/567 [07:51<16:27, 2.66s/it]
35%|███▍ | 197/567 [07:55<18:50, 3.06s/it]
35%|███▍ | 198/567 [07:58<20:00, 3.25s/it]
35%|███▌ | 199/567 [08:01<18:13, 2.97s/it]
35%|███▌ | 200/567 [08:02<15:26, 2.52s/it]
35%|███▌ | 201/567 [08:03<13:05, 2.14s/it]
36%|███▌ | 202/567 [08:05<11:37, 1.91s/it]
36%|███▌ | 203/567 [08:06<10:54, 1.80s/it]
36%|███▌ | 204/567 [08:08<10:12, 1.69s/it]
36%|███▌ | 205/567 [08:10<10:44, 1.78s/it]
36%|███▋ | 206/567 [08:14<14:30, 2.41s/it]
37%|███▋ | 207/567 [08:15<13:26, 2.24s/it]
37%|███▋ | 208/567 [08:19<15:39, 2.62s/it]
37%|███▋ | 209/567 [08:20<12:41, 2.13s/it]
37%|███▋ | 210/567 [08:23<13:54, 2.34s/it]
37%|███▋ | 211/567 [08:25<13:13, 2.23s/it]
37%|███▋ | 212/567 [08:26<11:53, 2.01s/it]
38%|███▊ | 213/567 [08:28<12:17, 2.08s/it]
38%|███▊ | 214/567 [08:30<11:57, 2.03s/it]
38%|███▊ | 215/567 [08:33<13:03, 2.22s/it]
38%|███▊ | 216/567 [08:35<13:01, 2.23s/it]
38%|███▊ | 217/567 [08:38<14:20, 2.46s/it]
38%|███▊ | 218/567 [08:42<16:39, 2.86s/it]
39%|███▊ | 219/567 [08:44<15:11, 2.62s/it]
39%|███▉ | 220/567 [08:46<13:20, 2.31s/it]
39%|███▉ | 221/567 [08:47<10:55, 1.89s/it]
39%|███▉ | 222/567 [08:48<10:11, 1.77s/it]
39%|███▉ | 223/567 [08:49<08:59, 1.57s/it]
40%|███▉ | 224/567 [08:51<09:09, 1.60s/it]
40%|███▉ | 225/567 [08:54<11:04, 1.94s/it]
40%|███▉ | 226/567 [08:56<12:15, 2.16s/it]
40%|████ | 227/567 [08:57<10:25, 1.84s/it]
40%|████ | 228/567 [09:00<11:02, 1.95s/it]
40%|████ | 229/567 [09:03<13:39, 2.42s/it]
41%|████ | 230/567 [09:04<11:44, 2.09s/it]
41%|████ | 231/567 [09:08<13:37, 2.43s/it]
41%|████ | 232/567 [09:10<12:40, 2.27s/it]
41%|████ | 233/567 [09:13<14:01, 2.52s/it]
41%|████▏ | 234/567 [09:14<11:16, 2.03s/it]
41%|████▏ | 235/567 [09:16<12:30, 2.26s/it]
42%|████▏ | 236/567 [09:19<13:07, 2.38s/it]
42%|████▏ | 237/567 [09:20<10:35, 1.93s/it]
42%|████▏ | 238/567 [09:22<11:06, 2.03s/it]
42%|████▏ | 239/567 [09:24<11:14, 2.06s/it]
42%|████▏ | 240/567 [09:31<18:31, 3.40s/it]
43%|████▎ | 241/567 [09:33<15:57, 2.94s/it]
43%|████▎ | 242/567 [09:34<13:12, 2.44s/it]
43%|████▎ | 243/567 [09:37<14:07, 2.61s/it]
43%|████▎ | 244/567 [09:41<15:37, 2.90s/it]
43%|████▎ | 245/567 [09:42<12:23, 2.31s/it]
43%|████▎ | 246/567 [09:44<12:02, 2.25s/it]
44%|████▎ | 247/567 [09:44<09:37, 1.80s/it]
44%|████▎ | 248/567 [09:47<10:05, 1.90s/it]
44%|████▍ | 249/567 [09:48<09:31, 1.80s/it]
44%|████▍ | 250/567 [09:52<12:17, 2.33s/it]
44%|████▍ | 251/567 [09:57<16:42, 3.17s/it]
44%|████▍ | 252/567 [10:00<16:17, 3.10s/it]
45%|████▍ | 253/567 [10:00<12:33, 2.40s/it]
45%|████▍ | 254/567 [10:08<20:43, 3.97s/it]
45%|████▍ | 255/567 [10:10<17:42, 3.41s/it]
45%|████▌ | 256/567 [10:11<13:48, 2.66s/it]
45%|████▌ | 257/567 [10:16<16:43, 3.24s/it]
46%|████▌ | 258/567 [10:18<15:48, 3.07s/it]
46%|████▌ | 259/567 [10:19<12:32, 2.44s/it]
46%|████▌ | 260/567 [10:24<15:40, 3.06s/it]
46%|████▌ | 261/567 [10:26<14:34, 2.86s/it]
46%|████▌ | 262/567 [10:30<15:40, 3.08s/it]
46%|████▋ | 263/567 [10:31<13:00, 2.57s/it]
47%|████▋ | 264/567 [10:32<09:58, 1.98s/it]
47%|████▋ | 265/567 [10:37<14:05, 2.80s/it]
47%|████▋ | 266/567 [10:38<11:38, 2.32s/it]
47%|████▋ | 267/567 [10:39<10:25, 2.09s/it]
47%|████▋ | 268/567 [10:43<12:51, 2.58s/it]
47%|████▋ | 269/567 [10:46<13:36, 2.74s/it]
48%|████▊ | 270/567 [10:48<11:47, 2.38s/it]
48%|████▊ | 271/567 [10:51<13:27, 2.73s/it]
48%|████▊ | 272/567 [10:53<11:52, 2.42s/it]
48%|████▊ | 273/567 [10:55<10:51, 2.22s/it]
48%|████▊ | 274/567 [10:56<09:43, 1.99s/it]
49%|████▊ | 275/567 [10:58<09:02, 1.86s/it]
49%|████▊ | 276/567 [11:00<09:38, 1.99s/it]
49%|████▉ | 277/567 [11:02<10:12, 2.11s/it]
49%|████▉ | 278/567 [11:03<08:22, 1.74s/it]
49%|████▉ | 279/567 [11:08<12:36, 2.63s/it]
49%|████▉ | 280/567 [11:10<12:28, 2.61s/it]
50%|████▉ | 281/567 [11:11<09:56, 2.09s/it]
50%|████▉ | 282/567 [11:13<08:54, 1.88s/it]
50%|████▉ | 283/567 [11:16<10:50, 2.29s/it]
50%|█████ | 284/567 [11:17<09:20, 1.98s/it]
50%|█████ | 285/567 [11:19<08:31, 1.81s/it]
50%|█████ | 286/567 [11:20<07:23, 1.58s/it]
51%|█████ | 287/567 [11:23<09:12, 1.97s/it]
51%|█████ | 288/567 [11:25<09:08, 1.97s/it]
51%|█████ | 289/567 [11:28<10:29, 2.26s/it]
51%|█████ | 290/567 [11:30<10:53, 2.36s/it]
51%|█████▏ | 291/567 [11:32<10:11, 2.22s/it]
51%|█████▏ | 292/567 [11:35<10:41, 2.33s/it]
52%|█████▏ | 293/567 [11:36<09:35, 2.10s/it]
52%|█████▏ | 294/567 [11:38<08:44, 1.92s/it]
52%|█████▏ | 295/567 [11:39<08:30, 1.88s/it]
52%|█████▏ | 296/567 [11:42<09:49, 2.17s/it]
52%|█████▏ | 297/567 [11:44<08:56, 1.99s/it]
53%|█████▎ | 298/567 [11:51<15:14, 3.40s/it]
53%|█████▎ | 299/567 [11:52<12:27, 2.79s/it]
53%|█████▎ | 300/567 [11:55<12:11, 2.74s/it]
53%|█████▎ | 301/567 [11:57<11:58, 2.70s/it]
53%|█████▎ | 302/567 [11:59<10:37, 2.41s/it]
53%|█████▎ | 303/567 [12:00<09:12, 2.09s/it]
54%|█████▎ | 304/567 [12:02<08:31, 1.94s/it]
54%|█████▍ | 305/567 [12:03<08:03, 1.85s/it]
54%|█████▍ | 306/567 [12:08<11:30, 2.65s/it]
54%|█████▍ | 307/567 [12:13<14:52, 3.43s/it]
54%|█████▍ | 308/567 [12:15<12:33, 2.91s/it]
54%|█████▍ | 309/567 [12:16<09:39, 2.25s/it]
55%|█████▍ | 310/567 [12:26<20:02, 4.68s/it]
55%|█████▍ | 311/567 [12:30<18:32, 4.35s/it]
55%|█████▌ | 312/567 [12:31<14:45, 3.47s/it]
55%|█████▌ | 313/567 [12:32<11:31, 2.72s/it]
55%|█████▌ | 314/567 [12:40<17:40, 4.19s/it]
56%|█████▌ | 315/567 [12:46<20:56, 4.99s/it]
56%|█████▌ | 316/567 [12:47<15:58, 3.82s/it]
56%|█████▌ | 317/567 [12:49<13:26, 3.23s/it]
56%|█████▌ | 318/567 [12:50<10:31, 2.54s/it]
56%|█████▋ | 319/567 [12:54<11:41, 2.83s/it]
56%|█████▋ | 320/567 [12:54<09:01, 2.19s/it]
57%|█████▋ | 321/567 [13:00<13:03, 3.18s/it]
57%|█████▋ | 322/567 [13:02<11:40, 2.86s/it]
57%|█████▋ | 323/567 [13:04<10:27, 2.57s/it]
57%|█████▋ | 324/567 [13:06<09:27, 2.34s/it]
57%|█████▋ | 325/567 [13:12<14:22, 3.57s/it]
57%|█████▋ | 326/567 [13:13<11:01, 2.74s/it]
58%|█████▊ | 327/567 [13:14<09:23, 2.35s/it]
58%|█████▊ | 328/567 [13:17<09:05, 2.28s/it]
58%|█████▊ | 329/567 [13:21<11:36, 2.93s/it]
58%|█████▊ | 330/567 [13:22<08:40, 2.20s/it]
58%|█████▊ | 331/567 [13:23<07:43, 1.96s/it]
59%|█████▊ | 332/567 [13:25<07:28, 1.91s/it]
59%|█████▊ | 333/567 [13:27<07:39, 1.96s/it]
59%|█████▉ | 334/567 [13:28<06:52, 1.77s/it]
59%|█████▉ | 335/567 [13:30<07:15, 1.88s/it]
59%|█████▉ | 336/567 [13:31<05:55, 1.54s/it]
59%|█████▉ | 337/567 [13:34<08:03, 2.10s/it]
60%|█████▉ | 338/567 [13:36<07:07, 1.87s/it]
60%|█████▉ | 339/567 [13:37<06:26, 1.70s/it]
60%|█████▉ | 340/567 [13:38<05:41, 1.50s/it]
60%|██████ | 341/567 [13:39<05:19, 1.41s/it]
60%|██████ | 342/567 [13:42<06:13, 1.66s/it]
60%|██████ | 343/567 [13:43<05:44, 1.54s/it]
61%|██████ | 344/567 [13:45<06:16, 1.69s/it]
61%|██████ | 345/567 [13:46<06:00, 1.63s/it]
61%|██████ | 346/567 [13:48<05:38, 1.53s/it]
61%|██████ | 347/567 [13:50<06:54, 1.88s/it]
61%|██████▏ | 348/567 [13:52<06:50, 1.87s/it]
62%|██████▏ | 349/567 [13:57<09:38, 2.65s/it]
62%|██████▏ | 350/567 [13:59<08:57, 2.47s/it]
62%|██████▏ | 351/567 [14:07<15:13, 4.23s/it]
62%|██████▏ | 352/567 [14:09<12:19, 3.44s/it]
62%|██████▏ | 353/567 [14:12<12:41, 3.56s/it]
62%|██████▏ | 354/567 [14:15<12:04, 3.40s/it]
63%|██████▎ | 355/567 [14:17<09:58, 2.82s/it]
63%|██████▎ | 356/567 [14:19<09:18, 2.65s/it]
63%|██████▎ | 357/567 [14:20<07:44, 2.21s/it]
63%|██████▎ | 358/567 [14:22<06:41, 1.92s/it]
63%|██████▎ | 359/567 [14:23<05:48, 1.67s/it]
63%|██████▎ | 360/567 [14:24<05:34, 1.62s/it]
64%|██████▎ | 361/567 [14:26<05:14, 1.53s/it]
64%|██████▍ | 362/567 [14:29<06:47, 1.99s/it]
64%|██████▍ | 363/567 [14:33<09:04, 2.67s/it]
64%|██████▍ | 364/567 [14:37<10:40, 3.16s/it]
64%|██████▍ | 365/567 [14:39<09:06, 2.71s/it]
65%|██████▍ | 366/567 [14:40<08:02, 2.40s/it]
65%|██████▍ | 367/567 [14:43<07:44, 2.32s/it]
65%|██████▍ | 368/567 [14:47<09:24, 2.84s/it]
65%|██████▌ | 369/567 [14:49<09:20, 2.83s/it]
65%|██████▌ | 370/567 [14:51<08:15, 2.52s/it]
65%|██████▌ | 371/567 [14:53<07:09, 2.19s/it]
66%|██████▌ | 372/567 [14:54<06:17, 1.94s/it]
66%|██████▌ | 373/567 [14:58<07:55, 2.45s/it]
66%|██████▌ | 374/567 [15:01<08:59, 2.80s/it]
66%|██████▌ | 375/567 [15:04<08:41, 2.72s/it]
66%|██████▋ | 376/567 [15:05<07:21, 2.31s/it]
66%|██████▋ | 377/567 [15:11<10:13, 3.23s/it]
67%|██████▋ | 378/567 [15:13<09:10, 2.91s/it]
67%|██████▋ | 379/567 [15:16<09:18, 2.97s/it]
67%|██████▋ | 380/567 [15:17<07:46, 2.50s/it]
67%|██████▋ | 381/567 [15:20<07:38, 2.47s/it]
67%|██████▋ | 382/567 [15:21<06:38, 2.15s/it]
68%|██████▊ | 383/567 [15:24<07:29, 2.44s/it]
68%|██████▊ | 384/567 [15:29<09:20, 3.06s/it]
68%|██████▊ | 385/567 [15:32<09:44, 3.21s/it]
68%|██████▊ | 386/567 [15:34<08:49, 2.92s/it]
68%|██████▊ | 387/567 [15:36<07:21, 2.45s/it]
68%|██████▊ | 388/567 [15:45<13:43, 4.60s/it]
69%|██████▊ | 389/567 [15:48<11:25, 3.85s/it]
69%|██████▉ | 390/567 [15:48<08:46, 2.97s/it]
69%|██████▉ | 391/567 [15:51<08:30, 2.90s/it]
69%|██████▉ | 392/567 [15:55<09:01, 3.10s/it]
69%|██████▉ | 393/567 [15:56<07:24, 2.56s/it]
69%|██████▉ | 394/567 [15:59<07:51, 2.73s/it]
70%|██████▉ | 395/567 [16:03<08:58, 3.13s/it]
70%|██████▉ | 396/567 [16:05<07:54, 2.78s/it]
70%|███████ | 397/567 [16:12<11:05, 3.91s/it]
70%|███████ | 398/567 [16:13<08:30, 3.02s/it]
70%|███████ | 399/567 [16:14<06:44, 2.41s/it]
71%|███████ | 400/567 [16:15<05:51, 2.11s/it]
71%|███████ | 401/567 [16:17<05:38, 2.04s/it]
71%|███████ | 402/567 [16:20<06:37, 2.41s/it]
71%|███████ | 403/567 [16:22<06:10, 2.26s/it]
71%|███████▏ | 404/567 [16:23<05:20, 1.96s/it]
71%|███████▏ | 405/567 [16:25<04:35, 1.70s/it]
72%|███████▏ | 406/567 [16:27<04:59, 1.86s/it]
72%|███████▏ | 407/567 [16:28<04:25, 1.66s/it]
72%|███████▏ | 408/567 [16:40<12:36, 4.76s/it]
72%|███████▏ | 409/567 [16:42<10:11, 3.87s/it]
72%|███████▏ | 410/567 [16:43<08:23, 3.21s/it]
72%|███████▏ | 411/567 [16:44<06:30, 2.50s/it]
73%|███████▎ | 412/567 [16:47<06:39, 2.58s/it]
73%|███████▎ | 413/567 [16:50<06:39, 2.59s/it]
73%|███████▎ | 414/567 [16:50<05:12, 2.04s/it]
73%|███████▎ | 415/567 [16:55<07:01, 2.77s/it]
73%|███████▎ | 416/567 [16:57<06:39, 2.64s/it]
74%|███████▎ | 417/567 [17:02<08:32, 3.42s/it]
74%|███████▎ | 418/567 [17:04<07:26, 2.99s/it]
74%|███████▍ | 419/567 [17:11<09:42, 3.94s/it]
74%|███████▍ | 420/567 [17:13<08:44, 3.56s/it]
74%|███████▍ | 421/567 [17:16<08:07, 3.34s/it]
74%|███████▍ | 422/567 [17:19<07:32, 3.12s/it]
75%|███████▍ | 423/567 [17:21<07:02, 2.93s/it]
75%|███████▍ | 424/567 [17:25<07:15, 3.05s/it]
75%|███████▍ | 425/567 [17:27<06:44, 2.85s/it]
75%|███████▌ | 426/567 [17:28<05:15, 2.24s/it]
75%|███████▌ | 427/567 [17:30<04:57, 2.13s/it]
75%|███████▌ | 428/567 [17:34<06:12, 2.68s/it]
76%|███████▌ | 429/567 [17:38<07:17, 3.17s/it]
76%|███████▌ | 430/567 [17:40<06:22, 2.79s/it]
76%|███████▌ | 431/567 [17:45<07:43, 3.41s/it]
76%|███████▌ | 432/567 [17:48<07:50, 3.48s/it]
76%|███████▋ | 433/567 [17:52<08:01, 3.59s/it]
77%|███████▋ | 434/567 [17:55<07:17, 3.29s/it]
77%|███████▋ | 435/567 [17:56<05:44, 2.61s/it]
77%|███████▋ | 436/567 [17:58<05:28, 2.51s/it]
77%|███████▋ | 437/567 [17:59<04:26, 2.05s/it]
77%|███████▋ | 438/567 [18:02<04:54, 2.28s/it]
77%|███████▋ | 439/567 [18:04<04:44, 2.23s/it]
78%|███████▊ | 440/567 [18:05<03:59, 1.88s/it]
78%|███████▊ | 441/567 [18:07<04:09, 1.98s/it]
78%|███████▊ | 442/567 [18:09<03:57, 1.90s/it]
78%|███████▊ | 443/567 [18:10<03:41, 1.79s/it]
78%|███████▊ | 444/567 [18:15<05:09, 2.51s/it]
78%|███████▊ | 445/567 [18:17<04:45, 2.34s/it]
79%|███████▊ | 446/567 [18:20<05:38, 2.80s/it]
79%|███████▉ | 447/567 [18:23<05:45, 2.88s/it]
79%|███████▉ | 448/567 [18:26<05:29, 2.77s/it]
79%|███████▉ | 449/567 [18:27<04:41, 2.38s/it]
79%|███████▉ | 450/567 [18:29<04:20, 2.22s/it]
80%|███████▉ | 451/567 [18:31<03:42, 1.92s/it]
80%|███████▉ | 452/567 [18:32<03:29, 1.83s/it]
80%|███████▉ | 453/567 [18:35<04:16, 2.25s/it]
80%|████████ | 454/567 [18:37<04:00, 2.13s/it]
80%|████████ | 455/567 [18:38<03:29, 1.87s/it]
80%|████████ | 456/567 [18:40<03:05, 1.67s/it]
81%|████████ | 457/567 [18:41<02:51, 1.56s/it]
81%|████████ | 458/567 [18:44<03:31, 1.94s/it]
81%|████████ | 459/567 [18:47<03:57, 2.20s/it]
81%|████████ | 460/567 [18:47<03:05, 1.73s/it]
81%|████████▏ | 461/567 [18:49<02:50, 1.61s/it]
81%|████████▏ | 462/567 [18:50<02:30, 1.44s/it]
82%|████████▏ | 463/567 [18:51<02:38, 1.52s/it]
82%|████████▏ | 464/567 [18:53<02:34, 1.50s/it]
82%|████████▏ | 465/567 [18:55<02:50, 1.67s/it]
82%|████████▏ | 466/567 [18:57<02:53, 1.72s/it]
82%|████████▏ | 467/567 [18:58<02:29, 1.50s/it]
83%|████████▎ | 468/567 [19:00<03:00, 1.82s/it]
83%|████████▎ | 469/567 [19:02<02:43, 1.67s/it]
83%|████████▎ | 470/567 [19:03<02:45, 1.71s/it]
83%|████████▎ | 471/567 [19:06<03:19, 2.08s/it]
83%|████████▎ | 472/567 [19:11<04:45, 3.00s/it]
83%|████████▎ | 473/567 [19:14<04:39, 2.98s/it]
84%|████████▎ | 474/567 [19:18<05:04, 3.28s/it]
84%|████████▍ | 475/567 [19:19<03:56, 2.57s/it]
84%|████████▍ | 476/567 [19:21<03:27, 2.28s/it]
84%|████████▍ | 477/567 [19:22<02:42, 1.81s/it]
84%|████████▍ | 478/567 [19:23<02:29, 1.68s/it]
84%|████████▍ | 479/567 [19:24<02:13, 1.52s/it]
85%|████████▍ | 480/567 [19:26<02:14, 1.54s/it]
85%|████████▍ | 481/567 [19:30<03:20, 2.33s/it]
85%|████████▌ | 482/567 [19:31<02:57, 2.09s/it]
85%|████████▌ | 483/567 [19:33<02:36, 1.86s/it]
85%|████████▌ | 484/567 [19:36<03:13, 2.34s/it]
86%|████████▌ | 485/567 [19:37<02:36, 1.91s/it]
86%|████████▌ | 486/567 [19:39<02:39, 1.97s/it]
86%|████████▌ | 487/567 [19:45<04:04, 3.06s/it]
86%|████████▌ | 488/567 [19:46<03:12, 2.43s/it]
86%|████████▌ | 489/567 [19:47<02:49, 2.18s/it]
86%|████████▋ | 490/567 [19:52<03:47, 2.95s/it]
87%|████████▋ | 491/567 [19:54<03:21, 2.65s/it]
87%|████████▋ | 492/567 [19:55<02:37, 2.10s/it]
87%|████████▋ | 493/567 [19:58<03:01, 2.45s/it]
87%|████████▋ | 494/567 [20:00<02:49, 2.33s/it]
87%|████████▋ | 495/567 [20:08<04:56, 4.12s/it]
87%|████████▋ | 496/567 [20:10<03:53, 3.29s/it]
88%|████████▊ | 497/567 [20:13<03:43, 3.20s/it]
88%|████████▊ | 498/567 [20:16<03:34, 3.11s/it]
88%|████████▊ | 499/567 [20:18<03:10, 2.79s/it]
88%|████████▊ | 500/567 [20:22<03:32, 3.16s/it]
88%|████████▊ | 501/567 [20:23<02:47, 2.54s/it]
89%|████████▊ | 502/567 [20:26<02:49, 2.60s/it]
89%|████████▊ | 503/567 [20:32<04:01, 3.78s/it]
89%|████████▉ | 504/567 [20:35<03:48, 3.62s/it]
89%|████████▉ | 505/567 [20:39<03:44, 3.62s/it]
89%|████████▉ | 506/567 [20:43<03:54, 3.84s/it]
89%|████████▉ | 507/567 [20:45<03:04, 3.07s/it]
90%|████████▉ | 508/567 [20:47<02:50, 2.90s/it]
90%|████████▉ | 509/567 [20:49<02:23, 2.48s/it]
90%|████████▉ | 510/567 [20:52<02:33, 2.69s/it]
90%|█████████ | 511/567 [20:54<02:26, 2.62s/it]
90%|█████████ | 512/567 [20:59<03:01, 3.29s/it]
90%|█████████ | 513/567 [21:02<02:49, 3.14s/it]
91%|█████████ | 514/567 [21:03<02:07, 2.40s/it]
91%|█████████ | 515/567 [21:04<01:53, 2.19s/it]
91%|█████████ | 516/567 [21:06<01:40, 1.97s/it]
91%|█████████ | 517/567 [21:08<01:41, 2.03s/it]
91%|█████████▏| 518/567 [21:09<01:23, 1.71s/it]
92%|█████████▏| 519/567 [21:11<01:26, 1.80s/it]
92%|█████████▏| 520/567 [21:12<01:19, 1.69s/it]
92%|█████████▏| 521/567 [21:14<01:23, 1.82s/it]
92%|█████████▏| 522/567 [21:18<01:40, 2.24s/it]
92%|█████████▏| 523/567 [21:20<01:37, 2.22s/it]
92%|█████████▏| 524/567 [21:22<01:29, 2.08s/it]
93%|█████████▎| 525/567 [21:24<01:25, 2.05s/it]
93%|█████████▎| 526/567 [21:26<01:23, 2.04s/it]
93%|█████████▎| 527/567 [21:28<01:26, 2.15s/it]
93%|█████████▎| 528/567 [21:29<01:14, 1.91s/it]
93%|█████████▎| 529/567 [21:31<01:10, 1.87s/it]
93%|█████████▎| 530/567 [21:35<01:28, 2.39s/it]
94%|█████████▎| 531/567 [21:36<01:12, 2.02s/it]
94%|█████████▍| 532/567 [21:38<01:08, 1.97s/it]
94%|█████████▍| 533/567 [21:39<01:01, 1.82s/it]
94%|█████████▍| 534/567 [21:40<00:52, 1.60s/it]
94%|█████████▍| 535/567 [21:43<00:59, 1.85s/it]
95%|█████████▍| 536/567 [21:45<00:57, 1.86s/it]
95%|█████████▍| 537/567 [21:48<01:06, 2.22s/it]
95%|█████████▍| 538/567 [21:49<00:56, 1.95s/it]
95%|█████████▌| 539/567 [21:54<01:22, 2.93s/it]
95%|█████████▌| 540/567 [22:02<01:56, 4.31s/it]
95%|█████████▌| 541/567 [22:07<01:55, 4.44s/it]
96%|█████████▌| 542/567 [22:10<01:46, 4.27s/it]
96%|█████████▌| 543/567 [22:19<02:15, 5.64s/it]
96%|█████████▌| 544/567 [22:20<01:34, 4.12s/it]
96%|█████████▌| 545/567 [22:22<01:16, 3.48s/it]
96%|█████████▋| 546/567 [22:23<01:00, 2.90s/it]
96%|█████████▋| 547/567 [22:25<00:47, 2.39s/it]
97%|█████████▋| 548/567 [22:26<00:40, 2.15s/it]
97%|█████████▋| 549/567 [22:27<00:34, 1.90s/it]
97%|█████████▋| 550/567 [22:29<00:32, 1.91s/it]
97%|█████████▋| 551/567 [22:31<00:29, 1.87s/it]
97%|█████████▋| 552/567 [22:34<00:33, 2.25s/it]
98%|█████████▊| 553/567 [22:35<00:27, 1.94s/it]
98%|█████████▊| 554/567 [22:37<00:22, 1.70s/it]
98%|█████████▊| 555/567 [22:38<00:20, 1.69s/it]
98%|█████████▊| 556/567 [22:40<00:17, 1.57s/it]
98%|█████████▊| 557/567 [22:43<00:21, 2.15s/it]
98%|█████████▊| 558/567 [22:45<00:19, 2.12s/it]
99%|█████████▊| 559/567 [22:48<00:19, 2.42s/it]
99%|█████████▉| 560/567 [22:51<00:17, 2.55s/it]
99%|█████████▉| 561/567 [22:52<00:12, 2.11s/it]
99%|█████████▉| 562/567 [22:57<00:13, 2.79s/it]
99%|█████████▉| 563/567 [22:59<00:11, 2.79s/it]
99%|█████████▉| 564/567 [23:03<00:09, 3.10s/it]
100%|█████████▉| 565/567 [23:05<00:05, 2.67s/it]
100%|█████████▉| 566/567 [23:07<00:02, 2.43s/it]
100%|██████████| 567/567 [23:07<00:00, 1.82s/it]
100%|██████████| 567/567 [23:07<00:00, 2.45s/it]
-Batch output: ['Old Geng picked up the gun, squinted one of his triangular eyes, pulled the trigger, and the gunshot sounded. Hail-like gold sparrows fell down in a clatter, iron sand flew out between the willow branches, making a scratchy sound.', "The next day, before dawn, Liu Laojia got up and washed and dressed, and also taught Ba'er a few phrases; the six- or seven-year-old child, hearing that he was taken into the city for a stroll, was delighted and readily agreed to everything."]
-internlm/internlm2_5-7b-chat/shots-00 metrics: {'meteor': 0.36816799960793073, 'bleu_scores': {'bleu': 0.11360521358693174, 'precisions': [0.4291579703698635, 0.15700861393891935, 0.07428147598739106, 0.037967334933044355], 'brevity_penalty': 0.9675879193176978, 'length_ratio': 0.9681020205366015, 'translation_length': 29227, 'reference_length': 30190}, 'rouge_scores': {'rouge1': 0.4171869661815567, 'rouge2': 0.17025268378822656, 'rougeL': 0.3602849520033836, 'rougeLsum': 0.36072329028110617}, 'accuracy': 0.00088261253309797, 'correct_ids': [77]}
-*** Evaluating with num_shots: 1
-loading train/test data files
-
Map: 0%| | 0/4528 [00:00, ? examples/s]
Map: 100%|██████████| 4528/4528 [00:00<00:00, 11273.18 examples/s]
-
Map: 0%| | 0/1133 [00:00, ? examples/s]
Map: 100%|██████████| 1133/1133 [00:00<00:00, 45779.99 examples/s]
-DatasetDict({
- train: Dataset({
- features: ['chinese', 'english', 'text', 'prompt'],
- num_rows: 4528
- })
- test: Dataset({
- features: ['chinese', 'english', 'text', 'prompt'],
- num_rows: 1133
- })
-})
---------------------------------------------------
-chinese: 老耿端起枪,眯缝起一只三角眼,一搂扳机响了枪,冰雹般的金麻雀劈哩啪啦往下落,铁砂子在柳枝间飞迸着,嚓嚓有声。
---------------------------------------------------
-english: Old Geng picked up his shotgun, squinted, and pulled the trigger. Two sparrows crashed to the ground like hailstones as shotgun pellets tore noisily through the branches.
---------------------------------------------------
-text: <|im_start|>system
-You are a helpful assistant that translates Chinese to English.<|im_end|>
-<|im_start|>user
-You will be given a Chinese sentence to translate. If it is an incomplete sentence, or if you are unsure about the meaning, simply copy the input text as your output. Do not output any additional sentence such as explanation or reasoning.
-
-Example Translations:
-Chinese: 全仗着狐仙搭救。
-English: Because I was protected by a fox fairy.
-
-Chinese: 老耿端起枪,眯缝起一只三角眼,一搂扳机响了枪,冰雹般的金麻雀劈哩啪啦往下落,铁砂子在柳枝间飞迸着,嚓嚓有声。
-English:<|im_end|>
-<|im_start|>assistant
-Old Geng picked up his shotgun, squinted, and pulled the trigger. Two sparrows crashed to the ground like hailstones as shotgun pellets tore noisily through the branches.
---------------------------------------------------
-prompt: <|im_start|>system
-You are a helpful assistant that translates Chinese to English.<|im_end|>
-<|im_start|>user
-You will be given a Chinese sentence to translate. If it is an incomplete sentence, or if you are unsure about the meaning, simply copy the input text as your output. Do not output any additional sentence such as explanation or reasoning.
-
-Example Translations:
-Chinese: 全仗着狐仙搭救。
-English: Because I was protected by a fox fairy.
-
-Chinese: 老耿端起枪,眯缝起一只三角眼,一搂扳机响了枪,冰雹般的金麻雀劈哩啪啦往下落,铁砂子在柳枝间飞迸着,嚓嚓有声。
-English:<|im_end|>
-<|im_start|>assistant
-
-
0%| | 0/567 [00:00, ?it/s]
0%| | 1/567 [00:03<36:21, 3.85s/it]
0%| | 2/567 [00:10<49:01, 5.21s/it]
1%| | 3/567 [00:13<41:45, 4.44s/it]
1%| | 4/567 [00:21<53:32, 5.71s/it]
1%| | 5/567 [00:22<37:58, 4.05s/it]
1%| | 6/567 [00:24<31:43, 3.39s/it]
1%| | 7/567 [00:25<24:05, 2.58s/it]
1%|▏ | 8/567 [00:28<26:41, 2.86s/it]
2%|▏ | 9/567 [00:31<27:33, 2.96s/it]
2%|▏ | 10/567 [00:34<26:09, 2.82s/it]
2%|▏ | 11/567 [00:38<28:09, 3.04s/it]
2%|▏ | 12/567 [00:39<23:29, 2.54s/it]
2%|▏ | 13/567 [00:42<24:56, 2.70s/it]
2%|▏ | 14/567 [00:44<22:01, 2.39s/it]
3%|▎ | 15/567 [00:44<17:30, 1.90s/it]
3%|▎ | 16/567 [00:47<18:08, 1.98s/it]
3%|▎ | 17/567 [00:52<28:31, 3.11s/it]
3%|▎ | 18/567 [00:54<24:29, 2.68s/it]
3%|▎ | 19/567 [00:55<20:03, 2.20s/it]
4%|▎ | 20/567 [00:57<18:41, 2.05s/it]
4%|▎ | 21/567 [01:00<21:15, 2.34s/it]
4%|▍ | 22/567 [01:01<19:04, 2.10s/it]
4%|▍ | 23/567 [01:05<23:45, 2.62s/it]
4%|▍ | 24/567 [01:07<20:56, 2.31s/it]
4%|▍ | 25/567 [01:08<17:24, 1.93s/it]
5%|▍ | 26/567 [01:11<20:16, 2.25s/it]
5%|▍ | 27/567 [01:12<18:25, 2.05s/it]
5%|▍ | 28/567 [01:18<29:17, 3.26s/it]
5%|▌ | 29/567 [01:21<28:10, 3.14s/it]
5%|▌ | 30/567 [01:24<26:49, 3.00s/it]
5%|▌ | 31/567 [01:25<21:02, 2.36s/it]
6%|▌ | 32/567 [01:27<20:04, 2.25s/it]
6%|▌ | 33/567 [01:29<19:15, 2.16s/it]
6%|▌ | 34/567 [01:33<23:55, 2.69s/it]
6%|▌ | 35/567 [01:35<23:07, 2.61s/it]
6%|▋ | 36/567 [01:36<18:22, 2.08s/it]
7%|▋ | 37/567 [01:37<15:14, 1.73s/it]
7%|▋ | 38/567 [01:38<13:47, 1.56s/it]
7%|▋ | 39/567 [01:40<15:01, 1.71s/it]
7%|▋ | 40/567 [01:43<16:59, 1.93s/it]
7%|▋ | 41/567 [01:43<13:18, 1.52s/it]
7%|▋ | 42/567 [01:46<16:48, 1.92s/it]
8%|▊ | 43/567 [01:47<14:39, 1.68s/it]
8%|▊ | 44/567 [01:49<15:34, 1.79s/it]
8%|▊ | 45/567 [01:52<17:44, 2.04s/it]
8%|▊ | 46/567 [01:53<15:09, 1.74s/it]
8%|▊ | 47/567 [01:55<15:37, 1.80s/it]
8%|▊ | 48/567 [01:57<17:24, 2.01s/it]
9%|▊ | 49/567 [01:58<14:23, 1.67s/it]
9%|▉ | 50/567 [02:01<16:38, 1.93s/it]
9%|▉ | 51/567 [02:04<20:54, 2.43s/it]
9%|▉ | 52/567 [02:05<16:54, 1.97s/it]
9%|▉ | 53/567 [02:16<39:25, 4.60s/it]
10%|▉ | 54/567 [02:19<36:22, 4.25s/it]
10%|▉ | 55/567 [02:24<36:03, 4.22s/it]
10%|▉ | 56/567 [02:28<37:35, 4.41s/it]
10%|█ | 57/567 [02:33<38:21, 4.51s/it]
10%|█ | 58/567 [02:34<29:26, 3.47s/it]
10%|█ | 59/567 [02:37<27:55, 3.30s/it]
11%|█ | 60/567 [02:39<24:51, 2.94s/it]
11%|█ | 61/567 [02:41<21:22, 2.54s/it]
11%|█ | 62/567 [02:42<19:16, 2.29s/it]
11%|█ | 63/567 [02:46<21:33, 2.57s/it]
11%|█▏ | 64/567 [02:50<26:34, 3.17s/it]
11%|█▏ | 65/567 [02:51<21:15, 2.54s/it]
12%|█▏ | 66/567 [02:54<22:32, 2.70s/it]
12%|█▏ | 67/567 [02:56<18:40, 2.24s/it]
12%|█▏ | 68/567 [03:01<26:15, 3.16s/it]
12%|█▏ | 69/567 [03:02<22:02, 2.66s/it]
12%|█▏ | 70/567 [03:05<20:54, 2.52s/it]
13%|█▎ | 71/567 [03:06<17:24, 2.11s/it]
13%|█▎ | 72/567 [03:08<18:51, 2.29s/it]
13%|█▎ | 73/567 [03:09<15:25, 1.87s/it]
13%|█▎ | 74/567 [03:11<13:48, 1.68s/it]
13%|█▎ | 75/567 [03:12<12:43, 1.55s/it]
13%|█▎ | 76/567 [03:14<13:55, 1.70s/it]
14%|█▎ | 77/567 [03:16<15:15, 1.87s/it]
14%|█▍ | 78/567 [03:18<15:06, 1.85s/it]
14%|█▍ | 79/567 [03:21<17:03, 2.10s/it]
14%|█▍ | 80/567 [03:23<17:20, 2.14s/it]
14%|█▍ | 81/567 [03:24<14:40, 1.81s/it]
14%|█▍ | 82/567 [03:26<14:55, 1.85s/it]
15%|█▍ | 83/567 [03:28<15:04, 1.87s/it]
15%|█▍ | 84/567 [03:29<14:11, 1.76s/it]
15%|█▍ | 85/567 [03:31<13:24, 1.67s/it]
15%|█▌ | 86/567 [03:31<11:15, 1.40s/it]
15%|█▌ | 87/567 [03:32<10:02, 1.25s/it]
16%|█▌ | 88/567 [03:34<10:57, 1.37s/it]
16%|█▌ | 89/567 [03:39<19:54, 2.50s/it]
16%|█▌ | 90/567 [03:42<20:40, 2.60s/it]
16%|█▌ | 91/567 [03:45<22:09, 2.79s/it]
16%|█▌ | 92/567 [03:47<19:21, 2.45s/it]
16%|█▋ | 93/567 [03:48<15:59, 2.03s/it]
17%|█▋ | 94/567 [03:52<20:29, 2.60s/it]
17%|█▋ | 95/567 [03:53<17:34, 2.23s/it]
17%|█▋ | 96/567 [03:55<17:34, 2.24s/it]
17%|█▋ | 97/567 [03:58<18:03, 2.31s/it]
17%|█▋ | 98/567 [03:59<14:26, 1.85s/it]
17%|█▋ | 99/567 [04:01<14:56, 1.92s/it]
18%|█▊ | 100/567 [04:05<19:12, 2.47s/it]
18%|█▊ | 101/567 [04:06<17:04, 2.20s/it]
18%|█▊ | 102/567 [04:10<20:20, 2.62s/it]
18%|█▊ | 103/567 [04:11<16:03, 2.08s/it]
18%|█▊ | 104/567 [04:13<18:01, 2.34s/it]
19%|█▊ | 105/567 [04:20<27:50, 3.62s/it]
19%|█▊ | 106/567 [04:23<25:36, 3.33s/it]
19%|█▉ | 107/567 [04:24<20:09, 2.63s/it]
19%|█▉ | 108/567 [04:31<30:48, 4.03s/it]
19%|█▉ | 109/567 [04:32<23:17, 3.05s/it]
19%|█▉ | 110/567 [04:33<20:02, 2.63s/it]
20%|█▉ | 111/567 [04:39<26:24, 3.47s/it]
20%|█▉ | 112/567 [04:42<25:09, 3.32s/it]
20%|█▉ | 113/567 [04:47<28:24, 3.75s/it]
20%|██ | 114/567 [04:48<23:32, 3.12s/it]
20%|██ | 115/567 [04:52<23:57, 3.18s/it]
20%|██ | 116/567 [04:53<20:38, 2.75s/it]
21%|██ | 117/567 [04:55<18:10, 2.42s/it]
21%|██ | 118/567 [04:58<18:46, 2.51s/it]
21%|██ | 119/567 [05:03<25:06, 3.36s/it]
21%|██ | 120/567 [05:05<22:13, 2.98s/it]
21%|██▏ | 121/567 [05:06<17:16, 2.32s/it]
22%|██▏ | 122/567 [05:07<15:20, 2.07s/it]
22%|██▏ | 123/567 [05:09<15:01, 2.03s/it]
22%|██▏ | 124/567 [05:11<13:41, 1.86s/it]
22%|██▏ | 125/567 [05:12<13:01, 1.77s/it]
22%|██▏ | 126/567 [05:15<13:54, 1.89s/it]
22%|██▏ | 127/567 [05:18<18:05, 2.47s/it]
23%|██▎ | 128/567 [05:21<18:32, 2.53s/it]
23%|██▎ | 129/567 [05:24<19:39, 2.69s/it]
23%|██▎ | 130/567 [05:31<29:35, 4.06s/it]
23%|██▎ | 131/567 [05:36<31:01, 4.27s/it]
23%|██▎ | 132/567 [05:44<38:46, 5.35s/it]
23%|██▎ | 133/567 [05:52<43:40, 6.04s/it]
24%|██▎ | 134/567 [06:00<48:34, 6.73s/it]
24%|██▍ | 135/567 [06:02<37:56, 5.27s/it]
24%|██▍ | 136/567 [06:04<30:13, 4.21s/it]
24%|██▍ | 137/567 [06:06<25:22, 3.54s/it]
24%|██▍ | 138/567 [06:06<19:35, 2.74s/it]
25%|██▍ | 139/567 [06:08<17:33, 2.46s/it]
25%|██▍ | 140/567 [06:10<16:23, 2.30s/it]
25%|██▍ | 141/567 [06:12<15:50, 2.23s/it]
25%|██▌ | 142/567 [06:14<14:39, 2.07s/it]
25%|██▌ | 143/567 [06:15<13:14, 1.87s/it]
25%|██▌ | 144/567 [06:17<13:36, 1.93s/it]
26%|██▌ | 145/567 [06:20<13:58, 1.99s/it]
26%|██▌ | 146/567 [06:23<16:11, 2.31s/it]
26%|██▌ | 147/567 [06:28<21:42, 3.10s/it]
26%|██▌ | 148/567 [06:30<20:28, 2.93s/it]
26%|██▋ | 149/567 [06:31<16:21, 2.35s/it]
26%|██▋ | 150/567 [06:32<12:40, 1.82s/it]
27%|██▋ | 151/567 [06:32<10:06, 1.46s/it]
27%|██▋ | 152/567 [06:35<11:50, 1.71s/it]
27%|██▋ | 153/567 [06:37<13:14, 1.92s/it]
27%|██▋ | 154/567 [06:38<11:31, 1.67s/it]
27%|██▋ | 155/567 [06:40<11:49, 1.72s/it]
28%|██▊ | 156/567 [06:42<12:37, 1.84s/it]
28%|██▊ | 157/567 [06:44<12:40, 1.85s/it]
28%|██▊ | 158/567 [06:49<20:02, 2.94s/it]
28%|██▊ | 159/567 [06:51<17:15, 2.54s/it]
28%|██▊ | 160/567 [06:55<20:47, 3.07s/it]
28%|██▊ | 161/567 [06:56<16:16, 2.41s/it]
29%|██▊ | 162/567 [06:58<15:39, 2.32s/it]
29%|██▊ | 163/567 [07:00<14:43, 2.19s/it]
29%|██▉ | 164/567 [07:04<18:54, 2.81s/it]
29%|██▉ | 165/567 [07:07<18:42, 2.79s/it]
29%|██▉ | 166/567 [07:09<15:55, 2.38s/it]
29%|██▉ | 167/567 [07:13<20:44, 3.11s/it]
30%|██▉ | 168/567 [07:15<17:03, 2.56s/it]
30%|██▉ | 169/567 [07:17<16:56, 2.55s/it]
30%|██▉ | 170/567 [07:20<18:01, 2.72s/it]
30%|███ | 171/567 [07:23<17:36, 2.67s/it]
30%|███ | 172/567 [07:26<18:15, 2.77s/it]
31%|███ | 173/567 [07:27<15:56, 2.43s/it]
31%|███ | 174/567 [07:29<14:39, 2.24s/it]
31%|███ | 175/567 [07:32<14:50, 2.27s/it]
31%|███ | 176/567 [07:33<13:51, 2.13s/it]
31%|███ | 177/567 [07:37<15:56, 2.45s/it]
31%|███▏ | 178/567 [07:38<13:31, 2.09s/it]
32%|███▏ | 179/567 [07:40<13:59, 2.16s/it]
32%|███▏ | 180/567 [07:43<14:47, 2.29s/it]
32%|███▏ | 181/567 [07:45<14:09, 2.20s/it]
32%|███▏ | 182/567 [07:46<11:16, 1.76s/it]
32%|███▏ | 183/567 [07:46<09:21, 1.46s/it]
32%|███▏ | 184/567 [07:49<10:59, 1.72s/it]
33%|███▎ | 185/567 [07:50<09:46, 1.54s/it]
33%|███▎ | 186/567 [07:58<22:26, 3.54s/it]
33%|███▎ | 187/567 [08:00<18:49, 2.97s/it]
33%|███▎ | 188/567 [08:01<15:15, 2.42s/it]
33%|███▎ | 189/567 [08:03<14:24, 2.29s/it]
34%|███▎ | 190/567 [08:04<11:46, 1.87s/it]
34%|███▎ | 191/567 [08:08<16:15, 2.59s/it]
34%|███▍ | 192/567 [08:11<16:37, 2.66s/it]
34%|███▍ | 193/567 [08:20<29:09, 4.68s/it]
34%|███▍ | 194/567 [08:21<22:22, 3.60s/it]
34%|███▍ | 195/567 [08:23<18:30, 2.98s/it]
35%|███▍ | 196/567 [08:25<17:14, 2.79s/it]
35%|███▍ | 197/567 [08:29<19:52, 3.22s/it]
35%|███▍ | 198/567 [08:33<21:38, 3.52s/it]
35%|███▌ | 199/567 [08:36<20:09, 3.29s/it]
35%|███▌ | 200/567 [08:38<17:06, 2.80s/it]
35%|███▌ | 201/567 [08:39<14:29, 2.38s/it]
36%|███▌ | 202/567 [08:41<12:32, 2.06s/it]
36%|███▌ | 203/567 [08:42<11:49, 1.95s/it]
36%|███▌ | 204/567 [08:44<11:01, 1.82s/it]
36%|███▌ | 205/567 [08:46<11:39, 1.93s/it]
36%|███▋ | 206/567 [08:50<15:37, 2.60s/it]
37%|███▋ | 207/567 [08:52<14:39, 2.44s/it]
37%|███▋ | 208/567 [08:56<17:21, 2.90s/it]
37%|███▋ | 209/567 [08:57<14:02, 2.35s/it]
37%|███▋ | 210/567 [09:00<14:38, 2.46s/it]
37%|███▋ | 211/567 [09:02<14:15, 2.40s/it]
37%|███▋ | 212/567 [09:05<14:03, 2.38s/it]
38%|███▊ | 213/567 [09:07<14:17, 2.42s/it]
38%|███▊ | 214/567 [09:09<13:07, 2.23s/it]
38%|███▊ | 215/567 [09:12<14:10, 2.42s/it]
38%|███▊ | 216/567 [09:14<13:50, 2.37s/it]
38%|███▊ | 217/567 [09:18<16:03, 2.75s/it]
38%|███▊ | 218/567 [09:21<17:46, 3.06s/it]
39%|███▊ | 219/567 [09:24<16:20, 2.82s/it]
39%|███▉ | 220/567 [09:25<14:27, 2.50s/it]
39%|███▉ | 221/567 [09:26<11:53, 2.06s/it]
39%|███▉ | 222/567 [09:28<11:09, 1.94s/it]
39%|███▉ | 223/567 [09:29<09:47, 1.71s/it]
40%|███▉ | 224/567 [09:31<10:27, 1.83s/it]
40%|███▉ | 225/567 [09:34<12:17, 2.16s/it]
40%|███▉ | 226/567 [09:37<13:35, 2.39s/it]
40%|████ | 227/567 [09:38<11:26, 2.02s/it]
40%|████ | 228/567 [09:41<12:09, 2.15s/it]
40%|████ | 229/567 [09:44<14:29, 2.57s/it]
41%|████ | 230/567 [09:46<12:34, 2.24s/it]
41%|████ | 231/567 [09:49<14:01, 2.50s/it]
41%|████ | 232/567 [09:51<12:23, 2.22s/it]
41%|████ | 233/567 [09:54<14:33, 2.62s/it]
41%|████▏ | 234/567 [09:55<11:31, 2.08s/it]
41%|████▏ | 235/567 [09:58<12:59, 2.35s/it]
42%|████▏ | 236/567 [10:01<14:02, 2.54s/it]
42%|████▏ | 237/567 [10:02<11:25, 2.08s/it]
42%|████▏ | 238/567 [10:04<11:59, 2.19s/it]
42%|████▏ | 239/567 [10:07<12:46, 2.34s/it]
42%|████▏ | 240/567 [10:15<21:41, 3.98s/it]
43%|████▎ | 241/567 [10:17<18:24, 3.39s/it]
43%|████▎ | 242/567 [10:18<15:09, 2.80s/it]
43%|████▎ | 243/567 [10:21<15:00, 2.78s/it]
43%|████▎ | 244/567 [10:25<17:38, 3.28s/it]
43%|████▎ | 245/567 [10:26<13:52, 2.58s/it]
43%|████▎ | 246/567 [10:29<13:12, 2.47s/it]
44%|████▎ | 247/567 [10:29<10:21, 1.94s/it]
44%|████▎ | 248/567 [10:32<11:03, 2.08s/it]
44%|████▍ | 249/567 [10:33<10:04, 1.90s/it]
44%|████▍ | 250/567 [10:37<12:25, 2.35s/it]
44%|████▍ | 251/567 [10:42<17:42, 3.36s/it]
44%|████▍ | 252/567 [10:45<16:38, 3.17s/it]
45%|████▍ | 253/567 [10:46<12:51, 2.46s/it]
45%|████▍ | 254/567 [10:54<22:23, 4.29s/it]
45%|████▍ | 255/567 [10:57<19:21, 3.72s/it]
45%|████▌ | 256/567 [10:58<14:56, 2.88s/it]
45%|████▌ | 257/567 [11:03<18:14, 3.53s/it]
46%|████▌ | 258/567 [11:06<17:02, 3.31s/it]
46%|████▌ | 259/567 [11:07<13:38, 2.66s/it]
46%|████▌ | 260/567 [11:12<17:09, 3.35s/it]
46%|████▌ | 261/567 [11:14<15:54, 3.12s/it]
46%|████▌ | 262/567 [11:19<18:22, 3.61s/it]
46%|████▋ | 263/567 [11:20<14:46, 2.91s/it]
47%|████▋ | 264/567 [11:21<11:13, 2.22s/it]
47%|████▋ | 265/567 [11:26<16:02, 3.19s/it]
47%|████▋ | 266/567 [11:28<13:23, 2.67s/it]
47%|████▋ | 267/567 [11:30<12:10, 2.43s/it]
47%|████▋ | 268/567 [11:34<14:38, 2.94s/it]
47%|████▋ | 269/567 [11:37<14:24, 2.90s/it]
48%|████▊ | 270/567 [11:38<12:20, 2.49s/it]
48%|████▊ | 271/567 [11:42<14:23, 2.92s/it]
48%|████▊ | 272/567 [11:44<13:14, 2.69s/it]
48%|████▊ | 273/567 [11:46<12:21, 2.52s/it]
48%|████▊ | 274/567 [11:48<10:55, 2.24s/it]
49%|████▊ | 275/567 [11:49<09:46, 2.01s/it]
49%|████▊ | 276/567 [11:52<10:06, 2.09s/it]
49%|████▉ | 277/567 [11:54<10:53, 2.25s/it]
49%|████▉ | 278/567 [11:55<08:43, 1.81s/it]
49%|████▉ | 279/567 [12:00<13:09, 2.74s/it]
49%|████▉ | 280/567 [12:03<13:23, 2.80s/it]
50%|████▉ | 281/567 [12:04<10:54, 2.29s/it]
50%|████▉ | 282/567 [12:06<09:47, 2.06s/it]
50%|████▉ | 283/567 [12:09<12:08, 2.56s/it]
50%|█████ | 284/567 [12:11<10:22, 2.20s/it]
50%|█████ | 285/567 [12:12<09:27, 2.01s/it]
50%|█████ | 286/567 [12:13<07:56, 1.70s/it]
51%|█████ | 287/567 [12:16<10:07, 2.17s/it]
51%|█████ | 288/567 [12:18<09:51, 2.12s/it]
51%|█████ | 289/567 [12:21<11:03, 2.39s/it]
51%|█████ | 290/567 [12:24<11:39, 2.52s/it]
51%|█████▏ | 291/567 [12:26<11:04, 2.41s/it]
51%|█████▏ | 292/567 [12:29<11:30, 2.51s/it]
52%|█████▏ | 293/567 [12:32<11:17, 2.47s/it]
52%|█████▏ | 294/567 [12:33<10:08, 2.23s/it]
52%|█████▏ | 295/567 [12:35<09:23, 2.07s/it]
52%|█████▏ | 296/567 [12:38<10:35, 2.34s/it]
52%|█████▏ | 297/567 [12:40<09:40, 2.15s/it]
53%|█████▎ | 298/567 [12:47<16:27, 3.67s/it]
53%|█████▎ | 299/567 [12:49<13:42, 3.07s/it]
53%|█████▎ | 300/567 [12:51<13:18, 2.99s/it]
53%|█████▎ | 301/567 [12:54<12:49, 2.89s/it]
53%|█████▎ | 302/567 [12:56<11:18, 2.56s/it]
53%|█████▎ | 303/567 [12:57<10:05, 2.29s/it]
54%|█████▎ | 304/567 [12:59<09:17, 2.12s/it]
54%|█████▍ | 305/567 [13:01<08:40, 1.99s/it]
54%|█████▍ | 306/567 [13:03<09:28, 2.18s/it]
54%|█████▍ | 307/567 [13:09<14:10, 3.27s/it]
54%|█████▍ | 308/567 [13:11<11:48, 2.74s/it]
54%|█████▍ | 309/567 [13:12<10:14, 2.38s/it]
55%|█████▍ | 310/567 [13:24<21:30, 5.02s/it]
55%|█████▍ | 311/567 [13:27<19:08, 4.48s/it]
55%|█████▌ | 312/567 [13:28<15:18, 3.60s/it]
55%|█████▌ | 313/567 [13:30<12:29, 2.95s/it]
55%|█████▌ | 314/567 [13:33<12:50, 3.05s/it]
56%|█████▌ | 315/567 [13:40<17:44, 4.22s/it]
56%|█████▌ | 316/567 [13:41<13:45, 3.29s/it]
56%|█████▌ | 317/567 [13:44<12:59, 3.12s/it]
56%|█████▌ | 318/567 [13:45<10:12, 2.46s/it]
56%|█████▋ | 319/567 [13:48<11:21, 2.75s/it]
56%|█████▋ | 320/567 [13:49<08:48, 2.14s/it]
57%|█████▋ | 321/567 [13:55<13:15, 3.23s/it]
57%|█████▋ | 322/567 [13:57<12:11, 2.99s/it]
57%|█████▋ | 323/567 [13:59<11:09, 2.75s/it]
57%|█████▋ | 324/567 [14:01<09:57, 2.46s/it]
57%|█████▋ | 325/567 [14:09<16:05, 3.99s/it]
57%|█████▋ | 326/567 [14:09<12:13, 3.05s/it]
58%|█████▊ | 327/567 [14:11<10:24, 2.60s/it]
58%|█████▊ | 328/567 [14:13<10:01, 2.52s/it]
58%|█████▊ | 329/567 [14:18<12:46, 3.22s/it]
58%|█████▊ | 330/567 [14:19<09:29, 2.40s/it]
58%|█████▊ | 331/567 [14:20<08:30, 2.16s/it]
59%|█████▊ | 332/567 [14:22<07:57, 2.03s/it]
59%|█████▊ | 333/567 [14:24<08:14, 2.11s/it]
59%|█████▉ | 334/567 [14:26<07:33, 1.94s/it]
59%|█████▉ | 335/567 [14:28<07:38, 1.98s/it]
59%|█████▉ | 336/567 [14:29<06:13, 1.62s/it]
59%|█████▉ | 337/567 [14:32<08:38, 2.25s/it]
60%|█████▉ | 338/567 [14:35<08:45, 2.29s/it]
60%|█████▉ | 339/567 [14:36<07:43, 2.03s/it]
60%|█████▉ | 340/567 [14:37<06:38, 1.75s/it]
60%|██████ | 341/567 [14:39<06:09, 1.64s/it]
60%|██████ | 342/567 [14:41<07:09, 1.91s/it]
60%|██████ | 343/567 [14:43<06:32, 1.75s/it]
61%|██████ | 344/567 [14:45<07:08, 1.92s/it]
61%|██████ | 345/567 [14:47<06:45, 1.82s/it]
61%|██████ | 346/567 [14:48<06:20, 1.72s/it]
61%|██████ | 347/567 [14:51<07:33, 2.06s/it]
61%|██████▏ | 348/567 [14:53<07:26, 2.04s/it]
62%|██████▏ | 349/567 [14:58<10:23, 2.86s/it]
62%|██████▏ | 350/567 [15:00<09:45, 2.70s/it]
62%|██████▏ | 351/567 [15:10<17:17, 4.80s/it]
62%|██████▏ | 352/567 [15:11<13:49, 3.86s/it]
62%|██████▏ | 353/567 [15:16<14:14, 3.99s/it]
62%|██████▏ | 354/567 [15:19<13:06, 3.69s/it]
63%|██████▎ | 355/567 [15:20<10:49, 3.06s/it]
63%|██████▎ | 356/567 [15:24<12:03, 3.43s/it]
63%|██████▎ | 357/567 [15:26<09:46, 2.79s/it]
63%|██████▎ | 358/567 [15:28<08:50, 2.54s/it]
63%|██████▎ | 359/567 [15:29<07:24, 2.14s/it]
63%|██████▎ | 360/567 [15:31<06:50, 1.99s/it]
64%|██████▎ | 361/567 [15:32<06:33, 1.91s/it]
64%|██████▍ | 362/567 [15:36<08:00, 2.35s/it]
64%|██████▍ | 363/567 [15:40<10:26, 3.07s/it]
64%|██████▍ | 364/567 [15:44<10:50, 3.20s/it]
64%|██████▍ | 365/567 [15:46<09:47, 2.91s/it]
65%|██████▍ | 366/567 [15:48<08:49, 2.63s/it]
65%|██████▍ | 367/567 [15:51<08:54, 2.67s/it]
65%|██████▍ | 368/567 [15:55<10:33, 3.19s/it]
65%|██████▌ | 369/567 [15:58<10:17, 3.12s/it]
65%|██████▌ | 370/567 [16:00<08:59, 2.74s/it]
65%|██████▌ | 371/567 [16:02<08:03, 2.47s/it]
66%|██████▌ | 372/567 [16:03<07:02, 2.17s/it]
66%|██████▌ | 373/567 [16:07<08:51, 2.74s/it]
66%|██████▌ | 374/567 [16:11<09:31, 2.96s/it]
66%|██████▌ | 375/567 [16:14<09:14, 2.89s/it]
66%|██████▋ | 376/567 [16:15<07:45, 2.44s/it]
66%|██████▋ | 377/567 [16:21<10:42, 3.38s/it]
67%|██████▋ | 378/567 [16:23<09:58, 3.17s/it]
67%|██████▋ | 379/567 [16:27<10:26, 3.33s/it]
67%|██████▋ | 380/567 [16:29<08:53, 2.85s/it]
67%|██████▋ | 381/567 [16:31<08:03, 2.60s/it]
67%|██████▋ | 382/567 [16:34<08:33, 2.78s/it]
68%|██████▊ | 383/567 [16:38<09:25, 3.07s/it]
68%|██████▊ | 384/567 [16:42<10:15, 3.36s/it]
68%|██████▊ | 385/567 [16:46<10:32, 3.48s/it]
68%|██████▊ | 386/567 [16:48<09:10, 3.04s/it]
68%|██████▊ | 387/567 [16:49<07:46, 2.59s/it]
68%|██████▊ | 388/567 [17:00<14:45, 4.95s/it]
69%|██████▊ | 389/567 [17:02<12:03, 4.06s/it]
69%|██████▉ | 390/567 [17:03<09:18, 3.15s/it]
69%|██████▉ | 391/567 [17:05<08:58, 3.06s/it]
69%|██████▉ | 392/567 [17:10<09:50, 3.38s/it]
69%|██████▉ | 393/567 [17:11<08:06, 2.80s/it]
69%|██████▉ | 394/567 [17:14<08:35, 2.98s/it]
70%|██████▉ | 395/567 [17:18<09:27, 3.30s/it]
70%|██████▉ | 396/567 [17:20<08:21, 2.93s/it]
70%|███████ | 397/567 [17:26<10:40, 3.77s/it]
70%|███████ | 398/567 [17:27<08:12, 2.91s/it]
70%|███████ | 399/567 [17:28<06:43, 2.40s/it]
71%|███████ | 400/567 [17:30<05:53, 2.12s/it]
71%|███████ | 401/567 [17:32<05:54, 2.13s/it]
71%|███████ | 402/567 [17:36<07:06, 2.58s/it]
71%|███████ | 403/567 [17:38<06:32, 2.39s/it]
71%|███████▏ | 404/567 [17:39<05:41, 2.10s/it]
71%|███████▏ | 405/567 [17:40<04:53, 1.81s/it]
72%|███████▏ | 406/567 [17:42<05:17, 1.97s/it]
72%|███████▏ | 407/567 [17:44<04:41, 1.76s/it]
72%|███████▏ | 408/567 [17:48<06:23, 2.41s/it]
72%|███████▏ | 409/567 [17:49<05:26, 2.06s/it]
72%|███████▏ | 410/567 [17:51<05:14, 2.00s/it]
72%|███████▏ | 411/567 [17:52<04:20, 1.67s/it]
73%|███████▎ | 412/567 [17:54<05:04, 1.96s/it]
73%|███████▎ | 413/567 [17:57<05:38, 2.20s/it]
73%|███████▎ | 414/567 [17:58<04:25, 1.74s/it]
73%|███████▎ | 415/567 [18:03<07:03, 2.78s/it]
73%|███████▎ | 416/567 [18:05<06:49, 2.71s/it]
74%|███████▎ | 417/567 [18:11<08:51, 3.54s/it]
74%|███████▎ | 418/567 [18:13<07:50, 3.16s/it]
74%|███████▍ | 419/567 [18:22<12:07, 4.91s/it]
74%|███████▍ | 420/567 [18:25<10:41, 4.36s/it]
74%|███████▍ | 421/567 [18:28<09:43, 4.00s/it]
74%|███████▍ | 422/567 [18:31<08:30, 3.52s/it]
75%|███████▍ | 423/567 [18:33<07:46, 3.24s/it]
75%|███████▍ | 424/567 [18:35<06:50, 2.87s/it]
75%|███████▍ | 425/567 [18:38<06:35, 2.79s/it]
75%|███████▌ | 426/567 [18:39<05:11, 2.21s/it]
75%|███████▌ | 427/567 [18:41<05:03, 2.16s/it]
75%|███████▌ | 428/567 [18:45<06:06, 2.64s/it]
76%|███████▌ | 429/567 [18:49<07:31, 3.27s/it]
76%|███████▌ | 430/567 [18:52<06:40, 2.93s/it]
76%|███████▌ | 431/567 [18:57<08:21, 3.68s/it]
76%|███████▌ | 432/567 [19:01<08:30, 3.78s/it]
76%|███████▋ | 433/567 [19:05<08:17, 3.71s/it]
77%|███████▋ | 434/567 [19:07<07:38, 3.44s/it]
77%|███████▋ | 435/567 [19:08<05:59, 2.72s/it]
77%|███████▋ | 436/567 [19:11<05:43, 2.63s/it]
77%|███████▋ | 437/567 [19:12<04:45, 2.20s/it]
77%|███████▋ | 438/567 [19:15<05:10, 2.41s/it]
77%|███████▋ | 439/567 [19:17<04:59, 2.34s/it]
78%|███████▊ | 440/567 [19:19<04:23, 2.07s/it]
78%|███████▊ | 441/567 [19:21<04:48, 2.29s/it]
78%|███████▊ | 442/567 [19:23<04:30, 2.16s/it]
78%|███████▊ | 443/567 [19:25<04:08, 2.01s/it]
78%|███████▊ | 444/567 [19:29<05:38, 2.75s/it]
78%|███████▊ | 445/567 [19:31<05:13, 2.57s/it]
79%|███████▊ | 446/567 [19:36<06:09, 3.05s/it]
79%|███████▉ | 447/567 [19:39<06:03, 3.03s/it]
79%|███████▉ | 448/567 [19:41<05:46, 2.91s/it]
79%|███████▉ | 449/567 [19:43<04:59, 2.54s/it]
79%|███████▉ | 450/567 [19:45<04:39, 2.39s/it]
80%|███████▉ | 451/567 [19:47<04:13, 2.19s/it]
80%|███████▉ | 452/567 [19:49<04:00, 2.09s/it]
80%|███████▉ | 453/567 [19:52<04:41, 2.47s/it]
80%|████████ | 454/567 [19:54<04:24, 2.34s/it]
80%|████████ | 455/567 [19:55<03:51, 2.07s/it]
80%|████████ | 456/567 [19:57<03:24, 1.84s/it]
81%|████████ | 457/567 [19:58<03:09, 1.73s/it]
81%|████████ | 458/567 [20:01<03:41, 2.03s/it]
81%|████████ | 459/567 [20:04<04:08, 2.30s/it]
81%|████████ | 460/567 [20:04<03:11, 1.79s/it]
81%|████████▏ | 461/567 [20:06<03:03, 1.73s/it]
81%|████████▏ | 462/567 [20:07<02:42, 1.55s/it]
82%|████████▏ | 463/567 [20:09<02:46, 1.60s/it]
82%|████████▏ | 464/567 [20:10<02:32, 1.48s/it]
82%|████████▏ | 465/567 [20:13<03:01, 1.77s/it]
82%|████████▏ | 466/567 [20:15<03:05, 1.83s/it]
82%|████████▏ | 467/567 [20:16<02:39, 1.60s/it]
83%|████████▎ | 468/567 [20:18<03:07, 1.90s/it]
83%|████████▎ | 469/567 [20:19<02:47, 1.71s/it]
83%|████████▎ | 470/567 [20:22<02:58, 1.84s/it]
83%|████████▎ | 471/567 [20:25<03:33, 2.23s/it]
83%|████████▎ | 472/567 [20:31<05:13, 3.30s/it]
83%|████████▎ | 473/567 [20:34<05:01, 3.21s/it]
84%|████████▎ | 474/567 [20:38<05:29, 3.54s/it]
84%|████████▍ | 475/567 [20:39<04:12, 2.75s/it]
84%|████████▍ | 476/567 [20:41<03:43, 2.46s/it]
84%|████████▍ | 477/567 [20:41<02:58, 1.98s/it]
84%|████████▍ | 478/567 [20:43<02:43, 1.84s/it]
84%|████████▍ | 479/567 [20:44<02:23, 1.63s/it]
85%|████████▍ | 480/567 [20:46<02:25, 1.68s/it]
85%|████████▍ | 481/567 [20:51<03:42, 2.58s/it]
85%|████████▌ | 482/567 [20:52<03:17, 2.33s/it]
85%|████████▌ | 483/567 [20:54<02:52, 2.05s/it]
85%|████████▌ | 484/567 [20:58<03:40, 2.65s/it]
86%|████████▌ | 485/567 [20:59<03:04, 2.25s/it]
86%|████████▌ | 486/567 [21:01<03:01, 2.24s/it]
86%|████████▌ | 487/567 [21:07<04:33, 3.42s/it]
86%|████████▌ | 488/567 [21:09<03:36, 2.74s/it]
86%|████████▌ | 489/567 [21:11<03:17, 2.53s/it]
86%|████████▋ | 490/567 [21:16<04:18, 3.35s/it]
87%|████████▋ | 491/567 [21:18<03:43, 2.95s/it]
87%|████████▋ | 492/567 [21:19<02:53, 2.32s/it]
87%|████████▋ | 493/567 [21:22<03:20, 2.71s/it]
87%|████████▋ | 494/567 [21:25<03:20, 2.75s/it]
87%|████████▋ | 495/567 [21:34<05:27, 4.55s/it]
87%|████████▋ | 496/567 [21:36<04:19, 3.66s/it]
88%|████████▊ | 497/567 [21:39<04:07, 3.54s/it]
88%|████████▊ | 498/567 [21:42<03:54, 3.40s/it]
88%|████████▊ | 499/567 [21:44<03:27, 3.05s/it]
88%|████████▊ | 500/567 [21:46<02:53, 2.59s/it]
88%|████████▊ | 501/567 [21:47<02:22, 2.17s/it]
89%|████████▊ | 502/567 [21:50<02:42, 2.50s/it]
89%|████████▊ | 503/567 [21:57<04:06, 3.84s/it]
89%|████████▉ | 504/567 [22:00<03:41, 3.51s/it]
89%|████████▉ | 505/567 [22:04<03:47, 3.67s/it]
89%|████████▉ | 506/567 [22:08<03:58, 3.90s/it]
89%|████████▉ | 507/567 [22:10<03:07, 3.13s/it]
90%|████████▉ | 508/567 [22:12<02:54, 2.95s/it]
90%|████████▉ | 509/567 [22:14<02:28, 2.57s/it]
90%|████████▉ | 510/567 [22:17<02:43, 2.88s/it]
90%|█████████ | 511/567 [22:20<02:38, 2.84s/it]
90%|█████████ | 512/567 [22:26<03:22, 3.68s/it]
90%|█████████ | 513/567 [22:29<03:12, 3.56s/it]
91%|█████████ | 514/567 [22:30<02:22, 2.69s/it]
91%|█████████ | 515/567 [22:32<02:07, 2.45s/it]
91%|█████████ | 516/567 [22:33<01:49, 2.16s/it]
91%|█████████ | 517/567 [22:36<01:51, 2.23s/it]
91%|█████████▏| 518/567 [22:37<01:38, 2.02s/it]
92%|█████████▏| 519/567 [22:39<01:38, 2.05s/it]
92%|█████████▏| 520/567 [22:41<01:30, 1.92s/it]
92%|█████████▏| 521/567 [22:43<01:34, 2.05s/it]
92%|█████████▏| 522/567 [22:46<01:44, 2.32s/it]
92%|█████████▏| 523/567 [22:49<01:44, 2.37s/it]
92%|█████████▏| 524/567 [22:51<01:37, 2.26s/it]
93%|█████████▎| 525/567 [22:53<01:34, 2.24s/it]
93%|█████████▎| 526/567 [22:55<01:31, 2.24s/it]
93%|█████████▎| 527/567 [22:57<01:30, 2.27s/it]
93%|█████████▎| 528/567 [22:59<01:19, 2.04s/it]
93%|█████████▎| 529/567 [23:01<01:16, 2.01s/it]
93%|█████████▎| 530/567 [23:05<01:35, 2.57s/it]
94%|█████████▎| 531/567 [23:07<01:25, 2.38s/it]
94%|█████████▍| 532/567 [23:09<01:19, 2.28s/it]
94%|█████████▍| 533/567 [23:10<01:07, 1.99s/it]
94%|█████████▍| 534/567 [23:11<00:57, 1.74s/it]
94%|█████████▍| 535/567 [23:14<01:05, 2.06s/it]
95%|█████████▍| 536/567 [23:16<01:04, 2.10s/it]
95%|█████████▍| 537/567 [23:19<01:12, 2.40s/it]
95%|█████████▍| 538/567 [23:21<01:01, 2.13s/it]
95%|█████████▌| 539/567 [23:26<01:29, 3.20s/it]
95%|█████████▌| 540/567 [23:35<02:11, 4.88s/it]
95%|█████████▌| 541/567 [23:40<02:08, 4.96s/it]
96%|█████████▌| 542/567 [23:44<01:53, 4.55s/it]
96%|█████████▌| 543/567 [23:54<02:27, 6.14s/it]
96%|█████████▌| 544/567 [23:54<01:43, 4.48s/it]
96%|█████████▌| 545/567 [23:57<01:25, 3.90s/it]
96%|█████████▋| 546/567 [23:59<01:08, 3.25s/it]
96%|█████████▋| 547/567 [24:00<00:52, 2.62s/it]
97%|█████████▋| 548/567 [24:02<00:44, 2.34s/it]
97%|█████████▋| 549/567 [24:03<00:38, 2.12s/it]
97%|█████████▋| 550/567 [24:05<00:35, 2.06s/it]
97%|█████████▋| 551/567 [24:07<00:34, 2.13s/it]
97%|█████████▋| 552/567 [24:11<00:39, 2.62s/it]
98%|█████████▊| 553/567 [24:12<00:31, 2.23s/it]
98%|█████████▊| 554/567 [24:14<00:25, 1.93s/it]
98%|█████████▊| 555/567 [24:15<00:22, 1.87s/it]
98%|█████████▊| 556/567 [24:17<00:19, 1.76s/it]
98%|█████████▊| 557/567 [24:21<00:23, 2.32s/it]
98%|█████████▊| 558/567 [24:23<00:20, 2.30s/it]
99%|█████████▊| 559/567 [24:26<00:21, 2.64s/it]
99%|█████████▉| 560/567 [24:29<00:19, 2.75s/it]
99%|█████████▉| 561/567 [24:30<00:13, 2.30s/it]
99%|█████████▉| 562/567 [24:35<00:15, 3.03s/it]
99%|█████████▉| 563/567 [24:38<00:12, 3.02s/it]
99%|█████████▉| 564/567 [24:42<00:09, 3.27s/it]
100%|█████████▉| 565/567 [24:44<00:05, 2.89s/it]
100%|█████████▉| 566/567 [24:47<00:02, 2.76s/it]
100%|██████████| 567/567 [24:47<00:00, 2.07s/it]
100%|██████████| 567/567 [24:47<00:00, 2.62s/it]
-Batch output: ['Lao Geng picked up his gun, squinted one triangular eye, pulled the trigger, and the gold sparrows fell in a hailstorm, the iron sand flew apart between the willow branches, and there was a crackling sound.', 'The next day, before dawn, Liu Laolao got up, washed and dressed, and then taught the boarder a few sentences; a child of five or six years old, hearing that he was taken into the city for a walk, was delighted and readily agreed.']
-internlm/internlm2_5-7b-chat/shots-01 metrics: {'meteor': 0.3719587471180722, 'bleu_scores': {'bleu': 0.1157707566176535, 'precisions': [0.4309633418584825, 0.1586265607264472, 0.07575757575757576, 0.03902965791199044], 'brevity_penalty': 0.9709337747112212, 'length_ratio': 0.9713481285193772, 'translation_length': 29325, 'reference_length': 30190}, 'rouge_scores': {'rouge1': 0.4216021177036626, 'rouge2': 0.17379734056140428, 'rougeL': 0.36406743317420387, 'rougeLsum': 0.364046620974045}, 'accuracy': 0.0, 'correct_ids': []}
-*** Evaluating with num_shots: 3
-loading train/test data files
-
Map: 0%| | 0/4528 [00:00, ? examples/s]
Map: 100%|██████████| 4528/4528 [00:00<00:00, 47153.34 examples/s]
-
Map: 0%| | 0/1133 [00:00, ? examples/s]
Map: 100%|██████████| 1133/1133 [00:00<00:00, 41802.84 examples/s]
-DatasetDict({
- train: Dataset({
- features: ['chinese', 'english', 'text', 'prompt'],
- num_rows: 4528
- })
- test: Dataset({
- features: ['chinese', 'english', 'text', 'prompt'],
- num_rows: 1133
- })
-})
---------------------------------------------------
-chinese: 老耿端起枪,眯缝起一只三角眼,一搂扳机响了枪,冰雹般的金麻雀劈哩啪啦往下落,铁砂子在柳枝间飞迸着,嚓嚓有声。
---------------------------------------------------
-english: Old Geng picked up his shotgun, squinted, and pulled the trigger. Two sparrows crashed to the ground like hailstones as shotgun pellets tore noisily through the branches.
---------------------------------------------------
-text: <|im_start|>system
-You are a helpful assistant that translates Chinese to English.<|im_end|>
-<|im_start|>user
-You will be given a Chinese sentence to translate. If it is an incomplete sentence, or if you are unsure about the meaning, simply copy the input text as your output. Do not output any additional sentence such as explanation or reasoning.
-
-Example Translations:
-Chinese: 全仗着狐仙搭救。
-English: Because I was protected by a fox fairy.
-Chinese: 过后,表哥告诉她俩,这人是导演,在外国留过学的,还会编剧,今天拍的这戏,就是他自编自导的。
-English: He was the director, the cousin later told them. He had studied abroad and was also a screenwriter; in fact he had written and directed the scene they had earlier seen being filmed.
-Chinese: 这凤姐忽然想起一件事来,便向窗外叫:“蓉儿回来!”
-English: Xi-feng suddenly seemed to remember something, and called to him through the window, 'Rong, come back!'
-
-Chinese: 老耿端起枪,眯缝起一只三角眼,一搂扳机响了枪,冰雹般的金麻雀劈哩啪啦往下落,铁砂子在柳枝间飞迸着,嚓嚓有声。
-English:<|im_end|>
-<|im_start|>assistant
-Old Geng picked up his shotgun, squinted, and pulled the trigger. Two sparrows crashed to the ground like hailstones as shotgun pellets tore noisily through the branches.
---------------------------------------------------
-prompt: <|im_start|>system
-You are a helpful assistant that translates Chinese to English.<|im_end|>
-<|im_start|>user
-You will be given a Chinese sentence to translate. If it is an incomplete sentence, or if you are unsure about the meaning, simply copy the input text as your output. Do not output any additional sentence such as explanation or reasoning.
-
-Example Translations:
-Chinese: 全仗着狐仙搭救。
-English: Because I was protected by a fox fairy.
-Chinese: 过后,表哥告诉她俩,这人是导演,在外国留过学的,还会编剧,今天拍的这戏,就是他自编自导的。
-English: He was the director, the cousin later told them. He had studied abroad and was also a screenwriter; in fact he had written and directed the scene they had earlier seen being filmed.
-Chinese: 这凤姐忽然想起一件事来,便向窗外叫:“蓉儿回来!”
-English: Xi-feng suddenly seemed to remember something, and called to him through the window, 'Rong, come back!'
-
-Chinese: 老耿端起枪,眯缝起一只三角眼,一搂扳机响了枪,冰雹般的金麻雀劈哩啪啦往下落,铁砂子在柳枝间飞迸着,嚓嚓有声。
-English:<|im_end|>
-<|im_start|>assistant
-
-
0%| | 0/567 [00:00, ?it/s]
0%| | 1/567 [00:05<51:34, 5.47s/it]
0%| | 2/567 [00:14<1:10:15, 7.46s/it]
1%| | 3/567 [00:19<58:59, 6.28s/it]
1%| | 4/567 [00:29<1:12:50, 7.76s/it]
1%| | 5/567 [00:31<52:43, 5.63s/it]
1%| | 6/567 [00:34<44:10, 4.73s/it]
1%| | 7/567 [00:35<33:39, 3.61s/it]
1%|▏ | 8/567 [00:39<36:27, 3.91s/it]
2%|▏ | 9/567 [00:44<37:25, 4.02s/it]
2%|▏ | 10/567 [00:47<35:19, 3.81s/it]
2%|▏ | 11/567 [00:52<38:19, 4.14s/it]
2%|▏ | 12/567 [00:54<31:25, 3.40s/it]
2%|▏ | 13/567 [00:58<32:59, 3.57s/it]
2%|▏ | 14/567 [01:00<29:32, 3.21s/it]
3%|▎ | 15/567 [01:02<25:07, 2.73s/it]
3%|▎ | 16/567 [01:05<26:15, 2.86s/it]
3%|▎ | 17/567 [01:12<39:01, 4.26s/it]
3%|▎ | 18/567 [01:15<33:40, 3.68s/it]
3%|▎ | 19/567 [01:16<28:09, 3.08s/it]
4%|▎ | 20/567 [01:19<26:01, 2.85s/it]
4%|▎ | 21/567 [01:23<30:17, 3.33s/it]
4%|▍ | 22/567 [01:25<27:46, 3.06s/it]
4%|▍ | 23/567 [01:31<34:09, 3.77s/it]
4%|▍ | 24/567 [01:33<29:57, 3.31s/it]
4%|▍ | 25/567 [01:35<24:55, 2.76s/it]
5%|▍ | 26/567 [01:38<27:12, 3.02s/it]
5%|▍ | 27/567 [01:40<24:04, 2.67s/it]
5%|▍ | 28/567 [01:49<39:39, 4.41s/it]
5%|▌ | 29/567 [01:52<38:08, 4.25s/it]
5%|▌ | 30/567 [01:56<36:20, 4.06s/it]
5%|▌ | 31/567 [01:57<28:40, 3.21s/it]
6%|▌ | 32/567 [02:00<27:32, 3.09s/it]
6%|▌ | 33/567 [02:03<26:38, 2.99s/it]
6%|▌ | 34/567 [02:08<33:08, 3.73s/it]
6%|▌ | 35/567 [02:12<32:05, 3.62s/it]
6%|▋ | 36/567 [02:16<33:42, 3.81s/it]
7%|▋ | 37/567 [02:17<26:32, 3.00s/it]
7%|▋ | 38/567 [02:19<23:56, 2.72s/it]
7%|▋ | 39/567 [02:22<24:17, 2.76s/it]
7%|▋ | 40/567 [02:25<25:45, 2.93s/it]
7%|▋ | 41/567 [02:26<20:06, 2.29s/it]
7%|▋ | 42/567 [02:30<24:54, 2.85s/it]
8%|▊ | 43/567 [02:32<21:33, 2.47s/it]
8%|▊ | 44/567 [02:35<22:47, 2.62s/it]
8%|▊ | 45/567 [02:38<25:09, 2.89s/it]
8%|▊ | 46/567 [02:40<22:39, 2.61s/it]
8%|▊ | 47/567 [02:43<23:35, 2.72s/it]
8%|▊ | 48/567 [02:47<26:38, 3.08s/it]
9%|▊ | 49/567 [02:48<21:49, 2.53s/it]
9%|▉ | 50/567 [02:52<25:05, 2.91s/it]
9%|▉ | 51/567 [02:57<30:59, 3.60s/it]
9%|▉ | 52/567 [02:59<24:52, 2.90s/it]
9%|▉ | 53/567 [03:14<56:04, 6.54s/it]
10%|▉ | 54/567 [03:19<51:57, 6.08s/it]
10%|▉ | 55/567 [03:24<51:05, 5.99s/it]
10%|▉ | 56/567 [03:32<53:51, 6.32s/it]
10%|█ | 57/567 [03:39<56:13, 6.62s/it]
10%|█ | 58/567 [03:40<43:03, 5.08s/it]
10%|█ | 59/567 [03:44<39:41, 4.69s/it]
11%|█ | 60/567 [03:47<35:16, 4.17s/it]
11%|█ | 61/567 [03:49<30:29, 3.62s/it]
11%|█ | 62/567 [03:52<27:37, 3.28s/it]
11%|█ | 63/567 [03:55<27:45, 3.31s/it]
11%|█▏ | 64/567 [04:01<34:37, 4.13s/it]
11%|█▏ | 65/567 [04:03<28:52, 3.45s/it]
12%|█▏ | 66/567 [04:07<30:37, 3.67s/it]
12%|█▏ | 67/567 [04:09<25:07, 3.01s/it]
12%|█▏ | 68/567 [04:17<38:12, 4.59s/it]
12%|█▏ | 69/567 [04:20<34:46, 4.19s/it]
12%|█▏ | 70/567 [04:24<33:08, 4.00s/it]
13%|█▎ | 71/567 [04:26<27:06, 3.28s/it]
13%|█▎ | 72/567 [04:29<28:18, 3.43s/it]
13%|█▎ | 73/567 [04:31<23:13, 2.82s/it]
13%|█▎ | 74/567 [04:32<20:27, 2.49s/it]
13%|█▎ | 75/567 [04:34<18:52, 2.30s/it]
13%|█▎ | 76/567 [04:37<20:56, 2.56s/it]
14%|█▎ | 77/567 [04:41<23:48, 2.92s/it]
14%|█▍ | 78/567 [04:44<22:52, 2.81s/it]
14%|█▍ | 79/567 [04:47<25:01, 3.08s/it]
14%|█▍ | 80/567 [04:50<24:32, 3.02s/it]
14%|█▍ | 81/567 [04:52<21:38, 2.67s/it]
14%|█▍ | 82/567 [04:55<21:15, 2.63s/it]
15%|█▍ | 83/567 [04:58<21:36, 2.68s/it]
15%|█▍ | 84/567 [05:00<20:53, 2.59s/it]
15%|█▍ | 85/567 [05:02<18:25, 2.29s/it]
15%|█▌ | 86/567 [05:04<18:43, 2.34s/it]
15%|█▌ | 87/567 [05:05<16:12, 2.03s/it]
16%|█▌ | 88/567 [05:08<17:04, 2.14s/it]
16%|█▌ | 89/567 [05:15<29:18, 3.68s/it]
16%|█▌ | 90/567 [05:19<29:41, 3.74s/it]
16%|█▌ | 91/567 [05:23<30:52, 3.89s/it]
16%|█▌ | 92/567 [05:25<27:14, 3.44s/it]
16%|█▋ | 93/567 [05:27<22:33, 2.86s/it]
17%|█▋ | 94/567 [05:32<27:34, 3.50s/it]
17%|█▋ | 95/567 [05:34<23:39, 3.01s/it]
17%|█▋ | 96/567 [05:37<24:19, 3.10s/it]
17%|█▋ | 97/567 [05:41<25:03, 3.20s/it]
17%|█▋ | 98/567 [05:42<19:45, 2.53s/it]
17%|█▋ | 99/567 [05:44<20:06, 2.58s/it]
18%|█▊ | 100/567 [05:49<24:24, 3.14s/it]
18%|█▊ | 101/567 [05:51<21:54, 2.82s/it]
18%|█▊ | 102/567 [05:57<30:00, 3.87s/it]
18%|█▊ | 103/567 [05:59<24:22, 3.15s/it]
18%|█▊ | 104/567 [06:03<26:29, 3.43s/it]
19%|█▊ | 105/567 [06:13<43:31, 5.65s/it]
19%|█▊ | 106/567 [06:17<39:35, 5.15s/it]
19%|█▉ | 107/567 [06:19<30:54, 4.03s/it]
19%|█▉ | 108/567 [06:30<47:08, 6.16s/it]
19%|█▉ | 109/567 [06:31<35:30, 4.65s/it]
19%|█▉ | 110/567 [06:33<29:54, 3.93s/it]
20%|█▉ | 111/567 [06:42<39:39, 5.22s/it]
20%|█▉ | 112/567 [06:46<37:10, 4.90s/it]
20%|█▉ | 113/567 [06:52<39:15, 5.19s/it]
20%|██ | 114/567 [06:54<32:37, 4.32s/it]
20%|██ | 115/567 [06:58<31:00, 4.12s/it]
20%|██ | 116/567 [07:00<27:08, 3.61s/it]
21%|██ | 117/567 [07:02<24:15, 3.24s/it]
21%|██ | 118/567 [07:07<26:51, 3.59s/it]
21%|██ | 119/567 [07:15<36:37, 4.90s/it]
21%|██ | 120/567 [07:18<32:33, 4.37s/it]
21%|██▏ | 121/567 [07:19<25:27, 3.42s/it]
22%|██▏ | 122/567 [07:21<22:12, 3.00s/it]
22%|██▏ | 123/567 [07:24<21:10, 2.86s/it]
22%|██▏ | 124/567 [07:26<20:04, 2.72s/it]
22%|██▏ | 125/567 [07:28<18:55, 2.57s/it]
22%|██▏ | 126/567 [07:31<20:00, 2.72s/it]
22%|██▏ | 127/567 [07:38<29:02, 3.96s/it]
23%|██▎ | 128/567 [07:42<29:16, 4.00s/it]
23%|██▎ | 129/567 [07:47<29:59, 4.11s/it]
23%|██▎ | 130/567 [07:58<44:47, 6.15s/it]
23%|██▎ | 131/567 [08:04<45:00, 6.19s/it]
23%|██▎ | 132/567 [08:15<55:57, 7.72s/it]
23%|██▎ | 133/567 [08:25<1:01:01, 8.44s/it]
24%|██▎ | 134/567 [08:37<1:08:48, 9.54s/it]
24%|██▍ | 135/567 [08:40<54:29, 7.57s/it]
24%|██▍ | 136/567 [08:43<43:31, 6.06s/it]
24%|██▍ | 137/567 [08:46<36:35, 5.11s/it]
24%|██▍ | 138/567 [08:47<28:24, 3.97s/it]
25%|██▍ | 139/567 [08:50<25:52, 3.63s/it]
25%|██▍ | 140/567 [08:53<23:52, 3.35s/it]
25%|██▍ | 141/567 [08:56<23:37, 3.33s/it]
25%|██▌ | 142/567 [08:58<21:13, 3.00s/it]
25%|██▌ | 143/567 [09:00<18:39, 2.64s/it]
25%|██▌ | 144/567 [09:03<19:20, 2.74s/it]
26%|██▌ | 145/567 [09:06<19:36, 2.79s/it]
26%|██▌ | 146/567 [09:10<21:44, 3.10s/it]
26%|██▌ | 147/567 [09:17<30:25, 4.35s/it]
26%|██▌ | 148/567 [09:21<29:01, 4.16s/it]
26%|██▋ | 149/567 [09:22<23:12, 3.33s/it]
26%|██▋ | 150/567 [09:23<18:02, 2.60s/it]
27%|██▋ | 151/567 [09:25<16:54, 2.44s/it]
27%|██▋ | 152/567 [09:28<18:32, 2.68s/it]
27%|██▋ | 153/567 [09:32<20:03, 2.91s/it]
27%|██▋ | 154/567 [09:33<17:37, 2.56s/it]
27%|██▋ | 155/567 [09:36<17:37, 2.57s/it]
28%|██▊ | 156/567 [09:39<18:15, 2.67s/it]
28%|██▊ | 157/567 [09:42<18:31, 2.71s/it]
28%|██▊ | 158/567 [09:50<29:04, 4.27s/it]
28%|██▊ | 159/567 [09:52<25:56, 3.81s/it]
28%|██▊ | 160/567 [09:58<29:08, 4.30s/it]
28%|██▊ | 161/567 [09:59<22:50, 3.38s/it]
29%|██▊ | 162/567 [10:02<21:57, 3.25s/it]
29%|██▊ | 163/567 [10:04<20:30, 3.04s/it]
29%|██▉ | 164/567 [10:11<26:34, 3.96s/it]
29%|██▉ | 165/567 [10:14<26:09, 3.91s/it]
29%|██▉ | 166/567 [10:16<22:07, 3.31s/it]
29%|██▉ | 167/567 [10:23<29:47, 4.47s/it]
30%|██▉ | 168/567 [10:25<24:47, 3.73s/it]
30%|██▉ | 169/567 [10:29<24:07, 3.64s/it]
30%|██▉ | 170/567 [10:32<24:01, 3.63s/it]
30%|███ | 171/567 [10:36<23:46, 3.60s/it]
30%|███ | 172/567 [10:40<23:34, 3.58s/it]
31%|███ | 173/567 [10:42<21:27, 3.27s/it]
31%|███ | 174/567 [10:45<21:00, 3.21s/it]
31%|███ | 175/567 [10:49<21:56, 3.36s/it]
31%|███ | 176/567 [10:51<20:14, 3.11s/it]
31%|███ | 177/567 [10:56<22:48, 3.51s/it]
31%|███▏ | 178/567 [10:57<19:10, 2.96s/it]
32%|███▏ | 179/567 [11:01<19:32, 3.02s/it]
32%|███▏ | 180/567 [11:05<21:09, 3.28s/it]
32%|███▏ | 181/567 [11:08<20:31, 3.19s/it]
32%|███▏ | 182/567 [11:08<16:10, 2.52s/it]
32%|███▏ | 183/567 [11:10<13:35, 2.12s/it]
32%|███▏ | 184/567 [11:13<16:04, 2.52s/it]
33%|███▎ | 185/567 [11:15<14:14, 2.24s/it]
33%|███▎ | 186/567 [11:26<31:48, 5.01s/it]
33%|███▎ | 187/567 [11:29<26:49, 4.23s/it]
33%|███▎ | 188/567 [11:30<21:52, 3.46s/it]
33%|███▎ | 189/567 [11:33<20:41, 3.29s/it]
34%|███▎ | 190/567 [11:34<16:46, 2.67s/it]
34%|███▎ | 191/567 [11:41<23:19, 3.72s/it]
34%|███▍ | 192/567 [11:45<24:07, 3.86s/it]
34%|███▍ | 193/567 [11:59<43:31, 6.98s/it]
34%|███▍ | 194/567 [12:01<33:59, 5.47s/it]
34%|███▍ | 195/567 [12:03<27:46, 4.48s/it]
35%|███▍ | 196/567 [12:06<25:16, 4.09s/it]
35%|███▍ | 197/567 [12:12<27:54, 4.53s/it]
35%|███▍ | 198/567 [12:18<30:31, 4.96s/it]
35%|███▌ | 199/567 [12:21<27:48, 4.53s/it]
35%|███▌ | 200/567 [12:24<23:41, 3.87s/it]
35%|███▌ | 201/567 [12:25<19:52, 3.26s/it]
36%|███▌ | 202/567 [12:28<17:36, 2.89s/it]
36%|███▌ | 203/567 [12:30<16:20, 2.69s/it]
36%|███▌ | 204/567 [12:32<15:12, 2.51s/it]
36%|███▌ | 205/567 [12:35<15:50, 2.63s/it]
36%|███▋ | 206/567 [12:40<20:16, 3.37s/it]
37%|███▋ | 207/567 [12:42<18:48, 3.13s/it]
37%|███▋ | 208/567 [12:48<22:52, 3.82s/it]
37%|███▋ | 209/567 [12:49<18:44, 3.14s/it]
37%|███▋ | 210/567 [12:53<20:18, 3.41s/it]
37%|███▋ | 211/567 [12:56<19:11, 3.23s/it]
37%|███▋ | 212/567 [13:00<19:28, 3.29s/it]
38%|███▊ | 213/567 [13:03<19:42, 3.34s/it]
38%|███▊ | 214/567 [13:06<18:50, 3.20s/it]
38%|███▊ | 215/567 [13:09<18:54, 3.22s/it]
38%|███▊ | 216/567 [13:13<18:54, 3.23s/it]
38%|███▊ | 217/567 [13:18<21:52, 3.75s/it]
38%|███▊ | 218/567 [13:24<25:59, 4.47s/it]
39%|███▊ | 219/567 [13:27<23:21, 4.03s/it]
39%|███▉ | 220/567 [13:29<20:46, 3.59s/it]
39%|███▉ | 221/567 [13:31<17:05, 2.96s/it]
39%|███▉ | 222/567 [13:33<15:57, 2.78s/it]
39%|███▉ | 223/567 [13:35<14:19, 2.50s/it]
40%|███▉ | 224/567 [13:38<15:34, 2.73s/it]
40%|███▉ | 225/567 [13:42<18:00, 3.16s/it]
40%|███▉ | 226/567 [13:46<19:04, 3.36s/it]
40%|████ | 227/567 [13:48<16:08, 2.85s/it]
40%|████ | 228/567 [13:51<17:05, 3.02s/it]
40%|████ | 229/567 [13:56<20:39, 3.67s/it]
41%|████ | 230/567 [13:58<17:53, 3.18s/it]
41%|████ | 231/567 [14:03<20:38, 3.69s/it]
41%|████ | 232/567 [14:06<18:58, 3.40s/it]
41%|████ | 233/567 [14:11<21:05, 3.79s/it]
41%|████▏ | 234/567 [14:12<16:47, 3.03s/it]
41%|████▏ | 235/567 [14:16<18:38, 3.37s/it]
42%|████▏ | 236/567 [14:20<19:19, 3.50s/it]
42%|████▏ | 237/567 [14:22<16:06, 2.93s/it]
42%|████▏ | 238/567 [14:25<16:52, 3.08s/it]
42%|████▏ | 239/567 [14:28<17:06, 3.13s/it]
42%|████▏ | 240/567 [14:39<29:58, 5.50s/it]
43%|████▎ | 241/567 [14:42<25:04, 4.61s/it]
43%|████▎ | 242/567 [14:44<20:54, 3.86s/it]
43%|████▎ | 243/567 [14:48<21:03, 3.90s/it]
43%|████▎ | 244/567 [14:53<22:55, 4.26s/it]
43%|████▎ | 245/567 [14:54<17:57, 3.35s/it]
43%|████▎ | 246/567 [14:57<17:21, 3.24s/it]
44%|████▎ | 247/567 [14:58<13:46, 2.58s/it]
44%|████▎ | 248/567 [15:02<14:49, 2.79s/it]
44%|████▍ | 249/567 [15:04<14:21, 2.71s/it]
44%|████▍ | 250/567 [15:09<17:52, 3.38s/it]
44%|████▍ | 251/567 [15:17<25:21, 4.82s/it]
44%|████▍ | 252/567 [15:21<23:58, 4.57s/it]
45%|████▍ | 253/567 [15:22<18:30, 3.54s/it]
45%|████▍ | 254/567 [15:34<30:48, 5.91s/it]
45%|████▍ | 255/567 [15:37<26:44, 5.14s/it]
45%|████▌ | 256/567 [15:38<20:42, 3.99s/it]
45%|████▌ | 257/567 [15:46<26:10, 5.07s/it]
46%|████▌ | 258/567 [15:50<24:25, 4.74s/it]
46%|████▌ | 259/567 [15:52<19:31, 3.80s/it]
46%|████▌ | 260/567 [16:01<27:37, 5.40s/it]
46%|████▌ | 261/567 [16:04<24:48, 4.86s/it]
46%|████▌ | 262/567 [16:10<25:36, 5.04s/it]
46%|████▋ | 263/567 [16:12<20:47, 4.10s/it]
47%|████▋ | 264/567 [16:13<15:50, 3.14s/it]
47%|████▋ | 265/567 [16:20<22:27, 4.46s/it]
47%|████▋ | 266/567 [16:22<18:46, 3.74s/it]
47%|████▋ | 267/567 [16:25<16:56, 3.39s/it]
47%|████▋ | 268/567 [16:31<20:34, 4.13s/it]
47%|████▋ | 269/567 [16:35<21:30, 4.33s/it]
48%|████▊ | 270/567 [16:38<18:44, 3.79s/it]
48%|████▊ | 271/567 [16:44<22:06, 4.48s/it]
48%|████▊ | 272/567 [16:47<19:57, 4.06s/it]
48%|████▊ | 273/567 [16:50<18:49, 3.84s/it]
48%|████▊ | 274/567 [16:53<16:08, 3.30s/it]
49%|████▊ | 275/567 [16:55<14:17, 2.94s/it]
49%|████▊ | 276/567 [16:58<15:13, 3.14s/it]
49%|████▉ | 277/567 [17:02<16:07, 3.34s/it]
49%|████▉ | 278/567 [17:03<13:07, 2.73s/it]
49%|████▉ | 279/567 [17:09<17:46, 3.70s/it]
49%|████▉ | 280/567 [17:13<18:08, 3.79s/it]
50%|████▉ | 281/567 [17:15<14:54, 3.13s/it]
50%|████▉ | 282/567 [17:17<13:29, 2.84s/it]
50%|████▉ | 283/567 [17:22<16:37, 3.51s/it]
50%|█████ | 284/567 [17:24<14:12, 3.01s/it]
50%|█████ | 285/567 [17:26<13:11, 2.81s/it]
50%|█████ | 286/567 [17:28<11:08, 2.38s/it]
51%|█████ | 287/567 [17:32<14:08, 3.03s/it]
51%|█████ | 288/567 [17:35<13:55, 2.99s/it]
51%|█████ | 289/567 [17:39<15:08, 3.27s/it]
51%|█████ | 290/567 [17:43<15:57, 3.45s/it]
51%|█████▏ | 291/567 [17:46<15:08, 3.29s/it]
51%|█████▏ | 292/567 [17:50<16:03, 3.50s/it]
52%|█████▏ | 293/567 [17:52<14:48, 3.24s/it]
52%|█████▏ | 294/567 [17:55<13:47, 3.03s/it]
52%|█████▏ | 295/567 [17:57<12:54, 2.85s/it]
52%|█████▏ | 296/567 [18:01<14:18, 3.17s/it]
52%|█████▏ | 297/567 [18:04<13:20, 2.97s/it]
53%|█████▎ | 298/567 [18:14<23:07, 5.16s/it]
53%|█████▎ | 299/567 [18:17<19:29, 4.37s/it]
53%|█████▎ | 300/567 [18:20<18:33, 4.17s/it]
53%|█████▎ | 301/567 [18:24<18:07, 4.09s/it]
53%|█████▎ | 302/567 [18:27<16:06, 3.65s/it]
53%|█████▎ | 303/567 [18:29<14:05, 3.20s/it]
54%|█████▎ | 304/567 [18:32<13:07, 3.00s/it]
54%|█████▍ | 305/567 [18:34<12:42, 2.91s/it]
54%|█████▍ | 306/567 [18:38<13:16, 3.05s/it]
54%|█████▍ | 307/567 [18:46<19:47, 4.57s/it]
54%|█████▍ | 308/567 [18:48<16:31, 3.83s/it]
54%|█████▍ | 309/567 [18:49<12:51, 2.99s/it]
55%|█████▍ | 310/567 [19:04<28:09, 6.58s/it]
55%|█████▍ | 311/567 [19:08<25:29, 5.97s/it]
55%|█████▌ | 312/567 [19:11<20:32, 4.83s/it]
55%|█████▌ | 313/567 [19:13<16:54, 4.00s/it]
55%|█████▌ | 314/567 [19:17<17:05, 4.05s/it]
56%|█████▌ | 315/567 [19:27<24:11, 5.76s/it]
56%|█████▌ | 316/567 [19:28<18:51, 4.51s/it]
56%|█████▌ | 317/567 [19:31<17:06, 4.11s/it]
56%|█████▌ | 318/567 [19:33<13:47, 3.32s/it]
56%|█████▋ | 319/567 [19:38<16:26, 3.98s/it]
56%|█████▋ | 320/567 [19:39<12:26, 3.02s/it]
57%|█████▋ | 321/567 [19:47<18:26, 4.50s/it]
57%|█████▋ | 322/567 [19:50<16:44, 4.10s/it]
57%|█████▋ | 323/567 [19:53<14:33, 3.58s/it]
57%|█████▋ | 324/567 [19:56<14:04, 3.47s/it]
57%|█████▋ | 325/567 [20:06<22:12, 5.51s/it]
57%|█████▋ | 326/567 [20:07<16:56, 4.22s/it]
58%|█████▊ | 327/567 [20:09<14:28, 3.62s/it]
58%|█████▊ | 328/567 [20:13<14:11, 3.56s/it]
58%|█████▊ | 329/567 [20:20<18:00, 4.54s/it]
58%|█████▊ | 330/567 [20:20<13:24, 3.39s/it]
58%|█████▊ | 331/567 [20:23<12:00, 3.05s/it]
59%|█████▊ | 332/567 [20:25<11:13, 2.87s/it]
59%|█████▊ | 333/567 [20:28<10:53, 2.79s/it]
59%|█████▉ | 334/567 [20:30<10:01, 2.58s/it]
59%|█████▉ | 335/567 [20:33<10:51, 2.81s/it]
59%|█████▉ | 336/567 [20:34<08:52, 2.30s/it]
59%|█████▉ | 337/567 [20:39<12:09, 3.17s/it]
60%|█████▉ | 338/567 [20:42<11:55, 3.12s/it]
60%|█████▉ | 339/567 [20:45<10:37, 2.79s/it]
60%|█████▉ | 340/567 [20:46<09:11, 2.43s/it]
60%|██████ | 341/567 [20:48<08:24, 2.23s/it]
60%|██████ | 342/567 [20:51<09:38, 2.57s/it]
60%|██████ | 343/567 [20:53<09:00, 2.41s/it]
61%|██████ | 344/567 [20:57<09:54, 2.66s/it]
61%|██████ | 345/567 [21:00<10:22, 2.81s/it]
61%|██████ | 346/567 [21:02<09:43, 2.64s/it]
61%|██████ | 347/567 [21:06<10:57, 2.99s/it]
61%|██████▏ | 348/567 [21:09<10:41, 2.93s/it]
62%|██████▏ | 349/567 [21:15<14:43, 4.05s/it]
62%|██████▏ | 350/567 [21:18<13:47, 3.81s/it]
62%|██████▏ | 351/567 [21:32<24:21, 6.77s/it]
62%|██████▏ | 352/567 [21:34<19:28, 5.43s/it]
62%|██████▏ | 353/567 [21:40<19:59, 5.61s/it]
62%|██████▏ | 354/567 [21:45<18:27, 5.20s/it]
63%|██████▎ | 355/567 [21:47<15:19, 4.34s/it]
63%|██████▎ | 356/567 [21:50<14:07, 4.02s/it]
63%|██████▎ | 357/567 [21:52<11:53, 3.40s/it]
63%|██████▎ | 358/567 [21:55<11:20, 3.26s/it]
63%|██████▎ | 359/567 [21:57<09:40, 2.79s/it]
63%|██████▎ | 360/567 [21:59<09:07, 2.64s/it]
64%|██████▎ | 361/567 [22:02<08:47, 2.56s/it]
64%|██████▍ | 362/567 [22:06<10:52, 3.18s/it]
64%|██████▍ | 363/567 [22:13<14:08, 4.16s/it]
64%|██████▍ | 364/567 [22:15<11:49, 3.49s/it]
64%|██████▍ | 365/567 [22:18<11:21, 3.37s/it]
65%|██████▍ | 366/567 [22:20<10:22, 3.10s/it]
65%|██████▍ | 367/567 [22:24<10:40, 3.20s/it]
65%|██████▍ | 368/567 [22:29<13:11, 3.98s/it]
65%|██████▌ | 369/567 [22:33<13:08, 3.98s/it]
65%|██████▌ | 370/567 [22:36<11:33, 3.52s/it]
65%|██████▌ | 371/567 [22:38<10:24, 3.19s/it]
66%|██████▌ | 372/567 [22:40<09:20, 2.88s/it]
66%|██████▌ | 373/567 [22:46<11:33, 3.57s/it]
66%|██████▌ | 374/567 [22:51<13:07, 4.08s/it]
66%|██████▌ | 375/567 [22:55<13:07, 4.10s/it]
66%|██████▋ | 376/567 [22:57<10:56, 3.43s/it]
66%|██████▋ | 377/567 [23:04<14:45, 4.66s/it]
67%|██████▋ | 378/567 [23:08<13:42, 4.35s/it]
67%|██████▋ | 379/567 [23:14<15:00, 4.79s/it]
67%|██████▋ | 380/567 [23:16<12:45, 4.09s/it]
67%|██████▋ | 381/567 [23:19<11:39, 3.76s/it]
67%|██████▋ | 382/567 [23:21<10:01, 3.25s/it]
68%|██████▊ | 383/567 [23:26<11:23, 3.71s/it]
68%|██████▊ | 384/567 [23:30<11:57, 3.92s/it]
68%|██████▊ | 385/567 [23:36<13:02, 4.30s/it]
68%|██████▊ | 386/567 [23:39<12:22, 4.10s/it]
68%|██████▊ | 387/567 [23:42<10:43, 3.57s/it]
68%|██████▊ | 388/567 [23:55<19:42, 6.61s/it]
69%|██████▊ | 389/567 [23:58<16:13, 5.47s/it]
69%|██████▉ | 390/567 [24:00<12:45, 4.32s/it]
69%|██████▉ | 391/567 [24:04<12:58, 4.42s/it]
69%|██████▉ | 392/567 [24:10<14:08, 4.85s/it]
69%|██████▉ | 393/567 [24:12<11:37, 4.01s/it]
69%|██████▉ | 394/567 [24:18<12:55, 4.48s/it]
70%|██████▉ | 395/567 [24:24<14:01, 4.89s/it]
70%|██████▉ | 396/567 [24:27<12:46, 4.48s/it]
70%|███████ | 397/567 [24:35<15:35, 5.51s/it]
70%|███████ | 398/567 [24:37<12:02, 4.28s/it]
70%|███████ | 399/567 [24:38<09:33, 3.41s/it]
71%|███████ | 400/567 [24:40<08:21, 3.00s/it]
71%|███████ | 401/567 [24:43<08:20, 3.02s/it]
71%|███████ | 402/567 [24:48<10:03, 3.66s/it]
71%|███████ | 403/567 [24:51<09:19, 3.41s/it]
71%|███████▏ | 404/567 [24:53<08:01, 2.95s/it]
71%|███████▏ | 405/567 [24:55<06:57, 2.58s/it]
72%|███████▏ | 406/567 [24:58<07:23, 2.76s/it]
72%|███████▏ | 407/567 [25:00<06:40, 2.51s/it]
72%|███████▏ | 408/567 [25:05<09:05, 3.43s/it]
72%|███████▏ | 409/567 [25:07<07:51, 2.99s/it]
72%|███████▏ | 410/567 [25:10<07:35, 2.90s/it]
72%|███████▏ | 411/567 [25:11<06:17, 2.42s/it]
73%|███████▎ | 412/567 [25:15<06:54, 2.67s/it]
73%|███████▎ | 413/567 [25:19<07:56, 3.10s/it]
73%|███████▎ | 414/567 [25:20<06:23, 2.51s/it]
73%|███████▎ | 415/567 [25:27<10:01, 3.96s/it]
73%|███████▎ | 416/567 [25:31<09:38, 3.83s/it]
74%|███████▎ | 417/567 [25:38<12:31, 5.01s/it]
74%|███████▎ | 418/567 [25:42<11:08, 4.49s/it]
74%|███████▍ | 419/567 [25:54<17:10, 6.96s/it]
74%|███████▍ | 420/567 [25:59<15:04, 6.16s/it]
74%|███████▍ | 421/567 [26:03<13:35, 5.58s/it]
74%|███████▍ | 422/567 [26:06<11:49, 4.89s/it]
75%|███████▍ | 423/567 [26:10<10:49, 4.51s/it]
75%|███████▍ | 424/567 [26:18<13:12, 5.54s/it]
75%|███████▍ | 425/567 [26:21<11:44, 4.96s/it]
75%|███████▌ | 426/567 [26:23<09:02, 3.84s/it]
75%|███████▌ | 427/567 [26:26<08:22, 3.59s/it]
75%|███████▌ | 428/567 [26:31<09:44, 4.20s/it]
76%|███████▌ | 429/567 [26:38<11:30, 5.00s/it]
76%|███████▌ | 430/567 [26:41<10:09, 4.45s/it]
76%|███████▌ | 431/567 [26:49<12:19, 5.44s/it]
76%|███████▌ | 432/567 [26:55<12:33, 5.58s/it]
76%|███████▋ | 433/567 [27:00<12:00, 5.37s/it]
77%|███████▋ | 434/567 [27:04<10:59, 4.96s/it]
77%|███████▋ | 435/567 [27:06<08:58, 4.08s/it]
77%|███████▋ | 436/567 [27:09<08:25, 3.86s/it]
77%|███████▋ | 437/567 [27:11<06:57, 3.21s/it]
77%|███████▋ | 438/567 [27:15<07:28, 3.48s/it]
77%|███████▋ | 439/567 [27:18<07:09, 3.36s/it]
78%|███████▊ | 440/567 [27:20<06:13, 2.94s/it]
78%|███████▊ | 441/567 [27:24<06:39, 3.17s/it]
78%|███████▊ | 442/567 [27:26<06:16, 3.01s/it]
78%|███████▊ | 443/567 [27:29<05:47, 2.81s/it]
78%|███████▊ | 444/567 [27:36<08:22, 4.08s/it]
78%|███████▊ | 445/567 [27:39<07:41, 3.78s/it]
79%|███████▊ | 446/567 [27:45<08:55, 4.43s/it]
79%|███████▉ | 447/567 [27:50<09:10, 4.59s/it]
79%|███████▉ | 448/567 [27:53<08:34, 4.32s/it]
79%|███████▉ | 449/567 [27:56<07:20, 3.73s/it]
79%|███████▉ | 450/567 [27:59<06:53, 3.53s/it]
80%|███████▉ | 451/567 [28:01<06:10, 3.20s/it]
80%|███████▉ | 452/567 [28:04<05:41, 2.97s/it]
80%|███████▉ | 453/567 [28:08<06:32, 3.44s/it]
80%|████████ | 454/567 [28:11<06:09, 3.27s/it]
80%|████████ | 455/567 [28:13<05:27, 2.92s/it]
80%|████████ | 456/567 [28:15<04:49, 2.61s/it]
81%|████████ | 457/567 [28:17<04:28, 2.44s/it]
81%|████████ | 458/567 [28:21<05:02, 2.77s/it]
81%|████████ | 459/567 [28:25<05:50, 3.25s/it]
81%|████████ | 460/567 [28:26<04:34, 2.56s/it]
81%|████████▏ | 461/567 [28:28<04:21, 2.46s/it]
81%|████████▏ | 462/567 [28:30<03:48, 2.18s/it]
82%|████████▏ | 463/567 [28:32<03:57, 2.28s/it]
82%|████████▏ | 464/567 [28:34<03:39, 2.14s/it]
82%|████████▏ | 465/567 [28:38<04:26, 2.61s/it]
82%|████████▏ | 466/567 [28:41<04:28, 2.66s/it]
82%|████████▏ | 467/567 [28:42<03:51, 2.31s/it]
83%|████████▎ | 468/567 [28:46<04:27, 2.71s/it]
83%|████████▎ | 469/567 [28:48<04:11, 2.57s/it]
83%|████████▎ | 470/567 [28:51<04:23, 2.72s/it]
83%|████████▎ | 471/567 [28:55<05:07, 3.21s/it]
83%|████████▎ | 472/567 [29:03<07:18, 4.61s/it]
83%|████████▎ | 473/567 [29:07<06:48, 4.34s/it]
84%|████████▎ | 474/567 [29:13<07:30, 4.84s/it]
84%|████████▍ | 475/567 [29:14<05:38, 3.68s/it]
84%|████████▍ | 476/567 [29:17<05:15, 3.47s/it]
84%|████████▍ | 477/567 [29:18<04:07, 2.75s/it]
84%|████████▍ | 478/567 [29:20<03:48, 2.57s/it]
84%|████████▍ | 479/567 [29:22<03:20, 2.28s/it]
85%|████████▍ | 480/567 [29:24<03:24, 2.35s/it]
85%|████████▍ | 481/567 [29:31<05:07, 3.58s/it]
85%|████████▌ | 482/567 [29:33<04:35, 3.24s/it]
85%|████████▌ | 483/567 [29:35<03:58, 2.84s/it]
85%|████████▌ | 484/567 [29:41<05:02, 3.65s/it]
86%|████████▌ | 485/567 [29:43<04:15, 3.11s/it]
86%|████████▌ | 486/567 [29:46<04:13, 3.13s/it]
86%|████████▌ | 487/567 [29:54<06:22, 4.79s/it]
86%|████████▌ | 488/567 [29:56<04:58, 3.78s/it]
86%|████████▌ | 489/567 [29:59<04:30, 3.47s/it]
86%|████████▋ | 490/567 [30:06<06:06, 4.76s/it]
87%|████████▋ | 491/567 [30:10<05:27, 4.31s/it]
87%|████████▋ | 492/567 [30:11<04:17, 3.44s/it]
87%|████████▋ | 493/567 [30:16<04:52, 3.95s/it]
87%|████████▋ | 494/567 [30:20<04:40, 3.85s/it]
87%|████████▋ | 495/567 [30:32<07:31, 6.27s/it]
87%|████████▋ | 496/567 [30:34<05:51, 4.95s/it]
88%|████████▊ | 497/567 [30:38<05:43, 4.91s/it]
88%|████████▊ | 498/567 [30:42<05:16, 4.58s/it]
88%|████████▊ | 499/567 [30:45<04:40, 4.13s/it]
88%|████████▊ | 500/567 [30:51<05:03, 4.52s/it]
88%|████████▊ | 501/567 [30:52<04:02, 3.67s/it]
89%|████████▊ | 502/567 [30:57<04:19, 4.00s/it]
89%|████████▊ | 503/567 [31:07<06:11, 5.80s/it]
89%|████████▉ | 504/567 [31:11<05:32, 5.29s/it]
89%|████████▉ | 505/567 [31:17<05:35, 5.42s/it]
89%|████████▉ | 506/567 [31:23<05:42, 5.62s/it]
89%|████████▉ | 507/567 [31:25<04:31, 4.52s/it]
90%|████████▉ | 508/567 [31:30<04:34, 4.66s/it]
90%|████████▉ | 509/567 [31:32<03:53, 4.02s/it]
90%|████████▉ | 510/567 [31:38<04:11, 4.41s/it]
90%|█████████ | 511/567 [31:42<04:03, 4.34s/it]
90%|█████████ | 512/567 [31:49<04:44, 5.18s/it]
90%|█████████ | 513/567 [31:53<04:20, 4.83s/it]
91%|█████████ | 514/567 [31:54<03:15, 3.69s/it]
91%|█████████ | 515/567 [31:57<02:55, 3.38s/it]
91%|█████████ | 516/567 [31:59<02:36, 3.07s/it]
91%|█████████ | 517/567 [32:02<02:37, 3.16s/it]
91%|█████████▏| 518/567 [32:04<02:13, 2.72s/it]
92%|█████████▏| 519/567 [32:07<02:14, 2.80s/it]
92%|█████████▏| 520/567 [32:09<02:03, 2.64s/it]
92%|█████████▏| 521/567 [32:12<02:06, 2.74s/it]
92%|█████████▏| 522/567 [32:17<02:24, 3.20s/it]
92%|█████████▏| 523/567 [32:20<02:24, 3.28s/it]
92%|█████████▏| 524/567 [32:23<02:15, 3.14s/it]
93%|█████████▎| 525/567 [32:26<02:11, 3.13s/it]
93%|█████████▎| 526/567 [32:29<02:08, 3.14s/it]
93%|█████████▎| 527/567 [32:33<02:10, 3.26s/it]
93%|█████████▎| 528/567 [32:35<01:53, 2.92s/it]
93%|█████████▎| 529/567 [32:38<01:49, 2.89s/it]
93%|█████████▎| 530/567 [32:43<02:13, 3.61s/it]
94%|█████████▎| 531/567 [32:46<02:00, 3.34s/it]
94%|█████████▍| 532/567 [32:48<01:47, 3.08s/it]
94%|█████████▍| 533/567 [32:50<01:32, 2.71s/it]
94%|█████████▍| 534/567 [32:52<01:19, 2.40s/it]
94%|█████████▍| 535/567 [32:56<01:31, 2.85s/it]
95%|█████████▍| 536/567 [32:59<01:28, 2.87s/it]
95%|█████████▍| 537/567 [33:03<01:41, 3.40s/it]
95%|█████████▍| 538/567 [33:05<01:27, 3.01s/it]
95%|█████████▌| 539/567 [33:14<02:12, 4.73s/it]
95%|█████████▌| 540/567 [33:26<03:07, 6.93s/it]
95%|█████████▌| 541/567 [33:33<02:59, 6.89s/it]
96%|█████████▌| 542/567 [33:37<02:34, 6.19s/it]
96%|█████████▌| 543/567 [33:51<03:20, 8.34s/it]
96%|█████████▌| 544/567 [33:52<02:20, 6.10s/it]
96%|█████████▌| 545/567 [33:55<01:57, 5.36s/it]
96%|█████████▋| 546/567 [33:58<01:35, 4.54s/it]
96%|█████████▋| 547/567 [34:00<01:13, 3.68s/it]
97%|█████████▋| 548/567 [34:02<01:02, 3.30s/it]
97%|█████████▋| 549/567 [34:04<00:52, 2.93s/it]
97%|█████████▋| 550/567 [34:07<00:50, 2.95s/it]
97%|█████████▋| 551/567 [34:10<00:48, 3.02s/it]
97%|█████████▋| 552/567 [34:16<00:56, 3.75s/it]
98%|█████████▊| 553/567 [34:18<00:44, 3.18s/it]
98%|█████████▊| 554/567 [34:20<00:36, 2.81s/it]
98%|█████████▊| 555/567 [34:22<00:32, 2.70s/it]
98%|█████████▊| 556/567 [34:24<00:27, 2.52s/it]
98%|█████████▊| 557/567 [34:29<00:32, 3.29s/it]
98%|█████████▊| 558/567 [34:32<00:29, 3.23s/it]
99%|█████████▊| 559/567 [34:36<00:28, 3.52s/it]
99%|█████████▉| 560/567 [34:40<00:25, 3.64s/it]
99%|█████████▉| 561/567 [34:42<00:18, 3.07s/it]
99%|█████████▉| 562/567 [34:49<00:21, 4.27s/it]
99%|█████████▉| 563/567 [34:53<00:16, 4.22s/it]
99%|█████████▉| 564/567 [34:59<00:13, 4.60s/it]
100%|█████████▉| 565/567 [35:02<00:08, 4.06s/it]
100%|█████████▉| 566/567 [35:05<00:03, 3.85s/it]
100%|██████████| 567/567 [35:05<00:00, 2.85s/it]
100%|██████████| 567/567 [35:05<00:00, 3.71s/it]
-Batch output: ['Lao Geng picked up his gun, squinted one eye into a triangle, pulled the trigger, and the gunshot sounded. The gold sparrows fell down in a hailstorm, and the iron sand flew and crackled between the willow branches.', 'The next day, before dawn, Liu Laojia got up, washed and dressed, and also taught Baier a few phrases; a child of five or six years old, hearing that he was taken into the city for a stroll, was delighted and readily agreed.']
-internlm/internlm2_5-7b-chat/shots-03 metrics: {'meteor': 0.3747105229822289, 'bleu_scores': {'bleu': 0.1154826016668525, 'precisions': [0.43165174938974776, 0.15858689137256285, 0.07473100510447651, 0.038197770200375465], 'brevity_penalty': 0.9767460256099862, 'length_ratio': 0.9770122557138126, 'translation_length': 29496, 'reference_length': 30190}, 'rouge_scores': {'rouge1': 0.42663551257491084, 'rouge2': 0.17745400920501897, 'rougeL': 0.368625502025959, 'rougeLsum': 0.36915938531732695}, 'accuracy': 0.00088261253309797, 'correct_ids': [77]}
-*** Evaluating with num_shots: 5
-loading train/test data files
-
Map: 0%| | 0/4528 [00:00, ? examples/s]
Map: 66%|██████▋ | 3000/4528 [00:00<00:00, 13045.09 examples/s]
Map: 100%|██████████| 4528/4528 [00:00<00:00, 9086.25 examples/s]
Map: 100%|██████████| 4528/4528 [00:00<00:00, 7905.66 examples/s]
-
Map: 0%| | 0/1133 [00:00, ? examples/s]
Map: 100%|██████████| 1133/1133 [00:00<00:00, 5072.79 examples/s]
Map: 100%|██████████| 1133/1133 [00:00<00:00, 3289.98 examples/s]
-DatasetDict({
- train: Dataset({
- features: ['chinese', 'english', 'text', 'prompt'],
- num_rows: 4528
- })
- test: Dataset({
- features: ['chinese', 'english', 'text', 'prompt'],
- num_rows: 1133
- })
-})
---------------------------------------------------
-chinese: 老耿端起枪,眯缝起一只三角眼,一搂扳机响了枪,冰雹般的金麻雀劈哩啪啦往下落,铁砂子在柳枝间飞迸着,嚓嚓有声。
---------------------------------------------------
-english: Old Geng picked up his shotgun, squinted, and pulled the trigger. Two sparrows crashed to the ground like hailstones as shotgun pellets tore noisily through the branches.
---------------------------------------------------
-text: <|im_start|>system
-You are a helpful assistant that translates Chinese to English.<|im_end|>
-<|im_start|>user
-You will be given a Chinese sentence to translate. If it is an incomplete sentence, or if you are unsure about the meaning, simply copy the input text as your output. Do not output any additional sentence such as explanation or reasoning.
-
-Example Translations:
-Chinese: 全仗着狐仙搭救。
-English: Because I was protected by a fox fairy.
-Chinese: 过后,表哥告诉她俩,这人是导演,在外国留过学的,还会编剧,今天拍的这戏,就是他自编自导的。
-English: He was the director, the cousin later told them. He had studied abroad and was also a screenwriter; in fact he had written and directed the scene they had earlier seen being filmed.
-Chinese: 这凤姐忽然想起一件事来,便向窗外叫:“蓉儿回来!”
-English: Xi-feng suddenly seemed to remember something, and called to him through the window, 'Rong, come back!'
-Chinese: 三个老红卫兵走到叶文洁面前,面对着她站成了一排——当年,她们也是这样面对叶哲泰的——试图再现那早已忘却的尊严,但她们当年那魔鬼般的精神力量显然已荡然无存。
-English: The three old Red Guards stood in front of Ye in a row—just like they had stood against Ye Zhetai—trying to recapture their long-forgotten dignity. But the demonic spiritual energy that had once propelled them was gone.
-Chinese: 程先生照单全收,都是一个“谢”字,然后问王琦瑶有什么话说。
-English: Mr. Cheng accepted their toast with equanimity and a 'thank you.' Then, turning to Wang Qiyao, he asked if she had anything to say.
-
-Chinese: 老耿端起枪,眯缝起一只三角眼,一搂扳机响了枪,冰雹般的金麻雀劈哩啪啦往下落,铁砂子在柳枝间飞迸着,嚓嚓有声。
-English:<|im_end|>
-<|im_start|>assistant
-Old Geng picked up his shotgun, squinted, and pulled the trigger. Two sparrows crashed to the ground like hailstones as shotgun pellets tore noisily through the branches.
---------------------------------------------------
-prompt: <|im_start|>system
-You are a helpful assistant that translates Chinese to English.<|im_end|>
-<|im_start|>user
-You will be given a Chinese sentence to translate. If it is an incomplete sentence, or if you are unsure about the meaning, simply copy the input text as your output. Do not output any additional sentence such as explanation or reasoning.
-
-Example Translations:
-Chinese: 全仗着狐仙搭救。
-English: Because I was protected by a fox fairy.
-Chinese: 过后,表哥告诉她俩,这人是导演,在外国留过学的,还会编剧,今天拍的这戏,就是他自编自导的。
-English: He was the director, the cousin later told them. He had studied abroad and was also a screenwriter; in fact he had written and directed the scene they had earlier seen being filmed.
-Chinese: 这凤姐忽然想起一件事来,便向窗外叫:“蓉儿回来!”
-English: Xi-feng suddenly seemed to remember something, and called to him through the window, 'Rong, come back!'
-Chinese: 三个老红卫兵走到叶文洁面前,面对着她站成了一排——当年,她们也是这样面对叶哲泰的——试图再现那早已忘却的尊严,但她们当年那魔鬼般的精神力量显然已荡然无存。
-English: The three old Red Guards stood in front of Ye in a row—just like they had stood against Ye Zhetai—trying to recapture their long-forgotten dignity. But the demonic spiritual energy that had once propelled them was gone.
-Chinese: 程先生照单全收,都是一个“谢”字,然后问王琦瑶有什么话说。
-English: Mr. Cheng accepted their toast with equanimity and a 'thank you.' Then, turning to Wang Qiyao, he asked if she had anything to say.
-
-Chinese: 老耿端起枪,眯缝起一只三角眼,一搂扳机响了枪,冰雹般的金麻雀劈哩啪啦往下落,铁砂子在柳枝间飞迸着,嚓嚓有声。
-English:<|im_end|>
-<|im_start|>assistant
-
-
0%| | 0/567 [00:00, ?it/s]
0%| | 1/567 [00:09<1:25:28, 9.06s/it]
0%| | 2/567 [00:21<1:44:30, 11.10s/it]
1%| | 3/567 [00:29<1:29:21, 9.51s/it]
1%| | 4/567 [00:44<1:49:18, 11.65s/it]
1%| | 5/567 [00:46<1:16:54, 8.21s/it]
1%| | 6/567 [00:50<1:05:08, 6.97s/it]
1%| | 7/567 [00:52<49:49, 5.34s/it]
1%|▏ | 8/567 [01:00<56:18, 6.04s/it]
2%|▏ | 9/567 [01:07<1:00:06, 6.46s/it]
2%|▏ | 10/567 [01:12<56:29, 6.09s/it]
2%|▏ | 11/567 [01:21<1:02:13, 6.72s/it]
2%|▏ | 12/567 [01:23<50:16, 5.44s/it]
2%|▏ | 13/567 [01:30<53:37, 5.81s/it]
2%|▏ | 14/567 [01:33<46:20, 5.03s/it]
3%|▎ | 15/567 [01:35<38:11, 4.15s/it]
3%|▎ | 16/567 [01:41<42:48, 4.66s/it]
3%|▎ | 17/567 [01:53<1:01:52, 6.75s/it]
3%|▎ | 18/567 [01:56<52:48, 5.77s/it]
3%|▎ | 19/567 [01:59<44:05, 4.83s/it]
4%|▎ | 20/567 [02:02<40:38, 4.46s/it]
4%|▎ | 21/567 [02:09<45:32, 5.00s/it]
4%|▍ | 22/567 [02:12<40:57, 4.51s/it]
4%|▍ | 23/567 [02:21<52:40, 5.81s/it]
4%|▍ | 24/567 [02:24<45:56, 5.08s/it]
4%|▍ | 25/567 [02:26<38:09, 4.22s/it]
5%|▍ | 26/567 [02:36<51:42, 5.73s/it]
5%|▍ | 27/567 [02:39<43:55, 4.88s/it]
5%|▍ | 28/567 [02:51<1:03:17, 7.05s/it]
5%|▌ | 29/567 [02:57<1:00:24, 6.74s/it]
5%|▌ | 30/567 [03:03<57:59, 6.48s/it]
5%|▌ | 31/567 [03:05<46:11, 5.17s/it]
6%|▌ | 32/567 [03:10<45:53, 5.15s/it]
6%|▌ | 33/567 [03:14<42:29, 4.77s/it]
6%|▌ | 34/567 [03:22<52:32, 5.91s/it]
6%|▌ | 35/567 [03:28<50:59, 5.75s/it]
6%|▋ | 36/567 [03:32<47:39, 5.39s/it]
7%|▋ | 37/567 [03:34<37:54, 4.29s/it]
7%|▋ | 38/567 [03:37<34:28, 3.91s/it]
7%|▋ | 39/567 [03:41<35:35, 4.04s/it]
7%|▋ | 40/567 [03:46<38:35, 4.39s/it]
7%|▋ | 41/567 [03:48<30:13, 3.45s/it]
7%|▋ | 42/567 [03:55<40:53, 4.67s/it]
8%|▊ | 43/567 [03:58<34:46, 3.98s/it]
8%|▊ | 44/567 [04:02<36:04, 4.14s/it]
8%|▊ | 45/567 [04:08<39:35, 4.55s/it]
8%|▊ | 46/567 [04:10<34:31, 3.98s/it]
8%|▊ | 47/567 [04:15<36:15, 4.18s/it]
8%|▊ | 48/567 [04:19<36:05, 4.17s/it]
9%|▊ | 49/567 [04:21<30:43, 3.56s/it]
9%|▉ | 50/567 [04:27<37:46, 4.38s/it]
9%|▉ | 51/567 [04:35<47:05, 5.47s/it]
9%|▉ | 52/567 [04:37<37:44, 4.40s/it]
9%|▉ | 53/567 [04:59<1:20:58, 9.45s/it]
10%|▉ | 54/567 [05:07<1:16:55, 9.00s/it]
10%|▉ | 55/567 [05:15<1:16:12, 8.93s/it]
10%|▉ | 56/567 [05:27<1:22:34, 9.70s/it]
10%|█ | 57/567 [05:37<1:24:27, 9.94s/it]
10%|█ | 58/567 [05:40<1:04:42, 7.63s/it]
10%|█ | 59/567 [05:46<1:01:20, 7.24s/it]
11%|█ | 60/567 [05:50<53:21, 6.32s/it]
11%|█ | 61/567 [05:53<45:55, 5.45s/it]
11%|█ | 62/567 [05:57<41:33, 4.94s/it]
11%|█ | 63/567 [06:04<44:52, 5.34s/it]
11%|█▏ | 64/567 [06:14<57:00, 6.80s/it]
11%|█▏ | 65/567 [06:16<46:07, 5.51s/it]
12%|█▏ | 66/567 [06:23<49:31, 5.93s/it]
12%|█▏ | 67/567 [06:25<39:33, 4.75s/it]
12%|█▏ | 68/567 [06:38<58:57, 7.09s/it]
12%|█▏ | 69/567 [06:41<49:18, 5.94s/it]
12%|█▏ | 70/567 [06:46<46:16, 5.59s/it]
13%|█▎ | 71/567 [06:48<38:12, 4.62s/it]
13%|█▎ | 72/567 [06:54<40:15, 4.88s/it]
13%|█▎ | 73/567 [06:56<33:02, 4.01s/it]
13%|█▎ | 74/567 [06:58<29:16, 3.56s/it]
13%|█▎ | 75/567 [07:01<27:14, 3.32s/it]
13%|█▎ | 76/567 [07:05<30:18, 3.70s/it]
14%|█▎ | 77/567 [07:11<35:19, 4.33s/it]
14%|█▍ | 78/567 [07:15<34:23, 4.22s/it]
14%|█▍ | 79/567 [07:21<38:13, 4.70s/it]
14%|█▍ | 80/567 [07:25<36:56, 4.55s/it]
14%|█▍ | 81/567 [07:28<32:10, 3.97s/it]
14%|█▍ | 82/567 [07:32<32:07, 3.97s/it]
15%|█▍ | 83/567 [07:36<32:05, 3.98s/it]
15%|█▍ | 84/567 [07:39<31:01, 3.85s/it]
15%|█▍ | 85/567 [07:42<28:37, 3.56s/it]
15%|█▌ | 86/567 [07:46<29:00, 3.62s/it]
15%|█▌ | 87/567 [07:48<25:19, 3.17s/it]
16%|█▌ | 88/567 [07:52<26:17, 3.29s/it]
16%|█▌ | 89/567 [08:03<44:58, 5.65s/it]
16%|█▌ | 90/567 [08:08<44:44, 5.63s/it]
16%|█▌ | 91/567 [08:16<49:39, 6.26s/it]
16%|█▌ | 92/567 [08:20<43:07, 5.45s/it]
16%|█▋ | 93/567 [08:22<35:25, 4.49s/it]
17%|█▋ | 94/567 [08:30<44:22, 5.63s/it]
17%|█▋ | 95/567 [08:33<37:30, 4.77s/it]
17%|█▋ | 96/567 [08:38<38:08, 4.86s/it]
17%|█▋ | 97/567 [08:44<39:58, 5.10s/it]
17%|█▋ | 98/567 [08:45<31:59, 4.09s/it]
17%|█▋ | 99/567 [08:50<31:53, 4.09s/it]
18%|█▊ | 100/567 [08:57<40:29, 5.20s/it]
18%|█▊ | 101/567 [09:01<35:47, 4.61s/it]
18%|█▊ | 102/567 [09:10<47:28, 6.13s/it]
18%|█▊ | 103/567 [09:12<37:28, 4.85s/it]
18%|█▊ | 104/567 [09:19<41:31, 5.38s/it]
19%|█▊ | 105/567 [09:35<1:05:32, 8.51s/it]
19%|█▊ | 106/567 [09:41<1:00:06, 7.82s/it]
19%|█▉ | 107/567 [09:43<46:51, 6.11s/it]
19%|█▉ | 108/567 [10:00<1:11:19, 9.32s/it]
19%|█▉ | 109/567 [10:01<53:31, 7.01s/it]
19%|█▉ | 110/567 [10:05<44:56, 5.90s/it]
20%|█▉ | 111/567 [10:18<1:02:39, 8.25s/it]
20%|█▉ | 112/567 [10:25<58:34, 7.72s/it]
20%|█▉ | 113/567 [10:34<1:02:36, 8.27s/it]
20%|██ | 114/567 [10:38<51:24, 6.81s/it]
20%|██ | 115/567 [10:44<50:32, 6.71s/it]
20%|██ | 116/567 [10:48<43:29, 5.79s/it]
21%|██ | 117/567 [10:51<37:40, 5.02s/it]
21%|██ | 118/567 [10:58<41:56, 5.61s/it]
21%|██ | 119/567 [11:09<54:31, 7.30s/it]
21%|██ | 120/567 [11:14<49:00, 6.58s/it]
21%|██▏ | 121/567 [11:16<39:12, 5.28s/it]
22%|██▏ | 122/567 [11:20<34:13, 4.62s/it]
22%|██▏ | 123/567 [11:23<32:38, 4.41s/it]
22%|██▏ | 124/567 [11:32<42:14, 5.72s/it]
22%|██▏ | 125/567 [11:36<36:43, 4.99s/it]
22%|██▏ | 126/567 [11:40<34:30, 4.69s/it]
22%|██▏ | 127/567 [11:48<42:49, 5.84s/it]
23%|██▎ | 128/567 [11:56<47:50, 6.54s/it]
23%|██▎ | 129/567 [12:04<51:26, 7.05s/it]
23%|██▎ | 130/567 [12:20<1:09:13, 9.51s/it]
23%|██▎ | 131/567 [12:29<1:09:40, 9.59s/it]
23%|██▎ | 132/567 [12:45<1:23:05, 11.46s/it]
23%|██▎ | 133/567 [13:01<1:31:50, 12.70s/it]
24%|██▎ | 134/567 [13:18<1:42:01, 14.14s/it]
24%|██▍ | 135/567 [13:22<1:19:29, 11.04s/it]
24%|██▍ | 136/567 [13:26<1:04:08, 8.93s/it]
24%|██▍ | 137/567 [13:31<54:11, 7.56s/it]
24%|██▍ | 138/567 [13:32<41:51, 5.85s/it]
25%|██▍ | 139/567 [13:37<38:34, 5.41s/it]
25%|██▍ | 140/567 [13:41<35:31, 4.99s/it]
25%|██▍ | 141/567 [13:46<36:35, 5.15s/it]
25%|██▌ | 142/567 [13:50<32:14, 4.55s/it]
25%|██▌ | 143/567 [13:52<28:22, 4.02s/it]
25%|██▌ | 144/567 [13:57<29:09, 4.13s/it]
26%|██▌ | 145/567 [14:01<30:00, 4.27s/it]
26%|██▌ | 146/567 [14:07<33:49, 4.82s/it]
26%|██▌ | 147/567 [14:18<46:51, 6.69s/it]
26%|██▌ | 148/567 [14:24<45:03, 6.45s/it]
26%|██▋ | 149/567 [14:26<35:53, 5.15s/it]
26%|██▋ | 150/567 [14:28<28:25, 4.09s/it]
27%|██▋ | 151/567 [14:31<26:20, 3.80s/it]
27%|██▋ | 152/567 [14:36<28:48, 4.16s/it]
27%|██▋ | 153/567 [14:42<31:07, 4.51s/it]
27%|██▋ | 154/567 [14:45<29:45, 4.32s/it]
27%|██▋ | 155/567 [14:49<28:28, 4.15s/it]
28%|██▊ | 156/567 [14:54<29:38, 4.33s/it]
28%|██▊ | 157/567 [14:58<29:21, 4.30s/it]
28%|██▊ | 158/567 [15:10<44:10, 6.48s/it]
28%|██▊ | 159/567 [15:14<39:20, 5.79s/it]
28%|██▊ | 160/567 [15:22<44:59, 6.63s/it]
28%|██▊ | 161/567 [15:24<35:28, 5.24s/it]
29%|██▊ | 162/567 [15:29<33:54, 5.02s/it]
29%|██▊ | 163/567 [15:33<31:22, 4.66s/it]
29%|██▉ | 164/567 [15:42<39:28, 5.88s/it]
29%|██▉ | 165/567 [15:48<40:39, 6.07s/it]
29%|██▉ | 166/567 [15:51<34:02, 5.09s/it]
29%|██▉ | 167/567 [16:02<45:38, 6.85s/it]
30%|██▉ | 168/567 [16:05<38:00, 5.71s/it]
30%|██▉ | 169/567 [16:10<37:39, 5.68s/it]
30%|██▉ | 170/567 [16:16<38:12, 5.77s/it]
30%|███ | 171/567 [16:22<37:05, 5.62s/it]
30%|███ | 172/567 [16:27<35:26, 5.38s/it]
31%|███ | 173/567 [16:30<31:29, 4.80s/it]
31%|███ | 174/567 [16:35<31:12, 4.76s/it]
31%|███ | 175/567 [16:40<31:51, 4.88s/it]
31%|███ | 176/567 [16:43<29:21, 4.50s/it]
31%|███ | 177/567 [16:51<35:06, 5.40s/it]
31%|███▏ | 178/567 [16:54<29:50, 4.60s/it]
32%|███▏ | 179/567 [16:59<30:30, 4.72s/it]
32%|███▏ | 180/567 [17:03<30:31, 4.73s/it]
32%|███▏ | 181/567 [17:08<29:52, 4.65s/it]
32%|███▏ | 182/567 [17:09<23:43, 3.70s/it]
32%|███▏ | 183/567 [17:11<20:08, 3.15s/it]
32%|███▏ | 184/567 [17:16<24:08, 3.78s/it]
33%|███▎ | 185/567 [17:19<21:51, 3.43s/it]
33%|███▎ | 186/567 [17:36<46:43, 7.36s/it]
33%|███▎ | 187/567 [17:39<39:47, 6.28s/it]
33%|███▎ | 188/567 [17:42<32:30, 5.15s/it]
33%|███▎ | 189/567 [17:46<31:11, 4.95s/it]
34%|███▎ | 190/567 [17:48<25:32, 4.06s/it]
34%|███▎ | 191/567 [17:58<36:18, 5.79s/it]
34%|███▍ | 192/567 [18:04<36:09, 5.78s/it]
34%|███▍ | 193/567 [18:23<1:01:30, 9.87s/it]
34%|███▍ | 194/567 [18:26<47:34, 7.65s/it]
34%|███▍ | 195/567 [18:36<53:00, 8.55s/it]
35%|███▍ | 196/567 [18:42<46:25, 7.51s/it]
35%|███▍ | 197/567 [18:51<49:12, 7.98s/it]
35%|███▍ | 198/567 [19:00<50:53, 8.27s/it]
35%|███▌ | 199/567 [19:05<45:53, 7.48s/it]
35%|███▌ | 200/567 [19:09<38:40, 6.32s/it]
35%|███▌ | 201/567 [19:11<31:46, 5.21s/it]
36%|███▌ | 202/567 [19:14<27:40, 4.55s/it]
36%|███▌ | 203/567 [19:17<24:20, 4.01s/it]
36%|███▌ | 204/567 [19:20<22:38, 3.74s/it]
36%|███▌ | 205/567 [19:25<23:50, 3.95s/it]
36%|███▋ | 206/567 [19:35<35:43, 5.94s/it]
37%|███▋ | 207/567 [19:39<31:53, 5.32s/it]
37%|███▋ | 208/567 [19:48<37:16, 6.23s/it]
37%|███▋ | 209/567 [19:50<30:15, 5.07s/it]
37%|███▋ | 210/567 [19:55<30:56, 5.20s/it]
37%|███▋ | 211/567 [20:00<29:22, 4.95s/it]
37%|███▋ | 212/567 [20:05<29:40, 5.02s/it]
38%|███▊ | 213/567 [20:11<30:39, 5.20s/it]
38%|███▊ | 214/567 [20:15<29:06, 4.95s/it]
38%|███▊ | 215/567 [20:20<29:22, 5.01s/it]
38%|███▊ | 216/567 [20:25<29:27, 5.04s/it]
38%|███▊ | 217/567 [20:33<34:23, 5.90s/it]
38%|███▊ | 218/567 [20:42<39:30, 6.79s/it]
39%|███▊ | 219/567 [20:47<36:47, 6.34s/it]
39%|███▉ | 220/567 [20:51<32:22, 5.60s/it]
39%|███▉ | 221/567 [20:53<26:28, 4.59s/it]
39%|███▉ | 222/567 [20:57<24:29, 4.26s/it]
39%|███▉ | 223/567 [21:00<21:36, 3.77s/it]
40%|███▉ | 224/567 [21:04<23:23, 4.09s/it]
40%|███▉ | 225/567 [21:11<27:10, 4.77s/it]
40%|███▉ | 226/567 [21:17<29:32, 5.20s/it]
40%|████ | 227/567 [21:19<24:51, 4.39s/it]
40%|████ | 228/567 [21:25<26:30, 4.69s/it]
40%|████ | 229/567 [21:33<32:05, 5.70s/it]
41%|████ | 230/567 [21:36<27:43, 4.94s/it]
41%|████ | 231/567 [21:44<32:56, 5.88s/it]
41%|████ | 232/567 [21:48<29:19, 5.25s/it]
41%|████ | 233/567 [21:55<32:31, 5.84s/it]
41%|████▏ | 234/567 [21:57<25:24, 4.58s/it]
41%|████▏ | 235/567 [22:03<28:44, 5.20s/it]
42%|████▏ | 236/567 [22:10<30:28, 5.52s/it]
42%|████▏ | 237/567 [22:12<25:10, 4.58s/it]
42%|████▏ | 238/567 [22:17<26:20, 4.80s/it]
42%|████▏ | 239/567 [22:23<27:32, 5.04s/it]
42%|████▏ | 240/567 [22:39<45:12, 8.29s/it]
43%|████▎ | 241/567 [22:43<38:13, 7.03s/it]
43%|████▎ | 242/567 [22:46<32:14, 5.95s/it]
43%|████▎ | 243/567 [22:52<32:26, 6.01s/it]
43%|████▎ | 244/567 [23:02<37:12, 6.91s/it]
43%|████▎ | 245/567 [23:03<28:58, 5.40s/it]
43%|████▎ | 246/567 [23:08<27:46, 5.19s/it]
44%|████▎ | 247/567 [23:10<22:09, 4.15s/it]
44%|████▎ | 248/567 [23:15<23:43, 4.46s/it]
44%|████▍ | 249/567 [23:19<22:20, 4.22s/it]
44%|████▍ | 250/567 [23:26<27:47, 5.26s/it]
44%|████▍ | 251/567 [23:38<37:23, 7.10s/it]
44%|████▍ | 252/567 [23:44<35:22, 6.74s/it]
45%|████▍ | 253/567 [23:45<27:25, 5.24s/it]
45%|████▍ | 254/567 [24:02<45:55, 8.80s/it]
45%|████▍ | 255/567 [24:08<41:21, 7.95s/it]
45%|████▌ | 256/567 [24:10<31:45, 6.13s/it]
45%|████▌ | 257/567 [24:21<38:48, 7.51s/it]
46%|████▌ | 258/567 [24:27<36:50, 7.15s/it]
46%|████▌ | 259/567 [24:30<29:22, 5.72s/it]
46%|████▌ | 260/567 [24:44<42:11, 8.25s/it]
46%|████▌ | 261/567 [24:50<38:43, 7.59s/it]
46%|████▌ | 262/567 [24:59<40:58, 8.06s/it]
46%|████▋ | 263/567 [25:02<32:57, 6.51s/it]
47%|████▋ | 264/567 [25:03<25:03, 4.96s/it]
47%|████▋ | 265/567 [25:15<34:46, 6.91s/it]
47%|████▋ | 266/567 [25:18<28:48, 5.74s/it]
47%|████▋ | 267/567 [25:22<26:05, 5.22s/it]
47%|████▋ | 268/567 [25:31<32:09, 6.45s/it]
47%|████▋ | 269/567 [25:39<34:10, 6.88s/it]
48%|████▊ | 270/567 [25:43<29:27, 5.95s/it]
48%|████▊ | 271/567 [25:52<34:06, 6.91s/it]
48%|████▊ | 272/567 [25:57<30:43, 6.25s/it]
48%|████▊ | 273/567 [26:01<28:09, 5.75s/it]
48%|████▊ | 274/567 [26:04<24:04, 4.93s/it]
49%|████▊ | 275/567 [26:07<21:01, 4.32s/it]
49%|████▊ | 276/567 [26:12<22:06, 4.56s/it]
49%|████▉ | 277/567 [26:17<22:07, 4.58s/it]
49%|████▉ | 278/567 [26:19<18:18, 3.80s/it]
49%|████▉ | 279/567 [26:29<27:16, 5.68s/it]
49%|████▉ | 280/567 [26:36<28:25, 5.94s/it]
50%|████▉ | 281/567 [26:38<23:13, 4.87s/it]
50%|████▉ | 282/567 [26:41<20:43, 4.36s/it]
50%|████▉ | 283/567 [26:50<27:48, 5.88s/it]
50%|█████ | 284/567 [26:54<24:00, 5.09s/it]
50%|█████ | 285/567 [26:57<21:36, 4.60s/it]
50%|█████ | 286/567 [26:59<18:02, 3.85s/it]
51%|█████ | 287/567 [27:07<22:51, 4.90s/it]
51%|█████ | 288/567 [27:11<22:01, 4.74s/it]
51%|█████ | 289/567 [27:17<24:18, 5.25s/it]
51%|█████ | 290/567 [27:23<25:14, 5.47s/it]
51%|█████▏ | 291/567 [27:28<23:48, 5.18s/it]
51%|█████▏ | 292/567 [27:34<25:35, 5.58s/it]
52%|█████▏ | 293/567 [27:39<23:54, 5.24s/it]
52%|█████▏ | 294/567 [27:43<21:52, 4.81s/it]
52%|█████▏ | 295/567 [27:46<20:09, 4.45s/it]
52%|█████▏ | 296/567 [27:53<23:35, 5.22s/it]
52%|█████▏ | 297/567 [27:57<20:52, 4.64s/it]
53%|█████▎ | 298/567 [28:12<35:11, 7.85s/it]
53%|█████▎ | 299/567 [28:16<30:00, 6.72s/it]
53%|█████▎ | 300/567 [28:22<28:28, 6.40s/it]
53%|█████▎ | 301/567 [28:28<28:31, 6.43s/it]
53%|█████▎ | 302/567 [28:32<25:05, 5.68s/it]
53%|█████▎ | 303/567 [28:36<22:18, 5.07s/it]
54%|█████▎ | 304/567 [28:39<20:19, 4.64s/it]
54%|█████▍ | 305/567 [28:43<19:33, 4.48s/it]
54%|█████▍ | 306/567 [28:49<20:49, 4.79s/it]
54%|█████▍ | 307/567 [29:01<30:12, 6.97s/it]
54%|█████▍ | 308/567 [29:04<25:16, 5.86s/it]
54%|█████▍ | 309/567 [29:06<19:42, 4.58s/it]
55%|█████▍ | 310/567 [29:29<42:45, 9.98s/it]
55%|█████▍ | 311/567 [29:36<39:16, 9.21s/it]
55%|█████▌ | 312/567 [29:39<31:30, 7.41s/it]
55%|█████▌ | 313/567 [29:42<25:48, 6.10s/it]
55%|█████▌ | 314/567 [29:49<26:59, 6.40s/it]
56%|█████▌ | 315/567 [30:04<37:18, 8.88s/it]
56%|█████▌ | 316/567 [30:06<28:49, 6.89s/it]
56%|█████▌ | 317/567 [30:11<26:07, 6.27s/it]
56%|█████▌ | 318/567 [30:13<21:00, 5.06s/it]
56%|█████▋ | 319/567 [30:22<25:11, 6.10s/it]
56%|█████▋ | 320/567 [30:23<19:33, 4.75s/it]
57%|█████▋ | 321/567 [30:36<29:22, 7.16s/it]
57%|█████▋ | 322/567 [30:41<26:35, 6.51s/it]
57%|█████▋ | 323/567 [30:45<23:06, 5.68s/it]
57%|█████▋ | 324/567 [30:50<22:08, 5.47s/it]
57%|█████▋ | 325/567 [31:06<34:46, 8.62s/it]
57%|█████▋ | 326/567 [31:08<26:29, 6.60s/it]
58%|█████▊ | 327/567 [31:11<22:23, 5.60s/it]
58%|█████▊ | 328/567 [31:16<21:40, 5.44s/it]
58%|█████▊ | 329/567 [31:25<26:00, 6.56s/it]
58%|█████▊ | 330/567 [31:26<19:27, 4.92s/it]
58%|█████▊ | 331/567 [31:30<17:32, 4.46s/it]
59%|█████▊ | 332/567 [31:33<16:08, 4.12s/it]
59%|█████▊ | 333/567 [31:38<16:57, 4.35s/it]
59%|█████▉ | 334/567 [31:41<15:14, 3.92s/it]
59%|█████▉ | 335/567 [31:46<16:40, 4.31s/it]
59%|█████▉ | 336/567 [31:48<13:37, 3.54s/it]
59%|█████▉ | 337/567 [31:56<18:46, 4.90s/it]
60%|█████▉ | 338/567 [32:00<18:19, 4.80s/it]
60%|█████▉ | 339/567 [32:03<15:54, 4.19s/it]
60%|█████▉ | 340/567 [32:06<13:55, 3.68s/it]
60%|██████ | 341/567 [32:08<12:49, 3.40s/it]
60%|██████ | 342/567 [32:14<15:07, 4.03s/it]
60%|██████ | 343/567 [32:17<13:46, 3.69s/it]
61%|██████ | 344/567 [32:22<15:40, 4.22s/it]
61%|██████ | 345/567 [32:26<14:57, 4.04s/it]
61%|██████ | 346/567 [32:29<14:07, 3.84s/it]
61%|██████ | 347/567 [32:35<16:27, 4.49s/it]
61%|██████▏ | 348/567 [32:43<20:09, 5.52s/it]
62%|██████▏ | 349/567 [32:54<25:57, 7.15s/it]
62%|██████▏ | 350/567 [32:59<23:33, 6.51s/it]
62%|██████▏ | 351/567 [33:19<37:45, 10.49s/it]
62%|██████▏ | 352/567 [33:22<30:01, 8.38s/it]
62%|██████▏ | 353/567 [33:32<30:39, 8.59s/it]
62%|██████▏ | 354/567 [33:38<28:26, 8.01s/it]
63%|██████▎ | 355/567 [33:42<23:20, 6.61s/it]
63%|██████▎ | 356/567 [33:47<21:46, 6.19s/it]
63%|██████▎ | 357/567 [33:50<18:04, 5.16s/it]
63%|██████▎ | 358/567 [33:53<16:37, 4.77s/it]
63%|██████▎ | 359/567 [33:56<14:11, 4.10s/it]
63%|██████▎ | 360/567 [33:59<13:24, 3.89s/it]
64%|██████▎ | 361/567 [34:02<12:32, 3.65s/it]
64%|██████▍ | 362/567 [34:10<16:16, 4.76s/it]
64%|██████▍ | 363/567 [34:20<21:23, 6.29s/it]
64%|██████▍ | 364/567 [34:23<18:04, 5.34s/it]
64%|██████▍ | 365/567 [34:28<17:34, 5.22s/it]
65%|██████▍ | 366/567 [34:32<16:09, 4.82s/it]
65%|██████▍ | 367/567 [34:37<16:31, 4.96s/it]
65%|██████▍ | 368/567 [34:46<20:47, 6.27s/it]
65%|██████▌ | 369/567 [34:53<20:55, 6.34s/it]
65%|██████▌ | 370/567 [34:57<18:43, 5.70s/it]
65%|██████▌ | 371/567 [35:01<17:00, 5.21s/it]
66%|██████▌ | 372/567 [35:04<15:05, 4.64s/it]
66%|██████▌ | 373/567 [35:14<19:40, 6.08s/it]
66%|██████▌ | 374/567 [35:22<21:24, 6.66s/it]
66%|██████▌ | 375/567 [35:28<21:15, 6.64s/it]
66%|██████▋ | 376/567 [35:31<17:19, 5.44s/it]
66%|██████▋ | 377/567 [35:42<22:58, 7.25s/it]
67%|██████▋ | 378/567 [35:49<21:43, 6.90s/it]
67%|██████▋ | 379/567 [35:57<22:47, 7.27s/it]
67%|██████▋ | 380/567 [36:01<19:31, 6.26s/it]
67%|██████▋ | 381/567 [36:05<17:38, 5.69s/it]
67%|██████▋ | 382/567 [36:08<15:29, 5.02s/it]
68%|██████▊ | 383/567 [36:16<17:47, 5.80s/it]
68%|██████▊ | 384/567 [36:20<16:07, 5.29s/it]
68%|██████▊ | 385/567 [36:28<18:25, 6.08s/it]
68%|██████▊ | 386/567 [36:35<18:54, 6.27s/it]
68%|██████▊ | 387/567 [36:38<16:18, 5.44s/it]
68%|██████▊ | 388/567 [36:59<30:10, 10.11s/it]
69%|██████▊ | 389/567 [37:04<25:36, 8.63s/it]
69%|██████▉ | 390/567 [37:07<20:02, 6.79s/it]
69%|██████▉ | 391/567 [37:13<19:28, 6.64s/it]
69%|██████▉ | 392/567 [37:22<21:24, 7.34s/it]
69%|██████▉ | 393/567 [37:25<17:31, 6.05s/it]
69%|██████▉ | 394/567 [37:33<18:38, 6.47s/it]
70%|██████▉ | 395/567 [37:42<20:38, 7.20s/it]
70%|██████▉ | 396/567 [37:47<18:36, 6.53s/it]
70%|███████ | 397/567 [37:58<22:22, 7.90s/it]
70%|███████ | 398/567 [38:00<17:22, 6.17s/it]
70%|███████ | 399/567 [38:02<14:10, 5.06s/it]
71%|███████ | 400/567 [38:05<12:23, 4.45s/it]
71%|███████ | 401/567 [38:10<12:36, 4.56s/it]
71%|███████ | 402/567 [38:18<15:29, 5.63s/it]
71%|███████ | 403/567 [38:22<14:17, 5.23s/it]
71%|███████▏ | 404/567 [38:25<12:05, 4.45s/it]
71%|███████▏ | 405/567 [38:28<10:26, 3.87s/it]
72%|███████▏ | 406/567 [38:33<11:32, 4.30s/it]
72%|███████▏ | 407/567 [38:36<10:19, 3.87s/it]
72%|███████▏ | 408/567 [38:45<14:15, 5.38s/it]
72%|███████▏ | 409/567 [38:47<12:06, 4.60s/it]
72%|███████▏ | 410/567 [38:51<11:30, 4.40s/it]
72%|███████▏ | 411/567 [38:53<09:33, 3.68s/it]
73%|███████▎ | 412/567 [38:59<10:42, 4.15s/it]
73%|███████▎ | 413/567 [39:05<12:36, 4.91s/it]
73%|███████▎ | 414/567 [39:07<10:05, 3.96s/it]
73%|███████▎ | 415/567 [39:18<15:23, 6.08s/it]
73%|███████▎ | 416/567 [39:24<14:56, 5.94s/it]
74%|███████▎ | 417/567 [39:36<19:50, 7.93s/it]
74%|███████▎ | 418/567 [39:41<17:22, 6.99s/it]
74%|███████▍ | 419/567 [39:59<25:23, 10.29s/it]
74%|███████▍ | 420/567 [40:06<22:21, 9.13s/it]
74%|███████▍ | 421/567 [40:12<20:22, 8.37s/it]
74%|███████▍ | 422/567 [40:17<18:00, 7.45s/it]
75%|███████▍ | 423/567 [40:23<16:33, 6.90s/it]
75%|███████▍ | 424/567 [40:28<15:22, 6.45s/it]
75%|███████▍ | 425/567 [40:34<14:41, 6.21s/it]
75%|███████▌ | 426/567 [40:36<11:32, 4.91s/it]
75%|███████▌ | 427/567 [40:40<11:07, 4.77s/it]
75%|███████▌ | 428/567 [40:49<13:39, 5.89s/it]
76%|███████▌ | 429/567 [40:59<16:44, 7.28s/it]
76%|███████▌ | 430/567 [41:04<14:26, 6.33s/it]
76%|███████▌ | 431/567 [41:14<17:28, 7.71s/it]
76%|███████▌ | 432/567 [41:24<18:17, 8.13s/it]
76%|███████▋ | 433/567 [41:32<18:05, 8.10s/it]
77%|███████▋ | 434/567 [41:38<16:34, 7.48s/it]
77%|███████▋ | 435/567 [41:40<13:20, 6.06s/it]
77%|███████▋ | 436/567 [41:46<12:47, 5.86s/it]
77%|███████▋ | 437/567 [41:48<10:31, 4.85s/it]
77%|███████▋ | 438/567 [41:55<11:29, 5.34s/it]
77%|███████▋ | 439/567 [42:00<11:01, 5.17s/it]
78%|███████▊ | 440/567 [42:02<09:24, 4.45s/it]
78%|███████▊ | 441/567 [42:08<10:14, 4.88s/it]
78%|███████▊ | 442/567 [42:12<09:41, 4.66s/it]
78%|███████▊ | 443/567 [42:16<09:08, 4.42s/it]
78%|███████▊ | 444/567 [42:26<12:35, 6.14s/it]
78%|███████▊ | 445/567 [42:31<11:38, 5.73s/it]
79%|███████▊ | 446/567 [42:40<13:36, 6.75s/it]
79%|███████▉ | 447/567 [42:48<13:50, 6.92s/it]
79%|███████▉ | 448/567 [42:54<13:19, 6.72s/it]
79%|███████▉ | 449/567 [42:57<11:19, 5.76s/it]
79%|███████▉ | 450/567 [43:02<10:30, 5.39s/it]
80%|███████▉ | 451/567 [43:05<09:07, 4.72s/it]
80%|███████▉ | 452/567 [43:09<08:41, 4.54s/it]
80%|███████▉ | 453/567 [43:17<10:15, 5.39s/it]
80%|████████ | 454/567 [43:21<09:34, 5.08s/it]
80%|████████ | 455/567 [43:24<08:28, 4.54s/it]
80%|████████ | 456/567 [43:27<07:24, 4.00s/it]
81%|████████ | 457/567 [43:30<06:48, 3.71s/it]
81%|████████ | 458/567 [43:36<07:54, 4.36s/it]
81%|████████ | 459/567 [43:43<09:10, 5.10s/it]
81%|████████ | 460/567 [43:44<07:09, 4.02s/it]
81%|████████▏ | 461/567 [43:47<06:34, 3.72s/it]
81%|████████▏ | 462/567 [43:49<05:36, 3.20s/it]
82%|████████▏ | 463/567 [43:53<05:51, 3.38s/it]
82%|████████▏ | 464/567 [43:56<05:33, 3.24s/it]
82%|████████▏ | 465/567 [44:00<06:08, 3.61s/it]
82%|████████▏ | 466/567 [44:04<06:18, 3.75s/it]
82%|████████▏ | 467/567 [44:07<05:29, 3.30s/it]
83%|████████▎ | 468/567 [44:12<06:37, 4.01s/it]
83%|████████▎ | 469/567 [44:16<06:12, 3.80s/it]
83%|████████▎ | 470/567 [44:20<06:35, 4.08s/it]
83%|████████▎ | 471/567 [44:27<07:57, 4.97s/it]
83%|████████▎ | 472/567 [44:40<11:21, 7.17s/it]
83%|████████▎ | 473/567 [44:46<10:42, 6.83s/it]
84%|████████▎ | 474/567 [44:55<11:30, 7.42s/it]
84%|████████▍ | 475/567 [44:56<08:49, 5.75s/it]
84%|████████▍ | 476/567 [45:01<08:06, 5.35s/it]
84%|████████▍ | 477/567 [45:02<06:20, 4.23s/it]
84%|████████▍ | 478/567 [45:06<05:51, 3.95s/it]
84%|████████▍ | 479/567 [45:08<05:09, 3.52s/it]
85%|████████▍ | 480/567 [45:12<05:08, 3.55s/it]
85%|████████▍ | 481/567 [45:22<07:49, 5.46s/it]
85%|████████▌ | 482/567 [45:25<06:57, 4.91s/it]
85%|████████▌ | 483/567 [45:28<06:04, 4.34s/it]
85%|████████▌ | 484/567 [45:38<08:15, 5.97s/it]
86%|████████▌ | 485/567 [45:41<06:47, 4.97s/it]
86%|████████▌ | 486/567 [45:46<06:43, 4.98s/it]
86%|████████▌ | 487/567 [45:58<09:35, 7.20s/it]
86%|████████▌ | 488/567 [46:01<07:37, 5.79s/it]
86%|████████▌ | 489/567 [46:05<06:53, 5.30s/it]
86%|████████▋ | 490/567 [46:17<09:17, 7.24s/it]
87%|████████▋ | 491/567 [46:21<08:09, 6.45s/it]
87%|████████▋ | 492/567 [46:25<07:05, 5.68s/it]
87%|████████▋ | 493/567 [46:33<07:42, 6.25s/it]
87%|████████▋ | 494/567 [46:38<07:18, 6.01s/it]
87%|████████▋ | 495/567 [46:56<11:34, 9.64s/it]
87%|████████▋ | 496/567 [46:59<08:55, 7.54s/it]
88%|████████▊ | 497/567 [47:06<08:48, 7.55s/it]
88%|████████▊ | 498/567 [47:13<08:24, 7.31s/it]
88%|████████▊ | 499/567 [47:18<07:26, 6.57s/it]
88%|████████▊ | 500/567 [47:34<10:24, 9.32s/it]
88%|████████▊ | 501/567 [47:36<08:00, 7.27s/it]
89%|████████▊ | 502/567 [47:43<07:48, 7.20s/it]
89%|████████▊ | 503/567 [47:58<10:13, 9.58s/it]
89%|████████▉ | 504/567 [48:05<09:14, 8.80s/it]
89%|████████▉ | 505/567 [48:14<09:01, 8.74s/it]
89%|████████▉ | 506/567 [48:23<09:03, 8.91s/it]
89%|████████▉ | 507/567 [48:26<07:04, 7.07s/it]
90%|████████▉ | 508/567 [48:32<06:43, 6.83s/it]
90%|████████▉ | 509/567 [48:36<05:41, 5.88s/it]
90%|████████▉ | 510/567 [48:44<06:03, 6.38s/it]
90%|█████████ | 511/567 [48:49<05:48, 6.23s/it]
90%|█████████ | 512/567 [49:00<06:55, 7.55s/it]
90%|█████████ | 513/567 [49:07<06:34, 7.30s/it]
91%|█████████ | 514/567 [49:08<04:54, 5.55s/it]
91%|█████████ | 515/567 [49:13<04:30, 5.20s/it]
91%|█████████ | 516/567 [49:16<03:58, 4.68s/it]
91%|█████████ | 517/567 [49:21<04:00, 4.81s/it]
91%|█████████▏| 518/567 [49:24<03:22, 4.12s/it]
92%|█████████▏| 519/567 [49:28<03:25, 4.28s/it]
92%|█████████▏| 520/567 [49:32<03:07, 4.00s/it]
92%|█████████▏| 521/567 [49:36<03:11, 4.16s/it]
92%|█████████▏| 522/567 [49:43<03:44, 5.00s/it]
92%|█████████▏| 523/567 [49:49<03:46, 5.15s/it]
92%|█████████▏| 524/567 [49:53<03:31, 4.92s/it]
93%|█████████▎| 525/567 [49:58<03:21, 4.79s/it]
93%|█████████▎| 526/567 [50:03<03:24, 4.98s/it]
93%|█████████▎| 527/567 [50:08<03:22, 5.07s/it]
93%|█████████▎| 528/567 [50:11<02:52, 4.41s/it]
93%|█████████▎| 529/567 [50:15<02:46, 4.37s/it]
93%|█████████▎| 530/567 [50:24<03:23, 5.50s/it]
94%|█████████▎| 531/567 [50:28<03:01, 5.04s/it]
94%|█████████▍| 532/567 [50:32<02:45, 4.73s/it]
94%|█████████▍| 533/567 [50:34<02:20, 4.14s/it]
94%|█████████▍| 534/567 [50:37<02:00, 3.64s/it]
94%|█████████▍| 535/567 [50:43<02:20, 4.39s/it]
95%|█████████▍| 536/567 [50:47<02:16, 4.40s/it]
95%|█████████▍| 537/567 [50:55<02:40, 5.37s/it]
95%|█████████▍| 538/567 [50:58<02:15, 4.69s/it]
95%|█████████▌| 539/567 [51:11<03:19, 7.14s/it]
95%|█████████▌| 540/567 [51:30<04:47, 10.65s/it]
95%|█████████▌| 541/567 [51:41<04:38, 10.70s/it]
96%|█████████▌| 542/567 [51:48<04:01, 9.65s/it]
96%|█████████▌| 543/567 [52:08<05:06, 12.75s/it]
96%|█████████▌| 544/567 [52:09<03:34, 9.34s/it]
96%|█████████▌| 545/567 [52:14<02:58, 8.12s/it]
96%|█████████▋| 546/567 [52:19<02:25, 6.91s/it]
96%|█████████▋| 547/567 [52:21<01:51, 5.55s/it]
97%|█████████▋| 548/567 [52:25<01:34, 4.95s/it]
97%|█████████▋| 549/567 [52:27<01:16, 4.26s/it]
97%|█████████▋| 550/567 [52:32<01:14, 4.41s/it]
97%|█████████▋| 551/567 [52:37<01:16, 4.75s/it]
97%|█████████▋| 552/567 [52:45<01:23, 5.54s/it]
98%|█████████▊| 553/567 [52:48<01:05, 4.70s/it]
98%|█████████▊| 554/567 [52:50<00:54, 4.16s/it]
98%|█████████▊| 555/567 [52:54<00:47, 3.92s/it]
98%|█████████▊| 556/567 [52:57<00:40, 3.72s/it]
98%|█████████▊| 557/567 [53:05<00:49, 4.92s/it]
98%|█████████▊| 558/567 [53:09<00:43, 4.83s/it]
99%|█████████▊| 559/567 [53:17<00:45, 5.69s/it]
99%|█████████▉| 560/567 [53:24<00:42, 6.04s/it]
99%|█████████▉| 561/567 [53:27<00:30, 5.02s/it]
99%|█████████▉| 562/567 [53:37<00:32, 6.54s/it]
99%|█████████▉| 563/567 [53:43<00:25, 6.50s/it]
99%|█████████▉| 564/567 [53:52<00:21, 7.08s/it]
100%|█████████▉| 565/567 [53:55<00:12, 6.01s/it]
100%|█████████▉| 566/567 [54:00<00:05, 5.83s/it]
100%|██████████| 567/567 [54:01<00:00, 4.27s/it]
100%|██████████| 567/567 [54:01<00:00, 5.72s/it]
-Batch output: ['Lao Geng picked up the gun, squinted one eye into a triangle, pulled the trigger, and the gunshot sounded. The gold sparrows fell in a hailstorm, and the iron sand flew and crackled between the willow branches.', 'The next day, before dawn, Mrs. Liu got up, washed and dressed, and then taught the boy a few phrases. A child of five or six years old, hearing that he was to be taken into the city for a stroll, was delighted and readily agreed to everything.']
-internlm/internlm2_5-7b-chat/shots-05 metrics: {'meteor': 0.37285562384505977, 'bleu_scores': {'bleu': 0.11541534709366409, 'precisions': [0.43137321434630654, 0.15802103183005153, 0.07513048592222304, 0.0381989721561709], 'brevity_penalty': 0.9758983332815817, 'length_ratio': 0.9761841669426963, 'translation_length': 29471, 'reference_length': 30190}, 'rouge_scores': {'rouge1': 0.4246507847876875, 'rouge2': 0.17644172445121875, 'rougeL': 0.3685192454804763, 'rougeLsum': 0.3687540586617418}, 'accuracy': 0.00088261253309797, 'correct_ids': [77]}
-*** Evaluating with num_shots: 10
-loading train/test data files
-
Map: 0%| | 0/4528 [00:00, ? examples/s]
Map: 44%|████▍ | 2000/4528 [00:00<00:00, 7518.88 examples/s]
Map: 100%|██████████| 4528/4528 [00:00<00:00, 13285.97 examples/s]
Map: 100%|██████████| 4528/4528 [00:00<00:00, 10609.80 examples/s]
-
Map: 0%| | 0/1133 [00:00, ? examples/s]
Map: 100%|██████████| 1133/1133 [00:00<00:00, 7082.77 examples/s]
-DatasetDict({
- train: Dataset({
- features: ['chinese', 'english', 'text', 'prompt'],
- num_rows: 4528
- })
- test: Dataset({
- features: ['chinese', 'english', 'text', 'prompt'],
- num_rows: 1133
- })
-})
---------------------------------------------------
-chinese: 老耿端起枪,眯缝起一只三角眼,一搂扳机响了枪,冰雹般的金麻雀劈哩啪啦往下落,铁砂子在柳枝间飞迸着,嚓嚓有声。
---------------------------------------------------
-english: Old Geng picked up his shotgun, squinted, and pulled the trigger. Two sparrows crashed to the ground like hailstones as shotgun pellets tore noisily through the branches.
---------------------------------------------------
-text: <|im_start|>system
-You are a helpful assistant that translates Chinese to English.<|im_end|>
-<|im_start|>user
-You will be given a Chinese sentence to translate. If it is an incomplete sentence, or if you are unsure about the meaning, simply copy the input text as your output. Do not output any additional sentence such as explanation or reasoning.
-
-Example Translations:
-Chinese: 全仗着狐仙搭救。
-English: Because I was protected by a fox fairy.
-Chinese: 过后,表哥告诉她俩,这人是导演,在外国留过学的,还会编剧,今天拍的这戏,就是他自编自导的。
-English: He was the director, the cousin later told them. He had studied abroad and was also a screenwriter; in fact he had written and directed the scene they had earlier seen being filmed.
-Chinese: 这凤姐忽然想起一件事来,便向窗外叫:“蓉儿回来!”
-English: Xi-feng suddenly seemed to remember something, and called to him through the window, 'Rong, come back!'
-Chinese: 三个老红卫兵走到叶文洁面前,面对着她站成了一排——当年,她们也是这样面对叶哲泰的——试图再现那早已忘却的尊严,但她们当年那魔鬼般的精神力量显然已荡然无存。
-English: The three old Red Guards stood in front of Ye in a row—just like they had stood against Ye Zhetai—trying to recapture their long-forgotten dignity. But the demonic spiritual energy that had once propelled them was gone.
-Chinese: 程先生照单全收,都是一个“谢”字,然后问王琦瑶有什么话说。
-English: Mr. Cheng accepted their toast with equanimity and a 'thank you.' Then, turning to Wang Qiyao, he asked if she had anything to say.
-Chinese: 程先生向来觉得她母亲势利,过去并不把他放在眼里,他在楼下叫王琦瑶,她连门都不肯开,只让老妈子伸出头来回话。
-English: Mr. Cheng had always thought her a calculating woman. Back when he used to call on Wang Qiyao, she would never even bother to greet him but always sent the maid down to talk to him at the door instead.
-Chinese: 按他的逻辑,我身上这个通红通红,直不愣登,长约一尺的东西就是罪恶的化身。
-English: In his way of thinking, this red, stiff, foot-long thing on my body was the incarnation of evil.
-Chinese: 他听沙瑞山讲她如何目睹父亲在“文革”中的惨死,讲她后来在建设兵团被诬陷,后来杳无音讯; 九十年代初才又回到了这座城市,在父亲曾工作过的大学中讲授天体物理学直到退休。
-English: He listened as Sha told of how she witnessed the death of her father during the Cultural Revolution, how she was falsely accused at the Production and Construction Corps, how she then seemed to disappear until her return to Beijing at the beginning of the nineties, when she began teaching astrophysics at Tsinghua, where her father had also taught, until her retirement.
-Chinese: 事情一时上有些弄反了,去片厂倒是为了照顾吴佩珍似的。
-English: Before long, it was more like Wang Qiyao was doing her a favor by going with her.
-Chinese: “这等于说正确的哲学是从天上掉下来的。
-English: 'Then that's equivalent to saying that the correct philosophy falls out of the sky.
-
-Chinese: 老耿端起枪,眯缝起一只三角眼,一搂扳机响了枪,冰雹般的金麻雀劈哩啪啦往下落,铁砂子在柳枝间飞迸着,嚓嚓有声。
-English:<|im_end|>
-<|im_start|>assistant
-Old Geng picked up his shotgun, squinted, and pulled the trigger. Two sparrows crashed to the ground like hailstones as shotgun pellets tore noisily through the branches.
---------------------------------------------------
-prompt: <|im_start|>system
-You are a helpful assistant that translates Chinese to English.<|im_end|>
-<|im_start|>user
-You will be given a Chinese sentence to translate. If it is an incomplete sentence, or if you are unsure about the meaning, simply copy the input text as your output. Do not output any additional sentence such as explanation or reasoning.
-
-Example Translations:
-Chinese: 全仗着狐仙搭救。
-English: Because I was protected by a fox fairy.
-Chinese: 过后,表哥告诉她俩,这人是导演,在外国留过学的,还会编剧,今天拍的这戏,就是他自编自导的。
-English: He was the director, the cousin later told them. He had studied abroad and was also a screenwriter; in fact he had written and directed the scene they had earlier seen being filmed.
-Chinese: 这凤姐忽然想起一件事来,便向窗外叫:“蓉儿回来!”
-English: Xi-feng suddenly seemed to remember something, and called to him through the window, 'Rong, come back!'
-Chinese: 三个老红卫兵走到叶文洁面前,面对着她站成了一排——当年,她们也是这样面对叶哲泰的——试图再现那早已忘却的尊严,但她们当年那魔鬼般的精神力量显然已荡然无存。
-English: The three old Red Guards stood in front of Ye in a row—just like they had stood against Ye Zhetai—trying to recapture their long-forgotten dignity. But the demonic spiritual energy that had once propelled them was gone.
-Chinese: 程先生照单全收,都是一个“谢”字,然后问王琦瑶有什么话说。
-English: Mr. Cheng accepted their toast with equanimity and a 'thank you.' Then, turning to Wang Qiyao, he asked if she had anything to say.
-Chinese: 程先生向来觉得她母亲势利,过去并不把他放在眼里,他在楼下叫王琦瑶,她连门都不肯开,只让老妈子伸出头来回话。
-English: Mr. Cheng had always thought her a calculating woman. Back when he used to call on Wang Qiyao, she would never even bother to greet him but always sent the maid down to talk to him at the door instead.
-Chinese: 按他的逻辑,我身上这个通红通红,直不愣登,长约一尺的东西就是罪恶的化身。
-English: In his way of thinking, this red, stiff, foot-long thing on my body was the incarnation of evil.
-Chinese: 他听沙瑞山讲她如何目睹父亲在“文革”中的惨死,讲她后来在建设兵团被诬陷,后来杳无音讯; 九十年代初才又回到了这座城市,在父亲曾工作过的大学中讲授天体物理学直到退休。
-English: He listened as Sha told of how she witnessed the death of her father during the Cultural Revolution, how she was falsely accused at the Production and Construction Corps, how she then seemed to disappear until her return to Beijing at the beginning of the nineties, when she began teaching astrophysics at Tsinghua, where her father had also taught, until her retirement.
-Chinese: 事情一时上有些弄反了,去片厂倒是为了照顾吴佩珍似的。
-English: Before long, it was more like Wang Qiyao was doing her a favor by going with her.
-Chinese: “这等于说正确的哲学是从天上掉下来的。
-English: 'Then that's equivalent to saying that the correct philosophy falls out of the sky.
-
-Chinese: 老耿端起枪,眯缝起一只三角眼,一搂扳机响了枪,冰雹般的金麻雀劈哩啪啦往下落,铁砂子在柳枝间飞迸着,嚓嚓有声。
-English:<|im_end|>
-<|im_start|>assistant
-
-
0%| | 0/567 [00:00, ?it/s]
0%| | 1/567 [00:15<2:27:07, 15.60s/it]
0%| | 2/567 [00:39<3:10:45, 20.26s/it]
1%| | 3/567 [00:53<2:47:08, 17.78s/it]
1%| | 4/567 [01:23<3:29:25, 22.32s/it]
1%| | 5/567 [01:28<2:32:08, 16.24s/it]
1%| | 6/567 [01:38<2:10:12, 13.93s/it]
1%| | 7/567 [01:42<1:40:47, 10.80s/it]
1%|▏ | 8/567 [01:57<1:52:28, 12.07s/it]
2%|▏ | 9/567 [02:12<2:00:30, 12.96s/it]
2%|▏ | 10/567 [02:23<1:54:10, 12.30s/it]
2%|▏ | 11/567 [02:38<2:03:32, 13.33s/it]
2%|▏ | 12/567 [02:43<1:40:29, 10.86s/it]
2%|▏ | 13/567 [02:55<1:41:19, 10.97s/it]
2%|▏ | 14/567 [03:02<1:31:24, 9.92s/it]
3%|▎ | 15/567 [03:07<1:17:19, 8.41s/it]
3%|▎ | 16/567 [03:16<1:20:08, 8.73s/it]
3%|▎ | 17/567 [03:38<1:53:57, 12.43s/it]
3%|▎ | 18/567 [03:45<1:40:04, 10.94s/it]
3%|▎ | 19/567 [03:50<1:24:56, 9.30s/it]
4%|▎ | 20/567 [03:58<1:21:14, 8.91s/it]
4%|▎ | 21/567 [04:12<1:33:06, 10.23s/it]
4%|▍ | 22/567 [04:19<1:23:51, 9.23s/it]
4%|▍ | 23/567 [04:37<1:48:42, 11.99s/it]
4%|▍ | 24/567 [04:45<1:36:11, 10.63s/it]
4%|▍ | 25/567 [04:49<1:20:30, 8.91s/it]
5%|▍ | 26/567 [05:06<1:41:41, 11.28s/it]
5%|▍ | 27/567 [05:12<1:27:24, 9.71s/it]
5%|▍ | 28/567 [05:35<2:02:26, 13.63s/it]
5%|▌ | 29/567 [05:47<1:57:59, 13.16s/it]
5%|▌ | 30/567 [06:00<1:55:37, 12.92s/it]
5%|▌ | 31/567 [06:04<1:31:45, 10.27s/it]
6%|▌ | 32/567 [06:14<1:31:39, 10.28s/it]
6%|▌ | 33/567 [06:22<1:24:41, 9.52s/it]
6%|▌ | 34/567 [06:38<1:41:57, 11.48s/it]
6%|▌ | 35/567 [06:48<1:39:37, 11.24s/it]
6%|▋ | 36/567 [06:56<1:30:38, 10.24s/it]
7%|▋ | 37/567 [07:01<1:14:52, 8.48s/it]
7%|▋ | 38/567 [07:07<1:09:00, 7.83s/it]
7%|▋ | 39/567 [07:16<1:13:03, 8.30s/it]
7%|▋ | 40/567 [07:27<1:18:10, 8.90s/it]
7%|▋ | 41/567 [07:29<1:01:46, 7.05s/it]
7%|▋ | 42/567 [07:44<1:21:28, 9.31s/it]
8%|▊ | 43/567 [07:49<1:10:32, 8.08s/it]
8%|▊ | 44/567 [07:59<1:14:36, 8.56s/it]
8%|▊ | 45/567 [08:10<1:21:27, 9.36s/it]
8%|▊ | 46/567 [08:16<1:12:37, 8.36s/it]
8%|▊ | 47/567 [08:26<1:15:20, 8.69s/it]
8%|▊ | 48/567 [08:33<1:12:58, 8.44s/it]
9%|▊ | 49/567 [08:38<1:02:17, 7.22s/it]
9%|▉ | 50/567 [08:50<1:14:56, 8.70s/it]
9%|▉ | 51/567 [09:06<1:33:53, 10.92s/it]
9%|▉ | 52/567 [09:10<1:16:09, 8.87s/it]
9%|▉ | 53/567 [09:48<2:31:41, 17.71s/it]
10%|▉ | 54/567 [10:04<2:24:49, 16.94s/it]
10%|▉ | 55/567 [10:22<2:27:00, 17.23s/it]
10%|▉ | 56/567 [10:41<2:33:28, 18.02s/it]
10%|█ | 57/567 [11:02<2:39:50, 18.80s/it]
10%|█ | 58/567 [11:07<2:04:09, 14.64s/it]
10%|█ | 59/567 [11:19<1:57:09, 13.84s/it]
11%|█ | 60/567 [11:28<1:45:45, 12.52s/it]
11%|█ | 61/567 [11:35<1:31:15, 10.82s/it]
11%|█ | 62/567 [11:43<1:23:56, 9.97s/it]
11%|█ | 63/567 [11:57<1:33:36, 11.14s/it]
11%|█▏ | 64/567 [12:16<1:53:59, 13.60s/it]
11%|█▏ | 65/567 [12:22<1:34:05, 11.25s/it]
12%|█▏ | 66/567 [12:36<1:39:48, 11.95s/it]
12%|█▏ | 67/567 [12:41<1:21:59, 9.84s/it]
12%|█▏ | 68/567 [13:01<1:47:23, 12.91s/it]
12%|█▏ | 69/567 [13:10<1:38:30, 11.87s/it]
12%|█▏ | 70/567 [13:20<1:33:33, 11.30s/it]
13%|█▎ | 71/567 [13:26<1:18:55, 9.55s/it]
13%|█▎ | 72/567 [13:37<1:24:08, 10.20s/it]
13%|█▎ | 73/567 [13:42<1:10:13, 8.53s/it]
13%|█▎ | 74/567 [13:47<1:02:34, 7.62s/it]
13%|█▎ | 75/567 [13:53<57:52, 7.06s/it]
13%|█▎ | 76/567 [14:02<1:00:52, 7.44s/it]
14%|█▎ | 77/567 [14:13<1:11:43, 8.78s/it]
14%|█▍ | 78/567 [14:21<1:08:28, 8.40s/it]
14%|█▍ | 79/567 [14:33<1:16:29, 9.41s/it]
14%|█▍ | 80/567 [14:38<1:06:04, 8.14s/it]
14%|█▍ | 81/567 [14:44<1:00:07, 7.42s/it]
14%|█▍ | 82/567 [14:51<1:00:05, 7.43s/it]
15%|█▍ | 83/567 [15:00<1:03:26, 7.87s/it]
15%|█▍ | 84/567 [15:07<1:00:54, 7.57s/it]
15%|█▍ | 85/567 [15:13<57:04, 7.11s/it]
15%|█▌ | 86/567 [15:17<49:02, 6.12s/it]
15%|█▌ | 87/567 [15:22<46:40, 5.83s/it]
16%|█▌ | 88/567 [15:35<1:04:33, 8.09s/it]
16%|█▌ | 89/567 [15:56<1:35:04, 11.93s/it]
16%|█▌ | 90/567 [16:07<1:32:56, 11.69s/it]
16%|█▌ | 91/567 [16:22<1:40:33, 12.67s/it]
16%|█▌ | 92/567 [16:30<1:28:32, 11.18s/it]
16%|█▋ | 93/567 [16:35<1:13:30, 9.30s/it]
17%|█▋ | 94/567 [16:51<1:29:49, 11.40s/it]
17%|█▋ | 95/567 [16:58<1:18:56, 10.04s/it]
17%|█▋ | 96/567 [17:08<1:19:16, 10.10s/it]
17%|█▋ | 97/567 [17:19<1:20:58, 10.34s/it]
17%|█▋ | 98/567 [17:28<1:17:06, 9.86s/it]
17%|█▋ | 99/567 [17:36<1:13:56, 9.48s/it]
18%|█▊ | 100/567 [17:52<1:27:32, 11.25s/it]
18%|█▊ | 101/567 [17:59<1:17:13, 9.94s/it]
18%|█▊ | 102/567 [18:14<1:30:25, 11.67s/it]
18%|█▊ | 103/567 [18:19<1:14:33, 9.64s/it]
18%|█▊ | 104/567 [18:33<1:22:59, 10.75s/it]
19%|█▊ | 105/567 [19:02<2:05:56, 16.36s/it]
19%|█▊ | 106/567 [19:14<1:55:51, 15.08s/it]
19%|█▉ | 107/567 [19:19<1:31:37, 11.95s/it]
19%|█▉ | 108/567 [19:49<2:13:49, 17.49s/it]
19%|█▉ | 109/567 [19:53<1:42:11, 13.39s/it]
19%|█▉ | 110/567 [20:01<1:28:24, 11.61s/it]
20%|█▉ | 111/567 [20:23<1:52:27, 14.80s/it]
20%|█▉ | 112/567 [20:37<1:50:02, 14.51s/it]
20%|█▉ | 113/567 [20:57<2:03:35, 16.33s/it]
20%|██ | 114/567 [21:04<1:41:16, 13.41s/it]
20%|██ | 115/567 [21:15<1:36:56, 12.87s/it]
20%|██ | 116/567 [21:23<1:25:09, 11.33s/it]
21%|██ | 117/567 [21:30<1:15:03, 10.01s/it]
21%|██ | 118/567 [21:44<1:23:56, 11.22s/it]
21%|██ | 119/567 [22:06<1:47:11, 14.36s/it]
21%|██ | 120/567 [22:15<1:35:17, 12.79s/it]
21%|██▏ | 121/567 [22:19<1:15:40, 10.18s/it]
22%|██▏ | 122/567 [22:26<1:07:36, 9.12s/it]
22%|██▏ | 123/567 [22:34<1:05:08, 8.80s/it]
22%|██▏ | 124/567 [22:52<1:25:49, 11.62s/it]
22%|██▏ | 125/567 [22:59<1:15:45, 10.28s/it]
22%|██▏ | 126/567 [23:07<1:10:41, 9.62s/it]
22%|██▏ | 127/567 [23:25<1:27:37, 11.95s/it]
23%|██▎ | 128/567 [23:39<1:33:06, 12.72s/it]
23%|██▎ | 129/567 [23:55<1:40:36, 13.78s/it]
23%|██▎ | 130/567 [24:23<2:11:00, 17.99s/it]
23%|██▎ | 131/567 [24:43<2:15:31, 18.65s/it]
23%|██▎ | 132/567 [25:11<2:34:55, 21.37s/it]
23%|██▎ | 133/567 [25:37<2:44:40, 22.77s/it]
24%|██▎ | 134/567 [26:09<3:04:25, 25.56s/it]
24%|██▍ | 135/567 [26:19<2:30:23, 20.89s/it]
24%|██▍ | 136/567 [26:27<2:02:22, 17.04s/it]
24%|██▍ | 137/567 [26:36<1:44:30, 14.58s/it]
24%|██▍ | 138/567 [26:41<1:22:58, 11.60s/it]
25%|██▍ | 139/567 [26:50<1:17:02, 10.80s/it]
25%|██▍ | 140/567 [26:58<1:11:36, 10.06s/it]
25%|██▍ | 141/567 [27:08<1:10:47, 9.97s/it]
25%|██▌ | 142/567 [27:15<1:05:15, 9.21s/it]
25%|██▌ | 143/567 [27:21<58:26, 8.27s/it]
25%|██▌ | 144/567 [27:30<1:00:12, 8.54s/it]
26%|██▌ | 145/567 [27:40<1:01:24, 8.73s/it]
26%|██▌ | 146/567 [27:52<1:08:01, 9.70s/it]
26%|██▌ | 147/567 [28:12<1:29:51, 12.84s/it]
26%|██▌ | 148/567 [28:24<1:27:29, 12.53s/it]
26%|██▋ | 149/567 [28:28<1:10:48, 10.16s/it]
26%|██▋ | 150/567 [28:32<56:49, 8.18s/it]
27%|██▋ | 151/567 [28:36<47:36, 6.87s/it]
27%|██▋ | 152/567 [28:46<54:00, 7.81s/it]
27%|██▋ | 153/567 [28:56<1:00:12, 8.73s/it]
27%|██▋ | 154/567 [29:02<53:54, 7.83s/it]
27%|██▋ | 155/567 [29:10<54:09, 7.89s/it]
28%|██▊ | 156/567 [29:20<58:25, 8.53s/it]
28%|██▊ | 157/567 [29:27<55:02, 8.06s/it]
28%|██▊ | 158/567 [29:49<1:23:07, 12.19s/it]
28%|██▊ | 159/567 [29:58<1:16:06, 11.19s/it]
28%|██▊ | 160/567 [30:15<1:28:22, 13.03s/it]
28%|██▊ | 161/567 [30:19<1:10:02, 10.35s/it]
29%|██▊ | 162/567 [30:29<1:08:01, 10.08s/it]
29%|██▊ | 163/567 [30:37<1:04:12, 9.53s/it]
29%|██▉ | 164/567 [30:54<1:19:41, 11.87s/it]
29%|██▉ | 165/567 [31:06<1:19:13, 11.83s/it]
29%|██▉ | 166/567 [31:12<1:07:30, 10.10s/it]
29%|██▉ | 167/567 [31:32<1:26:18, 12.95s/it]
30%|██▉ | 168/567 [31:38<1:13:29, 11.05s/it]
30%|██▉ | 169/567 [31:49<1:12:56, 11.00s/it]
30%|██▉ | 170/567 [32:02<1:16:01, 11.49s/it]
30%|███ | 171/567 [32:13<1:15:51, 11.49s/it]
30%|███ | 172/567 [32:24<1:13:24, 11.15s/it]
31%|███ | 173/567 [32:32<1:07:41, 10.31s/it]
31%|███ | 174/567 [32:40<1:03:03, 9.63s/it]
31%|███ | 175/567 [32:50<1:04:20, 9.85s/it]
31%|███ | 176/567 [32:58<1:00:02, 9.21s/it]
31%|███ | 177/567 [33:13<1:10:10, 10.80s/it]
31%|███▏ | 178/567 [33:18<58:35, 9.04s/it]
32%|███▏ | 179/567 [33:28<1:02:07, 9.61s/it]
32%|███▏ | 180/567 [33:39<1:02:47, 9.74s/it]
32%|███▏ | 181/567 [33:48<1:01:32, 9.57s/it]
32%|███▏ | 182/567 [33:51<49:45, 7.76s/it]
32%|███▏ | 183/567 [33:55<42:36, 6.66s/it]
32%|███▏ | 184/567 [34:06<49:32, 7.76s/it]
33%|███▎ | 185/567 [34:11<44:31, 6.99s/it]
33%|███▎ | 186/567 [34:42<1:30:32, 14.26s/it]
33%|███▎ | 187/567 [34:50<1:17:25, 12.22s/it]
33%|███▎ | 188/567 [35:02<1:17:08, 12.21s/it]
33%|███▎ | 189/567 [35:11<1:11:41, 11.38s/it]
34%|███▎ | 190/567 [35:16<58:17, 9.28s/it]
34%|███▎ | 191/567 [35:34<1:16:13, 12.16s/it]
34%|███▍ | 192/567 [35:46<1:14:28, 11.92s/it]
34%|███▍ | 193/567 [36:20<1:56:17, 18.66s/it]
34%|███▍ | 194/567 [36:25<1:30:23, 14.54s/it]
34%|███▍ | 195/567 [36:35<1:20:38, 13.01s/it]
35%|███▍ | 196/567 [36:45<1:15:27, 12.20s/it]
35%|███▍ | 197/567 [37:02<1:23:39, 13.57s/it]
35%|███▍ | 198/567 [37:18<1:27:57, 14.30s/it]
35%|███▌ | 199/567 [37:29<1:21:36, 13.31s/it]
35%|███▌ | 200/567 [37:37<1:11:40, 11.72s/it]
35%|███▌ | 201/567 [37:42<1:00:32, 9.93s/it]
36%|███▌ | 202/567 [37:49<54:19, 8.93s/it]
36%|███▌ | 203/567 [37:55<48:55, 8.06s/it]
36%|███▌ | 204/567 [38:02<46:35, 7.70s/it]
36%|███▌ | 205/567 [38:11<49:09, 8.15s/it]
36%|███▋ | 206/567 [38:28<1:05:49, 10.94s/it]
37%|███▋ | 207/567 [38:37<1:00:52, 10.14s/it]
37%|███▋ | 208/567 [38:53<1:11:36, 11.97s/it]
37%|███▋ | 209/567 [38:58<59:16, 9.93s/it]
37%|███▋ | 210/567 [39:10<1:01:50, 10.39s/it]
37%|███▋ | 211/567 [39:19<59:02, 9.95s/it]
37%|███▋ | 212/567 [39:28<57:29, 9.72s/it]
38%|███▊ | 213/567 [39:39<1:00:03, 10.18s/it]
38%|███▊ | 214/567 [39:48<58:05, 9.87s/it]
38%|███▊ | 215/567 [39:59<1:00:19, 10.28s/it]
38%|███▊ | 216/567 [40:10<1:00:15, 10.30s/it]
38%|███▊ | 217/567 [40:25<1:09:36, 11.93s/it]
38%|███▊ | 218/567 [40:42<1:17:09, 13.26s/it]
39%|███▊ | 219/567 [40:52<1:11:23, 12.31s/it]
39%|███▉ | 220/567 [41:00<1:03:42, 11.02s/it]
39%|███▉ | 221/567 [41:05<52:59, 9.19s/it]
39%|███▉ | 222/567 [41:14<52:46, 9.18s/it]
39%|███▉ | 223/567 [41:19<45:19, 7.90s/it]
40%|███▉ | 224/567 [41:27<45:54, 8.03s/it]
40%|███▉ | 225/567 [41:40<54:14, 9.52s/it]
40%|███▉ | 226/567 [41:53<1:00:08, 10.58s/it]
40%|████ | 227/567 [41:59<51:17, 9.05s/it]
40%|████ | 228/567 [42:09<52:49, 9.35s/it]
40%|████ | 229/567 [42:25<1:03:28, 11.27s/it]
41%|████ | 230/567 [42:31<54:59, 9.79s/it]
41%|████ | 231/567 [42:47<1:05:10, 11.64s/it]
41%|████ | 232/567 [42:55<58:33, 10.49s/it]
41%|████ | 233/567 [43:08<1:03:47, 11.46s/it]
41%|████▏ | 234/567 [43:12<50:53, 9.17s/it]
41%|████▏ | 235/567 [43:25<56:05, 10.14s/it]
42%|████▏ | 236/567 [43:37<59:46, 10.83s/it]
42%|████▏ | 237/567 [43:42<50:17, 9.14s/it]
42%|████▏ | 238/567 [43:52<51:36, 9.41s/it]
42%|████▏ | 239/567 [44:03<52:53, 9.68s/it]
42%|████▏ | 240/567 [44:31<1:22:31, 15.14s/it]
43%|████▎ | 241/567 [44:39<1:11:14, 13.11s/it]
43%|████▎ | 242/567 [44:46<1:01:53, 11.43s/it]
43%|████▎ | 243/567 [45:01<1:07:36, 12.52s/it]
43%|████▎ | 244/567 [45:17<1:12:24, 13.45s/it]
43%|████▎ | 245/567 [45:21<57:07, 10.64s/it]
43%|████▎ | 246/567 [45:31<55:07, 10.30s/it]
44%|████▎ | 247/567 [45:35<44:34, 8.36s/it]
44%|████▎ | 248/567 [45:44<46:16, 8.70s/it]
44%|████▍ | 249/567 [45:52<45:29, 8.58s/it]
44%|████▍ | 250/567 [46:09<58:14, 11.02s/it]
44%|████▍ | 251/567 [46:29<1:12:55, 13.85s/it]
44%|████▍ | 252/567 [46:42<1:09:56, 13.32s/it]
45%|████▍ | 253/567 [46:45<54:48, 10.47s/it]
45%|████▍ | 254/567 [47:18<1:29:11, 17.10s/it]
45%|████▍ | 255/567 [47:29<1:19:41, 15.33s/it]
45%|████▌ | 256/567 [47:33<1:01:33, 11.88s/it]
45%|████▌ | 257/567 [47:53<1:14:24, 14.40s/it]
46%|████▌ | 258/567 [48:06<1:11:29, 13.88s/it]
46%|████▌ | 259/567 [48:11<57:29, 11.20s/it]
46%|████▌ | 260/567 [48:35<1:17:47, 15.20s/it]
46%|████▌ | 261/567 [48:47<1:12:13, 14.16s/it]
46%|████▌ | 262/567 [49:04<1:16:13, 15.00s/it]
46%|████▋ | 263/567 [49:10<1:02:45, 12.39s/it]
47%|████▋ | 264/567 [49:13<48:19, 9.57s/it]
47%|████▋ | 265/567 [49:35<1:06:31, 13.22s/it]
47%|████▋ | 266/567 [49:42<56:22, 11.24s/it]
47%|████▋ | 267/567 [49:49<50:29, 10.10s/it]
47%|████▋ | 268/567 [50:07<1:01:14, 12.29s/it]
47%|████▋ | 269/567 [50:22<1:06:08, 13.32s/it]
48%|████▊ | 270/567 [50:30<58:03, 11.73s/it]
48%|████▊ | 271/567 [50:48<1:06:53, 13.56s/it]
48%|████▊ | 272/567 [50:56<57:42, 11.74s/it]
48%|████▊ | 273/567 [51:05<54:08, 11.05s/it]
48%|████▊ | 274/567 [51:12<47:26, 9.72s/it]
49%|████▊ | 275/567 [51:18<41:57, 8.62s/it]
49%|████▊ | 276/567 [51:29<45:10, 9.31s/it]
49%|████▉ | 277/567 [51:41<48:59, 10.14s/it]
49%|████▉ | 278/567 [51:45<40:28, 8.40s/it]
49%|████▉ | 279/567 [52:05<56:11, 11.71s/it]
49%|████▉ | 280/567 [52:16<56:10, 11.74s/it]
50%|████▉ | 281/567 [52:22<46:37, 9.78s/it]
50%|████▉ | 282/567 [52:28<42:21, 8.92s/it]
50%|████▉ | 283/567 [52:47<55:24, 11.71s/it]
50%|█████ | 284/567 [52:53<47:11, 10.01s/it]
50%|█████ | 285/567 [53:00<43:01, 9.15s/it]
50%|█████ | 286/567 [53:04<36:31, 7.80s/it]
51%|█████ | 287/567 [53:19<45:46, 9.81s/it]
51%|█████ | 288/567 [53:28<44:22, 9.54s/it]
51%|█████ | 289/567 [53:40<47:50, 10.33s/it]
51%|█████ | 290/567 [53:52<50:04, 10.85s/it]
51%|█████▏ | 291/567 [54:01<47:36, 10.35s/it]
51%|█████▏ | 292/567 [54:14<51:11, 11.17s/it]
52%|█████▏ | 293/567 [54:24<48:15, 10.57s/it]
52%|█████▏ | 294/567 [54:31<43:29, 9.56s/it]
52%|█████▏ | 295/567 [54:39<40:50, 9.01s/it]
52%|█████▏ | 296/567 [54:51<45:28, 10.07s/it]
52%|█████▏ | 297/567 [54:58<41:23, 9.20s/it]
53%|█████▎ | 298/567 [55:29<1:10:11, 15.66s/it]
53%|█████▎ | 299/567 [55:36<58:56, 13.20s/it]
53%|█████▎ | 300/567 [55:47<55:44, 12.53s/it]
53%|█████▎ | 301/567 [56:00<55:21, 12.49s/it]
53%|█████▎ | 302/567 [56:08<48:52, 11.07s/it]
53%|█████▎ | 303/567 [56:14<43:11, 9.82s/it]
54%|█████▎ | 304/567 [56:22<40:39, 9.28s/it]
54%|█████▍ | 305/567 [56:30<38:30, 8.82s/it]
54%|█████▍ | 306/567 [56:41<40:55, 9.41s/it]
54%|█████▍ | 307/567 [57:04<58:06, 13.41s/it]
54%|█████▍ | 308/567 [57:11<50:13, 11.63s/it]
54%|█████▍ | 309/567 [57:15<39:34, 9.20s/it]
55%|█████▍ | 310/567 [57:55<1:18:49, 18.40s/it]
55%|█████▍ | 311/567 [58:09<1:13:34, 17.24s/it]
55%|█████▌ | 312/567 [58:16<1:00:06, 14.14s/it]
55%|█████▌ | 313/567 [58:23<50:17, 11.88s/it]
55%|█████▌ | 314/567 [58:36<51:35, 12.24s/it]
56%|█████▌ | 315/567 [59:03<1:10:13, 16.72s/it]
56%|█████▌ | 316/567 [59:08<55:08, 13.18s/it]
56%|█████▌ | 317/567 [59:18<51:22, 12.33s/it]
56%|█████▌ | 318/567 [59:23<41:57, 10.11s/it]
56%|█████▋ | 319/567 [59:39<49:29, 11.97s/it]
56%|█████▋ | 320/567 [59:42<37:52, 9.20s/it]
57%|█████▋ | 321/567 [1:00:06<55:58, 13.65s/it]
57%|█████▋ | 322/567 [1:00:16<51:20, 12.57s/it]
57%|█████▋ | 323/567 [1:00:25<46:18, 11.39s/it]
57%|█████▋ | 324/567 [1:00:35<45:06, 11.14s/it]
57%|█████▋ | 325/567 [1:01:04<1:06:03, 16.38s/it]
57%|█████▋ | 326/567 [1:01:08<50:59, 12.69s/it]
58%|█████▊ | 327/567 [1:01:15<43:48, 10.95s/it]
58%|█████▊ | 328/567 [1:01:25<42:52, 10.76s/it]
58%|█████▊ | 329/567 [1:01:43<50:45, 12.80s/it]
58%|█████▊ | 330/567 [1:01:45<38:16, 9.69s/it]
58%|█████▊ | 331/567 [1:01:52<35:10, 8.94s/it]
59%|█████▊ | 332/567 [1:02:00<32:57, 8.42s/it]
59%|█████▊ | 333/567 [1:02:10<35:00, 8.98s/it]
59%|█████▉ | 334/567 [1:02:17<32:27, 8.36s/it]
59%|█████▉ | 335/567 [1:02:27<34:54, 9.03s/it]
59%|█████▉ | 336/567 [1:02:31<28:43, 7.46s/it]
59%|█████▉ | 337/567 [1:02:47<38:28, 10.04s/it]
60%|█████▉ | 338/567 [1:02:57<37:53, 9.93s/it]
60%|█████▉ | 339/567 [1:03:04<33:54, 8.92s/it]
60%|█████▉ | 340/567 [1:03:09<29:51, 7.89s/it]
60%|██████ | 341/567 [1:03:15<27:19, 7.25s/it]
60%|██████ | 342/567 [1:03:26<31:23, 8.37s/it]
60%|██████ | 343/567 [1:03:32<28:57, 7.76s/it]
61%|██████ | 344/567 [1:03:41<30:24, 8.18s/it]
61%|██████ | 345/567 [1:03:50<30:42, 8.30s/it]
61%|██████ | 346/567 [1:03:57<28:43, 7.80s/it]
61%|██████ | 347/567 [1:04:09<33:18, 9.08s/it]
61%|██████▏ | 348/567 [1:04:25<40:45, 11.17s/it]
62%|██████▏ | 349/567 [1:04:43<48:55, 13.46s/it]
62%|██████▏ | 350/567 [1:04:54<45:16, 12.52s/it]
62%|██████▏ | 351/567 [1:05:28<1:08:19, 18.98s/it]
62%|██████▏ | 352/567 [1:05:35<55:37, 15.52s/it]
62%|██████▏ | 353/567 [1:05:53<57:57, 16.25s/it]
62%|██████▏ | 354/567 [1:06:07<55:07, 15.53s/it]
63%|██████▎ | 355/567 [1:06:15<47:11, 13.36s/it]
63%|██████▎ | 356/567 [1:07:24<1:44:52, 29.82s/it]
63%|██████▎ | 357/567 [1:07:30<1:19:24, 22.69s/it]
63%|██████▎ | 358/567 [1:07:38<1:04:33, 18.53s/it]
63%|██████▎ | 359/567 [1:07:44<50:41, 14.62s/it]
63%|██████▎ | 360/567 [1:07:51<42:59, 12.46s/it]
64%|██████▎ | 361/567 [1:08:01<39:57, 11.64s/it]
64%|██████▍ | 362/567 [1:08:16<42:58, 12.58s/it]
64%|██████▍ | 363/567 [1:08:35<49:31, 14.57s/it]
64%|██████▍ | 364/567 [1:08:51<50:11, 14.83s/it]
64%|██████▍ | 365/567 [1:08:59<44:00, 13.07s/it]
65%|██████▍ | 366/567 [1:09:07<38:27, 11.48s/it]
65%|██████▍ | 367/567 [1:09:18<37:47, 11.34s/it]
65%|██████▍ | 368/567 [1:09:36<44:03, 13.29s/it]
65%|██████▌ | 369/567 [1:09:49<43:38, 13.22s/it]
65%|██████▌ | 370/567 [1:09:59<39:57, 12.17s/it]
65%|██████▌ | 371/567 [1:10:05<33:46, 10.34s/it]
66%|██████▌ | 372/567 [1:10:12<29:57, 9.22s/it]
66%|██████▌ | 373/567 [1:10:29<37:18, 11.54s/it]
66%|██████▌ | 374/567 [1:10:44<40:38, 12.63s/it]
66%|██████▌ | 375/567 [1:10:57<41:00, 12.81s/it]
66%|██████▋ | 376/567 [1:11:03<34:35, 10.87s/it]
66%|██████▋ | 377/567 [1:11:25<44:57, 14.20s/it]
67%|██████▋ | 378/567 [1:11:36<41:55, 13.31s/it]
67%|██████▋ | 379/567 [1:11:53<44:35, 14.23s/it]
67%|██████▋ | 380/567 [1:12:00<38:04, 12.21s/it]
67%|██████▋ | 381/567 [1:12:09<34:48, 11.23s/it]
67%|██████▋ | 382/567 [1:12:16<30:52, 10.01s/it]
68%|██████▊ | 383/567 [1:12:30<33:59, 11.08s/it]
68%|██████▊ | 384/567 [1:12:47<39:14, 12.86s/it]
68%|██████▊ | 385/567 [1:13:03<41:39, 13.74s/it]
68%|██████▊ | 386/567 [1:13:14<38:41, 12.83s/it]
68%|██████▊ | 387/567 [1:13:20<32:54, 10.97s/it]
68%|██████▊ | 388/567 [1:13:53<52:32, 17.61s/it]
69%|██████▊ | 389/567 [1:14:03<45:29, 15.33s/it]
69%|██████▉ | 390/567 [1:14:08<36:01, 12.21s/it]
69%|██████▉ | 391/567 [1:14:21<36:06, 12.31s/it]
69%|██████▉ | 392/567 [1:14:38<40:12, 13.78s/it]
69%|██████▉ | 393/567 [1:14:45<34:27, 11.88s/it]
69%|██████▉ | 394/567 [1:15:00<36:30, 12.66s/it]
70%|██████▉ | 395/567 [1:15:17<40:01, 13.96s/it]
70%|██████▉ | 396/567 [1:15:27<36:27, 12.79s/it]
70%|███████ | 397/567 [1:15:47<42:31, 15.01s/it]
70%|███████ | 398/567 [1:15:52<33:31, 11.90s/it]
70%|███████ | 399/567 [1:15:57<27:27, 9.81s/it]
71%|███████ | 400/567 [1:16:03<24:37, 8.85s/it]
71%|███████ | 401/567 [1:16:13<25:11, 9.10s/it]
71%|███████ | 402/567 [1:16:29<30:33, 11.11s/it]
71%|███████ | 403/567 [1:16:39<29:31, 10.80s/it]
71%|███████▏ | 404/567 [1:16:45<25:28, 9.38s/it]
71%|███████▏ | 405/567 [1:16:50<22:10, 8.22s/it]
72%|███████▏ | 406/567 [1:17:01<23:46, 8.86s/it]
72%|███████▏ | 407/567 [1:17:07<21:34, 8.09s/it]
72%|███████▏ | 408/567 [1:17:23<27:28, 10.37s/it]
72%|███████▏ | 409/567 [1:17:29<23:53, 9.07s/it]
72%|███████▏ | 410/567 [1:17:37<23:07, 8.84s/it]
72%|███████▏ | 411/567 [1:17:42<19:29, 7.50s/it]
73%|███████▎ | 412/567 [1:17:53<22:14, 8.61s/it]
73%|███████▎ | 413/567 [1:18:05<25:15, 9.84s/it]
73%|███████▎ | 414/567 [1:18:09<20:03, 7.87s/it]
73%|███████▎ | 415/567 [1:18:29<29:26, 11.62s/it]
73%|███████▎ | 416/567 [1:18:40<28:56, 11.50s/it]
74%|███████▎ | 417/567 [1:19:03<37:07, 14.85s/it]
74%|███████▎ | 418/567 [1:19:13<33:18, 13.41s/it]
74%|███████▍ | 419/567 [1:19:42<44:48, 18.17s/it]
74%|███████▍ | 420/567 [1:19:55<40:30, 16.54s/it]
74%|███████▍ | 421/567 [1:20:08<37:32, 15.43s/it]
74%|███████▍ | 422/567 [1:20:18<33:49, 13.99s/it]
75%|███████▍ | 423/567 [1:20:29<31:07, 12.97s/it]
75%|███████▍ | 424/567 [1:20:40<29:25, 12.35s/it]
75%|███████▍ | 425/567 [1:20:51<28:36, 12.08s/it]
75%|███████▌ | 426/567 [1:20:56<22:45, 9.69s/it]
75%|███████▌ | 427/567 [1:21:05<22:14, 9.53s/it]
75%|███████▌ | 428/567 [1:21:22<27:13, 11.75s/it]
76%|███████▌ | 429/567 [1:21:41<32:34, 14.16s/it]
76%|███████▌ | 430/567 [1:22:00<35:01, 15.34s/it]
76%|███████▌ | 431/567 [1:22:21<39:05, 17.25s/it]
76%|███████▌ | 432/567 [1:22:39<39:17, 17.46s/it]
76%|███████▋ | 433/567 [1:22:54<37:31, 16.80s/it]
77%|███████▋ | 434/567 [1:23:07<34:34, 15.59s/it]
77%|███████▋ | 435/567 [1:23:12<27:27, 12.48s/it]
77%|███████▋ | 436/567 [1:23:23<26:01, 11.92s/it]
77%|███████▋ | 437/567 [1:23:29<21:39, 9.99s/it]
77%|███████▋ | 438/567 [1:23:41<23:06, 10.75s/it]
77%|███████▋ | 439/567 [1:23:51<22:16, 10.44s/it]
78%|███████▊ | 440/567 [1:23:57<19:18, 9.12s/it]
78%|███████▊ | 441/567 [1:24:09<20:50, 9.93s/it]
78%|███████▊ | 442/567 [1:24:17<19:30, 9.36s/it]
78%|███████▊ | 443/567 [1:24:24<18:10, 8.79s/it]
78%|███████▊ | 444/567 [1:24:44<24:46, 12.09s/it]
78%|███████▊ | 445/567 [1:24:53<22:58, 11.30s/it]
79%|███████▊ | 446/567 [1:25:11<26:38, 13.21s/it]
79%|███████▉ | 447/567 [1:25:25<27:03, 13.53s/it]
79%|███████▉ | 448/567 [1:25:37<25:46, 13.00s/it]
79%|███████▉ | 449/567 [1:25:45<22:18, 11.34s/it]
79%|███████▉ | 450/567 [1:25:54<20:59, 10.77s/it]
80%|███████▉ | 451/567 [1:26:04<20:11, 10.45s/it]
80%|███████▉ | 452/567 [1:26:12<18:57, 9.89s/it]
80%|███████▉ | 453/567 [1:26:26<21:09, 11.14s/it]
80%|████████ | 454/567 [1:26:35<19:51, 10.54s/it]
80%|████████ | 455/567 [1:26:43<17:46, 9.52s/it]
80%|████████ | 456/567 [1:26:48<15:22, 8.31s/it]
81%|████████ | 457/567 [1:26:55<14:18, 7.80s/it]
81%|████████ | 458/567 [1:27:07<16:30, 9.09s/it]
81%|████████ | 459/567 [1:27:20<18:28, 10.26s/it]
81%|████████ | 460/567 [1:27:23<14:33, 8.16s/it]
81%|████████▏ | 461/567 [1:27:30<13:45, 7.78s/it]
81%|████████▏ | 462/567 [1:27:35<12:07, 6.93s/it]
82%|████████▏ | 463/567 [1:27:43<12:52, 7.43s/it]
82%|████████▏ | 464/567 [1:27:50<12:11, 7.10s/it]
82%|████████▏ | 465/567 [1:28:00<13:51, 8.15s/it]
82%|████████▏ | 466/567 [1:28:09<13:48, 8.20s/it]
82%|████████▏ | 467/567 [1:28:14<12:01, 7.22s/it]
83%|████████▎ | 468/567 [1:28:25<14:01, 8.50s/it]
83%|████████▎ | 469/567 [1:28:32<13:13, 8.10s/it]
83%|████████▎ | 470/567 [1:28:43<14:18, 8.85s/it]
83%|████████▎ | 471/567 [1:28:57<16:35, 10.37s/it]
83%|████████▎ | 472/567 [1:29:20<22:24, 14.15s/it]
83%|████████▎ | 473/567 [1:29:33<21:36, 13.80s/it]
84%|████████▎ | 474/567 [1:29:50<22:45, 14.68s/it]
84%|████████▍ | 475/567 [1:29:54<18:01, 11.75s/it]
84%|████████▍ | 476/567 [1:30:03<16:23, 10.81s/it]
84%|████████▍ | 477/567 [1:30:07<12:56, 8.63s/it]
84%|████████▍ | 478/567 [1:30:14<12:09, 8.19s/it]
84%|████████▍ | 479/567 [1:30:20<10:57, 7.47s/it]
85%|████████▍ | 480/567 [1:30:28<11:04, 7.63s/it]
85%|████████▍ | 481/567 [1:30:47<16:00, 11.17s/it]
85%|████████▌ | 482/567 [1:30:55<14:29, 10.23s/it]
85%|████████▌ | 483/567 [1:31:02<12:54, 9.22s/it]
85%|████████▌ | 484/567 [1:31:20<16:27, 11.90s/it]
86%|████████▌ | 485/567 [1:31:26<13:51, 10.14s/it]
86%|████████▌ | 486/567 [1:31:36<13:32, 10.04s/it]
86%|████████▌ | 487/567 [1:31:59<18:47, 14.10s/it]
86%|████████▌ | 488/567 [1:32:05<15:09, 11.52s/it]
86%|████████▌ | 489/567 [1:32:14<13:56, 10.72s/it]
86%|████████▋ | 490/567 [1:32:36<18:05, 14.10s/it]
87%|████████▋ | 491/567 [1:32:45<15:59, 12.63s/it]
87%|████████▋ | 492/567 [1:32:58<15:55, 12.74s/it]
87%|████████▋ | 493/567 [1:33:13<16:39, 13.50s/it]
87%|████████▋ | 494/567 [1:33:25<15:40, 12.88s/it]
87%|████████▋ | 495/567 [1:33:57<22:37, 18.86s/it]
87%|████████▋ | 496/567 [1:34:03<17:40, 14.93s/it]
88%|████████▊ | 497/567 [1:34:18<17:29, 14.99s/it]
88%|████████▊ | 498/567 [1:34:30<16:09, 14.06s/it]
88%|████████▊ | 499/567 [1:34:41<14:44, 13.01s/it]
88%|████████▊ | 500/567 [1:35:08<19:10, 17.17s/it]
88%|████████▊ | 501/567 [1:35:13<15:02, 13.67s/it]
89%|████████▊ | 502/567 [1:35:28<15:16, 14.09s/it]
89%|████████▊ | 503/567 [1:35:56<19:31, 18.30s/it]
89%|████████▉ | 504/567 [1:36:10<17:43, 16.89s/it]
89%|████████▉ | 505/567 [1:36:28<17:40, 17.10s/it]
89%|████████▉ | 506/567 [1:36:46<17:52, 17.58s/it]
89%|████████▉ | 507/567 [1:36:52<14:07, 14.12s/it]
90%|████████▉ | 508/567 [1:37:04<13:13, 13.44s/it]
90%|████████▉ | 509/567 [1:37:11<11:10, 11.57s/it]
90%|████████▉ | 510/567 [1:37:26<11:52, 12.50s/it]
90%|█████████ | 511/567 [1:37:38<11:29, 12.31s/it]
90%|█████████ | 512/567 [1:37:57<13:13, 14.42s/it]
90%|█████████ | 513/567 [1:38:09<12:18, 13.67s/it]
91%|█████████ | 514/567 [1:38:13<09:23, 10.64s/it]
91%|█████████ | 515/567 [1:38:21<08:37, 9.96s/it]
91%|█████████ | 516/567 [1:38:29<07:49, 9.20s/it]
91%|█████████ | 517/567 [1:38:39<07:57, 9.55s/it]
91%|█████████▏| 518/567 [1:38:44<06:36, 8.09s/it]
92%|█████████▏| 519/567 [1:38:53<06:44, 8.42s/it]
92%|█████████▏| 520/567 [1:39:00<06:18, 8.05s/it]
92%|█████████▏| 521/567 [1:39:10<06:37, 8.64s/it]
92%|█████████▏| 522/567 [1:39:24<07:36, 10.14s/it]
92%|█████████▏| 523/567 [1:39:33<07:22, 10.05s/it]
92%|█████████▏| 524/567 [1:39:42<06:57, 9.71s/it]
93%|█████████▎| 525/567 [1:39:53<06:59, 9.98s/it]
93%|█████████▎| 526/567 [1:40:04<06:56, 10.16s/it]
93%|█████████▎| 527/567 [1:40:17<07:26, 11.17s/it]
93%|█████████▎| 528/567 [1:40:24<06:28, 9.97s/it]
93%|█████████▎| 529/567 [1:40:32<05:56, 9.38s/it]
93%|█████████▎| 530/567 [1:40:48<07:01, 11.39s/it]
94%|█████████▎| 531/567 [1:40:56<06:10, 10.30s/it]
94%|█████████▍| 532/567 [1:41:06<05:54, 10.14s/it]
94%|█████████▍| 533/567 [1:41:12<05:05, 8.99s/it]
94%|█████████▍| 534/567 [1:41:18<04:21, 7.94s/it]
94%|█████████▍| 535/567 [1:41:29<04:50, 9.09s/it]
95%|█████████▍| 536/567 [1:41:39<04:42, 9.11s/it]
95%|█████████▍| 537/567 [1:41:53<05:17, 10.58s/it]
95%|█████████▍| 538/567 [1:41:59<04:30, 9.31s/it]
95%|█████████▌| 539/567 [1:42:23<06:20, 13.58s/it]
95%|█████████▌| 540/567 [1:42:59<09:10, 20.41s/it]
95%|█████████▌| 541/567 [1:43:20<08:58, 20.71s/it]
96%|█████████▌| 542/567 [1:43:34<07:48, 18.76s/it]
96%|█████████▌| 543/567 [1:44:12<09:44, 24.33s/it]
96%|█████████▌| 544/567 [1:44:15<06:52, 17.93s/it]
96%|█████████▌| 545/567 [1:44:25<05:46, 15.75s/it]
96%|█████████▋| 546/567 [1:44:34<04:43, 13.52s/it]
96%|█████████▋| 547/567 [1:44:39<03:40, 11.03s/it]
97%|█████████▋| 548/567 [1:44:47<03:10, 10.04s/it]
97%|█████████▋| 549/567 [1:44:53<02:39, 8.84s/it]
97%|█████████▋| 550/567 [1:45:02<02:33, 9.03s/it]
97%|█████████▋| 551/567 [1:45:13<02:33, 9.60s/it]
97%|█████████▋| 552/567 [1:45:28<02:47, 11.17s/it]
98%|█████████▊| 553/567 [1:45:34<02:14, 9.63s/it]
98%|█████████▊| 554/567 [1:45:40<01:52, 8.64s/it]
98%|█████████▊| 555/567 [1:45:48<01:40, 8.37s/it]
98%|█████████▊| 556/567 [1:45:55<01:27, 7.92s/it]
98%|█████████▊| 557/567 [1:46:10<01:40, 10.09s/it]
98%|█████████▊| 558/567 [1:46:20<01:29, 9.90s/it]
99%|█████████▊| 559/567 [1:46:35<01:31, 11.42s/it]
99%|█████████▉| 560/567 [1:46:48<01:24, 12.07s/it]
99%|█████████▉| 561/567 [1:46:54<01:01, 10.18s/it]
99%|█████████▉| 562/567 [1:47:14<01:05, 13.18s/it]
99%|█████████▉| 563/567 [1:47:28<00:53, 13.31s/it]
99%|█████████▉| 564/567 [1:47:44<00:42, 14.24s/it]
100%|█████████▉| 565/567 [1:47:53<00:25, 12.54s/it]
100%|█████████▉| 566/567 [1:48:03<00:11, 11.82s/it]
100%|██████████| 567/567 [1:48:04<00:00, 8.60s/it]
100%|██████████| 567/567 [1:48:04<00:00, 11.44s/it]
-Batch output: ['Lao Geng raised his gun, squinted one eye into a triangle, pulled the trigger, and the gold sparrows fell in a hailstorm, the iron sand flying and splattering among the willow branches, making a scratching sound.', 'The next day before dawn, Mrs. Liu got up and washed and dressed. She also taught the boy a few phrases; the six-year-old boy, hearing that he was going to the city for a stroll, was delighted and readily agreed.']
-internlm/internlm2_5-7b-chat/shots-10 metrics: {'meteor': 0.3750895095392996, 'bleu_scores': {'bleu': 0.11696492920010637, 'precisions': [0.4317450641742016, 0.15829694323144106, 0.07614157344580964, 0.03933573123134614], 'brevity_penalty': 0.9778639057651904, 'length_ratio': 0.978105332891686, 'translation_length': 29529, 'reference_length': 30190}, 'rouge_scores': {'rouge1': 0.42585767272831393, 'rouge2': 0.178746730852888, 'rougeL': 0.36807981307489146, 'rougeLsum': 0.36840360692900725}, 'accuracy': 0.00088261253309797, 'correct_ids': [77]}
-*** Evaluating with num_shots: 50
-loading train/test data files
-
Map: 0%| | 0/4528 [00:00, ? examples/s]
Map: 44%|████▍ | 2000/4528 [00:00<00:00, 12950.72 examples/s]
Map: 88%|████████▊ | 4000/4528 [00:00<00:00, 14074.77 examples/s]
Map: 100%|██████████| 4528/4528 [00:00<00:00, 13854.95 examples/s]
-
Map: 0%| | 0/1133 [00:00, ? examples/s]
Map: 100%|██████████| 1133/1133 [00:00<00:00, 13815.18 examples/s]
-DatasetDict({
- train: Dataset({
- features: ['chinese', 'english', 'text', 'prompt'],
- num_rows: 4528
- })
- test: Dataset({
- features: ['chinese', 'english', 'text', 'prompt'],
- num_rows: 1133
- })
-})
---------------------------------------------------
-chinese: 老耿端起枪,眯缝起一只三角眼,一搂扳机响了枪,冰雹般的金麻雀劈哩啪啦往下落,铁砂子在柳枝间飞迸着,嚓嚓有声。
---------------------------------------------------
-english: Old Geng picked up his shotgun, squinted, and pulled the trigger. Two sparrows crashed to the ground like hailstones as shotgun pellets tore noisily through the branches.
---------------------------------------------------
-text: <|im_start|>system
-You are a helpful assistant that translates Chinese to English.<|im_end|>
-<|im_start|>user
-You will be given a Chinese sentence to translate. If it is an incomplete sentence, or if you are unsure about the meaning, simply copy the input text as your output. Do not output any additional sentence such as explanation or reasoning.
-
-Example Translations:
-Chinese: 全仗着狐仙搭救。
-English: Because I was protected by a fox fairy.
-Chinese: 过后,表哥告诉她俩,这人是导演,在外国留过学的,还会编剧,今天拍的这戏,就是他自编自导的。
-English: He was the director, the cousin later told them. He had studied abroad and was also a screenwriter; in fact he had written and directed the scene they had earlier seen being filmed.
-Chinese: 这凤姐忽然想起一件事来,便向窗外叫:“蓉儿回来!”
-English: Xi-feng suddenly seemed to remember something, and called to him through the window, 'Rong, come back!'
-Chinese: 三个老红卫兵走到叶文洁面前,面对着她站成了一排——当年,她们也是这样面对叶哲泰的——试图再现那早已忘却的尊严,但她们当年那魔鬼般的精神力量显然已荡然无存。
-English: The three old Red Guards stood in front of Ye in a row—just like they had stood against Ye Zhetai—trying to recapture their long-forgotten dignity. But the demonic spiritual energy that had once propelled them was gone.
-Chinese: 程先生照单全收,都是一个“谢”字,然后问王琦瑶有什么话说。
-English: Mr. Cheng accepted their toast with equanimity and a 'thank you.' Then, turning to Wang Qiyao, he asked if she had anything to say.
-Chinese: 程先生向来觉得她母亲势利,过去并不把他放在眼里,他在楼下叫王琦瑶,她连门都不肯开,只让老妈子伸出头来回话。
-English: Mr. Cheng had always thought her a calculating woman. Back when he used to call on Wang Qiyao, she would never even bother to greet him but always sent the maid down to talk to him at the door instead.
-Chinese: 按他的逻辑,我身上这个通红通红,直不愣登,长约一尺的东西就是罪恶的化身。
-English: In his way of thinking, this red, stiff, foot-long thing on my body was the incarnation of evil.
-Chinese: 他听沙瑞山讲她如何目睹父亲在“文革”中的惨死,讲她后来在建设兵团被诬陷,后来杳无音讯; 九十年代初才又回到了这座城市,在父亲曾工作过的大学中讲授天体物理学直到退休。
-English: He listened as Sha told of how she witnessed the death of her father during the Cultural Revolution, how she was falsely accused at the Production and Construction Corps, how she then seemed to disappear until her return to Beijing at the beginning of the nineties, when she began teaching astrophysics at Tsinghua, where her father had also taught, until her retirement.
-Chinese: 事情一时上有些弄反了,去片厂倒是为了照顾吴佩珍似的。
-English: Before long, it was more like Wang Qiyao was doing her a favor by going with her.
-Chinese: “这等于说正确的哲学是从天上掉下来的。
-English: 'Then that's equivalent to saying that the correct philosophy falls out of the sky.
-Chinese: 爷爷把三种物质拌匀,连同那张黄表纸,拍在伤口上,父亲帮着爷爷把那根肮脏不堪的绷带扎好。
-English: After Granddad mixed the three substances together and covered the wound with them, paper and all, Father wrapped a filthy strip of bandage cloth around it and tied it tight.
-Chinese: 藏在宫里,当然是普天下最稳妥的所在。
-English: Mind you, look anywhere you like, you'll never find a safer place than this.
-Chinese: 果然来的又是四名使者,为首一人下马抱拳,说道:“总舵主相请茅十八茅爷、韦小宝韦爷两位,劳驾前去相会。”
-English: There were four messengers this time. Their leader, having dismounted from his horse, clasped his hands together respectfully: 'The Helmsman requests Mr Mao and Mr Wei to favour him with their company.'
-Chinese: 只见史湘云大说大笑的,见了他两个,忙站起来问好。
-English: Shi Xiang-yun was already there, laughing and chattering away nineteen to the dozen, but rose to greet them as they entered.
-Chinese: 两人虽然没互相叮嘱,却不约而同地缄口不提。
-English: It was implicitly understood between them that they should never broach the subject.
-Chinese: 史强拿起一支笔,在桌面上画了两条弯曲的平行线,“这是运河,”
-English: Da Shi picked up a pen and drew two parallel curves on the table. 'That's the canal.'
-Chinese: 贾环道:“我拿什么比宝玉? 你们怕他,都和他好,都欺负我不是太太养的!” 说着便哭。
-English: 'How can I hope to compete with Bao-yu?' said Jia Huan, beginning to blubber.
-Chinese: 我为此所惊,伏下身不动。
-English: I was scared and stopped, leaning over her body.
-Chinese: 海老公一惊,道:“皇上早知道了?”
-English: The old eunuch was clearly startled by this. 'The Emperor knew this?'
-Chinese: 只说这句就再不能说话了。
-English: Those were the last words he ever uttered.
-Chinese: 再回到医院,人已经进了产房,晚上八点便生下了,是个女孩,说是一出娘胎就满头黑发,手脚很长。
-English: By the time he got back, Wang Qiyao had already been taken into the delivery room. It was a baby girl. She was born at eight o'clock. They told Mr. Cheng that she had long arms and legs and a full head of black hair.
-Chinese: 等她回来,他便对她说,要不要替她去倒杯饮料?
-English: When she came back, he asked her if he could get her a drink.
-Chinese: 我这两套功夫,你这一生一世也来不及学得全了。”
-English: In any case, you couldn't master my two kinds of kungfu if you spent a whole lifetime studying them.'
-Chinese: 香色呢礼帽熟练地搧了他一个耳光,叫道:“说!
-English: Chestnut Wool Cap slapped him across the mouth and shouted: 'Tell me!
-Chinese: 韦小宝沉吟道:“你说怎么办?”
-English: 'What do you think we ought to do?' Trinket asked presently, as if he had been mulling the matter over in his mind.
-Chinese: 王琦瑶就说:你还是没明白我的意思。
-English: 'I don't think so. . . .'
-Chinese: 她默默地站了一会儿,转身走去,悲伤已感觉不到了,她现在就像一台盖革计数仪,当置身于超量的辐射中时,反而不再有任何反应,没有声响,读数为零。
-English: She stood there for a while, silent. Then she turned and walked away. She could no longer feel grief. She was now like a Geiger counter that had been subjected to too much radiation, no longer capable of giving any reaction, noiselessly displaying a reading of zero.
-Chinese: 父亲在墨水河里玩过水,他的水性好像是天生的,奶奶说他见了水比见了亲娘还急。
-English: Father had gone swimming so often in the Black Water River that he seemed born to it. Grandma said that the sight of the river excited him more than the sight of his own mother.
-Chinese: 父亲从高粱根下挖起一块黑土,用手搓得精细,撒在黄表纸上。
-English: Father bent down and picked up a clod of dark earth near the roots of a sorghum stalk, crumbled it in his fingers, and spread it on the paper.
-Chinese: 自从分手后,这是第一次见,中间相隔有十万八千年似的。
-English: This was the first time they had been together since their parting. It felt like thousands of years since they had last seen each other.
-Chinese: 好好儿的,家去做什么?”
-English: 'I'm perfectly all right. What should I want to go home for?'
-Chinese: 绍琳大叫起来,又接着滔滔不绝地讲起了宇宙大爆炸,自然不忘深刻地剖析其反动本质。
-English: Shao Lin shouted. Then she began a long lecture about the big bang theory, remembering to splice in insightful critiques of the theory's extremely reactionary nature.
-Chinese: 顾炎武道:“痛快淋漓,真是绝妙好辞。”
-English: 'It says all there is to say, ' said Gu Yanwu. 'Masterly!'
-Chinese: 它虽是捣乱也是认真恳切,而不是玩世不恭,就算是谣言也是悉心编造。
-English: Though always making trouble, they are nevertheless earnest and sincere. Gossip is never cynical; even if the thing in question is nothing but empty rumors, the utmost care is still put into their creation.
-Chinese: 有一点可以肯定,不管幽灵倒计时的尽头是什么,在这剩下的千余个小时中,对尽头的猜测将像恶魔那样残酷地折磨他,最后在精神上彻底摧毁他。
-English: One thing was certain. No matter what was at the end of the countdown, in the remaining one thousand or so hours, the possibilities would torture him cruelly, like demons, until he suffered a complete mental breakdown.
-Chinese: 我虽糊涂,却明白这两句话。
-English: Even a simpleton like me knows that much!
-Chinese: 王琦瑶还没到这一步,她的想头还有些枝叶花朵,在平安里黯淡的夜里,闪出些光亮来。
-English: Wang Qiyao had not reached this stage. Her thoughts still had stems, leaves, and flowers, which glimmered in the dark night of Peace Lane.
-Chinese: 原来贾瑞父母早亡,只有他祖父代儒教养。
-English: Jia Rui had lost both of his parents in infancy and had been brought up under the sole guardianship of his grandfather Jia Dai-ru.
-Chinese: 在我进山之前,总共就见到了两个人,一个是陈清扬,她没有告诉我这件事。 另一个是我们队长,他也没说起这件事,只叫我去温泉养病。
-English: I saw only two people before my trip, one of whom was Chen Qingyang, who hadn't mentioned it; the other one was our team leader, who also hadn't said anything other than telling me to take a good rest at the thermal springs.
-Chinese: 那个飞出的构件旋即落人水中,激起了高高的水柱,在它一闪而过之际,汪淼看出那是船上发动机的一段曲轴。
-English: A broken component flew out of the hole and fell into the water, causing a large column of water to shoot up. As it briefly flew past, Wang recognized it as a section of the engine crankshaft.
-Chinese: 到了荣府大门前石狮子旁边,只见满门口的轿马。
-English: There, at each side of the stone lions which flanked the gates of the Rong Mansion, she saw a cluster of horses and palanquins.
-Chinese: 审问者:你认为这个结论,本身科学吗?
-English: INTERROGATOR: Do you think this conclusion you drew is scientific?
-Chinese: 他把吴佩珍当小孩子看,喜欢逗她,开些玩笑;对王琦瑶则说有机会要让她上一回镜头,因她的眉眼有些像阮玲玉,趁着人们对阮玲玉的怀念,说不定能捧出一颗明星。
-English: He treated Wu Peizhen as if she were a child; he loved to tease her and play little jokes on her. He promised to put Wang Qiyao in a scene in one of his movies as soon as the opportunity arose. Who knows? Because her coquettish eyes resembled Ruan Lingyu's, they might even be able to capitalize on the audience's nostalgia for the dead movie star and make Wang Qiyao into a new diva of the screen.
-Chinese: 贾瑞也捻着一把汗,少不得回来撒谎,只说:“往舅舅家去了,天黑了,留我住了一夜。”
-English: The prospect of facing his grandfather on arrival made Jia Rui sweat. A lie of some sort was indispensable. 'I went to see Uncle yesterday,' he managed to say, 'and as it was getting dark, he asked me to stay the night.'
-Chinese: 我的后腰上好像被猪八戒筑了两耙。
-English: My lower back looked like it had been struck by Pigsy's rake.
-Chinese: 贾瑞见请,心中暗喜。
-English: Hearing that he was to be received, Jia Rui rejoiced inwardly.
-Chinese: 我去告诉我家爹,拿铜炮枪打你们!”
-English: I'm going to tell my father. He'll shoot the two of you with his bronze-barreled shotgun!'
-Chinese: 我们有各种选择,可以到各方向去。
-English: We could have made any choice and set off in any direction.
-Chinese: 父亲的勃朗宁手枪压在日本洋马肚子下边了。 在下午最后的搏斗中,父亲拖着一杆比他矮不了多少的日本马枪,爷爷还用着那支德国造“自来得”手枪。 连续不断地射击,使本来就过了青春年华的这支“自来得”迅速奔向废铁堆。
-English: Since Father's Browning pistol lay under the belly of the fallen horse, during the final battle of the afternoon he used a Japanese rifle nearly as tall as he was; Granddad used his German automatic, firing it so rapidly it spent its youth and was ready for the trash heap.
-Chinese: 钱老板道:“多谢韦香主夸奖。”
-English: 'Oh, I don't know about that,' said Butcher Qian coyly. 'Anyway, thank you, Master.'
-
-Chinese: 老耿端起枪,眯缝起一只三角眼,一搂扳机响了枪,冰雹般的金麻雀劈哩啪啦往下落,铁砂子在柳枝间飞迸着,嚓嚓有声。
-English:<|im_end|>
-<|im_start|>assistant
-Old Geng picked up his shotgun, squinted, and pulled the trigger. Two sparrows crashed to the ground like hailstones as shotgun pellets tore noisily through the branches.
---------------------------------------------------
-prompt: <|im_start|>system
-You are a helpful assistant that translates Chinese to English.<|im_end|>
-<|im_start|>user
-You will be given a Chinese sentence to translate. If it is an incomplete sentence, or if you are unsure about the meaning, simply copy the input text as your output. Do not output any additional sentence such as explanation or reasoning.
-
-Example Translations:
-Chinese: 全仗着狐仙搭救。
-English: Because I was protected by a fox fairy.
-Chinese: 过后,表哥告诉她俩,这人是导演,在外国留过学的,还会编剧,今天拍的这戏,就是他自编自导的。
-English: He was the director, the cousin later told them. He had studied abroad and was also a screenwriter; in fact he had written and directed the scene they had earlier seen being filmed.
-Chinese: 这凤姐忽然想起一件事来,便向窗外叫:“蓉儿回来!”
-English: Xi-feng suddenly seemed to remember something, and called to him through the window, 'Rong, come back!'
-Chinese: 三个老红卫兵走到叶文洁面前,面对着她站成了一排——当年,她们也是这样面对叶哲泰的——试图再现那早已忘却的尊严,但她们当年那魔鬼般的精神力量显然已荡然无存。
-English: The three old Red Guards stood in front of Ye in a row—just like they had stood against Ye Zhetai—trying to recapture their long-forgotten dignity. But the demonic spiritual energy that had once propelled them was gone.
-Chinese: 程先生照单全收,都是一个“谢”字,然后问王琦瑶有什么话说。
-English: Mr. Cheng accepted their toast with equanimity and a 'thank you.' Then, turning to Wang Qiyao, he asked if she had anything to say.
-Chinese: 程先生向来觉得她母亲势利,过去并不把他放在眼里,他在楼下叫王琦瑶,她连门都不肯开,只让老妈子伸出头来回话。
-English: Mr. Cheng had always thought her a calculating woman. Back when he used to call on Wang Qiyao, she would never even bother to greet him but always sent the maid down to talk to him at the door instead.
-Chinese: 按他的逻辑,我身上这个通红通红,直不愣登,长约一尺的东西就是罪恶的化身。
-English: In his way of thinking, this red, stiff, foot-long thing on my body was the incarnation of evil.
-Chinese: 他听沙瑞山讲她如何目睹父亲在“文革”中的惨死,讲她后来在建设兵团被诬陷,后来杳无音讯; 九十年代初才又回到了这座城市,在父亲曾工作过的大学中讲授天体物理学直到退休。
-English: He listened as Sha told of how she witnessed the death of her father during the Cultural Revolution, how she was falsely accused at the Production and Construction Corps, how she then seemed to disappear until her return to Beijing at the beginning of the nineties, when she began teaching astrophysics at Tsinghua, where her father had also taught, until her retirement.
-Chinese: 事情一时上有些弄反了,去片厂倒是为了照顾吴佩珍似的。
-English: Before long, it was more like Wang Qiyao was doing her a favor by going with her.
-Chinese: “这等于说正确的哲学是从天上掉下来的。
-English: 'Then that's equivalent to saying that the correct philosophy falls out of the sky.
-Chinese: 爷爷把三种物质拌匀,连同那张黄表纸,拍在伤口上,父亲帮着爷爷把那根肮脏不堪的绷带扎好。
-English: After Granddad mixed the three substances together and covered the wound with them, paper and all, Father wrapped a filthy strip of bandage cloth around it and tied it tight.
-Chinese: 藏在宫里,当然是普天下最稳妥的所在。
-English: Mind you, look anywhere you like, you'll never find a safer place than this.
-Chinese: 果然来的又是四名使者,为首一人下马抱拳,说道:“总舵主相请茅十八茅爷、韦小宝韦爷两位,劳驾前去相会。”
-English: There were four messengers this time. Their leader, having dismounted from his horse, clasped his hands together respectfully: 'The Helmsman requests Mr Mao and Mr Wei to favour him with their company.'
-Chinese: 只见史湘云大说大笑的,见了他两个,忙站起来问好。
-English: Shi Xiang-yun was already there, laughing and chattering away nineteen to the dozen, but rose to greet them as they entered.
-Chinese: 两人虽然没互相叮嘱,却不约而同地缄口不提。
-English: It was implicitly understood between them that they should never broach the subject.
-Chinese: 史强拿起一支笔,在桌面上画了两条弯曲的平行线,“这是运河,”
-English: Da Shi picked up a pen and drew two parallel curves on the table. 'That's the canal.'
-Chinese: 贾环道:“我拿什么比宝玉? 你们怕他,都和他好,都欺负我不是太太养的!” 说着便哭。
-English: 'How can I hope to compete with Bao-yu?' said Jia Huan, beginning to blubber.
-Chinese: 我为此所惊,伏下身不动。
-English: I was scared and stopped, leaning over her body.
-Chinese: 海老公一惊,道:“皇上早知道了?”
-English: The old eunuch was clearly startled by this. 'The Emperor knew this?'
-Chinese: 只说这句就再不能说话了。
-English: Those were the last words he ever uttered.
-Chinese: 再回到医院,人已经进了产房,晚上八点便生下了,是个女孩,说是一出娘胎就满头黑发,手脚很长。
-English: By the time he got back, Wang Qiyao had already been taken into the delivery room. It was a baby girl. She was born at eight o'clock. They told Mr. Cheng that she had long arms and legs and a full head of black hair.
-Chinese: 等她回来,他便对她说,要不要替她去倒杯饮料?
-English: When she came back, he asked her if he could get her a drink.
-Chinese: 我这两套功夫,你这一生一世也来不及学得全了。”
-English: In any case, you couldn't master my two kinds of kungfu if you spent a whole lifetime studying them.'
-Chinese: 香色呢礼帽熟练地搧了他一个耳光,叫道:“说!
-English: Chestnut Wool Cap slapped him across the mouth and shouted: 'Tell me!
-Chinese: 韦小宝沉吟道:“你说怎么办?”
-English: 'What do you think we ought to do?' Trinket asked presently, as if he had been mulling the matter over in his mind.
-Chinese: 王琦瑶就说:你还是没明白我的意思。
-English: 'I don't think so. . . .'
-Chinese: 她默默地站了一会儿,转身走去,悲伤已感觉不到了,她现在就像一台盖革计数仪,当置身于超量的辐射中时,反而不再有任何反应,没有声响,读数为零。
-English: She stood there for a while, silent. Then she turned and walked away. She could no longer feel grief. She was now like a Geiger counter that had been subjected to too much radiation, no longer capable of giving any reaction, noiselessly displaying a reading of zero.
-Chinese: 父亲在墨水河里玩过水,他的水性好像是天生的,奶奶说他见了水比见了亲娘还急。
-English: Father had gone swimming so often in the Black Water River that he seemed born to it. Grandma said that the sight of the river excited him more than the sight of his own mother.
-Chinese: 父亲从高粱根下挖起一块黑土,用手搓得精细,撒在黄表纸上。
-English: Father bent down and picked up a clod of dark earth near the roots of a sorghum stalk, crumbled it in his fingers, and spread it on the paper.
-Chinese: 自从分手后,这是第一次见,中间相隔有十万八千年似的。
-English: This was the first time they had been together since their parting. It felt like thousands of years since they had last seen each other.
-Chinese: 好好儿的,家去做什么?”
-English: 'I'm perfectly all right. What should I want to go home for?'
-Chinese: 绍琳大叫起来,又接着滔滔不绝地讲起了宇宙大爆炸,自然不忘深刻地剖析其反动本质。
-English: Shao Lin shouted. Then she began a long lecture about the big bang theory, remembering to splice in insightful critiques of the theory's extremely reactionary nature.
-Chinese: 顾炎武道:“痛快淋漓,真是绝妙好辞。”
-English: 'It says all there is to say, ' said Gu Yanwu. 'Masterly!'
-Chinese: 它虽是捣乱也是认真恳切,而不是玩世不恭,就算是谣言也是悉心编造。
-English: Though always making trouble, they are nevertheless earnest and sincere. Gossip is never cynical; even if the thing in question is nothing but empty rumors, the utmost care is still put into their creation.
-Chinese: 有一点可以肯定,不管幽灵倒计时的尽头是什么,在这剩下的千余个小时中,对尽头的猜测将像恶魔那样残酷地折磨他,最后在精神上彻底摧毁他。
-English: One thing was certain. No matter what was at the end of the countdown, in the remaining one thousand or so hours, the possibilities would torture him cruelly, like demons, until he suffered a complete mental breakdown.
-Chinese: 我虽糊涂,却明白这两句话。
-English: Even a simpleton like me knows that much!
-Chinese: 王琦瑶还没到这一步,她的想头还有些枝叶花朵,在平安里黯淡的夜里,闪出些光亮来。
-English: Wang Qiyao had not reached this stage. Her thoughts still had stems, leaves, and flowers, which glimmered in the dark night of Peace Lane.
-Chinese: 原来贾瑞父母早亡,只有他祖父代儒教养。
-English: Jia Rui had lost both of his parents in infancy and had been brought up under the sole guardianship of his grandfather Jia Dai-ru.
-Chinese: 在我进山之前,总共就见到了两个人,一个是陈清扬,她没有告诉我这件事。 另一个是我们队长,他也没说起这件事,只叫我去温泉养病。
-English: I saw only two people before my trip, one of whom was Chen Qingyang, who hadn't mentioned it; the other one was our team leader, who also hadn't said anything other than telling me to take a good rest at the thermal springs.
-Chinese: 那个飞出的构件旋即落人水中,激起了高高的水柱,在它一闪而过之际,汪淼看出那是船上发动机的一段曲轴。
-English: A broken component flew out of the hole and fell into the water, causing a large column of water to shoot up. As it briefly flew past, Wang recognized it as a section of the engine crankshaft.
-Chinese: 到了荣府大门前石狮子旁边,只见满门口的轿马。
-English: There, at each side of the stone lions which flanked the gates of the Rong Mansion, she saw a cluster of horses and palanquins.
-Chinese: 审问者:你认为这个结论,本身科学吗?
-English: INTERROGATOR: Do you think this conclusion you drew is scientific?
-Chinese: 他把吴佩珍当小孩子看,喜欢逗她,开些玩笑;对王琦瑶则说有机会要让她上一回镜头,因她的眉眼有些像阮玲玉,趁着人们对阮玲玉的怀念,说不定能捧出一颗明星。
-English: He treated Wu Peizhen as if she were a child; he loved to tease her and play little jokes on her. He promised to put Wang Qiyao in a scene in one of his movies as soon as the opportunity arose. Who knows? Because her coquettish eyes resembled Ruan Lingyu's, they might even be able to capitalize on the audience's nostalgia for the dead movie star and make Wang Qiyao into a new diva of the screen.
-Chinese: 贾瑞也捻着一把汗,少不得回来撒谎,只说:“往舅舅家去了,天黑了,留我住了一夜。”
-English: The prospect of facing his grandfather on arrival made Jia Rui sweat. A lie of some sort was indispensable. 'I went to see Uncle yesterday,' he managed to say, 'and as it was getting dark, he asked me to stay the night.'
-Chinese: 我的后腰上好像被猪八戒筑了两耙。
-English: My lower back looked like it had been struck by Pigsy's rake.
-Chinese: 贾瑞见请,心中暗喜。
-English: Hearing that he was to be received, Jia Rui rejoiced inwardly.
-Chinese: 我去告诉我家爹,拿铜炮枪打你们!”
-English: I'm going to tell my father. He'll shoot the two of you with his bronze-barreled shotgun!'
-Chinese: 我们有各种选择,可以到各方向去。
-English: We could have made any choice and set off in any direction.
-Chinese: 父亲的勃朗宁手枪压在日本洋马肚子下边了。 在下午最后的搏斗中,父亲拖着一杆比他矮不了多少的日本马枪,爷爷还用着那支德国造“自来得”手枪。 连续不断地射击,使本来就过了青春年华的这支“自来得”迅速奔向废铁堆。
-English: Since Father's Browning pistol lay under the belly of the fallen horse, during the final battle of the afternoon he used a Japanese rifle nearly as tall as he was; Granddad used his German automatic, firing it so rapidly it spent its youth and was ready for the trash heap.
-Chinese: 钱老板道:“多谢韦香主夸奖。”
-English: 'Oh, I don't know about that,' said Butcher Qian coyly. 'Anyway, thank you, Master.'
-
-Chinese: 老耿端起枪,眯缝起一只三角眼,一搂扳机响了枪,冰雹般的金麻雀劈哩啪啦往下落,铁砂子在柳枝间飞迸着,嚓嚓有声。
-English:<|im_end|>
-<|im_start|>assistant
-
-
0%| | 0/567 [00:00, ?it/s]
0%| | 1/567 [01:51<17:31:17, 111.44s/it]
0%| | 2/567 [04:15<20:30:32, 130.68s/it]
1%| | 3/567 [05:52<18:03:16, 115.24s/it]
1%| | 4/567 [07:11<15:46:32, 100.87s/it]
1%| | 5/567 [07:44<11:54:43, 76.30s/it]
1%| | 6/567 [09:59<15:01:27, 96.41s/it]
1%| | 7/567 [10:26<11:28:42, 73.79s/it]
1%|▏ | 8/567 [11:59<12:24:16, 79.89s/it]
2%|▏ | 9/567 [13:29<12:50:50, 82.89s/it]
2%|▏ | 10/567 [14:42<12:22:17, 79.96s/it]
2%|▏ | 11/567 [16:28<13:35:09, 87.97s/it]
2%|▏ | 12/567 [17:08<11:19:03, 73.41s/it]
2%|▏ | 13/567 [18:31<11:45:11, 76.38s/it]
2%|▏ | 14/567 [19:23<10:33:49, 68.77s/it]
3%|▎ | 15/567 [19:48<8:32:22, 55.69s/it]
3%|▎ | 16/567 [20:56<9:05:55, 59.45s/it]
3%|▎ | 17/567 [22:59<11:58:32, 78.39s/it]
3%|▎ | 18/567 [23:48<10:37:23, 69.66s/it]
3%|▎ | 19/567 [25:10<11:11:10, 73.49s/it]
4%|▎ | 20/567 [26:03<10:13:49, 67.33s/it]
4%|▎ | 21/567 [27:32<11:11:58, 73.84s/it]
4%|▍ | 22/567 [28:14<9:44:01, 64.30s/it]
4%|▍ | 23/567 [30:08<11:57:54, 79.18s/it]
4%|▍ | 24/567 [30:54<10:25:39, 69.13s/it]
4%|▍ | 25/567 [31:27<8:45:46, 58.20s/it]
5%|▍ | 26/567 [33:05<10:33:26, 70.25s/it]
5%|▍ | 27/567 [33:45<9:10:53, 61.21s/it]
5%|▍ | 28/567 [36:27<13:40:40, 91.36s/it]
5%|▌ | 29/567 [37:48<13:12:03, 88.33s/it]
5%|▌ | 30/567 [47:52<36:14:38, 242.98s/it]
5%|▌ | 31/567 [48:19<26:32:27, 178.26s/it]
6%|▌ | 32/567 [49:24<21:24:44, 144.08s/it]
6%|▌ | 33/567 [50:20<17:28:47, 117.84s/it]
6%|▌ | 34/567 [54:35<23:31:05, 158.85s/it]
6%|▌ | 35/567 [55:56<20:02:48, 135.66s/it]
6%|▋ | 36/567 [56:49<16:20:22, 110.78s/it]
7%|▋ | 37/567 [57:14<12:32:21, 85.17s/it]
7%|▋ | 38/567 [58:02<10:51:04, 73.85s/it]
7%|▋ | 39/567 [59:04<10:19:06, 70.35s/it]
7%|▋ | 40/567 [1:00:12<10:11:59, 69.68s/it]
7%|▋ | 41/567 [1:00:30<7:55:15, 54.21s/it]
7%|▋ | 42/567 [1:02:02<9:32:01, 65.37s/it]
8%|▊ | 43/567 [1:02:36<8:10:10, 56.13s/it]
8%|▊ | 44/567 [1:03:37<8:20:23, 57.41s/it]
8%|▊ | 45/567 [1:04:49<8:57:48, 61.82s/it]
8%|▊ | 46/567 [1:05:25<7:50:32, 54.19s/it]
8%|▊ | 47/567 [1:07:30<10:52:38, 75.30s/it]
8%|▊ | 48/567 [1:08:59<11:27:38, 79.50s/it]
9%|▊ | 49/567 [1:09:39<9:44:07, 67.66s/it]
9%|▉ | 50/567 [1:11:16<10:58:01, 76.37s/it]
9%|▉ | 51/567 [1:13:16<12:49:39, 89.49s/it]
9%|▉ | 52/567 [1:13:43<10:07:53, 70.82s/it]
9%|▉ | 53/567 [1:17:32<16:52:00, 118.13s/it]
10%|▉ | 54/567 [1:19:10<16:00:38, 112.36s/it]
10%|▉ | 55/567 [1:21:05<16:03:51, 112.95s/it]
10%|▉ | 56/567 [1:23:29<17:20:37, 122.19s/it]
10%|█ | 57/567 [1:24:06<13:41:48, 96.68s/it]
10%|█ | 58/567 [1:24:37<10:52:49, 76.95s/it]
10%|█ | 59/567 [1:26:00<11:06:47, 78.76s/it]
11%|█ | 60/567 [1:27:02<10:23:54, 73.84s/it]
11%|█ | 61/567 [1:27:51<9:20:31, 66.47s/it]
11%|█ | 62/567 [1:28:44<8:45:17, 62.41s/it]
11%|█ | 63/567 [1:32:08<14:39:58, 104.76s/it]
11%|█▏ | 64/567 [1:34:13<15:30:46, 111.03s/it]
11%|█▏ | 65/567 [1:34:54<12:30:52, 89.75s/it]
12%|█▏ | 66/567 [1:36:19<12:18:28, 88.44s/it]
12%|█▏ | 67/567 [1:36:50<9:53:10, 71.18s/it]
12%|█▏ | 68/567 [1:39:20<13:09:02, 94.88s/it]
12%|█▏ | 69/567 [1:40:06<11:04:58, 80.12s/it]
12%|█▏ | 70/567 [1:41:12<10:28:15, 75.85s/it]
13%|█▎ | 71/567 [1:42:08<9:38:59, 70.04s/it]
13%|█▎ | 72/567 [1:43:25<9:55:54, 72.23s/it]
13%|█▎ | 73/567 [1:43:54<8:08:04, 59.28s/it]
13%|█▎ | 74/567 [1:44:35<7:19:51, 53.53s/it]
13%|█▎ | 75/567 [1:45:20<6:59:26, 51.15s/it]
13%|█▎ | 76/567 [1:46:17<7:12:34, 52.86s/it]
14%|█▎ | 77/567 [1:47:32<8:06:16, 59.54s/it]
14%|█▍ | 78/567 [1:48:25<7:50:07, 57.68s/it]
14%|█▍ | 79/567 [1:49:39<8:28:14, 62.49s/it]
14%|█▍ | 80/567 [1:50:50<8:48:26, 65.10s/it]
14%|█▍ | 81/567 [1:51:29<7:41:58, 57.03s/it]
14%|█▍ | 82/567 [1:52:18<7:22:29, 54.74s/it]
15%|█▍ | 83/567 [1:53:18<7:35:22, 56.45s/it]
15%|█▍ | 84/567 [1:54:04<7:08:14, 53.20s/it]
15%|█▍ | 85/567 [1:54:55<7:02:08, 52.55s/it]
15%|█▌ | 86/567 [1:55:15<5:42:49, 42.76s/it]
15%|█▌ | 87/567 [1:55:51<5:26:44, 40.84s/it]
16%|█▌ | 88/567 [1:56:41<5:46:19, 43.38s/it]
16%|█▌ | 89/567 [1:59:02<9:39:26, 72.73s/it]
16%|█▌ | 90/567 [2:00:15<9:40:09, 72.98s/it]
16%|█▌ | 91/567 [2:01:51<10:32:25, 79.72s/it]
16%|█▌ | 92/567 [2:03:32<11:22:09, 86.17s/it]
16%|█▋ | 93/567 [2:04:25<10:01:35, 76.15s/it]
17%|█▋ | 94/567 [2:06:00<10:44:31, 81.76s/it]
17%|█▋ | 95/567 [2:06:47<9:22:04, 71.45s/it]
17%|█▋ | 96/567 [2:07:49<8:59:04, 68.67s/it]
17%|█▋ | 97/567 [2:09:01<9:05:18, 69.61s/it]
17%|█▋ | 98/567 [2:11:17<11:40:25, 89.61s/it]
17%|█▋ | 99/567 [2:12:14<10:21:51, 79.73s/it]
18%|█▊ | 100/567 [2:14:04<11:30:52, 88.76s/it]
18%|█▊ | 101/567 [2:14:53<9:57:29, 76.93s/it]
18%|█▊ | 102/567 [2:16:32<10:46:42, 83.45s/it]
18%|█▊ | 103/567 [2:17:45<10:20:57, 80.30s/it]
18%|█▊ | 104/567 [2:19:10<10:31:24, 81.82s/it]
19%|█▊ | 105/567 [2:22:04<14:03:35, 109.56s/it]
19%|█▊ | 106/567 [2:23:20<12:43:50, 99.41s/it]
19%|█▉ | 107/567 [2:23:35<9:26:56, 73.95s/it]
19%|█▉ | 108/567 [2:26:34<13:27:56, 105.61s/it]
19%|█▉ | 109/567 [2:26:56<10:14:09, 80.46s/it]
19%|█▉ | 110/567 [2:27:43<8:57:23, 70.56s/it]
20%|█▉ | 111/567 [2:30:10<11:48:43, 93.25s/it]
20%|█▉ | 112/567 [2:31:27<11:11:43, 88.58s/it]
20%|█▉ | 113/567 [2:33:08<11:38:30, 92.31s/it]
20%|██ | 114/567 [2:33:58<9:59:17, 79.38s/it]
20%|██ | 115/567 [2:35:23<10:11:34, 81.18s/it]
20%|██ | 116/567 [2:36:09<8:50:10, 70.53s/it]
21%|██ | 117/567 [2:36:58<8:01:23, 64.19s/it]
21%|██ | 118/567 [2:38:19<8:38:16, 69.26s/it]
21%|██ | 119/567 [2:40:33<11:02:10, 88.68s/it]
21%|██ | 120/567 [2:41:35<10:01:23, 80.72s/it]
21%|██▏ | 121/567 [2:41:57<7:48:35, 63.04s/it]
22%|██▏ | 122/567 [2:42:41<7:04:48, 57.28s/it]
22%|██▏ | 123/567 [2:43:36<6:59:00, 56.62s/it]
22%|██▏ | 124/567 [2:47:28<13:27:09, 109.32s/it]
22%|██▏ | 125/567 [2:48:16<11:08:28, 90.74s/it]
22%|██▏ | 126/567 [2:49:05<9:35:47, 78.34s/it]
22%|██▏ | 127/567 [2:51:28<11:57:30, 97.84s/it]
23%|██▎ | 128/567 [2:52:58<11:37:00, 95.26s/it]
23%|██▎ | 129/567 [2:54:25<11:17:50, 92.86s/it]
23%|██▎ | 130/567 [2:57:15<14:05:34, 116.10s/it]
23%|██▎ | 131/567 [2:59:20<14:21:57, 118.62s/it]
23%|██▎ | 132/567 [3:02:23<16:41:26, 138.13s/it]
23%|██▎ | 133/567 [3:05:28<18:19:19, 151.98s/it]
24%|██▎ | 134/567 [3:08:40<19:43:08, 163.95s/it]
24%|██▍ | 135/567 [3:09:16<15:05:10, 125.72s/it]
24%|██▍ | 136/567 [3:10:13<12:34:36, 105.05s/it]
24%|██▍ | 137/567 [3:11:17<11:04:44, 92.75s/it]
24%|██▍ | 138/567 [3:11:44<8:42:42, 73.11s/it]
25%|██▍ | 139/567 [3:12:41<8:06:57, 68.27s/it]
25%|██▍ | 140/567 [3:13:36<7:37:30, 64.29s/it]
25%|██▍ | 141/567 [3:14:59<8:16:26, 69.92s/it]
25%|██▌ | 142/567 [3:15:45<7:23:36, 62.63s/it]
25%|██▌ | 143/567 [3:16:29<6:42:40, 56.98s/it]
25%|██▌ | 144/567 [3:17:27<6:45:08, 57.47s/it]
26%|██▌ | 145/567 [3:18:28<6:50:41, 58.39s/it]
26%|██▌ | 146/567 [3:19:50<7:39:10, 65.44s/it]
26%|██▌ | 147/567 [3:22:06<10:06:12, 86.60s/it]
26%|██▌ | 148/567 [3:23:14<9:26:32, 81.13s/it]
26%|██▋ | 149/567 [3:23:45<7:40:11, 66.06s/it]
26%|██▋ | 150/567 [3:24:05<6:02:59, 52.23s/it]
27%|██▋ | 151/567 [3:24:25<4:54:55, 42.54s/it]
27%|██▋ | 152/567 [3:25:40<6:02:37, 52.43s/it]
27%|██▋ | 153/567 [3:26:56<6:49:33, 59.36s/it]
27%|██▋ | 154/567 [3:27:36<6:08:43, 53.57s/it]
27%|██▋ | 155/567 [3:28:31<6:10:24, 53.94s/it]
28%|██▊ | 156/567 [3:29:33<6:26:58, 56.49s/it]
28%|██▊ | 157/567 [3:30:19<6:04:17, 53.31s/it]
28%|██▊ | 158/567 [3:32:45<9:13:04, 81.14s/it]
28%|██▊ | 159/567 [3:33:47<8:32:59, 75.44s/it]
28%|██▊ | 160/567 [3:35:46<9:59:00, 88.31s/it]
28%|██▊ | 161/567 [3:36:20<8:08:24, 72.18s/it]
29%|██▊ | 162/567 [3:37:26<7:54:44, 70.33s/it]
29%|██▊ | 163/567 [3:38:21<7:22:03, 65.65s/it]
29%|██▉ | 164/567 [3:48:22<25:19:01, 226.16s/it]
29%|██▉ | 165/567 [3:49:37<20:12:15, 180.93s/it]
29%|██▉ | 166/567 [3:50:17<15:27:00, 138.71s/it]
29%|██▉ | 167/567 [3:52:37<15:26:25, 138.96s/it]
30%|██▉ | 168/567 [3:53:21<12:14:18, 110.42s/it]
30%|██▉ | 169/567 [3:54:32<10:55:13, 98.78s/it]
30%|██▉ | 170/567 [3:55:38<9:49:01, 89.02s/it]
30%|███ | 171/567 [3:56:52<9:17:14, 84.43s/it]
30%|███ | 172/567 [3:58:04<8:51:03, 80.67s/it]
31%|███ | 173/567 [3:58:41<7:22:46, 67.43s/it]
31%|███ | 174/567 [3:59:41<7:07:56, 65.33s/it]
31%|███ | 175/567 [4:00:53<7:19:51, 67.32s/it]
31%|███ | 176/567 [4:01:42<6:43:36, 61.94s/it]
31%|███ | 177/567 [4:03:30<8:12:11, 75.72s/it]
31%|███▏ | 178/567 [4:04:05<6:50:56, 63.38s/it]
32%|███▏ | 179/567 [4:05:32<7:35:25, 70.43s/it]
32%|███▏ | 180/567 [4:06:40<7:29:42, 69.72s/it]
32%|███▏ | 181/567 [4:07:38<7:07:09, 66.40s/it]
32%|███▏ | 182/567 [4:08:29<6:36:10, 61.74s/it]
32%|███▏ | 183/567 [4:08:56<5:28:52, 51.39s/it]
32%|███▏ | 184/567 [4:10:10<6:10:48, 58.09s/it]
33%|███▎ | 185/567 [4:10:45<5:24:50, 51.02s/it]
33%|███▎ | 186/567 [4:14:00<9:58:28, 94.25s/it]
33%|███▎ | 187/567 [4:14:53<8:38:34, 81.88s/it]
33%|███▎ | 188/567 [4:15:29<7:10:59, 68.23s/it]
33%|███▎ | 189/567 [4:16:22<6:41:07, 63.67s/it]
34%|███▎ | 190/567 [4:16:53<5:38:14, 53.83s/it]
34%|███▎ | 191/567 [4:18:48<7:31:27, 72.04s/it]
34%|███▍ | 192/567 [4:20:06<7:41:19, 73.81s/it]
34%|███▍ | 193/567 [4:24:39<13:53:21, 133.69s/it]
34%|███▍ | 194/567 [4:25:15<10:49:40, 104.51s/it]
34%|███▍ | 195/567 [4:35:03<25:45:33, 249.28s/it]
35%|███▍ | 196/567 [4:36:07<19:58:18, 193.80s/it]
35%|███▍ | 197/567 [4:37:55<17:17:28, 168.24s/it]
35%|███▍ | 198/567 [4:39:43<15:22:07, 149.94s/it]
35%|███▌ | 199/567 [4:40:57<12:59:41, 127.12s/it]
35%|███▌ | 200/567 [4:41:53<10:48:13, 105.98s/it]
35%|███▌ | 201/567 [4:42:31<8:42:16, 85.62s/it]
36%|███▌ | 202/567 [4:43:13<7:21:08, 72.52s/it]
36%|███▌ | 203/567 [4:43:57<6:27:32, 63.88s/it]
36%|███▌ | 204/567 [4:53:41<22:10:12, 219.87s/it]
36%|███▌ | 205/567 [4:55:24<18:35:51, 184.95s/it]
36%|███▋ | 206/567 [4:57:12<16:13:43, 161.84s/it]
37%|███▋ | 207/567 [4:58:14<13:11:31, 131.92s/it]
37%|███▋ | 208/567 [5:00:01<12:24:21, 124.41s/it]
37%|███▋ | 209/567 [5:00:28<9:28:12, 95.23s/it]
37%|███▋ | 210/567 [5:01:44<8:51:25, 89.32s/it]
37%|███▋ | 211/567 [5:02:45<7:58:59, 80.73s/it]
37%|███▋ | 212/567 [5:03:51<7:31:37, 76.33s/it]
38%|███▊ | 213/567 [5:05:08<7:32:38, 76.72s/it]
38%|███▊ | 214/567 [5:06:24<7:28:43, 76.27s/it]
38%|███▊ | 215/567 [5:07:24<7:00:11, 71.62s/it]
38%|███▊ | 216/567 [5:08:32<6:52:53, 70.58s/it]
38%|███▊ | 217/567 [5:10:04<7:27:42, 76.75s/it]
38%|███▊ | 218/567 [5:11:20<7:25:27, 76.58s/it]
39%|███▊ | 219/567 [5:12:30<7:12:50, 74.63s/it]
39%|███▉ | 220/567 [5:13:25<6:37:10, 68.67s/it]
39%|███▉ | 221/567 [5:13:57<5:33:47, 57.88s/it]
39%|███▉ | 222/567 [5:14:47<5:18:06, 55.32s/it]
39%|███▉ | 223/567 [5:15:27<4:50:54, 50.74s/it]
40%|███▉ | 224/567 [5:16:33<5:16:17, 55.33s/it]
40%|███▉ | 225/567 [5:17:54<5:59:47, 63.12s/it]
40%|███▉ | 226/567 [5:19:27<6:49:35, 72.07s/it]
40%|████ | 227/567 [5:20:03<5:47:44, 61.37s/it]
40%|████ | 228/567 [5:21:10<5:55:01, 62.84s/it]
40%|████ | 229/567 [5:22:54<7:04:09, 75.30s/it]
41%|████ | 230/567 [5:23:38<6:09:48, 65.84s/it]
41%|████ | 231/567 [5:25:29<7:25:36, 79.57s/it]
41%|████ | 232/567 [5:26:21<6:37:00, 71.11s/it]
41%|████ | 233/567 [5:27:52<7:09:43, 77.20s/it]
41%|████▏ | 234/567 [5:28:16<5:39:13, 61.12s/it]
41%|████▏ | 235/567 [5:29:50<6:33:36, 71.13s/it]
42%|████▏ | 236/567 [5:32:20<8:42:17, 94.67s/it]
42%|████▏ | 237/567 [5:32:53<6:58:33, 76.10s/it]
42%|████▏ | 238/567 [5:33:55<6:34:45, 71.99s/it]
42%|████▏ | 239/567 [5:35:07<6:32:54, 71.87s/it]
42%|████▏ | 240/567 [5:38:09<9:32:01, 104.96s/it]
43%|████▎ | 241/567 [5:39:00<8:02:57, 88.89s/it]
43%|████▎ | 242/567 [5:39:48<6:54:20, 76.49s/it]
43%|████▎ | 243/567 [5:41:26<7:28:41, 83.09s/it]
43%|████▎ | 244/567 [5:43:06<7:53:31, 87.96s/it]
43%|████▎ | 245/567 [5:43:35<6:17:14, 70.29s/it]
43%|████▎ | 246/567 [5:44:37<6:03:44, 67.99s/it]
44%|████▎ | 247/567 [5:45:03<4:54:28, 55.21s/it]
44%|████▎ | 248/567 [5:46:09<5:11:25, 58.58s/it]
44%|████▍ | 249/567 [5:47:00<4:58:38, 56.35s/it]
44%|████▍ | 250/567 [5:56:54<19:09:12, 217.52s/it]
44%|████▍ | 251/567 [5:59:00<16:41:10, 190.10s/it]
44%|████▍ | 252/567 [6:00:44<14:22:08, 164.22s/it]
45%|████▍ | 253/567 [6:01:18<10:55:42, 125.29s/it]
45%|████▍ | 254/567 [6:04:33<12:43:01, 146.27s/it]
45%|████▍ | 255/567 [6:05:28<10:18:16, 118.90s/it]
45%|████▌ | 256/567 [6:05:54<7:50:58, 90.86s/it]
45%|████▌ | 257/567 [6:08:01<8:44:58, 101.61s/it]
46%|████▌ | 258/567 [6:09:24<8:14:42, 96.06s/it]
46%|████▌ | 259/567 [6:09:58<6:38:30, 77.63s/it]
46%|████▌ | 260/567 [6:12:42<8:48:56, 103.38s/it]
46%|████▌ | 261/567 [6:13:55<8:01:38, 94.44s/it]
46%|████▌ | 262/567 [6:15:51<8:32:45, 100.87s/it]
46%|████▋ | 263/567 [6:16:28<6:53:02, 81.52s/it]
47%|████▋ | 264/567 [6:16:48<5:18:26, 63.06s/it]
47%|████▋ | 265/567 [6:18:46<6:41:17, 79.73s/it]
47%|████▋ | 266/567 [6:19:30<5:45:51, 68.94s/it]
47%|████▋ | 267/567 [6:25:13<12:35:42, 151.14s/it]
47%|████▋ | 268/567 [6:27:07<11:38:27, 140.16s/it]
47%|████▋ | 269/567 [6:27:57<9:21:30, 113.05s/it]
48%|████▊ | 270/567 [6:29:33<8:53:56, 107.87s/it]
48%|████▊ | 271/567 [6:31:33<9:09:31, 111.39s/it]
48%|████▊ | 272/567 [6:32:29<7:47:00, 94.99s/it]
48%|████▊ | 273/567 [6:33:32<6:57:25, 85.19s/it]
48%|████▊ | 274/567 [6:34:15<5:55:18, 72.76s/it]
49%|████▊ | 275/567 [6:35:07<5:22:31, 66.27s/it]
49%|████▊ | 276/567 [6:36:30<5:45:59, 71.34s/it]
49%|████▉ | 277/567 [6:37:38<5:40:05, 70.36s/it]
49%|████▉ | 278/567 [6:38:07<4:39:11, 57.96s/it]
49%|████▉ | 279/567 [6:40:26<6:34:55, 82.28s/it]
49%|████▉ | 280/567 [6:41:47<6:32:19, 82.02s/it]
50%|████▉ | 281/567 [6:42:20<5:20:26, 67.23s/it]
50%|████▉ | 282/567 [6:43:06<4:48:32, 60.74s/it]
50%|████▉ | 283/567 [6:45:02<6:06:10, 77.36s/it]
50%|█████ | 284/567 [6:45:42<5:12:04, 66.17s/it]
50%|█████ | 285/567 [6:55:28<17:24:05, 222.15s/it]
50%|█████ | 286/567 [6:56:01<12:54:13, 165.31s/it]
51%|█████ | 287/567 [6:57:35<11:12:38, 144.14s/it]
51%|█████ | 288/567 [6:58:34<9:11:08, 118.53s/it]
51%|█████ | 289/567 [6:59:54<8:15:12, 106.88s/it]
51%|█████ | 290/567 [7:01:17<7:40:24, 99.73s/it]
51%|█████▏ | 291/567 [7:02:21<6:49:59, 89.13s/it]
51%|█████▏ | 292/567 [7:03:49<6:46:13, 88.63s/it]
52%|█████▏ | 293/567 [7:04:33<5:43:26, 75.20s/it]
52%|█████▏ | 294/567 [7:05:27<5:14:26, 69.11s/it]
52%|█████▏ | 295/567 [7:06:19<4:48:51, 63.72s/it]
52%|█████▏ | 296/567 [7:07:42<5:14:57, 69.73s/it]
52%|█████▏ | 297/567 [7:08:35<4:51:09, 64.70s/it]
53%|█████▎ | 298/567 [7:11:17<7:00:46, 93.85s/it]
53%|█████▎ | 299/567 [7:12:05<5:57:04, 79.94s/it]
53%|█████▎ | 300/567 [7:13:09<5:35:15, 75.34s/it]
53%|█████▎ | 301/567 [7:16:36<8:29:02, 114.82s/it]
53%|█████▎ | 302/567 [7:17:27<7:02:45, 95.72s/it]
53%|█████▎ | 303/567 [7:18:17<5:59:58, 81.81s/it]
54%|█████▎ | 304/567 [7:19:17<5:30:19, 75.36s/it]
54%|█████▍ | 305/567 [7:20:12<5:02:16, 69.22s/it]
54%|█████▍ | 306/567 [7:21:24<5:05:15, 70.17s/it]
54%|█████▍ | 307/567 [7:23:33<6:19:57, 87.68s/it]
54%|█████▍ | 308/567 [7:24:24<5:31:15, 76.74s/it]
54%|█████▍ | 309/567 [7:24:48<4:21:21, 60.78s/it]
55%|█████▍ | 310/567 [7:28:51<8:14:45, 115.51s/it]
55%|█████▍ | 311/567 [7:30:18<7:36:44, 107.05s/it]
55%|█████▌ | 312/567 [7:31:08<6:21:22, 89.74s/it]
55%|█████▌ | 313/567 [7:31:51<5:21:26, 75.93s/it]
55%|█████▌ | 314/567 [7:35:13<7:59:24, 113.70s/it]
56%|█████▌ | 315/567 [7:37:58<9:02:15, 129.11s/it]
56%|█████▌ | 316/567 [7:38:36<7:06:05, 101.85s/it]
56%|█████▌ | 317/567 [7:39:50<6:29:15, 93.42s/it]
56%|█████▌ | 318/567 [7:40:25<5:14:28, 75.78s/it]
56%|█████▋ | 319/567 [7:42:11<5:51:04, 84.94s/it]
56%|█████▋ | 320/567 [7:42:29<4:27:10, 64.90s/it]
57%|█████▋ | 321/567 [7:44:55<6:05:42, 89.20s/it]
57%|█████▋ | 322/567 [7:46:03<5:38:25, 82.88s/it]
57%|█████▋ | 323/567 [7:47:00<5:05:11, 75.05s/it]
57%|█████▋ | 324/567 [7:48:13<5:01:57, 74.56s/it]
57%|█████▋ | 325/567 [7:51:17<7:12:21, 107.20s/it]
57%|█████▋ | 326/567 [7:51:44<5:34:14, 83.22s/it]
58%|█████▊ | 327/567 [7:54:52<7:38:52, 114.72s/it]
58%|█████▊ | 328/567 [7:55:58<6:38:56, 100.15s/it]
58%|█████▊ | 329/567 [7:57:40<6:39:00, 100.59s/it]
58%|█████▊ | 330/567 [7:57:56<4:57:23, 75.29s/it]
58%|█████▊ | 331/567 [7:59:34<5:22:35, 82.01s/it]
59%|█████▊ | 332/567 [8:00:25<4:45:00, 72.77s/it]
59%|█████▊ | 333/567 [8:01:33<4:38:09, 71.32s/it]
59%|█████▉ | 334/567 [8:02:19<4:07:07, 63.64s/it]
59%|█████▉ | 335/567 [8:03:23<4:06:49, 63.84s/it]
59%|█████▉ | 336/567 [8:03:49<3:21:23, 52.31s/it]
59%|█████▉ | 337/567 [8:05:35<4:22:40, 68.53s/it]
60%|█████▉ | 338/567 [8:06:41<4:18:27, 67.72s/it]
60%|█████▉ | 339/567 [8:07:21<3:45:48, 59.42s/it]
60%|█████▉ | 340/567 [8:07:57<3:18:42, 52.52s/it]
60%|██████ | 341/567 [8:08:37<3:03:47, 48.79s/it]
60%|██████ | 342/567 [8:09:49<3:29:16, 55.80s/it]
60%|██████ | 343/567 [8:10:31<3:12:47, 51.64s/it]
61%|██████ | 344/567 [8:11:43<3:34:15, 57.65s/it]
61%|██████ | 345/567 [8:12:34<3:26:09, 55.72s/it]
61%|██████ | 346/567 [8:13:16<3:10:08, 51.62s/it]
61%|██████ | 347/567 [8:14:38<3:41:54, 60.52s/it]
61%|██████▏ | 348/567 [8:16:21<4:27:53, 73.39s/it]
62%|██████▏ | 349/567 [8:18:58<5:57:10, 98.31s/it]
62%|██████▏ | 350/567 [8:20:09<5:26:45, 90.35s/it]
62%|██████▏ | 351/567 [8:23:40<7:35:39, 126.57s/it]
62%|██████▏ | 352/567 [8:24:39<6:20:22, 106.15s/it]
62%|██████▏ | 353/567 [8:26:37<6:31:31, 109.77s/it]
62%|██████▏ | 354/567 [8:28:04<6:05:26, 102.94s/it]
63%|██████▎ | 355/567 [8:28:55<5:08:50, 87.41s/it]
63%|██████▎ | 356/567 [8:29:54<4:37:28, 78.90s/it]
63%|██████▎ | 357/567 [8:30:36<3:57:16, 67.80s/it]
63%|██████▎ | 358/567 [8:31:29<3:40:40, 63.35s/it]
63%|██████▎ | 359/567 [8:32:07<3:13:33, 55.83s/it]
63%|██████▎ | 360/567 [8:33:00<3:09:33, 54.95s/it]
64%|██████▎ | 361/567 [8:33:57<3:10:32, 55.50s/it]
64%|██████▍ | 362/567 [8:35:30<3:47:54, 66.71s/it]
64%|██████▍ | 363/567 [8:37:36<4:47:22, 84.52s/it]
64%|██████▍ | 364/567 [8:39:13<4:58:30, 88.23s/it]
64%|██████▍ | 365/567 [8:40:03<4:18:06, 76.66s/it]
65%|██████▍ | 366/567 [8:40:47<3:43:55, 66.85s/it]
65%|██████▍ | 367/567 [8:42:03<3:51:56, 69.58s/it]
65%|██████▍ | 368/567 [8:43:57<4:35:01, 82.92s/it]
65%|██████▌ | 369/567 [8:45:22<4:36:10, 83.69s/it]
65%|██████▌ | 370/567 [8:46:11<4:00:59, 73.40s/it]
65%|██████▌ | 371/567 [8:47:03<3:37:57, 66.72s/it]
66%|██████▌ | 372/567 [8:47:50<3:18:05, 60.95s/it]
66%|██████▌ | 373/567 [8:49:44<4:08:24, 76.83s/it]
66%|██████▌ | 374/567 [8:51:27<4:32:13, 84.63s/it]
66%|██████▌ | 375/567 [8:52:57<4:36:35, 86.44s/it]
66%|██████▋ | 376/567 [8:53:39<3:52:41, 73.10s/it]
66%|██████▋ | 377/567 [8:55:56<4:51:38, 92.10s/it]
67%|██████▋ | 378/567 [8:57:08<4:31:06, 86.07s/it]
67%|██████▋ | 379/567 [8:58:13<4:09:57, 79.77s/it]
67%|██████▋ | 380/567 [8:59:08<3:45:29, 72.35s/it]
67%|██████▋ | 381/567 [9:00:09<3:33:22, 68.83s/it]
67%|██████▋ | 382/567 [9:00:51<3:07:24, 60.78s/it]
68%|██████▊ | 383/567 [9:02:30<3:42:03, 72.41s/it]
68%|██████▊ | 384/567 [9:04:17<4:12:08, 82.67s/it]
68%|██████▊ | 385/567 [9:05:52<4:21:56, 86.35s/it]
68%|██████▊ | 386/567 [9:06:56<4:00:50, 79.84s/it]
68%|██████▊ | 387/567 [9:07:46<3:32:05, 70.70s/it]
68%|██████▊ | 388/567 [9:11:04<5:25:09, 108.99s/it]
69%|██████▊ | 389/567 [9:12:08<4:43:33, 95.58s/it]
69%|██████▉ | 390/567 [9:12:43<3:47:58, 77.28s/it]
69%|██████▉ | 391/567 [9:13:31<3:21:02, 68.54s/it]
69%|██████▉ | 392/567 [9:15:33<4:06:17, 84.44s/it]
69%|██████▉ | 393/567 [9:16:22<3:34:18, 73.90s/it]
69%|██████▉ | 394/567 [9:21:07<6:35:20, 137.11s/it]
70%|██████▉ | 395/567 [9:23:05<6:16:38, 131.39s/it]
70%|██████▉ | 396/567 [9:24:02<5:10:50, 109.07s/it]
70%|███████ | 397/567 [9:26:16<5:30:54, 116.79s/it]
70%|███████ | 398/567 [9:26:45<4:14:51, 90.48s/it]
70%|███████ | 399/567 [9:27:18<3:24:49, 73.15s/it]
71%|███████ | 400/567 [9:27:53<2:51:23, 61.58s/it]
71%|███████ | 401/567 [9:28:59<2:53:59, 62.89s/it]
71%|███████ | 402/567 [9:30:45<3:28:59, 76.00s/it]
71%|███████ | 403/567 [9:31:46<3:15:16, 71.44s/it]
71%|███████▏ | 404/567 [9:32:28<2:50:05, 62.61s/it]
71%|███████▏ | 405/567 [9:35:33<4:27:49, 99.20s/it]
72%|███████▏ | 406/567 [9:36:41<4:01:15, 89.91s/it]
72%|███████▏ | 407/567 [9:37:23<3:21:20, 75.51s/it]
72%|███████▏ | 408/567 [9:39:16<3:49:45, 86.70s/it]
72%|███████▏ | 409/567 [9:39:58<3:12:56, 73.27s/it]
72%|███████▏ | 410/567 [9:40:47<2:52:58, 66.10s/it]
72%|███████▏ | 411/567 [9:41:16<2:22:57, 54.99s/it]
73%|███████▎ | 412/567 [9:42:33<2:39:27, 61.73s/it]
73%|███████▎ | 413/567 [9:43:57<2:55:05, 68.22s/it]
73%|███████▎ | 414/567 [9:44:19<2:18:25, 54.29s/it]
73%|███████▎ | 415/567 [9:46:30<3:16:24, 77.53s/it]
73%|███████▎ | 416/567 [9:47:44<3:12:21, 76.44s/it]
74%|███████▎ | 417/567 [9:50:37<4:23:41, 105.48s/it]
74%|███████▎ | 418/567 [9:51:44<3:52:44, 93.72s/it]
74%|███████▍ | 419/567 [9:55:13<5:16:21, 128.25s/it]
74%|███████▍ | 420/567 [9:56:34<4:39:54, 114.25s/it]
74%|███████▍ | 421/567 [9:58:04<4:19:56, 106.82s/it]
74%|███████▍ | 422/567 [9:59:19<3:55:39, 97.51s/it]
75%|███████▍ | 423/567 [10:00:42<3:43:33, 93.15s/it]
75%|███████▍ | 424/567 [10:03:27<4:33:01, 114.56s/it]
75%|███████▍ | 425/567 [10:04:43<4:03:27, 102.87s/it]
75%|███████▌ | 426/567 [10:05:10<3:08:26, 80.19s/it]
75%|███████▌ | 427/567 [10:06:10<2:53:23, 74.31s/it]
75%|███████▌ | 428/567 [10:07:43<3:05:12, 79.95s/it]
76%|███████▌ | 429/567 [10:11:57<5:03:31, 131.97s/it]
76%|███████▌ | 430/567 [10:12:55<4:11:04, 109.96s/it]
76%|███████▌ | 431/567 [10:15:11<4:26:54, 117.76s/it]
76%|███████▌ | 432/567 [10:16:58<4:17:34, 114.48s/it]
76%|███████▋ | 433/567 [10:18:32<4:01:37, 108.19s/it]
77%|███████▋ | 434/567 [10:19:52<3:40:58, 99.69s/it]
77%|███████▋ | 435/567 [10:20:26<2:56:21, 80.17s/it]
77%|███████▋ | 436/567 [10:21:32<2:45:55, 76.00s/it]
77%|███████▋ | 437/567 [10:22:09<2:18:56, 64.13s/it]
77%|███████▋ | 438/567 [10:23:34<2:31:38, 70.53s/it]
77%|███████▋ | 439/567 [10:26:01<3:19:28, 93.51s/it]
78%|███████▊ | 440/567 [10:26:43<2:45:08, 78.02s/it]
78%|███████▊ | 441/567 [10:27:52<2:37:43, 75.11s/it]
78%|███████▊ | 442/567 [10:28:50<2:26:11, 70.18s/it]
78%|███████▊ | 443/567 [10:29:40<2:12:06, 63.93s/it]
78%|███████▊ | 444/567 [10:31:48<2:50:23, 83.12s/it]
78%|███████▊ | 445/567 [10:32:52<2:37:30, 77.47s/it]
79%|███████▊ | 446/567 [10:34:50<3:00:55, 89.71s/it]
79%|███████▉ | 447/567 [10:36:14<2:55:46, 87.89s/it]
79%|███████▉ | 448/567 [10:37:29<2:46:59, 84.20s/it]
79%|███████▉ | 449/567 [10:39:45<3:15:48, 99.56s/it]
79%|███████▉ | 450/567 [10:40:41<2:49:04, 86.71s/it]
80%|███████▉ | 451/567 [10:44:00<3:52:11, 120.10s/it]
80%|███████▉ | 452/567 [10:45:41<3:39:33, 114.55s/it]
80%|███████▉ | 453/567 [10:47:18<3:27:45, 109.34s/it]
80%|████████ | 454/567 [10:48:19<2:58:16, 94.66s/it]
80%|████████ | 455/567 [10:49:08<2:31:15, 81.03s/it]
80%|████████ | 456/567 [10:49:41<2:03:07, 66.55s/it]
81%|████████ | 457/567 [10:50:34<1:54:31, 62.47s/it]
81%|████████ | 458/567 [10:51:55<2:03:46, 68.13s/it]
81%|████████ | 459/567 [10:53:30<2:16:57, 76.09s/it]
81%|████████ | 460/567 [10:53:50<1:45:40, 59.26s/it]
81%|████████▏ | 461/567 [11:03:36<6:24:11, 217.47s/it]
81%|████████▏ | 462/567 [11:04:07<4:42:37, 161.50s/it]
82%|████████▏ | 463/567 [11:05:00<3:43:31, 128.96s/it]
82%|████████▏ | 464/567 [11:05:40<2:55:37, 102.30s/it]
82%|████████▏ | 465/567 [11:07:01<2:43:08, 95.96s/it]
82%|████████▏ | 466/567 [11:07:55<2:19:52, 83.09s/it]
82%|████████▏ | 467/567 [11:08:27<1:53:19, 68.00s/it]
83%|████████▎ | 468/567 [11:09:30<1:49:29, 66.35s/it]
83%|████████▎ | 469/567 [11:10:17<1:39:07, 60.69s/it]
83%|████████▎ | 470/567 [11:11:10<1:34:24, 58.40s/it]
83%|████████▎ | 471/567 [11:12:43<1:50:02, 68.77s/it]
83%|████████▎ | 472/567 [11:15:09<2:25:20, 91.79s/it]
83%|████████▎ | 473/567 [11:16:30<2:18:54, 88.67s/it]
84%|████████▎ | 474/567 [11:18:27<2:30:17, 96.97s/it]
84%|████████▍ | 475/567 [11:18:52<1:55:45, 75.50s/it]
84%|████████▍ | 476/567 [11:19:54<1:48:30, 71.54s/it]
84%|████████▍ | 477/567 [11:20:18<1:25:46, 57.18s/it]
84%|████████▍ | 478/567 [11:21:05<1:20:28, 54.26s/it]
84%|████████▍ | 479/567 [11:21:42<1:11:44, 48.91s/it]
85%|████████▍ | 480/567 [11:22:35<1:12:41, 50.13s/it]
85%|████████▍ | 481/567 [11:24:54<1:50:11, 76.88s/it]
85%|████████▌ | 482/567 [11:25:43<1:37:12, 68.62s/it]
85%|████████▌ | 483/567 [11:26:27<1:25:35, 61.13s/it]
85%|████████▌ | 484/567 [11:28:05<1:39:47, 72.13s/it]
86%|████████▌ | 485/567 [11:28:34<1:20:56, 59.23s/it]
86%|████████▌ | 486/567 [11:29:40<1:22:50, 61.36s/it]
86%|████████▌ | 487/567 [11:31:47<1:48:06, 81.08s/it]
86%|████████▌ | 488/567 [11:32:24<1:29:07, 67.68s/it]
86%|████████▌ | 489/567 [11:33:21<1:23:41, 64.38s/it]
86%|████████▋ | 490/567 [11:35:56<1:57:32, 91.60s/it]
87%|████████▋ | 491/567 [11:36:52<1:42:49, 81.17s/it]
87%|████████▋ | 492/567 [11:37:55<1:34:17, 75.43s/it]
87%|████████▋ | 493/567 [11:39:32<1:41:08, 82.00s/it]
87%|████████▋ | 494/567 [11:40:47<1:37:21, 80.01s/it]
87%|████████▋ | 495/567 [11:44:09<2:19:47, 116.49s/it]
87%|████████▋ | 496/567 [11:44:45<1:49:25, 92.47s/it]
88%|████████▊ | 497/567 [11:46:16<1:47:23, 92.05s/it]
88%|████████▊ | 498/567 [11:47:40<1:42:54, 89.48s/it]
88%|████████▊ | 499/567 [11:48:42<1:32:11, 81.34s/it]
88%|████████▊ | 500/567 [11:51:08<1:52:27, 100.71s/it]
88%|████████▊ | 501/567 [11:51:44<1:29:33, 81.42s/it]
89%|████████▊ | 502/567 [11:53:25<1:34:21, 87.10s/it]
89%|████████▊ | 503/567 [11:56:28<2:03:38, 115.91s/it]
89%|████████▉ | 504/567 [11:58:14<1:58:34, 112.92s/it]
89%|████████▉ | 505/567 [12:00:00<1:54:42, 111.01s/it]
89%|████████▉ | 506/567 [12:02:02<1:56:05, 114.19s/it]
89%|████████▉ | 507/567 [12:02:44<1:32:30, 92.51s/it]
90%|████████▉ | 508/567 [12:04:17<1:31:03, 92.61s/it]
90%|████████▉ | 509/567 [12:05:10<1:18:02, 80.73s/it]
90%|████████▉ | 510/567 [12:06:47<1:21:23, 85.67s/it]
90%|█████████ | 511/567 [12:08:05<1:17:46, 83.33s/it]
90%|█████████ | 512/567 [12:10:06<1:26:39, 94.53s/it]
90%|█████████ | 513/567 [12:11:24<1:20:37, 89.58s/it]
91%|█████████ | 514/567 [12:11:47<1:01:39, 69.80s/it]
91%|█████████ | 515/567 [12:13:24<1:07:22, 77.74s/it]
91%|█████████ | 516/567 [12:14:07<57:25, 67.56s/it]
91%|█████████ | 517/567 [12:15:19<57:23, 68.87s/it]
91%|█████████▏| 518/567 [12:16:47<1:00:57, 74.64s/it]
92%|█████████▏| 519/567 [12:17:48<56:21, 70.44s/it]
92%|█████████▏| 520/567 [12:18:39<50:39, 64.66s/it]
92%|█████████▏| 521/567 [12:19:42<49:02, 63.97s/it]
92%|█████████▏| 522/567 [12:21:13<54:04, 72.11s/it]
92%|█████████▏| 523/567 [12:22:19<51:38, 70.43s/it]
92%|█████████▏| 524/567 [12:23:35<51:36, 72.00s/it]
93%|█████████▎| 525/567 [12:24:37<48:24, 69.16s/it]
93%|█████████▎| 526/567 [12:25:45<46:59, 68.78s/it]
93%|█████████▎| 527/567 [12:26:50<44:58, 67.47s/it]
93%|█████████▎| 528/567 [12:27:30<38:30, 59.25s/it]
93%|█████████▎| 529/567 [12:28:28<37:22, 59.01s/it]
93%|█████████▎| 530/567 [12:30:09<44:07, 71.55s/it]
94%|█████████▎| 531/567 [12:30:58<38:56, 64.90s/it]
94%|█████████▍| 532/567 [12:31:50<35:28, 60.81s/it]
94%|█████████▍| 533/567 [12:32:30<30:55, 54.59s/it]
94%|█████████▍| 534/567 [12:33:06<27:01, 49.13s/it]
94%|█████████▍| 535/567 [12:34:22<30:25, 57.05s/it]
95%|█████████▍| 536/567 [12:35:22<30:01, 58.11s/it]
95%|█████████▍| 537/567 [12:36:57<34:34, 69.15s/it]
95%|█████████▍| 538/567 [12:37:39<29:29, 61.03s/it]
95%|█████████▌| 539/567 [12:40:21<42:32, 91.16s/it]
95%|█████████▌| 540/567 [12:44:01<58:27, 129.92s/it]
95%|█████████▌| 541/567 [12:46:13<56:35, 130.60s/it]
96%|█████████▌| 542/567 [12:47:57<51:06, 122.68s/it]
96%|█████████▌| 543/567 [12:51:42<1:01:19, 153.32s/it]
96%|█████████▌| 544/567 [12:52:02<43:25, 113.30s/it]
96%|█████████▌| 545/567 [12:53:10<36:34, 99.76s/it]
96%|█████████▋| 546/567 [12:54:07<30:23, 86.84s/it]
96%|█████████▋| 547/567 [12:54:42<23:43, 71.16s/it]
97%|█████████▋| 548/567 [12:55:27<20:06, 63.50s/it]
97%|█████████▋| 549/567 [12:56:05<16:46, 55.93s/it]
97%|█████████▋| 550/567 [12:57:30<18:18, 64.59s/it]
97%|█████████▋| 551/567 [12:58:33<17:03, 63.99s/it]
97%|█████████▋| 552/567 [13:00:13<18:43, 74.92s/it]
98%|█████████▊| 553/567 [13:00:51<14:54, 63.90s/it]
98%|█████████▊| 554/567 [13:01:33<12:24, 57.30s/it]
98%|█████████▊| 555/567 [13:02:25<11:05, 55.46s/it]
98%|█████████▊| 556/567 [13:03:03<09:13, 50.29s/it]
98%|█████████▊| 557/567 [13:04:40<10:42, 64.23s/it]
98%|█████████▊| 558/567 [13:05:42<09:33, 63.70s/it]
99%|█████████▊| 559/567 [13:07:21<09:54, 74.32s/it]
99%|█████████▉| 560/567 [13:08:50<09:10, 78.70s/it]
99%|█████████▉| 561/567 [13:11:12<09:46, 97.79s/it]
99%|█████████▉| 562/567 [13:13:30<09:08, 109.80s/it]
99%|█████████▉| 563/567 [13:14:50<06:42, 100.73s/it]
99%|█████████▉| 564/567 [13:16:27<04:58, 99.62s/it]
100%|█████████▉| 565/567 [13:17:25<02:54, 87.30s/it]
100%|█████████▉| 566/567 [13:18:30<01:20, 80.52s/it]
100%|██████████| 567/567 [13:18:37<00:00, 58.48s/it]
100%|██████████| 567/567 [13:18:37<00:00, 84.51s/it]
-Batch output: ['Old Geng raised his gun, squinted one eye into a triangle, pulled the trigger, and the gold sparrows fell like hailstones, scattering iron sand among the willow branches, making a scratching sound.', 'The next day, before dawn, Liu Laoma came up and washed and dressed herself. She also taught the boy a few phrases. A child of five or six years old, hearing that he was going to the city for a stroll, was delighted and readily agreed to everything.']
-internlm/internlm2_5-7b-chat/shots-50 metrics: {'meteor': 0.37213069871716603, 'bleu_scores': {'bleu': 0.11404688073207249, 'precisions': [0.4016852146263911, 0.15011379753933438, 0.07290167865707434, 0.03848483768663365], 'brevity_penalty': 1.0, 'length_ratio': 1.0417356740642596, 'translation_length': 31450, 'reference_length': 30190}, 'rouge_scores': {'rouge1': 0.4172038638240208, 'rouge2': 0.1799974821520059, 'rougeL': 0.3628937784387562, 'rougeLsum': 0.36323105410509215}, 'accuracy': 0.00176522506619594, 'correct_ids': [77, 935]}
-(3) GPU = NVIDIA L40. Max memory = 44.309 GB.
-43.797 GB of memory reserved.
-Current Directory:
-/common/home/users/d/dh.huang.2023/code/rapget-translation
-Evaluating Qwen/Qwen2-7B-Instruct
-[nltk_data] Downloading package wordnet to
-[nltk_data] /common/home/users/d/dh.huang.2023/nltk_data...
-[nltk_data] Package wordnet is already up-to-date!
-[nltk_data] Downloading package punkt to
-[nltk_data] /common/home/users/d/dh.huang.2023/nltk_data...
-[nltk_data] Package punkt is already up-to-date!
-[nltk_data] Downloading package omw-1.4 to
-[nltk_data] /common/home/users/d/dh.huang.2023/nltk_data...
-[nltk_data] Package omw-1.4 is already up-to-date!
-[nltk_data] Downloading package wordnet to
-[nltk_data] /common/home/users/d/dh.huang.2023/nltk_data...
-[nltk_data] Package wordnet is already up-to-date!
-[nltk_data] Downloading package punkt to
-[nltk_data] /common/home/users/d/dh.huang.2023/nltk_data...
-[nltk_data] Package punkt is already up-to-date!
-[nltk_data] Downloading package omw-1.4 to
-[nltk_data] /common/home/users/d/dh.huang.2023/nltk_data...
-[nltk_data] Package omw-1.4 is already up-to-date!
-loading env vars from: /common2/dh.huang.2023/code/rapget-translation/.env.example
-Adding /common2/dh.huang.2023/code/rapget-translation to sys.path
-loading: /common2/dh.huang.2023/code/rapget-translation/eval_modules/calc_repetitions.py
-loading /common2/dh.huang.2023/code/rapget-translation/llm_toolkit/translation_utils.py
-CUDA is available, we have found 1 GPU(s)
-NVIDIA L40
-CUDA version: 12.1
-Qwen/Qwen2-7B-Instruct None False datasets/mac/mac.tsv results/mac-results_few_shots.csv False 300 2
-(0) GPU = NVIDIA L40. Max memory = 44.309 GB.
-0.0 GB of memory reserved.
-loading model: Qwen/Qwen2-7B-Instruct with adapter: None
-
Loading checkpoint shards: 0%| | 0/4 [00:00, ?it/s]
Loading checkpoint shards: 25%|██▌ | 1/4 [00:03<00:10, 3.40s/it]
Loading checkpoint shards: 50%|█████ | 2/4 [00:06<00:06, 3.34s/it]
Loading checkpoint shards: 75%|███████▌ | 3/4 [00:10<00:03, 3.33s/it]
Loading checkpoint shards: 100%|██████████| 4/4 [00:12<00:00, 3.13s/it]
Loading checkpoint shards: 100%|██████████| 4/4 [00:12<00:00, 3.21s/it]
-(2) GPU = NVIDIA L40. Max memory = 44.309 GB.
-14.881 GB of memory reserved.
-Evaluating model: Qwen/Qwen2-7B-Instruct on cuda
-*** Evaluating with num_shots: 0
-loading train/test data files
-
Map: 0%| | 0/4528 [00:00, ? examples/s]
Map: 88%|████████▊ | 4000/4528 [00:00<00:00, 30734.14 examples/s]
Map: 100%|██████████| 4528/4528 [00:00<00:00, 31095.68 examples/s]
-
Map: 0%| | 0/1133 [00:00, ? examples/s]
Map: 100%|██████████| 1133/1133 [00:00<00:00, 37570.83 examples/s]
-DatasetDict({
- train: Dataset({
- features: ['chinese', 'english', 'text', 'prompt'],
- num_rows: 4528
- })
- test: Dataset({
- features: ['chinese', 'english', 'text', 'prompt'],
- num_rows: 1133
- })
-})
---------------------------------------------------
-chinese: 老耿端起枪,眯缝起一只三角眼,一搂扳机响了枪,冰雹般的金麻雀劈哩啪啦往下落,铁砂子在柳枝间飞迸着,嚓嚓有声。
---------------------------------------------------
-english: Old Geng picked up his shotgun, squinted, and pulled the trigger. Two sparrows crashed to the ground like hailstones as shotgun pellets tore noisily through the branches.
---------------------------------------------------
-text: <|im_start|>system
-You are a helpful assistant that translates Chinese to English.<|im_end|>
-<|im_start|>user
-You will be given a Chinese sentence to translate. If it is an incomplete sentence, or if you are unsure about the meaning, simply copy the input text as your output. Do not output any additional sentence such as explanation or reasoning.
-
-Chinese: 老耿端起枪,眯缝起一只三角眼,一搂扳机响了枪,冰雹般的金麻雀劈哩啪啦往下落,铁砂子在柳枝间飞迸着,嚓嚓有声。
-English:<|im_end|>
-<|im_start|>assistant
-Old Geng picked up his shotgun, squinted, and pulled the trigger. Two sparrows crashed to the ground like hailstones as shotgun pellets tore noisily through the branches.<|im_end|>
---------------------------------------------------
-prompt: <|im_start|>system
-You are a helpful assistant that translates Chinese to English.<|im_end|>
-<|im_start|>user
-You will be given a Chinese sentence to translate. If it is an incomplete sentence, or if you are unsure about the meaning, simply copy the input text as your output. Do not output any additional sentence such as explanation or reasoning.
-
-Chinese: 老耿端起枪,眯缝起一只三角眼,一搂扳机响了枪,冰雹般的金麻雀劈哩啪啦往下落,铁砂子在柳枝间飞迸着,嚓嚓有声。
-English:<|im_end|>
-<|im_start|>assistant
-
-
0%| | 0/567 [00:00, ?it/s]
0%| | 1/567 [00:03<30:31, 3.24s/it]
0%| | 2/567 [00:07<34:54, 3.71s/it]
1%| | 3/567 [00:09<28:50, 3.07s/it]
1%| | 4/567 [00:14<34:36, 3.69s/it]
1%| | 5/567 [00:14<24:36, 2.63s/it]
1%| | 6/567 [00:16<21:04, 2.25s/it]
1%| | 7/567 [00:17<16:34, 1.78s/it]
1%|▏ | 8/567 [00:19<18:07, 1.94s/it]
2%|▏ | 9/567 [00:22<19:56, 2.14s/it]
2%|▏ | 10/567 [00:23<18:48, 2.03s/it]
2%|▏ | 11/567 [00:26<19:11, 2.07s/it]
2%|▏ | 12/567 [00:27<16:35, 1.79s/it]
2%|▏ | 13/567 [00:29<16:27, 1.78s/it]
2%|▏ | 14/567 [00:30<14:41, 1.59s/it]
3%|▎ | 15/567 [00:30<12:18, 1.34s/it]
3%|▎ | 16/567 [00:32<13:18, 1.45s/it]
3%|▎ | 17/567 [00:36<19:26, 2.12s/it]
3%|▎ | 18/567 [00:37<16:45, 1.83s/it]
3%|▎ | 19/567 [00:38<14:00, 1.53s/it]
4%|▎ | 20/567 [00:39<12:20, 1.35s/it]
4%|▎ | 21/567 [00:41<15:35, 1.71s/it]
4%|▍ | 22/567 [00:43<14:48, 1.63s/it]
4%|▍ | 23/567 [00:46<18:18, 2.02s/it]
4%|▍ | 24/567 [00:47<16:03, 1.77s/it]
4%|▍ | 25/567 [00:48<13:14, 1.47s/it]
5%|▍ | 26/567 [00:50<16:04, 1.78s/it]
5%|▍ | 27/567 [00:51<13:37, 1.51s/it]
5%|▍ | 28/567 [00:56<23:02, 2.57s/it]
5%|▌ | 29/567 [00:58<20:57, 2.34s/it]
5%|▌ | 30/567 [00:58<15:36, 1.74s/it]
5%|▌ | 31/567 [00:59<13:01, 1.46s/it]
6%|▌ | 32/567 [01:01<13:12, 1.48s/it]
6%|▌ | 33/567 [01:02<12:47, 1.44s/it]
6%|▌ | 34/567 [01:05<16:45, 1.89s/it]
6%|▌ | 35/567 [01:06<16:02, 1.81s/it]
6%|▋ | 36/567 [01:07<13:25, 1.52s/it]
7%|▋ | 37/567 [01:08<10:52, 1.23s/it]
7%|▋ | 38/567 [01:09<09:55, 1.13s/it]
7%|▋ | 39/567 [01:10<10:43, 1.22s/it]
7%|▋ | 40/567 [01:12<12:07, 1.38s/it]
7%|▋ | 41/567 [01:12<09:37, 1.10s/it]
7%|▋ | 42/567 [01:15<13:58, 1.60s/it]
8%|▊ | 43/567 [01:16<11:50, 1.36s/it]
8%|▊ | 44/567 [01:18<13:58, 1.60s/it]
8%|▊ | 45/567 [01:20<14:54, 1.71s/it]
8%|▊ | 46/567 [01:21<12:36, 1.45s/it]
8%|▊ | 47/567 [01:23<13:25, 1.55s/it]
8%|▊ | 48/567 [01:25<14:10, 1.64s/it]
9%|▊ | 49/567 [01:25<11:57, 1.39s/it]
9%|▉ | 50/567 [01:27<13:46, 1.60s/it]
9%|▉ | 51/567 [01:30<16:04, 1.87s/it]
9%|▉ | 52/567 [01:31<13:09, 1.53s/it]
9%|▉ | 53/567 [01:39<30:53, 3.61s/it]
10%|▉ | 54/567 [01:42<27:54, 3.26s/it]
10%|▉ | 55/567 [01:45<27:01, 3.17s/it]
10%|▉ | 56/567 [01:48<28:28, 3.34s/it]
10%|█ | 57/567 [01:49<22:35, 2.66s/it]
10%|█ | 58/567 [01:50<17:47, 2.10s/it]
10%|█ | 59/567 [01:52<17:38, 2.08s/it]
11%|█ | 60/567 [01:54<16:08, 1.91s/it]
11%|█ | 61/567 [01:55<14:18, 1.70s/it]
11%|█ | 62/567 [01:56<13:02, 1.55s/it]
11%|█ | 63/567 [01:58<13:46, 1.64s/it]
11%|█▏ | 64/567 [02:01<17:27, 2.08s/it]
11%|█▏ | 65/567 [02:02<14:45, 1.76s/it]
12%|█▏ | 66/567 [02:05<17:06, 2.05s/it]
12%|█▏ | 67/567 [02:06<14:29, 1.74s/it]
12%|█▏ | 68/567 [02:10<21:07, 2.54s/it]
12%|█▏ | 69/567 [02:11<17:59, 2.17s/it]
12%|█▏ | 70/567 [02:13<16:22, 1.98s/it]
13%|█▎ | 71/567 [02:14<13:30, 1.63s/it]
13%|█▎ | 72/567 [02:16<14:06, 1.71s/it]
13%|█▎ | 73/567 [02:17<11:48, 1.44s/it]
13%|█▎ | 74/567 [02:17<10:32, 1.28s/it]
13%|█▎ | 75/567 [02:19<09:57, 1.21s/it]
13%|█▎ | 76/567 [02:20<11:29, 1.40s/it]
14%|█▎ | 77/567 [02:22<12:29, 1.53s/it]
14%|█▍ | 78/567 [02:24<12:28, 1.53s/it]
14%|█▍ | 79/567 [02:26<14:34, 1.79s/it]
14%|█▍ | 80/567 [02:27<12:00, 1.48s/it]
14%|█▍ | 81/567 [02:28<10:44, 1.33s/it]
14%|█▍ | 82/567 [02:29<10:39, 1.32s/it]
15%|█▍ | 83/567 [02:31<11:32, 1.43s/it]
15%|█▍ | 84/567 [02:32<10:23, 1.29s/it]
15%|█▍ | 85/567 [02:33<09:23, 1.17s/it]
15%|█▌ | 86/567 [02:33<07:30, 1.07it/s]
15%|█▌ | 87/567 [02:34<07:01, 1.14it/s]
16%|█▌ | 88/567 [02:35<07:14, 1.10it/s]
16%|█▌ | 89/567 [02:38<13:41, 1.72s/it]
16%|█▌ | 90/567 [02:40<13:08, 1.65s/it]
16%|█▌ | 91/567 [02:42<15:10, 1.91s/it]
16%|█▌ | 92/567 [02:44<13:27, 1.70s/it]
16%|█▋ | 93/567 [02:44<10:57, 1.39s/it]
17%|█▋ | 94/567 [02:47<14:09, 1.80s/it]
17%|█▋ | 95/567 [02:48<12:11, 1.55s/it]
17%|█▋ | 96/567 [02:51<15:17, 1.95s/it]
17%|█▋ | 97/567 [02:53<15:05, 1.93s/it]
17%|█▋ | 98/567 [02:54<13:36, 1.74s/it]
17%|█▋ | 99/567 [02:55<12:26, 1.59s/it]
18%|█▊ | 100/567 [02:58<13:56, 1.79s/it]
18%|█▊ | 101/567 [02:59<12:14, 1.58s/it]
18%|█▊ | 102/567 [03:01<13:50, 1.79s/it]
18%|█▊ | 103/567 [03:02<11:11, 1.45s/it]
18%|█▊ | 104/567 [03:04<13:09, 1.70s/it]
19%|█▊ | 105/567 [03:09<21:43, 2.82s/it]
19%|█▊ | 106/567 [03:11<19:35, 2.55s/it]
19%|█▉ | 107/567 [03:12<15:24, 2.01s/it]
19%|█▉ | 108/567 [03:17<22:52, 2.99s/it]
19%|█▉ | 109/567 [03:18<17:23, 2.28s/it]
19%|█▉ | 110/567 [03:19<14:35, 1.92s/it]
20%|█▉ | 111/567 [03:24<20:35, 2.71s/it]
20%|█▉ | 112/567 [03:26<19:27, 2.57s/it]
20%|█▉ | 113/567 [03:29<21:24, 2.83s/it]
20%|██ | 114/567 [03:30<17:34, 2.33s/it]
20%|██ | 115/567 [03:33<17:25, 2.31s/it]
20%|██ | 116/567 [03:34<14:59, 1.99s/it]
21%|██ | 117/567 [03:35<13:11, 1.76s/it]
21%|██ | 118/567 [03:37<13:07, 1.75s/it]
21%|██ | 119/567 [03:41<17:39, 2.37s/it]
21%|██ | 120/567 [03:42<16:02, 2.15s/it]
21%|██▏ | 121/567 [03:43<12:28, 1.68s/it]
22%|██▏ | 122/567 [03:44<11:12, 1.51s/it]
22%|██▏ | 123/567 [03:45<10:26, 1.41s/it]
22%|██▏ | 124/567 [03:46<10:03, 1.36s/it]
22%|██▏ | 125/567 [03:47<09:28, 1.29s/it]
22%|██▏ | 126/567 [03:49<09:23, 1.28s/it]
22%|██▏ | 127/567 [03:52<13:43, 1.87s/it]
23%|██▎ | 128/567 [03:54<14:03, 1.92s/it]
23%|██▎ | 129/567 [03:57<15:24, 2.11s/it]
23%|██▎ | 130/567 [04:02<21:48, 2.99s/it]
23%|██▎ | 131/567 [04:05<22:43, 3.13s/it]
23%|██▎ | 132/567 [04:12<30:40, 4.23s/it]
23%|██▎ | 133/567 [04:18<35:12, 4.87s/it]
24%|██▎ | 134/567 [04:24<37:58, 5.26s/it]
24%|██▍ | 135/567 [04:26<29:32, 4.10s/it]
24%|██▍ | 136/567 [04:27<23:34, 3.28s/it]
24%|██▍ | 137/567 [04:28<18:58, 2.65s/it]
24%|██▍ | 138/567 [04:29<14:51, 2.08s/it]
25%|██▍ | 139/567 [04:31<13:32, 1.90s/it]
25%|██▍ | 140/567 [04:32<12:28, 1.75s/it]
25%|██▍ | 141/567 [04:33<11:06, 1.56s/it]
25%|██▌ | 142/567 [04:34<09:38, 1.36s/it]
25%|██▌ | 143/567 [04:35<08:59, 1.27s/it]
25%|██▌ | 144/567 [04:37<10:24, 1.48s/it]
26%|██▌ | 145/567 [04:39<10:22, 1.47s/it]
26%|██▌ | 146/567 [04:41<11:28, 1.63s/it]
26%|██▌ | 147/567 [04:44<15:18, 2.19s/it]
26%|██▌ | 148/567 [04:46<14:07, 2.02s/it]
26%|██▋ | 149/567 [04:46<11:25, 1.64s/it]
26%|██▋ | 150/567 [04:47<09:04, 1.31s/it]
27%|██▋ | 151/567 [04:47<07:20, 1.06s/it]
27%|██▋ | 152/567 [04:49<09:03, 1.31s/it]
27%|██▋ | 153/567 [04:53<13:21, 1.94s/it]
27%|██▋ | 154/567 [04:54<11:37, 1.69s/it]
27%|██▋ | 155/567 [04:55<10:57, 1.60s/it]
28%|██▊ | 156/567 [04:57<10:46, 1.57s/it]
28%|██▊ | 157/567 [04:58<09:45, 1.43s/it]
28%|██▊ | 158/567 [05:01<14:01, 2.06s/it]
28%|██▊ | 159/567 [05:02<12:09, 1.79s/it]
28%|██▊ | 160/567 [05:06<14:49, 2.19s/it]
28%|██▊ | 161/567 [05:06<12:08, 1.80s/it]
29%|██▊ | 162/567 [05:08<11:19, 1.68s/it]
29%|██▊ | 163/567 [05:09<10:04, 1.50s/it]
29%|██▉ | 164/567 [05:12<12:39, 1.88s/it]
29%|██▉ | 165/567 [05:14<12:42, 1.90s/it]
29%|██▉ | 166/567 [05:15<11:18, 1.69s/it]
29%|██▉ | 167/567 [05:18<14:31, 2.18s/it]
30%|██▉ | 168/567 [05:19<12:33, 1.89s/it]
30%|██▉ | 169/567 [05:21<12:22, 1.86s/it]
30%|██▉ | 170/567 [05:23<12:49, 1.94s/it]
30%|███ | 171/567 [05:25<12:34, 1.91s/it]
30%|███ | 172/567 [05:27<13:23, 2.03s/it]
31%|███ | 173/567 [05:29<11:38, 1.77s/it]
31%|███ | 174/567 [05:30<10:40, 1.63s/it]
31%|███ | 175/567 [05:32<10:55, 1.67s/it]
31%|███ | 176/567 [05:33<09:43, 1.49s/it]
31%|███ | 177/567 [05:35<11:47, 1.81s/it]
31%|███▏ | 178/567 [05:36<10:01, 1.55s/it]
32%|███▏ | 179/567 [05:38<10:51, 1.68s/it]
32%|███▏ | 180/567 [05:40<10:47, 1.67s/it]
32%|███▏ | 181/567 [05:41<10:25, 1.62s/it]
32%|███▏ | 182/567 [05:43<09:23, 1.46s/it]
32%|███▏ | 183/567 [05:43<07:33, 1.18s/it]
32%|███▏ | 184/567 [05:45<08:34, 1.34s/it]
33%|███▎ | 185/567 [05:45<07:04, 1.11s/it]
33%|███▎ | 186/567 [05:51<16:30, 2.60s/it]
33%|███▎ | 187/567 [05:53<14:04, 2.22s/it]
33%|███▎ | 188/567 [05:54<11:50, 1.87s/it]
33%|███▎ | 189/567 [05:55<10:43, 1.70s/it]
34%|███▎ | 190/567 [05:56<08:48, 1.40s/it]
34%|███▎ | 191/567 [05:59<12:15, 1.96s/it]
34%|███▍ | 192/567 [06:01<12:41, 2.03s/it]
34%|███▍ | 193/567 [06:08<20:54, 3.35s/it]
34%|███▍ | 194/567 [06:09<16:19, 2.63s/it]
34%|███▍ | 195/567 [06:10<13:59, 2.26s/it]
35%|███▍ | 196/567 [06:11<12:02, 1.95s/it]
35%|███▍ | 197/567 [06:14<13:43, 2.23s/it]
35%|███▍ | 198/567 [06:17<14:28, 2.35s/it]
35%|███▌ | 199/567 [06:19<13:49, 2.25s/it]
35%|███▌ | 200/567 [06:20<11:57, 1.96s/it]
35%|███▌ | 201/567 [06:21<10:17, 1.69s/it]
36%|███▌ | 202/567 [06:22<09:07, 1.50s/it]
36%|███▌ | 203/567 [06:23<08:43, 1.44s/it]
36%|███▌ | 204/567 [06:25<08:00, 1.32s/it]
36%|███▌ | 205/567 [06:27<09:17, 1.54s/it]
36%|███▋ | 206/567 [06:29<11:26, 1.90s/it]
37%|███▋ | 207/567 [06:31<10:54, 1.82s/it]
37%|███▋ | 208/567 [06:34<12:25, 2.08s/it]
37%|███▋ | 209/567 [06:34<10:05, 1.69s/it]
37%|███▋ | 210/567 [06:36<10:25, 1.75s/it]
37%|███▋ | 211/567 [06:38<10:16, 1.73s/it]
37%|███▋ | 212/567 [06:41<12:59, 2.20s/it]
38%|███▊ | 213/567 [06:43<12:42, 2.16s/it]
38%|███▊ | 214/567 [06:45<11:42, 1.99s/it]
38%|███▊ | 215/567 [06:47<11:35, 1.98s/it]
38%|███▊ | 216/567 [06:49<11:01, 1.88s/it]
38%|███▊ | 217/567 [06:51<12:00, 2.06s/it]
38%|███▊ | 218/567 [06:54<13:28, 2.32s/it]
39%|███▊ | 219/567 [06:56<12:24, 2.14s/it]
39%|███▉ | 220/567 [06:57<10:55, 1.89s/it]
39%|███▉ | 221/567 [06:58<09:13, 1.60s/it]
39%|███▉ | 222/567 [06:59<08:32, 1.48s/it]
39%|███▉ | 223/567 [07:00<07:37, 1.33s/it]
40%|███▉ | 224/567 [07:02<07:50, 1.37s/it]
40%|███▉ | 225/567 [07:04<09:08, 1.60s/it]
40%|███▉ | 226/567 [07:06<09:54, 1.74s/it]
40%|████ | 227/567 [07:07<08:29, 1.50s/it]
40%|████ | 228/567 [07:09<09:00, 1.59s/it]
40%|████ | 229/567 [07:11<10:54, 1.94s/it]
41%|████ | 230/567 [07:12<09:34, 1.70s/it]
41%|████ | 231/567 [07:15<10:29, 1.87s/it]
41%|████ | 232/567 [07:16<09:31, 1.71s/it]
41%|████ | 233/567 [07:19<11:11, 2.01s/it]
41%|████▏ | 234/567 [07:19<08:41, 1.57s/it]
41%|████▏ | 235/567 [07:21<09:41, 1.75s/it]
42%|████▏ | 236/567 [07:26<13:44, 2.49s/it]
42%|████▏ | 237/567 [07:26<10:49, 1.97s/it]
42%|████▏ | 238/567 [07:28<10:12, 1.86s/it]
42%|████▏ | 239/567 [07:30<10:24, 1.90s/it]
42%|████▏ | 240/567 [07:36<17:28, 3.21s/it]
43%|████▎ | 241/567 [07:38<14:55, 2.75s/it]
43%|████▎ | 242/567 [07:39<12:15, 2.26s/it]
43%|████▎ | 243/567 [07:41<11:49, 2.19s/it]
43%|████▎ | 244/567 [07:44<12:50, 2.38s/it]
43%|████▎ | 245/567 [07:45<10:05, 1.88s/it]
43%|████▎ | 246/567 [07:46<09:36, 1.80s/it]
44%|████▎ | 247/567 [07:47<07:45, 1.46s/it]
44%|████▎ | 248/567 [07:49<08:36, 1.62s/it]
44%|████▍ | 249/567 [07:50<07:55, 1.50s/it]
44%|████▍ | 250/567 [07:52<09:10, 1.74s/it]
44%|████▍ | 251/567 [07:56<11:54, 2.26s/it]
44%|████▍ | 252/567 [07:58<11:56, 2.27s/it]
45%|████▍ | 253/567 [07:59<09:30, 1.82s/it]
45%|████▍ | 254/567 [08:05<16:11, 3.10s/it]
45%|████▍ | 255/567 [08:07<14:16, 2.75s/it]
45%|████▌ | 256/567 [08:08<11:07, 2.15s/it]
45%|████▌ | 257/567 [08:11<12:53, 2.49s/it]
46%|████▌ | 258/567 [08:13<12:16, 2.38s/it]
46%|████▌ | 259/567 [08:15<11:57, 2.33s/it]
46%|████▌ | 260/567 [08:19<14:28, 2.83s/it]
46%|████▌ | 261/567 [08:21<12:33, 2.46s/it]
46%|████▌ | 262/567 [08:23<12:37, 2.48s/it]
46%|████▋ | 263/567 [08:24<10:11, 2.01s/it]
47%|████▋ | 264/567 [08:25<07:58, 1.58s/it]
47%|████▋ | 265/567 [08:29<11:46, 2.34s/it]
47%|████▋ | 266/567 [08:30<09:41, 1.93s/it]
47%|████▋ | 267/567 [08:32<08:58, 1.80s/it]
47%|████▋ | 268/567 [08:34<10:44, 2.15s/it]
47%|████▋ | 269/567 [08:38<12:07, 2.44s/it]
48%|████▊ | 270/567 [08:39<10:19, 2.08s/it]
48%|████▊ | 271/567 [08:42<11:12, 2.27s/it]
48%|████▊ | 272/567 [08:47<16:14, 3.30s/it]
48%|████▊ | 273/567 [08:49<13:11, 2.69s/it]
48%|████▊ | 274/567 [08:50<10:41, 2.19s/it]
49%|████▊ | 275/567 [08:51<09:21, 1.92s/it]
49%|████▊ | 276/567 [08:53<09:28, 1.95s/it]
49%|████▉ | 277/567 [08:55<09:05, 1.88s/it]
49%|████▉ | 278/567 [08:55<07:32, 1.57s/it]
49%|████▉ | 279/567 [08:59<10:01, 2.09s/it]
49%|████▉ | 280/567 [09:01<09:35, 2.01s/it]
50%|████▉ | 281/567 [09:04<12:05, 2.54s/it]
50%|████▉ | 282/567 [09:05<10:01, 2.11s/it]
50%|████▉ | 283/567 [09:08<11:02, 2.33s/it]
50%|█████ | 284/567 [09:09<08:57, 1.90s/it]
50%|█████ | 285/567 [09:10<07:22, 1.57s/it]
50%|█████ | 286/567 [09:11<06:26, 1.37s/it]
51%|█████ | 287/567 [09:13<07:43, 1.66s/it]
51%|█████ | 288/567 [09:15<07:25, 1.60s/it]
51%|█████ | 289/567 [09:17<08:28, 1.83s/it]
51%|█████ | 290/567 [09:19<08:48, 1.91s/it]
51%|█████▏ | 291/567 [09:21<08:06, 1.76s/it]
51%|█████▏ | 292/567 [09:23<08:38, 1.89s/it]
52%|█████▏ | 293/567 [09:25<08:29, 1.86s/it]
52%|█████▏ | 294/567 [09:26<07:41, 1.69s/it]
52%|█████▏ | 295/567 [09:27<06:52, 1.52s/it]
52%|█████▏ | 296/567 [09:29<07:44, 1.71s/it]
52%|█████▏ | 297/567 [09:30<07:05, 1.58s/it]
53%|█████▎ | 298/567 [09:35<11:48, 2.64s/it]
53%|█████▎ | 299/567 [09:37<09:58, 2.23s/it]
53%|█████▎ | 300/567 [09:39<09:33, 2.15s/it]
53%|█████▎ | 301/567 [09:41<09:22, 2.11s/it]
53%|█████▎ | 302/567 [09:42<08:04, 1.83s/it]
53%|█████▎ | 303/567 [09:43<07:09, 1.63s/it]
54%|█████▎ | 304/567 [09:44<06:41, 1.53s/it]
54%|█████▍ | 305/567 [09:46<06:41, 1.53s/it]
54%|█████▍ | 306/567 [09:48<07:46, 1.79s/it]
54%|█████▍ | 307/567 [09:52<10:14, 2.36s/it]
54%|█████▍ | 308/567 [09:53<08:42, 2.02s/it]
54%|█████▍ | 309/567 [09:54<06:41, 1.56s/it]
55%|█████▍ | 310/567 [10:02<15:26, 3.61s/it]
55%|█████▍ | 311/567 [10:05<14:20, 3.36s/it]
55%|█████▌ | 312/567 [10:06<11:25, 2.69s/it]
55%|█████▌ | 313/567 [10:07<09:19, 2.20s/it]
55%|█████▌ | 314/567 [10:09<09:19, 2.21s/it]
56%|█████▌ | 315/567 [10:14<11:56, 2.84s/it]
56%|█████▌ | 316/567 [10:14<09:26, 2.26s/it]
56%|█████▌ | 317/567 [10:16<08:43, 2.09s/it]
56%|█████▌ | 318/567 [10:17<07:20, 1.77s/it]
56%|█████▋ | 319/567 [10:20<08:33, 2.07s/it]
56%|█████▋ | 320/567 [10:20<06:20, 1.54s/it]
57%|█████▋ | 321/567 [10:24<09:10, 2.24s/it]
57%|█████▋ | 322/567 [10:26<08:20, 2.04s/it]
57%|█████▋ | 323/567 [10:27<07:57, 1.96s/it]
57%|█████▋ | 324/567 [10:29<07:00, 1.73s/it]
57%|█████▋ | 325/567 [10:34<11:30, 2.85s/it]
57%|█████▋ | 326/567 [10:35<08:45, 2.18s/it]
58%|█████▊ | 327/567 [10:36<07:16, 1.82s/it]
58%|█████▊ | 328/567 [10:38<07:28, 1.88s/it]
58%|█████▊ | 329/567 [10:41<09:10, 2.31s/it]
58%|█████▊ | 330/567 [10:41<06:51, 1.74s/it]
58%|█████▊ | 331/567 [10:43<06:18, 1.61s/it]
59%|█████▊ | 332/567 [10:44<05:39, 1.45s/it]
59%|█████▊ | 333/567 [10:45<05:24, 1.39s/it]
59%|█████▉ | 334/567 [10:46<04:58, 1.28s/it]
59%|█████▉ | 335/567 [10:47<04:58, 1.29s/it]
59%|█████▉ | 336/567 [10:48<04:38, 1.20s/it]
59%|█████▉ | 337/567 [10:51<06:18, 1.65s/it]
60%|█████▉ | 338/567 [10:52<05:27, 1.43s/it]
60%|█████▉ | 339/567 [10:53<04:55, 1.29s/it]
60%|█████▉ | 340/567 [10:54<04:25, 1.17s/it]
60%|██████ | 341/567 [10:55<04:22, 1.16s/it]
60%|██████ | 342/567 [10:57<05:08, 1.37s/it]
60%|██████ | 343/567 [10:58<04:46, 1.28s/it]
61%|██████ | 344/567 [11:00<05:09, 1.39s/it]
61%|██████ | 345/567 [11:01<04:53, 1.32s/it]
61%|██████ | 346/567 [11:02<04:35, 1.25s/it]
61%|██████ | 347/567 [11:04<05:22, 1.46s/it]
61%|██████▏ | 348/567 [11:05<05:25, 1.49s/it]
62%|██████▏ | 349/567 [11:09<08:14, 2.27s/it]
62%|██████▏ | 350/567 [11:11<07:42, 2.13s/it]
62%|██████▏ | 351/567 [11:19<13:38, 3.79s/it]
62%|██████▏ | 352/567 [11:20<10:42, 2.99s/it]
62%|██████▏ | 353/567 [11:24<11:13, 3.15s/it]
62%|██████▏ | 354/567 [11:26<10:18, 2.90s/it]
63%|██████▎ | 355/567 [11:27<08:36, 2.43s/it]
63%|██████▎ | 356/567 [11:29<08:19, 2.37s/it]
63%|██████▎ | 357/567 [11:30<06:46, 1.94s/it]
63%|██████▎ | 358/567 [11:32<05:52, 1.69s/it]
63%|██████▎ | 359/567 [11:32<04:58, 1.44s/it]
63%|██████▎ | 360/567 [11:34<04:51, 1.41s/it]
64%|██████▎ | 361/567 [11:35<04:37, 1.35s/it]
64%|██████▍ | 362/567 [11:38<05:56, 1.74s/it]
64%|██████▍ | 363/567 [11:41<07:45, 2.28s/it]
64%|██████▍ | 364/567 [11:44<08:35, 2.54s/it]
64%|██████▍ | 365/567 [11:46<07:33, 2.24s/it]
65%|██████▍ | 366/567 [11:47<06:32, 1.95s/it]
65%|██████▍ | 367/567 [11:49<06:51, 2.06s/it]
65%|██████▍ | 368/567 [11:52<07:46, 2.34s/it]
65%|██████▌ | 369/567 [11:55<07:50, 2.38s/it]
65%|██████▌ | 370/567 [11:56<06:44, 2.05s/it]
65%|██████▌ | 371/567 [11:57<05:46, 1.77s/it]
66%|██████▌ | 372/567 [11:58<04:55, 1.52s/it]
66%|██████▌ | 373/567 [12:00<05:41, 1.76s/it]
66%|██████▌ | 374/567 [12:04<07:05, 2.20s/it]
66%|██████▌ | 375/567 [12:06<07:09, 2.24s/it]
66%|██████▋ | 376/567 [12:07<05:55, 1.86s/it]
66%|██████▋ | 377/567 [12:11<08:00, 2.53s/it]
67%|██████▋ | 378/567 [12:13<07:21, 2.34s/it]
67%|██████▋ | 379/567 [12:16<07:57, 2.54s/it]
67%|██████▋ | 380/567 [12:17<06:41, 2.15s/it]
67%|██████▋ | 381/567 [12:19<06:15, 2.02s/it]
67%|██████▋ | 382/567 [12:20<05:10, 1.68s/it]
68%|██████▊ | 383/567 [12:23<06:08, 2.00s/it]
68%|██████▊ | 384/567 [12:26<07:05, 2.32s/it]
68%|██████▊ | 385/567 [12:28<07:26, 2.45s/it]
68%|██████▊ | 386/567 [12:30<06:41, 2.22s/it]
68%|██████▊ | 387/567 [12:32<05:54, 1.97s/it]
68%|██████▊ | 388/567 [12:40<11:17, 3.78s/it]
69%|██████▊ | 389/567 [12:41<09:27, 3.19s/it]
69%|██████▉ | 390/567 [12:42<07:26, 2.52s/it]
69%|██████▉ | 391/567 [12:44<07:06, 2.42s/it]
69%|██████▉ | 392/567 [12:47<06:58, 2.39s/it]
69%|██████▉ | 393/567 [12:48<05:39, 1.95s/it]
69%|██████▉ | 394/567 [12:50<05:49, 2.02s/it]
70%|██████▉ | 395/567 [12:53<06:37, 2.31s/it]
70%|██████▉ | 396/567 [12:55<06:04, 2.13s/it]
70%|███████ | 397/567 [12:59<08:14, 2.91s/it]
70%|███████ | 398/567 [13:00<06:19, 2.25s/it]
70%|███████ | 399/567 [13:01<05:01, 1.80s/it]
71%|███████ | 400/567 [13:02<04:25, 1.59s/it]
71%|███████ | 401/567 [13:03<04:14, 1.53s/it]
71%|███████ | 402/567 [13:06<05:02, 1.83s/it]
71%|███████ | 403/567 [13:08<04:59, 1.83s/it]
71%|███████▏ | 404/567 [13:09<04:18, 1.58s/it]
71%|███████▏ | 405/567 [13:10<03:47, 1.40s/it]
72%|███████▏ | 406/567 [13:11<04:07, 1.54s/it]
72%|███████▏ | 407/567 [13:12<03:40, 1.38s/it]
72%|███████▏ | 408/567 [13:15<04:56, 1.87s/it]
72%|███████▏ | 409/567 [13:17<04:16, 1.63s/it]
72%|███████▏ | 410/567 [13:18<04:02, 1.54s/it]
72%|███████▏ | 411/567 [13:19<03:21, 1.29s/it]
73%|███████▎ | 412/567 [13:21<03:58, 1.54s/it]
73%|███████▎ | 413/567 [13:23<04:11, 1.63s/it]
73%|███████▎ | 414/567 [13:23<03:23, 1.33s/it]
73%|███████▎ | 415/567 [13:27<05:18, 2.09s/it]
73%|███████▎ | 416/567 [13:29<05:09, 2.05s/it]
74%|███████▎ | 417/567 [13:34<07:11, 2.87s/it]
74%|███████▎ | 418/567 [13:35<06:13, 2.51s/it]
74%|███████▍ | 419/567 [13:42<09:12, 3.73s/it]
74%|███████▍ | 420/567 [13:44<07:59, 3.26s/it]
74%|███████▍ | 421/567 [13:47<07:35, 3.12s/it]
74%|███████▍ | 422/567 [13:49<06:37, 2.74s/it]
75%|███████▍ | 423/567 [13:51<05:53, 2.46s/it]
75%|███████▍ | 424/567 [13:53<05:48, 2.43s/it]
75%|███████▍ | 425/567 [13:55<05:19, 2.25s/it]
75%|███████▌ | 426/567 [13:56<04:11, 1.78s/it]
75%|███████▌ | 427/567 [13:57<03:51, 1.66s/it]
75%|███████▌ | 428/567 [14:00<04:36, 1.99s/it]
76%|███████▌ | 429/567 [14:03<05:20, 2.32s/it]
76%|███████▌ | 430/567 [14:04<04:44, 2.07s/it]
76%|███████▌ | 431/567 [14:08<06:06, 2.69s/it]
76%|███████▌ | 432/567 [14:12<06:34, 2.92s/it]
76%|███████▋ | 433/567 [14:15<06:27, 2.89s/it]
77%|███████▋ | 434/567 [14:17<06:10, 2.78s/it]
77%|███████▋ | 435/567 [14:21<06:49, 3.10s/it]
77%|███████▋ | 436/567 [14:23<05:48, 2.66s/it]
77%|███████▋ | 437/567 [14:24<04:34, 2.12s/it]
77%|███████▋ | 438/567 [14:26<04:55, 2.29s/it]
77%|███████▋ | 439/567 [14:28<04:31, 2.12s/it]
78%|███████▊ | 440/567 [14:29<03:42, 1.75s/it]
78%|███████▊ | 441/567 [14:31<03:43, 1.77s/it]
78%|███████▊ | 442/567 [14:32<03:24, 1.63s/it]
78%|███████▊ | 443/567 [14:33<03:08, 1.52s/it]
78%|███████▊ | 444/567 [14:37<04:28, 2.18s/it]
78%|███████▊ | 445/567 [14:39<04:10, 2.06s/it]
79%|███████▊ | 446/567 [14:42<04:46, 2.37s/it]
79%|███████▉ | 447/567 [14:44<04:35, 2.30s/it]
79%|███████▉ | 448/567 [14:46<04:23, 2.21s/it]
79%|███████▉ | 449/567 [14:47<03:40, 1.87s/it]
79%|███████▉ | 450/567 [14:48<03:23, 1.74s/it]
80%|███████▉ | 451/567 [14:49<02:54, 1.50s/it]
80%|███████▉ | 452/567 [14:51<02:54, 1.52s/it]
80%|███████▉ | 453/567 [14:54<03:39, 1.92s/it]
80%|████████ | 454/567 [14:55<03:21, 1.78s/it]
80%|████████ | 455/567 [14:56<02:56, 1.58s/it]
80%|████████ | 456/567 [14:57<02:32, 1.37s/it]
81%|████████ | 457/567 [14:59<02:26, 1.33s/it]
81%|████████ | 458/567 [15:01<02:47, 1.54s/it]
81%|████████ | 459/567 [15:03<03:08, 1.74s/it]
81%|████████ | 460/567 [15:03<02:24, 1.35s/it]
81%|████████▏ | 461/567 [15:04<02:18, 1.31s/it]
81%|████████▏ | 462/567 [15:05<01:59, 1.14s/it]
82%|████████▏ | 463/567 [15:06<01:59, 1.15s/it]
82%|████████▏ | 464/567 [15:07<01:50, 1.07s/it]
82%|████████▏ | 465/567 [15:09<02:05, 1.23s/it]
82%|████████▏ | 466/567 [15:10<02:02, 1.21s/it]
82%|████████▏ | 467/567 [15:11<01:47, 1.07s/it]
83%|████████▎ | 468/567 [15:13<02:23, 1.45s/it]
83%|████████▎ | 469/567 [15:14<02:11, 1.34s/it]
83%|████████▎ | 470/567 [15:16<02:17, 1.41s/it]
83%|████████▎ | 471/567 [15:18<02:52, 1.79s/it]
83%|████████▎ | 472/567 [15:22<03:51, 2.44s/it]
83%|████████▎ | 473/567 [15:24<03:39, 2.34s/it]
84%|████████▎ | 474/567 [15:28<03:58, 2.56s/it]
84%|████████▍ | 475/567 [15:29<03:20, 2.18s/it]
84%|████████▍ | 476/567 [15:30<02:50, 1.87s/it]
84%|████████▍ | 477/567 [15:31<02:13, 1.48s/it]
84%|████████▍ | 478/567 [15:32<01:59, 1.34s/it]
84%|████████▍ | 479/567 [15:32<01:43, 1.18s/it]
85%|████████▍ | 480/567 [15:34<01:44, 1.20s/it]
85%|████████▍ | 481/567 [15:37<02:41, 1.88s/it]
85%|████████▌ | 482/567 [15:38<02:22, 1.68s/it]
85%|████████▌ | 483/567 [15:39<02:04, 1.48s/it]
85%|████████▌ | 484/567 [15:43<02:46, 2.01s/it]
86%|████████▌ | 485/567 [15:44<02:21, 1.73s/it]
86%|████████▌ | 486/567 [15:45<02:18, 1.71s/it]
86%|████████▌ | 487/567 [15:50<03:25, 2.57s/it]
86%|████████▌ | 488/567 [15:51<02:42, 2.06s/it]
86%|████████▌ | 489/567 [15:52<02:20, 1.81s/it]
86%|████████▋ | 490/567 [15:57<03:26, 2.69s/it]
87%|████████▋ | 491/567 [15:58<02:52, 2.27s/it]
87%|████████▋ | 492/567 [15:59<02:17, 1.83s/it]
87%|████████▋ | 493/567 [16:01<02:26, 1.98s/it]
87%|████████▋ | 494/567 [16:03<02:21, 1.94s/it]
87%|████████▋ | 495/567 [16:11<04:31, 3.77s/it]
87%|████████▋ | 496/567 [16:12<03:27, 2.92s/it]
88%|████████▊ | 497/567 [16:15<03:18, 2.84s/it]
88%|████████▊ | 498/567 [16:16<02:55, 2.54s/it]
88%|████████▊ | 499/567 [16:18<02:31, 2.23s/it]
88%|████████▊ | 500/567 [16:21<02:40, 2.40s/it]
88%|████████▊ | 501/567 [16:22<02:09, 1.96s/it]
89%|████████▊ | 502/567 [16:24<02:16, 2.11s/it]
89%|████████▊ | 503/567 [16:30<03:25, 3.22s/it]
89%|████████▉ | 504/567 [16:32<03:01, 2.89s/it]
89%|████████▉ | 505/567 [16:35<03:00, 2.91s/it]
89%|████████▉ | 506/567 [16:38<03:05, 3.05s/it]
89%|████████▉ | 507/567 [16:39<02:23, 2.40s/it]
90%|████████▉ | 508/567 [16:41<02:13, 2.27s/it]
90%|████████▉ | 509/567 [16:42<01:52, 1.94s/it]
90%|████████▉ | 510/567 [16:45<02:00, 2.11s/it]
90%|█████████ | 511/567 [16:47<01:50, 1.97s/it]
90%|█████████ | 512/567 [16:50<02:18, 2.52s/it]
90%|█████████ | 513/567 [16:52<02:04, 2.31s/it]
91%|█████████ | 514/567 [16:53<01:37, 1.84s/it]
91%|█████████ | 515/567 [16:54<01:28, 1.71s/it]
91%|█████████ | 516/567 [16:55<01:18, 1.53s/it]
91%|█████████ | 517/567 [16:57<01:17, 1.56s/it]
91%|█████████▏| 518/567 [16:58<01:04, 1.32s/it]
92%|█████████▏| 519/567 [16:59<01:04, 1.33s/it]
92%|█████████▏| 520/567 [17:00<01:00, 1.28s/it]
92%|█████████▏| 521/567 [17:02<01:02, 1.36s/it]
92%|█████████▏| 522/567 [17:04<01:16, 1.69s/it]
92%|█████████▏| 523/567 [17:06<01:12, 1.64s/it]
92%|█████████▏| 524/567 [17:07<01:08, 1.59s/it]
93%|█████████▎| 525/567 [17:09<01:07, 1.62s/it]
93%|█████████▎| 526/567 [17:11<01:04, 1.58s/it]
93%|█████████▎| 527/567 [17:13<01:09, 1.73s/it]
93%|█████████▎| 528/567 [17:14<00:57, 1.49s/it]
93%|█████████▎| 529/567 [17:15<00:55, 1.46s/it]
93%|█████████▎| 530/567 [17:18<01:09, 1.87s/it]
94%|█████████▎| 531/567 [17:19<01:02, 1.73s/it]
94%|█████████▍| 532/567 [17:21<00:59, 1.69s/it]
94%|█████████▍| 533/567 [17:22<00:49, 1.47s/it]
94%|█████████▍| 534/567 [17:23<00:42, 1.28s/it]
94%|█████████▍| 535/567 [17:25<00:49, 1.55s/it]
95%|█████████▍| 536/567 [17:26<00:47, 1.52s/it]
95%|█████████▍| 537/567 [17:28<00:52, 1.74s/it]
95%|█████████▍| 538/567 [17:29<00:43, 1.50s/it]
95%|█████████▌| 539/567 [17:34<01:04, 2.29s/it]
95%|█████████▌| 540/567 [17:39<01:27, 3.24s/it]
95%|█████████▌| 541/567 [17:43<01:27, 3.36s/it]
96%|█████████▌| 542/567 [17:45<01:17, 3.11s/it]
96%|█████████▌| 543/567 [17:53<01:47, 4.48s/it]
96%|█████████▌| 544/567 [17:53<01:15, 3.28s/it]
96%|█████████▌| 545/567 [17:55<01:01, 2.81s/it]
96%|█████████▋| 546/567 [17:56<00:48, 2.32s/it]
96%|█████████▋| 547/567 [17:57<00:38, 1.92s/it]
97%|█████████▋| 548/567 [17:58<00:32, 1.72s/it]
97%|█████████▋| 549/567 [17:59<00:26, 1.48s/it]
97%|█████████▋| 550/567 [18:01<00:25, 1.50s/it]
97%|█████████▋| 551/567 [18:03<00:25, 1.58s/it]
97%|█████████▋| 552/567 [18:06<00:30, 2.00s/it]
98%|█████████▊| 553/567 [18:07<00:24, 1.72s/it]
98%|█████████▊| 554/567 [18:08<00:19, 1.51s/it]
98%|█████████▊| 555/567 [18:09<00:17, 1.42s/it]
98%|█████████▊| 556/567 [18:10<00:14, 1.30s/it]
98%|█████████▊| 557/567 [18:12<00:15, 1.54s/it]
98%|█████████▊| 558/567 [18:14<00:13, 1.53s/it]
99%|█████████▊| 559/567 [18:16<00:14, 1.79s/it]
99%|█████████▉| 560/567 [18:18<00:13, 1.99s/it]
99%|█████████▉| 561/567 [18:19<00:09, 1.66s/it]
99%|█████████▉| 562/567 [18:23<00:11, 2.31s/it]
99%|█████████▉| 563/567 [18:26<00:09, 2.36s/it]
99%|█████████▉| 564/567 [18:28<00:07, 2.41s/it]
100%|█████████▉| 565/567 [18:30<00:04, 2.12s/it]
100%|█████████▉| 566/567 [18:31<00:01, 1.95s/it]
100%|██████████| 567/567 [18:31<00:00, 1.47s/it]
100%|██████████| 567/567 [18:31<00:00, 1.96s/it]
-Batch output: ['Gang, the old man, raised his gun, squinted one of his triangular eyes, pulled the trigger, and golden sparrows, like hailstones, fell down, sparks of iron sand flying among the willow branches, making a sizzling sound.', 'The next morning, before the dawn, Lady Liu got up to wash and comb herself, and taught Bander a few words. A five or six-year-old child, upon hearing that he would be taken into the city to have a look, would agree without exception, no matter how much he liked it.']
-Qwen/Qwen2-7B-Instruct/shots-00 metrics: {'meteor': 0.377477070949433, 'bleu_scores': {'bleu': 0.11783492823424507, 'precisions': [0.4279978586723769, 0.15903321161537123, 0.07595394975019912, 0.03883018867924528], 'brevity_penalty': 0.9899464881168306, 'length_ratio': 0.9899966876449156, 'translation_length': 29888, 'reference_length': 30190}, 'rouge_scores': {'rouge1': 0.4249893081324433, 'rouge2': 0.17649627311005167, 'rougeL': 0.36796762282823836, 'rougeLsum': 0.36808282747358645}, 'accuracy': 0.00088261253309797, 'correct_ids': [364]}
-*** Evaluating with num_shots: 1
-loading train/test data files
-
Map: 0%| | 0/4528 [00:00, ? examples/s]
Map: 100%|██████████| 4528/4528 [00:00<00:00, 36539.50 examples/s]
Map: 100%|██████████| 4528/4528 [00:00<00:00, 14966.07 examples/s]
-
Map: 0%| | 0/1133 [00:00, ? examples/s]
Map: 100%|██████████| 1133/1133 [00:00<00:00, 5434.58 examples/s]
-DatasetDict({
- train: Dataset({
- features: ['chinese', 'english', 'text', 'prompt'],
- num_rows: 4528
- })
- test: Dataset({
- features: ['chinese', 'english', 'text', 'prompt'],
- num_rows: 1133
- })
-})
---------------------------------------------------
-chinese: 老耿端起枪,眯缝起一只三角眼,一搂扳机响了枪,冰雹般的金麻雀劈哩啪啦往下落,铁砂子在柳枝间飞迸着,嚓嚓有声。
---------------------------------------------------
-english: Old Geng picked up his shotgun, squinted, and pulled the trigger. Two sparrows crashed to the ground like hailstones as shotgun pellets tore noisily through the branches.
---------------------------------------------------
-text: <|im_start|>system
-You are a helpful assistant that translates Chinese to English.<|im_end|>
-<|im_start|>user
-You will be given a Chinese sentence to translate. If it is an incomplete sentence, or if you are unsure about the meaning, simply copy the input text as your output. Do not output any additional sentence such as explanation or reasoning.
-
-Example Translations:
-Chinese: 全仗着狐仙搭救。
-English: Because I was protected by a fox fairy.
-
-Chinese: 老耿端起枪,眯缝起一只三角眼,一搂扳机响了枪,冰雹般的金麻雀劈哩啪啦往下落,铁砂子在柳枝间飞迸着,嚓嚓有声。
-English:<|im_end|>
-<|im_start|>assistant
-Old Geng picked up his shotgun, squinted, and pulled the trigger. Two sparrows crashed to the ground like hailstones as shotgun pellets tore noisily through the branches.<|im_end|>
---------------------------------------------------
-prompt: <|im_start|>system
-You are a helpful assistant that translates Chinese to English.<|im_end|>
-<|im_start|>user
-You will be given a Chinese sentence to translate. If it is an incomplete sentence, or if you are unsure about the meaning, simply copy the input text as your output. Do not output any additional sentence such as explanation or reasoning.
-
-Example Translations:
-Chinese: 全仗着狐仙搭救。
-English: Because I was protected by a fox fairy.
-
-Chinese: 老耿端起枪,眯缝起一只三角眼,一搂扳机响了枪,冰雹般的金麻雀劈哩啪啦往下落,铁砂子在柳枝间飞迸着,嚓嚓有声。
-English:<|im_end|>
-<|im_start|>assistant
-
-
0%| | 0/567 [00:00, ?it/s]
0%| | 1/567 [00:03<30:48, 3.27s/it]
0%| | 2/567 [00:07<35:38, 3.79s/it]
1%| | 3/567 [00:10<30:38, 3.26s/it]
1%| | 4/567 [00:14<36:42, 3.91s/it]
1%| | 5/567 [00:15<26:04, 2.78s/it]
1%| | 6/567 [00:17<22:28, 2.40s/it]
1%| | 7/567 [00:18<17:26, 1.87s/it]
1%|▏ | 8/567 [00:20<19:03, 2.05s/it]
2%|▏ | 9/567 [00:23<20:58, 2.26s/it]
2%|▏ | 10/567 [00:25<19:40, 2.12s/it]
2%|▏ | 11/567 [00:27<19:51, 2.14s/it]
2%|▏ | 12/567 [00:28<16:39, 1.80s/it]
2%|▏ | 13/567 [00:30<16:47, 1.82s/it]
2%|▏ | 14/567 [00:31<15:39, 1.70s/it]
3%|▎ | 15/567 [00:32<12:55, 1.40s/it]
3%|▎ | 16/567 [00:34<14:08, 1.54s/it]
3%|▎ | 17/567 [00:38<21:39, 2.36s/it]
3%|▎ | 18/567 [00:39<18:35, 2.03s/it]
3%|▎ | 19/567 [00:40<15:53, 1.74s/it]
4%|▎ | 20/567 [00:41<14:00, 1.54s/it]
4%|▎ | 21/567 [00:44<17:54, 1.97s/it]
4%|▍ | 22/567 [00:47<18:28, 2.03s/it]
4%|▍ | 23/567 [00:49<19:32, 2.15s/it]
4%|▍ | 24/567 [00:50<17:13, 1.90s/it]
4%|▍ | 25/567 [00:51<13:52, 1.54s/it]
5%|▍ | 26/567 [00:54<16:54, 1.88s/it]
5%|▍ | 27/567 [00:55<14:47, 1.64s/it]
5%|▍ | 28/567 [01:00<25:41, 2.86s/it]
5%|▌ | 29/567 [01:02<23:12, 2.59s/it]
5%|▌ | 30/567 [01:05<22:03, 2.47s/it]
5%|▌ | 31/567 [01:05<17:40, 1.98s/it]
6%|▌ | 32/567 [01:07<17:05, 1.92s/it]
6%|▌ | 33/567 [01:09<15:58, 1.79s/it]
6%|▌ | 34/567 [01:12<18:54, 2.13s/it]
6%|▌ | 35/567 [01:13<17:46, 2.00s/it]
6%|▋ | 36/567 [01:14<14:12, 1.61s/it]
7%|▋ | 37/567 [01:15<11:43, 1.33s/it]
7%|▋ | 38/567 [01:16<10:34, 1.20s/it]
7%|▋ | 39/567 [01:17<11:30, 1.31s/it]
7%|▋ | 40/567 [01:19<12:49, 1.46s/it]
7%|▋ | 41/567 [01:19<10:01, 1.14s/it]
7%|▋ | 42/567 [01:22<14:25, 1.65s/it]
8%|▊ | 43/567 [01:23<12:16, 1.40s/it]
8%|▊ | 44/567 [01:25<13:13, 1.52s/it]
8%|▊ | 45/567 [01:27<14:31, 1.67s/it]
8%|▊ | 46/567 [01:28<12:45, 1.47s/it]
8%|▊ | 47/567 [01:30<13:21, 1.54s/it]
8%|▊ | 48/567 [01:31<14:22, 1.66s/it]
9%|▊ | 49/567 [01:32<12:03, 1.40s/it]
9%|▉ | 50/567 [01:35<14:48, 1.72s/it]
9%|▉ | 51/567 [01:38<18:05, 2.10s/it]
9%|▉ | 52/567 [01:38<14:34, 1.70s/it]
9%|▉ | 53/567 [01:49<38:14, 4.46s/it]
10%|▉ | 54/567 [01:52<33:54, 3.97s/it]
10%|▉ | 55/567 [01:56<32:28, 3.81s/it]
10%|▉ | 56/567 [02:00<34:15, 4.02s/it]
10%|█ | 57/567 [02:04<33:27, 3.94s/it]
10%|█ | 58/567 [02:05<25:36, 3.02s/it]
10%|█ | 59/567 [02:07<24:12, 2.86s/it]
11%|█ | 60/567 [02:09<21:12, 2.51s/it]
11%|█ | 61/567 [02:10<17:57, 2.13s/it]
11%|█ | 62/567 [02:11<15:51, 1.88s/it]
11%|█ | 63/567 [02:13<15:59, 1.90s/it]
11%|█▏ | 64/567 [02:17<20:12, 2.41s/it]
11%|█▏ | 65/567 [02:18<16:37, 1.99s/it]
12%|█▏ | 66/567 [02:21<17:57, 2.15s/it]
12%|█▏ | 67/567 [02:22<15:14, 1.83s/it]
12%|█▏ | 68/567 [02:27<23:24, 2.81s/it]
12%|█▏ | 69/567 [02:28<19:45, 2.38s/it]
12%|█▏ | 70/567 [02:30<17:57, 2.17s/it]
13%|█▎ | 71/567 [02:31<14:44, 1.78s/it]
13%|█▎ | 72/567 [02:33<15:29, 1.88s/it]
13%|█▎ | 73/567 [02:34<12:59, 1.58s/it]
13%|█▎ | 74/567 [02:35<11:55, 1.45s/it]
13%|█▎ | 75/567 [02:36<10:58, 1.34s/it]
13%|█▎ | 76/567 [02:38<12:19, 1.51s/it]
14%|█▎ | 77/567 [02:40<13:42, 1.68s/it]
14%|█▍ | 78/567 [02:41<13:23, 1.64s/it]
14%|█▍ | 79/567 [02:43<14:15, 1.75s/it]
14%|█▍ | 80/567 [02:44<11:53, 1.46s/it]
14%|█▍ | 81/567 [02:45<10:12, 1.26s/it]
14%|█▍ | 82/567 [02:46<10:34, 1.31s/it]
15%|█▍ | 83/567 [02:48<11:44, 1.46s/it]
15%|█▍ | 84/567 [02:49<11:04, 1.37s/it]
15%|█▍ | 85/567 [02:50<09:45, 1.21s/it]
15%|█▌ | 86/567 [02:51<07:47, 1.03it/s]
15%|█▌ | 87/567 [02:51<07:04, 1.13it/s]
16%|█▌ | 88/567 [02:54<11:08, 1.39s/it]
16%|█▌ | 89/567 [02:57<15:40, 1.97s/it]
16%|█▌ | 90/567 [02:59<15:58, 2.01s/it]
16%|█▌ | 91/567 [03:02<17:05, 2.15s/it]
16%|█▌ | 92/567 [03:03<15:17, 1.93s/it]
16%|█▋ | 93/567 [03:04<12:18, 1.56s/it]
17%|█▋ | 94/567 [03:07<15:33, 1.97s/it]
17%|█▋ | 95/567 [03:08<13:26, 1.71s/it]
17%|█▋ | 96/567 [03:09<12:56, 1.65s/it]
17%|█▋ | 97/567 [03:12<13:49, 1.76s/it]
17%|█▋ | 98/567 [03:12<10:48, 1.38s/it]
17%|█▋ | 99/567 [03:13<10:22, 1.33s/it]
18%|█▊ | 100/567 [03:16<13:09, 1.69s/it]
18%|█▊ | 101/567 [03:17<12:16, 1.58s/it]
18%|█▊ | 102/567 [03:20<15:29, 2.00s/it]
18%|█▊ | 103/567 [03:21<12:24, 1.60s/it]
18%|█▊ | 104/567 [03:23<14:25, 1.87s/it]
19%|█▊ | 105/567 [03:30<24:39, 3.20s/it]
19%|█▊ | 106/567 [03:32<22:00, 2.86s/it]
19%|█▉ | 107/567 [03:32<17:10, 2.24s/it]
19%|█▉ | 108/567 [03:39<26:40, 3.49s/it]
19%|█▉ | 109/567 [03:39<19:46, 2.59s/it]
19%|█▉ | 110/567 [03:40<16:27, 2.16s/it]
20%|█▉ | 111/567 [03:45<22:52, 3.01s/it]
20%|█▉ | 112/567 [03:48<21:25, 2.82s/it]
20%|█▉ | 113/567 [03:52<24:12, 3.20s/it]
20%|██ | 114/567 [03:53<19:51, 2.63s/it]
20%|██ | 115/567 [03:56<19:22, 2.57s/it]
20%|██ | 116/567 [03:57<16:36, 2.21s/it]
21%|██ | 117/567 [03:58<14:42, 1.96s/it]
21%|██ | 118/567 [04:00<14:23, 1.92s/it]
21%|██ | 119/567 [04:04<19:37, 2.63s/it]
21%|██ | 120/567 [04:06<17:30, 2.35s/it]
21%|██▏ | 121/567 [04:07<13:32, 1.82s/it]
22%|██▏ | 122/567 [04:08<11:50, 1.60s/it]
22%|██▏ | 123/567 [04:09<11:02, 1.49s/it]
22%|██▏ | 124/567 [04:11<11:29, 1.56s/it]
22%|██▏ | 125/567 [04:12<10:52, 1.48s/it]
22%|██▏ | 126/567 [04:14<10:44, 1.46s/it]
22%|██▏ | 127/567 [04:17<14:56, 2.04s/it]
23%|██▎ | 128/567 [04:19<15:05, 2.06s/it]
23%|██▎ | 129/567 [04:21<15:22, 2.11s/it]
23%|██▎ | 130/567 [04:27<23:00, 3.16s/it]
23%|██▎ | 131/567 [04:31<25:18, 3.48s/it]
23%|██▎ | 132/567 [04:38<33:20, 4.60s/it]
23%|██▎ | 133/567 [04:45<37:15, 5.15s/it]
24%|██▎ | 134/567 [04:51<39:41, 5.50s/it]
24%|██▍ | 135/567 [04:52<30:34, 4.25s/it]
24%|██▍ | 136/567 [04:54<24:20, 3.39s/it]
24%|██▍ | 137/567 [04:55<19:51, 2.77s/it]
24%|██▍ | 138/567 [04:56<15:20, 2.15s/it]
25%|██▍ | 139/567 [04:57<14:15, 2.00s/it]
25%|██▍ | 140/567 [04:59<13:14, 1.86s/it]
25%|██▍ | 141/567 [05:00<11:53, 1.67s/it]
25%|██▌ | 142/567 [05:01<10:19, 1.46s/it]
25%|██▌ | 143/567 [05:02<09:13, 1.31s/it]
25%|██▌ | 144/567 [05:04<10:08, 1.44s/it]
26%|██▌ | 145/567 [05:08<14:50, 2.11s/it]
26%|██▌ | 146/567 [05:09<14:30, 2.07s/it]
26%|██▌ | 147/567 [05:13<18:27, 2.64s/it]
26%|██▌ | 148/567 [05:16<17:16, 2.47s/it]
26%|██▋ | 149/567 [05:16<13:41, 1.97s/it]
26%|██▋ | 150/567 [05:17<10:25, 1.50s/it]
27%|██▋ | 151/567 [05:17<08:18, 1.20s/it]
27%|██▋ | 152/567 [05:19<10:04, 1.46s/it]
27%|██▋ | 153/567 [05:21<11:25, 1.66s/it]
27%|██▋ | 154/567 [05:22<09:54, 1.44s/it]
27%|██▋ | 155/567 [05:24<10:32, 1.54s/it]
28%|██▊ | 156/567 [05:26<10:52, 1.59s/it]
28%|██▊ | 157/567 [05:27<10:14, 1.50s/it]
28%|██▊ | 158/567 [05:32<17:14, 2.53s/it]
28%|██▊ | 159/567 [05:33<14:48, 2.18s/it]
28%|██▊ | 160/567 [05:37<17:35, 2.59s/it]
28%|██▊ | 161/567 [05:38<13:40, 2.02s/it]
29%|██▊ | 162/567 [05:39<12:28, 1.85s/it]
29%|██▊ | 163/567 [05:40<11:21, 1.69s/it]
29%|██▉ | 164/567 [05:44<15:53, 2.37s/it]
29%|██▉ | 165/567 [05:46<15:15, 2.28s/it]
29%|██▉ | 166/567 [05:48<13:18, 1.99s/it]
29%|██▉ | 167/567 [05:52<17:25, 2.61s/it]
30%|██▉ | 168/567 [05:53<14:24, 2.17s/it]
30%|██▉ | 169/567 [05:55<14:02, 2.12s/it]
30%|██▉ | 170/567 [05:57<13:48, 2.09s/it]
30%|███ | 171/567 [05:59<13:32, 2.05s/it]
30%|███ | 172/567 [06:01<13:52, 2.11s/it]
31%|███ | 173/567 [06:02<12:05, 1.84s/it]
31%|███ | 174/567 [06:04<11:13, 1.71s/it]
31%|███ | 175/567 [06:06<11:23, 1.74s/it]
31%|███ | 176/567 [06:07<10:36, 1.63s/it]
31%|███ | 177/567 [06:10<12:38, 1.95s/it]
31%|███▏ | 178/567 [06:10<10:20, 1.60s/it]
32%|███▏ | 179/567 [06:12<10:58, 1.70s/it]
32%|███▏ | 180/567 [06:15<11:45, 1.82s/it]
32%|███▏ | 181/567 [06:16<11:39, 1.81s/it]
32%|███▏ | 182/567 [06:17<09:11, 1.43s/it]
32%|███▏ | 183/567 [06:17<07:27, 1.17s/it]
32%|███▏ | 184/567 [06:19<08:52, 1.39s/it]
33%|███▎ | 185/567 [06:20<08:09, 1.28s/it]
33%|███▎ | 186/567 [06:26<16:18, 2.57s/it]
33%|███▎ | 187/567 [06:27<13:52, 2.19s/it]
33%|███▎ | 188/567 [06:29<12:12, 1.93s/it]
33%|███▎ | 189/567 [06:30<11:06, 1.76s/it]
34%|███▎ | 190/567 [06:31<09:08, 1.45s/it]
34%|███▎ | 191/567 [06:34<12:26, 1.99s/it]
34%|███▍ | 192/567 [06:36<12:52, 2.06s/it]
34%|███▍ | 193/567 [06:44<23:49, 3.82s/it]
34%|███▍ | 194/567 [06:45<18:27, 2.97s/it]
34%|███▍ | 195/567 [06:47<15:49, 2.55s/it]
35%|███▍ | 196/567 [06:48<14:00, 2.27s/it]
35%|███▍ | 197/567 [06:51<15:23, 2.50s/it]
35%|███▍ | 198/567 [06:55<17:12, 2.80s/it]
35%|███▌ | 199/567 [06:57<15:58, 2.60s/it]
35%|███▌ | 200/567 [06:58<13:52, 2.27s/it]
35%|███▌ | 201/567 [06:59<11:21, 1.86s/it]
36%|███▌ | 202/567 [07:01<10:18, 1.69s/it]
36%|███▌ | 203/567 [07:02<09:49, 1.62s/it]
36%|███▌ | 204/567 [07:03<08:53, 1.47s/it]
36%|███▌ | 205/567 [07:05<09:05, 1.51s/it]
36%|███▋ | 206/567 [07:08<11:56, 1.98s/it]
37%|███▋ | 207/567 [07:10<11:35, 1.93s/it]
37%|███▋ | 208/567 [07:12<12:42, 2.12s/it]
37%|███▋ | 209/567 [07:13<10:20, 1.73s/it]
37%|███▋ | 210/567 [07:15<10:08, 1.71s/it]
37%|███▋ | 211/567 [07:17<10:41, 1.80s/it]
37%|███▋ | 212/567 [07:18<10:12, 1.72s/it]
38%|███▊ | 213/567 [07:20<10:33, 1.79s/it]
38%|███▊ | 214/567 [07:22<10:59, 1.87s/it]
38%|███▊ | 215/567 [07:25<12:23, 2.11s/it]
38%|███▊ | 216/567 [07:27<12:28, 2.13s/it]
38%|███▊ | 217/567 [07:30<13:07, 2.25s/it]
38%|███▊ | 218/567 [07:33<15:55, 2.74s/it]
39%|███▊ | 219/567 [07:35<14:21, 2.48s/it]
39%|███▉ | 220/567 [07:37<12:33, 2.17s/it]
39%|███▉ | 221/567 [07:38<10:28, 1.82s/it]
39%|███▉ | 222/567 [07:39<09:36, 1.67s/it]
39%|███▉ | 223/567 [07:40<08:39, 1.51s/it]
40%|███▉ | 224/567 [07:42<08:51, 1.55s/it]
40%|███▉ | 225/567 [07:44<10:01, 1.76s/it]
40%|███▉ | 226/567 [07:46<10:30, 1.85s/it]
40%|████ | 227/567 [07:47<08:49, 1.56s/it]
40%|████ | 228/567 [07:49<09:19, 1.65s/it]
40%|████ | 229/567 [07:52<11:42, 2.08s/it]
41%|████ | 230/567 [07:53<10:16, 1.83s/it]
41%|████ | 231/567 [07:56<10:58, 1.96s/it]
41%|████ | 232/567 [07:57<10:04, 1.80s/it]
41%|████ | 233/567 [08:00<12:12, 2.19s/it]
41%|████▏ | 234/567 [08:01<09:40, 1.74s/it]
41%|████▏ | 235/567 [08:03<10:39, 1.93s/it]
42%|████▏ | 236/567 [08:05<10:34, 1.92s/it]
42%|████▏ | 237/567 [08:06<08:36, 1.56s/it]
42%|████▏ | 238/567 [08:08<09:13, 1.68s/it]
42%|████▏ | 239/567 [08:10<09:33, 1.75s/it]
42%|████▏ | 240/567 [08:16<17:43, 3.25s/it]
43%|████▎ | 241/567 [08:18<14:58, 2.76s/it]
43%|████▎ | 242/567 [08:19<12:28, 2.30s/it]
43%|████▎ | 243/567 [08:22<12:33, 2.33s/it]
43%|████▎ | 244/567 [08:25<14:40, 2.73s/it]
43%|████▎ | 245/567 [08:26<11:25, 2.13s/it]
43%|████▎ | 246/567 [08:28<10:48, 2.02s/it]
44%|████▎ | 247/567 [08:29<08:47, 1.65s/it]
44%|████▎ | 248/567 [08:30<09:08, 1.72s/it]
44%|████▍ | 249/567 [08:32<08:13, 1.55s/it]
44%|████▍ | 250/567 [08:34<09:39, 1.83s/it]
44%|████▍ | 251/567 [08:38<13:25, 2.55s/it]
44%|████▍ | 252/567 [08:41<13:05, 2.49s/it]
45%|████▍ | 253/567 [08:42<10:30, 2.01s/it]
45%|████▍ | 254/567 [08:49<18:40, 3.58s/it]
45%|████▍ | 255/567 [08:51<16:10, 3.11s/it]
45%|████▌ | 256/567 [08:52<12:34, 2.43s/it]
45%|████▌ | 257/567 [08:55<14:23, 2.79s/it]
46%|████▌ | 258/567 [08:57<13:25, 2.61s/it]
46%|████▌ | 259/567 [08:59<11:03, 2.15s/it]
46%|████▌ | 260/567 [09:04<16:22, 3.20s/it]
46%|████▌ | 261/567 [09:06<14:01, 2.75s/it]
46%|████▌ | 262/567 [09:08<13:16, 2.61s/it]
46%|████▋ | 263/567 [09:09<10:34, 2.09s/it]
47%|████▋ | 264/567 [09:10<08:32, 1.69s/it]
47%|████▋ | 265/567 [09:14<12:37, 2.51s/it]
47%|████▋ | 266/567 [09:15<10:21, 2.07s/it]
47%|████▋ | 267/567 [09:17<09:24, 1.88s/it]
47%|████▋ | 268/567 [09:20<11:49, 2.37s/it]
47%|████▋ | 269/567 [09:23<11:56, 2.40s/it]
48%|████▊ | 270/567 [09:24<10:12, 2.06s/it]
48%|████▊ | 271/567 [09:27<11:42, 2.37s/it]
48%|████▊ | 272/567 [09:29<10:35, 2.15s/it]
48%|████▊ | 273/567 [09:30<09:20, 1.91s/it]
48%|████▊ | 274/567 [09:31<08:20, 1.71s/it]
49%|████▊ | 275/567 [09:33<07:48, 1.60s/it]
49%|████▊ | 276/567 [09:35<08:14, 1.70s/it]
49%|████▉ | 277/567 [09:37<08:43, 1.81s/it]
49%|████▉ | 278/567 [09:37<07:08, 1.48s/it]
49%|████▉ | 279/567 [09:41<09:43, 2.03s/it]
49%|████▉ | 280/567 [09:43<10:03, 2.10s/it]
50%|████▉ | 281/567 [09:44<07:58, 1.67s/it]
50%|████▉ | 282/567 [09:45<07:17, 1.54s/it]
50%|████▉ | 283/567 [09:47<08:36, 1.82s/it]
50%|█████ | 284/567 [09:48<07:23, 1.57s/it]
50%|█████ | 285/567 [09:50<07:00, 1.49s/it]
50%|█████ | 286/567 [09:50<05:58, 1.27s/it]
51%|█████ | 287/567 [09:53<07:28, 1.60s/it]
51%|█████ | 288/567 [09:55<07:47, 1.68s/it]
51%|█████ | 289/567 [09:57<08:40, 1.87s/it]
51%|█████ | 290/567 [09:59<08:56, 1.94s/it]
51%|█████▏ | 291/567 [10:01<08:43, 1.90s/it]
51%|█████▏ | 292/567 [10:03<09:03, 1.98s/it]
52%|█████▏ | 293/567 [10:05<09:33, 2.09s/it]
52%|█████▏ | 294/567 [10:07<08:44, 1.92s/it]
52%|█████▏ | 295/567 [10:08<07:36, 1.68s/it]
52%|█████▏ | 296/567 [10:10<08:36, 1.91s/it]
52%|█████▏ | 297/567 [10:12<07:34, 1.68s/it]
53%|█████▎ | 298/567 [10:18<13:44, 3.06s/it]
53%|█████▎ | 299/567 [10:19<11:28, 2.57s/it]
53%|█████▎ | 300/567 [10:21<10:48, 2.43s/it]
53%|█████▎ | 301/567 [10:24<10:47, 2.43s/it]
53%|█████▎ | 302/567 [10:25<09:32, 2.16s/it]
53%|█████▎ | 303/567 [10:27<08:18, 1.89s/it]
54%|█████▎ | 304/567 [10:28<07:54, 1.81s/it]
54%|█████▍ | 305/567 [10:30<07:35, 1.74s/it]
54%|█████▍ | 306/567 [10:32<08:39, 1.99s/it]
54%|█████▍ | 307/567 [10:37<11:54, 2.75s/it]
54%|█████▍ | 308/567 [10:38<10:20, 2.40s/it]
54%|█████▍ | 309/567 [10:39<07:51, 1.83s/it]
55%|█████▍ | 310/567 [10:48<17:06, 3.99s/it]
55%|█████▍ | 311/567 [10:51<15:36, 3.66s/it]
55%|█████▌ | 312/567 [10:52<12:22, 2.91s/it]
55%|█████▌ | 313/567 [10:53<10:05, 2.38s/it]
55%|█████▌ | 314/567 [10:56<10:06, 2.40s/it]
56%|█████▌ | 315/567 [11:00<13:05, 3.12s/it]
56%|█████▌ | 316/567 [11:01<10:10, 2.43s/it]
56%|█████▌ | 317/567 [11:03<09:17, 2.23s/it]
56%|█████▌ | 318/567 [11:04<07:37, 1.84s/it]
56%|█████▋ | 319/567 [11:07<09:05, 2.20s/it]
56%|█████▋ | 320/567 [11:08<07:10, 1.74s/it]
57%|█████▋ | 321/567 [11:12<10:09, 2.48s/it]
57%|█████▋ | 322/567 [11:14<09:14, 2.26s/it]
57%|█████▋ | 323/567 [11:16<08:46, 2.16s/it]
57%|█████▋ | 324/567 [11:17<07:43, 1.91s/it]
57%|█████▋ | 325/567 [11:22<11:57, 2.97s/it]
57%|█████▋ | 326/567 [11:23<09:06, 2.27s/it]
58%|█████▊ | 327/567 [11:24<07:29, 1.87s/it]
58%|█████▊ | 328/567 [11:26<07:19, 1.84s/it]
58%|█████▊ | 329/567 [11:29<09:36, 2.42s/it]
58%|█████▊ | 330/567 [11:30<07:10, 1.82s/it]
58%|█████▊ | 331/567 [11:31<06:41, 1.70s/it]
59%|█████▊ | 332/567 [11:32<06:01, 1.54s/it]
59%|█████▊ | 333/567 [11:34<06:24, 1.64s/it]
59%|█████▉ | 334/567 [11:35<05:47, 1.49s/it]
59%|█████▉ | 335/567 [11:37<05:45, 1.49s/it]
59%|█████▉ | 336/567 [11:38<04:44, 1.23s/it]
59%|█████▉ | 337/567 [11:40<06:26, 1.68s/it]
60%|█████▉ | 338/567 [11:41<05:44, 1.50s/it]
60%|█████▉ | 339/567 [11:42<05:00, 1.32s/it]
60%|█████▉ | 340/567 [11:43<04:25, 1.17s/it]
60%|██████ | 341/567 [11:44<04:01, 1.07s/it]
60%|██████ | 342/567 [11:46<05:03, 1.35s/it]
60%|██████ | 343/567 [11:47<04:52, 1.30s/it]
61%|██████ | 344/567 [11:49<04:58, 1.34s/it]
61%|██████ | 345/567 [11:50<04:52, 1.32s/it]
61%|██████ | 346/567 [11:51<04:40, 1.27s/it]
61%|██████ | 347/567 [11:53<05:39, 1.55s/it]
61%|██████▏ | 348/567 [11:55<05:46, 1.58s/it]
62%|██████▏ | 349/567 [11:59<08:34, 2.36s/it]
62%|██████▏ | 350/567 [12:01<08:06, 2.24s/it]
62%|██████▏ | 351/567 [12:10<14:59, 4.16s/it]
62%|██████▏ | 352/567 [12:11<11:42, 3.27s/it]
62%|██████▏ | 353/567 [12:15<12:17, 3.45s/it]
62%|██████▏ | 354/567 [12:17<10:56, 3.08s/it]
63%|██████▎ | 355/567 [12:18<09:09, 2.59s/it]
63%|██████▎ | 356/567 [12:20<08:39, 2.46s/it]
63%|██████▎ | 357/567 [12:21<07:03, 2.02s/it]
63%|██████▎ | 358/567 [12:23<06:19, 1.82s/it]
63%|██████▎ | 359/567 [12:24<05:24, 1.56s/it]
63%|██████▎ | 360/567 [12:25<05:16, 1.53s/it]
64%|██████▎ | 361/567 [12:26<04:56, 1.44s/it]
64%|██████▍ | 362/567 [12:29<06:01, 1.76s/it]
64%|██████▍ | 363/567 [12:33<08:05, 2.38s/it]
64%|██████▍ | 364/567 [12:36<08:57, 2.65s/it]
64%|██████▍ | 365/567 [12:38<08:01, 2.39s/it]
65%|██████▍ | 366/567 [12:39<07:02, 2.10s/it]
65%|██████▍ | 367/567 [12:42<07:42, 2.31s/it]
65%|██████▍ | 368/567 [12:44<07:26, 2.25s/it]
65%|██████▌ | 369/567 [12:47<07:43, 2.34s/it]
65%|██████▌ | 370/567 [12:48<06:40, 2.03s/it]
65%|██████▌ | 371/567 [12:49<05:48, 1.78s/it]
66%|██████▌ | 372/567 [12:50<05:04, 1.56s/it]
66%|██████▌ | 373/567 [12:53<05:56, 1.84s/it]
66%|██████▌ | 374/567 [12:56<07:23, 2.30s/it]
66%|██████▌ | 375/567 [12:58<07:09, 2.24s/it]
66%|██████▋ | 376/567 [12:59<06:07, 1.92s/it]
66%|██████▋ | 377/567 [13:04<08:51, 2.80s/it]
67%|██████▋ | 378/567 [13:06<07:59, 2.54s/it]
67%|██████▋ | 379/567 [13:09<07:53, 2.52s/it]
67%|██████▋ | 380/567 [13:10<06:53, 2.21s/it]
67%|██████▋ | 381/567 [13:12<06:31, 2.11s/it]
67%|██████▋ | 382/567 [13:13<05:28, 1.78s/it]
68%|██████▊ | 383/567 [13:16<06:34, 2.14s/it]
68%|██████▊ | 384/567 [13:19<07:41, 2.52s/it]
68%|██████▊ | 385/567 [13:22<07:58, 2.63s/it]
68%|██████▊ | 386/567 [13:24<07:21, 2.44s/it]
68%|██████▊ | 387/567 [13:26<06:21, 2.12s/it]
68%|██████▊ | 388/567 [13:34<11:48, 3.96s/it]
69%|██████▊ | 389/567 [13:36<09:43, 3.28s/it]
69%|██████▉ | 390/567 [13:37<07:38, 2.59s/it]
69%|██████▉ | 391/567 [13:39<07:22, 2.51s/it]
69%|██████▉ | 392/567 [13:41<07:03, 2.42s/it]
69%|██████▉ | 393/567 [13:42<05:46, 1.99s/it]
69%|██████▉ | 394/567 [13:45<06:48, 2.36s/it]
70%|██████▉ | 395/567 [13:49<07:32, 2.63s/it]
70%|██████▉ | 396/567 [13:50<06:44, 2.37s/it]
70%|███████ | 397/567 [13:56<09:13, 3.26s/it]
70%|███████ | 398/567 [13:56<07:02, 2.50s/it]
70%|███████ | 399/567 [13:57<05:36, 2.00s/it]
71%|███████ | 400/567 [13:58<04:53, 1.76s/it]
71%|███████ | 401/567 [14:00<04:37, 1.67s/it]
71%|███████ | 402/567 [14:03<05:25, 1.97s/it]
71%|███████ | 403/567 [14:05<05:20, 1.96s/it]
71%|███████▏ | 404/567 [14:06<04:32, 1.67s/it]
71%|███████▏ | 405/567 [14:07<04:00, 1.48s/it]
72%|███████▏ | 406/567 [14:09<04:23, 1.64s/it]
72%|███████▏ | 407/567 [14:10<03:48, 1.43s/it]
72%|███████▏ | 408/567 [14:13<05:01, 1.90s/it]
72%|███████▏ | 409/567 [14:14<04:21, 1.66s/it]
72%|███████▏ | 410/567 [14:15<04:11, 1.60s/it]
72%|███████▏ | 411/567 [14:16<03:28, 1.34s/it]
73%|███████▎ | 412/567 [14:18<04:09, 1.61s/it]
73%|███████▎ | 413/567 [14:20<04:27, 1.74s/it]
73%|███████▎ | 414/567 [14:21<03:35, 1.41s/it]
73%|███████▎ | 415/567 [14:25<05:45, 2.27s/it]
73%|███████▎ | 416/567 [14:27<05:37, 2.23s/it]
74%|███████▎ | 417/567 [14:32<07:33, 3.02s/it]
74%|███████▎ | 418/567 [14:34<06:33, 2.64s/it]
74%|███████▍ | 419/567 [14:42<10:19, 4.18s/it]
74%|███████▍ | 420/567 [14:44<08:56, 3.65s/it]
74%|███████▍ | 421/567 [14:47<08:13, 3.38s/it]
74%|███████▍ | 422/567 [14:49<07:03, 2.92s/it]
75%|███████▍ | 423/567 [14:50<06:14, 2.60s/it]
75%|███████▍ | 424/567 [14:52<05:31, 2.32s/it]
75%|███████▍ | 425/567 [14:54<05:16, 2.23s/it]
75%|███████▌ | 426/567 [14:55<04:10, 1.78s/it]
75%|███████▌ | 427/567 [14:56<03:54, 1.68s/it]
75%|███████▌ | 428/567 [14:59<04:51, 2.10s/it]
76%|███████▌ | 429/567 [15:03<05:48, 2.53s/it]
76%|███████▌ | 430/567 [15:04<05:02, 2.21s/it]
76%|███████▌ | 431/567 [15:09<06:46, 2.99s/it]
76%|███████▌ | 432/567 [15:13<07:10, 3.19s/it]
76%|███████▋ | 433/567 [15:16<07:00, 3.14s/it]
77%|███████▋ | 434/567 [15:18<06:26, 2.90s/it]
77%|███████▋ | 435/567 [15:19<04:59, 2.27s/it]
77%|███████▋ | 436/567 [15:21<04:37, 2.12s/it]
77%|███████▋ | 437/567 [15:22<03:51, 1.78s/it]
77%|███████▋ | 438/567 [15:24<04:04, 1.90s/it]
77%|███████▋ | 439/567 [15:26<03:57, 1.86s/it]
78%|███████▊ | 440/567 [15:27<03:17, 1.55s/it]
78%|███████▊ | 441/567 [15:28<03:27, 1.65s/it]
78%|███████▊ | 442/567 [15:30<03:10, 1.52s/it]
78%|███████▊ | 443/567 [15:31<03:04, 1.49s/it]
78%|███████▊ | 444/567 [15:35<04:43, 2.31s/it]
78%|███████▊ | 445/567 [15:37<04:23, 2.16s/it]
79%|███████▊ | 446/567 [15:40<05:06, 2.53s/it]
79%|███████▉ | 447/567 [15:43<04:56, 2.47s/it]
79%|███████▉ | 448/567 [15:45<04:34, 2.30s/it]
79%|███████▉ | 449/567 [15:46<03:50, 1.95s/it]
79%|███████▉ | 450/567 [15:47<03:35, 1.84s/it]
80%|███████▉ | 451/567 [15:49<03:08, 1.62s/it]
80%|███████▉ | 452/567 [15:50<02:56, 1.53s/it]
80%|███████▉ | 453/567 [15:53<03:35, 1.89s/it]
80%|████████ | 454/567 [15:54<03:23, 1.80s/it]
80%|████████ | 455/567 [15:55<03:00, 1.61s/it]
80%|████████ | 456/567 [15:56<02:36, 1.41s/it]
81%|████████ | 457/567 [15:57<02:28, 1.35s/it]
81%|████████ | 458/567 [16:00<03:03, 1.69s/it]
81%|████████ | 459/567 [16:02<03:26, 1.91s/it]
81%|████████ | 460/567 [16:03<02:37, 1.47s/it]
81%|████████▏ | 461/567 [16:04<02:25, 1.38s/it]
81%|████████▏ | 462/567 [16:05<02:09, 1.23s/it]
82%|████████▏ | 463/567 [16:06<02:09, 1.25s/it]
82%|████████▏ | 464/567 [16:07<02:03, 1.20s/it]
82%|████████▏ | 465/567 [16:09<02:19, 1.37s/it]
82%|████████▏ | 466/567 [16:10<02:17, 1.36s/it]
82%|████████▏ | 467/567 [16:11<01:59, 1.19s/it]
83%|████████▎ | 468/567 [16:14<02:32, 1.54s/it]
83%|████████▎ | 469/567 [16:15<02:21, 1.44s/it]
83%|████████▎ | 470/567 [16:16<02:25, 1.50s/it]
83%|████████▎ | 471/567 [16:19<03:03, 1.91s/it]
83%|████████▎ | 472/567 [16:24<04:15, 2.69s/it]
83%|████████▎ | 473/567 [16:26<03:59, 2.55s/it]
84%|████████▎ | 474/567 [16:29<04:22, 2.82s/it]
84%|████████▍ | 475/567 [16:30<03:24, 2.22s/it]
84%|████████▍ | 476/567 [16:32<03:03, 2.02s/it]
84%|████████▍ | 477/567 [16:32<02:23, 1.59s/it]
84%|████████▍ | 478/567 [16:34<02:10, 1.47s/it]
84%|████████▍ | 479/567 [16:34<01:52, 1.28s/it]
85%|████████▍ | 480/567 [16:36<01:56, 1.34s/it]
85%|████████▍ | 481/567 [16:40<03:01, 2.11s/it]
85%|████████▌ | 482/567 [16:41<02:39, 1.87s/it]
85%|████████▌ | 483/567 [16:42<02:18, 1.65s/it]
85%|████████▌ | 484/567 [16:46<02:59, 2.16s/it]
86%|████████▌ | 485/567 [16:47<02:29, 1.83s/it]
86%|████████▌ | 486/567 [16:48<02:25, 1.79s/it]
86%|████████▌ | 487/567 [16:53<03:32, 2.66s/it]
86%|████████▌ | 488/567 [16:54<02:56, 2.23s/it]
86%|████████▌ | 489/567 [16:56<02:35, 2.00s/it]
86%|████████▋ | 490/567 [17:00<03:35, 2.80s/it]
87%|████████▋ | 491/567 [17:02<03:02, 2.40s/it]
87%|████████▋ | 492/567 [17:03<02:21, 1.88s/it]
87%|████████▋ | 493/567 [17:05<02:31, 2.05s/it]
87%|████████▋ | 494/567 [17:07<02:29, 2.05s/it]
87%|████████▋ | 495/567 [17:15<04:36, 3.84s/it]
87%|████████▋ | 496/567 [17:17<03:48, 3.22s/it]
88%|████████▊ | 497/567 [17:19<03:27, 2.97s/it]
88%|████████▊ | 498/567 [17:21<03:07, 2.72s/it]
88%|████████▊ | 499/567 [17:23<02:38, 2.33s/it]
88%|████████▊ | 500/567 [17:26<03:00, 2.69s/it]
88%|████████▊ | 501/567 [17:27<02:23, 2.18s/it]
89%|████████▊ | 502/567 [17:30<02:33, 2.36s/it]
89%|████████▊ | 503/567 [17:37<03:58, 3.72s/it]
89%|████████▉ | 504/567 [17:39<03:23, 3.22s/it]
89%|████████▉ | 505/567 [17:42<03:17, 3.19s/it]
89%|████████▉ | 506/567 [17:46<03:24, 3.36s/it]
89%|████████▉ | 507/567 [17:47<02:38, 2.63s/it]
90%|████████▉ | 508/567 [17:49<02:35, 2.63s/it]
90%|████████▉ | 509/567 [17:51<02:08, 2.22s/it]
90%|████████▉ | 510/567 [17:54<02:18, 2.43s/it]
90%|█████████ | 511/567 [17:56<02:08, 2.29s/it]
90%|█████████ | 512/567 [18:01<02:54, 3.17s/it]
90%|█████████ | 513/567 [18:03<02:40, 2.97s/it]
91%|█████████ | 514/567 [18:04<01:59, 2.25s/it]
91%|█████████ | 515/567 [18:05<01:44, 2.02s/it]
91%|█████████ | 516/567 [18:07<01:30, 1.78s/it]
91%|█████████ | 517/567 [18:08<01:27, 1.74s/it]
91%|█████████▏| 518/567 [18:09<01:16, 1.56s/it]
92%|█████████▏| 519/567 [18:11<01:13, 1.53s/it]
92%|█████████▏| 520/567 [18:12<01:07, 1.44s/it]
92%|█████████▏| 521/567 [18:14<01:09, 1.51s/it]
92%|█████████▏| 522/567 [18:17<01:31, 2.04s/it]
92%|█████████▏| 523/567 [18:19<01:25, 1.95s/it]
92%|█████████▏| 524/567 [18:20<01:16, 1.78s/it]
93%|█████████▎| 525/567 [18:22<01:16, 1.82s/it]
93%|█████████▎| 526/567 [18:24<01:13, 1.79s/it]
93%|█████████▎| 527/567 [18:26<01:12, 1.81s/it]
93%|█████████▎| 528/567 [18:27<01:03, 1.64s/it]
93%|█████████▎| 529/567 [18:28<01:00, 1.58s/it]
93%|█████████▎| 530/567 [18:31<01:13, 1.97s/it]
94%|█████████▎| 531/567 [18:33<01:06, 1.84s/it]
94%|█████████▍| 532/567 [18:34<01:03, 1.81s/it]
94%|█████████▍| 533/567 [18:35<00:52, 1.56s/it]
94%|█████████▍| 534/567 [18:36<00:45, 1.37s/it]
94%|█████████▍| 535/567 [18:39<00:56, 1.77s/it]
95%|█████████▍| 536/567 [18:41<00:53, 1.72s/it]
95%|█████████▍| 537/567 [18:43<00:54, 1.81s/it]
95%|█████████▍| 538/567 [18:44<00:45, 1.57s/it]
95%|█████████▌| 539/567 [18:49<01:11, 2.56s/it]
95%|█████████▌| 540/567 [18:56<01:45, 3.90s/it]
95%|█████████▌| 541/567 [19:00<01:47, 4.15s/it]
96%|█████████▌| 542/567 [19:03<01:33, 3.74s/it]
96%|█████████▌| 543/567 [19:11<02:02, 5.11s/it]
96%|█████████▌| 544/567 [19:12<01:25, 3.73s/it]
96%|█████████▌| 545/567 [19:14<01:10, 3.22s/it]
96%|█████████▋| 546/567 [19:15<00:56, 2.68s/it]
96%|█████████▋| 547/567 [19:16<00:43, 2.16s/it]
97%|█████████▋| 548/567 [19:18<00:36, 1.92s/it]
97%|█████████▋| 549/567 [19:19<00:29, 1.63s/it]
97%|█████████▋| 550/567 [19:20<00:28, 1.65s/it]
97%|█████████▋| 551/567 [19:22<00:26, 1.68s/it]
97%|█████████▋| 552/567 [19:25<00:31, 2.11s/it]
98%|█████████▊| 553/567 [19:26<00:25, 1.81s/it]
98%|█████████▊| 554/567 [19:27<00:20, 1.60s/it]
98%|█████████▊| 555/567 [19:29<00:18, 1.56s/it]
98%|█████████▊| 556/567 [19:30<00:15, 1.38s/it]
98%|█████████▊| 557/567 [19:33<00:18, 1.85s/it]
98%|█████████▊| 558/567 [19:35<00:16, 1.81s/it]
99%|█████████▊| 559/567 [19:37<00:16, 2.06s/it]
99%|█████████▉| 560/567 [19:40<00:15, 2.17s/it]
99%|█████████▉| 561/567 [19:41<00:10, 1.80s/it]
99%|█████████▉| 562/567 [19:45<00:12, 2.49s/it]
99%|█████████▉| 563/567 [19:47<00:09, 2.39s/it]
99%|█████████▉| 564/567 [19:49<00:07, 2.38s/it]
100%|█████████▉| 565/567 [19:51<00:04, 2.17s/it]
100%|█████████▉| 566/567 [19:53<00:02, 2.03s/it]
100%|██████████| 567/567 [19:53<00:00, 1.55s/it]
100%|██████████| 567/567 [19:53<00:00, 2.10s/it]
-Batch output: ['Gang, the old man, raised his gun, squinted one of his triangular eyes, pulled the trigger, golden sparrows like hailstones fell down, iron sand splashed among the willow branches, making a sizzling sound.', 'The next morning, before the sky was fully light, Lady Liu got up to wash and dress, and taught Bander a few words. A five or six-year-old child, upon hearing that they would be taken into the city to have a look, was delighted and readily agreed.']
-Qwen/Qwen2-7B-Instruct/shots-01 metrics: {'meteor': 0.38000752971097884, 'bleu_scores': {'bleu': 0.11731917392837622, 'precisions': [0.4302690658654333, 0.16024290929514182, 0.07683029350487956, 0.03861842857687469], 'brevity_penalty': 0.9809739790210252, 'length_ratio': 0.9811526995693939, 'translation_length': 29621, 'reference_length': 30190}, 'rouge_scores': {'rouge1': 0.4261933196778519, 'rouge2': 0.17870041628943986, 'rougeL': 0.3711708897179422, 'rougeLsum': 0.37124060669081504}, 'accuracy': 0.0, 'correct_ids': []}
-*** Evaluating with num_shots: 3
-loading train/test data files
-
Map: 0%| | 0/4528 [00:00, ? examples/s]
Map: 88%|████████▊ | 4000/4528 [00:00<00:00, 26102.85 examples/s]
Map: 100%|██████████| 4528/4528 [00:00<00:00, 13043.05 examples/s]
-
Map: 0%| | 0/1133 [00:00, ? examples/s]
Map: 100%|██████████| 1133/1133 [00:00<00:00, 7819.64 examples/s]
-DatasetDict({
- train: Dataset({
- features: ['chinese', 'english', 'text', 'prompt'],
- num_rows: 4528
- })
- test: Dataset({
- features: ['chinese', 'english', 'text', 'prompt'],
- num_rows: 1133
- })
-})
---------------------------------------------------
-chinese: 老耿端起枪,眯缝起一只三角眼,一搂扳机响了枪,冰雹般的金麻雀劈哩啪啦往下落,铁砂子在柳枝间飞迸着,嚓嚓有声。
---------------------------------------------------
-english: Old Geng picked up his shotgun, squinted, and pulled the trigger. Two sparrows crashed to the ground like hailstones as shotgun pellets tore noisily through the branches.
---------------------------------------------------
-text: <|im_start|>system
-You are a helpful assistant that translates Chinese to English.<|im_end|>
-<|im_start|>user
-You will be given a Chinese sentence to translate. If it is an incomplete sentence, or if you are unsure about the meaning, simply copy the input text as your output. Do not output any additional sentence such as explanation or reasoning.
-
-Example Translations:
-Chinese: 全仗着狐仙搭救。
-English: Because I was protected by a fox fairy.
-Chinese: 过后,表哥告诉她俩,这人是导演,在外国留过学的,还会编剧,今天拍的这戏,就是他自编自导的。
-English: He was the director, the cousin later told them. He had studied abroad and was also a screenwriter; in fact he had written and directed the scene they had earlier seen being filmed.
-Chinese: 这凤姐忽然想起一件事来,便向窗外叫:“蓉儿回来!”
-English: Xi-feng suddenly seemed to remember something, and called to him through the window, 'Rong, come back!'
-
-Chinese: 老耿端起枪,眯缝起一只三角眼,一搂扳机响了枪,冰雹般的金麻雀劈哩啪啦往下落,铁砂子在柳枝间飞迸着,嚓嚓有声。
-English:<|im_end|>
-<|im_start|>assistant
-Old Geng picked up his shotgun, squinted, and pulled the trigger. Two sparrows crashed to the ground like hailstones as shotgun pellets tore noisily through the branches.<|im_end|>
---------------------------------------------------
-prompt: <|im_start|>system
-You are a helpful assistant that translates Chinese to English.<|im_end|>
-<|im_start|>user
-You will be given a Chinese sentence to translate. If it is an incomplete sentence, or if you are unsure about the meaning, simply copy the input text as your output. Do not output any additional sentence such as explanation or reasoning.
-
-Example Translations:
-Chinese: 全仗着狐仙搭救。
-English: Because I was protected by a fox fairy.
-Chinese: 过后,表哥告诉她俩,这人是导演,在外国留过学的,还会编剧,今天拍的这戏,就是他自编自导的。
-English: He was the director, the cousin later told them. He had studied abroad and was also a screenwriter; in fact he had written and directed the scene they had earlier seen being filmed.
-Chinese: 这凤姐忽然想起一件事来,便向窗外叫:“蓉儿回来!”
-English: Xi-feng suddenly seemed to remember something, and called to him through the window, 'Rong, come back!'
-
-Chinese: 老耿端起枪,眯缝起一只三角眼,一搂扳机响了枪,冰雹般的金麻雀劈哩啪啦往下落,铁砂子在柳枝间飞迸着,嚓嚓有声。
-English:<|im_end|>
-<|im_start|>assistant
-
-
0%| | 0/567 [00:00, ?it/s]
0%| | 1/567 [00:04<41:28, 4.40s/it]
0%| | 2/567 [00:11<56:09, 5.96s/it]
1%| | 3/567 [00:15<47:24, 5.04s/it]
1%| | 4/567 [00:22<55:25, 5.91s/it]
1%| | 5/567 [00:23<39:11, 4.18s/it]
1%| | 6/567 [00:26<35:00, 3.74s/it]
1%| | 7/567 [00:27<26:56, 2.89s/it]
1%|▏ | 8/567 [00:31<29:59, 3.22s/it]
2%|▏ | 9/567 [00:35<31:31, 3.39s/it]
2%|▏ | 10/567 [00:38<29:56, 3.23s/it]
2%|▏ | 11/567 [00:41<30:13, 3.26s/it]
2%|▏ | 12/567 [00:43<24:50, 2.68s/it]
2%|▏ | 13/567 [00:45<25:15, 2.73s/it]
2%|▏ | 14/567 [00:47<21:52, 2.37s/it]
3%|▎ | 15/567 [00:48<18:21, 2.00s/it]
3%|▎ | 16/567 [00:51<20:39, 2.25s/it]
3%|▎ | 17/567 [00:57<30:56, 3.38s/it]
3%|▎ | 18/567 [00:59<27:17, 2.98s/it]
3%|▎ | 19/567 [01:01<23:37, 2.59s/it]
4%|▎ | 20/567 [01:02<21:31, 2.36s/it]
4%|▎ | 21/567 [01:07<26:57, 2.96s/it]
4%|▍ | 22/567 [01:09<25:50, 2.84s/it]
4%|▍ | 23/567 [01:15<32:35, 3.59s/it]
4%|▍ | 24/567 [01:17<28:27, 3.14s/it]
4%|▍ | 25/567 [01:18<22:43, 2.52s/it]
5%|▍ | 26/567 [01:22<26:41, 2.96s/it]
5%|▍ | 27/567 [01:24<23:19, 2.59s/it]
5%|▍ | 28/567 [01:32<38:36, 4.30s/it]
5%|▌ | 29/567 [01:35<35:18, 3.94s/it]
5%|▌ | 30/567 [01:39<34:16, 3.83s/it]
5%|▌ | 31/567 [01:40<27:27, 3.07s/it]
6%|▌ | 32/567 [01:43<27:14, 3.06s/it]
6%|▌ | 33/567 [01:45<24:21, 2.74s/it]
6%|▌ | 34/567 [01:50<30:00, 3.38s/it]
6%|▌ | 35/567 [01:53<30:17, 3.42s/it]
6%|▋ | 36/567 [01:54<24:08, 2.73s/it]
7%|▋ | 37/567 [01:55<18:42, 2.12s/it]
7%|▋ | 38/567 [01:57<17:11, 1.95s/it]
7%|▋ | 39/567 [01:59<19:12, 2.18s/it]
7%|▋ | 40/567 [02:02<20:57, 2.39s/it]
7%|▋ | 41/567 [02:03<16:28, 1.88s/it]
7%|▋ | 42/567 [02:07<21:59, 2.51s/it]
8%|▊ | 43/567 [02:08<18:09, 2.08s/it]
8%|▊ | 44/567 [02:11<20:16, 2.33s/it]
8%|▊ | 45/567 [02:14<22:02, 2.53s/it]
8%|▊ | 46/567 [02:15<19:27, 2.24s/it]
8%|▊ | 47/567 [02:18<20:36, 2.38s/it]
8%|▊ | 48/567 [02:21<22:52, 2.64s/it]
9%|▊ | 49/567 [02:23<19:30, 2.26s/it]
9%|▉ | 50/567 [02:26<22:52, 2.65s/it]
9%|▉ | 51/567 [02:31<26:47, 3.12s/it]
9%|▉ | 52/567 [02:32<21:54, 2.55s/it]
9%|▉ | 53/567 [02:48<56:22, 6.58s/it]
10%|▉ | 54/567 [02:52<49:56, 5.84s/it]
10%|▉ | 55/567 [02:57<48:11, 5.65s/it]
10%|▉ | 56/567 [03:03<49:44, 5.84s/it]
10%|█ | 57/567 [03:10<51:02, 6.01s/it]
10%|█ | 58/567 [03:11<39:19, 4.64s/it]
10%|█ | 59/567 [03:15<36:37, 4.33s/it]
11%|█ | 60/567 [03:18<32:28, 3.84s/it]
11%|█ | 61/567 [03:20<27:53, 3.31s/it]
11%|█ | 62/567 [03:22<24:44, 2.94s/it]
11%|█ | 63/567 [03:25<25:10, 3.00s/it]
11%|█▏ | 64/567 [03:30<31:26, 3.75s/it]
11%|█▏ | 65/567 [03:32<25:08, 3.00s/it]
12%|█▏ | 66/567 [03:35<26:35, 3.18s/it]
12%|█▏ | 67/567 [03:37<22:24, 2.69s/it]
12%|█▏ | 68/567 [03:44<34:23, 4.14s/it]
12%|█▏ | 69/567 [03:46<29:42, 3.58s/it]
12%|█▏ | 70/567 [03:49<27:21, 3.30s/it]
13%|█▎ | 71/567 [03:51<22:33, 2.73s/it]
13%|█▎ | 72/567 [03:54<24:24, 2.96s/it]
13%|█▎ | 73/567 [03:55<20:14, 2.46s/it]
13%|█▎ | 74/567 [03:57<18:26, 2.24s/it]
13%|█▎ | 75/567 [03:59<16:41, 2.04s/it]
13%|█▎ | 76/567 [04:02<19:53, 2.43s/it]
14%|█▎ | 77/567 [04:05<21:58, 2.69s/it]
14%|█▍ | 78/567 [04:08<21:12, 2.60s/it]
14%|█▍ | 79/567 [04:11<23:01, 2.83s/it]
14%|█▍ | 80/567 [04:13<19:53, 2.45s/it]
14%|█▍ | 81/567 [04:14<17:50, 2.20s/it]
14%|█▍ | 82/567 [04:16<17:13, 2.13s/it]
15%|█▍ | 83/567 [04:19<18:58, 2.35s/it]
15%|█▍ | 84/567 [04:21<17:58, 2.23s/it]
15%|█▍ | 85/567 [04:22<15:56, 1.99s/it]
15%|█▌ | 86/567 [04:23<12:50, 1.60s/it]
15%|█▌ | 87/567 [04:24<11:49, 1.48s/it]
16%|█▌ | 88/567 [04:26<12:27, 1.56s/it]
16%|█▌ | 89/567 [04:32<22:25, 2.82s/it]
16%|█▌ | 90/567 [04:35<23:40, 2.98s/it]
16%|█▌ | 91/567 [04:39<25:50, 3.26s/it]
16%|█▌ | 92/567 [04:42<24:19, 3.07s/it]
16%|█▋ | 93/567 [04:43<19:31, 2.47s/it]
17%|█▋ | 94/567 [04:47<23:36, 2.99s/it]
17%|█▋ | 95/567 [04:48<19:26, 2.47s/it]
17%|█▋ | 96/567 [04:51<19:05, 2.43s/it]
17%|█▋ | 97/567 [04:54<21:01, 2.68s/it]
17%|█▋ | 98/567 [04:55<16:59, 2.17s/it]
17%|█▋ | 99/567 [04:57<17:21, 2.22s/it]
18%|█▊ | 100/567 [05:01<21:08, 2.72s/it]
18%|█▊ | 101/567 [05:03<18:42, 2.41s/it]
18%|█▊ | 102/567 [05:07<22:15, 2.87s/it]
18%|█▊ | 103/567 [05:08<18:29, 2.39s/it]
18%|█▊ | 104/567 [05:12<21:40, 2.81s/it]
19%|█▊ | 105/567 [05:22<39:08, 5.08s/it]
19%|█▊ | 106/567 [05:25<35:03, 4.56s/it]
19%|█▉ | 107/567 [05:27<27:06, 3.54s/it]
19%|█▉ | 108/567 [05:35<38:57, 5.09s/it]
19%|█▉ | 109/567 [05:36<28:57, 3.79s/it]
19%|█▉ | 110/567 [05:38<25:09, 3.30s/it]
20%|█▉ | 111/567 [05:45<32:36, 4.29s/it]
20%|█▉ | 112/567 [05:49<31:20, 4.13s/it]
20%|█▉ | 113/567 [05:55<36:22, 4.81s/it]
20%|██ | 114/567 [05:57<29:44, 3.94s/it]
20%|██ | 115/567 [06:01<30:04, 3.99s/it]
20%|██ | 116/567 [06:03<25:20, 3.37s/it]
21%|██ | 117/567 [06:05<22:39, 3.02s/it]
21%|██ | 118/567 [06:08<22:25, 3.00s/it]
21%|██ | 119/567 [06:15<30:29, 4.08s/it]
21%|██ | 120/567 [06:18<27:40, 3.71s/it]
21%|██▏ | 121/567 [06:18<21:22, 2.88s/it]
22%|██▏ | 122/567 [06:20<19:15, 2.60s/it]
22%|██▏ | 123/567 [06:23<18:03, 2.44s/it]
22%|██▏ | 124/567 [06:24<15:57, 2.16s/it]
22%|██▏ | 125/567 [06:26<15:41, 2.13s/it]
22%|██▏ | 126/567 [06:29<16:22, 2.23s/it]
22%|██▏ | 127/567 [06:34<22:47, 3.11s/it]
23%|██▎ | 128/567 [06:37<23:19, 3.19s/it]
23%|██▎ | 129/567 [06:41<23:49, 3.26s/it]
23%|██▎ | 130/567 [06:50<37:31, 5.15s/it]
23%|██▎ | 131/567 [06:56<39:52, 5.49s/it]
23%|██▎ | 132/567 [07:06<49:55, 6.89s/it]
23%|██▎ | 133/567 [07:15<53:28, 7.39s/it]
24%|██▎ | 134/567 [07:24<57:20, 7.95s/it]
24%|██▍ | 135/567 [07:26<44:36, 6.19s/it]
24%|██▍ | 136/567 [07:29<35:56, 5.00s/it]
24%|██▍ | 137/567 [07:31<30:12, 4.21s/it]
24%|██▍ | 138/567 [07:32<23:24, 3.27s/it]
25%|██▍ | 139/567 [07:34<21:19, 2.99s/it]
25%|██▍ | 140/567 [07:37<20:08, 2.83s/it]
25%|██▍ | 141/567 [07:39<19:00, 2.68s/it]
25%|██▌ | 142/567 [07:41<16:39, 2.35s/it]
25%|██▌ | 143/567 [07:42<15:11, 2.15s/it]
25%|██▌ | 144/567 [07:45<16:58, 2.41s/it]
26%|██▌ | 145/567 [07:48<17:12, 2.45s/it]
26%|██▌ | 146/567 [07:51<18:57, 2.70s/it]
26%|██▌ | 147/567 [07:58<26:39, 3.81s/it]
26%|██▌ | 148/567 [08:01<24:58, 3.58s/it]
26%|██▋ | 149/567 [08:02<19:58, 2.87s/it]
26%|██▋ | 150/567 [08:03<15:32, 2.24s/it]
27%|██▋ | 151/567 [08:04<12:36, 1.82s/it]
27%|██▋ | 152/567 [08:07<15:36, 2.26s/it]
27%|██▋ | 153/567 [08:10<17:31, 2.54s/it]
27%|██▋ | 154/567 [08:12<15:32, 2.26s/it]
27%|██▋ | 155/567 [08:13<14:31, 2.12s/it]
28%|██▊ | 156/567 [08:16<15:43, 2.30s/it]
28%|██▊ | 157/567 [08:19<16:32, 2.42s/it]
28%|██▊ | 158/567 [08:26<25:41, 3.77s/it]
28%|██▊ | 159/567 [08:28<22:40, 3.33s/it]
28%|██▊ | 160/567 [08:33<26:22, 3.89s/it]
28%|██▊ | 161/567 [08:34<20:54, 3.09s/it]
29%|██▊ | 162/567 [08:37<19:04, 2.83s/it]
29%|██▊ | 163/567 [08:39<17:39, 2.62s/it]
29%|██▉ | 164/567 [08:44<23:10, 3.45s/it]
29%|██▉ | 165/567 [08:48<23:04, 3.44s/it]
29%|██▉ | 166/567 [08:50<20:01, 3.00s/it]
29%|██▉ | 167/567 [08:55<24:05, 3.61s/it]
30%|██▉ | 168/567 [08:57<20:44, 3.12s/it]
30%|██▉ | 169/567 [09:00<20:39, 3.11s/it]
30%|██▉ | 170/567 [09:03<20:27, 3.09s/it]
30%|███ | 171/567 [09:06<20:18, 3.08s/it]
30%|███ | 172/567 [09:10<21:55, 3.33s/it]
31%|███ | 173/567 [09:11<18:42, 2.85s/it]
31%|███ | 174/567 [09:14<17:39, 2.70s/it]
31%|███ | 175/567 [09:17<17:59, 2.75s/it]
31%|███ | 176/567 [09:19<16:29, 2.53s/it]
31%|███ | 177/567 [09:23<19:02, 2.93s/it]
31%|███▏ | 178/567 [09:24<15:49, 2.44s/it]
32%|███▏ | 179/567 [09:27<17:06, 2.65s/it]
32%|███▏ | 180/567 [09:30<18:17, 2.84s/it]
32%|███▏ | 181/567 [09:33<17:58, 2.79s/it]
32%|███▏ | 182/567 [09:34<14:10, 2.21s/it]
32%|███▏ | 183/567 [09:35<12:03, 1.88s/it]
32%|███▏ | 184/567 [09:38<14:32, 2.28s/it]
33%|███▎ | 185/567 [09:39<12:10, 1.91s/it]
33%|███▎ | 186/567 [09:49<27:03, 4.26s/it]
33%|███▎ | 187/567 [09:51<23:11, 3.66s/it]
33%|███▎ | 188/567 [09:53<19:24, 3.07s/it]
33%|███▎ | 189/567 [09:55<17:40, 2.81s/it]
34%|███▎ | 190/567 [09:56<14:29, 2.31s/it]
34%|███▎ | 191/567 [10:01<18:27, 2.95s/it]
34%|███▍ | 192/567 [10:04<18:55, 3.03s/it]
34%|███▍ | 193/567 [10:14<32:16, 5.18s/it]
34%|███▍ | 194/567 [10:16<25:14, 4.06s/it]
34%|███▍ | 195/567 [10:18<22:19, 3.60s/it]
35%|███▍ | 196/567 [10:20<19:26, 3.14s/it]
35%|███▍ | 197/567 [10:25<22:23, 3.63s/it]
35%|███▍ | 198/567 [10:30<25:02, 4.07s/it]
35%|███▌ | 199/567 [10:33<23:23, 3.81s/it]
35%|███▌ | 200/567 [10:35<20:32, 3.36s/it]
35%|███▌ | 201/567 [10:37<16:56, 2.78s/it]
36%|███▌ | 202/567 [10:39<15:51, 2.61s/it]
36%|███▌ | 203/567 [10:41<15:09, 2.50s/it]
36%|███▌ | 204/567 [10:43<13:45, 2.28s/it]
36%|███▌ | 205/567 [10:46<15:16, 2.53s/it]
36%|███▋ | 206/567 [10:52<20:08, 3.35s/it]
37%|███▋ | 207/567 [10:54<18:22, 3.06s/it]
37%|███▋ | 208/567 [10:58<19:49, 3.31s/it]
37%|███▋ | 209/567 [10:59<15:58, 2.68s/it]
37%|███▋ | 210/567 [11:02<15:57, 2.68s/it]
37%|███▋ | 211/567 [11:05<16:42, 2.81s/it]
37%|███▋ | 212/567 [11:08<16:26, 2.78s/it]
38%|███▊ | 213/567 [11:10<16:26, 2.79s/it]
38%|███▊ | 214/567 [11:14<17:21, 2.95s/it]
38%|███▊ | 215/567 [11:17<17:45, 3.03s/it]
38%|███▊ | 216/567 [11:20<18:17, 3.13s/it]
38%|███▊ | 217/567 [11:24<19:55, 3.42s/it]
38%|███▊ | 218/567 [11:30<24:31, 4.22s/it]
39%|███▊ | 219/567 [11:34<23:06, 3.98s/it]
39%|███▉ | 220/567 [11:36<20:10, 3.49s/it]
39%|███▉ | 221/567 [11:38<16:29, 2.86s/it]
39%|███▉ | 222/567 [11:40<15:20, 2.67s/it]
39%|███▉ | 223/567 [11:41<13:39, 2.38s/it]
40%|███▉ | 224/567 [11:44<14:02, 2.46s/it]
40%|███▉ | 225/567 [11:47<15:33, 2.73s/it]
40%|███▉ | 226/567 [11:51<16:10, 2.85s/it]
40%|████ | 227/567 [11:52<14:16, 2.52s/it]
40%|████ | 228/567 [11:55<14:50, 2.63s/it]
40%|████ | 229/567 [11:59<16:52, 3.00s/it]
41%|████ | 230/567 [12:01<15:32, 2.77s/it]
41%|████ | 231/567 [12:06<18:50, 3.36s/it]
41%|████ | 232/567 [12:08<16:38, 2.98s/it]
41%|████ | 233/567 [12:12<18:32, 3.33s/it]
41%|████▏ | 234/567 [12:14<14:58, 2.70s/it]
41%|████▏ | 235/567 [12:17<16:52, 3.05s/it]
42%|████▏ | 236/567 [12:20<16:32, 3.00s/it]
42%|████▏ | 237/567 [12:22<13:36, 2.47s/it]
42%|████▏ | 238/567 [12:24<13:57, 2.54s/it]
42%|████▏ | 239/567 [12:27<14:17, 2.61s/it]
42%|████▏ | 240/567 [12:37<26:10, 4.80s/it]
43%|████▎ | 241/567 [12:40<22:33, 4.15s/it]
43%|████▎ | 242/567 [12:42<19:14, 3.55s/it]
43%|████▎ | 243/567 [12:46<19:40, 3.64s/it]
43%|████▎ | 244/567 [12:50<21:28, 3.99s/it]
43%|████▎ | 245/567 [12:52<16:49, 3.14s/it]
43%|████▎ | 246/567 [12:55<16:37, 3.11s/it]
44%|████▎ | 247/567 [12:56<13:10, 2.47s/it]
44%|████▎ | 248/567 [12:58<13:16, 2.50s/it]
44%|████▍ | 249/567 [13:00<12:41, 2.39s/it]
44%|████▍ | 250/567 [13:05<16:05, 3.04s/it]
44%|████▍ | 251/567 [13:12<21:53, 4.16s/it]
44%|████▍ | 252/567 [13:15<21:04, 4.01s/it]
45%|████▍ | 253/567 [13:17<16:51, 3.22s/it]
45%|████▍ | 254/567 [13:27<27:23, 5.25s/it]
45%|████▍ | 255/567 [13:30<24:14, 4.66s/it]
45%|████▌ | 256/567 [13:31<19:18, 3.73s/it]
45%|████▌ | 257/567 [13:37<21:57, 4.25s/it]
46%|████▌ | 258/567 [13:40<20:15, 3.93s/it]
46%|████▌ | 259/567 [13:41<16:12, 3.16s/it]
46%|████▌ | 260/567 [13:50<24:54, 4.87s/it]
46%|████▌ | 261/567 [13:54<22:44, 4.46s/it]
46%|████▌ | 262/567 [13:58<21:58, 4.32s/it]
46%|████▋ | 263/567 [13:59<17:44, 3.50s/it]
47%|████▋ | 264/567 [14:00<13:38, 2.70s/it]
47%|████▋ | 265/567 [14:06<18:45, 3.73s/it]
47%|████▋ | 266/567 [14:08<15:33, 3.10s/it]
47%|████▋ | 267/567 [14:10<14:29, 2.90s/it]
47%|████▋ | 268/567 [14:16<17:50, 3.58s/it]
47%|████▋ | 269/567 [14:20<18:15, 3.68s/it]
48%|████▊ | 270/567 [14:22<16:05, 3.25s/it]
48%|████▊ | 271/567 [14:26<18:05, 3.67s/it]
48%|████▊ | 272/567 [14:29<16:51, 3.43s/it]
48%|████▊ | 273/567 [14:32<15:15, 3.11s/it]
48%|████▊ | 274/567 [14:34<13:32, 2.77s/it]
49%|████▊ | 275/567 [14:36<12:30, 2.57s/it]
49%|████▊ | 276/567 [14:39<13:02, 2.69s/it]
49%|████▉ | 277/567 [14:42<13:23, 2.77s/it]
49%|████▉ | 278/567 [14:43<10:58, 2.28s/it]
49%|████▉ | 279/567 [14:49<16:19, 3.40s/it]
49%|████▉ | 280/567 [14:52<15:52, 3.32s/it]
50%|████▉ | 281/567 [14:53<12:47, 2.68s/it]
50%|████▉ | 282/567 [14:55<11:40, 2.46s/it]
50%|████▉ | 283/567 [15:00<14:30, 3.06s/it]
50%|█████ | 284/567 [15:01<12:19, 2.61s/it]
50%|█████ | 285/567 [15:03<10:57, 2.33s/it]
50%|█████ | 286/567 [15:04<09:13, 1.97s/it]
51%|█████ | 287/567 [15:08<11:50, 2.54s/it]
51%|█████ | 288/567 [15:10<11:54, 2.56s/it]
51%|█████ | 289/567 [15:14<13:20, 2.88s/it]
51%|█████ | 290/567 [15:18<14:24, 3.12s/it]
51%|█████▏ | 291/567 [15:20<13:54, 3.02s/it]
51%|█████▏ | 292/567 [15:24<14:12, 3.10s/it]
52%|█████▏ | 293/567 [15:26<13:16, 2.91s/it]
52%|█████▏ | 294/567 [15:28<12:20, 2.71s/it]
52%|█████▏ | 295/567 [15:30<10:59, 2.42s/it]
52%|█████▏ | 296/567 [15:34<12:22, 2.74s/it]
52%|█████▏ | 297/567 [15:36<11:20, 2.52s/it]
53%|█████▎ | 298/567 [15:45<21:03, 4.70s/it]
53%|█████▎ | 299/567 [15:48<17:49, 3.99s/it]
53%|█████▎ | 300/567 [15:51<16:48, 3.78s/it]
53%|█████▎ | 301/567 [15:55<16:43, 3.77s/it]
53%|█████▎ | 302/567 [15:57<14:27, 3.27s/it]
53%|█████▎ | 303/567 [15:59<12:55, 2.94s/it]
54%|█████▎ | 304/567 [16:02<12:18, 2.81s/it]
54%|█████▍ | 305/567 [16:04<11:53, 2.72s/it]
54%|█████▍ | 306/567 [16:08<12:48, 2.95s/it]
54%|█████▍ | 307/567 [16:14<16:53, 3.90s/it]
54%|█████▍ | 308/567 [16:16<15:03, 3.49s/it]
54%|█████▍ | 309/567 [16:17<11:29, 2.67s/it]
55%|█████▍ | 310/567 [16:29<23:34, 5.50s/it]
55%|█████▍ | 311/567 [16:33<20:50, 4.89s/it]
55%|█████▌ | 312/567 [16:35<17:20, 4.08s/it]
55%|█████▌ | 313/567 [16:37<14:24, 3.40s/it]
55%|█████▌ | 314/567 [16:40<14:00, 3.32s/it]
56%|█████▌ | 315/567 [16:47<19:03, 4.54s/it]
56%|█████▌ | 316/567 [16:49<15:25, 3.69s/it]
56%|█████▌ | 317/567 [16:52<14:21, 3.45s/it]
56%|█████▌ | 318/567 [16:53<11:37, 2.80s/it]
56%|█████▋ | 319/567 [16:57<13:15, 3.21s/it]
56%|█████▋ | 320/567 [16:58<10:32, 2.56s/it]
57%|█████▋ | 321/567 [17:05<15:23, 3.75s/it]
57%|█████▋ | 322/567 [17:07<14:03, 3.44s/it]
57%|█████▋ | 323/567 [17:10<13:23, 3.29s/it]
57%|█████▋ | 324/567 [17:13<11:59, 2.96s/it]
57%|█████▋ | 325/567 [17:21<18:12, 4.51s/it]
57%|█████▋ | 326/567 [17:22<13:52, 3.45s/it]
58%|█████▊ | 327/567 [17:23<11:46, 2.94s/it]
58%|█████▊ | 328/567 [17:27<11:55, 3.00s/it]
58%|█████▊ | 329/567 [17:32<15:12, 3.83s/it]
58%|█████▊ | 330/567 [17:33<11:20, 2.87s/it]
58%|█████▊ | 331/567 [17:35<10:36, 2.70s/it]
59%|█████▊ | 332/567 [17:37<09:27, 2.42s/it]
59%|█████▊ | 333/567 [17:40<10:01, 2.57s/it]
59%|█████▉ | 334/567 [17:42<09:05, 2.34s/it]
59%|█████▉ | 335/567 [17:44<09:11, 2.38s/it]
59%|█████▉ | 336/567 [17:45<07:32, 1.96s/it]
59%|█████▉ | 337/567 [17:50<10:16, 2.68s/it]
60%|█████▉ | 338/567 [17:51<09:19, 2.44s/it]
60%|█████▉ | 339/567 [17:53<08:16, 2.18s/it]
60%|█████▉ | 340/567 [17:54<07:24, 1.96s/it]
60%|██████ | 341/567 [17:56<06:53, 1.83s/it]
60%|██████ | 342/567 [18:00<08:47, 2.34s/it]
60%|██████ | 343/567 [18:01<07:44, 2.07s/it]
61%|██████ | 344/567 [18:04<08:17, 2.23s/it]
61%|██████ | 345/567 [18:06<08:07, 2.20s/it]
61%|██████ | 346/567 [18:07<07:20, 1.99s/it]
61%|██████ | 347/567 [18:11<08:54, 2.43s/it]
61%|██████▏ | 348/567 [18:13<09:08, 2.50s/it]
62%|██████▏ | 349/567 [18:19<12:26, 3.42s/it]
62%|██████▏ | 350/567 [18:22<12:03, 3.34s/it]
62%|██████▏ | 351/567 [18:33<20:26, 5.68s/it]
62%|██████▏ | 352/567 [18:35<16:19, 4.56s/it]
62%|██████▏ | 353/567 [18:41<17:36, 4.94s/it]
62%|██████▏ | 354/567 [18:44<15:56, 4.49s/it]
63%|██████▎ | 355/567 [18:47<13:36, 3.85s/it]
63%|██████▎ | 356/567 [18:50<13:13, 3.76s/it]
63%|██████▎ | 357/567 [18:52<10:45, 3.07s/it]
63%|██████▎ | 358/567 [18:54<09:23, 2.69s/it]
63%|██████▎ | 359/567 [18:55<08:28, 2.44s/it]
63%|██████▎ | 360/567 [18:58<08:16, 2.40s/it]
64%|██████▎ | 361/567 [19:00<07:42, 2.24s/it]
64%|██████▍ | 362/567 [19:04<09:19, 2.73s/it]
64%|██████▍ | 363/567 [19:09<12:18, 3.62s/it]
64%|██████▍ | 364/567 [19:14<13:36, 4.02s/it]
64%|██████▍ | 365/567 [19:17<11:54, 3.54s/it]
65%|██████▍ | 366/567 [19:19<10:21, 3.09s/it]
65%|██████▍ | 367/567 [19:22<10:44, 3.22s/it]
65%|██████▍ | 368/567 [19:26<11:05, 3.35s/it]
65%|██████▌ | 369/567 [19:30<11:28, 3.48s/it]
65%|██████▌ | 370/567 [19:31<09:49, 2.99s/it]
65%|██████▌ | 371/567 [19:33<08:41, 2.66s/it]
66%|██████▌ | 372/567 [19:35<07:39, 2.36s/it]
66%|██████▌ | 373/567 [19:39<09:25, 2.92s/it]
66%|██████▌ | 374/567 [19:44<11:18, 3.52s/it]
66%|██████▌ | 375/567 [19:48<11:10, 3.49s/it]
66%|██████▋ | 376/567 [19:49<09:25, 2.96s/it]
66%|██████▋ | 377/567 [19:56<13:12, 4.17s/it]
67%|██████▋ | 378/567 [20:00<12:18, 3.91s/it]
67%|██████▋ | 379/567 [20:03<12:03, 3.85s/it]
67%|██████▋ | 380/567 [20:06<10:28, 3.36s/it]
67%|██████▋ | 381/567 [20:08<09:45, 3.15s/it]
67%|██████▋ | 382/567 [20:10<08:12, 2.66s/it]
68%|██████▊ | 383/567 [20:14<09:39, 3.15s/it]
68%|██████▊ | 384/567 [20:19<11:06, 3.64s/it]
68%|██████▊ | 385/567 [20:24<12:16, 4.05s/it]
68%|██████▊ | 386/567 [20:27<11:44, 3.89s/it]
68%|██████▊ | 387/567 [20:30<10:16, 3.43s/it]
68%|██████▊ | 388/567 [20:40<16:32, 5.54s/it]
69%|██████▊ | 389/567 [20:43<14:03, 4.74s/it]
69%|██████▉ | 390/567 [20:44<10:47, 3.66s/it]
69%|██████▉ | 391/567 [20:47<10:24, 3.55s/it]
69%|██████▉ | 392/567 [20:52<11:13, 3.85s/it]
69%|██████▉ | 393/567 [20:53<09:09, 3.16s/it]
69%|██████▉ | 394/567 [20:57<09:17, 3.22s/it]
70%|██████▉ | 395/567 [21:01<10:13, 3.56s/it]
70%|██████▉ | 396/567 [21:05<09:58, 3.50s/it]
70%|███████ | 397/567 [21:12<13:17, 4.69s/it]
70%|███████ | 398/567 [21:13<10:12, 3.62s/it]
70%|███████ | 399/567 [21:14<08:11, 2.93s/it]
71%|███████ | 400/567 [21:16<07:17, 2.62s/it]
71%|███████ | 401/567 [21:19<07:25, 2.68s/it]
71%|███████ | 402/567 [21:23<08:32, 3.11s/it]
71%|███████ | 403/567 [21:27<08:34, 3.14s/it]
71%|███████▏ | 404/567 [21:28<07:10, 2.64s/it]
71%|███████▏ | 405/567 [21:30<06:23, 2.37s/it]
72%|███████▏ | 406/567 [21:33<06:58, 2.60s/it]
72%|███████▏ | 407/567 [21:34<06:08, 2.30s/it]
72%|███████▏ | 408/567 [21:39<07:55, 2.99s/it]
72%|███████▏ | 409/567 [21:41<06:59, 2.66s/it]
72%|███████▏ | 410/567 [21:43<06:39, 2.54s/it]
72%|███████▏ | 411/567 [21:44<05:30, 2.12s/it]
73%|███████▎ | 412/567 [21:48<06:29, 2.51s/it]
73%|███████▎ | 413/567 [21:51<07:02, 2.74s/it]
73%|███████▎ | 414/567 [21:52<05:39, 2.22s/it]
73%|███████▎ | 415/567 [21:58<08:42, 3.44s/it]
73%|███████▎ | 416/567 [22:02<08:35, 3.41s/it]
74%|███████▎ | 417/567 [22:09<11:35, 4.64s/it]
74%|███████▎ | 418/567 [22:12<10:05, 4.06s/it]
74%|███████▍ | 419/567 [22:23<15:20, 6.22s/it]
74%|███████▍ | 420/567 [22:27<13:18, 5.44s/it]
74%|███████▍ | 421/567 [22:31<12:23, 5.09s/it]
74%|███████▍ | 422/567 [22:34<10:59, 4.55s/it]
75%|███████▍ | 423/567 [22:38<10:16, 4.28s/it]
75%|███████▍ | 424/567 [22:42<09:46, 4.10s/it]
75%|███████▍ | 425/567 [22:45<09:03, 3.83s/it]
75%|███████▌ | 426/567 [22:46<07:15, 3.09s/it]
75%|███████▌ | 427/567 [22:49<06:45, 2.90s/it]
75%|███████▌ | 428/567 [22:53<07:26, 3.22s/it]
76%|███████▌ | 429/567 [22:58<08:41, 3.78s/it]
76%|███████▌ | 430/567 [23:00<07:37, 3.34s/it]
76%|███████▌ | 431/567 [23:07<09:44, 4.30s/it]
76%|███████▌ | 432/567 [23:13<10:46, 4.79s/it]
76%|███████▋ | 433/567 [23:17<10:25, 4.66s/it]
77%|███████▋ | 434/567 [23:21<10:01, 4.52s/it]
77%|███████▋ | 435/567 [23:22<07:49, 3.56s/it]
77%|███████▋ | 436/567 [23:25<07:16, 3.33s/it]
77%|███████▋ | 437/567 [23:27<06:02, 2.78s/it]
77%|███████▋ | 438/567 [23:30<06:25, 2.99s/it]
77%|███████▋ | 439/567 [23:33<06:12, 2.91s/it]
78%|███████▊ | 440/567 [23:34<05:12, 2.46s/it]
78%|███████▊ | 441/567 [23:37<05:10, 2.46s/it]
78%|███████▊ | 442/567 [23:39<05:12, 2.50s/it]
78%|███████▊ | 443/567 [23:41<04:52, 2.36s/it]
78%|███████▊ | 444/567 [23:48<07:18, 3.57s/it]
78%|███████▊ | 445/567 [23:51<06:49, 3.36s/it]
79%|███████▊ | 446/567 [23:56<07:52, 3.90s/it]
79%|███████▉ | 447/567 [23:59<07:38, 3.82s/it]
79%|███████▉ | 448/567 [24:03<07:35, 3.83s/it]
79%|███████▉ | 449/567 [24:05<06:23, 3.25s/it]
79%|███████▉ | 450/567 [24:08<05:50, 3.00s/it]
80%|███████▉ | 451/567 [24:09<05:05, 2.63s/it]
80%|███████▉ | 452/567 [24:12<04:59, 2.60s/it]
80%|███████▉ | 453/567 [24:17<06:13, 3.28s/it]
80%|████████ | 454/567 [24:19<05:45, 3.05s/it]
80%|████████ | 455/567 [24:21<05:01, 2.69s/it]
80%|████████ | 456/567 [24:23<04:21, 2.36s/it]
81%|████████ | 457/567 [24:25<04:00, 2.19s/it]
81%|████████ | 458/567 [24:28<04:34, 2.52s/it]
81%|████████ | 459/567 [24:32<05:09, 2.87s/it]
81%|████████ | 460/567 [24:32<03:57, 2.22s/it]
81%|████████▏ | 461/567 [24:34<03:38, 2.06s/it]
81%|████████▏ | 462/567 [24:36<03:27, 1.98s/it]
82%|████████▏ | 463/567 [24:38<03:45, 2.17s/it]
82%|████████▏ | 464/567 [24:40<03:33, 2.07s/it]
82%|████████▏ | 465/567 [24:43<03:51, 2.27s/it]
82%|████████▏ | 466/567 [24:45<03:40, 2.18s/it]
82%|████████▏ | 467/567 [24:46<03:09, 1.90s/it]
83%|████████▎ | 468/567 [24:49<03:51, 2.34s/it]
83%|████████▎ | 469/567 [24:51<03:34, 2.18s/it]
83%|████████▎ | 470/567 [24:54<03:37, 2.24s/it]
83%|████████▎ | 471/567 [24:58<04:38, 2.91s/it]
83%|████████▎ | 472/567 [25:04<06:14, 3.94s/it]
83%|████████▎ | 473/567 [25:08<06:03, 3.87s/it]
84%|████████▎ | 474/567 [25:14<06:43, 4.34s/it]
84%|████████▍ | 475/567 [25:15<05:12, 3.39s/it]
84%|████████▍ | 476/567 [25:17<04:34, 3.01s/it]
84%|████████▍ | 477/567 [25:18<03:34, 2.38s/it]
84%|████████▍ | 478/567 [25:20<03:18, 2.23s/it]
84%|████████▍ | 479/567 [25:21<02:52, 1.96s/it]
85%|████████▍ | 480/567 [25:23<02:58, 2.06s/it]
85%|████████▍ | 481/567 [25:30<04:56, 3.45s/it]
85%|████████▌ | 482/567 [25:32<04:16, 3.02s/it]
85%|████████▌ | 483/567 [25:34<03:38, 2.60s/it]
85%|████████▌ | 484/567 [25:39<04:51, 3.52s/it]
86%|████████▌ | 485/567 [25:41<04:04, 2.98s/it]
86%|████████▌ | 486/567 [25:44<03:55, 2.91s/it]
86%|████████▌ | 487/567 [25:51<05:31, 4.14s/it]
86%|████████▌ | 488/567 [25:53<04:34, 3.48s/it]
86%|████████▌ | 489/567 [25:55<04:00, 3.09s/it]
86%|████████▋ | 490/567 [26:02<05:25, 4.22s/it]
87%|████████▋ | 491/567 [26:04<04:40, 3.70s/it]
87%|████████▋ | 492/567 [26:05<03:39, 2.93s/it]
87%|████████▋ | 493/567 [26:09<03:54, 3.17s/it]
87%|████████▋ | 494/567 [26:12<03:51, 3.17s/it]
87%|████████▋ | 495/567 [26:23<06:31, 5.44s/it]
87%|████████▋ | 496/567 [26:26<05:28, 4.62s/it]
88%|████████▊ | 497/567 [26:30<05:11, 4.45s/it]
88%|████████▊ | 498/567 [26:33<04:42, 4.10s/it]
88%|████████▊ | 499/567 [26:35<04:01, 3.55s/it]
88%|████████▊ | 500/567 [26:40<04:24, 3.95s/it]
88%|████████▊ | 501/567 [26:42<03:31, 3.21s/it]
89%|████████▊ | 502/567 [26:46<03:55, 3.63s/it]
89%|████████▊ | 503/567 [26:55<05:34, 5.22s/it]
89%|████████▉ | 504/567 [26:59<04:55, 4.69s/it]
89%|████████▉ | 505/567 [27:04<04:59, 4.84s/it]
89%|████████▉ | 506/567 [27:09<05:00, 4.93s/it]
89%|████████▉ | 507/567 [27:11<03:54, 3.90s/it]
90%|████████▉ | 508/567 [27:14<03:39, 3.72s/it]
90%|████████▉ | 509/567 [27:16<03:07, 3.23s/it]
90%|████████▉ | 510/567 [27:20<03:21, 3.53s/it]
90%|█████████ | 511/567 [27:23<03:05, 3.31s/it]
90%|█████████ | 512/567 [27:29<03:43, 4.07s/it]
90%|█████████ | 513/567 [27:32<03:28, 3.86s/it]
91%|█████████ | 514/567 [27:33<02:38, 3.00s/it]
91%|█████████ | 515/567 [27:35<02:24, 2.77s/it]
91%|█████████ | 516/567 [27:38<02:12, 2.60s/it]
91%|█████████ | 517/567 [27:40<02:10, 2.61s/it]
91%|█████████▏| 518/567 [27:42<01:52, 2.30s/it]
92%|█████████▏| 519/567 [27:44<01:49, 2.28s/it]
92%|█████████▏| 520/567 [27:46<01:43, 2.19s/it]
92%|█████████▏| 521/567 [27:49<01:47, 2.34s/it]
92%|█████████▏| 522/567 [27:54<02:21, 3.15s/it]
92%|█████████▏| 523/567 [27:56<02:09, 2.95s/it]
92%|█████████▏| 524/567 [27:58<01:56, 2.71s/it]
93%|█████████▎| 525/567 [28:01<01:56, 2.78s/it]
93%|█████████▎| 526/567 [28:04<01:54, 2.78s/it]
93%|█████████▎| 527/567 [28:08<01:58, 2.97s/it]
93%|█████████▎| 528/567 [28:09<01:39, 2.54s/it]
93%|█████████▎| 529/567 [28:11<01:32, 2.43s/it]
93%|█████████▎| 530/567 [28:15<01:47, 2.91s/it]
94%|█████████▎| 531/567 [28:17<01:36, 2.67s/it]
94%|█████████▍| 532/567 [28:20<01:34, 2.71s/it]
94%|█████████▍| 533/567 [28:22<01:20, 2.38s/it]
94%|█████████▍| 534/567 [28:23<01:09, 2.10s/it]
94%|█████████▍| 535/567 [28:27<01:20, 2.51s/it]
95%|█████████▍| 536/567 [28:29<01:17, 2.51s/it]
95%|█████████▍| 537/567 [28:33<01:24, 2.82s/it]
95%|█████████▍| 538/567 [28:34<01:11, 2.47s/it]
95%|█████████▌| 539/567 [28:40<01:37, 3.47s/it]
95%|█████████▌| 540/567 [28:50<02:22, 5.28s/it]
95%|█████████▌| 541/567 [28:55<02:17, 5.30s/it]
96%|█████████▌| 542/567 [28:59<02:04, 5.00s/it]
96%|█████████▌| 543/567 [29:11<02:48, 7.04s/it]
96%|█████████▌| 544/567 [29:12<01:58, 5.16s/it]
96%|█████████▌| 545/567 [29:15<01:37, 4.45s/it]
96%|█████████▋| 546/567 [29:17<01:20, 3.82s/it]
96%|█████████▋| 547/567 [29:19<01:03, 3.17s/it]
97%|█████████▋| 548/567 [29:21<00:54, 2.86s/it]
97%|█████████▋| 549/567 [29:22<00:43, 2.43s/it]
97%|█████████▋| 550/567 [29:25<00:41, 2.44s/it]
97%|█████████▋| 551/567 [29:27<00:38, 2.43s/it]
97%|█████████▋| 552/567 [29:33<00:52, 3.47s/it]
98%|█████████▊| 553/567 [29:35<00:41, 2.99s/it]
98%|█████████▊| 554/567 [29:36<00:33, 2.57s/it]
98%|█████████▊| 555/567 [29:38<00:27, 2.32s/it]
98%|█████████▊| 556/567 [29:40<00:23, 2.16s/it]
98%|█████████▊| 557/567 [29:43<00:25, 2.55s/it]
98%|█████████▊| 558/567 [29:46<00:23, 2.65s/it]
99%|█████████▊| 559/567 [29:51<00:25, 3.13s/it]
99%|█████████▉| 560/567 [29:54<00:22, 3.25s/it]
99%|█████████▉| 561/567 [29:56<00:16, 2.75s/it]
99%|█████████▉| 562/567 [30:02<00:18, 3.75s/it]
99%|█████████▉| 563/567 [30:05<00:14, 3.73s/it]
99%|█████████▉| 564/567 [30:09<00:10, 3.63s/it]
100%|█████████▉| 565/567 [30:11<00:06, 3.24s/it]
100%|█████████▉| 566/567 [30:14<00:03, 3.06s/it]
100%|██████████| 567/567 [30:14<00:00, 2.28s/it]
100%|██████████| 567/567 [30:14<00:00, 3.20s/it]
-Batch output: ['Old Geng raised his gun and squinted one of his triangular eyes, pulling the trigger and sending a hail of golden sparrows crashing down, the iron sand flying and clattering among the willow branches.', 'The next morning, before the sun had risen, Ruan姥姥 got up to wash and dress, and taught Bander a few words. The five- or six-year-old boy was delighted at the prospect of going into the city with her and readily agreed.']
-Qwen/Qwen2-7B-Instruct/shots-03 metrics: {'meteor': 0.38678180999660744, 'bleu_scores': {'bleu': 0.12368875746156333, 'precisions': [0.44208963282937364, 0.16761991648829783, 0.08137537910622282, 0.041850891904253694], 'brevity_penalty': 0.9813452019261544, 'length_ratio': 0.981517058628685, 'translation_length': 29632, 'reference_length': 30190}, 'rouge_scores': {'rouge1': 0.43601846678164907, 'rouge2': 0.18614758772539444, 'rougeL': 0.3779346650960985, 'rougeLsum': 0.37755269458606955}, 'accuracy': 0.0, 'correct_ids': []}
-*** Evaluating with num_shots: 5
-loading train/test data files
-
Map: 0%| | 0/4528 [00:00, ? examples/s]
Map: 88%|████████▊ | 4000/4528 [00:00<00:00, 33016.66 examples/s]
Map: 100%|██████████| 4528/4528 [00:00<00:00, 27594.39 examples/s]
-
Map: 0%| | 0/1133 [00:00, ? examples/s]
Map: 100%|██████████| 1133/1133 [00:00<00:00, 22266.43 examples/s]
-DatasetDict({
- train: Dataset({
- features: ['chinese', 'english', 'text', 'prompt'],
- num_rows: 4528
- })
- test: Dataset({
- features: ['chinese', 'english', 'text', 'prompt'],
- num_rows: 1133
- })
-})
---------------------------------------------------
-chinese: 老耿端起枪,眯缝起一只三角眼,一搂扳机响了枪,冰雹般的金麻雀劈哩啪啦往下落,铁砂子在柳枝间飞迸着,嚓嚓有声。
---------------------------------------------------
-english: Old Geng picked up his shotgun, squinted, and pulled the trigger. Two sparrows crashed to the ground like hailstones as shotgun pellets tore noisily through the branches.
---------------------------------------------------
-text: <|im_start|>system
-You are a helpful assistant that translates Chinese to English.<|im_end|>
-<|im_start|>user
-You will be given a Chinese sentence to translate. If it is an incomplete sentence, or if you are unsure about the meaning, simply copy the input text as your output. Do not output any additional sentence such as explanation or reasoning.
-
-Example Translations:
-Chinese: 全仗着狐仙搭救。
-English: Because I was protected by a fox fairy.
-Chinese: 过后,表哥告诉她俩,这人是导演,在外国留过学的,还会编剧,今天拍的这戏,就是他自编自导的。
-English: He was the director, the cousin later told them. He had studied abroad and was also a screenwriter; in fact he had written and directed the scene they had earlier seen being filmed.
-Chinese: 这凤姐忽然想起一件事来,便向窗外叫:“蓉儿回来!”
-English: Xi-feng suddenly seemed to remember something, and called to him through the window, 'Rong, come back!'
-Chinese: 三个老红卫兵走到叶文洁面前,面对着她站成了一排——当年,她们也是这样面对叶哲泰的——试图再现那早已忘却的尊严,但她们当年那魔鬼般的精神力量显然已荡然无存。
-English: The three old Red Guards stood in front of Ye in a row—just like they had stood against Ye Zhetai—trying to recapture their long-forgotten dignity. But the demonic spiritual energy that had once propelled them was gone.
-Chinese: 程先生照单全收,都是一个“谢”字,然后问王琦瑶有什么话说。
-English: Mr. Cheng accepted their toast with equanimity and a 'thank you.' Then, turning to Wang Qiyao, he asked if she had anything to say.
-
-Chinese: 老耿端起枪,眯缝起一只三角眼,一搂扳机响了枪,冰雹般的金麻雀劈哩啪啦往下落,铁砂子在柳枝间飞迸着,嚓嚓有声。
-English:<|im_end|>
-<|im_start|>assistant
-Old Geng picked up his shotgun, squinted, and pulled the trigger. Two sparrows crashed to the ground like hailstones as shotgun pellets tore noisily through the branches.<|im_end|>
---------------------------------------------------
-prompt: <|im_start|>system
-You are a helpful assistant that translates Chinese to English.<|im_end|>
-<|im_start|>user
-You will be given a Chinese sentence to translate. If it is an incomplete sentence, or if you are unsure about the meaning, simply copy the input text as your output. Do not output any additional sentence such as explanation or reasoning.
-
-Example Translations:
-Chinese: 全仗着狐仙搭救。
-English: Because I was protected by a fox fairy.
-Chinese: 过后,表哥告诉她俩,这人是导演,在外国留过学的,还会编剧,今天拍的这戏,就是他自编自导的。
-English: He was the director, the cousin later told them. He had studied abroad and was also a screenwriter; in fact he had written and directed the scene they had earlier seen being filmed.
-Chinese: 这凤姐忽然想起一件事来,便向窗外叫:“蓉儿回来!”
-English: Xi-feng suddenly seemed to remember something, and called to him through the window, 'Rong, come back!'
-Chinese: 三个老红卫兵走到叶文洁面前,面对着她站成了一排——当年,她们也是这样面对叶哲泰的——试图再现那早已忘却的尊严,但她们当年那魔鬼般的精神力量显然已荡然无存。
-English: The three old Red Guards stood in front of Ye in a row—just like they had stood against Ye Zhetai—trying to recapture their long-forgotten dignity. But the demonic spiritual energy that had once propelled them was gone.
-Chinese: 程先生照单全收,都是一个“谢”字,然后问王琦瑶有什么话说。
-English: Mr. Cheng accepted their toast with equanimity and a 'thank you.' Then, turning to Wang Qiyao, he asked if she had anything to say.
-
-Chinese: 老耿端起枪,眯缝起一只三角眼,一搂扳机响了枪,冰雹般的金麻雀劈哩啪啦往下落,铁砂子在柳枝间飞迸着,嚓嚓有声。
-English:<|im_end|>
-<|im_start|>assistant
-
-
0%| | 0/567 [00:00, ?it/s]
0%| | 1/567 [00:07<1:07:29, 7.16s/it]
0%| | 2/567 [00:16<1:20:02, 8.50s/it]
1%| | 3/567 [00:21<1:04:49, 6.90s/it]
1%| | 4/567 [00:31<1:15:24, 8.04s/it]
1%| | 5/567 [00:33<54:24, 5.81s/it]
1%| | 6/567 [00:37<49:16, 5.27s/it]
1%| | 7/567 [00:39<38:25, 4.12s/it]
1%|▏ | 8/567 [00:45<43:49, 4.70s/it]
2%|▏ | 9/567 [00:51<47:06, 5.07s/it]
2%|▏ | 10/567 [00:55<45:12, 4.87s/it]
2%|▏ | 11/567 [01:00<45:51, 4.95s/it]
2%|▏ | 12/567 [01:02<37:45, 4.08s/it]
2%|▏ | 13/567 [01:07<38:42, 4.19s/it]
2%|▏ | 14/567 [01:09<33:44, 3.66s/it]
3%|▎ | 15/567 [01:11<28:04, 3.05s/it]
3%|▎ | 16/567 [01:15<31:50, 3.47s/it]
3%|▎ | 17/567 [01:24<46:23, 5.06s/it]
3%|▎ | 18/567 [01:27<40:36, 4.44s/it]
3%|▎ | 19/567 [01:29<35:18, 3.87s/it]
4%|▎ | 20/567 [01:32<31:19, 3.44s/it]
4%|▎ | 21/567 [01:39<40:46, 4.48s/it]
4%|▍ | 22/567 [01:42<38:19, 4.22s/it]
4%|▍ | 23/567 [01:49<43:38, 4.81s/it]
4%|▍ | 24/567 [01:52<38:38, 4.27s/it]
4%|▍ | 25/567 [01:53<31:27, 3.48s/it]
5%|▍ | 26/567 [01:59<38:06, 4.23s/it]
5%|▍ | 27/567 [02:01<32:34, 3.62s/it]
5%|▍ | 28/567 [02:13<52:43, 5.87s/it]
5%|▌ | 29/567 [02:17<48:23, 5.40s/it]
5%|▌ | 30/567 [02:24<51:59, 5.81s/it]
5%|▌ | 31/567 [02:25<41:03, 4.60s/it]
6%|▌ | 32/567 [02:29<39:20, 4.41s/it]
6%|▌ | 33/567 [02:33<36:24, 4.09s/it]
6%|▌ | 34/567 [02:40<44:51, 5.05s/it]
6%|▌ | 35/567 [02:45<45:13, 5.10s/it]
6%|▋ | 36/567 [02:47<36:14, 4.10s/it]
7%|▋ | 37/567 [02:48<29:22, 3.33s/it]
7%|▋ | 38/567 [02:51<26:38, 3.02s/it]
7%|▋ | 39/567 [02:54<27:07, 3.08s/it]
7%|▋ | 40/567 [02:58<30:18, 3.45s/it]
7%|▋ | 41/567 [02:59<23:45, 2.71s/it]
7%|▋ | 42/567 [03:05<32:23, 3.70s/it]
8%|▊ | 43/567 [03:07<26:40, 3.05s/it]
8%|▊ | 44/567 [03:11<29:41, 3.41s/it]
8%|▊ | 45/567 [03:16<32:24, 3.73s/it]
8%|▊ | 46/567 [03:18<28:40, 3.30s/it]
8%|▊ | 47/567 [03:22<31:40, 3.65s/it]
8%|▊ | 48/567 [03:27<34:32, 3.99s/it]
9%|▊ | 49/567 [03:29<29:32, 3.42s/it]
9%|▉ | 50/567 [03:35<35:33, 4.13s/it]
9%|▉ | 51/567 [03:41<41:12, 4.79s/it]
9%|▉ | 52/567 [03:43<33:36, 3.92s/it]
9%|▉ | 53/567 [04:06<1:22:00, 9.57s/it]
10%|▉ | 54/567 [04:13<1:15:06, 8.78s/it]
10%|▉ | 55/567 [04:20<1:10:07, 8.22s/it]
10%|▉ | 56/567 [04:29<1:12:14, 8.48s/it]
10%|█ | 57/567 [04:38<1:13:30, 8.65s/it]
10%|█ | 58/567 [04:40<56:22, 6.65s/it]
10%|█ | 59/567 [04:45<53:05, 6.27s/it]
11%|█ | 60/567 [04:49<46:39, 5.52s/it]
11%|█ | 61/567 [04:52<40:10, 4.76s/it]
11%|█ | 62/567 [04:55<35:37, 4.23s/it]
11%|█ | 63/567 [05:00<37:50, 4.51s/it]
11%|█▏ | 64/567 [05:08<46:44, 5.57s/it]
11%|█▏ | 65/567 [05:10<37:21, 4.46s/it]
12%|█▏ | 66/567 [05:15<39:17, 4.71s/it]
12%|█▏ | 67/567 [05:18<32:39, 3.92s/it]
12%|█▏ | 68/567 [05:29<50:16, 6.05s/it]
12%|█▏ | 69/567 [05:32<43:29, 5.24s/it]
12%|█▏ | 70/567 [05:36<39:55, 4.82s/it]
13%|█▎ | 71/567 [05:38<33:03, 4.00s/it]
13%|█▎ | 72/567 [05:42<34:12, 4.15s/it]
13%|█▎ | 73/567 [05:44<28:46, 3.49s/it]
13%|█▎ | 74/567 [05:47<27:27, 3.34s/it]
13%|█▎ | 75/567 [05:50<25:20, 3.09s/it]
13%|█▎ | 76/567 [05:54<27:16, 3.33s/it]
14%|█▎ | 77/567 [05:58<30:15, 3.70s/it]
14%|█▍ | 78/567 [06:02<29:38, 3.64s/it]
14%|█▍ | 79/567 [06:07<32:37, 4.01s/it]
14%|█▍ | 80/567 [06:09<28:08, 3.47s/it]
14%|█▍ | 81/567 [06:11<25:32, 3.15s/it]
14%|█▍ | 82/567 [06:14<24:49, 3.07s/it]
15%|█▍ | 83/567 [06:18<27:03, 3.36s/it]
15%|█▍ | 84/567 [06:21<26:01, 3.23s/it]
15%|█▍ | 85/567 [06:23<22:57, 2.86s/it]
15%|█▌ | 86/567 [06:24<18:40, 2.33s/it]
15%|█▌ | 87/567 [06:26<17:30, 2.19s/it]
16%|█▌ | 88/567 [06:29<18:18, 2.29s/it]
16%|█▌ | 89/567 [06:37<32:12, 4.04s/it]
16%|█▌ | 90/567 [06:41<32:56, 4.14s/it]
16%|█▌ | 91/567 [06:47<37:03, 4.67s/it]
16%|█▌ | 92/567 [06:51<34:56, 4.41s/it]
16%|█▋ | 93/567 [06:52<28:18, 3.58s/it]
17%|█▋ | 94/567 [06:59<36:11, 4.59s/it]
17%|█▋ | 95/567 [07:02<30:28, 3.87s/it]
17%|█▋ | 96/567 [07:05<30:35, 3.90s/it]
17%|█▋ | 97/567 [07:10<31:32, 4.03s/it]
17%|█▋ | 98/567 [07:11<25:34, 3.27s/it]
17%|█▋ | 99/567 [07:14<24:20, 3.12s/it]
18%|█▊ | 100/567 [07:20<30:28, 3.91s/it]
18%|█▊ | 101/567 [07:22<27:12, 3.50s/it]
18%|█▊ | 102/567 [07:28<33:04, 4.27s/it]
18%|█▊ | 103/567 [07:30<27:09, 3.51s/it]
18%|█▊ | 104/567 [07:36<33:10, 4.30s/it]
19%|█▊ | 105/567 [07:49<52:56, 6.88s/it]
19%|█▊ | 106/567 [07:54<49:05, 6.39s/it]
19%|█▉ | 107/567 [07:56<38:20, 5.00s/it]
19%|█▉ | 108/567 [08:09<55:10, 7.21s/it]
19%|█▉ | 109/567 [08:10<41:17, 5.41s/it]
19%|█▉ | 110/567 [08:12<34:23, 4.52s/it]
20%|█▉ | 111/567 [08:23<47:31, 6.25s/it]
20%|█▉ | 112/567 [08:28<45:52, 6.05s/it]
20%|█▉ | 113/567 [08:36<50:21, 6.66s/it]
20%|██ | 114/567 [08:39<41:55, 5.55s/it]
20%|██ | 115/567 [08:45<42:55, 5.70s/it]
20%|██ | 116/567 [08:49<38:04, 5.07s/it]
21%|██ | 117/567 [08:52<33:56, 4.53s/it]
21%|██ | 118/567 [08:56<33:13, 4.44s/it]
21%|██ | 119/567 [09:04<40:57, 5.49s/it]
21%|██ | 120/567 [09:09<38:40, 5.19s/it]
21%|██▏ | 121/567 [09:10<30:11, 4.06s/it]
22%|██▏ | 122/567 [09:13<27:29, 3.71s/it]
22%|██▏ | 123/567 [09:16<25:46, 3.48s/it]
22%|██▏ | 124/567 [09:18<23:07, 3.13s/it]
22%|██▏ | 125/567 [09:21<22:14, 3.02s/it]
22%|██▏ | 126/567 [09:24<22:29, 3.06s/it]
22%|██▏ | 127/567 [09:31<30:11, 4.12s/it]
23%|██▎ | 128/567 [09:36<32:32, 4.45s/it]
23%|██▎ | 129/567 [09:41<33:53, 4.64s/it]
23%|██▎ | 130/567 [09:53<49:55, 6.85s/it]
23%|██▎ | 131/567 [10:02<55:15, 7.60s/it]
23%|██▎ | 132/567 [10:16<1:08:12, 9.41s/it]
23%|██▎ | 133/567 [10:28<1:13:36, 10.18s/it]
24%|██▎ | 134/567 [10:41<1:19:03, 10.95s/it]
24%|██▍ | 135/567 [10:44<1:02:12, 8.64s/it]
24%|██▍ | 136/567 [10:47<50:16, 7.00s/it]
24%|██▍ | 137/567 [10:51<42:36, 5.95s/it]
24%|██▍ | 138/567 [10:52<33:17, 4.66s/it]
25%|██▍ | 139/567 [10:56<30:06, 4.22s/it]
25%|██▍ | 140/567 [10:59<28:16, 3.97s/it]
25%|██▍ | 141/567 [11:02<26:13, 3.69s/it]
25%|██▌ | 142/567 [11:04<23:28, 3.31s/it]
25%|██▌ | 143/567 [11:07<21:32, 3.05s/it]
25%|██▌ | 144/567 [11:12<26:08, 3.71s/it]
26%|██▌ | 145/567 [11:16<26:00, 3.70s/it]
26%|██▌ | 146/567 [11:21<29:13, 4.16s/it]
26%|██▌ | 147/567 [11:30<39:01, 5.57s/it]
26%|██▌ | 148/567 [11:34<36:23, 5.21s/it]
26%|██▋ | 149/567 [11:36<29:32, 4.24s/it]
26%|██▋ | 150/567 [11:37<22:41, 3.26s/it]
27%|██▋ | 151/567 [11:39<18:34, 2.68s/it]
27%|██▋ | 152/567 [11:43<22:19, 3.23s/it]
27%|██▋ | 153/567 [11:47<24:42, 3.58s/it]
27%|██▋ | 154/567 [11:50<22:28, 3.26s/it]
27%|██▋ | 155/567 [11:54<23:18, 3.39s/it]
28%|██▊ | 156/567 [11:58<25:06, 3.66s/it]
28%|██▊ | 157/567 [12:00<22:36, 3.31s/it]
28%|██▊ | 158/567 [12:10<34:23, 5.04s/it]
28%|██▊ | 159/567 [12:12<29:38, 4.36s/it]
28%|██▊ | 160/567 [12:19<34:43, 5.12s/it]
28%|██▊ | 161/567 [12:21<27:48, 4.11s/it]
29%|██▊ | 162/567 [12:24<25:16, 3.75s/it]
29%|██▊ | 163/567 [12:27<23:41, 3.52s/it]
29%|██▉ | 164/567 [12:35<32:08, 4.78s/it]
29%|██▉ | 165/567 [12:38<30:08, 4.50s/it]
29%|██▉ | 166/567 [12:41<25:56, 3.88s/it]
29%|██▉ | 167/567 [12:49<33:24, 5.01s/it]
30%|██▉ | 168/567 [12:51<28:24, 4.27s/it]
30%|██▉ | 169/567 [12:56<28:50, 4.35s/it]
30%|██▉ | 170/567 [12:59<26:57, 4.07s/it]
30%|███ | 171/567 [13:03<27:37, 4.19s/it]
30%|███ | 172/567 [13:09<29:19, 4.45s/it]
31%|███ | 173/567 [13:12<26:36, 4.05s/it]
31%|███ | 174/567 [13:15<25:23, 3.88s/it]
31%|███ | 175/567 [13:19<26:11, 4.01s/it]
31%|███ | 176/567 [13:22<23:15, 3.57s/it]
31%|███ | 177/567 [13:28<27:27, 4.22s/it]
31%|███▏ | 178/567 [13:30<23:00, 3.55s/it]
32%|███▏ | 179/567 [13:34<24:57, 3.86s/it]
32%|███▏ | 180/567 [13:38<25:14, 3.91s/it]
32%|███▏ | 181/567 [13:42<24:51, 3.86s/it]
32%|███▏ | 182/567 [13:43<19:52, 3.10s/it]
32%|███▏ | 183/567 [13:45<16:35, 2.59s/it]
32%|███▏ | 184/567 [13:50<21:17, 3.34s/it]
33%|███▎ | 185/567 [13:51<17:34, 2.76s/it]
33%|███▎ | 186/567 [14:04<36:42, 5.78s/it]
33%|███▎ | 187/567 [14:07<31:58, 5.05s/it]
33%|███▎ | 188/567 [14:10<27:06, 4.29s/it]
33%|███▎ | 189/567 [14:13<24:46, 3.93s/it]
34%|███▎ | 190/567 [14:15<20:23, 3.25s/it]
34%|███▎ | 191/567 [14:21<26:25, 4.22s/it]
34%|███▍ | 192/567 [14:26<28:15, 4.52s/it]
34%|███▍ | 193/567 [14:42<49:05, 7.87s/it]
34%|███▍ | 194/567 [14:45<38:58, 6.27s/it]
34%|███▍ | 195/567 [14:48<34:08, 5.51s/it]
35%|███▍ | 196/567 [14:51<29:16, 4.74s/it]
35%|███▍ | 197/567 [14:58<33:18, 5.40s/it]
35%|███▍ | 198/567 [15:05<34:46, 5.65s/it]
35%|███▌ | 199/567 [15:09<33:02, 5.39s/it]
35%|███▌ | 200/567 [15:12<28:51, 4.72s/it]
35%|███▌ | 201/567 [15:15<24:08, 3.96s/it]
36%|███▌ | 202/567 [15:18<22:30, 3.70s/it]
36%|███▌ | 203/567 [15:21<21:07, 3.48s/it]
36%|███▌ | 204/567 [15:23<19:32, 3.23s/it]
36%|███▌ | 205/567 [15:28<21:35, 3.58s/it]
36%|███▋ | 206/567 [15:37<31:25, 5.22s/it]
37%|███▋ | 207/567 [15:41<28:47, 4.80s/it]
37%|███▋ | 208/567 [15:46<30:33, 5.11s/it]
37%|███▋ | 209/567 [15:48<24:39, 4.13s/it]
37%|███▋ | 210/567 [15:52<23:42, 3.98s/it]
37%|███▋ | 211/567 [15:56<24:29, 4.13s/it]
37%|███▋ | 212/567 [16:00<23:32, 3.98s/it]
38%|███▊ | 213/567 [16:05<25:18, 4.29s/it]
38%|███▊ | 214/567 [16:09<25:10, 4.28s/it]
38%|███▊ | 215/567 [16:14<25:39, 4.37s/it]
38%|███▊ | 216/567 [16:19<26:20, 4.50s/it]
38%|███▊ | 217/567 [16:25<29:18, 5.02s/it]
38%|███▊ | 218/567 [16:32<32:05, 5.52s/it]
39%|███▊ | 219/567 [16:35<29:05, 5.01s/it]
39%|███▉ | 220/567 [16:39<26:05, 4.51s/it]
39%|███▉ | 221/567 [16:41<22:23, 3.88s/it]
39%|███▉ | 222/567 [16:44<20:26, 3.55s/it]
39%|███▉ | 223/567 [16:46<18:25, 3.21s/it]
40%|███▉ | 224/567 [16:50<19:33, 3.42s/it]
40%|███▉ | 225/567 [16:56<23:12, 4.07s/it]
40%|███▉ | 226/567 [17:01<24:08, 4.25s/it]
40%|████ | 227/567 [17:03<21:20, 3.77s/it]
40%|████ | 228/567 [17:07<21:58, 3.89s/it]
40%|████ | 229/567 [17:14<26:21, 4.68s/it]
41%|████ | 230/567 [17:17<23:25, 4.17s/it]
41%|████ | 231/567 [17:22<24:46, 4.42s/it]
41%|████ | 232/567 [17:25<22:12, 3.98s/it]
41%|████ | 233/567 [17:31<25:40, 4.61s/it]
41%|████▏ | 234/567 [17:33<20:39, 3.72s/it]
41%|████▏ | 235/567 [17:39<24:31, 4.43s/it]
42%|████▏ | 236/567 [17:43<24:22, 4.42s/it]
42%|████▏ | 237/567 [17:45<20:16, 3.69s/it]
42%|████▏ | 238/567 [17:49<20:09, 3.68s/it]
42%|████▏ | 239/567 [17:53<21:03, 3.85s/it]
42%|████▏ | 240/567 [18:07<36:50, 6.76s/it]
43%|████▎ | 241/567 [18:10<30:44, 5.66s/it]
43%|████▎ | 242/567 [18:13<26:51, 4.96s/it]
43%|████▎ | 243/567 [18:19<28:55, 5.36s/it]
43%|████▎ | 244/567 [18:26<31:38, 5.88s/it]
43%|████▎ | 245/567 [18:28<24:55, 4.64s/it]
43%|████▎ | 246/567 [18:32<23:35, 4.41s/it]
44%|████▎ | 247/567 [18:34<19:06, 3.58s/it]
44%|████▎ | 248/567 [18:38<20:06, 3.78s/it]
44%|████▍ | 249/567 [18:41<18:46, 3.54s/it]
44%|████▍ | 250/567 [18:47<22:55, 4.34s/it]
44%|████▍ | 251/567 [18:55<29:00, 5.51s/it]
44%|████▍ | 252/567 [19:01<28:40, 5.46s/it]
45%|████▍ | 253/567 [19:02<22:14, 4.25s/it]
45%|████▍ | 254/567 [19:15<35:25, 6.79s/it]
45%|████▍ | 255/567 [19:20<32:22, 6.23s/it]
45%|████▌ | 256/567 [19:22<26:00, 5.02s/it]
45%|████▌ | 257/567 [19:28<28:12, 5.46s/it]
46%|████▌ | 258/567 [19:34<28:03, 5.45s/it]
46%|████▌ | 259/567 [19:36<22:47, 4.44s/it]
46%|████▌ | 260/567 [19:48<34:09, 6.68s/it]
46%|████▌ | 261/567 [19:52<29:48, 5.85s/it]
46%|████▌ | 262/567 [19:58<30:08, 5.93s/it]
46%|████▋ | 263/567 [20:01<25:19, 5.00s/it]
47%|████▋ | 264/567 [20:02<19:39, 3.89s/it]
47%|████▋ | 265/567 [20:11<27:08, 5.39s/it]
47%|████▋ | 266/567 [20:13<22:34, 4.50s/it]
47%|████▋ | 267/567 [20:17<20:45, 4.15s/it]
47%|████▋ | 268/567 [20:24<25:05, 5.04s/it]
47%|████▋ | 269/567 [20:29<26:04, 5.25s/it]
48%|████▊ | 270/567 [20:32<21:28, 4.34s/it]
48%|████▊ | 271/567 [20:39<25:29, 5.17s/it]
48%|████▊ | 272/567 [20:43<23:30, 4.78s/it]
48%|████▊ | 273/567 [20:46<20:40, 4.22s/it]
48%|████▊ | 274/567 [20:48<18:18, 3.75s/it]
49%|████▊ | 275/567 [20:51<16:29, 3.39s/it]
49%|████▊ | 276/567 [20:55<18:08, 3.74s/it]
49%|████▉ | 277/567 [20:59<18:41, 3.87s/it]
49%|████▉ | 278/567 [21:01<15:34, 3.23s/it]
49%|████▉ | 279/567 [21:09<21:46, 4.54s/it]
49%|████▉ | 280/567 [21:13<21:43, 4.54s/it]
50%|████▉ | 281/567 [21:15<17:49, 3.74s/it]
50%|████▉ | 282/567 [21:18<16:12, 3.41s/it]
50%|████▉ | 283/567 [21:24<20:22, 4.30s/it]
50%|█████ | 284/567 [21:26<17:19, 3.67s/it]
50%|█████ | 285/567 [21:29<15:30, 3.30s/it]
50%|█████ | 286/567 [21:31<13:16, 2.83s/it]
51%|█████ | 287/567 [21:36<16:58, 3.64s/it]
51%|█████ | 288/567 [21:40<17:05, 3.68s/it]
51%|█████ | 289/567 [21:45<19:06, 4.13s/it]
51%|█████ | 290/567 [21:50<20:42, 4.49s/it]
51%|█████▏ | 291/567 [21:54<19:20, 4.21s/it]
51%|█████▏ | 292/567 [22:00<22:22, 4.88s/it]
52%|█████▏ | 293/567 [22:04<20:45, 4.54s/it]
52%|█████▏ | 294/567 [22:07<18:53, 4.15s/it]
52%|█████▏ | 295/567 [22:10<16:29, 3.64s/it]
52%|█████▏ | 296/567 [22:15<18:39, 4.13s/it]
52%|█████▏ | 297/567 [22:18<16:26, 3.65s/it]
53%|█████▎ | 298/567 [22:31<29:42, 6.63s/it]
53%|█████▎ | 299/567 [22:34<25:01, 5.60s/it]
53%|█████▎ | 300/567 [22:39<24:07, 5.42s/it]
53%|█████▎ | 301/567 [22:44<22:25, 5.06s/it]
53%|█████▎ | 302/567 [22:47<19:46, 4.48s/it]
53%|█████▎ | 303/567 [22:50<17:35, 4.00s/it]
54%|█████▎ | 304/567 [22:53<16:37, 3.79s/it]
54%|█████▍ | 305/567 [22:57<16:20, 3.74s/it]
54%|█████▍ | 306/567 [23:02<18:36, 4.28s/it]
54%|█████▍ | 307/567 [23:11<24:19, 5.61s/it]
54%|█████▍ | 308/567 [23:13<20:06, 4.66s/it]
54%|█████▍ | 309/567 [23:14<15:34, 3.62s/it]
55%|█████▍ | 310/567 [23:31<32:10, 7.51s/it]
55%|█████▍ | 311/567 [23:37<29:58, 7.03s/it]
55%|█████▌ | 312/567 [23:40<24:17, 5.72s/it]
55%|█████▌ | 313/567 [23:42<20:18, 4.80s/it]
55%|█████▌ | 314/567 [23:47<20:33, 4.88s/it]
56%|█████▌ | 315/567 [23:57<26:46, 6.38s/it]
56%|█████▌ | 316/567 [24:00<21:50, 5.22s/it]
56%|█████▌ | 317/567 [24:03<19:50, 4.76s/it]
56%|█████▌ | 318/567 [24:05<16:18, 3.93s/it]
56%|█████▋ | 319/567 [24:12<18:56, 4.58s/it]
56%|█████▋ | 320/567 [24:13<15:13, 3.70s/it]
57%|█████▋ | 321/567 [24:22<21:54, 5.34s/it]
57%|█████▋ | 322/567 [24:26<20:07, 4.93s/it]
57%|█████▋ | 323/567 [24:31<19:14, 4.73s/it]
57%|█████▋ | 324/567 [24:35<18:24, 4.54s/it]
57%|█████▋ | 325/567 [24:46<26:19, 6.53s/it]
57%|█████▋ | 326/567 [24:47<20:11, 5.03s/it]
58%|█████▊ | 327/567 [24:50<16:59, 4.25s/it]
58%|█████▊ | 328/567 [24:54<16:58, 4.26s/it]
58%|█████▊ | 329/567 [25:02<21:19, 5.38s/it]
58%|█████▊ | 330/567 [25:03<16:01, 4.06s/it]
58%|█████▊ | 331/567 [25:06<14:34, 3.71s/it]
59%|█████▊ | 332/567 [25:09<13:48, 3.52s/it]
59%|█████▊ | 333/567 [25:13<14:07, 3.62s/it]
59%|█████▉ | 334/567 [25:16<13:05, 3.37s/it]
59%|█████▉ | 335/567 [25:19<12:46, 3.30s/it]
59%|█████▉ | 336/567 [25:20<10:39, 2.77s/it]
59%|█████▉ | 337/567 [25:27<14:53, 3.88s/it]
60%|█████▉ | 338/567 [25:29<12:54, 3.38s/it]
60%|█████▉ | 339/567 [25:31<11:37, 3.06s/it]
60%|█████▉ | 340/567 [25:33<10:33, 2.79s/it]
60%|██████ | 341/567 [25:35<09:35, 2.55s/it]
60%|██████ | 342/567 [25:40<11:29, 3.07s/it]
60%|██████ | 343/567 [25:42<10:58, 2.94s/it]
61%|██████ | 344/567 [25:46<11:49, 3.18s/it]
61%|██████ | 345/567 [25:50<12:07, 3.27s/it]
61%|██████ | 346/567 [25:52<10:52, 2.95s/it]
61%|██████ | 347/567 [25:57<13:01, 3.55s/it]
61%|██████▏ | 348/567 [26:01<13:32, 3.71s/it]
62%|██████▏ | 349/567 [26:09<18:46, 5.17s/it]
62%|██████▏ | 350/567 [26:13<17:05, 4.73s/it]
62%|██████▏ | 351/567 [26:28<28:28, 7.91s/it]
62%|██████▏ | 352/567 [26:32<23:11, 6.47s/it]
62%|██████▏ | 353/567 [26:39<24:15, 6.80s/it]
62%|██████▏ | 354/567 [26:44<22:01, 6.21s/it]
63%|██████▎ | 355/567 [26:47<18:52, 5.34s/it]
63%|██████▎ | 356/567 [26:53<19:06, 5.44s/it]
63%|██████▎ | 357/567 [26:55<15:37, 4.46s/it]
63%|██████▎ | 358/567 [26:58<13:31, 3.88s/it]
63%|██████▎ | 359/567 [27:00<12:18, 3.55s/it]
63%|██████▎ | 360/567 [27:04<12:00, 3.48s/it]
64%|██████▎ | 361/567 [27:07<11:12, 3.26s/it]
64%|██████▍ | 362/567 [27:12<13:48, 4.04s/it]
64%|██████▍ | 363/567 [27:20<17:31, 5.15s/it]
64%|██████▍ | 364/567 [27:27<18:55, 5.59s/it]
64%|██████▍ | 365/567 [27:30<16:44, 4.97s/it]
65%|██████▍ | 366/567 [27:33<14:41, 4.39s/it]
65%|██████▍ | 367/567 [27:39<15:37, 4.69s/it]
65%|██████▍ | 368/567 [27:45<16:44, 5.05s/it]
65%|██████▌ | 369/567 [27:50<17:19, 5.25s/it]
65%|██████▌ | 370/567 [27:53<14:40, 4.47s/it]
65%|██████▌ | 371/567 [27:55<12:27, 3.82s/it]
66%|██████▌ | 372/567 [27:58<11:02, 3.40s/it]
66%|██████▌ | 373/567 [28:04<13:45, 4.26s/it]
66%|██████▌ | 374/567 [28:11<16:33, 5.15s/it]
66%|██████▌ | 375/567 [28:17<16:41, 5.22s/it]
66%|██████▋ | 376/567 [28:19<13:56, 4.38s/it]
66%|██████▋ | 377/567 [28:28<18:35, 5.87s/it]
67%|██████▋ | 378/567 [28:33<17:31, 5.56s/it]
67%|██████▋ | 379/567 [28:39<17:29, 5.58s/it]
67%|██████▋ | 380/567 [28:41<14:35, 4.68s/it]
67%|██████▋ | 381/567 [28:45<13:42, 4.42s/it]
67%|██████▋ | 382/567 [28:48<11:47, 3.83s/it]
68%|██████▊ | 383/567 [28:53<13:14, 4.32s/it]
68%|██████▊ | 384/567 [29:00<15:58, 5.24s/it]
68%|██████▊ | 385/567 [29:07<17:27, 5.75s/it]
68%|██████▊ | 386/567 [29:12<16:42, 5.54s/it]
68%|██████▊ | 387/567 [29:16<14:45, 4.92s/it]
68%|██████▊ | 388/567 [29:30<22:51, 7.66s/it]
69%|██████▊ | 389/567 [29:34<19:48, 6.68s/it]
69%|██████▉ | 390/567 [29:36<15:26, 5.23s/it]
69%|██████▉ | 391/567 [29:41<15:20, 5.23s/it]
69%|██████▉ | 392/567 [29:48<16:49, 5.77s/it]
69%|██████▉ | 393/567 [29:51<13:43, 4.73s/it]
69%|██████▉ | 394/567 [29:57<14:38, 5.08s/it]
70%|██████▉ | 395/567 [30:03<15:46, 5.50s/it]
70%|██████▉ | 396/567 [30:07<14:20, 5.03s/it]
70%|███████ | 397/567 [30:16<17:58, 6.34s/it]
70%|███████ | 398/567 [30:18<13:59, 4.97s/it]
70%|███████ | 399/567 [30:20<11:24, 4.07s/it]
71%|███████ | 400/567 [30:24<10:59, 3.95s/it]
71%|███████ | 401/567 [30:27<10:38, 3.85s/it]
71%|███████ | 402/567 [30:33<12:21, 4.49s/it]
71%|███████ | 403/567 [30:38<12:24, 4.54s/it]
71%|███████▏ | 404/567 [30:40<10:31, 3.87s/it]
71%|███████▏ | 405/567 [30:43<09:32, 3.54s/it]
72%|███████▏ | 406/567 [30:48<10:28, 3.90s/it]
72%|███████▏ | 407/567 [30:50<09:13, 3.46s/it]
72%|███████▏ | 408/567 [30:57<11:51, 4.47s/it]
72%|███████▏ | 409/567 [31:00<10:35, 4.02s/it]
72%|███████▏ | 410/567 [31:04<10:01, 3.83s/it]
72%|███████▏ | 411/567 [31:05<08:19, 3.20s/it]
73%|███████▎ | 412/567 [31:10<09:30, 3.68s/it]
73%|███████▎ | 413/567 [31:15<10:17, 4.01s/it]
73%|███████▎ | 414/567 [31:16<08:19, 3.26s/it]
73%|███████▎ | 415/567 [31:25<12:31, 4.94s/it]
73%|███████▎ | 416/567 [31:31<12:50, 5.10s/it]
74%|███████▎ | 417/567 [31:41<16:35, 6.63s/it]
74%|███████▎ | 418/567 [31:45<14:16, 5.75s/it]
74%|███████▍ | 419/567 [32:00<21:29, 8.71s/it]
74%|███████▍ | 420/567 [32:05<18:42, 7.63s/it]
74%|███████▍ | 421/567 [32:11<17:28, 7.18s/it]
74%|███████▍ | 422/567 [32:16<15:36, 6.46s/it]
75%|███████▍ | 423/567 [32:20<13:49, 5.76s/it]
75%|███████▍ | 424/567 [32:25<13:13, 5.55s/it]
75%|███████▍ | 425/567 [32:30<12:30, 5.28s/it]
75%|███████▌ | 426/567 [32:32<10:09, 4.32s/it]
75%|███████▌ | 427/567 [32:36<09:30, 4.08s/it]
75%|███████▌ | 428/567 [32:42<11:11, 4.83s/it]
76%|███████▌ | 429/567 [32:49<12:29, 5.43s/it]
76%|███████▌ | 430/567 [32:52<10:20, 4.53s/it]
76%|███████▌ | 431/567 [33:01<13:26, 5.93s/it]
76%|███████▌ | 432/567 [33:09<15:00, 6.67s/it]
76%|███████▋ | 433/567 [33:15<14:34, 6.53s/it]
77%|███████▋ | 434/567 [33:21<13:47, 6.22s/it]
77%|███████▋ | 435/567 [33:23<10:48, 4.92s/it]
77%|███████▋ | 436/567 [33:27<10:10, 4.66s/it]
77%|███████▋ | 437/567 [33:29<08:29, 3.92s/it]
77%|███████▋ | 438/567 [33:35<09:34, 4.45s/it]
77%|███████▋ | 439/567 [33:38<09:04, 4.26s/it]
78%|███████▊ | 440/567 [33:40<07:33, 3.57s/it]
78%|███████▊ | 441/567 [33:44<07:31, 3.58s/it]
78%|███████▊ | 442/567 [33:47<07:06, 3.41s/it]
78%|███████▊ | 443/567 [33:50<06:47, 3.28s/it]
78%|███████▊ | 444/567 [33:59<10:05, 4.93s/it]
78%|███████▊ | 445/567 [34:03<09:28, 4.66s/it]
79%|███████▊ | 446/567 [34:09<10:20, 5.13s/it]
79%|███████▉ | 447/567 [34:14<10:18, 5.15s/it]
79%|███████▉ | 448/567 [34:19<10:04, 5.08s/it]
79%|███████▉ | 449/567 [34:22<08:33, 4.35s/it]
79%|███████▉ | 450/567 [34:25<07:45, 3.98s/it]
80%|███████▉ | 451/567 [34:27<06:51, 3.55s/it]
80%|███████▉ | 452/567 [34:31<06:46, 3.54s/it]
80%|███████▉ | 453/567 [34:38<08:45, 4.61s/it]
80%|████████ | 454/567 [34:42<08:03, 4.28s/it]
80%|████████ | 455/567 [34:44<07:03, 3.78s/it]
80%|████████ | 456/567 [34:46<05:59, 3.24s/it]
81%|████████ | 457/567 [34:49<05:36, 3.06s/it]
81%|████████ | 458/567 [34:54<06:33, 3.61s/it]
81%|████████ | 459/567 [35:00<07:47, 4.33s/it]
81%|████████ | 460/567 [35:01<05:55, 3.32s/it]
81%|████████▏ | 461/567 [35:04<05:34, 3.16s/it]
81%|████████▏ | 462/567 [35:06<05:01, 2.87s/it]
82%|████████▏ | 463/567 [35:09<05:18, 3.06s/it]
82%|████████▏ | 464/567 [35:12<05:09, 3.01s/it]
82%|████████▏ | 465/567 [35:16<05:34, 3.28s/it]
82%|████████▏ | 466/567 [35:19<05:15, 3.12s/it]
82%|████████▏ | 467/567 [35:21<04:31, 2.71s/it]
83%|████████▎ | 468/567 [35:26<05:46, 3.50s/it]
83%|████████▎ | 469/567 [35:29<05:17, 3.24s/it]
83%|████████▎ | 470/567 [35:32<05:29, 3.40s/it]
83%|████████▎ | 471/567 [35:39<06:52, 4.30s/it]
83%|████████▎ | 472/567 [35:48<09:18, 5.88s/it]
83%|████████▎ | 473/567 [35:53<08:54, 5.68s/it]
84%|████████▎ | 474/567 [36:01<09:48, 6.32s/it]
84%|████████▍ | 475/567 [36:03<07:35, 4.95s/it]
84%|████████▍ | 476/567 [36:06<06:34, 4.34s/it]
84%|████████▍ | 477/567 [36:07<05:08, 3.43s/it]
84%|████████▍ | 478/567 [36:10<04:47, 3.23s/it]
84%|████████▍ | 479/567 [36:12<04:11, 2.85s/it]
85%|████████▍ | 480/567 [36:15<04:21, 3.01s/it]
85%|████████▍ | 481/567 [36:24<06:43, 4.70s/it]
85%|████████▌ | 482/567 [36:27<06:02, 4.26s/it]
85%|████████▌ | 483/567 [36:30<05:08, 3.67s/it]
85%|████████▌ | 484/567 [36:38<06:53, 4.98s/it]
86%|████████▌ | 485/567 [36:40<05:51, 4.28s/it]
86%|████████▌ | 486/567 [36:44<05:39, 4.19s/it]
86%|████████▌ | 487/567 [36:51<06:41, 5.01s/it]
86%|████████▌ | 488/567 [36:54<05:42, 4.34s/it]
86%|████████▌ | 489/567 [36:57<05:12, 4.00s/it]
86%|████████▋ | 490/567 [37:07<07:22, 5.74s/it]
87%|████████▋ | 491/567 [37:10<06:25, 5.08s/it]
87%|████████▋ | 492/567 [37:12<05:01, 4.01s/it]
87%|████████▋ | 493/567 [37:18<05:33, 4.50s/it]
87%|████████▋ | 494/567 [37:22<05:31, 4.54s/it]
87%|████████▋ | 495/567 [37:37<09:02, 7.54s/it]
87%|████████▋ | 496/567 [37:40<07:30, 6.35s/it]
88%|████████▊ | 497/567 [37:47<07:21, 6.31s/it]
88%|████████▊ | 498/567 [37:51<06:37, 5.77s/it]
88%|████████▊ | 499/567 [37:54<05:40, 5.01s/it]
88%|████████▊ | 500/567 [38:01<06:11, 5.55s/it]
88%|████████▊ | 501/567 [38:03<04:55, 4.48s/it]
89%|████████▊ | 502/567 [38:09<05:16, 4.88s/it]
89%|████████▊ | 503/567 [38:22<07:59, 7.48s/it]
89%|████████▉ | 504/567 [38:27<07:02, 6.71s/it]
89%|████████▉ | 505/567 [38:35<07:16, 7.03s/it]
89%|████████▉ | 506/567 [38:42<07:06, 6.99s/it]
89%|████████▉ | 507/567 [38:44<05:33, 5.55s/it]
90%|████████▉ | 508/567 [38:51<05:42, 5.80s/it]
90%|████████▉ | 509/567 [38:54<04:45, 4.93s/it]
90%|████████▉ | 510/567 [39:00<05:08, 5.41s/it]
90%|█████████ | 511/567 [39:04<04:42, 5.04s/it]
90%|█████████ | 512/567 [39:14<05:52, 6.40s/it]
90%|█████████ | 513/567 [39:19<05:20, 5.93s/it]
91%|█████████ | 514/567 [39:20<04:06, 4.64s/it]
91%|█████████ | 515/567 [39:23<03:39, 4.21s/it]
91%|█████████ | 516/567 [39:26<03:16, 3.85s/it]
91%|█████████ | 517/567 [39:30<03:11, 3.84s/it]
91%|█████████▏| 518/567 [39:33<02:48, 3.45s/it]
92%|█████████▏| 519/567 [39:36<02:47, 3.48s/it]
92%|█████████▏| 520/567 [39:39<02:34, 3.30s/it]
92%|█████████▏| 521/567 [39:43<02:39, 3.46s/it]
92%|█████████▏| 522/567 [39:48<02:53, 3.85s/it]
92%|█████████▏| 523/567 [39:52<02:49, 3.86s/it]
92%|█████████▏| 524/567 [39:55<02:36, 3.63s/it]
93%|█████████▎| 525/567 [39:59<02:39, 3.80s/it]
93%|█████████▎| 526/567 [40:03<02:38, 3.85s/it]
93%|█████████▎| 527/567 [40:07<02:41, 4.03s/it]
93%|█████████▎| 528/567 [40:10<02:20, 3.61s/it]
93%|█████████▎| 529/567 [40:13<02:12, 3.49s/it]
93%|█████████▎| 530/567 [40:19<02:32, 4.13s/it]
94%|█████████▎| 531/567 [40:22<02:17, 3.83s/it]
94%|█████████▍| 532/567 [40:26<02:11, 3.77s/it]
94%|█████████▍| 533/567 [40:28<01:53, 3.34s/it]
94%|█████████▍| 534/567 [40:30<01:38, 2.99s/it]
94%|█████████▍| 535/567 [40:35<01:54, 3.58s/it]
95%|█████████▍| 536/567 [40:39<01:51, 3.59s/it]
95%|█████████▍| 537/567 [40:44<02:01, 4.04s/it]
95%|█████████▍| 538/567 [40:46<01:40, 3.46s/it]
95%|█████████▌| 539/567 [40:56<02:35, 5.55s/it]
95%|█████████▌| 540/567 [41:10<03:31, 7.84s/it]
95%|█████████▌| 541/567 [41:17<03:24, 7.86s/it]
96%|█████████▌| 542/567 [41:24<03:05, 7.43s/it]
96%|█████████▌| 543/567 [41:40<04:02, 10.09s/it]
96%|█████████▌| 544/567 [41:41<02:50, 7.42s/it]
96%|█████████▌| 545/567 [41:46<02:25, 6.60s/it]
96%|█████████▋| 546/567 [41:49<01:55, 5.48s/it]
96%|█████████▋| 547/567 [41:51<01:31, 4.56s/it]
97%|█████████▋| 548/567 [41:54<01:18, 4.12s/it]
97%|█████████▋| 549/567 [41:57<01:03, 3.55s/it]
97%|█████████▋| 550/567 [42:01<01:02, 3.65s/it]
97%|█████████▋| 551/567 [42:05<01:00, 3.77s/it]
97%|█████████▋| 552/567 [42:12<01:13, 4.89s/it]
98%|█████████▊| 553/567 [42:15<00:58, 4.18s/it]
98%|█████████▊| 554/567 [42:17<00:47, 3.68s/it]
98%|█████████▊| 555/567 [42:20<00:40, 3.38s/it]
98%|█████████▊| 556/567 [42:22<00:34, 3.11s/it]
98%|█████████▊| 557/567 [42:29<00:42, 4.25s/it]
98%|█████████▊| 558/567 [42:33<00:37, 4.15s/it]
99%|█████████▊| 559/567 [42:40<00:38, 4.83s/it]
99%|█████████▉| 560/567 [42:45<00:34, 4.92s/it]
99%|█████████▉| 561/567 [42:47<00:24, 4.14s/it]
99%|█████████▉| 562/567 [42:56<00:27, 5.45s/it]
99%|█████████▉| 563/567 [43:01<00:21, 5.47s/it]
99%|█████████▉| 564/567 [43:06<00:16, 5.36s/it]
100%|█████████▉| 565/567 [43:10<00:09, 4.80s/it]
100%|█████████▉| 566/567 [43:13<00:04, 4.47s/it]
100%|██████████| 567/567 [43:14<00:00, 3.35s/it]
100%|██████████| 567/567 [43:14<00:00, 4.58s/it]
-Batch output: ['Old Gang raised his gun, squinted one of his triangular eyes, pulled the trigger, and a hail of golden sparrows fell, the iron sand flying between the willow branches with a hissing sound.', 'The next morning, before the sun had risen, Ruan姥姥 got up to wash and dress, and taught Bander a few words. The five- or six-year-old boy was delighted at the prospect of being taken into the city to have a look around, and readily agreed.']
-Qwen/Qwen2-7B-Instruct/shots-05 metrics: {'meteor': 0.38784856371389564, 'bleu_scores': {'bleu': 0.1227725469820483, 'precisions': [0.44736300665249296, 0.16886082271932643, 0.08149304781024612, 0.04249456690468798], 'brevity_penalty': 0.9653627374890931, 'length_ratio': 0.9659489897316993, 'translation_length': 29162, 'reference_length': 30190}, 'rouge_scores': {'rouge1': 0.4411739793578749, 'rouge2': 0.19117204182432507, 'rougeL': 0.3822788588962979, 'rougeLsum': 0.3823747382806798}, 'accuracy': 0.0, 'correct_ids': []}
-*** Evaluating with num_shots: 10
-loading train/test data files
-
Map: 0%| | 0/4528 [00:00, ? examples/s]
Map: 88%|████████▊ | 4000/4528 [00:00<00:00, 28883.90 examples/s]
Map: 100%|██████████| 4528/4528 [00:00<00:00, 28199.05 examples/s]
-
Map: 0%| | 0/1133 [00:00, ? examples/s]
Map: 100%|██████████| 1133/1133 [00:00<00:00, 26435.77 examples/s]
-DatasetDict({
- train: Dataset({
- features: ['chinese', 'english', 'text', 'prompt'],
- num_rows: 4528
- })
- test: Dataset({
- features: ['chinese', 'english', 'text', 'prompt'],
- num_rows: 1133
- })
-})
---------------------------------------------------
-chinese: 老耿端起枪,眯缝起一只三角眼,一搂扳机响了枪,冰雹般的金麻雀劈哩啪啦往下落,铁砂子在柳枝间飞迸着,嚓嚓有声。
---------------------------------------------------
-english: Old Geng picked up his shotgun, squinted, and pulled the trigger. Two sparrows crashed to the ground like hailstones as shotgun pellets tore noisily through the branches.
---------------------------------------------------
-text: <|im_start|>system
-You are a helpful assistant that translates Chinese to English.<|im_end|>
-<|im_start|>user
-You will be given a Chinese sentence to translate. If it is an incomplete sentence, or if you are unsure about the meaning, simply copy the input text as your output. Do not output any additional sentence such as explanation or reasoning.
-
-Example Translations:
-Chinese: 全仗着狐仙搭救。
-English: Because I was protected by a fox fairy.
-Chinese: 过后,表哥告诉她俩,这人是导演,在外国留过学的,还会编剧,今天拍的这戏,就是他自编自导的。
-English: He was the director, the cousin later told them. He had studied abroad and was also a screenwriter; in fact he had written and directed the scene they had earlier seen being filmed.
-Chinese: 这凤姐忽然想起一件事来,便向窗外叫:“蓉儿回来!”
-English: Xi-feng suddenly seemed to remember something, and called to him through the window, 'Rong, come back!'
-Chinese: 三个老红卫兵走到叶文洁面前,面对着她站成了一排——当年,她们也是这样面对叶哲泰的——试图再现那早已忘却的尊严,但她们当年那魔鬼般的精神力量显然已荡然无存。
-English: The three old Red Guards stood in front of Ye in a row—just like they had stood against Ye Zhetai—trying to recapture their long-forgotten dignity. But the demonic spiritual energy that had once propelled them was gone.
-Chinese: 程先生照单全收,都是一个“谢”字,然后问王琦瑶有什么话说。
-English: Mr. Cheng accepted their toast with equanimity and a 'thank you.' Then, turning to Wang Qiyao, he asked if she had anything to say.
-Chinese: 程先生向来觉得她母亲势利,过去并不把他放在眼里,他在楼下叫王琦瑶,她连门都不肯开,只让老妈子伸出头来回话。
-English: Mr. Cheng had always thought her a calculating woman. Back when he used to call on Wang Qiyao, she would never even bother to greet him but always sent the maid down to talk to him at the door instead.
-Chinese: 按他的逻辑,我身上这个通红通红,直不愣登,长约一尺的东西就是罪恶的化身。
-English: In his way of thinking, this red, stiff, foot-long thing on my body was the incarnation of evil.
-Chinese: 他听沙瑞山讲她如何目睹父亲在“文革”中的惨死,讲她后来在建设兵团被诬陷,后来杳无音讯; 九十年代初才又回到了这座城市,在父亲曾工作过的大学中讲授天体物理学直到退休。
-English: He listened as Sha told of how she witnessed the death of her father during the Cultural Revolution, how she was falsely accused at the Production and Construction Corps, how she then seemed to disappear until her return to Beijing at the beginning of the nineties, when she began teaching astrophysics at Tsinghua, where her father had also taught, until her retirement.
-Chinese: 事情一时上有些弄反了,去片厂倒是为了照顾吴佩珍似的。
-English: Before long, it was more like Wang Qiyao was doing her a favor by going with her.
-Chinese: “这等于说正确的哲学是从天上掉下来的。
-English: 'Then that's equivalent to saying that the correct philosophy falls out of the sky.
-
-Chinese: 老耿端起枪,眯缝起一只三角眼,一搂扳机响了枪,冰雹般的金麻雀劈哩啪啦往下落,铁砂子在柳枝间飞迸着,嚓嚓有声。
-English:<|im_end|>
-<|im_start|>assistant
-Old Geng picked up his shotgun, squinted, and pulled the trigger. Two sparrows crashed to the ground like hailstones as shotgun pellets tore noisily through the branches.<|im_end|>
---------------------------------------------------
-prompt: <|im_start|>system
-You are a helpful assistant that translates Chinese to English.<|im_end|>
-<|im_start|>user
-You will be given a Chinese sentence to translate. If it is an incomplete sentence, or if you are unsure about the meaning, simply copy the input text as your output. Do not output any additional sentence such as explanation or reasoning.
-
-Example Translations:
-Chinese: 全仗着狐仙搭救。
-English: Because I was protected by a fox fairy.
-Chinese: 过后,表哥告诉她俩,这人是导演,在外国留过学的,还会编剧,今天拍的这戏,就是他自编自导的。
-English: He was the director, the cousin later told them. He had studied abroad and was also a screenwriter; in fact he had written and directed the scene they had earlier seen being filmed.
-Chinese: 这凤姐忽然想起一件事来,便向窗外叫:“蓉儿回来!”
-English: Xi-feng suddenly seemed to remember something, and called to him through the window, 'Rong, come back!'
-Chinese: 三个老红卫兵走到叶文洁面前,面对着她站成了一排——当年,她们也是这样面对叶哲泰的——试图再现那早已忘却的尊严,但她们当年那魔鬼般的精神力量显然已荡然无存。
-English: The three old Red Guards stood in front of Ye in a row—just like they had stood against Ye Zhetai—trying to recapture their long-forgotten dignity. But the demonic spiritual energy that had once propelled them was gone.
-Chinese: 程先生照单全收,都是一个“谢”字,然后问王琦瑶有什么话说。
-English: Mr. Cheng accepted their toast with equanimity and a 'thank you.' Then, turning to Wang Qiyao, he asked if she had anything to say.
-Chinese: 程先生向来觉得她母亲势利,过去并不把他放在眼里,他在楼下叫王琦瑶,她连门都不肯开,只让老妈子伸出头来回话。
-English: Mr. Cheng had always thought her a calculating woman. Back when he used to call on Wang Qiyao, she would never even bother to greet him but always sent the maid down to talk to him at the door instead.
-Chinese: 按他的逻辑,我身上这个通红通红,直不愣登,长约一尺的东西就是罪恶的化身。
-English: In his way of thinking, this red, stiff, foot-long thing on my body was the incarnation of evil.
-Chinese: 他听沙瑞山讲她如何目睹父亲在“文革”中的惨死,讲她后来在建设兵团被诬陷,后来杳无音讯; 九十年代初才又回到了这座城市,在父亲曾工作过的大学中讲授天体物理学直到退休。
-English: He listened as Sha told of how she witnessed the death of her father during the Cultural Revolution, how she was falsely accused at the Production and Construction Corps, how she then seemed to disappear until her return to Beijing at the beginning of the nineties, when she began teaching astrophysics at Tsinghua, where her father had also taught, until her retirement.
-Chinese: 事情一时上有些弄反了,去片厂倒是为了照顾吴佩珍似的。
-English: Before long, it was more like Wang Qiyao was doing her a favor by going with her.
-Chinese: “这等于说正确的哲学是从天上掉下来的。
-English: 'Then that's equivalent to saying that the correct philosophy falls out of the sky.
-
-Chinese: 老耿端起枪,眯缝起一只三角眼,一搂扳机响了枪,冰雹般的金麻雀劈哩啪啦往下落,铁砂子在柳枝间飞迸着,嚓嚓有声。
-English:<|im_end|>
-<|im_start|>assistant
-
-
0%| | 0/567 [00:00, ?it/s]
0%| | 1/567 [00:12<1:54:20, 12.12s/it]
0%| | 2/567 [00:28<2:18:08, 14.67s/it]
1%| | 3/567 [00:38<1:58:36, 12.62s/it]
1%| | 4/567 [00:54<2:10:42, 13.93s/it]
1%| | 5/567 [00:58<1:35:12, 10.17s/it]
1%| | 6/567 [01:05<1:25:31, 9.15s/it]
1%| | 7/567 [01:08<1:08:04, 7.29s/it]
1%|▏ | 8/567 [01:18<1:14:06, 7.95s/it]
2%|▏ | 9/567 [01:27<1:18:09, 8.40s/it]
2%|▏ | 10/567 [01:35<1:15:41, 8.15s/it]
2%|▏ | 11/567 [01:45<1:21:56, 8.84s/it]
2%|▏ | 12/567 [01:49<1:08:00, 7.35s/it]
2%|▏ | 13/567 [01:57<1:10:16, 7.61s/it]
2%|▏ | 14/567 [02:02<1:01:01, 6.62s/it]
3%|▎ | 15/567 [02:05<53:21, 5.80s/it]
3%|▎ | 16/567 [02:13<57:03, 6.21s/it]
3%|▎ | 17/567 [02:28<1:21:56, 8.94s/it]
3%|▎ | 18/567 [02:33<1:12:30, 7.92s/it]
3%|▎ | 19/567 [02:38<1:04:14, 7.03s/it]
4%|▎ | 20/567 [02:44<1:00:05, 6.59s/it]
4%|▎ | 21/567 [02:56<1:13:24, 8.07s/it]
4%|▍ | 22/567 [03:01<1:06:25, 7.31s/it]
4%|▍ | 23/567 [03:12<1:15:58, 8.38s/it]
4%|▍ | 24/567 [03:17<1:08:11, 7.53s/it]
4%|▍ | 25/567 [03:21<55:59, 6.20s/it]
5%|▍ | 26/567 [03:31<1:07:11, 7.45s/it]
5%|▍ | 27/567 [03:36<59:48, 6.64s/it]
5%|▍ | 28/567 [03:54<1:30:00, 10.02s/it]
5%|▌ | 29/567 [04:01<1:22:12, 9.17s/it]
5%|▌ | 30/567 [04:10<1:23:23, 9.32s/it]
5%|▌ | 31/567 [04:14<1:07:06, 7.51s/it]
6%|▌ | 32/567 [04:21<1:04:58, 7.29s/it]
6%|▌ | 33/567 [04:26<1:00:47, 6.83s/it]
6%|▌ | 34/567 [04:37<1:09:56, 7.87s/it]
6%|▌ | 35/567 [04:45<1:10:40, 7.97s/it]
6%|▋ | 36/567 [04:48<58:02, 6.56s/it]
7%|▋ | 37/567 [04:51<48:06, 5.45s/it]
7%|▋ | 38/567 [04:55<45:08, 5.12s/it]
7%|▋ | 39/567 [05:01<47:18, 5.38s/it]
7%|▋ | 40/567 [05:09<53:04, 6.04s/it]
7%|▋ | 41/567 [05:11<41:48, 4.77s/it]
7%|▋ | 42/567 [05:21<56:48, 6.49s/it]
8%|▊ | 43/567 [05:24<47:47, 5.47s/it]
8%|▊ | 44/567 [05:32<53:17, 6.11s/it]
8%|▊ | 45/567 [05:39<57:03, 6.56s/it]
8%|▊ | 46/567 [05:44<51:12, 5.90s/it]
8%|▊ | 47/567 [05:51<53:52, 6.22s/it]
8%|▊ | 48/567 [05:59<59:02, 6.83s/it]
9%|▊ | 49/567 [06:03<51:22, 5.95s/it]
9%|▉ | 50/567 [06:10<54:55, 6.37s/it]
9%|▉ | 51/567 [06:22<1:07:25, 7.84s/it]
9%|▉ | 52/567 [06:25<56:08, 6.54s/it]
9%|▉ | 53/567 [06:53<1:52:02, 13.08s/it]
10%|▉ | 54/567 [07:06<1:50:05, 12.88s/it]
10%|▉ | 55/567 [07:18<1:47:42, 12.62s/it]
10%|▉ | 56/567 [07:33<1:53:14, 13.30s/it]
10%|█ | 57/567 [07:48<1:57:41, 13.85s/it]
10%|█ | 58/567 [07:51<1:30:35, 10.68s/it]
10%|█ | 59/567 [08:00<1:24:39, 10.00s/it]
11%|█ | 60/567 [08:06<1:16:17, 9.03s/it]
11%|█ | 61/567 [08:12<1:06:54, 7.93s/it]
11%|█ | 62/567 [08:17<1:00:46, 7.22s/it]
11%|█ | 63/567 [08:26<1:05:23, 7.78s/it]
11%|█▏ | 64/567 [08:39<1:18:15, 9.34s/it]
11%|█▏ | 65/567 [08:43<1:03:30, 7.59s/it]
12%|█▏ | 66/567 [08:51<1:06:03, 7.91s/it]
12%|█▏ | 67/567 [08:55<55:57, 6.71s/it]
12%|█▏ | 68/567 [09:13<1:23:19, 10.02s/it]
12%|█▏ | 69/567 [09:19<1:13:35, 8.87s/it]
12%|█▏ | 70/567 [09:26<1:07:46, 8.18s/it]
13%|█▎ | 71/567 [09:30<56:34, 6.84s/it]
13%|█▎ | 72/567 [09:38<1:01:22, 7.44s/it]
13%|█▎ | 73/567 [09:42<52:02, 6.32s/it]
13%|█▎ | 74/567 [09:47<47:36, 5.79s/it]
13%|█▎ | 75/567 [09:51<43:43, 5.33s/it]
13%|█▎ | 76/567 [09:58<47:09, 5.76s/it]
14%|█▎ | 77/567 [10:06<52:05, 6.38s/it]
14%|█▍ | 78/567 [10:12<51:24, 6.31s/it]
14%|█▍ | 79/567 [10:20<56:28, 6.94s/it]
14%|█▍ | 80/567 [10:24<49:31, 6.10s/it]
14%|█▍ | 81/567 [10:29<45:06, 5.57s/it]
14%|█▍ | 82/567 [10:34<43:58, 5.44s/it]
15%|█▍ | 83/567 [10:41<48:36, 6.03s/it]
15%|█▍ | 84/567 [10:47<47:10, 5.86s/it]
15%|█▍ | 85/567 [10:50<41:55, 5.22s/it]
15%|█▌ | 86/567 [10:52<34:11, 4.26s/it]
15%|█▌ | 87/567 [10:56<31:43, 3.97s/it]
16%|█▌ | 88/567 [11:00<33:32, 4.20s/it]
16%|█▌ | 89/567 [11:15<57:34, 7.23s/it]
16%|█▌ | 90/567 [11:22<58:49, 7.40s/it]
16%|█▌ | 91/567 [11:33<1:07:08, 8.46s/it]
16%|█▌ | 92/567 [11:40<1:02:33, 7.90s/it]
16%|█▋ | 93/567 [11:43<51:00, 6.46s/it]
17%|█▋ | 94/567 [11:56<1:05:25, 8.30s/it]
17%|█▋ | 95/567 [12:00<56:57, 7.24s/it]
17%|█▋ | 96/567 [12:08<56:44, 7.23s/it]
17%|█▋ | 97/567 [12:16<1:00:25, 7.71s/it]
17%|█▋ | 98/567 [12:19<48:16, 6.18s/it]
17%|█▋ | 99/567 [12:24<46:16, 5.93s/it]
18%|█▊ | 100/567 [12:35<56:06, 7.21s/it]
18%|█▊ | 101/567 [12:40<50:44, 6.53s/it]
18%|█▊ | 102/567 [12:50<1:00:39, 7.83s/it]
18%|█▊ | 103/567 [12:54<50:53, 6.58s/it]
18%|█▊ | 104/567 [13:03<57:04, 7.40s/it]
19%|█▊ | 105/567 [13:24<1:27:55, 11.42s/it]
19%|█▊ | 106/567 [13:33<1:20:53, 10.53s/it]
19%|█▉ | 107/567 [13:36<1:05:00, 8.48s/it]
19%|█▉ | 108/567 [13:55<1:27:26, 11.43s/it]
19%|█▉ | 109/567 [13:57<1:06:10, 8.67s/it]
19%|█▉ | 110/567 [14:03<59:23, 7.80s/it]
20%|█▉ | 111/567 [14:18<1:17:00, 10.13s/it]
20%|█▉ | 112/567 [14:28<1:16:19, 10.06s/it]
20%|█▉ | 113/567 [14:43<1:27:37, 11.58s/it]
20%|██ | 114/567 [14:48<1:12:53, 9.66s/it]
20%|██ | 115/567 [14:59<1:13:54, 9.81s/it]
20%|██ | 116/567 [15:04<1:03:14, 8.41s/it]
21%|██ | 117/567 [15:10<58:01, 7.74s/it]
21%|██ | 118/567 [15:17<57:31, 7.69s/it]
21%|██ | 119/567 [15:34<1:17:15, 10.35s/it]
21%|██ | 120/567 [15:39<1:05:13, 8.76s/it]
21%|██▏ | 121/567 [15:42<51:31, 6.93s/it]
22%|██▏ | 122/567 [15:47<47:26, 6.40s/it]
22%|██▏ | 123/567 [15:52<44:58, 6.08s/it]
22%|██▏ | 124/567 [15:56<40:07, 5.43s/it]
22%|██▏ | 125/567 [16:01<39:26, 5.35s/it]
22%|██▏ | 126/567 [16:08<42:29, 5.78s/it]
22%|██▏ | 127/567 [16:22<59:36, 8.13s/it]
23%|██▎ | 128/567 [16:30<58:46, 8.03s/it]
23%|██▎ | 129/567 [16:38<59:28, 8.15s/it]
23%|██▎ | 130/567 [16:59<1:28:18, 12.12s/it]
23%|██▎ | 131/567 [17:15<1:34:56, 13.07s/it]
23%|██▎ | 132/567 [17:38<1:57:15, 16.17s/it]
23%|██▎ | 133/567 [17:57<2:03:24, 17.06s/it]
24%|██▎ | 134/567 [18:18<2:11:50, 18.27s/it]
24%|██▍ | 135/567 [18:23<1:43:11, 14.33s/it]
24%|██▍ | 136/567 [18:29<1:24:27, 11.76s/it]
24%|██▍ | 137/567 [18:35<1:12:39, 10.14s/it]
24%|██▍ | 138/567 [18:39<57:49, 8.09s/it]
25%|██▍ | 139/567 [18:45<54:24, 7.63s/it]
25%|██▍ | 140/567 [18:52<51:34, 7.25s/it]
25%|██▍ | 141/567 [18:58<49:05, 6.91s/it]
25%|██▌ | 142/567 [19:02<43:57, 6.21s/it]
25%|██▌ | 143/567 [19:07<40:22, 5.71s/it]
25%|██▌ | 144/567 [19:16<46:50, 6.64s/it]
26%|██▌ | 145/567 [19:23<46:57, 6.68s/it]
26%|██▌ | 146/567 [19:31<51:37, 7.36s/it]
26%|██▌ | 147/567 [19:46<1:06:10, 9.45s/it]
26%|██▌ | 148/567 [19:53<1:00:18, 8.64s/it]
26%|██▋ | 149/567 [19:56<49:25, 7.09s/it]
26%|██▋ | 150/567 [19:58<39:10, 5.64s/it]
27%|██▋ | 151/567 [20:01<32:27, 4.68s/it]
27%|██▋ | 152/567 [20:08<38:21, 5.55s/it]
27%|██▋ | 153/567 [20:16<43:18, 6.28s/it]
27%|██▋ | 154/567 [20:21<40:52, 5.94s/it]
27%|██▋ | 155/567 [20:26<38:20, 5.58s/it]
28%|██▊ | 156/567 [20:34<42:20, 6.18s/it]
28%|██▊ | 157/567 [20:39<40:29, 5.93s/it]
28%|██▊ | 158/567 [20:55<1:01:14, 8.98s/it]
28%|██▊ | 159/567 [21:00<51:38, 7.59s/it]
28%|██▊ | 160/567 [21:12<1:00:29, 8.92s/it]
28%|██▊ | 161/567 [21:15<48:55, 7.23s/it]
29%|██▊ | 162/567 [21:21<45:49, 6.79s/it]
29%|██▊ | 163/567 [21:26<42:25, 6.30s/it]
29%|██▉ | 164/567 [21:45<1:07:53, 10.11s/it]
29%|██▉ | 165/567 [21:54<1:05:06, 9.72s/it]
29%|██▉ | 166/567 [21:58<54:56, 8.22s/it]
29%|██▉ | 167/567 [22:11<1:04:26, 9.67s/it]
30%|██▉ | 168/567 [22:16<54:27, 8.19s/it]
30%|██▉ | 169/567 [22:23<52:41, 7.94s/it]
30%|██▉ | 170/567 [22:32<54:17, 8.21s/it]
30%|███ | 171/567 [22:39<50:52, 7.71s/it]
30%|███ | 172/567 [22:49<54:38, 8.30s/it]
31%|███ | 173/567 [22:54<48:41, 7.41s/it]
31%|███ | 174/567 [23:00<46:29, 7.10s/it]
31%|███ | 175/567 [23:08<47:41, 7.30s/it]
31%|███ | 176/567 [23:13<42:35, 6.54s/it]
31%|███ | 177/567 [23:23<49:05, 7.55s/it]
31%|███▏ | 178/567 [23:26<41:29, 6.40s/it]
32%|███▏ | 179/567 [23:34<44:05, 6.82s/it]
32%|███▏ | 180/567 [23:41<44:39, 6.92s/it]
32%|███▏ | 181/567 [23:48<44:12, 6.87s/it]
32%|███▏ | 182/567 [23:51<35:34, 5.54s/it]
32%|███▏ | 183/567 [23:53<29:55, 4.68s/it]
32%|███▏ | 184/567 [24:01<35:47, 5.61s/it]
33%|███▎ | 185/567 [24:04<30:04, 4.72s/it]
33%|███▎ | 186/567 [24:26<1:03:38, 10.02s/it]
33%|███▎ | 187/567 [24:32<55:46, 8.81s/it]
33%|███▎ | 188/567 [24:36<46:22, 7.34s/it]
33%|███▎ | 189/567 [24:41<41:20, 6.56s/it]
34%|███▎ | 190/567 [24:44<34:39, 5.52s/it]
34%|███▎ | 191/567 [24:55<44:56, 7.17s/it]
34%|███▍ | 192/567 [25:04<49:21, 7.90s/it]
34%|███▍ | 193/567 [25:32<1:25:18, 13.69s/it]
34%|███▍ | 194/567 [25:36<1:08:45, 11.06s/it]
34%|███▍ | 195/567 [25:43<1:00:37, 9.78s/it]
35%|███▍ | 196/567 [25:49<52:34, 8.50s/it]
35%|███▍ | 197/567 [26:00<58:13, 9.44s/it]
35%|███▍ | 198/567 [26:13<1:03:33, 10.33s/it]
35%|███▌ | 199/567 [26:22<1:00:40, 9.89s/it]
35%|███▌ | 200/567 [26:27<52:53, 8.65s/it]
35%|███▌ | 201/567 [26:32<44:24, 7.28s/it]
36%|███▌ | 202/567 [26:37<41:10, 6.77s/it]
36%|███▌ | 203/567 [26:43<38:53, 6.41s/it]
36%|███▌ | 204/567 [26:48<36:06, 5.97s/it]
36%|███▌ | 205/567 [26:55<39:16, 6.51s/it]
36%|███▋ | 206/567 [27:09<51:19, 8.53s/it]
37%|███▋ | 207/567 [27:15<47:18, 7.88s/it]
37%|███▋ | 208/567 [27:25<50:47, 8.49s/it]
37%|███▋ | 209/567 [27:28<41:41, 6.99s/it]
37%|███▋ | 210/567 [27:35<40:50, 6.86s/it]
37%|███▋ | 211/567 [27:43<42:23, 7.14s/it]
37%|███▋ | 212/567 [27:49<40:51, 6.91s/it]
38%|███▊ | 213/567 [27:57<42:40, 7.23s/it]
38%|███▊ | 214/567 [28:05<43:10, 7.34s/it]
38%|███▊ | 215/567 [28:12<43:26, 7.40s/it]
38%|███▊ | 216/567 [28:21<45:49, 7.83s/it]
38%|███▊ | 217/567 [28:33<52:48, 9.05s/it]
38%|███▊ | 218/567 [28:48<1:02:53, 10.81s/it]
39%|███▊ | 219/567 [28:55<56:43, 9.78s/it]
39%|███▉ | 220/567 [29:02<50:39, 8.76s/it]
39%|███▉ | 221/567 [29:06<43:13, 7.50s/it]
39%|███▉ | 222/567 [29:11<39:03, 6.79s/it]
39%|███▉ | 223/567 [29:16<34:43, 6.06s/it]
40%|███▉ | 224/567 [29:22<35:50, 6.27s/it]
40%|███▉ | 225/567 [29:30<38:41, 6.79s/it]
40%|███▉ | 226/567 [29:38<40:41, 7.16s/it]
40%|████ | 227/567 [29:42<34:20, 6.06s/it]
40%|████ | 228/567 [29:50<36:49, 6.52s/it]
40%|████ | 229/567 [30:01<45:05, 8.01s/it]
41%|████ | 230/567 [30:07<40:51, 7.27s/it]
41%|████ | 231/567 [30:15<42:41, 7.62s/it]
41%|████ | 232/567 [30:21<40:26, 7.24s/it]
41%|████ | 233/567 [30:32<45:38, 8.20s/it]
41%|████▏ | 234/567 [30:35<36:59, 6.67s/it]
41%|████▏ | 235/567 [30:45<42:40, 7.71s/it]
42%|████▏ | 236/567 [30:52<41:37, 7.55s/it]
42%|████▏ | 237/567 [30:56<35:11, 6.40s/it]
42%|████▏ | 238/567 [31:03<35:43, 6.51s/it]
42%|████▏ | 239/567 [31:11<37:42, 6.90s/it]
42%|████▏ | 240/567 [31:32<1:02:10, 11.41s/it]
43%|████▎ | 241/567 [31:39<54:23, 10.01s/it]
43%|████▎ | 242/567 [31:45<47:57, 8.85s/it]
43%|████▎ | 243/567 [31:56<50:18, 9.32s/it]
43%|████▎ | 244/567 [32:08<54:19, 10.09s/it]
43%|████▎ | 245/567 [32:11<43:13, 8.05s/it]
43%|████▎ | 246/567 [32:18<41:39, 7.79s/it]
44%|████▎ | 247/567 [32:21<33:40, 6.31s/it]
44%|████▎ | 248/567 [32:28<34:15, 6.44s/it]
44%|████▍ | 249/567 [32:33<32:46, 6.18s/it]
44%|████▍ | 250/567 [32:44<39:34, 7.49s/it]
44%|████▍ | 251/567 [33:00<53:29, 10.16s/it]
44%|████▍ | 252/567 [33:10<51:57, 9.90s/it]
45%|████▍ | 253/567 [33:13<41:43, 7.97s/it]
45%|████▍ | 254/567 [33:36<1:04:59, 12.46s/it]
45%|████▍ | 255/567 [33:43<56:30, 10.87s/it]
45%|████▌ | 256/567 [33:47<44:51, 8.66s/it]
45%|████▌ | 257/567 [33:59<50:33, 9.79s/it]
46%|████▌ | 258/567 [34:08<49:12, 9.55s/it]
46%|████▌ | 259/567 [34:12<39:45, 7.74s/it]
46%|████▌ | 260/567 [34:30<56:28, 11.04s/it]
46%|████▌ | 261/567 [34:38<50:43, 9.94s/it]
46%|████▌ | 262/567 [34:49<52:22, 10.30s/it]
46%|████▋ | 263/567 [34:54<44:30, 8.78s/it]
47%|████▋ | 264/567 [34:56<34:42, 6.87s/it]
47%|████▋ | 265/567 [35:13<49:32, 9.84s/it]
47%|████▋ | 266/567 [35:19<42:38, 8.50s/it]
47%|████▋ | 267/567 [35:24<38:23, 7.68s/it]
47%|████▋ | 268/567 [35:36<43:52, 8.80s/it]
47%|████▋ | 269/567 [35:46<45:13, 9.10s/it]
48%|████▊ | 270/567 [35:52<40:23, 8.16s/it]
48%|████▊ | 271/567 [36:04<46:10, 9.36s/it]
48%|████▊ | 272/567 [36:10<41:53, 8.52s/it]
48%|████▊ | 273/567 [36:15<36:47, 7.51s/it]
48%|████▊ | 274/567 [36:21<33:13, 6.80s/it]
49%|████▊ | 275/567 [36:25<30:05, 6.18s/it]
49%|████▊ | 276/567 [36:34<33:47, 6.97s/it]
49%|████▉ | 277/567 [36:41<34:16, 7.09s/it]
49%|████▉ | 278/567 [36:45<28:39, 5.95s/it]
49%|████▉ | 279/567 [36:58<38:37, 8.05s/it]
49%|████▉ | 280/567 [37:07<39:34, 8.28s/it]
50%|████▉ | 281/567 [37:09<30:31, 6.40s/it]
50%|████▉ | 282/567 [37:14<28:20, 5.97s/it]
50%|████▉ | 283/567 [37:24<34:55, 7.38s/it]
50%|█████ | 284/567 [37:29<30:48, 6.53s/it]
50%|█████ | 285/567 [37:33<27:53, 5.94s/it]
50%|█████ | 286/567 [37:37<24:03, 5.14s/it]
51%|█████ | 287/567 [37:46<30:06, 6.45s/it]
51%|█████ | 288/567 [37:53<30:26, 6.55s/it]
51%|█████ | 289/567 [38:02<33:36, 7.25s/it]
51%|█████ | 290/567 [38:10<35:23, 7.66s/it]
51%|█████▏ | 291/567 [38:17<34:01, 7.40s/it]
51%|█████▏ | 292/567 [38:28<38:20, 8.36s/it]
52%|█████▏ | 293/567 [38:34<35:27, 7.76s/it]
52%|█████▏ | 294/567 [38:40<32:50, 7.22s/it]
52%|█████▏ | 295/567 [38:45<29:06, 6.42s/it]
52%|█████▏ | 296/567 [38:54<32:27, 7.19s/it]
52%|█████▏ | 297/567 [38:59<29:52, 6.64s/it]
53%|█████▎ | 298/567 [39:21<50:21, 11.23s/it]
53%|█████▎ | 299/567 [39:27<43:06, 9.65s/it]
53%|█████▎ | 300/567 [39:35<41:01, 9.22s/it]
53%|█████▎ | 301/567 [39:43<39:46, 8.97s/it]
53%|█████▎ | 302/567 [39:49<35:37, 8.06s/it]
53%|█████▎ | 303/567 [39:56<33:31, 7.62s/it]
54%|█████▎ | 304/567 [40:02<31:29, 7.18s/it]
54%|█████▍ | 305/567 [40:09<31:05, 7.12s/it]
54%|█████▍ | 306/567 [40:19<33:58, 7.81s/it]
54%|█████▍ | 307/567 [40:32<41:02, 9.47s/it]
54%|█████▍ | 308/567 [40:37<35:15, 8.17s/it]
54%|█████▍ | 309/567 [40:39<27:27, 6.38s/it]
55%|█████▍ | 310/567 [41:05<52:47, 12.32s/it]
55%|█████▍ | 311/567 [41:16<49:47, 11.67s/it]
55%|█████▌ | 312/567 [41:21<41:17, 9.71s/it]
55%|█████▌ | 313/567 [41:26<35:05, 8.29s/it]
55%|█████▌ | 314/567 [41:36<37:05, 8.80s/it]
56%|█████▌ | 315/567 [41:51<45:44, 10.89s/it]
56%|█████▌ | 316/567 [41:56<37:50, 9.05s/it]
56%|█████▌ | 317/567 [42:04<36:06, 8.67s/it]
56%|█████▌ | 318/567 [42:08<30:01, 7.24s/it]
56%|█████▋ | 319/567 [42:18<33:52, 8.20s/it]
56%|█████▋ | 320/567 [42:21<27:23, 6.65s/it]
57%|█████▋ | 321/567 [42:35<35:31, 8.66s/it]
57%|█████▋ | 322/567 [42:42<33:32, 8.21s/it]
57%|█████▋ | 323/567 [42:49<32:37, 8.02s/it]
57%|█████▋ | 324/567 [42:56<31:12, 7.71s/it]
57%|█████▋ | 325/567 [43:16<45:07, 11.19s/it]
57%|█████▋ | 326/567 [43:19<34:52, 8.68s/it]
58%|█████▊ | 327/567 [43:23<29:46, 7.44s/it]
58%|█████▊ | 328/567 [43:30<29:17, 7.35s/it]
58%|█████▊ | 329/567 [43:44<36:15, 9.14s/it]
58%|█████▊ | 330/567 [43:45<27:23, 6.93s/it]
58%|█████▊ | 331/567 [43:51<25:24, 6.46s/it]
59%|█████▊ | 332/567 [43:56<24:15, 6.19s/it]
59%|█████▊ | 333/567 [44:04<26:15, 6.73s/it]
59%|█████▉ | 334/567 [44:09<23:48, 6.13s/it]
59%|█████▉ | 335/567 [44:15<23:14, 6.01s/it]
59%|█████▉ | 336/567 [44:18<19:28, 5.06s/it]
59%|█████▉ | 337/567 [44:28<26:04, 6.80s/it]
60%|█████▉ | 338/567 [44:33<22:55, 6.00s/it]
60%|█████▉ | 339/567 [44:37<20:55, 5.50s/it]
60%|█████▉ | 340/567 [44:41<19:22, 5.12s/it]
60%|██████ | 341/567 [44:45<17:42, 4.70s/it]
60%|██████ | 342/567 [44:52<20:36, 5.50s/it]
60%|██████ | 343/567 [44:58<20:22, 5.46s/it]
61%|██████ | 344/567 [45:04<21:16, 5.73s/it]
61%|██████ | 345/567 [45:10<21:52, 5.91s/it]
61%|██████ | 346/567 [45:15<20:29, 5.56s/it]
61%|██████ | 347/567 [45:24<23:44, 6.47s/it]
61%|██████▏ | 348/567 [45:31<24:23, 6.68s/it]
62%|██████▏ | 349/567 [45:45<32:29, 8.94s/it]
62%|██████▏ | 350/567 [45:52<30:11, 8.35s/it]
62%|██████▏ | 351/567 [46:17<48:23, 13.44s/it]
62%|██████▏ | 352/567 [46:23<39:53, 11.13s/it]
62%|██████▏ | 353/567 [46:35<40:40, 11.41s/it]
62%|██████▏ | 354/567 [46:44<37:29, 10.56s/it]
63%|██████▎ | 355/567 [46:50<32:40, 9.25s/it]
63%|██████▎ | 356/567 [46:59<32:49, 9.33s/it]
63%|██████▎ | 357/567 [47:04<27:11, 7.77s/it]
63%|██████▎ | 358/567 [47:08<23:42, 6.80s/it]
63%|██████▎ | 359/567 [47:12<21:01, 6.07s/it]
63%|██████▎ | 360/567 [47:17<19:21, 5.61s/it]
64%|██████▎ | 361/567 [47:23<19:13, 5.60s/it]
64%|██████▍ | 362/567 [47:33<24:00, 7.03s/it]
64%|██████▍ | 363/567 [47:46<29:45, 8.75s/it]
64%|██████▍ | 364/567 [47:58<33:20, 9.85s/it]
64%|██████▍ | 365/567 [48:04<29:37, 8.80s/it]
65%|██████▍ | 366/567 [48:10<26:00, 7.77s/it]
65%|██████▍ | 367/567 [48:20<28:43, 8.62s/it]
65%|██████▍ | 368/567 [48:31<30:14, 9.12s/it]
65%|██████▌ | 369/567 [48:40<30:44, 9.32s/it]
65%|██████▌ | 370/567 [48:45<26:17, 8.01s/it]
65%|██████▌ | 371/567 [48:49<22:16, 6.82s/it]
66%|██████▌ | 372/567 [48:54<20:22, 6.27s/it]
66%|██████▌ | 373/567 [49:06<25:24, 7.86s/it]
66%|██████▌ | 374/567 [49:17<28:11, 8.77s/it]
66%|██████▌ | 375/567 [49:26<28:20, 8.86s/it]
66%|██████▋ | 376/567 [49:31<24:05, 7.57s/it]
66%|██████▋ | 377/567 [49:47<32:16, 10.19s/it]
67%|██████▋ | 378/567 [49:55<30:24, 9.66s/it]
67%|██████▋ | 379/567 [50:05<30:11, 9.64s/it]
67%|██████▋ | 380/567 [50:10<26:12, 8.41s/it]
67%|██████▋ | 381/567 [50:17<24:43, 7.97s/it]
67%|██████▋ | 382/567 [50:23<22:21, 7.25s/it]
68%|██████▊ | 383/567 [50:33<24:57, 8.14s/it]
68%|██████▊ | 384/567 [50:44<27:08, 8.90s/it]
68%|██████▊ | 385/567 [50:56<29:46, 9.82s/it]
68%|██████▊ | 386/567 [51:04<27:46, 9.21s/it]
68%|██████▊ | 387/567 [51:09<24:31, 8.17s/it]
68%|██████▊ | 388/567 [51:32<37:23, 12.53s/it]
69%|██████▊ | 389/567 [51:40<32:57, 11.11s/it]
69%|██████▉ | 390/567 [51:43<25:51, 8.76s/it]
69%|██████▉ | 391/567 [51:52<25:51, 8.81s/it]
69%|██████▉ | 392/567 [52:04<28:35, 9.80s/it]
69%|██████▉ | 393/567 [52:09<23:50, 8.22s/it]
69%|██████▉ | 394/567 [52:19<25:22, 8.80s/it]
70%|██████▉ | 395/567 [52:30<27:34, 9.62s/it]
70%|██████▉ | 396/567 [52:38<25:50, 9.07s/it]
70%|███████ | 397/567 [52:54<31:09, 10.99s/it]
70%|███████ | 398/567 [52:57<24:27, 8.68s/it]
70%|███████ | 399/567 [53:00<19:57, 7.13s/it]
71%|███████ | 400/567 [53:06<18:11, 6.54s/it]
71%|███████ | 401/567 [53:12<18:07, 6.55s/it]
71%|███████ | 402/567 [53:22<21:04, 7.66s/it]
71%|███████ | 403/567 [53:31<21:33, 7.88s/it]
71%|███████▏ | 404/567 [53:35<18:32, 6.82s/it]
71%|███████▏ | 405/567 [53:40<17:04, 6.33s/it]
72%|███████▏ | 406/567 [53:49<18:50, 7.02s/it]
72%|███████▏ | 407/567 [53:54<16:44, 6.28s/it]
72%|███████▏ | 408/567 [54:06<21:37, 8.16s/it]
72%|███████▏ | 409/567 [54:11<18:37, 7.08s/it]
72%|███████▏ | 410/567 [54:17<17:38, 6.74s/it]
72%|███████▏ | 411/567 [54:20<14:37, 5.62s/it]
73%|███████▎ | 412/567 [54:29<17:10, 6.65s/it]
73%|███████▎ | 413/567 [54:38<19:06, 7.45s/it]
73%|███████▎ | 414/567 [54:41<15:28, 6.07s/it]
73%|███████▎ | 415/567 [54:56<22:08, 8.74s/it]
73%|███████▎ | 416/567 [55:05<22:33, 8.96s/it]
74%|███████▎ | 417/567 [55:22<28:17, 11.32s/it]
74%|███████▎ | 418/567 [55:28<24:24, 9.83s/it]
74%|███████▍ | 419/567 [55:53<35:23, 14.35s/it]
74%|███████▍ | 420/567 [56:02<31:15, 12.76s/it]
74%|███████▍ | 421/567 [56:12<29:03, 11.94s/it]
74%|███████▍ | 422/567 [56:21<26:16, 10.87s/it]
75%|███████▍ | 423/567 [56:29<24:09, 10.07s/it]
75%|███████▍ | 424/567 [56:40<24:47, 10.40s/it]
75%|███████▍ | 425/567 [56:48<23:03, 9.74s/it]
75%|███████▌ | 426/567 [56:52<18:46, 7.99s/it]
75%|███████▌ | 427/567 [56:59<17:38, 7.56s/it]
75%|███████▌ | 428/567 [57:09<19:39, 8.48s/it]
76%|███████▌ | 429/567 [57:21<21:33, 9.37s/it]
76%|███████▌ | 430/567 [57:26<18:47, 8.23s/it]
76%|███████▌ | 431/567 [57:42<23:43, 10.47s/it]
76%|███████▌ | 432/567 [57:56<25:40, 11.41s/it]
76%|███████▋ | 433/567 [58:07<25:03, 11.22s/it]
77%|███████▋ | 434/567 [58:17<24:09, 10.90s/it]
77%|███████▋ | 435/567 [58:20<19:05, 8.68s/it]
77%|███████▋ | 436/567 [58:27<17:57, 8.22s/it]
77%|███████▋ | 437/567 [58:31<15:09, 7.00s/it]
77%|███████▋ | 438/567 [58:41<16:40, 7.76s/it]
77%|███████▋ | 439/567 [58:48<16:10, 7.58s/it]
78%|███████▊ | 440/567 [58:52<13:43, 6.49s/it]
78%|███████▊ | 441/567 [58:59<13:47, 6.57s/it]
78%|███████▊ | 442/567 [59:05<13:10, 6.33s/it]
78%|███████▊ | 443/567 [59:10<12:20, 5.97s/it]
78%|███████▊ | 444/567 [59:23<16:55, 8.25s/it]
78%|███████▊ | 445/567 [59:31<16:07, 7.93s/it]
79%|███████▊ | 446/567 [59:41<17:35, 8.73s/it]
79%|███████▉ | 447/567 [59:50<17:18, 8.66s/it]
79%|███████▉ | 448/567 [59:59<17:23, 8.77s/it]
79%|███████▉ | 449/567 [1:00:04<14:59, 7.62s/it]
79%|███████▉ | 450/567 [1:00:10<14:14, 7.31s/it]
80%|███████▉ | 451/567 [1:00:15<12:38, 6.54s/it]
80%|███████▉ | 452/567 [1:00:21<12:04, 6.30s/it]
80%|███████▉ | 453/567 [1:00:33<15:19, 8.07s/it]
80%|████████ | 454/567 [1:00:39<14:21, 7.62s/it]
80%|████████ | 455/567 [1:00:44<12:40, 6.79s/it]
80%|████████ | 456/567 [1:00:48<10:51, 5.87s/it]
81%|████████ | 457/567 [1:00:53<10:15, 5.60s/it]
81%|████████ | 458/567 [1:01:01<11:43, 6.45s/it]
81%|████████ | 459/567 [1:01:12<13:44, 7.63s/it]
81%|████████ | 460/567 [1:01:14<10:29, 5.88s/it]
81%|████████▏ | 461/567 [1:01:18<09:21, 5.30s/it]
81%|████████▏ | 462/567 [1:01:22<08:39, 4.95s/it]
82%|████████▏ | 463/567 [1:01:28<09:24, 5.43s/it]
82%|████████▏ | 464/567 [1:01:33<09:11, 5.35s/it]
82%|████████▏ | 465/567 [1:01:40<09:55, 5.83s/it]
82%|████████▏ | 466/567 [1:01:46<09:35, 5.70s/it]
82%|████████▏ | 467/567 [1:01:49<08:17, 4.98s/it]
83%|████████▎ | 468/567 [1:01:57<09:48, 5.94s/it]
83%|████████▎ | 469/567 [1:02:02<09:13, 5.65s/it]
83%|████████▎ | 470/567 [1:02:08<09:23, 5.81s/it]
83%|████████▎ | 471/567 [1:02:20<12:12, 7.63s/it]
83%|████████▎ | 472/567 [1:02:34<15:02, 9.50s/it]
83%|████████▎ | 473/567 [1:02:43<14:40, 9.37s/it]
84%|████████▎ | 474/567 [1:02:56<16:04, 10.37s/it]
84%|████████▍ | 475/567 [1:02:59<12:38, 8.24s/it]
84%|████████▍ | 476/567 [1:03:04<11:10, 7.37s/it]
84%|████████▍ | 477/567 [1:03:07<08:50, 5.89s/it]
84%|████████▍ | 478/567 [1:03:12<08:25, 5.68s/it]
84%|████████▍ | 479/567 [1:03:16<07:27, 5.09s/it]
85%|████████▍ | 480/567 [1:03:21<07:24, 5.11s/it]
85%|████████▍ | 481/567 [1:03:34<10:46, 7.52s/it]
85%|████████▌ | 482/567 [1:03:39<09:43, 6.87s/it]
85%|████████▌ | 483/567 [1:03:44<08:32, 6.11s/it]
85%|████████▌ | 484/567 [1:03:57<11:27, 8.28s/it]
86%|████████▌ | 485/567 [1:04:02<10:02, 7.35s/it]
86%|████████▌ | 486/567 [1:04:09<09:45, 7.23s/it]
86%|████████▌ | 487/567 [1:04:20<11:11, 8.39s/it]
86%|████████▌ | 488/567 [1:04:26<09:46, 7.42s/it]
86%|████████▌ | 489/567 [1:04:31<09:00, 6.93s/it]
86%|████████▋ | 490/567 [1:04:49<12:53, 10.05s/it]
87%|████████▋ | 491/567 [1:04:55<11:15, 8.88s/it]
87%|████████▋ | 492/567 [1:04:58<08:51, 7.08s/it]
87%|████████▋ | 493/567 [1:05:08<09:55, 8.04s/it]
87%|████████▋ | 494/567 [1:05:16<09:50, 8.09s/it]
87%|████████▋ | 495/567 [1:05:39<14:55, 12.44s/it]
87%|████████▋ | 496/567 [1:05:45<12:38, 10.69s/it]
88%|████████▊ | 497/567 [1:05:55<12:04, 10.35s/it]
88%|████████▊ | 498/567 [1:06:02<10:56, 9.52s/it]
88%|████████▊ | 499/567 [1:06:09<09:38, 8.51s/it]
88%|████████▊ | 500/567 [1:06:21<10:45, 9.64s/it]
88%|████████▊ | 501/567 [1:06:25<08:38, 7.86s/it]
89%|████████▊ | 502/567 [1:06:37<09:54, 9.15s/it]
89%|████████▊ | 503/567 [1:06:58<13:43, 12.86s/it]
89%|████████▉ | 504/567 [1:07:09<12:43, 12.12s/it]
89%|████████▉ | 505/567 [1:07:21<12:29, 12.09s/it]
89%|████████▉ | 506/567 [1:07:34<12:43, 12.52s/it]
89%|████████▉ | 507/567 [1:07:38<10:00, 10.00s/it]
90%|████████▉ | 508/567 [1:07:48<09:41, 9.86s/it]
90%|████████▉ | 509/567 [1:07:53<08:09, 8.45s/it]
90%|████████▉ | 510/567 [1:08:04<08:48, 9.26s/it]
90%|█████████ | 511/567 [1:08:11<08:03, 8.63s/it]
90%|█████████ | 512/567 [1:08:27<09:58, 10.88s/it]
90%|█████████ | 513/567 [1:08:38<09:43, 10.81s/it]
91%|█████████ | 514/567 [1:08:41<07:29, 8.49s/it]
91%|█████████ | 515/567 [1:08:47<06:38, 7.67s/it]
91%|█████████ | 516/567 [1:08:52<05:52, 6.91s/it]
91%|█████████ | 517/567 [1:08:59<05:43, 6.87s/it]
91%|█████████▏| 518/567 [1:09:04<05:05, 6.23s/it]
92%|█████████▏| 519/567 [1:09:09<04:52, 6.08s/it]
92%|█████████▏| 520/567 [1:09:15<04:41, 5.99s/it]
92%|█████████▏| 521/567 [1:09:22<04:52, 6.35s/it]
92%|█████████▏| 522/567 [1:09:31<05:13, 6.98s/it]
92%|█████████▏| 523/567 [1:09:38<05:04, 6.91s/it]
92%|█████████▏| 524/567 [1:09:44<04:47, 6.68s/it]
93%|█████████▎| 525/567 [1:09:50<04:39, 6.64s/it]
93%|█████████▎| 526/567 [1:09:57<04:39, 6.81s/it]
93%|█████████▎| 527/567 [1:10:07<05:09, 7.73s/it]
93%|█████████▎| 528/567 [1:10:11<04:16, 6.59s/it]
93%|█████████▎| 529/567 [1:10:17<03:58, 6.28s/it]
93%|█████████▎| 530/567 [1:10:26<04:29, 7.28s/it]
94%|█████████▎| 531/567 [1:10:32<04:07, 6.88s/it]
94%|█████████▍| 532/567 [1:10:39<03:57, 6.78s/it]
94%|█████████▍| 533/567 [1:10:43<03:27, 6.11s/it]
94%|█████████▍| 534/567 [1:10:47<03:00, 5.46s/it]
94%|█████████▍| 535/567 [1:10:56<03:22, 6.34s/it]
95%|█████████▍| 536/567 [1:11:02<03:18, 6.41s/it]
95%|█████████▍| 537/567 [1:11:10<03:21, 6.71s/it]
95%|█████████▍| 538/567 [1:11:14<02:50, 5.87s/it]
95%|█████████▌| 539/567 [1:11:30<04:11, 8.99s/it]
95%|█████████▌| 540/567 [1:11:51<05:40, 12.63s/it]
95%|█████████▌| 541/567 [1:12:06<05:45, 13.27s/it]
96%|█████████▌| 542/567 [1:12:18<05:20, 12.81s/it]
96%|█████████▌| 543/567 [1:12:45<06:53, 17.23s/it]
96%|█████████▌| 544/567 [1:12:47<04:52, 12.72s/it]
96%|█████████▌| 545/567 [1:12:56<04:10, 11.37s/it]
96%|█████████▋| 546/567 [1:13:01<03:20, 9.56s/it]
96%|█████████▋| 547/567 [1:13:04<02:33, 7.69s/it]
97%|█████████▋| 548/567 [1:13:10<02:15, 7.11s/it]
97%|█████████▋| 549/567 [1:13:14<01:52, 6.22s/it]
97%|█████████▋| 550/567 [1:13:21<01:48, 6.39s/it]
97%|█████████▋| 551/567 [1:13:29<01:49, 6.87s/it]
97%|█████████▋| 552/567 [1:13:44<02:18, 9.25s/it]
98%|█████████▊| 553/567 [1:13:48<01:49, 7.84s/it]
98%|█████████▊| 554/567 [1:13:55<01:36, 7.40s/it]
98%|█████████▊| 555/567 [1:13:59<01:19, 6.61s/it]
98%|█████████▊| 556/567 [1:14:04<01:07, 6.14s/it]
98%|█████████▊| 557/567 [1:14:14<01:12, 7.24s/it]
98%|█████████▊| 558/567 [1:14:22<01:05, 7.28s/it]
99%|█████████▊| 559/567 [1:14:33<01:07, 8.39s/it]
99%|█████████▉| 560/567 [1:14:43<01:02, 8.86s/it]
99%|█████████▉| 561/567 [1:14:47<00:45, 7.57s/it]
99%|█████████▉| 562/567 [1:15:02<00:49, 9.88s/it]
99%|█████████▉| 563/567 [1:15:13<00:40, 10.02s/it]
99%|█████████▉| 564/567 [1:15:22<00:29, 9.77s/it]
100%|█████████▉| 565/567 [1:15:29<00:17, 8.93s/it]
100%|█████████▉| 566/567 [1:15:38<00:08, 8.86s/it]
100%|██████████| 567/567 [1:15:39<00:00, 6.54s/it]
100%|██████████| 567/567 [1:15:39<00:00, 8.01s/it]
-Batch output: ['Old Gang raised his gun and squinted one of his triangular eyes. He pulled the trigger and the gun fired. The golden sparrows, like hailstones, fell down in a shower. The iron sand flew out between the willow branches, making a sizzling sound.', 'The next morning, before the sun was up, Ruan姥姥 got up to wash and dress, and taught Bander a few words. The five- or six-year-old boy was delighted to be taken into the city, and readily agreed to whatever she said.']
-Qwen/Qwen2-7B-Instruct/shots-10 metrics: {'meteor': 0.38526484346757095, 'bleu_scores': {'bleu': 0.12535252418966952, 'precisions': [0.4457174218776798, 0.17091363311920058, 0.08427551324010711, 0.0443391831029663], 'brevity_penalty': 0.9650542580679092, 'length_ratio': 0.9656508777740974, 'translation_length': 29153, 'reference_length': 30190}, 'rouge_scores': {'rouge1': 0.43901507908976883, 'rouge2': 0.19131446112175904, 'rougeL': 0.3820054390758665, 'rougeLsum': 0.3817558049885016}, 'accuracy': 0.0, 'correct_ids': []}
-*** Evaluating with num_shots: 50
-loading train/test data files
-
Map: 0%| | 0/4528 [00:00, ? examples/s]
Map: 44%|████▍ | 2000/4528 [00:00<00:00, 12688.31 examples/s]
Map: 88%|████████▊ | 4000/4528 [00:00<00:00, 13222.65 examples/s]
Map: 100%|██████████| 4528/4528 [00:00<00:00, 12943.82 examples/s]
-
Map: 0%| | 0/1133 [00:00, ? examples/s]
Map: 100%|██████████| 1133/1133 [00:00<00:00, 13265.63 examples/s]
-DatasetDict({
- train: Dataset({
- features: ['chinese', 'english', 'text', 'prompt'],
- num_rows: 4528
- })
- test: Dataset({
- features: ['chinese', 'english', 'text', 'prompt'],
- num_rows: 1133
- })
-})
---------------------------------------------------
-chinese: 老耿端起枪,眯缝起一只三角眼,一搂扳机响了枪,冰雹般的金麻雀劈哩啪啦往下落,铁砂子在柳枝间飞迸着,嚓嚓有声。
---------------------------------------------------
-english: Old Geng picked up his shotgun, squinted, and pulled the trigger. Two sparrows crashed to the ground like hailstones as shotgun pellets tore noisily through the branches.
---------------------------------------------------
-text: <|im_start|>system
-You are a helpful assistant that translates Chinese to English.<|im_end|>
-<|im_start|>user
-You will be given a Chinese sentence to translate. If it is an incomplete sentence, or if you are unsure about the meaning, simply copy the input text as your output. Do not output any additional sentence such as explanation or reasoning.
-
-Example Translations:
-Chinese: 全仗着狐仙搭救。
-English: Because I was protected by a fox fairy.
-Chinese: 过后,表哥告诉她俩,这人是导演,在外国留过学的,还会编剧,今天拍的这戏,就是他自编自导的。
-English: He was the director, the cousin later told them. He had studied abroad and was also a screenwriter; in fact he had written and directed the scene they had earlier seen being filmed.
-Chinese: 这凤姐忽然想起一件事来,便向窗外叫:“蓉儿回来!”
-English: Xi-feng suddenly seemed to remember something, and called to him through the window, 'Rong, come back!'
-Chinese: 三个老红卫兵走到叶文洁面前,面对着她站成了一排——当年,她们也是这样面对叶哲泰的——试图再现那早已忘却的尊严,但她们当年那魔鬼般的精神力量显然已荡然无存。
-English: The three old Red Guards stood in front of Ye in a row—just like they had stood against Ye Zhetai—trying to recapture their long-forgotten dignity. But the demonic spiritual energy that had once propelled them was gone.
-Chinese: 程先生照单全收,都是一个“谢”字,然后问王琦瑶有什么话说。
-English: Mr. Cheng accepted their toast with equanimity and a 'thank you.' Then, turning to Wang Qiyao, he asked if she had anything to say.
-Chinese: 程先生向来觉得她母亲势利,过去并不把他放在眼里,他在楼下叫王琦瑶,她连门都不肯开,只让老妈子伸出头来回话。
-English: Mr. Cheng had always thought her a calculating woman. Back when he used to call on Wang Qiyao, she would never even bother to greet him but always sent the maid down to talk to him at the door instead.
-Chinese: 按他的逻辑,我身上这个通红通红,直不愣登,长约一尺的东西就是罪恶的化身。
-English: In his way of thinking, this red, stiff, foot-long thing on my body was the incarnation of evil.
-Chinese: 他听沙瑞山讲她如何目睹父亲在“文革”中的惨死,讲她后来在建设兵团被诬陷,后来杳无音讯; 九十年代初才又回到了这座城市,在父亲曾工作过的大学中讲授天体物理学直到退休。
-English: He listened as Sha told of how she witnessed the death of her father during the Cultural Revolution, how she was falsely accused at the Production and Construction Corps, how she then seemed to disappear until her return to Beijing at the beginning of the nineties, when she began teaching astrophysics at Tsinghua, where her father had also taught, until her retirement.
-Chinese: 事情一时上有些弄反了,去片厂倒是为了照顾吴佩珍似的。
-English: Before long, it was more like Wang Qiyao was doing her a favor by going with her.
-Chinese: “这等于说正确的哲学是从天上掉下来的。
-English: 'Then that's equivalent to saying that the correct philosophy falls out of the sky.
-Chinese: 爷爷把三种物质拌匀,连同那张黄表纸,拍在伤口上,父亲帮着爷爷把那根肮脏不堪的绷带扎好。
-English: After Granddad mixed the three substances together and covered the wound with them, paper and all, Father wrapped a filthy strip of bandage cloth around it and tied it tight.
-Chinese: 藏在宫里,当然是普天下最稳妥的所在。
-English: Mind you, look anywhere you like, you'll never find a safer place than this.
-Chinese: 果然来的又是四名使者,为首一人下马抱拳,说道:“总舵主相请茅十八茅爷、韦小宝韦爷两位,劳驾前去相会。”
-English: There were four messengers this time. Their leader, having dismounted from his horse, clasped his hands together respectfully: 'The Helmsman requests Mr Mao and Mr Wei to favour him with their company.'
-Chinese: 只见史湘云大说大笑的,见了他两个,忙站起来问好。
-English: Shi Xiang-yun was already there, laughing and chattering away nineteen to the dozen, but rose to greet them as they entered.
-Chinese: 两人虽然没互相叮嘱,却不约而同地缄口不提。
-English: It was implicitly understood between them that they should never broach the subject.
-Chinese: 史强拿起一支笔,在桌面上画了两条弯曲的平行线,“这是运河,”
-English: Da Shi picked up a pen and drew two parallel curves on the table. 'That's the canal.'
-Chinese: 贾环道:“我拿什么比宝玉? 你们怕他,都和他好,都欺负我不是太太养的!” 说着便哭。
-English: 'How can I hope to compete with Bao-yu?' said Jia Huan, beginning to blubber.
-Chinese: 我为此所惊,伏下身不动。
-English: I was scared and stopped, leaning over her body.
-Chinese: 海老公一惊,道:“皇上早知道了?”
-English: The old eunuch was clearly startled by this. 'The Emperor knew this?'
-Chinese: 只说这句就再不能说话了。
-English: Those were the last words he ever uttered.
-Chinese: 再回到医院,人已经进了产房,晚上八点便生下了,是个女孩,说是一出娘胎就满头黑发,手脚很长。
-English: By the time he got back, Wang Qiyao had already been taken into the delivery room. It was a baby girl. She was born at eight o'clock. They told Mr. Cheng that she had long arms and legs and a full head of black hair.
-Chinese: 等她回来,他便对她说,要不要替她去倒杯饮料?
-English: When she came back, he asked her if he could get her a drink.
-Chinese: 我这两套功夫,你这一生一世也来不及学得全了。”
-English: In any case, you couldn't master my two kinds of kungfu if you spent a whole lifetime studying them.'
-Chinese: 香色呢礼帽熟练地搧了他一个耳光,叫道:“说!
-English: Chestnut Wool Cap slapped him across the mouth and shouted: 'Tell me!
-Chinese: 韦小宝沉吟道:“你说怎么办?”
-English: 'What do you think we ought to do?' Trinket asked presently, as if he had been mulling the matter over in his mind.
-Chinese: 王琦瑶就说:你还是没明白我的意思。
-English: 'I don't think so. . . .'
-Chinese: 她默默地站了一会儿,转身走去,悲伤已感觉不到了,她现在就像一台盖革计数仪,当置身于超量的辐射中时,反而不再有任何反应,没有声响,读数为零。
-English: She stood there for a while, silent. Then she turned and walked away. She could no longer feel grief. She was now like a Geiger counter that had been subjected to too much radiation, no longer capable of giving any reaction, noiselessly displaying a reading of zero.
-Chinese: 父亲在墨水河里玩过水,他的水性好像是天生的,奶奶说他见了水比见了亲娘还急。
-English: Father had gone swimming so often in the Black Water River that he seemed born to it. Grandma said that the sight of the river excited him more than the sight of his own mother.
-Chinese: 父亲从高粱根下挖起一块黑土,用手搓得精细,撒在黄表纸上。
-English: Father bent down and picked up a clod of dark earth near the roots of a sorghum stalk, crumbled it in his fingers, and spread it on the paper.
-Chinese: 自从分手后,这是第一次见,中间相隔有十万八千年似的。
-English: This was the first time they had been together since their parting. It felt like thousands of years since they had last seen each other.
-Chinese: 好好儿的,家去做什么?”
-English: 'I'm perfectly all right. What should I want to go home for?'
-Chinese: 绍琳大叫起来,又接着滔滔不绝地讲起了宇宙大爆炸,自然不忘深刻地剖析其反动本质。
-English: Shao Lin shouted. Then she began a long lecture about the big bang theory, remembering to splice in insightful critiques of the theory's extremely reactionary nature.
-Chinese: 顾炎武道:“痛快淋漓,真是绝妙好辞。”
-English: 'It says all there is to say, ' said Gu Yanwu. 'Masterly!'
-Chinese: 它虽是捣乱也是认真恳切,而不是玩世不恭,就算是谣言也是悉心编造。
-English: Though always making trouble, they are nevertheless earnest and sincere. Gossip is never cynical; even if the thing in question is nothing but empty rumors, the utmost care is still put into their creation.
-Chinese: 有一点可以肯定,不管幽灵倒计时的尽头是什么,在这剩下的千余个小时中,对尽头的猜测将像恶魔那样残酷地折磨他,最后在精神上彻底摧毁他。
-English: One thing was certain. No matter what was at the end of the countdown, in the remaining one thousand or so hours, the possibilities would torture him cruelly, like demons, until he suffered a complete mental breakdown.
-Chinese: 我虽糊涂,却明白这两句话。
-English: Even a simpleton like me knows that much!
-Chinese: 王琦瑶还没到这一步,她的想头还有些枝叶花朵,在平安里黯淡的夜里,闪出些光亮来。
-English: Wang Qiyao had not reached this stage. Her thoughts still had stems, leaves, and flowers, which glimmered in the dark night of Peace Lane.
-Chinese: 原来贾瑞父母早亡,只有他祖父代儒教养。
-English: Jia Rui had lost both of his parents in infancy and had been brought up under the sole guardianship of his grandfather Jia Dai-ru.
-Chinese: 在我进山之前,总共就见到了两个人,一个是陈清扬,她没有告诉我这件事。 另一个是我们队长,他也没说起这件事,只叫我去温泉养病。
-English: I saw only two people before my trip, one of whom was Chen Qingyang, who hadn't mentioned it; the other one was our team leader, who also hadn't said anything other than telling me to take a good rest at the thermal springs.
-Chinese: 那个飞出的构件旋即落人水中,激起了高高的水柱,在它一闪而过之际,汪淼看出那是船上发动机的一段曲轴。
-English: A broken component flew out of the hole and fell into the water, causing a large column of water to shoot up. As it briefly flew past, Wang recognized it as a section of the engine crankshaft.
-Chinese: 到了荣府大门前石狮子旁边,只见满门口的轿马。
-English: There, at each side of the stone lions which flanked the gates of the Rong Mansion, she saw a cluster of horses and palanquins.
-Chinese: 审问者:你认为这个结论,本身科学吗?
-English: INTERROGATOR: Do you think this conclusion you drew is scientific?
-Chinese: 他把吴佩珍当小孩子看,喜欢逗她,开些玩笑;对王琦瑶则说有机会要让她上一回镜头,因她的眉眼有些像阮玲玉,趁着人们对阮玲玉的怀念,说不定能捧出一颗明星。
-English: He treated Wu Peizhen as if she were a child; he loved to tease her and play little jokes on her. He promised to put Wang Qiyao in a scene in one of his movies as soon as the opportunity arose. Who knows? Because her coquettish eyes resembled Ruan Lingyu's, they might even be able to capitalize on the audience's nostalgia for the dead movie star and make Wang Qiyao into a new diva of the screen.
-Chinese: 贾瑞也捻着一把汗,少不得回来撒谎,只说:“往舅舅家去了,天黑了,留我住了一夜。”
-English: The prospect of facing his grandfather on arrival made Jia Rui sweat. A lie of some sort was indispensable. 'I went to see Uncle yesterday,' he managed to say, 'and as it was getting dark, he asked me to stay the night.'
-Chinese: 我的后腰上好像被猪八戒筑了两耙。
-English: My lower back looked like it had been struck by Pigsy's rake.
-Chinese: 贾瑞见请,心中暗喜。
-English: Hearing that he was to be received, Jia Rui rejoiced inwardly.
-Chinese: 我去告诉我家爹,拿铜炮枪打你们!”
-English: I'm going to tell my father. He'll shoot the two of you with his bronze-barreled shotgun!'
-Chinese: 我们有各种选择,可以到各方向去。
-English: We could have made any choice and set off in any direction.
-Chinese: 父亲的勃朗宁手枪压在日本洋马肚子下边了。 在下午最后的搏斗中,父亲拖着一杆比他矮不了多少的日本马枪,爷爷还用着那支德国造“自来得”手枪。 连续不断地射击,使本来就过了青春年华的这支“自来得”迅速奔向废铁堆。
-English: Since Father's Browning pistol lay under the belly of the fallen horse, during the final battle of the afternoon he used a Japanese rifle nearly as tall as he was; Granddad used his German automatic, firing it so rapidly it spent its youth and was ready for the trash heap.
-Chinese: 钱老板道:“多谢韦香主夸奖。”
-English: 'Oh, I don't know about that,' said Butcher Qian coyly. 'Anyway, thank you, Master.'
-
-Chinese: 老耿端起枪,眯缝起一只三角眼,一搂扳机响了枪,冰雹般的金麻雀劈哩啪啦往下落,铁砂子在柳枝间飞迸着,嚓嚓有声。
-English:<|im_end|>
-<|im_start|>assistant
-Old Geng picked up his shotgun, squinted, and pulled the trigger. Two sparrows crashed to the ground like hailstones as shotgun pellets tore noisily through the branches.<|im_end|>
---------------------------------------------------
-prompt: <|im_start|>system
-You are a helpful assistant that translates Chinese to English.<|im_end|>
-<|im_start|>user
-You will be given a Chinese sentence to translate. If it is an incomplete sentence, or if you are unsure about the meaning, simply copy the input text as your output. Do not output any additional sentence such as explanation or reasoning.
-
-Example Translations:
-Chinese: 全仗着狐仙搭救。
-English: Because I was protected by a fox fairy.
-Chinese: 过后,表哥告诉她俩,这人是导演,在外国留过学的,还会编剧,今天拍的这戏,就是他自编自导的。
-English: He was the director, the cousin later told them. He had studied abroad and was also a screenwriter; in fact he had written and directed the scene they had earlier seen being filmed.
-Chinese: 这凤姐忽然想起一件事来,便向窗外叫:“蓉儿回来!”
-English: Xi-feng suddenly seemed to remember something, and called to him through the window, 'Rong, come back!'
-Chinese: 三个老红卫兵走到叶文洁面前,面对着她站成了一排——当年,她们也是这样面对叶哲泰的——试图再现那早已忘却的尊严,但她们当年那魔鬼般的精神力量显然已荡然无存。
-English: The three old Red Guards stood in front of Ye in a row—just like they had stood against Ye Zhetai—trying to recapture their long-forgotten dignity. But the demonic spiritual energy that had once propelled them was gone.
-Chinese: 程先生照单全收,都是一个“谢”字,然后问王琦瑶有什么话说。
-English: Mr. Cheng accepted their toast with equanimity and a 'thank you.' Then, turning to Wang Qiyao, he asked if she had anything to say.
-Chinese: 程先生向来觉得她母亲势利,过去并不把他放在眼里,他在楼下叫王琦瑶,她连门都不肯开,只让老妈子伸出头来回话。
-English: Mr. Cheng had always thought her a calculating woman. Back when he used to call on Wang Qiyao, she would never even bother to greet him but always sent the maid down to talk to him at the door instead.
-Chinese: 按他的逻辑,我身上这个通红通红,直不愣登,长约一尺的东西就是罪恶的化身。
-English: In his way of thinking, this red, stiff, foot-long thing on my body was the incarnation of evil.
-Chinese: 他听沙瑞山讲她如何目睹父亲在“文革”中的惨死,讲她后来在建设兵团被诬陷,后来杳无音讯; 九十年代初才又回到了这座城市,在父亲曾工作过的大学中讲授天体物理学直到退休。
-English: He listened as Sha told of how she witnessed the death of her father during the Cultural Revolution, how she was falsely accused at the Production and Construction Corps, how she then seemed to disappear until her return to Beijing at the beginning of the nineties, when she began teaching astrophysics at Tsinghua, where her father had also taught, until her retirement.
-Chinese: 事情一时上有些弄反了,去片厂倒是为了照顾吴佩珍似的。
-English: Before long, it was more like Wang Qiyao was doing her a favor by going with her.
-Chinese: “这等于说正确的哲学是从天上掉下来的。
-English: 'Then that's equivalent to saying that the correct philosophy falls out of the sky.
-Chinese: 爷爷把三种物质拌匀,连同那张黄表纸,拍在伤口上,父亲帮着爷爷把那根肮脏不堪的绷带扎好。
-English: After Granddad mixed the three substances together and covered the wound with them, paper and all, Father wrapped a filthy strip of bandage cloth around it and tied it tight.
-Chinese: 藏在宫里,当然是普天下最稳妥的所在。
-English: Mind you, look anywhere you like, you'll never find a safer place than this.
-Chinese: 果然来的又是四名使者,为首一人下马抱拳,说道:“总舵主相请茅十八茅爷、韦小宝韦爷两位,劳驾前去相会。”
-English: There were four messengers this time. Their leader, having dismounted from his horse, clasped his hands together respectfully: 'The Helmsman requests Mr Mao and Mr Wei to favour him with their company.'
-Chinese: 只见史湘云大说大笑的,见了他两个,忙站起来问好。
-English: Shi Xiang-yun was already there, laughing and chattering away nineteen to the dozen, but rose to greet them as they entered.
-Chinese: 两人虽然没互相叮嘱,却不约而同地缄口不提。
-English: It was implicitly understood between them that they should never broach the subject.
-Chinese: 史强拿起一支笔,在桌面上画了两条弯曲的平行线,“这是运河,”
-English: Da Shi picked up a pen and drew two parallel curves on the table. 'That's the canal.'
-Chinese: 贾环道:“我拿什么比宝玉? 你们怕他,都和他好,都欺负我不是太太养的!” 说着便哭。
-English: 'How can I hope to compete with Bao-yu?' said Jia Huan, beginning to blubber.
-Chinese: 我为此所惊,伏下身不动。
-English: I was scared and stopped, leaning over her body.
-Chinese: 海老公一惊,道:“皇上早知道了?”
-English: The old eunuch was clearly startled by this. 'The Emperor knew this?'
-Chinese: 只说这句就再不能说话了。
-English: Those were the last words he ever uttered.
-Chinese: 再回到医院,人已经进了产房,晚上八点便生下了,是个女孩,说是一出娘胎就满头黑发,手脚很长。
-English: By the time he got back, Wang Qiyao had already been taken into the delivery room. It was a baby girl. She was born at eight o'clock. They told Mr. Cheng that she had long arms and legs and a full head of black hair.
-Chinese: 等她回来,他便对她说,要不要替她去倒杯饮料?
-English: When she came back, he asked her if he could get her a drink.
-Chinese: 我这两套功夫,你这一生一世也来不及学得全了。”
-English: In any case, you couldn't master my two kinds of kungfu if you spent a whole lifetime studying them.'
-Chinese: 香色呢礼帽熟练地搧了他一个耳光,叫道:“说!
-English: Chestnut Wool Cap slapped him across the mouth and shouted: 'Tell me!
-Chinese: 韦小宝沉吟道:“你说怎么办?”
-English: 'What do you think we ought to do?' Trinket asked presently, as if he had been mulling the matter over in his mind.
-Chinese: 王琦瑶就说:你还是没明白我的意思。
-English: 'I don't think so. . . .'
-Chinese: 她默默地站了一会儿,转身走去,悲伤已感觉不到了,她现在就像一台盖革计数仪,当置身于超量的辐射中时,反而不再有任何反应,没有声响,读数为零。
-English: She stood there for a while, silent. Then she turned and walked away. She could no longer feel grief. She was now like a Geiger counter that had been subjected to too much radiation, no longer capable of giving any reaction, noiselessly displaying a reading of zero.
-Chinese: 父亲在墨水河里玩过水,他的水性好像是天生的,奶奶说他见了水比见了亲娘还急。
-English: Father had gone swimming so often in the Black Water River that he seemed born to it. Grandma said that the sight of the river excited him more than the sight of his own mother.
-Chinese: 父亲从高粱根下挖起一块黑土,用手搓得精细,撒在黄表纸上。
-English: Father bent down and picked up a clod of dark earth near the roots of a sorghum stalk, crumbled it in his fingers, and spread it on the paper.
-Chinese: 自从分手后,这是第一次见,中间相隔有十万八千年似的。
-English: This was the first time they had been together since their parting. It felt like thousands of years since they had last seen each other.
-Chinese: 好好儿的,家去做什么?”
-English: 'I'm perfectly all right. What should I want to go home for?'
-Chinese: 绍琳大叫起来,又接着滔滔不绝地讲起了宇宙大爆炸,自然不忘深刻地剖析其反动本质。
-English: Shao Lin shouted. Then she began a long lecture about the big bang theory, remembering to splice in insightful critiques of the theory's extremely reactionary nature.
-Chinese: 顾炎武道:“痛快淋漓,真是绝妙好辞。”
-English: 'It says all there is to say, ' said Gu Yanwu. 'Masterly!'
-Chinese: 它虽是捣乱也是认真恳切,而不是玩世不恭,就算是谣言也是悉心编造。
-English: Though always making trouble, they are nevertheless earnest and sincere. Gossip is never cynical; even if the thing in question is nothing but empty rumors, the utmost care is still put into their creation.
-Chinese: 有一点可以肯定,不管幽灵倒计时的尽头是什么,在这剩下的千余个小时中,对尽头的猜测将像恶魔那样残酷地折磨他,最后在精神上彻底摧毁他。
-English: One thing was certain. No matter what was at the end of the countdown, in the remaining one thousand or so hours, the possibilities would torture him cruelly, like demons, until he suffered a complete mental breakdown.
-Chinese: 我虽糊涂,却明白这两句话。
-English: Even a simpleton like me knows that much!
-Chinese: 王琦瑶还没到这一步,她的想头还有些枝叶花朵,在平安里黯淡的夜里,闪出些光亮来。
-English: Wang Qiyao had not reached this stage. Her thoughts still had stems, leaves, and flowers, which glimmered in the dark night of Peace Lane.
-Chinese: 原来贾瑞父母早亡,只有他祖父代儒教养。
-English: Jia Rui had lost both of his parents in infancy and had been brought up under the sole guardianship of his grandfather Jia Dai-ru.
-Chinese: 在我进山之前,总共就见到了两个人,一个是陈清扬,她没有告诉我这件事。 另一个是我们队长,他也没说起这件事,只叫我去温泉养病。
-English: I saw only two people before my trip, one of whom was Chen Qingyang, who hadn't mentioned it; the other one was our team leader, who also hadn't said anything other than telling me to take a good rest at the thermal springs.
-Chinese: 那个飞出的构件旋即落人水中,激起了高高的水柱,在它一闪而过之际,汪淼看出那是船上发动机的一段曲轴。
-English: A broken component flew out of the hole and fell into the water, causing a large column of water to shoot up. As it briefly flew past, Wang recognized it as a section of the engine crankshaft.
-Chinese: 到了荣府大门前石狮子旁边,只见满门口的轿马。
-English: There, at each side of the stone lions which flanked the gates of the Rong Mansion, she saw a cluster of horses and palanquins.
-Chinese: 审问者:你认为这个结论,本身科学吗?
-English: INTERROGATOR: Do you think this conclusion you drew is scientific?
-Chinese: 他把吴佩珍当小孩子看,喜欢逗她,开些玩笑;对王琦瑶则说有机会要让她上一回镜头,因她的眉眼有些像阮玲玉,趁着人们对阮玲玉的怀念,说不定能捧出一颗明星。
-English: He treated Wu Peizhen as if she were a child; he loved to tease her and play little jokes on her. He promised to put Wang Qiyao in a scene in one of his movies as soon as the opportunity arose. Who knows? Because her coquettish eyes resembled Ruan Lingyu's, they might even be able to capitalize on the audience's nostalgia for the dead movie star and make Wang Qiyao into a new diva of the screen.
-Chinese: 贾瑞也捻着一把汗,少不得回来撒谎,只说:“往舅舅家去了,天黑了,留我住了一夜。”
-English: The prospect of facing his grandfather on arrival made Jia Rui sweat. A lie of some sort was indispensable. 'I went to see Uncle yesterday,' he managed to say, 'and as it was getting dark, he asked me to stay the night.'
-Chinese: 我的后腰上好像被猪八戒筑了两耙。
-English: My lower back looked like it had been struck by Pigsy's rake.
-Chinese: 贾瑞见请,心中暗喜。
-English: Hearing that he was to be received, Jia Rui rejoiced inwardly.
-Chinese: 我去告诉我家爹,拿铜炮枪打你们!”
-English: I'm going to tell my father. He'll shoot the two of you with his bronze-barreled shotgun!'
-Chinese: 我们有各种选择,可以到各方向去。
-English: We could have made any choice and set off in any direction.
-Chinese: 父亲的勃朗宁手枪压在日本洋马肚子下边了。 在下午最后的搏斗中,父亲拖着一杆比他矮不了多少的日本马枪,爷爷还用着那支德国造“自来得”手枪。 连续不断地射击,使本来就过了青春年华的这支“自来得”迅速奔向废铁堆。
-English: Since Father's Browning pistol lay under the belly of the fallen horse, during the final battle of the afternoon he used a Japanese rifle nearly as tall as he was; Granddad used his German automatic, firing it so rapidly it spent its youth and was ready for the trash heap.
-Chinese: 钱老板道:“多谢韦香主夸奖。”
-English: 'Oh, I don't know about that,' said Butcher Qian coyly. 'Anyway, thank you, Master.'
-
-Chinese: 老耿端起枪,眯缝起一只三角眼,一搂扳机响了枪,冰雹般的金麻雀劈哩啪啦往下落,铁砂子在柳枝间飞迸着,嚓嚓有声。
-English:<|im_end|>
-<|im_start|>assistant
-
-
0%| | 0/567 [00:00, ?it/s]
0%| | 1/567 [01:00<9:27:36, 60.17s/it]
0%| | 2/567 [02:01<9:32:08, 60.76s/it]
1%| | 3/567 [02:45<8:19:06, 53.10s/it]
1%| | 4/567 [04:03<9:49:45, 62.85s/it]
1%| | 5/567 [04:18<7:07:35, 45.65s/it]
1%| | 6/567 [04:49<6:21:07, 40.76s/it]
1%| | 7/567 [05:05<5:04:58, 32.68s/it]
1%|▏ | 8/567 [05:49<5:36:58, 36.17s/it]
2%|▏ | 9/567 [06:31<5:55:25, 38.22s/it]
2%|▏ | 10/567 [07:05<5:40:07, 36.64s/it]
2%|▏ | 11/567 [07:49<6:01:19, 38.99s/it]
2%|▏ | 12/567 [08:08<5:03:43, 32.83s/it]
2%|▏ | 13/567 [08:46<5:19:27, 34.60s/it]
2%|▏ | 14/567 [09:10<4:49:47, 31.44s/it]
3%|▎ | 15/567 [09:26<4:06:35, 26.80s/it]
3%|▎ | 16/567 [10:13<5:01:56, 32.88s/it]
3%|▎ | 17/567 [11:21<6:36:12, 43.22s/it]
3%|▎ | 18/567 [11:48<5:50:26, 38.30s/it]
3%|▎ | 19/567 [12:08<5:01:08, 32.97s/it]
4%|▎ | 20/567 [12:30<4:31:28, 29.78s/it]
4%|▎ | 21/567 [13:20<5:26:13, 35.85s/it]
4%|▍ | 22/567 [13:46<4:58:38, 32.88s/it]
4%|▍ | 23/567 [14:40<5:55:01, 39.16s/it]
4%|▍ | 24/567 [15:05<5:16:05, 34.93s/it]
4%|▍ | 25/567 [15:19<4:17:06, 28.46s/it]
5%|▍ | 26/567 [16:04<5:02:02, 33.50s/it]
5%|▍ | 27/567 [16:22<4:19:20, 28.82s/it]
5%|▍ | 28/567 [17:39<6:28:30, 43.25s/it]
5%|▌ | 29/567 [18:10<5:55:49, 39.68s/it]
5%|▌ | 30/567 [18:53<6:04:51, 40.77s/it]
5%|▌ | 31/567 [19:09<4:58:00, 33.36s/it]
6%|▌ | 32/567 [19:41<4:52:10, 32.77s/it]
6%|▌ | 33/567 [20:06<4:31:03, 30.46s/it]
6%|▌ | 34/567 [21:01<5:35:43, 37.79s/it]
6%|▌ | 35/567 [21:41<5:40:18, 38.38s/it]
6%|▋ | 36/567 [21:55<4:35:41, 31.15s/it]
7%|▋ | 37/567 [22:06<3:43:22, 25.29s/it]
7%|▋ | 38/567 [22:25<3:25:42, 23.33s/it]
7%|▋ | 39/567 [22:51<3:32:17, 24.12s/it]
7%|▋ | 40/567 [23:23<3:51:03, 26.31s/it]
7%|▋ | 41/567 [23:31<3:02:33, 20.82s/it]
7%|▋ | 42/567 [24:12<3:55:08, 26.87s/it]
8%|▊ | 43/567 [24:30<3:31:04, 24.17s/it]
8%|▊ | 44/567 [25:01<3:49:25, 26.32s/it]
8%|▊ | 45/567 [25:34<4:07:02, 28.39s/it]
8%|▊ | 46/567 [25:54<3:43:45, 25.77s/it]
8%|▊ | 47/567 [26:25<3:58:03, 27.47s/it]
8%|▊ | 48/567 [26:58<4:10:36, 28.97s/it]
9%|▊ | 49/567 [27:11<3:29:45, 24.30s/it]
9%|▉ | 50/567 [27:53<4:14:12, 29.50s/it]
9%|▉ | 51/567 [28:38<4:55:41, 34.38s/it]
9%|▉ | 52/567 [28:54<4:05:42, 28.63s/it]
9%|▉ | 53/567 [31:04<8:27:16, 59.21s/it]
10%|▉ | 54/567 [31:58<8:12:20, 57.58s/it]
10%|▉ | 55/567 [32:54<8:06:50, 57.05s/it]
10%|▉ | 56/567 [34:08<8:48:58, 62.11s/it]
10%|█ | 57/567 [35:17<9:05:11, 64.14s/it]
10%|█ | 58/567 [35:32<6:59:28, 49.45s/it]
10%|█ | 59/567 [36:19<6:52:22, 48.71s/it]
11%|█ | 60/567 [36:49<6:05:24, 43.24s/it]
11%|█ | 61/567 [37:14<5:18:45, 37.80s/it]
11%|█ | 62/567 [37:38<4:41:27, 33.44s/it]
11%|█ | 63/567 [38:19<5:01:40, 35.91s/it]
11%|█▏ | 64/567 [39:15<5:51:21, 41.91s/it]
11%|█▏ | 65/567 [39:35<4:54:52, 35.24s/it]
12%|█▏ | 66/567 [40:13<5:01:09, 36.07s/it]
12%|█▏ | 67/567 [40:32<4:17:16, 30.87s/it]
12%|█▏ | 68/567 [41:55<6:26:38, 46.49s/it]
12%|█▏ | 69/567 [42:21<5:34:48, 40.34s/it]
12%|█▏ | 70/567 [42:49<5:05:10, 36.84s/it]
13%|█▎ | 71/567 [43:04<4:08:37, 30.08s/it]
13%|█▎ | 72/567 [43:42<4:29:12, 32.63s/it]
13%|█▎ | 73/567 [43:58<3:47:45, 27.66s/it]
13%|█▎ | 74/567 [44:21<3:34:15, 26.08s/it]
13%|█▎ | 75/567 [44:39<3:16:02, 23.91s/it]
13%|█▎ | 76/567 [45:12<3:36:14, 26.42s/it]
14%|█▎ | 77/567 [45:45<3:52:18, 28.45s/it]
14%|█▍ | 78/567 [46:16<3:59:10, 29.35s/it]
14%|█▍ | 79/567 [46:54<4:19:03, 31.85s/it]
14%|█▍ | 80/567 [47:13<3:46:38, 27.92s/it]
14%|█▍ | 81/567 [47:28<3:15:12, 24.10s/it]
14%|█▍ | 82/567 [47:40<2:44:31, 20.35s/it]
15%|█▍ | 83/567 [48:07<3:02:09, 22.58s/it]
15%|█▍ | 84/567 [48:28<2:56:46, 21.96s/it]
15%|█▍ | 85/567 [48:44<2:42:14, 20.20s/it]
15%|█▌ | 86/567 [48:52<2:12:38, 16.55s/it]
15%|█▌ | 87/567 [49:10<2:15:30, 16.94s/it]
16%|█▌ | 88/567 [49:30<2:23:56, 18.03s/it]
16%|█▌ | 89/567 [50:34<4:12:02, 31.64s/it]
16%|█▌ | 90/567 [51:07<4:15:15, 32.11s/it]
16%|█▌ | 91/567 [51:57<4:57:55, 37.55s/it]
16%|█▌ | 92/567 [52:26<4:36:06, 34.88s/it]
16%|█▋ | 93/567 [52:39<3:44:36, 28.43s/it]
17%|█▋ | 94/567 [53:28<4:33:15, 34.66s/it]
17%|█▋ | 95/567 [53:47<3:55:11, 29.90s/it]
17%|█▋ | 96/567 [54:19<3:58:06, 30.33s/it]
17%|█▋ | 97/567 [54:57<4:17:20, 32.85s/it]
17%|█▋ | 98/567 [55:06<3:18:58, 25.46s/it]
17%|█▋ | 99/567 [55:34<3:26:05, 26.42s/it]
18%|█▊ | 100/567 [56:16<4:01:15, 31.00s/it]
18%|█▊ | 101/567 [56:43<3:51:02, 29.75s/it]
18%|█▊ | 102/567 [57:36<4:46:22, 36.95s/it]
18%|█▊ | 103/567 [57:52<3:55:13, 30.42s/it]
18%|█▊ | 104/567 [58:35<4:24:53, 34.33s/it]
19%|█▊ | 105/567 [1:00:06<6:34:35, 51.25s/it]
19%|█▊ | 106/567 [1:00:41<5:57:38, 46.55s/it]
19%|█▉ | 107/567 [1:00:56<4:42:40, 36.87s/it]
19%|█▉ | 108/567 [1:02:24<6:41:06, 52.43s/it]
19%|█▉ | 109/567 [1:02:33<5:00:36, 39.38s/it]
19%|█▉ | 110/567 [1:02:59<4:29:18, 35.36s/it]
20%|█▉ | 111/567 [1:04:14<5:57:18, 47.01s/it]
20%|█▉ | 112/567 [1:04:51<5:35:38, 44.26s/it]
20%|█▉ | 113/567 [1:05:45<5:57:05, 47.19s/it]
20%|██ | 114/567 [1:06:09<5:02:07, 40.02s/it]
20%|██ | 115/567 [1:06:55<5:15:51, 41.93s/it]
20%|██ | 116/567 [1:07:17<4:31:03, 36.06s/it]
21%|██ | 117/567 [1:07:45<4:11:49, 33.58s/it]
21%|██ | 118/567 [1:08:26<4:26:34, 35.62s/it]
21%|██ | 119/567 [1:09:38<5:49:28, 46.80s/it]
21%|██ | 120/567 [1:10:09<5:12:01, 41.88s/it]
21%|██▏ | 121/567 [1:10:20<4:01:50, 32.53s/it]
22%|██▏ | 122/567 [1:10:43<3:40:43, 29.76s/it]
22%|██▏ | 123/567 [1:11:10<3:33:54, 28.91s/it]
22%|██▏ | 124/567 [1:11:22<2:57:06, 23.99s/it]
22%|██▏ | 125/567 [1:11:46<2:55:07, 23.77s/it]
22%|██▏ | 126/567 [1:12:16<3:09:36, 25.80s/it]
22%|██▏ | 127/567 [1:13:20<4:34:00, 37.36s/it]
23%|██▎ | 128/567 [1:14:02<4:43:12, 38.71s/it]
23%|██▎ | 129/567 [1:14:42<4:44:50, 39.02s/it]
23%|██▎ | 130/567 [1:16:11<6:33:15, 54.00s/it]
23%|██▎ | 131/567 [1:17:04<6:31:01, 53.81s/it]
23%|██▎ | 132/567 [1:18:38<7:56:31, 65.73s/it]
23%|██▎ | 133/567 [1:19:57<8:23:34, 69.62s/it]
24%|██▎ | 134/567 [1:21:24<9:00:06, 74.84s/it]
24%|██▍ | 135/567 [1:21:53<7:21:07, 61.27s/it]
24%|██▍ | 136/567 [1:22:22<6:10:00, 51.51s/it]
24%|██▍ | 137/567 [1:22:51<5:20:01, 44.65s/it]
24%|██▍ | 138/567 [1:23:03<4:10:17, 35.01s/it]
25%|██▍ | 139/567 [1:23:27<3:46:35, 31.77s/it]
25%|██▍ | 140/567 [1:23:54<3:35:42, 30.31s/it]
25%|██▍ | 141/567 [1:24:23<3:31:48, 29.83s/it]
25%|██▌ | 142/567 [1:24:45<3:15:27, 27.59s/it]
25%|██▌ | 143/567 [1:25:05<2:58:12, 25.22s/it]
25%|██▌ | 144/567 [1:25:37<3:12:42, 27.33s/it]
26%|██▌ | 145/567 [1:26:06<3:15:05, 27.74s/it]
26%|██▌ | 146/567 [1:26:40<3:28:54, 29.77s/it]
26%|██▌ | 147/567 [1:27:47<4:45:05, 40.73s/it]
26%|██▌ | 148/
\ No newline at end of file
+version https://git-lfs.github.com/spec/v1
+oid sha256:97cafade2e428582cf353651dfd0493ede8294f5c2e97b5173dc426087b73c42
+size 513340
diff --git a/logs/l40-4gpu.txt b/logs/l40-4gpu.txt
index 2b738dadb0ef075587e391dee6672424b2f4a96d..88b3bf0fc3e9de3403ccbda60af73db8e0b26f68 100644
--- a/logs/l40-4gpu.txt
+++ b/logs/l40-4gpu.txt
@@ -1,655 +1,3 @@
-Submitting job: /common/home/users/d/dh.huang.2023/code/rapget-translation/scripts/eval-4gpu.sh
-Current Directory:
-/common/home/users/d/dh.huang.2023/code/rapget-translation
-Sun Aug 4 02:37:54 2024
-+-----------------------------------------------------------------------------------------+
-| NVIDIA-SMI 550.90.07 Driver Version: 550.90.07 CUDA Version: 12.4 |
-|-----------------------------------------+------------------------+----------------------+
-| GPU Name Persistence-M | Bus-Id Disp.A | Volatile Uncorr. ECC |
-| Fan Temp Perf Pwr:Usage/Cap | Memory-Usage | GPU-Util Compute M. |
-| | | MIG M. |
-|=========================================+========================+======================|
-| 0 NVIDIA L40 On | 00000000:01:00.0 Off | 0 |
-| N/A 42C P0 65W / 300W | 1MiB / 46068MiB | 0% Default |
-| | | N/A |
-+-----------------------------------------+------------------------+----------------------+
-| 1 NVIDIA L40 On | 00000000:41:00.0 Off | 0 |
-| N/A 42C P8 64W / 300W | 1MiB / 46068MiB | 0% Default |
-| | | N/A |
-+-----------------------------------------+------------------------+----------------------+
-| 2 NVIDIA L40 On | 00000000:81:00.0 Off | 0 |
-| N/A 43C P8 64W / 300W | 1MiB / 46068MiB | 0% Default |
-| | | N/A |
-+-----------------------------------------+------------------------+----------------------+
-| 3 NVIDIA L40 On | 00000000:C1:00.0 Off | 0 |
-| N/A 43C P0 65W / 300W | 1MiB / 46068MiB | 0% Default |
-| | | N/A |
-+-----------------------------------------+------------------------+----------------------+
-
-+-----------------------------------------------------------------------------------------+
-| Processes: |
-| GPU GI CI PID Type Process name GPU Memory |
-| ID ID Usage |
-|=========================================================================================|
-| No running processes found |
-+-----------------------------------------------------------------------------------------+
-Linux lexicon 4.18.0-553.5.1.el8_10.x86_64 #1 SMP Thu Jun 6 09:41:19 UTC 2024 x86_64 x86_64 x86_64 GNU/Linux
-NAME="Rocky Linux"
-VERSION="8.10 (Green Obsidian)"
-ID="rocky"
-ID_LIKE="rhel centos fedora"
-VERSION_ID="8.10"
-PLATFORM_ID="platform:el8"
-PRETTY_NAME="Rocky Linux 8.10 (Green Obsidian)"
-ANSI_COLOR="0;32"
-LOGO="fedora-logo-icon"
-CPE_NAME="cpe:/o:rocky:rocky:8:GA"
-HOME_URL="https://rockylinux.org/"
-BUG_REPORT_URL="https://bugs.rockylinux.org/"
-SUPPORT_END="2029-05-31"
-ROCKY_SUPPORT_PRODUCT="Rocky-Linux-8"
-ROCKY_SUPPORT_PRODUCT_VERSION="8.10"
-REDHAT_SUPPORT_PRODUCT="Rocky Linux"
-REDHAT_SUPPORT_PRODUCT_VERSION="8.10"
-Architecture: x86_64
-CPU op-mode(s): 32-bit, 64-bit
-Byte Order: Little Endian
-CPU(s): 128
-On-line CPU(s) list: 0-127
-Thread(s) per core: 2
-Core(s) per socket: 64
-Socket(s): 1
-NUMA node(s): 1
-Vendor ID: AuthenticAMD
-CPU family: 25
-Model: 1
-Model name: AMD EPYC 7763 64-Core Processor
-Stepping: 1
-CPU MHz: 2450.000
-CPU max MHz: 3529.0520
-CPU min MHz: 1500.0000
-BogoMIPS: 4890.34
-Virtualization: AMD-V
-L1d cache: 32K
-L1i cache: 32K
-L2 cache: 512K
-L3 cache: 32768K
-NUMA node0 CPU(s): 0-127
-Flags: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca fsrm
-MemTotal: 527669564 kB
-Current Directory:
-/common/home/users/d/dh.huang.2023/code/rapget-translation
-Evaluating Qwen/Qwen2-72B-Instruct
-[nltk_data] Downloading package wordnet to
-[nltk_data] /common/home/users/d/dh.huang.2023/nltk_data...
-[nltk_data] Package wordnet is already up-to-date!
-[nltk_data] Downloading package punkt to
-[nltk_data] /common/home/users/d/dh.huang.2023/nltk_data...
-[nltk_data] Package punkt is already up-to-date!
-[nltk_data] Downloading package omw-1.4 to
-[nltk_data] /common/home/users/d/dh.huang.2023/nltk_data...
-[nltk_data] Package omw-1.4 is already up-to-date!
-[nltk_data] Downloading package wordnet to
-[nltk_data] /common/home/users/d/dh.huang.2023/nltk_data...
-[nltk_data] Package wordnet is already up-to-date!
-[nltk_data] Downloading package punkt to
-[nltk_data] /common/home/users/d/dh.huang.2023/nltk_data...
-[nltk_data] Package punkt is already up-to-date!
-[nltk_data] Downloading package omw-1.4 to
-[nltk_data] /common/home/users/d/dh.huang.2023/nltk_data...
-[nltk_data] Package omw-1.4 is already up-to-date!
-loading env vars from: /common2/dh.huang.2023/code/rapget-translation/.env.example
-Adding /common2/dh.huang.2023/code/rapget-translation to sys.path
-loading: /common2/dh.huang.2023/code/rapget-translation/eval_modules/calc_repetitions.py
-loading /common2/dh.huang.2023/code/rapget-translation/llm_toolkit/translation_utils.py
-CUDA is available, we have found 4 GPU(s)
-NVIDIA L40
-CUDA version: 12.1
-Qwen/Qwen2-72B-Instruct None False datasets/mac/mac.tsv results/mac-results_few_shots.csv False 300 1
-(0) GPU = NVIDIA L40. Max memory = 44.309 GB.
-0.0 GB of memory reserved.
-loading model: Qwen/Qwen2-72B-Instruct with adapter: None
-
Loading checkpoint shards: 0%| | 0/37 [00:00, ?it/s]
Loading checkpoint shards: 3%|▎ | 1/37 [00:02<01:44, 2.91s/it]
Loading checkpoint shards: 5%|▌ | 2/37 [00:06<01:45, 3.03s/it]
Loading checkpoint shards: 8%|▊ | 3/37 [00:08<01:42, 3.00s/it]
Loading checkpoint shards: 11%|█ | 4/37 [00:12<01:39, 3.03s/it]
Loading checkpoint shards: 14%|█▎ | 5/37 [00:15<01:37, 3.03s/it]
Loading checkpoint shards: 16%|█▌ | 6/37 [00:18<01:34, 3.05s/it]
Loading checkpoint shards: 19%|█▉ | 7/37 [00:21<01:30, 3.02s/it]
Loading checkpoint shards: 22%|██▏ | 8/37 [00:24<01:28, 3.03s/it]
Loading checkpoint shards: 24%|██▍ | 9/37 [00:27<01:25, 3.05s/it]
Loading checkpoint shards: 27%|██▋ | 10/37 [00:30<01:22, 3.05s/it]
Loading checkpoint shards: 30%|██▉ | 11/37 [00:33<01:18, 3.02s/it]
Loading checkpoint shards: 32%|███▏ | 12/37 [00:36<01:16, 3.05s/it]
Loading checkpoint shards: 35%|███▌ | 13/37 [00:39<01:13, 3.06s/it]
Loading checkpoint shards: 38%|███▊ | 14/37 [00:42<01:10, 3.07s/it]
Loading checkpoint shards: 41%|████ | 15/37 [00:45<01:06, 3.03s/it]
Loading checkpoint shards: 43%|████▎ | 16/37 [00:48<01:04, 3.05s/it]
Loading checkpoint shards: 46%|████▌ | 17/37 [00:51<01:00, 3.05s/it]
Loading checkpoint shards: 49%|████▊ | 18/37 [00:54<00:58, 3.05s/it]
Loading checkpoint shards: 51%|█████▏ | 19/37 [00:57<00:54, 3.03s/it]
Loading checkpoint shards: 54%|█████▍ | 20/37 [01:00<00:51, 3.03s/it]
Loading checkpoint shards: 57%|█████▋ | 21/37 [01:03<00:48, 3.05s/it]
Loading checkpoint shards: 59%|█████▉ | 22/37 [01:06<00:45, 3.05s/it]
Loading checkpoint shards: 62%|██████▏ | 23/37 [01:09<00:42, 3.03s/it]
Loading checkpoint shards: 65%|██████▍ | 24/37 [01:12<00:39, 3.04s/it]
Loading checkpoint shards: 68%|██████▊ | 25/37 [01:16<00:36, 3.06s/it]
Loading checkpoint shards: 70%|███████ | 26/37 [01:19<00:33, 3.07s/it]
Loading checkpoint shards: 73%|███████▎ | 27/37 [01:22<00:30, 3.05s/it]
Loading checkpoint shards: 76%|███████▌ | 28/37 [01:25<00:27, 3.06s/it]
Loading checkpoint shards: 78%|███████▊ | 29/37 [01:28<00:24, 3.06s/it]
Loading checkpoint shards: 81%|████████ | 30/37 [01:31<00:21, 3.07s/it]
Loading checkpoint shards: 84%|████████▍ | 31/37 [01:34<00:18, 3.04s/it]
Loading checkpoint shards: 86%|████████▋ | 32/37 [01:37<00:15, 3.04s/it]
Loading checkpoint shards: 89%|████████▉ | 33/37 [01:40<00:12, 3.05s/it]
Loading checkpoint shards: 92%|█████████▏| 34/37 [01:43<00:09, 3.06s/it]
Loading checkpoint shards: 95%|█████████▍| 35/37 [01:46<00:06, 3.03s/it]
Loading checkpoint shards: 97%|█████████▋| 36/37 [01:49<00:03, 3.04s/it]
Loading checkpoint shards: 100%|██████████| 37/37 [01:52<00:00, 2.90s/it]
Loading checkpoint shards: 100%|██████████| 37/37 [01:52<00:00, 3.03s/it]
-(2) GPU = NVIDIA L40. Max memory = 44.309 GB.
-33.754 GB of memory reserved.
-Evaluating model: Qwen/Qwen2-72B-Instruct on cuda
-*** Evaluating with num_shots: 0
-loading train/test data files
-
Map: 0%| | 0/4528 [00:00, ? examples/s]
Map: 66%|██████▋ | 3000/4528 [00:00<00:00, 21618.30 examples/s]
Map: 100%|██████████| 4528/4528 [00:00<00:00, 24611.76 examples/s]
-
Map: 0%| | 0/1133 [00:00, ? examples/s]
Map: 100%|██████████| 1133/1133 [00:00<00:00, 31045.58 examples/s]
-DatasetDict({
- train: Dataset({
- features: ['chinese', 'english', 'text', 'prompt'],
- num_rows: 4528
- })
- test: Dataset({
- features: ['chinese', 'english', 'text', 'prompt'],
- num_rows: 1133
- })
-})
---------------------------------------------------
-chinese: 老耿端起枪,眯缝起一只三角眼,一搂扳机响了枪,冰雹般的金麻雀劈哩啪啦往下落,铁砂子在柳枝间飞迸着,嚓嚓有声。
---------------------------------------------------
-english: Old Geng picked up his shotgun, squinted, and pulled the trigger. Two sparrows crashed to the ground like hailstones as shotgun pellets tore noisily through the branches.
---------------------------------------------------
-text: <|im_start|>system
-You are a helpful assistant that translates Chinese to English.<|im_end|>
-<|im_start|>user
-You will be given a Chinese sentence to translate. If it is an incomplete sentence, or if you are unsure about the meaning, simply copy the input text as your output. Do not output any additional sentence such as explanation or reasoning.
-
-Chinese: 老耿端起枪,眯缝起一只三角眼,一搂扳机响了枪,冰雹般的金麻雀劈哩啪啦往下落,铁砂子在柳枝间飞迸着,嚓嚓有声。
-English:<|im_end|>
-<|im_start|>assistant
-Old Geng picked up his shotgun, squinted, and pulled the trigger. Two sparrows crashed to the ground like hailstones as shotgun pellets tore noisily through the branches.<|im_end|>
---------------------------------------------------
-prompt: <|im_start|>system
-You are a helpful assistant that translates Chinese to English.<|im_end|>
-<|im_start|>user
-You will be given a Chinese sentence to translate. If it is an incomplete sentence, or if you are unsure about the meaning, simply copy the input text as your output. Do not output any additional sentence such as explanation or reasoning.
-
-Chinese: 老耿端起枪,眯缝起一只三角眼,一搂扳机响了枪,冰雹般的金麻雀劈哩啪啦往下落,铁砂子在柳枝间飞迸着,嚓嚓有声。
-English:<|im_end|>
-<|im_start|>assistant
-
-
0%| | 0/1133 [00:00, ?it/s]
0%| | 1/1133 [00:16<5:03:03, 16.06s/it]
0%| | 2/1133 [00:31<4:58:54, 15.86s/it]
0%| | 3/1133 [01:05<7:28:34, 23.82s/it]
0%| | 4/1133 [01:16<5:59:17, 19.09s/it]
0%| | 5/1133 [01:35<5:53:00, 18.78s/it]
1%| | 6/1133 [01:41<4:35:11, 14.65s/it]
1%| | 7/1133 [01:52<4:13:12, 13.49s/it]
1%| | 8/1133 [02:44<7:58:29, 25.52s/it]
1%| | 9/1133 [02:48<5:55:23, 18.97s/it]
1%| | 10/1133 [02:58<5:04:28, 16.27s/it]
1%| | 11/1133 [03:03<3:57:12, 12.68s/it]
1%| | 12/1133 [03:14<3:50:01, 12.31s/it]
1%| | 13/1133 [03:19<3:05:57, 9.96s/it]
1%| | 14/1133 [03:20<2:16:46, 7.33s/it]
1%|▏ | 15/1133 [03:36<3:03:46, 9.86s/it]
1%|▏ | 16/1133 [03:40<2:29:38, 8.04s/it]
2%|▏ | 17/1133 [03:47<2:24:02, 7.74s/it]
2%|▏ | 18/1133 [04:00<2:53:30, 9.34s/it]
2%|▏ | 19/1133 [04:02<2:13:57, 7.21s/it]
2%|▏ | 20/1133 [04:14<2:40:04, 8.63s/it]
2%|▏ | 21/1133 [04:20<2:24:32, 7.80s/it]
2%|▏ | 22/1133 [04:34<3:01:38, 9.81s/it]
2%|▏ | 23/1133 [04:38<2:28:10, 8.01s/it]
2%|▏ | 24/1133 [05:01<3:50:46, 12.49s/it]
2%|▏ | 25/1133 [05:08<3:21:06, 10.89s/it]
2%|▏ | 26/1133 [05:20<3:26:57, 11.22s/it]
2%|▏ | 27/1133 [05:27<3:03:02, 9.93s/it]
2%|▏ | 28/1133 [05:31<2:26:12, 7.94s/it]
3%|▎ | 29/1133 [05:35<2:07:23, 6.92s/it]
3%|▎ | 30/1133 [05:38<1:44:25, 5.68s/it]
3%|▎ | 31/1133 [05:40<1:24:07, 4.58s/it]
3%|▎ | 32/1133 [05:52<2:03:10, 6.71s/it]
3%|▎ | 33/1133 [06:14<3:30:05, 11.46s/it]
3%|▎ | 34/1133 [06:23<3:17:26, 10.78s/it]
3%|▎ | 35/1133 [06:29<2:47:21, 9.14s/it]
3%|▎ | 36/1133 [06:35<2:29:18, 8.17s/it]
3%|▎ | 37/1133 [07:04<4:27:36, 14.65s/it]
3%|▎ | 38/1133 [07:09<3:30:44, 11.55s/it]
3%|▎ | 39/1133 [07:10<2:37:02, 8.61s/it]
4%|▎ | 40/1133 [07:17<2:23:23, 7.87s/it]
4%|▎ | 41/1133 [07:31<2:58:31, 9.81s/it]
4%|▎ | 42/1133 [07:49<3:43:07, 12.27s/it]
4%|▍ | 43/1133 [07:58<3:27:10, 11.40s/it]
4%|▍ | 44/1133 [08:04<2:56:57, 9.75s/it]
4%|▍ | 45/1133 [08:07<2:21:38, 7.81s/it]
4%|▍ | 46/1133 [08:23<3:05:40, 10.25s/it]
4%|▍ | 47/1133 [08:30<2:47:26, 9.25s/it]
4%|▍ | 48/1133 [08:33<2:09:23, 7.16s/it]
4%|▍ | 49/1133 [08:36<1:48:20, 6.00s/it]
4%|▍ | 50/1133 [08:40<1:37:42, 5.41s/it]
5%|▍ | 51/1133 [08:48<1:54:28, 6.35s/it]
5%|▍ | 52/1133 [09:02<2:31:26, 8.41s/it]
5%|▍ | 53/1133 [09:08<2:20:25, 7.80s/it]
5%|▍ | 54/1133 [09:11<1:54:32, 6.37s/it]
5%|▍ | 55/1133 [09:32<3:13:58, 10.80s/it]
5%|▍ | 56/1133 [09:39<2:53:06, 9.64s/it]
5%|▌ | 57/1133 [09:50<2:58:57, 9.98s/it]
5%|▌ | 58/1133 [10:00<2:57:39, 9.92s/it]
5%|▌ | 59/1133 [10:09<2:52:03, 9.61s/it]
5%|▌ | 60/1133 [10:18<2:53:23, 9.70s/it]
5%|▌ | 61/1133 [10:23<2:23:03, 8.01s/it]
5%|▌ | 62/1133 [10:27<2:01:47, 6.82s/it]
6%|▌ | 63/1133 [10:36<2:14:11, 7.52s/it]
6%|▌ | 64/1133 [10:42<2:05:19, 7.03s/it]
6%|▌ | 65/1133 [10:49<2:08:39, 7.23s/it]
6%|▌ | 66/1133 [10:56<2:08:11, 7.21s/it]
6%|▌ | 67/1133 [11:11<2:49:20, 9.53s/it]
6%|▌ | 68/1133 [11:28<3:28:41, 11.76s/it]
6%|▌ | 69/1133 [11:38<3:19:14, 11.24s/it]
6%|▌ | 70/1133 [11:45<2:53:15, 9.78s/it]
6%|▋ | 71/1133 [11:47<2:14:31, 7.60s/it]
6%|▋ | 72/1133 [11:51<1:55:33, 6.54s/it]
6%|▋ | 73/1133 [11:55<1:39:35, 5.64s/it]
7%|▋ | 74/1133 [11:57<1:21:40, 4.63s/it]
7%|▋ | 75/1133 [12:02<1:21:15, 4.61s/it]
7%|▋ | 76/1133 [12:06<1:21:02, 4.60s/it]
7%|▋ | 77/1133 [12:15<1:40:14, 5.70s/it]
7%|▋ | 78/1133 [12:18<1:28:46, 5.05s/it]
7%|▋ | 79/1133 [12:28<1:55:54, 6.60s/it]
7%|▋ | 80/1133 [12:32<1:39:43, 5.68s/it]
7%|▋ | 81/1133 [12:33<1:17:41, 4.43s/it]
7%|▋ | 82/1133 [12:36<1:07:35, 3.86s/it]
7%|▋ | 83/1133 [12:49<1:57:46, 6.73s/it]
7%|▋ | 84/1133 [12:51<1:32:56, 5.32s/it]
8%|▊ | 85/1133 [12:53<1:12:56, 4.18s/it]
8%|▊ | 86/1133 [12:57<1:14:57, 4.30s/it]
8%|▊ | 87/1133 [13:03<1:20:27, 4.61s/it]
8%|▊ | 88/1133 [13:12<1:44:08, 5.98s/it]
8%|▊ | 89/1133 [13:16<1:35:19, 5.48s/it]
8%|▊ | 90/1133 [13:28<2:09:29, 7.45s/it]
8%|▊ | 91/1133 [13:32<1:49:07, 6.28s/it]
8%|▊ | 92/1133 [13:37<1:42:48, 5.93s/it]
8%|▊ | 93/1133 [13:45<1:55:12, 6.65s/it]
8%|▊ | 94/1133 [13:51<1:49:39, 6.33s/it]
8%|▊ | 95/1133 [14:04<2:23:50, 8.31s/it]
8%|▊ | 96/1133 [14:14<2:34:53, 8.96s/it]
9%|▊ | 97/1133 [14:18<2:09:20, 7.49s/it]
9%|▊ | 98/1133 [14:22<1:50:06, 6.38s/it]
9%|▊ | 99/1133 [14:33<2:12:30, 7.69s/it]
9%|▉ | 100/1133 [14:36<1:46:59, 6.21s/it]
9%|▉ | 101/1133 [14:48<2:20:49, 8.19s/it]
9%|▉ | 102/1133 [15:04<2:56:52, 10.29s/it]
9%|▉ | 103/1133 [15:09<2:31:14, 8.81s/it]
9%|▉ | 104/1133 [15:11<1:54:51, 6.70s/it]
9%|▉ | 105/1133 [15:21<2:13:09, 7.77s/it]
9%|▉ | 106/1133 [16:07<5:26:42, 19.09s/it]
9%|▉ | 107/1133 [16:21<5:03:43, 17.76s/it]
10%|▉ | 108/1133 [16:26<3:57:10, 13.88s/it]
10%|▉ | 109/1133 [16:33<3:19:54, 11.71s/it]
10%|▉ | 110/1133 [16:48<3:39:24, 12.87s/it]
10%|▉ | 111/1133 [16:59<3:27:16, 12.17s/it]
10%|▉ | 112/1133 [17:21<4:18:39, 15.20s/it]
10%|▉ | 113/1133 [17:41<4:42:45, 16.63s/it]
10%|█ | 114/1133 [17:46<3:43:40, 13.17s/it]
10%|█ | 115/1133 [17:49<2:53:09, 10.21s/it]
10%|█ | 116/1133 [17:54<2:23:00, 8.44s/it]
10%|█ | 117/1133 [18:07<2:44:46, 9.73s/it]
10%|█ | 118/1133 [18:12<2:21:03, 8.34s/it]
11%|█ | 119/1133 [18:21<2:27:00, 8.70s/it]
11%|█ | 120/1133 [18:24<1:58:10, 7.00s/it]
11%|█ | 121/1133 [18:28<1:44:27, 6.19s/it]
11%|█ | 122/1133 [18:36<1:51:49, 6.64s/it]
11%|█ | 123/1133 [18:40<1:37:22, 5.78s/it]
11%|█ | 124/1133 [18:47<1:41:39, 6.05s/it]
11%|█ | 125/1133 [18:59<2:15:24, 8.06s/it]
11%|█ | 126/1133 [19:06<2:09:30, 7.72s/it]
11%|█ | 127/1133 [19:23<2:53:59, 10.38s/it]
11%|█▏ | 128/1133 [19:28<2:29:49, 8.95s/it]
11%|█▏ | 129/1133 [19:34<2:11:39, 7.87s/it]
11%|█▏ | 130/1133 [19:36<1:43:26, 6.19s/it]
12%|█▏ | 131/1133 [20:18<4:40:30, 16.80s/it]
12%|█▏ | 132/1133 [20:25<3:50:41, 13.83s/it]
12%|█▏ | 133/1133 [20:31<3:11:52, 11.51s/it]
12%|█▏ | 134/1133 [20:48<3:41:17, 13.29s/it]
12%|█▏ | 135/1133 [21:15<4:49:40, 17.42s/it]
12%|█▏ | 136/1133 [21:20<3:46:35, 13.64s/it]
12%|█▏ | 137/1133 [21:26<3:10:20, 11.47s/it]
12%|█▏ | 138/1133 [21:30<2:33:14, 9.24s/it]
12%|█▏ | 139/1133 [21:34<2:03:30, 7.46s/it]
12%|█▏ | 140/1133 [21:41<2:02:00, 7.37s/it]
12%|█▏ | 141/1133 [21:46<1:50:32, 6.69s/it]
13%|█▎ | 142/1133 [21:49<1:32:18, 5.59s/it]
13%|█▎ | 143/1133 [21:58<1:51:28, 6.76s/it]
13%|█▎ | 144/1133 [22:03<1:41:48, 6.18s/it]
13%|█▎ | 145/1133 [22:07<1:31:11, 5.54s/it]
13%|█▎ | 146/1133 [22:12<1:26:19, 5.25s/it]
13%|█▎ | 147/1133 [22:18<1:29:18, 5.43s/it]
13%|█▎ | 148/1133 [22:19<1:09:53, 4.26s/it]
13%|█▎ | 149/1133 [22:25<1:17:41, 4.74s/it]
13%|█▎ | 150/1133 [22:30<1:16:48, 4.69s/it]
13%|█▎ | 151/1133 [22:38<1:36:21, 5.89s/it]
13%|█▎ | 152/1133 [22:44<1:34:53, 5.80s/it]
14%|█▎ | 153/1133 [22:47<1:22:28, 5.05s/it]
14%|█▎ | 154/1133 [22:58<1:50:36, 6.78s/it]
14%|█▎ | 155/1133 [23:03<1:43:31, 6.35s/it]
14%|█▍ | 156/1133 [23:11<1:47:10, 6.58s/it]
14%|█▍ | 157/1133 [23:23<2:15:33, 8.33s/it]
14%|█▍ | 158/1133 [23:33<2:21:09, 8.69s/it]
14%|█▍ | 159/1133 [23:39<2:12:07, 8.14s/it]
14%|█▍ | 160/1133 [23:45<1:58:23, 7.30s/it]
14%|█▍ | 161/1133 [23:47<1:35:01, 5.87s/it]
14%|█▍ | 162/1133 [23:52<1:27:24, 5.40s/it]
14%|█▍ | 163/1133 [23:58<1:34:41, 5.86s/it]
14%|█▍ | 164/1133 [24:03<1:25:49, 5.31s/it]
15%|█▍ | 165/1133 [24:08<1:24:42, 5.25s/it]
15%|█▍ | 166/1133 [24:18<1:49:22, 6.79s/it]
15%|█▍ | 167/1133 [24:24<1:46:03, 6.59s/it]
15%|█▍ | 168/1133 [25:09<4:49:01, 17.97s/it]
15%|█▍ | 169/1133 [25:35<5:30:59, 20.60s/it]
15%|█▌ | 170/1133 [25:41<4:17:12, 16.03s/it]
15%|█▌ | 171/1133 [25:43<3:09:33, 11.82s/it]
15%|█▌ | 172/1133 [25:53<3:02:51, 11.42s/it]
15%|█▌ | 173/1133 [25:57<2:27:19, 9.21s/it]
15%|█▌ | 174/1133 [26:00<1:53:53, 7.13s/it]
15%|█▌ | 175/1133 [26:06<1:49:01, 6.83s/it]
16%|█▌ | 176/1133 [26:09<1:33:09, 5.84s/it]
16%|█▌ | 177/1133 [26:15<1:31:54, 5.77s/it]
16%|█▌ | 178/1133 [26:38<2:56:55, 11.12s/it]
16%|█▌ | 179/1133 [26:44<2:29:10, 9.38s/it]
16%|█▌ | 180/1133 [26:56<2:40:34, 10.11s/it]
16%|█▌ | 181/1133 [27:01<2:20:11, 8.84s/it]
16%|█▌ | 182/1133 [27:15<2:41:54, 10.21s/it]
16%|█▌ | 183/1133 [27:21<2:23:34, 9.07s/it]
16%|█▌ | 184/1133 [27:26<2:04:29, 7.87s/it]
16%|█▋ | 185/1133 [27:30<1:46:15, 6.73s/it]
16%|█▋ | 186/1133 [27:47<2:33:49, 9.75s/it]
17%|█▋ | 187/1133 [28:01<2:53:07, 10.98s/it]
17%|█▋ | 188/1133 [28:14<3:03:19, 11.64s/it]
17%|█▋ | 189/1133 [28:19<2:31:00, 9.60s/it]
17%|█▋ | 190/1133 [28:25<2:12:01, 8.40s/it]
17%|█▋ | 191/1133 [28:32<2:04:48, 7.95s/it]
17%|█▋ | 192/1133 [28:41<2:12:37, 8.46s/it]
17%|█▋ | 193/1133 [28:52<2:23:45, 9.18s/it]
17%|█▋ | 194/1133 [28:56<1:57:12, 7.49s/it]
17%|█▋ | 195/1133 [28:59<1:36:10, 6.15s/it]
17%|█▋ | 196/1133 [29:01<1:20:15, 5.14s/it]
17%|█▋ | 197/1133 [29:11<1:42:43, 6.58s/it]
17%|█▋ | 198/1133 [29:15<1:28:21, 5.67s/it]
18%|█▊ | 199/1133 [29:30<2:11:05, 8.42s/it]
18%|█▊ | 200/1133 [29:38<2:08:18, 8.25s/it]
18%|█▊ | 201/1133 [29:45<2:01:57, 7.85s/it]
18%|█▊ | 202/1133 [29:46<1:32:18, 5.95s/it]
18%|█▊ | 203/1133 [29:48<1:13:55, 4.77s/it]
18%|█▊ | 204/1133 [30:04<2:08:05, 8.27s/it]
18%|█▊ | 205/1133 [30:06<1:36:34, 6.24s/it]
18%|█▊ | 206/1133 [30:10<1:27:29, 5.66s/it]
18%|█▊ | 207/1133 [30:17<1:32:02, 5.96s/it]
18%|█▊ | 208/1133 [30:29<2:00:31, 7.82s/it]
18%|█▊ | 209/1133 [30:54<3:21:26, 13.08s/it]
19%|█▊ | 210/1133 [31:06<3:11:59, 12.48s/it]
19%|█▊ | 211/1133 [31:16<3:00:27, 11.74s/it]
19%|█▊ | 212/1133 [31:26<2:56:19, 11.49s/it]
19%|█▉ | 213/1133 [31:31<2:21:58, 9.26s/it]
19%|█▉ | 214/1133 [31:32<1:47:22, 7.01s/it]
19%|█▉ | 215/1133 [31:38<1:39:38, 6.51s/it]
19%|█▉ | 216/1133 [32:10<3:36:11, 14.15s/it]
19%|█▉ | 217/1133 [32:13<2:45:03, 10.81s/it]
19%|█▉ | 218/1133 [32:16<2:11:34, 8.63s/it]
19%|█▉ | 219/1133 [32:20<1:49:21, 7.18s/it]
19%|█▉ | 220/1133 [32:26<1:43:17, 6.79s/it]
20%|█▉ | 221/1133 [32:46<2:44:38, 10.83s/it]
20%|█▉ | 222/1133 [32:52<2:21:49, 9.34s/it]
20%|█▉ | 223/1133 [33:03<2:31:11, 9.97s/it]
20%|█▉ | 224/1133 [33:06<1:58:20, 7.81s/it]
20%|█▉ | 225/1133 [33:48<4:32:58, 18.04s/it]
20%|█▉ | 226/1133 [34:08<4:40:01, 18.52s/it]
20%|██ | 227/1133 [34:14<3:45:52, 14.96s/it]
20%|██ | 228/1133 [34:20<3:05:36, 12.31s/it]
20%|██ | 229/1133 [34:34<3:10:18, 12.63s/it]
20%|██ | 230/1133 [34:43<2:55:26, 11.66s/it]
20%|██ | 231/1133 [34:53<2:45:19, 11.00s/it]
20%|██ | 232/1133 [34:59<2:25:33, 9.69s/it]
21%|██ | 233/1133 [35:05<2:07:09, 8.48s/it]
21%|██ | 234/1133 [35:12<2:02:14, 8.16s/it]
21%|██ | 235/1133 [35:14<1:33:23, 6.24s/it]
21%|██ | 236/1133 [35:26<1:58:07, 7.90s/it]
21%|██ | 237/1133 [35:50<3:08:52, 12.65s/it]
21%|██ | 238/1133 [35:57<2:43:59, 10.99s/it]
21%|██ | 239/1133 [36:06<2:33:56, 10.33s/it]
21%|██ | 240/1133 [36:12<2:16:11, 9.15s/it]
21%|██▏ | 241/1133 [36:14<1:43:05, 6.93s/it]
21%|██▏ | 242/1133 [36:17<1:27:53, 5.92s/it]
21%|██▏ | 243/1133 [36:24<1:29:56, 6.06s/it]
22%|██▏ | 244/1133 [36:25<1:10:44, 4.78s/it]
22%|██▏ | 245/1133 [36:33<1:20:49, 5.46s/it]
22%|██▏ | 246/1133 [36:41<1:32:52, 6.28s/it]
22%|██▏ | 247/1133 [36:44<1:18:22, 5.31s/it]
22%|██▏ | 248/1133 [36:50<1:24:11, 5.71s/it]
22%|██▏ | 249/1133 [36:53<1:12:17, 4.91s/it]
22%|██▏ | 250/1133 [37:00<1:19:50, 5.43s/it]
22%|██▏ | 251/1133 [37:27<2:53:56, 11.83s/it]
22%|██▏ | 252/1133 [37:31<2:19:30, 9.50s/it]
22%|██▏ | 253/1133 [37:50<3:00:25, 12.30s/it]
22%|██▏ | 254/1133 [38:02<3:01:32, 12.39s/it]
23%|██▎ | 255/1133 [38:11<2:44:56, 11.27s/it]
23%|██▎ | 256/1133 [38:22<2:44:23, 11.25s/it]
23%|██▎ | 257/1133 [38:52<4:06:29, 16.88s/it]
23%|██▎ | 258/1133 [39:03<3:41:23, 15.18s/it]
23%|██▎ | 259/1133 [39:15<3:24:12, 14.02s/it]
23%|██▎ | 260/1133 [39:44<4:31:07, 18.63s/it]
23%|██▎ | 261/1133 [40:07<4:49:11, 19.90s/it]
23%|██▎ | 262/1133 [40:14<3:50:23, 15.87s/it]
23%|██▎ | 263/1133 [40:41<4:42:00, 19.45s/it]
23%|██▎ | 264/1133 [40:48<3:48:16, 15.76s/it]
23%|██▎ | 265/1133 [41:17<4:44:21, 19.66s/it]
23%|██▎ | 266/1133 [41:29<4:11:08, 17.38s/it]
24%|██▎ | 267/1133 [41:42<3:49:36, 15.91s/it]
24%|██▎ | 268/1133 [42:12<4:52:42, 20.30s/it]
24%|██▎ | 269/1133 [42:21<4:01:38, 16.78s/it]
24%|██▍ | 270/1133 [42:27<3:14:12, 13.50s/it]
24%|██▍ | 271/1133 [42:31<2:34:22, 10.75s/it]
24%|██▍ | 272/1133 [42:38<2:18:06, 9.62s/it]
24%|██▍ | 273/1133 [42:41<1:48:31, 7.57s/it]
24%|██▍ | 274/1133 [42:49<1:49:07, 7.62s/it]
24%|██▍ | 275/1133 [42:52<1:31:32, 6.40s/it]
24%|██▍ | 276/1133 [42:56<1:22:27, 5.77s/it]
24%|██▍ | 277/1133 [43:03<1:23:55, 5.88s/it]
25%|██▍ | 278/1133 [43:11<1:34:59, 6.67s/it]
25%|██▍ | 279/1133 [43:20<1:44:35, 7.35s/it]
25%|██▍ | 280/1133 [43:28<1:48:32, 7.64s/it]
25%|██▍ | 281/1133 [43:37<1:54:06, 8.04s/it]
25%|██▍ | 282/1133 [43:40<1:32:41, 6.54s/it]
25%|██▍ | 283/1133 [43:50<1:46:00, 7.48s/it]
25%|██▌ | 284/1133 [44:23<3:33:00, 15.05s/it]
25%|██▌ | 285/1133 [44:29<2:53:49, 12.30s/it]
25%|██▌ | 286/1133 [44:34<2:26:17, 10.36s/it]
25%|██▌ | 287/1133 [44:58<3:21:28, 14.29s/it]
25%|██▌ | 288/1133 [45:04<2:46:47, 11.84s/it]
26%|██▌ | 289/1133 [45:08<2:12:40, 9.43s/it]
26%|██▌ | 290/1133 [45:16<2:08:25, 9.14s/it]
26%|██▌ | 291/1133 [45:28<2:17:21, 9.79s/it]
26%|██▌ | 292/1133 [45:32<1:55:14, 8.22s/it]
26%|██▌ | 293/1133 [45:51<2:38:56, 11.35s/it]
26%|██▌ | 294/1133 [45:55<2:10:14, 9.31s/it]
26%|██▌ | 295/1133 [46:05<2:13:12, 9.54s/it]
26%|██▌ | 296/1133 [46:14<2:10:49, 9.38s/it]
26%|██▌ | 297/1133 [46:19<1:49:29, 7.86s/it]
26%|██▋ | 298/1133 [46:23<1:33:27, 6.72s/it]
26%|██▋ | 299/1133 [46:25<1:14:48, 5.38s/it]
26%|██▋ | 300/1133 [46:28<1:05:59, 4.75s/it]
27%|██▋ | 301/1133 [46:30<54:31, 3.93s/it]
27%|██▋ | 302/1133 [46:33<50:44, 3.66s/it]
27%|██▋ | 303/1133 [46:36<47:00, 3.40s/it]
27%|██▋ | 304/1133 [46:44<1:06:29, 4.81s/it]
27%|██▋ | 305/1133 [46:54<1:25:45, 6.21s/it]
27%|██▋ | 306/1133 [47:03<1:39:33, 7.22s/it]
27%|██▋ | 307/1133 [47:07<1:24:13, 6.12s/it]
27%|██▋ | 308/1133 [47:14<1:27:13, 6.34s/it]
27%|██▋ | 309/1133 [47:20<1:28:23, 6.44s/it]
27%|██▋ | 310/1133 [47:23<1:13:13, 5.34s/it]
27%|██▋ | 311/1133 [47:43<2:12:52, 9.70s/it]
28%|██▊ | 312/1133 [47:53<2:12:20, 9.67s/it]
28%|██▊ | 313/1133 [48:01<2:08:31, 9.40s/it]
28%|██▊ | 314/1133 [48:21<2:48:51, 12.37s/it]
28%|██▊ | 315/1133 [48:42<3:23:27, 14.92s/it]
28%|██▊ | 316/1133 [48:47<2:43:02, 11.97s/it]
28%|██▊ | 317/1133 [48:53<2:21:06, 10.38s/it]
28%|██▊ | 318/1133 [48:55<1:46:53, 7.87s/it]
28%|██▊ | 319/1133 [49:13<2:27:51, 10.90s/it]
28%|██▊ | 320/1133 [49:21<2:16:13, 10.05s/it]
28%|██▊ | 321/1133 [49:25<1:50:42, 8.18s/it]
28%|██▊ | 322/1133 [49:29<1:33:51, 6.94s/it]
29%|██▊ | 323/1133 [49:35<1:28:24, 6.55s/it]
29%|██▊ | 324/1133 [49:44<1:38:59, 7.34s/it]
29%|██▊ | 325/1133 [49:49<1:30:51, 6.75s/it]
29%|██▉ | 326/1133 [49:53<1:15:46, 5.63s/it]
29%|██▉ | 327/1133 [50:11<2:06:01, 9.38s/it]
29%|██▉ | 328/1133 [50:33<2:56:11, 13.13s/it]
29%|██▉ | 329/1133 [50:43<2:45:39, 12.36s/it]
29%|██▉ | 330/1133 [50:46<2:07:58, 9.56s/it]
29%|██▉ | 331/1133 [50:52<1:52:02, 8.38s/it]
29%|██▉ | 332/1133 [50:57<1:38:39, 7.39s/it]
29%|██▉ | 333/1133 [51:02<1:28:19, 6.62s/it]
29%|██▉ | 334/1133 [51:21<2:17:33, 10.33s/it]
30%|██▉ | 335/1133 [51:26<1:58:38, 8.92s/it]
30%|██▉ | 336/1133 [51:32<1:44:19, 7.85s/it]
30%|██▉ | 337/1133 [51:36<1:30:05, 6.79s/it]
30%|██▉ | 338/1133 [51:46<1:44:28, 7.88s/it]
30%|██▉ | 339/1133 [51:58<1:59:10, 9.01s/it]
30%|███ | 340/1133 [52:03<1:43:33, 7.84s/it]
30%|███ | 341/1133 [52:13<1:51:49, 8.47s/it]
30%|███ | 342/1133 [52:18<1:37:16, 7.38s/it]
30%|███ | 343/1133 [52:21<1:19:58, 6.07s/it]
30%|███ | 344/1133 [52:33<1:42:10, 7.77s/it]
30%|███ | 345/1133 [52:41<1:42:56, 7.84s/it]
31%|███ | 346/1133 [52:47<1:36:59, 7.39s/it]
31%|███ | 347/1133 [52:50<1:17:43, 5.93s/it]
31%|███ | 348/1133 [52:59<1:30:03, 6.88s/it]
31%|███ | 349/1133 [52:59<1:05:55, 5.04s/it]
31%|███ | 350/1133 [53:11<1:31:51, 7.04s/it]
31%|███ | 351/1133 [53:14<1:15:06, 5.76s/it]
31%|███ | 352/1133 [53:20<1:15:27, 5.80s/it]
31%|███ | 353/1133 [53:34<1:48:08, 8.32s/it]
31%|███ | 354/1133 [53:44<1:56:23, 8.96s/it]
31%|███▏ | 355/1133 [53:48<1:35:09, 7.34s/it]
31%|███▏ | 356/1133 [53:53<1:24:16, 6.51s/it]
32%|███▏ | 357/1133 [54:03<1:39:55, 7.73s/it]
32%|███▏ | 358/1133 [54:12<1:43:59, 8.05s/it]
32%|███▏ | 359/1133 [54:15<1:25:24, 6.62s/it]
32%|███▏ | 360/1133 [54:26<1:41:09, 7.85s/it]
32%|███▏ | 361/1133 [54:34<1:42:53, 8.00s/it]
32%|███▏ | 362/1133 [54:38<1:27:35, 6.82s/it]
32%|███▏ | 363/1133 [54:41<1:10:57, 5.53s/it]
32%|███▏ | 364/1133 [54:44<1:01:14, 4.78s/it]
32%|███▏ | 365/1133 [55:03<1:55:27, 9.02s/it]
32%|███▏ | 366/1133 [55:06<1:33:19, 7.30s/it]
32%|███▏ | 367/1133 [55:17<1:45:35, 8.27s/it]
32%|███▏ | 368/1133 [55:22<1:34:13, 7.39s/it]
33%|███▎ | 369/1133 [55:27<1:23:19, 6.54s/it]
33%|███▎ | 370/1133 [55:29<1:08:50, 5.41s/it]
33%|███▎ | 371/1133 [55:31<52:55, 4.17s/it]
33%|███▎ | 372/1133 [55:57<2:19:10, 10.97s/it]
33%|███▎ | 373/1133 [56:06<2:09:35, 10.23s/it]
33%|███▎ | 374/1133 [56:09<1:41:07, 7.99s/it]
33%|███▎ | 375/1133 [56:11<1:20:15, 6.35s/it]
33%|███▎ | 376/1133 [56:17<1:19:13, 6.28s/it]
33%|███▎ | 377/1133 [56:22<1:12:39, 5.77s/it]
33%|███▎ | 378/1133 [56:29<1:17:52, 6.19s/it]
33%|███▎ | 379/1133 [56:33<1:09:44, 5.55s/it]
34%|███▎ | 380/1133 [56:37<1:03:04, 5.03s/it]
34%|███▎ | 381/1133 [56:54<1:48:34, 8.66s/it]
34%|███▎ | 382/1133 [57:01<1:41:45, 8.13s/it]
34%|███▍ | 383/1133 [57:12<1:52:07, 8.97s/it]
34%|███▍ | 384/1133 [57:19<1:46:11, 8.51s/it]
34%|███▍ | 385/1133 [57:40<2:30:00, 12.03s/it]
34%|███▍ | 386/1133 [58:14<3:54:49, 18.86s/it]
34%|███▍ | 387/1133 [58:18<2:59:16, 14.42s/it]
34%|███▍ | 388/1133 [58:41<3:30:05, 16.92s/it]
34%|███▍ | 389/1133 [1:00:28<9:05:03, 43.96s/it]
34%|███▍ | 390/1133 [1:00:34<6:43:44, 32.60s/it]
35%|███▍ | 391/1133 [1:00:38<4:57:19, 24.04s/it]
35%|███▍ | 392/1133 [1:00:49<4:05:26, 19.87s/it]
35%|███▍ | 393/1133 [1:01:43<6:11:18, 30.11s/it]
35%|███▍ | 394/1133 [1:01:48<4:41:11, 22.83s/it]
35%|███▍ | 395/1133 [1:02:05<4:17:56, 20.97s/it]
35%|███▍ | 396/1133 [1:02:11<3:22:51, 16.52s/it]
35%|███▌ | 397/1133 [1:02:16<2:38:38, 12.93s/it]
35%|███▌ | 398/1133 [1:02:26<2:30:20, 12.27s/it]
35%|███▌ | 399/1133 [1:02:32<2:03:46, 10.12s/it]
35%|███▌ | 400/1133 [1:02:39<1:54:04, 9.34s/it]
35%|███▌ | 401/1133 [1:02:42<1:31:45, 7.52s/it]
35%|███▌ | 402/1133 [1:02:48<1:23:36, 6.86s/it]
36%|███▌ | 403/1133 [1:02:55<1:25:23, 7.02s/it]
36%|███▌ | 404/1133 [1:03:01<1:20:08, 6.60s/it]
36%|███▌ | 405/1133 [1:03:08<1:22:04, 6.76s/it]
36%|███▌ | 406/1133 [1:03:12<1:12:06, 5.95s/it]
36%|███▌ | 407/1133 [1:03:17<1:09:44, 5.76s/it]
36%|███▌ | 408/1133 [1:03:21<1:03:26, 5.25s/it]
36%|███▌ | 409/1133 [1:03:30<1:17:51, 6.45s/it]
36%|███▌ | 410/1133 [1:03:36<1:13:44, 6.12s/it]
36%|███▋ | 411/1133 [1:03:53<1:52:56, 9.39s/it]
36%|███▋ | 412/1133 [1:04:03<1:54:37, 9.54s/it]
36%|███▋ | 413/1133 [1:04:11<1:51:39, 9.31s/it]
37%|███▋ | 414/1133 [1:04:13<1:23:28, 6.97s/it]
37%|███▋ | 415/1133 [1:04:25<1:41:16, 8.46s/it]
37%|███▋ | 416/1133 [1:04:39<2:01:48, 10.19s/it]
37%|███▋ | 417/1133 [1:04:42<1:35:04, 7.97s/it]
37%|███▋ | 418/1133 [1:04:47<1:23:40, 7.02s/it]
37%|███▋ | 419/1133 [1:04:57<1:34:29, 7.94s/it]
37%|███▋ | 420/1133 [1:04:58<1:08:44, 5.79s/it]
37%|███▋ | 421/1133 [1:05:06<1:16:42, 6.46s/it]
37%|███▋ | 422/1133 [1:05:15<1:27:06, 7.35s/it]
37%|███▋ | 423/1133 [1:05:21<1:22:36, 6.98s/it]
37%|███▋ | 424/1133 [1:05:31<1:32:28, 7.83s/it]
38%|███▊ | 425/1133 [1:05:41<1:41:29, 8.60s/it]
38%|███▊ | 426/1133 [1:05:50<1:42:04, 8.66s/it]
38%|███▊ | 427/1133 [1:05:55<1:28:23, 7.51s/it]
38%|███▊ | 428/1133 [1:06:03<1:31:17, 7.77s/it]
38%|███▊ | 429/1133 [1:06:08<1:20:57, 6.90s/it]
38%|███▊ | 430/1133 [1:06:21<1:40:58, 8.62s/it]
38%|███▊ | 431/1133 [1:06:25<1:23:55, 7.17s/it]
38%|███▊ | 432/1133 [1:06:34<1:30:26, 7.74s/it]
38%|███▊ | 433/1133 [1:06:39<1:20:04, 6.86s/it]
38%|███▊ | 434/1133 [1:06:51<1:38:26, 8.45s/it]
38%|███▊ | 435/1133 [1:07:11<2:18:19, 11.89s/it]
38%|███▊ | 436/1133 [1:07:26<2:31:49, 13.07s/it]
39%|███▊ | 437/1133 [1:07:36<2:19:53, 12.06s/it]
39%|███▊ | 438/1133 [1:07:58<2:53:00, 14.94s/it]
39%|███▊ | 439/1133 [1:08:05<2:25:48, 12.61s/it]
39%|███▉ | 440/1133 [1:08:08<1:50:39, 9.58s/it]
39%|███▉ | 441/1133 [1:08:11<1:29:37, 7.77s/it]
39%|███▉ | 442/1133 [1:08:17<1:21:59, 7.12s/it]
39%|███▉ | 443/1133 [1:08:20<1:07:49, 5.90s/it]
39%|███▉ | 444/1133 [1:08:26<1:10:23, 6.13s/it]
39%|███▉ | 445/1133 [1:08:32<1:07:35, 5.89s/it]
39%|███▉ | 446/1133 [1:08:50<1:48:39, 9.49s/it]
39%|███▉ | 447/1133 [1:08:54<1:31:42, 8.02s/it]
40%|███▉ | 448/1133 [1:09:02<1:30:55, 7.96s/it]
40%|███▉ | 449/1133 [1:09:12<1:38:55, 8.68s/it]
40%|███▉ | 450/1133 [1:09:24<1:48:18, 9.51s/it]
40%|███▉ | 451/1133 [1:09:27<1:25:10, 7.49s/it]
40%|███▉ | 452/1133 [1:09:37<1:34:12, 8.30s/it]
40%|███▉ | 453/1133 [1:09:41<1:19:38, 7.03s/it]
40%|████ | 454/1133 [1:09:46<1:12:01, 6.37s/it]
40%|████ | 455/1133 [1:09:51<1:06:42, 5.90s/it]
40%|████ | 456/1133 [1:10:02<1:26:57, 7.71s/it]
40%|████ | 457/1133 [1:10:08<1:19:48, 7.08s/it]
40%|████ | 458/1133 [1:10:23<1:46:53, 9.50s/it]
41%|████ | 459/1133 [1:10:30<1:36:15, 8.57s/it]
41%|████ | 460/1133 [1:10:32<1:16:36, 6.83s/it]
41%|████ | 461/1133 [1:10:47<1:41:25, 9.06s/it]
41%|████ | 462/1133 [1:10:55<1:40:22, 8.97s/it]
41%|████ | 463/1133 [1:10:58<1:19:27, 7.12s/it]
41%|████ | 464/1133 [1:11:07<1:23:43, 7.51s/it]
41%|████ | 465/1133 [1:11:14<1:21:43, 7.34s/it]
41%|████ | 466/1133 [1:11:34<2:06:49, 11.41s/it]
41%|████ | 467/1133 [1:11:38<1:39:37, 8.97s/it]
41%|████▏ | 468/1133 [1:11:40<1:18:01, 7.04s/it]
41%|████▏ | 469/1133 [1:11:53<1:37:25, 8.80s/it]
41%|████▏ | 470/1133 [1:12:01<1:32:59, 8.42s/it]
42%|████▏ | 471/1133 [1:12:11<1:37:25, 8.83s/it]
42%|████▏ | 472/1133 [1:12:22<1:46:19, 9.65s/it]
42%|████▏ | 473/1133 [1:12:26<1:28:32, 8.05s/it]
42%|████▏ | 474/1133 [1:12:30<1:13:36, 6.70s/it]
42%|████▏ | 475/1133 [1:12:36<1:10:44, 6.45s/it]
42%|████▏ | 476/1133 [1:12:46<1:24:33, 7.72s/it]
42%|████▏ | 477/1133 [1:12:57<1:32:16, 8.44s/it]
42%|████▏ | 478/1133 [1:12:59<1:12:45, 6.66s/it]
42%|████▏ | 479/1133 [1:13:07<1:16:15, 7.00s/it]
42%|████▏ | 480/1133 [1:13:42<2:48:16, 15.46s/it]
42%|████▏ | 481/1133 [1:13:45<2:06:38, 11.65s/it]
43%|████▎ | 482/1133 [1:13:53<1:53:27, 10.46s/it]
43%|████▎ | 483/1133 [1:13:56<1:29:10, 8.23s/it]
43%|████▎ | 484/1133 [1:14:03<1:26:09, 7.97s/it]
43%|████▎ | 485/1133 [1:14:19<1:51:22, 10.31s/it]
43%|████▎ | 486/1133 [1:14:22<1:29:19, 8.28s/it]
43%|████▎ | 487/1133 [1:14:39<1:55:28, 10.72s/it]
43%|████▎ | 488/1133 [1:14:50<1:56:32, 10.84s/it]
43%|████▎ | 489/1133 [1:14:54<1:33:42, 8.73s/it]
43%|████▎ | 490/1133 [1:14:56<1:12:46, 6.79s/it]
43%|████▎ | 491/1133 [1:15:04<1:17:36, 7.25s/it]
43%|████▎ | 492/1133 [1:15:13<1:22:35, 7.73s/it]
44%|████▎ | 493/1133 [1:15:17<1:09:04, 6.48s/it]
44%|████▎ | 494/1133 [1:15:18<53:54, 5.06s/it]
44%|████▎ | 495/1133 [1:15:23<51:25, 4.84s/it]
44%|████▍ | 496/1133 [1:15:32<1:07:09, 6.33s/it]
44%|████▍ | 497/1133 [1:15:40<1:10:28, 6.65s/it]
44%|████▍ | 498/1133 [1:15:47<1:11:10, 6.73s/it]
44%|████▍ | 499/1133 [1:15:58<1:25:11, 8.06s/it]
44%|████▍ | 500/1133 [1:16:11<1:40:32, 9.53s/it]
44%|████▍ | 501/1133 [1:16:31<2:14:59, 12.82s/it]
44%|████▍ | 502/1133 [1:16:37<1:52:49, 10.73s/it]
44%|████▍ | 503/1133 [1:16:50<1:57:42, 11.21s/it]
44%|████▍ | 504/1133 [1:16:58<1:47:33, 10.26s/it]
45%|████▍ | 505/1133 [1:17:01<1:26:18, 8.25s/it]
45%|████▍ | 506/1133 [1:17:32<2:36:18, 14.96s/it]
45%|████▍ | 507/1133 [1:17:47<2:37:26, 15.09s/it]
45%|████▍ | 508/1133 [1:18:19<3:28:01, 19.97s/it]
45%|████▍ | 509/1133 [1:18:29<2:58:56, 17.21s/it]
45%|████▌ | 510/1133 [1:18:32<2:13:42, 12.88s/it]
45%|████▌ | 511/1133 [1:18:36<1:45:17, 10.16s/it]
45%|████▌ | 512/1133 [1:18:38<1:21:25, 7.87s/it]
45%|████▌ | 513/1133 [1:18:57<1:54:53, 11.12s/it]
45%|████▌ | 514/1133 [1:19:04<1:40:52, 9.78s/it]
45%|████▌ | 515/1133 [1:19:15<1:46:30, 10.34s/it]
46%|████▌ | 516/1133 [1:19:25<1:42:59, 10.02s/it]
46%|████▌ | 517/1133 [1:19:30<1:28:28, 8.62s/it]
46%|████▌ | 518/1133 [1:19:33<1:11:56, 7.02s/it]
46%|████▌ | 519/1133 [1:19:58<2:05:25, 12.26s/it]
46%|████▌ | 520/1133 [1:20:07<1:55:32, 11.31s/it]
46%|████▌ | 521/1133 [1:20:16<1:50:03, 10.79s/it]
46%|████▌ | 522/1133 [1:20:18<1:20:45, 7.93s/it]
46%|████▌ | 523/1133 [1:20:28<1:27:24, 8.60s/it]
46%|████▌ | 524/1133 [1:20:44<1:49:16, 10.77s/it]
46%|████▋ | 525/1133 [1:20:50<1:34:53, 9.36s/it]
46%|████▋ | 526/1133 [1:20:55<1:21:42, 8.08s/it]
47%|████▋ | 527/1133 [1:20:56<1:00:55, 6.03s/it]
47%|████▋ | 528/1133 [1:20:58<49:26, 4.90s/it]
47%|████▋ | 529/1133 [1:21:21<1:41:41, 10.10s/it]
47%|████▋ | 530/1133 [1:21:24<1:20:13, 7.98s/it]
47%|████▋ | 531/1133 [1:21:31<1:16:47, 7.65s/it]
47%|████▋ | 532/1133 [1:21:32<58:11, 5.81s/it]
47%|████▋ | 533/1133 [1:21:40<1:02:57, 6.30s/it]
47%|████▋ | 534/1133 [1:21:43<54:36, 5.47s/it]
47%|████▋ | 535/1133 [1:21:48<52:34, 5.28s/it]
47%|████▋ | 536/1133 [1:22:05<1:28:30, 8.90s/it]
47%|████▋ | 537/1133 [1:22:11<1:20:04, 8.06s/it]
47%|████▋ | 538/1133 [1:22:24<1:32:13, 9.30s/it]
48%|████▊ | 539/1133 [1:22:31<1:25:45, 8.66s/it]
48%|████▊ | 540/1133 [1:22:34<1:08:55, 6.97s/it]
48%|████▊ | 541/1133 [1:23:11<2:39:56, 16.21s/it]
48%|████▊ | 542/1133 [1:23:16<2:05:16, 12.72s/it]
48%|████▊ | 543/1133 [1:23:19<1:37:14, 9.89s/it]
48%|████▊ | 544/1133 [1:23:30<1:39:20, 10.12s/it]
48%|████▊ | 545/1133 [1:23:37<1:29:52, 9.17s/it]
48%|████▊ | 546/1133 [1:23:45<1:26:02, 8.79s/it]
48%|████▊ | 547/1133 [1:23:50<1:16:33, 7.84s/it]
48%|████▊ | 548/1133 [1:23:54<1:03:50, 6.55s/it]
48%|████▊ | 549/1133 [1:24:01<1:04:48, 6.66s/it]
49%|████▊ | 550/1133 [1:24:07<1:03:11, 6.50s/it]
49%|████▊ | 551/1133 [1:24:17<1:13:08, 7.54s/it]
49%|████▊ | 552/1133 [1:24:19<56:14, 5.81s/it]
49%|████▉ | 553/1133 [1:24:29<1:08:43, 7.11s/it]
49%|████▉ | 554/1133 [1:24:33<58:18, 6.04s/it]
49%|████▉ | 555/1133 [1:24:36<49:30, 5.14s/it]
49%|████▉ | 556/1133 [1:24:39<45:33, 4.74s/it]
49%|████▉ | 557/1133 [1:24:58<1:26:49, 9.04s/it]
49%|████▉ | 558/1133 [1:25:05<1:19:03, 8.25s/it]
49%|████▉ | 559/1133 [1:25:16<1:27:02, 9.10s/it]
49%|████▉ | 560/1133 [1:25:24<1:25:06, 8.91s/it]
50%|████▉ | 561/1133 [1:25:46<2:00:08, 12.60s/it]
50%|████▉ | 562/1133 [1:25:51<1:38:25, 10.34s/it]
50%|████▉ | 563/1133 [1:26:11<2:06:57, 13.36s/it]
50%|████▉ | 564/1133 [1:26:18<1:47:37, 11.35s/it]
50%|████▉ | 565/1133 [1:26:34<2:00:08, 12.69s/it]
50%|████▉ | 566/1133 [1:26:39<1:39:47, 10.56s/it]
50%|█████ | 567/1133 [1:26:45<1:27:01, 9.23s/it]
50%|█████ | 568/1133 [1:26:47<1:05:47, 6.99s/it]
50%|█████ | 569/1133 [1:26:49<52:22, 5.57s/it]
50%|█████ | 570/1133 [1:26:56<56:02, 5.97s/it]
50%|█████ | 571/1133 [1:27:01<52:41, 5.63s/it]
50%|█████ | 572/1133 [1:27:02<40:21, 4.32s/it]
51%|█████ | 573/1133 [1:27:07<42:31, 4.56s/it]
51%|█████ | 574/1133 [1:27:20<1:03:39, 6.83s/it]
51%|█████ | 575/1133 [1:27:23<52:56, 5.69s/it]
51%|█████ | 576/1133 [1:27:31<1:01:05, 6.58s/it]
51%|█████ | 577/1133 [1:27:42<1:12:14, 7.80s/it]
51%|█████ | 578/1133 [1:27:54<1:23:39, 9.04s/it]
51%|█████ | 579/1133 [1:28:00<1:16:53, 8.33s/it]
51%|█████ | 580/1133 [1:28:12<1:25:20, 9.26s/it]
51%|█████▏ | 581/1133 [1:28:20<1:22:06, 8.92s/it]
51%|█████▏ | 582/1133 [1:28:27<1:17:09, 8.40s/it]
51%|█████▏ | 583/1133 [1:28:46<1:44:56, 11.45s/it]
52%|█████▏ | 584/1133 [1:28:58<1:46:20, 11.62s/it]
52%|█████▏ | 585/1133 [1:29:06<1:35:35, 10.47s/it]
52%|█████▏ | 586/1133 [1:29:12<1:25:40, 9.40s/it]
52%|█████▏ | 587/1133 [1:29:21<1:22:27, 9.06s/it]
52%|█████▏ | 588/1133 [1:29:25<1:10:05, 7.72s/it]
52%|█████▏ | 589/1133 [1:29:32<1:07:45, 7.47s/it]
52%|█████▏ | 590/1133 [1:29:35<55:35, 6.14s/it]
52%|█████▏ | 591/1133 [1:29:48<1:12:06, 7.98s/it]
52%|█████▏ | 592/1133 [1:29:51<58:35, 6.50s/it]
52%|█████▏ | 593/1133 [1:29:57<58:53, 6.54s/it]
52%|█████▏ | 594/1133 [1:30:00<49:19, 5.49s/it]
53%|█████▎ | 595/1133 [1:30:27<1:46:14, 11.85s/it]
53%|█████▎ | 596/1133 [1:30:52<2:22:25, 15.91s/it]
53%|█████▎ | 597/1133 [1:31:00<1:58:43, 13.29s/it]
53%|█████▎ | 598/1133 [1:31:03<1:31:44, 10.29s/it]
53%|█████▎ | 599/1133 [1:31:09<1:19:44, 8.96s/it]
53%|█████▎ | 600/1133 [1:31:21<1:29:38, 10.09s/it]
53%|█████▎ | 601/1133 [1:31:34<1:36:07, 10.84s/it]
53%|█████▎ | 602/1133 [1:31:39<1:19:19, 8.96s/it]
53%|█████▎ | 603/1133 [1:31:46<1:15:52, 8.59s/it]
53%|█████▎ | 604/1133 [1:31:53<1:11:16, 8.08s/it]
53%|█████▎ | 605/1133 [1:32:01<1:09:22, 7.88s/it]
53%|█████▎ | 606/1133 [1:32:05<59:50, 6.81s/it]
54%|█████▎ | 607/1133 [1:32:12<59:58, 6.84s/it]
54%|█████▎ | 608/1133 [1:32:18<57:58, 6.63s/it]
54%|█████▍ | 609/1133 [1:32:26<1:00:47, 6.96s/it]
54%|█████▍ | 610/1133 [1:32:30<53:43, 6.16s/it]
54%|█████▍ | 611/1133 [1:32:44<1:14:18, 8.54s/it]
54%|█████▍ | 612/1133 [1:32:52<1:12:40, 8.37s/it]
54%|█████▍ | 613/1133 [1:33:12<1:42:35, 11.84s/it]
54%|█████▍ | 614/1133 [1:33:19<1:30:52, 10.51s/it]
54%|█████▍ | 615/1133 [1:33:24<1:15:20, 8.73s/it]
54%|█████▍ | 616/1133 [1:33:32<1:12:42, 8.44s/it]
54%|█████▍ | 617/1133 [1:33:35<58:37, 6.82s/it]
55%|█████▍ | 618/1133 [1:33:37<45:29, 5.30s/it]
55%|█████▍ | 619/1133 [1:33:40<41:32, 4.85s/it]
55%|█████▍ | 620/1133 [1:34:23<2:19:17, 16.29s/it]
55%|█████▍ | 621/1133 [1:34:28<1:50:18, 12.93s/it]
55%|█████▍ | 622/1133 [1:34:42<1:51:10, 13.05s/it]
55%|█████▍ | 623/1133 [1:34:49<1:37:24, 11.46s/it]
55%|█████▌ | 624/1133 [1:34:52<1:15:07, 8.86s/it]
55%|█████▌ | 625/1133 [1:34:56<1:02:47, 7.42s/it]
55%|█████▌ | 626/1133 [1:35:02<57:26, 6.80s/it]
55%|█████▌ | 627/1133 [1:35:12<1:07:32, 8.01s/it]
55%|█████▌ | 628/1133 [1:35:21<1:09:52, 8.30s/it]
56%|█████▌ | 629/1133 [1:35:45<1:48:50, 12.96s/it]
56%|█████▌ | 630/1133 [1:35:48<1:22:23, 9.83s/it]
56%|█████▌ | 631/1133 [1:35:52<1:09:02, 8.25s/it]
56%|█████▌ | 632/1133 [1:35:56<56:27, 6.76s/it]
56%|█████▌ | 633/1133 [1:36:06<1:05:41, 7.88s/it]
56%|█████▌ | 634/1133 [1:36:09<52:11, 6.28s/it]
56%|█████▌ | 635/1133 [1:36:13<47:50, 5.76s/it]
56%|█████▌ | 636/1133 [1:36:15<38:25, 4.64s/it]
56%|█████▌ | 637/1133 [1:36:32<1:08:30, 8.29s/it]
56%|█████▋ | 638/1133 [1:36:46<1:22:14, 9.97s/it]
56%|█████▋ | 639/1133 [1:36:47<1:00:33, 7.36s/it]
56%|█████▋ | 640/1133 [1:36:51<51:39, 6.29s/it]
57%|█████▋ | 641/1133 [1:36:57<49:53, 6.09s/it]
57%|█████▋ | 642/1133 [1:37:18<1:26:43, 10.60s/it]
57%|█████▋ | 643/1133 [1:37:28<1:26:09, 10.55s/it]
57%|█████▋ | 644/1133 [1:37:37<1:22:30, 10.12s/it]
57%|█████▋ | 645/1133 [1:37:46<1:18:49, 9.69s/it]
57%|█████▋ | 646/1133 [1:37:51<1:06:47, 8.23s/it]
57%|█████▋ | 647/1133 [1:37:54<55:17, 6.83s/it]
57%|█████▋ | 648/1133 [1:38:03<59:26, 7.35s/it]
57%|█████▋ | 649/1133 [1:38:07<50:06, 6.21s/it]
57%|█████▋ | 650/1133 [1:38:34<1:42:05, 12.68s/it]
57%|█████▋ | 651/1133 [1:38:36<1:14:57, 9.33s/it]
58%|█████▊ | 652/1133 [1:38:40<1:01:28, 7.67s/it]
58%|█████▊ | 653/1133 [1:38:43<50:12, 6.28s/it]
58%|█████▊ | 654/1133 [1:39:06<1:31:48, 11.50s/it]
58%|█████▊ | 655/1133 [1:39:16<1:27:46, 11.02s/it]
58%|█████▊ | 656/1133 [1:39:18<1:05:31, 8.24s/it]
58%|█████▊ | 657/1133 [1:39:38<1:32:23, 11.65s/it]
58%|█████▊ | 658/1133 [1:39:51<1:36:38, 12.21s/it]
58%|█████▊ | 659/1133 [1:39:53<1:12:53, 9.23s/it]
58%|█████▊ | 660/1133 [1:39:55<54:29, 6.91s/it]
58%|█████▊ | 661/1133 [1:40:01<51:54, 6.60s/it]
58%|█████▊ | 662/1133 [1:40:08<53:10, 6.77s/it]
59%|█████▊ | 663/1133 [1:40:13<49:07, 6.27s/it]
59%|█████▊ | 664/1133 [1:40:19<48:41, 6.23s/it]
59%|█████▊ | 665/1133 [1:40:27<52:43, 6.76s/it]
59%|█████▉ | 666/1133 [1:40:38<1:01:33, 7.91s/it]
59%|█████▉ | 667/1133 [1:40:44<57:20, 7.38s/it]
59%|█████▉ | 668/1133 [1:40:50<54:19, 7.01s/it]
59%|█████▉ | 669/1133 [1:40:53<44:23, 5.74s/it]
59%|█████▉ | 670/1133 [1:41:01<50:58, 6.61s/it]
59%|█████▉ | 671/1133 [1:41:05<44:21, 5.76s/it]
59%|█████▉ | 672/1133 [1:41:09<40:18, 5.25s/it]
59%|█████▉ | 673/1133 [1:41:25<1:04:18, 8.39s/it]
59%|█████▉ | 674/1133 [1:41:34<1:04:37, 8.45s/it]
60%|█████▉ | 675/1133 [1:41:41<1:02:06, 8.14s/it]
60%|█████▉ | 676/1133 [1:41:46<55:29, 7.29s/it]
60%|█████▉ | 677/1133 [1:41:51<50:20, 6.62s/it]
60%|█████▉ | 678/1133 [1:41:57<47:54, 6.32s/it]
60%|█████▉ | 679/1133 [1:42:01<42:40, 5.64s/it]
60%|██████ | 680/1133 [1:42:06<41:19, 5.47s/it]
60%|██████ | 681/1133 [1:42:34<1:31:24, 12.13s/it]
60%|██████ | 682/1133 [1:42:38<1:13:35, 9.79s/it]
60%|██████ | 683/1133 [1:42:51<1:20:06, 10.68s/it]
60%|██████ | 684/1133 [1:42:54<1:02:10, 8.31s/it]
60%|██████ | 685/1133 [1:43:00<58:19, 7.81s/it]
61%|██████ | 686/1133 [1:43:02<44:40, 6.00s/it]
61%|██████ | 687/1133 [1:43:12<52:15, 7.03s/it]
61%|██████ | 688/1133 [1:43:14<42:06, 5.68s/it]
61%|██████ | 689/1133 [1:43:22<46:35, 6.30s/it]
61%|██████ | 690/1133 [1:43:25<39:48, 5.39s/it]
61%|██████ | 691/1133 [1:43:27<31:08, 4.23s/it]
61%|██████ | 692/1133 [1:43:33<35:49, 4.87s/it]
61%|██████ | 693/1133 [1:43:43<47:16, 6.45s/it]
61%|██████▏ | 694/1133 [1:43:53<55:30, 7.59s/it]
61%|██████▏ | 695/1133 [1:44:02<58:33, 8.02s/it]
61%|██████▏ | 696/1133 [1:44:09<56:00, 7.69s/it]
62%|██████▏ | 697/1133 [1:44:19<1:01:14, 8.43s/it]
62%|██████▏ | 698/1133 [1:44:37<1:21:57, 11.30s/it]
62%|██████▏ | 699/1133 [1:44:42<1:07:09, 9.28s/it]
62%|██████▏ | 700/1133 [1:44:51<1:07:08, 9.30s/it]
62%|██████▏ | 701/1133 [1:45:00<1:05:47, 9.14s/it]
62%|██████▏ | 702/1133 [1:45:35<2:01:07, 16.86s/it]
62%|██████▏ | 703/1133 [1:45:42<1:40:01, 13.96s/it]
62%|██████▏ | 704/1133 [1:45:46<1:18:35, 10.99s/it]
62%|██████▏ | 705/1133 [1:45:54<1:11:51, 10.07s/it]
62%|██████▏ | 706/1133 [1:46:09<1:22:19, 11.57s/it]
62%|██████▏ | 707/1133 [1:46:16<1:12:11, 10.17s/it]
62%|██████▏ | 708/1133 [1:46:28<1:14:37, 10.54s/it]
63%|██████▎ | 709/1133 [1:46:34<1:06:42, 9.44s/it]
63%|██████▎ | 710/1133 [1:46:41<1:00:04, 8.52s/it]
63%|██████▎ | 711/1133 [1:46:48<56:28, 8.03s/it]
63%|██████▎ | 712/1133 [1:46:58<1:00:16, 8.59s/it]
63%|██████▎ | 713/1133 [1:47:01<49:31, 7.08s/it]
63%|██████▎ | 714/1133 [1:47:06<45:46, 6.56s/it]
63%|██████▎ | 715/1133 [1:47:13<45:17, 6.50s/it]
63%|██████▎ | 716/1133 [1:47:18<41:42, 6.00s/it]
63%|██████▎ | 717/1133 [1:47:20<33:19, 4.81s/it]
63%|██████▎ | 718/1133 [1:47:25<34:56, 5.05s/it]
63%|██████▎ | 719/1133 [1:47:30<34:25, 4.99s/it]
64%|██████▎ | 720/1133 [1:47:37<38:47, 5.64s/it]
64%|██████▎ | 721/1133 [1:47:40<33:20, 4.86s/it]
64%|██████▎ | 722/1133 [1:47:47<37:29, 5.47s/it]
64%|██████▍ | 723/1133 [1:47:56<44:42, 6.54s/it]
64%|██████▍ | 724/1133 [1:48:09<56:30, 8.29s/it]
64%|██████▍ | 725/1133 [1:48:27<1:17:30, 11.40s/it]
64%|██████▍ | 726/1133 [1:48:35<1:09:14, 10.21s/it]
64%|██████▍ | 727/1133 [1:48:40<58:40, 8.67s/it]
64%|██████▍ | 728/1133 [1:48:56<1:14:46, 11.08s/it]
64%|██████▍ | 729/1133 [1:49:07<1:14:24, 11.05s/it]
64%|██████▍ | 730/1133 [1:49:10<56:31, 8.42s/it]
65%|██████▍ | 731/1133 [1:49:19<58:35, 8.74s/it]
65%|██████▍ | 732/1133 [1:49:23<48:01, 7.19s/it]
65%|██████▍ | 733/1133 [1:49:34<56:09, 8.42s/it]
65%|██████▍ | 734/1133 [1:49:38<47:48, 7.19s/it]
65%|██████▍ | 735/1133 [1:49:55<1:05:28, 9.87s/it]
65%|██████▍ | 736/1133 [1:50:04<1:04:16, 9.71s/it]
65%|██████▌ | 737/1133 [1:50:10<55:57, 8.48s/it]
65%|██████▌ | 738/1133 [1:50:22<1:04:05, 9.74s/it]
65%|██████▌ | 739/1133 [1:50:24<49:13, 7.50s/it]
65%|██████▌ | 740/1133 [1:50:31<47:57, 7.32s/it]
65%|██████▌ | 741/1133 [1:50:36<41:58, 6.42s/it]
65%|██████▌ | 742/1133 [1:50:41<40:16, 6.18s/it]
66%|██████▌ | 743/1133 [1:50:47<39:32, 6.08s/it]
66%|██████▌ | 744/1133 [1:50:53<39:00, 6.02s/it]
66%|██████▌ | 745/1133 [1:51:07<54:22, 8.41s/it]
66%|██████▌ | 746/1133 [1:51:21<1:05:00, 10.08s/it]
66%|██████▌ | 747/1133 [1:51:26<54:12, 8.43s/it]
66%|██████▌ | 748/1133 [1:51:42<1:10:28, 10.98s/it]
66%|██████▌ | 749/1133 [1:51:55<1:12:27, 11.32s/it]
66%|██████▌ | 750/1133 [1:52:02<1:04:26, 10.10s/it]
66%|██████▋ | 751/1133 [1:52:08<56:10, 8.82s/it]
66%|██████▋ | 752/1133 [1:52:14<50:52, 8.01s/it]
66%|██████▋ | 753/1133 [1:52:20<48:09, 7.60s/it]
67%|██████▋ | 754/1133 [1:52:43<1:15:58, 12.03s/it]
67%|██████▋ | 755/1133 [1:52:55<1:15:15, 11.95s/it]
67%|██████▋ | 756/1133 [1:52:59<1:01:37, 9.81s/it]
67%|██████▋ | 757/1133 [1:53:05<53:06, 8.47s/it]
67%|██████▋ | 758/1133 [1:53:23<1:10:45, 11.32s/it]
67%|██████▋ | 759/1133 [1:53:30<1:02:04, 9.96s/it]
67%|██████▋ | 760/1133 [1:53:32<47:05, 7.57s/it]
67%|██████▋ | 761/1133 [1:53:42<51:51, 8.37s/it]
67%|██████▋ | 762/1133 [1:53:44<40:53, 6.61s/it]
67%|██████▋ | 763/1133 [1:53:49<37:58, 6.16s/it]
67%|██████▋ | 764/1133 [1:53:55<37:21, 6.08s/it]
68%|██████▊ | 765/1133 [1:54:02<37:51, 6.17s/it]
68%|██████▊ | 766/1133 [1:54:15<51:46, 8.46s/it]
68%|██████▊ | 767/1133 [1:54:22<48:19, 7.92s/it]
68%|██████▊ | 768/1133 [1:54:42<1:09:19, 11.40s/it]
68%|██████▊ | 769/1133 [1:54:56<1:14:05, 12.21s/it]
68%|██████▊ | 770/1133 [1:55:00<1:00:01, 9.92s/it]
68%|██████▊ | 771/1133 [1:55:09<57:30, 9.53s/it]
68%|██████▊ | 772/1133 [1:55:19<59:03, 9.82s/it]
68%|██████▊ | 773/1133 [1:55:27<54:05, 9.02s/it]
68%|██████▊ | 774/1133 [1:55:33<49:15, 8.23s/it]
68%|██████▊ | 775/1133 [1:56:17<1:52:53, 18.92s/it]
68%|██████▊ | 776/1133 [1:56:21<1:25:34, 14.38s/it]
69%|██████▊ | 777/1133 [1:56:29<1:14:06, 12.49s/it]
69%|██████▊ | 778/1133 [1:56:33<58:55, 9.96s/it]
69%|██████▉ | 779/1133 [1:56:34<44:15, 7.50s/it]
69%|██████▉ | 780/1133 [1:56:40<40:45, 6.93s/it]
69%|██████▉ | 781/1133 [1:56:56<56:07, 9.57s/it]
69%|██████▉ | 782/1133 [1:56:58<43:36, 7.45s/it]
69%|██████▉ | 783/1133 [1:57:13<55:22, 9.49s/it]
69%|██████▉ | 784/1133 [1:57:19<49:49, 8.56s/it]
69%|██████▉ | 785/1133 [1:57:25<44:31, 7.68s/it]
69%|██████▉ | 786/1133 [1:57:29<38:59, 6.74s/it]
69%|██████▉ | 787/1133 [1:57:45<53:54, 9.35s/it]
70%|██████▉ | 788/1133 [1:57:49<45:30, 7.91s/it]
70%|██████▉ | 789/1133 [1:57:51<34:21, 5.99s/it]
70%|██████▉ | 790/1133 [1:58:09<55:13, 9.66s/it]
70%|██████▉ | 791/1133 [1:58:15<48:33, 8.52s/it]
70%|██████▉ | 792/1133 [1:58:24<50:19, 8.86s/it]
70%|██████▉ | 793/1133 [1:58:49<1:17:20, 13.65s/it]
70%|███████ | 794/1133 [1:58:51<57:23, 10.16s/it]
70%|███████ | 795/1133 [1:58:55<45:37, 8.10s/it]
70%|███████ | 796/1133 [1:58:57<35:39, 6.35s/it]
70%|███████ | 797/1133 [1:59:02<32:59, 5.89s/it]
70%|███████ | 798/1133 [1:59:05<28:07, 5.04s/it]
71%|███████ | 799/1133 [1:59:11<29:49, 5.36s/it]
71%|███████ | 800/1133 [1:59:16<29:44, 5.36s/it]
71%|███████ | 801/1133 [1:59:22<30:03, 5.43s/it]
71%|███████ | 802/1133 [1:59:30<34:40, 6.29s/it]
71%|███████ | 803/1133 [1:59:36<33:27, 6.08s/it]
71%|███████ | 804/1133 [1:59:51<47:51, 8.73s/it]
71%|███████ | 805/1133 [1:59:58<45:18, 8.29s/it]
71%|███████ | 806/1133 [2:00:08<48:40, 8.93s/it]
71%|███████ | 807/1133 [2:00:13<41:50, 7.70s/it]
71%|███████▏ | 808/1133 [2:00:18<37:03, 6.84s/it]
71%|███████▏ | 809/1133 [2:00:24<35:46, 6.63s/it]
71%|███████▏ | 810/1133 [2:00:27<29:27, 5.47s/it]
72%|███████▏ | 811/1133 [2:00:29<24:37, 4.59s/it]
72%|███████▏ | 812/1133 [2:00:39<33:25, 6.25s/it]
72%|███████▏ | 813/1133 [2:00:45<31:28, 5.90s/it]
72%|███████▏ | 814/1133 [2:00:47<25:58, 4.89s/it]
72%|███████▏ | 815/1133 [2:01:03<43:49, 8.27s/it]
72%|███████▏ | 816/1133 [2:01:11<42:44, 8.09s/it]
72%|███████▏ | 817/1133 [2:01:14<35:01, 6.65s/it]
72%|███████▏ | 818/1133 [2:01:20<34:04, 6.49s/it]
72%|███████▏ | 819/1133 [2:01:28<36:22, 6.95s/it]
72%|███████▏ | 820/1133 [2:01:46<53:41, 10.29s/it]
72%|███████▏ | 821/1133 [2:01:48<39:49, 7.66s/it]
73%|███████▎ | 822/1133 [2:01:52<34:04, 6.57s/it]
73%|███████▎ | 823/1133 [2:02:04<42:43, 8.27s/it]
73%|███████▎ | 824/1133 [2:02:10<38:05, 7.40s/it]
73%|███████▎ | 825/1133 [2:02:13<31:38, 6.16s/it]
73%|███████▎ | 826/1133 [2:02:25<40:19, 7.88s/it]
73%|███████▎ | 827/1133 [2:02:28<33:32, 6.58s/it]
73%|███████▎ | 828/1133 [2:02:31<27:15, 5.36s/it]
73%|███████▎ | 829/1133 [2:02:51<49:35, 9.79s/it]
73%|███████▎ | 830/1133 [2:03:03<53:19, 10.56s/it]
73%|███████▎ | 831/1133 [2:03:15<54:30, 10.83s/it]
73%|███████▎ | 832/1133 [2:03:20<45:18, 9.03s/it]
74%|███████▎ | 833/1133 [2:03:44<1:07:52, 13.57s/it]
74%|███████▎ | 834/1133 [2:04:07<1:21:50, 16.42s/it]
74%|███████▎ | 835/1133 [2:04:16<1:10:56, 14.28s/it]
74%|███████▍ | 836/1133 [2:04:27<1:05:15, 13.18s/it]
74%|███████▍ | 837/1133 [2:04:57<1:29:51, 18.21s/it]
74%|███████▍ | 838/1133 [2:05:15<1:29:34, 18.22s/it]
74%|███████▍ | 839/1133 [2:05:21<1:11:06, 14.51s/it]
74%|███████▍ | 840/1133 [2:05:31<1:04:48, 13.27s/it]
74%|███████▍ | 841/1133 [2:05:38<54:56, 11.29s/it]
74%|███████▍ | 842/1133 [2:05:51<56:52, 11.73s/it]
74%|███████▍ | 843/1133 [2:05:55<45:55, 9.50s/it]
74%|███████▍ | 844/1133 [2:06:07<50:04, 10.40s/it]
75%|███████▍ | 845/1133 [2:06:13<43:46, 9.12s/it]
75%|███████▍ | 846/1133 [2:06:23<44:35, 9.32s/it]
75%|███████▍ | 847/1133 [2:06:31<42:25, 8.90s/it]
75%|███████▍ | 848/1133 [2:06:42<45:41, 9.62s/it]
75%|███████▍ | 849/1133 [2:06:45<35:06, 7.42s/it]
75%|███████▌ | 850/1133 [2:06:56<40:06, 8.50s/it]
75%|███████▌ | 851/1133 [2:06:58<30:28, 6.48s/it]
75%|███████▌ | 852/1133 [2:07:01<26:14, 5.60s/it]
75%|███████▌ | 853/1133 [2:07:10<30:22, 6.51s/it]
75%|███████▌ | 854/1133 [2:07:16<30:05, 6.47s/it]
75%|███████▌ | 855/1133 [2:07:27<36:42, 7.92s/it]
76%|███████▌ | 856/1133 [2:07:42<45:58, 9.96s/it]
76%|███████▌ | 857/1133 [2:08:01<57:41, 12.54s/it]
76%|███████▌ | 858/1133 [2:08:07<48:20, 10.55s/it]
76%|███████▌ | 859/1133 [2:08:15<45:00, 9.86s/it]
76%|███████▌ | 860/1133 [2:08:19<37:39, 8.28s/it]
76%|███████▌ | 861/1133 [2:08:42<56:54, 12.55s/it]
76%|███████▌ | 862/1133 [2:08:52<52:52, 11.71s/it]
76%|███████▌ | 863/1133 [2:09:11<1:02:21, 13.86s/it]
76%|███████▋ | 864/1133 [2:09:17<51:41, 11.53s/it]
76%|███████▋ | 865/1133 [2:09:24<46:25, 10.39s/it]
76%|███████▋ | 866/1133 [2:09:40<52:56, 11.90s/it]
77%|███████▋ | 867/1133 [2:09:51<52:21, 11.81s/it]
77%|███████▋ | 868/1133 [2:09:56<43:15, 9.80s/it]
77%|███████▋ | 869/1133 [2:10:01<35:31, 8.07s/it]
77%|███████▋ | 870/1133 [2:10:19<48:25, 11.05s/it]
77%|███████▋ | 871/1133 [2:10:22<38:44, 8.87s/it]
77%|███████▋ | 872/1133 [2:10:32<39:13, 9.02s/it]
77%|███████▋ | 873/1133 [2:10:38<34:58, 8.07s/it]
77%|███████▋ | 874/1133 [2:10:42<29:59, 6.95s/it]
77%|███████▋ | 875/1133 [2:10:55<37:47, 8.79s/it]
77%|███████▋ | 876/1133 [2:11:21<59:55, 13.99s/it]
77%|███████▋ | 877/1133 [2:11:30<53:42, 12.59s/it]
77%|███████▋ | 878/1133 [2:11:39<48:04, 11.31s/it]
78%|███████▊ | 879/1133 [2:11:44<40:38, 9.60s/it]
78%|███████▊ | 880/1133 [2:11:49<34:26, 8.17s/it]
78%|███████▊ | 881/1133 [2:11:53<29:26, 7.01s/it]
78%|███████▊ | 882/1133 [2:12:05<35:16, 8.43s/it]
78%|███████▊ | 883/1133 [2:12:11<32:14, 7.74s/it]
78%|███████▊ | 884/1133 [2:12:21<33:52, 8.16s/it]
78%|███████▊ | 885/1133 [2:12:27<32:11, 7.79s/it]
78%|███████▊ | 886/1133 [2:12:31<26:49, 6.52s/it]
78%|███████▊ | 887/1133 [2:12:50<41:44, 10.18s/it]
78%|███████▊ | 888/1133 [2:12:53<33:27, 8.19s/it]
78%|███████▊ | 889/1133 [2:13:03<34:41, 8.53s/it]
79%|███████▊ | 890/1133 [2:13:09<31:57, 7.89s/it]
79%|███████▊ | 891/1133 [2:13:13<27:29, 6.81s/it]
79%|███████▊ | 892/1133 [2:13:30<39:22, 9.80s/it]
79%|███████▉ | 893/1133 [2:13:44<44:04, 11.02s/it]
79%|███████▉ | 894/1133 [2:13:46<32:49, 8.24s/it]
79%|███████▉ | 895/1133 [2:13:57<36:19, 9.16s/it]
79%|███████▉ | 896/1133 [2:14:06<36:35, 9.26s/it]
79%|███████▉ | 897/1133 [2:14:10<29:04, 7.39s/it]
79%|███████▉ | 898/1133 [2:14:15<27:12, 6.95s/it]
79%|███████▉ | 899/1133 [2:14:22<27:02, 6.93s/it]
79%|███████▉ | 900/1133 [2:14:31<28:47, 7.41s/it]
80%|███████▉ | 901/1133 [2:14:37<27:28, 7.11s/it]
80%|███████▉ | 902/1133 [2:14:43<25:37, 6.65s/it]
80%|███████▉ | 903/1133 [2:14:52<28:25, 7.42s/it]
80%|███████▉ | 904/1133 [2:15:21<53:28, 14.01s/it]
80%|███████▉ | 905/1133 [2:15:37<54:29, 14.34s/it]
80%|███████▉ | 906/1133 [2:15:40<41:42, 11.02s/it]
80%|████████ | 907/1133 [2:15:46<35:42, 9.48s/it]
80%|████████ | 908/1133 [2:15:54<33:56, 9.05s/it]
80%|████████ | 909/1133 [2:16:00<30:47, 8.25s/it]
80%|████████ | 910/1133 [2:16:05<26:33, 7.15s/it]
80%|████████ | 911/1133 [2:16:10<23:52, 6.45s/it]
80%|████████ | 912/1133 [2:16:15<23:06, 6.27s/it]
81%|████████ | 913/1133 [2:16:22<23:23, 6.38s/it]
81%|████████ | 914/1133 [2:16:28<22:44, 6.23s/it]
81%|████████ | 915/1133 [2:16:33<21:40, 5.97s/it]
81%|████████ | 916/1133 [2:16:45<27:20, 7.56s/it]
81%|████████ | 917/1133 [2:16:56<31:42, 8.81s/it]
81%|████████ | 918/1133 [2:17:10<37:02, 10.34s/it]
81%|████████ | 919/1133 [2:17:13<29:03, 8.14s/it]
81%|████████ | 920/1133 [2:17:16<23:11, 6.53s/it]
81%|████████▏ | 921/1133 [2:17:23<23:12, 6.57s/it]
81%|████████▏ | 922/1133 [2:17:26<19:54, 5.66s/it]
81%|████████▏ | 923/1133 [2:17:31<19:11, 5.48s/it]
82%|████████▏ | 924/1133 [2:17:36<17:53, 5.13s/it]
82%|████████▏ | 925/1133 [2:17:42<19:23, 5.59s/it]
82%|████████▏ | 926/1133 [2:17:50<21:31, 6.24s/it]
82%|████████▏ | 927/1133 [2:17:58<22:54, 6.67s/it]
82%|████████▏ | 928/1133 [2:18:02<20:06, 5.89s/it]
82%|████████▏ | 929/1133 [2:18:08<20:32, 6.04s/it]
82%|████████▏ | 930/1133 [2:18:18<24:03, 7.11s/it]
82%|████████▏ | 931/1133 [2:18:24<23:28, 6.97s/it]
82%|████████▏ | 932/1133 [2:18:30<21:58, 6.56s/it]
82%|████████▏ | 933/1133 [2:18:34<19:22, 5.81s/it]
82%|████████▏ | 934/1133 [2:18:36<15:45, 4.75s/it]
83%|████████▎ | 935/1133 [2:18:49<23:26, 7.10s/it]
83%|████████▎ | 936/1133 [2:18:54<21:49, 6.65s/it]
83%|████████▎ | 937/1133 [2:19:00<20:26, 6.26s/it]
83%|████████▎ | 938/1133 [2:19:05<19:42, 6.06s/it]
83%|████████▎ | 939/1133 [2:19:12<20:24, 6.31s/it]
83%|████████▎ | 940/1133 [2:19:21<22:48, 7.09s/it]
83%|████████▎ | 941/1133 [2:19:37<30:59, 9.68s/it]
83%|████████▎ | 942/1133 [2:19:50<33:50, 10.63s/it]
83%|████████▎ | 943/1133 [2:19:55<28:09, 8.89s/it]
83%|████████▎ | 944/1133 [2:20:17<40:18, 12.80s/it]
83%|████████▎ | 945/1133 [2:20:29<39:25, 12.58s/it]
83%|████████▎ | 946/1133 [2:20:42<40:18, 12.93s/it]
84%|████████▎ | 947/1133 [2:20:53<38:20, 12.37s/it]
84%|████████▎ | 948/1133 [2:21:10<42:18, 13.72s/it]
84%|████████▍ | 949/1133 [2:21:15<33:52, 11.05s/it]
84%|████████▍ | 950/1133 [2:21:18<25:54, 8.49s/it]
84%|████████▍ | 951/1133 [2:21:25<24:21, 8.03s/it]
84%|████████▍ | 952/1133 [2:21:30<22:15, 7.38s/it]
84%|████████▍ | 953/1133 [2:21:34<18:54, 6.30s/it]
84%|████████▍ | 954/1133 [2:21:42<20:12, 6.77s/it]
84%|████████▍ | 955/1133 [2:21:46<17:27, 5.88s/it]
84%|████████▍ | 956/1133 [2:21:53<18:14, 6.19s/it]
84%|████████▍ | 957/1133 [2:21:57<16:15, 5.54s/it]
85%|████████▍ | 958/1133 [2:22:03<16:26, 5.64s/it]
85%|████████▍ | 959/1133 [2:22:10<18:09, 6.26s/it]
85%|████████▍ | 960/1133 [2:22:17<18:37, 6.46s/it]
85%|████████▍ | 961/1133 [2:22:23<17:46, 6.20s/it]
85%|████████▍ | 962/1133 [2:22:45<30:58, 10.87s/it]
85%|████████▍ | 963/1133 [2:22:52<27:26, 9.68s/it]
85%|████████▌ | 964/1133 [2:22:56<23:09, 8.22s/it]
85%|████████▌ | 965/1133 [2:23:02<20:48, 7.43s/it]
85%|████████▌ | 966/1133 [2:23:06<17:51, 6.42s/it]
85%|████████▌ | 967/1133 [2:23:23<26:45, 9.67s/it]
85%|████████▌ | 968/1133 [2:23:27<21:45, 7.91s/it]
86%|████████▌ | 969/1133 [2:23:33<19:43, 7.21s/it]
86%|████████▌ | 970/1133 [2:23:37<17:02, 6.27s/it]
86%|████████▌ | 971/1133 [2:23:45<18:46, 6.96s/it]
86%|████████▌ | 972/1133 [2:23:50<17:10, 6.40s/it]
86%|████████▌ | 973/1133 [2:24:17<33:20, 12.50s/it]
86%|████████▌ | 974/1133 [2:24:20<25:23, 9.58s/it]
86%|████████▌ | 975/1133 [2:24:25<21:53, 8.31s/it]
86%|████████▌ | 976/1133 [2:24:29<18:11, 6.96s/it]
86%|████████▌ | 977/1133 [2:24:34<16:25, 6.32s/it]
86%|████████▋ | 978/1133 [2:24:41<16:46, 6.50s/it]
86%|████████▋ | 979/1133 [2:25:02<27:41, 10.79s/it]
86%|████████▋ | 980/1133 [2:25:06<22:33, 8.84s/it]
87%|████████▋ | 981/1133 [2:25:13<20:44, 8.19s/it]
87%|████████▋ | 982/1133 [2:25:22<21:23, 8.50s/it]
87%|████████▋ | 983/1133 [2:25:26<18:18, 7.32s/it]
87%|████████▋ | 984/1133 [2:25:29<14:59, 6.04s/it]
87%|████████▋ | 985/1133 [2:25:38<16:36, 6.74s/it]
87%|████████▋ | 986/1133 [2:25:52<22:05, 9.02s/it]
87%|████████▋ | 987/1133 [2:25:59<20:24, 8.39s/it]
87%|████████▋ | 988/1133 [2:26:11<22:30, 9.32s/it]
87%|████████▋ | 989/1133 [2:26:21<23:22, 9.74s/it]
87%|████████▋ | 990/1133 [2:26:58<42:38, 17.89s/it]
87%|████████▋ | 991/1133 [2:27:06<34:54, 14.75s/it]
88%|████████▊ | 992/1133 [2:27:10<27:29, 11.70s/it]
88%|████████▊ | 993/1133 [2:27:16<23:22, 10.02s/it]
88%|████████▊ | 994/1133 [2:27:30<25:52, 11.17s/it]
88%|████████▊ | 995/1133 [2:27:41<25:10, 10.94s/it]
88%|████████▊ | 996/1133 [2:27:45<20:37, 9.03s/it]
88%|████████▊ | 997/1133 [2:27:53<19:58, 8.81s/it]
88%|████████▊ | 998/1133 [2:28:00<18:22, 8.16s/it]
88%|████████▊ | 999/1133 [2:28:18<24:56, 11.17s/it]
88%|████████▊ | 1000/1133 [2:28:25<21:44, 9.81s/it]
88%|████████▊ | 1001/1133 [2:28:27<16:16, 7.40s/it]
88%|████████▊ | 1002/1133 [2:28:32<14:38, 6.70s/it]
89%|████████▊ | 1003/1133 [2:28:36<12:58, 5.99s/it]
89%|████████▊ | 1004/1133 [2:28:50<18:17, 8.50s/it]
89%|████████▊ | 1005/1133 [2:28:53<14:09, 6.63s/it]
89%|████████▉ | 1006/1133 [2:29:22<28:34, 13.50s/it]
89%|████████▉ | 1007/1133 [2:29:28<23:33, 11.22s/it]
89%|████████▉ | 1008/1133 [2:29:39<23:03, 11.07s/it]
89%|████████▉ | 1009/1133 [2:29:48<21:44, 10.52s/it]
89%|████████▉ | 1010/1133 [2:30:51<53:43, 26.21s/it]
89%|████████▉ | 1011/1133 [2:31:08<47:30, 23.37s/it]
89%|████████▉ | 1012/1133 [2:31:09<34:03, 16.89s/it]
89%|████████▉ | 1013/1133 [2:31:14<26:41, 13.35s/it]
89%|████████▉ | 1014/1133 [2:31:17<20:11, 10.18s/it]
90%|████████▉ | 1015/1133 [2:31:34<23:39, 12.03s/it]
90%|████████▉ | 1016/1133 [2:31:42<21:25, 10.99s/it]
90%|████████▉ | 1017/1133 [2:31:49<18:34, 9.61s/it]
90%|████████▉ | 1018/1133 [2:31:51<14:11, 7.41s/it]
90%|████████▉ | 1019/1133 [2:32:05<18:03, 9.50s/it]
90%|█████████ | 1020/1133 [2:32:19<20:31, 10.90s/it]
90%|█████████ | 1021/1133 [2:32:25<17:13, 9.23s/it]
90%|█████████ | 1022/1133 [2:32:36<18:14, 9.86s/it]
90%|█████████ | 1023/1133 [2:32:57<24:14, 13.22s/it]
90%|█████████ | 1024/1133 [2:33:02<19:43, 10.86s/it]
90%|█████████ | 1025/1133 [2:33:14<19:51, 11.04s/it]
91%|█████████ | 1026/1133 [2:33:21<17:19, 9.72s/it]
91%|█████████ | 1027/1133 [2:33:22<12:48, 7.25s/it]
91%|█████████ | 1028/1133 [2:33:27<11:24, 6.52s/it]
91%|█████████ | 1029/1133 [2:33:32<10:33, 6.09s/it]
91%|█████████ | 1030/1133 [2:33:40<11:33, 6.74s/it]
91%|█████████ | 1031/1133 [2:33:42<08:47, 5.17s/it]
91%|█████████ | 1032/1133 [2:33:48<09:19, 5.54s/it]
91%|█████████ | 1033/1133 [2:33:54<09:16, 5.56s/it]
91%|█████████▏| 1034/1133 [2:34:03<11:03, 6.70s/it]
91%|█████████▏| 1035/1133 [2:34:07<09:46, 5.98s/it]
91%|█████████▏| 1036/1133 [2:34:12<09:07, 5.64s/it]
92%|█████████▏| 1037/1133 [2:34:16<08:01, 5.01s/it]
92%|█████████▏| 1038/1133 [2:34:24<09:34, 6.05s/it]
92%|█████████▏| 1039/1133 [2:34:31<09:59, 6.38s/it]
92%|█████████▏| 1040/1133 [2:34:33<07:37, 4.92s/it]
92%|█████████▏| 1041/1133 [2:34:38<07:37, 4.97s/it]
92%|█████████▏| 1042/1133 [2:34:47<09:18, 6.14s/it]
92%|█████████▏| 1043/1133 [2:34:50<07:42, 5.14s/it]
92%|█████████▏| 1044/1133 [2:35:03<11:16, 7.60s/it]
92%|█████████▏| 1045/1133 [2:35:11<11:25, 7.79s/it]
92%|█████████▏| 1046/1133 [2:35:19<11:25, 7.88s/it]
92%|█████████▏| 1047/1133 [2:35:27<11:11, 7.81s/it]
92%|█████████▏| 1048/1133 [2:35:33<10:07, 7.15s/it]
93%|█████████▎| 1049/1133 [2:35:41<10:35, 7.56s/it]
93%|█████████▎| 1050/1133 [2:35:47<09:57, 7.20s/it]
93%|█████████▎| 1051/1133 [2:35:57<10:38, 7.79s/it]
93%|█████████▎| 1052/1133 [2:35:58<07:58, 5.91s/it]
93%|█████████▎| 1053/1133 [2:36:11<10:38, 7.98s/it]
93%|█████████▎| 1054/1133 [2:36:12<07:56, 6.04s/it]
93%|█████████▎| 1055/1133 [2:36:19<07:58, 6.14s/it]
93%|█████████▎| 1056/1133 [2:36:22<06:40, 5.20s/it]
93%|█████████▎| 1057/1133 [2:36:52<16:10, 12.77s/it]
93%|█████████▎| 1058/1133 [2:36:55<12:12, 9.77s/it]
93%|█████████▎| 1059/1133 [2:37:11<14:23, 11.67s/it]
94%|█████████▎| 1060/1133 [2:37:20<13:19, 10.95s/it]
94%|█████████▎| 1061/1133 [2:37:28<11:57, 9.97s/it]
94%|█████████▎| 1062/1133 [2:37:35<10:37, 8.98s/it]
94%|█████████▍| 1063/1133 [2:37:44<10:27, 8.97s/it]
94%|█████████▍| 1064/1133 [2:37:49<09:08, 7.95s/it]
94%|█████████▍| 1065/1133 [2:37:55<08:07, 7.17s/it]
94%|█████████▍| 1066/1133 [2:38:07<09:35, 8.59s/it]
94%|█████████▍| 1067/1133 [2:38:10<07:51, 7.15s/it]
94%|█████████▍| 1068/1133 [2:38:15<06:54, 6.38s/it]
94%|█████████▍| 1069/1133 [2:38:22<07:05, 6.65s/it]
94%|█████████▍| 1070/1133 [2:38:32<07:50, 7.46s/it]
95%|█████████▍| 1071/1133 [2:38:37<07:12, 6.98s/it]
95%|█████████▍| 1072/1133 [2:38:46<07:35, 7.46s/it]
95%|█████████▍| 1073/1133 [2:39:13<13:27, 13.45s/it]
95%|█████████▍| 1074/1133 [2:39:20<11:08, 11.33s/it]
95%|█████████▍| 1075/1133 [2:39:23<08:32, 8.84s/it]
95%|█████████▍| 1076/1133 [2:39:28<07:20, 7.73s/it]
95%|█████████▌| 1077/1133 [2:39:32<06:06, 6.55s/it]
95%|█████████▌| 1078/1133 [2:39:57<11:02, 12.05s/it]
95%|█████████▌| 1079/1133 [2:40:07<10:20, 11.49s/it]
95%|█████████▌| 1080/1133 [2:40:35<14:40, 16.62s/it]
95%|█████████▌| 1081/1133 [2:40:38<10:44, 12.39s/it]
95%|█████████▌| 1082/1133 [2:41:00<12:57, 15.25s/it]
96%|█████████▌| 1083/1133 [2:41:02<09:31, 11.43s/it]
96%|█████████▌| 1084/1133 [2:41:16<09:50, 12.05s/it]
96%|█████████▌| 1085/1133 [2:41:50<15:00, 18.77s/it]
96%|█████████▌| 1086/1133 [2:41:54<11:10, 14.28s/it]
96%|█████████▌| 1087/1133 [2:41:56<08:07, 10.60s/it]
96%|█████████▌| 1088/1133 [2:41:59<06:11, 8.25s/it]
96%|█████████▌| 1089/1133 [2:42:07<06:02, 8.24s/it]
96%|█████████▌| 1090/1133 [2:42:16<06:05, 8.49s/it]
96%|█████████▋| 1091/1133 [2:42:24<05:43, 8.17s/it]
96%|█████████▋| 1092/1133 [2:42:31<05:19, 7.79s/it]
96%|█████████▋| 1093/1133 [2:42:37<04:57, 7.43s/it]
97%|█████████▋| 1094/1133 [2:42:42<04:19, 6.65s/it]
97%|█████████▋| 1095/1133 [2:42:49<04:18, 6.81s/it]
97%|█████████▋| 1096/1133 [2:42:54<03:52, 6.29s/it]
97%|█████████▋| 1097/1133 [2:43:00<03:36, 6.01s/it]
97%|█████████▋| 1098/1133 [2:43:05<03:26, 5.89s/it]
97%|█████████▋| 1099/1133 [2:43:14<03:45, 6.63s/it]
97%|█████████▋| 1100/1133 [2:43:18<03:15, 5.94s/it]
97%|█████████▋| 1101/1133 [2:43:23<02:59, 5.61s/it]
97%|█████████▋| 1102/1133 [2:43:34<03:44, 7.25s/it]
97%|█████████▋| 1103/1133 [2:43:45<04:17, 8.58s/it]
97%|█████████▋| 1104/1133 [2:43:59<04:54, 10.17s/it]
98%|█████████▊| 1105/1133 [2:44:05<04:10, 8.95s/it]
98%|█████████▊| 1106/1133 [2:44:11<03:34, 7.94s/it]
98%|█████████▊| 1107/1133 [2:44:17<03:12, 7.40s/it]
98%|█████████▊| 1108/1133 [2:44:20<02:32, 6.09s/it]
98%|█████████▊| 1109/1133 [2:44:24<02:11, 5.48s/it]
98%|█████████▊| 1110/1133 [2:44:31<02:15, 5.91s/it]
98%|█████████▊| 1111/1133 [2:44:37<02:06, 5.74s/it]
98%|█████████▊| 1112/1133 [2:44:43<02:06, 6.00s/it]
98%|█████████▊| 1113/1133 [2:44:47<01:45, 5.26s/it]
98%|█████████▊| 1114/1133 [2:45:03<02:41, 8.52s/it]
98%|█████████▊| 1115/1133 [2:45:11<02:29, 8.33s/it]
98%|█████████▊| 1116/1133 [2:45:16<02:03, 7.28s/it]
99%|█████████▊| 1117/1133 [2:45:33<02:44, 10.25s/it]
99%|█████████▊| 1118/1133 [2:45:43<02:34, 10.30s/it]
99%|█████████▉| 1119/1133 [2:45:52<02:19, 9.96s/it]
99%|█████████▉| 1120/1133 [2:46:06<02:23, 11.05s/it]
99%|█████████▉| 1121/1133 [2:46:11<01:52, 9.34s/it]
99%|█████████▉| 1122/1133 [2:46:15<01:24, 7.68s/it]
99%|█████████▉| 1123/1133 [2:46:18<01:01, 6.13s/it]
99%|█████████▉| 1124/1133 [2:46:39<01:36, 10.70s/it]
99%|█████████▉| 1125/1133 [2:46:50<01:27, 10.96s/it]
99%|█████████▉| 1126/1133 [2:46:56<01:06, 9.43s/it]
99%|█████████▉| 1127/1133 [2:47:07<00:58, 9.70s/it]
100%|█████████▉| 1128/1133 [2:47:23<00:58, 11.72s/it]
100%|█████████▉| 1129/1133 [2:47:30<00:41, 10.27s/it]
100%|█████████▉| 1130/1133 [2:47:37<00:27, 9.26s/it]
100%|█████████▉| 1131/1133 [2:47:50<00:21, 10.53s/it]
100%|█████████▉| 1132/1133 [2:47:56<00:08, 8.98s/it]
100%|██████████| 1133/1133 [2:47:58<00:00, 6.96s/it]
100%|██████████| 1133/1133 [2:47:58<00:00, 8.90s/it]
-Batch output: ['Lao Geng lifted his gun, squinted one of his triangular eyes, and pulled the trigger, the gun went off. The golden sparrows fell down like hailstones, making a crackling sound as the iron pellets flew between the willow branches.']
-Qwen/Qwen2-72B-Instruct/shots-00 metrics: {'meteor': 0.4003638205699929, 'bleu_scores': {'bleu': 0.12223832517678616, 'precisions': [0.4121705826924831, 0.16076937606245673, 0.07965006202258929, 0.04230221679886109], 'brevity_penalty': 1.0, 'length_ratio': 1.0897316992381583, 'translation_length': 32899, 'reference_length': 30190}, 'rouge_scores': {'rouge1': 0.4441241583299796, 'rouge2': 0.19657690855088267, 'rougeL': 0.3846760389718705, 'rougeLsum': 0.3853810814928731}, 'accuracy': 0.0, 'correct_ids': []}
-*** Evaluating with num_shots: 1
-loading train/test data files
-
Map: 0%| | 0/4528 [00:00, ? examples/s]
Map: 88%|████████▊ | 4000/4528 [00:00<00:00, 36681.85 examples/s]
Map: 100%|██████████| 4528/4528 [00:00<00:00, 35361.62 examples/s]
-
Map: 0%| | 0/1133 [00:00, ? examples/s]
Map: 100%|██████████| 1133/1133 [00:00<00:00, 29741.07 examples/s]
-DatasetDict({
- train: Dataset({
- features: ['chinese', 'english', 'text', 'prompt'],
- num_rows: 4528
- })
- test: Dataset({
- features: ['chinese', 'english', 'text', 'prompt'],
- num_rows: 1133
- })
-})
---------------------------------------------------
-chinese: 老耿端起枪,眯缝起一只三角眼,一搂扳机响了枪,冰雹般的金麻雀劈哩啪啦往下落,铁砂子在柳枝间飞迸着,嚓嚓有声。
---------------------------------------------------
-english: Old Geng picked up his shotgun, squinted, and pulled the trigger. Two sparrows crashed to the ground like hailstones as shotgun pellets tore noisily through the branches.
---------------------------------------------------
-text: <|im_start|>system
-You are a helpful assistant that translates Chinese to English.<|im_end|>
-<|im_start|>user
-You will be given a Chinese sentence to translate. If it is an incomplete sentence, or if you are unsure about the meaning, simply copy the input text as your output. Do not output any additional sentence such as explanation or reasoning.
-
-Example Translations:
-Chinese: 全仗着狐仙搭救。
-English: Because I was protected by a fox fairy.
-
-Chinese: 老耿端起枪,眯缝起一只三角眼,一搂扳机响了枪,冰雹般的金麻雀劈哩啪啦往下落,铁砂子在柳枝间飞迸着,嚓嚓有声。
-English:<|im_end|>
-<|im_start|>assistant
-Old Geng picked up his shotgun, squinted, and pulled the trigger. Two sparrows crashed to the ground like hailstones as shotgun pellets tore noisily through the branches.<|im_end|>
---------------------------------------------------
-prompt: <|im_start|>system
-You are a helpful assistant that translates Chinese to English.<|im_end|>
-<|im_start|>user
-You will be given a Chinese sentence to translate. If it is an incomplete sentence, or if you are unsure about the meaning, simply copy the input text as your output. Do not output any additional sentence such as explanation or reasoning.
-
-Example Translations:
-Chinese: 全仗着狐仙搭救。
-English: Because I was protected by a fox fairy.
-
-Chinese: 老耿端起枪,眯缝起一只三角眼,一搂扳机响了枪,冰雹般的金麻雀劈哩啪啦往下落,铁砂子在柳枝间飞迸着,嚓嚓有声。
-English:<|im_end|>
-<|im_start|>assistant
-
-
0%| | 0/1133 [00:00, ?it/s]
0%| | 1/1133 [00:17<5:28:04, 17.39s/it]
0%| | 2/1133 [00:32<5:07:26, 16.31s/it]
0%| | 3/1133 [02:39<20:54:17, 66.60s/it]
0%| | 4/1133 [02:51<14:10:33, 45.20s/it]
0%| | 5/1133 [03:01<10:11:52, 32.55s/it]
1%| | 6/1133 [03:09<7:33:21, 24.14s/it]
1%| | 7/1133 [03:20<6:12:51, 19.87s/it]
1%| | 8/1133 [04:00<8:09:14, 26.09s/it]
1%| | 9/1133 [04:04<6:03:51, 19.42s/it]
1%| | 10/1133 [04:08<4:33:38, 14.62s/it]
1%| | 11/1133 [04:12<3:33:18, 11.41s/it]
1%| | 12/1133 [04:24<3:33:38, 11.43s/it]
1%| | 13/1133 [04:28<2:52:04, 9.22s/it]
1%| | 14/1133 [04:29<2:07:12, 6.82s/it]
1%|▏ | 15/1133 [04:45<2:57:50, 9.54s/it]
1%|▏ | 16/1133 [04:49<2:27:33, 7.93s/it]
2%|▏ | 17/1133 [04:57<2:26:35, 7.88s/it]
2%|▏ | 18/1133 [05:10<2:56:04, 9.47s/it]
2%|▏ | 19/1133 [05:13<2:15:58, 7.32s/it]
2%|▏ | 20/1133 [05:25<2:41:45, 8.72s/it]
2%|▏ | 21/1133 [05:31<2:29:47, 8.08s/it]
2%|▏ | 22/1133 [05:45<3:03:55, 9.93s/it]
2%|▏ | 23/1133 [05:49<2:30:28, 8.13s/it]
2%|▏ | 24/1133 [05:55<2:16:15, 7.37s/it]
2%|▏ | 25/1133 [06:03<2:17:18, 7.44s/it]
2%|▏ | 26/1133 [06:15<2:44:09, 8.90s/it]
2%|▏ | 27/1133 [06:22<2:32:27, 8.27s/it]
2%|▏ | 28/1133 [06:25<2:02:17, 6.64s/it]
3%|▎ | 29/1133 [06:28<1:46:49, 5.81s/it]
3%|▎ | 30/1133 [06:31<1:30:18, 4.91s/it]
3%|▎ | 31/1133 [06:33<1:14:27, 4.05s/it]
3%|▎ | 32/1133 [06:45<1:58:06, 6.44s/it]
3%|▎ | 33/1133 [07:07<3:23:29, 11.10s/it]
3%|▎ | 34/1133 [07:16<3:11:02, 10.43s/it]
3%|▎ | 35/1133 [07:24<2:55:07, 9.57s/it]
3%|▎ | 36/1133 [07:30<2:37:44, 8.63s/it]
3%|▎ | 37/1133 [07:46<3:15:36, 10.71s/it]
3%|▎ | 38/1133 [07:50<2:39:29, 8.74s/it]
3%|▎ | 39/1133 [07:52<2:01:21, 6.66s/it]
4%|▎ | 40/1133 [08:00<2:08:03, 7.03s/it]
4%|▎ | 41/1133 [08:13<2:44:20, 9.03s/it]
4%|▎ | 42/1133 [08:16<2:10:19, 7.17s/it]
4%|▍ | 43/1133 [08:25<2:18:56, 7.65s/it]
4%|▍ | 44/1133 [08:31<2:12:30, 7.30s/it]
4%|▍ | 45/1133 [08:34<1:48:04, 5.96s/it]
4%|▍ | 46/1133 [08:49<2:38:26, 8.75s/it]
4%|▍ | 47/1133 [08:56<2:27:47, 8.16s/it]
4%|▍ | 48/1133 [08:58<1:55:51, 6.41s/it]
4%|▍ | 49/1133 [09:02<1:39:10, 5.49s/it]
4%|▍ | 50/1133 [09:06<1:30:16, 5.00s/it]
5%|▍ | 51/1133 [09:14<1:50:35, 6.13s/it]
5%|▍ | 52/1133 [09:29<2:34:00, 8.55s/it]
5%|▍ | 53/1133 [09:36<2:25:22, 8.08s/it]
5%|▍ | 54/1133 [09:39<1:59:40, 6.65s/it]
5%|▍ | 55/1133 [10:01<3:22:27, 11.27s/it]
5%|▍ | 56/1133 [10:09<3:03:15, 10.21s/it]
5%|▌ | 57/1133 [10:20<3:09:11, 10.55s/it]
5%|▌ | 58/1133 [10:30<3:06:18, 10.40s/it]
5%|▌ | 59/1133 [10:32<2:21:19, 7.90s/it]
5%|▌ | 60/1133 [10:45<2:47:53, 9.39s/it]
5%|▌ | 61/1133 [10:49<2:20:10, 7.85s/it]
5%|▌ | 62/1133 [10:53<2:00:28, 6.75s/it]
6%|▌ | 63/1133 [11:04<2:18:51, 7.79s/it]
6%|▌ | 64/1133 [11:11<2:16:36, 7.67s/it]
6%|▌ | 65/1133 [11:19<2:19:07, 7.82s/it]
6%|▌ | 66/1133 [11:29<2:28:23, 8.34s/it]
6%|▌ | 67/1133 [11:44<3:06:51, 10.52s/it]
6%|▌ | 68/1133 [12:02<3:44:32, 12.65s/it]
6%|▌ | 69/1133 [12:12<3:31:19, 11.92s/it]
6%|▌ | 70/1133 [12:19<3:04:31, 10.42s/it]
6%|▋ | 71/1133 [12:22<2:22:39, 8.06s/it]
6%|▋ | 72/1133 [12:26<2:01:37, 6.88s/it]
6%|▋ | 73/1133 [12:29<1:42:46, 5.82s/it]
7%|▋ | 74/1133 [12:31<1:24:06, 4.77s/it]
7%|▋ | 75/1133 [12:36<1:22:13, 4.66s/it]
7%|▋ | 76/1133 [12:41<1:23:16, 4.73s/it]
7%|▋ | 77/1133 [12:50<1:46:05, 6.03s/it]
7%|▋ | 78/1133 [12:53<1:30:28, 5.15s/it]
7%|▋ | 79/1133 [13:05<2:04:47, 7.10s/it]
7%|▋ | 80/1133 [13:08<1:46:14, 6.05s/it]
7%|▋ | 81/1133 [13:10<1:22:23, 4.70s/it]
7%|▋ | 82/1133 [13:13<1:12:28, 4.14s/it]
7%|▋ | 83/1133 [13:26<2:01:38, 6.95s/it]
7%|▋ | 84/1133 [13:28<1:37:10, 5.56s/it]
8%|▊ | 85/1133 [13:30<1:18:42, 4.51s/it]
8%|▊ | 86/1133 [13:36<1:23:15, 4.77s/it]
8%|▊ | 87/1133 [13:42<1:28:31, 5.08s/it]
8%|▊ | 88/1133 [13:52<1:55:45, 6.65s/it]
8%|▊ | 89/1133 [13:56<1:42:34, 5.90s/it]
8%|▊ | 90/1133 [14:08<2:16:06, 7.83s/it]
8%|▊ | 91/1133 [14:12<1:53:16, 6.52s/it]
8%|▊ | 92/1133 [14:17<1:45:37, 6.09s/it]
8%|▊ | 93/1133 [14:26<2:00:44, 6.97s/it]
8%|▊ | 94/1133 [14:32<1:55:24, 6.66s/it]
8%|▊ | 95/1133 [14:39<1:56:25, 6.73s/it]
8%|▊ | 96/1133 [14:52<2:30:43, 8.72s/it]
9%|▊ | 97/1133 [14:56<2:06:59, 7.35s/it]
9%|▊ | 98/1133 [15:00<1:48:48, 6.31s/it]
9%|▊ | 99/1133 [15:12<2:15:34, 7.87s/it]
9%|▉ | 100/1133 [15:15<1:49:23, 6.35s/it]
9%|▉ | 101/1133 [15:31<2:40:10, 9.31s/it]
9%|▉ | 102/1133 [15:47<3:16:50, 11.46s/it]
9%|▉ | 103/1133 [15:52<2:39:48, 9.31s/it]
9%|▉ | 104/1133 [15:53<2:01:00, 7.06s/it]
9%|▉ | 105/1133 [16:04<2:16:59, 8.00s/it]
9%|▉ | 106/1133 [17:01<6:30:43, 22.83s/it]
9%|▉ | 107/1133 [17:16<5:51:28, 20.55s/it]
10%|▉ | 108/1133 [17:21<4:29:10, 15.76s/it]
10%|▉ | 109/1133 [17:28<3:43:57, 13.12s/it]
10%|▉ | 110/1133 [17:44<4:00:51, 14.13s/it]
10%|▉ | 111/1133 [17:56<3:46:37, 13.30s/it]
10%|▉ | 112/1133 [18:17<4:27:44, 15.73s/it]
10%|▉ | 113/1133 [18:39<4:57:17, 17.49s/it]
10%|█ | 114/1133 [18:44<3:56:57, 13.95s/it]
10%|█ | 115/1133 [18:48<3:02:43, 10.77s/it]
10%|█ | 116/1133 [18:52<2:30:24, 8.87s/it]
10%|█ | 117/1133 [19:03<2:42:40, 9.61s/it]
10%|█ | 118/1133 [19:09<2:22:33, 8.43s/it]
11%|█ | 119/1133 [19:19<2:32:26, 9.02s/it]
11%|█ | 120/1133 [19:23<2:02:13, 7.24s/it]
11%|█ | 121/1133 [19:27<1:46:34, 6.32s/it]
11%|█ | 122/1133 [19:35<1:55:18, 6.84s/it]
11%|█ | 123/1133 [19:39<1:40:07, 5.95s/it]
11%|█ | 124/1133 [19:46<1:46:50, 6.35s/it]
11%|█ | 125/1133 [20:00<2:23:31, 8.54s/it]
11%|█ | 126/1133 [20:07<2:18:42, 8.26s/it]
11%|█ | 127/1133 [20:27<3:14:55, 11.63s/it]
11%|█▏ | 128/1133 [20:32<2:40:40, 9.59s/it]
11%|█▏ | 129/1133 [20:38<2:22:44, 8.53s/it]
11%|█▏ | 130/1133 [20:40<1:51:23, 6.66s/it]
12%|█▏ | 131/1133 [20:54<2:26:16, 8.76s/it]
12%|█▏ | 132/1133 [21:01<2:18:30, 8.30s/it]
12%|█▏ | 133/1133 [21:07<2:06:30, 7.59s/it]
12%|█▏ | 134/1133 [21:10<1:43:51, 6.24s/it]
12%|█▏ | 135/1133 [21:36<3:24:38, 12.30s/it]
12%|█▏ | 136/1133 [21:41<2:45:10, 9.94s/it]
12%|█▏ | 137/1133 [21:47<2:29:15, 8.99s/it]
12%|█▏ | 138/1133 [21:52<2:04:51, 7.53s/it]
12%|█▏ | 139/1133 [21:55<1:45:13, 6.35s/it]
12%|█▏ | 140/1133 [22:04<1:57:08, 7.08s/it]
12%|█▏ | 141/1133 [22:09<1:48:29, 6.56s/it]
13%|█▎ | 142/1133 [22:12<1:31:08, 5.52s/it]
13%|█▎ | 143/1133 [22:23<1:57:54, 7.15s/it]
13%|█▎ | 144/1133 [22:28<1:47:24, 6.52s/it]
13%|█▎ | 145/1133 [22:32<1:32:54, 5.64s/it]
13%|█▎ | 146/1133 [22:36<1:27:02, 5.29s/it]
13%|█▎ | 147/1133 [22:43<1:32:15, 5.61s/it]
13%|█▎ | 148/1133 [22:45<1:14:36, 4.54s/it]
13%|█▎ | 149/1133 [22:50<1:15:51, 4.63s/it]
13%|█▎ | 150/1133 [22:55<1:18:07, 4.77s/it]
13%|█▎ | 151/1133 [23:05<1:42:47, 6.28s/it]
13%|█▎ | 152/1133 [23:12<1:48:28, 6.63s/it]
14%|█▎ | 153/1133 [23:15<1:32:15, 5.65s/it]
14%|█▎ | 154/1133 [23:26<1:56:00, 7.11s/it]
14%|█▎ | 155/1133 [23:32<1:49:09, 6.70s/it]
14%|█▍ | 156/1133 [23:39<1:54:25, 7.03s/it]
14%|█▍ | 157/1133 [23:52<2:22:32, 8.76s/it]
14%|█▍ | 158/1133 [24:03<2:33:12, 9.43s/it]
14%|█▍ | 159/1133 [24:11<2:25:12, 8.95s/it]
14%|█▍ | 160/1133 [24:16<2:07:45, 7.88s/it]
14%|█▍ | 161/1133 [24:19<1:40:33, 6.21s/it]
14%|█▍ | 162/1133 [24:24<1:33:33, 5.78s/it]
14%|█▍ | 163/1133 [24:32<1:44:03, 6.44s/it]
14%|█▍ | 164/1133 [24:35<1:31:28, 5.66s/it]
15%|█▍ | 165/1133 [24:41<1:30:45, 5.63s/it]
15%|█▍ | 166/1133 [24:50<1:49:20, 6.78s/it]
15%|█▍ | 167/1133 [24:57<1:48:28, 6.74s/it]
15%|█▍ | 168/1133 [25:13<2:30:28, 9.36s/it]
15%|█▍ | 169/1133 [25:16<2:02:44, 7.64s/it]
15%|█▌ | 170/1133 [25:22<1:53:17, 7.06s/it]
15%|█▌ | 171/1133 [25:24<1:29:06, 5.56s/it]
15%|█▌ | 172/1133 [25:27<1:17:09, 4.82s/it]
15%|█▌ | 173/1133 [25:31<1:15:04, 4.69s/it]
15%|█▌ | 174/1133 [25:34<1:03:35, 3.98s/it]
15%|█▌ | 175/1133 [25:40<1:16:29, 4.79s/it]
16%|█▌ | 176/1133 [25:44<1:09:29, 4.36s/it]
16%|█▌ | 177/1133 [25:49<1:15:34, 4.74s/it]
16%|█▌ | 178/1133 [26:11<2:37:26, 9.89s/it]
16%|█▌ | 179/1133 [26:17<2:17:02, 8.62s/it]
16%|█▌ | 180/1133 [26:30<2:36:47, 9.87s/it]
16%|█▌ | 181/1133 [26:39<2:34:36, 9.74s/it]
16%|█▌ | 182/1133 [26:52<2:49:31, 10.70s/it]
16%|█▌ | 183/1133 [26:59<2:30:18, 9.49s/it]
16%|█▌ | 184/1133 [27:04<2:10:16, 8.24s/it]
16%|█▋ | 185/1133 [27:08<1:50:37, 7.00s/it]
16%|█▋ | 186/1133 [27:27<2:45:07, 10.46s/it]
17%|█▋ | 187/1133 [27:41<3:04:12, 11.68s/it]
17%|█▋ | 188/1133 [27:59<3:31:58, 13.46s/it]
17%|█▋ | 189/1133 [28:03<2:48:16, 10.70s/it]
17%|█▋ | 190/1133 [28:11<2:34:11, 9.81s/it]
17%|█▋ | 191/1133 [28:18<2:23:06, 9.11s/it]
17%|█▋ | 192/1133 [28:29<2:28:00, 9.44s/it]
17%|█▋ | 193/1133 [28:41<2:44:16, 10.49s/it]
17%|█▋ | 194/1133 [28:46<2:17:29, 8.79s/it]
17%|█▋ | 195/1133 [28:50<1:53:01, 7.23s/it]
17%|█▋ | 196/1133 [28:53<1:32:16, 5.91s/it]
17%|█▋ | 197/1133 [29:02<1:46:55, 6.85s/it]
17%|█▋ | 198/1133 [29:05<1:31:36, 5.88s/it]
18%|█▊ | 199/1133 [29:21<2:16:26, 8.76s/it]
18%|█▊ | 200/1133 [29:27<2:05:42, 8.08s/it]
18%|█▊ | 201/1133 [29:35<2:03:23, 7.94s/it]
18%|█▊ | 202/1133 [29:37<1:33:25, 6.02s/it]
18%|█▊ | 203/1133 [29:39<1:14:52, 4.83s/it]
18%|█▊ | 204/1133 [29:57<2:19:37, 9.02s/it]
18%|█▊ | 205/1133 [29:59<1:44:46, 6.77s/it]
18%|█▊ | 206/1133 [30:03<1:33:39, 6.06s/it]
18%|█▊ | 207/1133 [30:10<1:38:21, 6.37s/it]
18%|█▊ | 208/1133 [30:24<2:13:14, 8.64s/it]
18%|█▊ | 209/1133 [30:52<3:41:03, 14.35s/it]
19%|█▊ | 210/1133 [31:03<3:25:38, 13.37s/it]
19%|█▊ | 211/1133 [31:14<3:13:40, 12.60s/it]
19%|█▊ | 212/1133 [31:25<3:06:38, 12.16s/it]
19%|█▉ | 213/1133 [31:29<2:29:47, 9.77s/it]
19%|█▉ | 214/1133 [31:31<1:52:59, 7.38s/it]
19%|█▉ | 215/1133 [31:37<1:45:19, 6.88s/it]
19%|█▉ | 216/1133 [32:12<3:53:27, 15.28s/it]
19%|█▉ | 217/1133 [32:14<2:56:11, 11.54s/it]
19%|█▉ | 218/1133 [32:18<2:17:17, 9.00s/it]
19%|█▉ | 219/1133 [32:21<1:52:28, 7.38s/it]
19%|█▉ | 220/1133 [32:27<1:46:32, 7.00s/it]
20%|█▉ | 221/1133 [32:47<2:43:56, 10.79s/it]
20%|█▉ | 222/1133 [32:53<2:23:14, 9.43s/it]
20%|█▉ | 223/1133 [33:05<2:36:14, 10.30s/it]
20%|█▉ | 224/1133 [33:08<2:00:55, 7.98s/it]
20%|█▉ | 225/1133 [33:20<2:17:49, 9.11s/it]
20%|█▉ | 226/1133 [33:44<3:25:07, 13.57s/it]
20%|██ | 227/1133 [33:51<2:56:03, 11.66s/it]
20%|██ | 228/1133 [33:58<2:32:48, 10.13s/it]
20%|██ | 229/1133 [34:13<2:55:37, 11.66s/it]
20%|██ | 230/1133 [34:23<2:48:42, 11.21s/it]
20%|██ | 231/1133 [34:28<2:22:07, 9.45s/it]
20%|██ | 232/1133 [34:36<2:12:14, 8.81s/it]
21%|██ | 233/1133 [34:42<2:03:15, 8.22s/it]
21%|██ | 234/1133 [34:50<2:02:34, 8.18s/it]
21%|██ | 235/1133 [34:53<1:36:05, 6.42s/it]
21%|██ | 236/1133 [35:06<2:04:20, 8.32s/it]
21%|██ | 237/1133 [35:26<2:59:53, 12.05s/it]
21%|██ | 238/1133 [35:34<2:40:02, 10.73s/it]
21%|██ | 239/1133 [35:43<2:33:35, 10.31s/it]
21%|██ | 240/1133 [35:51<2:19:58, 9.40s/it]
21%|██▏ | 241/1133 [35:52<1:44:44, 7.05s/it]
21%|██▏ | 242/1133 [35:56<1:29:24, 6.02s/it]
21%|██▏ | 243/1133 [36:03<1:35:14, 6.42s/it]
22%|██▏ | 244/1133 [36:05<1:14:35, 5.03s/it]
22%|██▏ | 245/1133 [36:13<1:26:41, 5.86s/it]
22%|██▏ | 246/1133 [36:22<1:40:31, 6.80s/it]
22%|██▏ | 247/1133 [36:25<1:23:57, 5.69s/it]
22%|██▏ | 248/1133 [36:30<1:23:04, 5.63s/it]
22%|██▏ | 249/1133 [36:33<1:11:44, 4.87s/it]
22%|██▏ | 250/1133 [36:41<1:21:49, 5.56s/it]
22%|██▏ | 251/1133 [37:33<4:47:31, 19.56s/it]
22%|██▏ | 252/1133 [37:37<3:39:31, 14.95s/it]
22%|██▏ | 253/1133 [37:56<3:57:56, 16.22s/it]
22%|██▏ | 254/1133 [38:51<6:48:49, 27.91s/it]
23%|██▎ | 255/1133 [39:02<5:32:44, 22.74s/it]
23%|██▎ | 256/1133 [39:14<4:43:32, 19.40s/it]
23%|██▎ | 257/1133 [39:18<3:37:44, 14.91s/it]
23%|██▎ | 258/1133 [39:30<3:26:21, 14.15s/it]
23%|██▎ | 259/1133 [39:43<3:18:35, 13.63s/it]
23%|██▎ | 260/1133 [40:13<4:32:29, 18.73s/it]
23%|██▎ | 261/1133 [40:38<4:57:06, 20.44s/it]
23%|██▎ | 262/1133 [40:47<4:06:41, 16.99s/it]
23%|██▎ | 263/1133 [41:18<5:08:23, 21.27s/it]
23%|██▎ | 264/1133 [41:26<4:09:33, 17.23s/it]
23%|██▎ | 265/1133 [41:55<5:02:51, 20.94s/it]
23%|██▎ | 266/1133 [42:08<4:26:03, 18.41s/it]
24%|██▎ | 267/1133 [42:22<4:05:09, 16.99s/it]
24%|██▎ | 268/1133 [42:53<5:07:24, 21.32s/it]
24%|██▎ | 269/1133 [43:02<4:15:29, 17.74s/it]
24%|██▍ | 270/1133 [43:09<3:25:27, 14.28s/it]
24%|██▍ | 271/1133 [43:13<2:44:02, 11.42s/it]
24%|██▍ | 272/1133 [43:21<2:29:20, 10.41s/it]
24%|██▍ | 273/1133 [43:25<1:57:42, 8.21s/it]
24%|██▍ | 274/1133 [43:45<2:49:36, 11.85s/it]
24%|██▍ | 275/1133 [43:48<2:13:03, 9.31s/it]
24%|██▍ | 276/1133 [43:52<1:50:41, 7.75s/it]
24%|██▍ | 277/1133 [43:59<1:47:23, 7.53s/it]
25%|██▍ | 278/1133 [44:07<1:48:20, 7.60s/it]
25%|██▍ | 279/1133 [44:18<2:02:38, 8.62s/it]
25%|██▍ | 280/1133 [44:27<2:02:12, 8.60s/it]
25%|██▍ | 281/1133 [44:36<2:05:57, 8.87s/it]
25%|██▍ | 282/1133 [44:40<1:42:17, 7.21s/it]
25%|██▍ | 283/1133 [44:43<1:25:44, 6.05s/it]
25%|██▌ | 284/1133 [44:50<1:29:25, 6.32s/it]
25%|██▌ | 285/1133 [44:57<1:30:45, 6.42s/it]
25%|██▌ | 286/1133 [45:01<1:23:36, 5.92s/it]
25%|██▌ | 287/1133 [45:12<1:43:39, 7.35s/it]
25%|██▌ | 288/1133 [45:42<3:18:13, 14.08s/it]
26%|██▌ | 289/1133 [45:45<2:33:48, 10.93s/it]
26%|██▌ | 290/1133 [45:55<2:27:46, 10.52s/it]
26%|██▌ | 291/1133 [46:07<2:32:24, 10.86s/it]
26%|██▌ | 292/1133 [46:12<2:08:50, 9.19s/it]
26%|██▌ | 293/1133 [46:29<2:43:14, 11.66s/it]
26%|██▌ | 294/1133 [46:34<2:13:39, 9.56s/it]
26%|██▌ | 295/1133 [46:44<2:17:34, 9.85s/it]
26%|██▌ | 296/1133 [46:54<2:17:17, 9.84s/it]
26%|██▌ | 297/1133 [47:00<1:58:15, 8.49s/it]
26%|██▋ | 298/1133 [47:04<1:39:52, 7.18s/it]
26%|██▋ | 299/1133 [47:06<1:19:27, 5.72s/it]
26%|██▋ | 300/1133 [47:09<1:09:28, 5.00s/it]
27%|██▋ | 301/1133 [47:11<57:06, 4.12s/it]
27%|██▋ | 302/1133 [47:14<52:45, 3.81s/it]
27%|██▋ | 303/1133 [47:17<48:37, 3.52s/it]
27%|██▋ | 304/1133 [47:26<1:10:55, 5.13s/it]
27%|██▋ | 305/1133 [47:36<1:31:11, 6.61s/it]
27%|██▋ | 306/1133 [47:46<1:44:22, 7.57s/it]
27%|██▋ | 307/1133 [47:50<1:29:58, 6.54s/it]
27%|██▋ | 308/1133 [47:57<1:30:40, 6.59s/it]
27%|██▋ | 309/1133 [48:05<1:38:12, 7.15s/it]
27%|██▋ | 310/1133 [48:08<1:20:17, 5.85s/it]
27%|██▋ | 311/1133 [48:17<1:33:23, 6.82s/it]
28%|██▊ | 312/1133 [48:27<1:44:27, 7.63s/it]
28%|██▊ | 313/1133 [48:36<1:52:14, 8.21s/it]
28%|██▊ | 314/1133 [48:41<1:38:41, 7.23s/it]
28%|██▊ | 315/1133 [49:02<2:33:03, 11.23s/it]
28%|██▊ | 316/1133 [49:07<2:07:51, 9.39s/it]
28%|██▊ | 317/1133 [49:14<1:59:01, 8.75s/it]
28%|██▊ | 318/1133 [49:16<1:31:35, 6.74s/it]
28%|██▊ | 319/1133 [49:35<2:18:16, 10.19s/it]
28%|██▊ | 320/1133 [49:43<2:10:29, 9.63s/it]
28%|██▊ | 321/1133 [49:47<1:46:04, 7.84s/it]
28%|██▊ | 322/1133 [49:51<1:31:03, 6.74s/it]
29%|██▊ | 323/1133 [49:57<1:30:59, 6.74s/it]
29%|██▊ | 324/1133 [50:07<1:40:39, 7.47s/it]
29%|██▊ | 325/1133 [50:13<1:36:06, 7.14s/it]
29%|██▉ | 326/1133 [50:16<1:19:39, 5.92s/it]
29%|██▉ | 327/1133 [50:37<2:18:42, 10.33s/it]
29%|██▉ | 328/1133 [50:57<3:00:21, 13.44s/it]
29%|██▉ | 329/1133 [51:10<2:55:38, 13.11s/it]
29%|██▉ | 330/1133 [51:13<2:15:10, 10.10s/it]
29%|██▉ | 331/1133 [51:20<2:01:41, 9.10s/it]
29%|██▉ | 332/1133 [51:25<1:48:28, 8.13s/it]
29%|██▉ | 333/1133 [51:31<1:36:29, 7.24s/it]
29%|██▉ | 334/1133 [51:46<2:08:48, 9.67s/it]
30%|██▉ | 335/1133 [51:52<1:54:47, 8.63s/it]
30%|██▉ | 336/1133 [51:58<1:43:27, 7.79s/it]
30%|██▉ | 337/1133 [52:02<1:29:56, 6.78s/it]
30%|██▉ | 338/1133 [52:14<1:47:52, 8.14s/it]
30%|██▉ | 339/1133 [52:26<2:05:17, 9.47s/it]
30%|███ | 340/1133 [52:32<1:49:32, 8.29s/it]
30%|███ | 341/1133 [52:42<1:55:41, 8.76s/it]
30%|███ | 342/1133 [52:46<1:39:49, 7.57s/it]
30%|███ | 343/1133 [52:50<1:21:59, 6.23s/it]
30%|███ | 344/1133 [53:02<1:45:56, 8.06s/it]
30%|███ | 345/1133 [53:10<1:44:11, 7.93s/it]
31%|███ | 346/1133 [53:15<1:35:57, 7.32s/it]
31%|███ | 347/1133 [53:18<1:17:10, 5.89s/it]
31%|███ | 348/1133 [53:27<1:29:31, 6.84s/it]
31%|███ | 349/1133 [53:28<1:05:35, 5.02s/it]
31%|███ | 350/1133 [53:39<1:29:13, 6.84s/it]
31%|███ | 351/1133 [53:42<1:13:26, 5.64s/it]
31%|███ | 352/1133 [53:48<1:16:26, 5.87s/it]
31%|███ | 353/1133 [54:03<1:52:35, 8.66s/it]
31%|███ | 354/1133 [54:09<1:40:21, 7.73s/it]
31%|███▏ | 355/1133 [54:12<1:22:10, 6.34s/it]
31%|███▏ | 356/1133 [54:18<1:19:16, 6.12s/it]
32%|███▏ | 357/1133 [54:28<1:37:18, 7.52s/it]
32%|███▏ | 358/1133 [54:38<1:43:57, 8.05s/it]
32%|███▏ | 359/1133 [54:41<1:25:37, 6.64s/it]
32%|███▏ | 360/1133 [54:52<1:43:36, 8.04s/it]
32%|███▏ | 361/1133 [55:01<1:45:32, 8.20s/it]
32%|███▏ | 362/1133 [55:05<1:30:02, 7.01s/it]
32%|███▏ | 363/1133 [55:08<1:12:50, 5.68s/it]
32%|███▏ | 364/1133 [55:11<1:02:46, 4.90s/it]
32%|███▏ | 365/1133 [55:13<52:45, 4.12s/it]
32%|███▏ | 366/1133 [55:16<49:42, 3.89s/it]
32%|███▏ | 367/1133 [55:27<1:14:51, 5.86s/it]
32%|███▏ | 368/1133 [55:33<1:16:00, 5.96s/it]
33%|███▎ | 369/1133 [55:38<1:11:18, 5.60s/it]
33%|███▎ | 370/1133 [55:41<1:00:38, 4.77s/it]
33%|███▎ | 371/1133 [55:42<47:16, 3.72s/it]
33%|███▎ | 372/1133 [56:13<2:29:48, 11.81s/it]
33%|███▎ | 373/1133 [56:22<2:20:08, 11.06s/it]
33%|███▎ | 374/1133 [56:25<1:48:41, 8.59s/it]
33%|███▎ | 375/1133 [56:28<1:27:40, 6.94s/it]
33%|███▎ | 376/1133 [56:35<1:28:05, 6.98s/it]
33%|███▎ | 377/1133 [56:40<1:19:34, 6.32s/it]
33%|███▎ | 378/1133 [56:48<1:27:40, 6.97s/it]
33%|███▎ | 379/1133 [56:52<1:14:53, 5.96s/it]
34%|███▎ | 380/1133 [56:55<1:06:01, 5.26s/it]
34%|███▎ | 381/1133 [57:12<1:49:29, 8.74s/it]
34%|███▎ | 382/1133 [57:20<1:44:25, 8.34s/it]
34%|███▍ | 383/1133 [57:33<2:01:11, 9.70s/it]
34%|███▍ | 384/1133 [57:39<1:49:46, 8.79s/it]
34%|███▍ | 385/1133 [57:56<2:19:30, 11.19s/it]
34%|███▍ | 386/1133 [58:34<3:58:58, 19.19s/it]
34%|███▍ | 387/1133 [58:38<3:02:31, 14.68s/it]
34%|███▍ | 388/1133 [58:42<2:24:15, 11.62s/it]
34%|███▍ | 389/1133 [58:55<2:26:47, 11.84s/it]
34%|███▍ | 390/1133 [59:01<2:07:00, 10.26s/it]
35%|███▍ | 391/1133 [59:05<1:43:23, 8.36s/it]
35%|███▍ | 392/1133 [59:16<1:51:59, 9.07s/it]
35%|███▍ | 393/1133 [59:53<3:35:12, 17.45s/it]
35%|███▍ | 394/1133 [59:59<2:52:21, 13.99s/it]
35%|███▍ | 395/1133 [1:00:17<3:08:17, 15.31s/it]
35%|███▍ | 396/1133 [1:00:24<2:36:59, 12.78s/it]
35%|███▌ | 397/1133 [1:00:29<2:07:28, 10.39s/it]
35%|███▌ | 398/1133 [1:00:41<2:12:31, 10.82s/it]
35%|███▌ | 399/1133 [1:00:46<1:52:25, 9.19s/it]
35%|███▌ | 400/1133 [1:00:55<1:52:16, 9.19s/it]
35%|███▌ | 401/1133 [1:00:59<1:31:39, 7.51s/it]
35%|███▌ | 402/1133 [1:01:21<2:23:48, 11.80s/it]
36%|███▌ | 403/1133 [1:01:28<2:07:10, 10.45s/it]
36%|███▌ | 404/1133 [1:01:35<1:52:56, 9.30s/it]
36%|███▌ | 405/1133 [1:01:43<1:48:25, 8.94s/it]
36%|███▌ | 406/1133 [1:01:47<1:30:51, 7.50s/it]
36%|███▌ | 407/1133 [1:01:53<1:25:45, 7.09s/it]
36%|███▌ | 408/1133 [1:01:58<1:16:55, 6.37s/it]
36%|███▌ | 409/1133 [1:02:09<1:32:30, 7.67s/it]
36%|███▌ | 410/1133 [1:02:14<1:23:06, 6.90s/it]
36%|███▋ | 411/1133 [1:02:31<2:00:30, 10.01s/it]
36%|███▋ | 412/1133 [1:02:41<2:01:52, 10.14s/it]
36%|███▋ | 413/1133 [1:02:51<1:59:39, 9.97s/it]
37%|███▋ | 414/1133 [1:02:52<1:29:10, 7.44s/it]
37%|███▋ | 415/1133 [1:03:06<1:49:17, 9.13s/it]
37%|███▋ | 416/1133 [1:03:22<2:14:29, 11.25s/it]
37%|███▋ | 417/1133 [1:03:24<1:43:12, 8.65s/it]
37%|███▋ | 418/1133 [1:03:29<1:29:52, 7.54s/it]
37%|███▋ | 419/1133 [1:03:40<1:42:01, 8.57s/it]
37%|███▋ | 420/1133 [1:03:41<1:14:58, 6.31s/it]
37%|███▋ | 421/1133 [1:03:50<1:22:56, 6.99s/it]
37%|███▋ | 422/1133 [1:03:59<1:30:59, 7.68s/it]
37%|███▋ | 423/1133 [1:04:06<1:27:01, 7.35s/it]
37%|███▋ | 424/1133 [1:04:16<1:36:35, 8.17s/it]
38%|███▊ | 425/1133 [1:04:27<1:48:09, 9.17s/it]
38%|███▊ | 426/1133 [1:04:37<1:49:26, 9.29s/it]
38%|███▊ | 427/1133 [1:04:41<1:32:17, 7.84s/it]
38%|███▊ | 428/1133 [1:04:50<1:34:52, 8.07s/it]
38%|███▊ | 429/1133 [1:04:55<1:25:27, 7.28s/it]
38%|███▊ | 430/1133 [1:05:05<1:32:26, 7.89s/it]
38%|███▊ | 431/1133 [1:05:09<1:19:20, 6.78s/it]
38%|███▊ | 432/1133 [1:05:19<1:32:06, 7.88s/it]
38%|███▊ | 433/1133 [1:05:23<1:18:48, 6.76s/it]
38%|███▊ | 434/1133 [1:05:35<1:35:14, 8.17s/it]
38%|███▊ | 435/1133 [1:05:54<2:12:23, 11.38s/it]
38%|███▊ | 436/1133 [1:06:10<2:29:55, 12.91s/it]
39%|███▊ | 437/1133 [1:06:21<2:21:18, 12.18s/it]
39%|███▊ | 438/1133 [1:06:26<1:56:53, 10.09s/it]
39%|███▊ | 439/1133 [1:06:34<1:49:01, 9.43s/it]
39%|███▉ | 440/1133 [1:06:36<1:25:06, 7.37s/it]
39%|███▉ | 441/1133 [1:06:40<1:11:58, 6.24s/it]
39%|███▉ | 442/1133 [1:06:45<1:07:56, 5.90s/it]
39%|███▉ | 443/1133 [1:06:51<1:07:10, 5.84s/it]
39%|███▉ | 444/1133 [1:06:58<1:11:36, 6.24s/it]
39%|███▉ | 445/1133 [1:07:04<1:11:32, 6.24s/it]
39%|███▉ | 446/1133 [1:07:07<58:51, 5.14s/it]
39%|███▉ | 447/1133 [1:07:15<1:10:00, 6.12s/it]
40%|███▉ | 448/1133 [1:07:24<1:20:28, 7.05s/it]
40%|███▉ | 449/1133 [1:07:35<1:31:37, 8.04s/it]
40%|███▉ | 450/1133 [1:07:47<1:47:14, 9.42s/it]
40%|███▉ | 451/1133 [1:07:50<1:23:43, 7.37s/it]
40%|███▉ | 452/1133 [1:08:01<1:36:42, 8.52s/it]
40%|███▉ | 453/1133 [1:08:05<1:21:45, 7.21s/it]
40%|████ | 454/1133 [1:08:11<1:16:59, 6.80s/it]
40%|████ | 455/1133 [1:08:16<1:11:00, 6.28s/it]
40%|████ | 456/1133 [1:08:29<1:33:11, 8.26s/it]
40%|████ | 457/1133 [1:08:35<1:26:12, 7.65s/it]
40%|████ | 458/1133 [1:08:50<1:48:24, 9.64s/it]
41%|████ | 459/1133 [1:08:57<1:39:17, 8.84s/it]
41%|████ | 460/1133 [1:09:00<1:18:53, 7.03s/it]
41%|████ | 461/1133 [1:09:16<1:51:14, 9.93s/it]
41%|████ | 462/1133 [1:09:26<1:50:57, 9.92s/it]
41%|████ | 463/1133 [1:09:29<1:27:01, 7.79s/it]
41%|████ | 464/1133 [1:09:38<1:32:41, 8.31s/it]
41%|████ | 465/1133 [1:09:46<1:30:37, 8.14s/it]
41%|████ | 466/1133 [1:10:06<2:09:04, 11.61s/it]
41%|████ | 467/1133 [1:10:09<1:41:27, 9.14s/it]
41%|████▏ | 468/1133 [1:10:12<1:19:27, 7.17s/it]
41%|████▏ | 469/1133 [1:10:26<1:41:36, 9.18s/it]
41%|████▏ | 470/1133 [1:10:33<1:35:42, 8.66s/it]
42%|████▏ | 471/1133 [1:10:44<1:41:16, 9.18s/it]
42%|████▏ | 472/1133 [1:10:55<1:49:44, 9.96s/it]
42%|████▏ | 473/1133 [1:11:01<1:34:11, 8.56s/it]
42%|████▏ | 474/1133 [1:11:04<1:17:06, 7.02s/it]
42%|████▏ | 475/1133 [1:11:11<1:17:29, 7.07s/it]
42%|████▏ | 476/1133 [1:11:23<1:33:16, 8.52s/it]
42%|████▏ | 477/1133 [1:11:36<1:46:14, 9.72s/it]
42%|████▏ | 478/1133 [1:11:38<1:21:49, 7.49s/it]
42%|████▏ | 479/1133 [1:11:48<1:30:02, 8.26s/it]
42%|████▏ | 480/1133 [1:12:26<3:06:11, 17.11s/it]
42%|████▏ | 481/1133 [1:12:28<2:16:49, 12.59s/it]
43%|████▎ | 482/1133 [1:12:36<2:02:54, 11.33s/it]
43%|████▎ | 483/1133 [1:12:40<1:36:46, 8.93s/it]
43%|████▎ | 484/1133 [1:12:47<1:31:56, 8.50s/it]
43%|████▎ | 485/1133 [1:13:03<1:57:24, 10.87s/it]
43%|████▎ | 486/1133 [1:13:07<1:33:48, 8.70s/it]
43%|████▎ | 487/1133 [1:13:24<1:59:50, 11.13s/it]
43%|████▎ | 488/1133 [1:13:34<1:56:33, 10.84s/it]
43%|████▎ | 489/1133 [1:13:38<1:34:03, 8.76s/it]
43%|████▎ | 490/1133 [1:13:40<1:12:19, 6.75s/it]
43%|████▎ | 491/1133 [1:13:51<1:24:21, 7.88s/it]
43%|████▎ | 492/1133 [1:13:58<1:24:23, 7.90s/it]
44%|████▎ | 493/1133 [1:14:03<1:12:18, 6.78s/it]
44%|████▎ | 494/1133 [1:14:04<55:27, 5.21s/it]
44%|████▎ | 495/1133 [1:14:09<52:57, 4.98s/it]
44%|████▍ | 496/1133 [1:14:18<1:07:41, 6.38s/it]
44%|████▍ | 497/1133 [1:14:26<1:12:46, 6.87s/it]
44%|████▍ | 498/1133 [1:14:34<1:14:50, 7.07s/it]
44%|████▍ | 499/1133 [1:14:45<1:26:35, 8.19s/it]
44%|████▍ | 500/1133 [1:14:58<1:43:20, 9.80s/it]
44%|████▍ | 501/1133 [1:15:19<2:18:50, 13.18s/it]
44%|████▍ | 502/1133 [1:15:26<1:56:50, 11.11s/it]
44%|████▍ | 503/1133 [1:15:39<2:03:26, 11.76s/it]
44%|████▍ | 504/1133 [1:15:47<1:52:44, 10.75s/it]
45%|████▍ | 505/1133 [1:15:51<1:30:06, 8.61s/it]
45%|████▍ | 506/1133 [1:15:56<1:18:42, 7.53s/it]
45%|████▍ | 507/1133 [1:16:11<1:42:55, 9.86s/it]
45%|████▍ | 508/1133 [1:16:47<3:05:29, 17.81s/it]
45%|████▍ | 509/1133 [1:16:59<2:45:01, 15.87s/it]
45%|████▌ | 510/1133 [1:17:02<2:04:08, 11.96s/it]
45%|████▌ | 511/1133 [1:17:06<1:39:47, 9.63s/it]
45%|████▌ | 512/1133 [1:17:09<1:18:31, 7.59s/it]
45%|████▌ | 513/1133 [1:17:27<1:52:44, 10.91s/it]
45%|████▌ | 514/1133 [1:18:01<3:01:56, 17.64s/it]
45%|████▌ | 515/1133 [1:18:14<2:46:59, 16.21s/it]
46%|████▌ | 516/1133 [1:18:24<2:27:52, 14.38s/it]
46%|████▌ | 517/1133 [1:18:29<2:01:05, 11.79s/it]
46%|████▌ | 518/1133 [1:18:33<1:34:07, 9.18s/it]
46%|████▌ | 519/1133 [1:18:58<2:24:03, 14.08s/it]
46%|████▌ | 520/1133 [1:19:08<2:11:07, 12.83s/it]
46%|████▌ | 521/1133 [1:19:20<2:08:08, 12.56s/it]
46%|████▌ | 522/1133 [1:19:21<1:33:28, 9.18s/it]
46%|████▌ | 523/1133 [1:19:32<1:37:06, 9.55s/it]
46%|████▌ | 524/1133 [1:19:48<1:57:59, 11.62s/it]
46%|████▋ | 525/1133 [1:19:54<1:41:57, 10.06s/it]
46%|████▋ | 526/1133 [1:19:59<1:25:31, 8.45s/it]
47%|████▋ | 527/1133 [1:20:00<1:03:39, 6.30s/it]
47%|████▋ | 528/1133 [1:20:02<50:42, 5.03s/it]
47%|████▋ | 529/1133 [1:20:27<1:48:14, 10.75s/it]
47%|████▋ | 530/1133 [1:20:30<1:24:57, 8.45s/it]
47%|████▋ | 531/1133 [1:20:37<1:20:46, 8.05s/it]
47%|████▋ | 532/1133 [1:20:38<1:01:04, 6.10s/it]
47%|████▋ | 533/1133 [1:20:46<1:07:10, 6.72s/it]
47%|████▋ | 534/1133 [1:20:50<57:44, 5.78s/it]
47%|████▋ | 535/1133 [1:20:55<55:20, 5.55s/it]
47%|████▋ | 536/1133 [1:21:13<1:33:18, 9.38s/it]
47%|████▋ | 537/1133 [1:21:21<1:28:01, 8.86s/it]
47%|████▋ | 538/1133 [1:21:38<1:51:22, 11.23s/it]
48%|████▊ | 539/1133 [1:21:46<1:41:23, 10.24s/it]
48%|████▊ | 540/1133 [1:21:49<1:20:00, 8.09s/it]
48%|████▊ | 541/1133 [1:22:06<1:45:26, 10.69s/it]
48%|████▊ | 542/1133 [1:22:10<1:26:54, 8.82s/it]
48%|████▊ | 543/1133 [1:22:13<1:08:19, 6.95s/it]
48%|████▊ | 544/1133 [1:22:24<1:21:50, 8.34s/it]
48%|████▊ | 545/1133 [1:22:32<1:20:47, 8.24s/it]
48%|████▊ | 546/1133 [1:22:39<1:14:53, 7.65s/it]
48%|████▊ | 547/1133 [1:22:44<1:09:13, 7.09s/it]
48%|████▊ | 548/1133 [1:22:48<58:54, 6.04s/it]
48%|████▊ | 549/1133 [1:22:53<56:34, 5.81s/it]
49%|████▊ | 550/1133 [1:23:00<59:12, 6.09s/it]
49%|████▊ | 551/1133 [1:23:10<1:10:06, 7.23s/it]
49%|████▊ | 552/1133 [1:23:12<54:12, 5.60s/it]
49%|████▉ | 553/1133 [1:23:24<1:14:14, 7.68s/it]
49%|████▉ | 554/1133 [1:23:28<1:03:16, 6.56s/it]
49%|████▉ | 555/1133 [1:23:31<53:07, 5.51s/it]
49%|████▉ | 556/1133 [1:23:35<48:15, 5.02s/it]
49%|████▉ | 557/1133 [1:24:11<2:16:27, 14.21s/it]
49%|████▉ | 558/1133 [1:24:18<1:55:35, 12.06s/it]
49%|████▉ | 559/1133 [1:24:30<1:56:01, 12.13s/it]
49%|████▉ | 560/1133 [1:24:39<1:47:41, 11.28s/it]
50%|████▉ | 561/1133 [1:24:42<1:21:51, 8.59s/it]
50%|████▉ | 562/1133 [1:24:47<1:12:10, 7.58s/it]
50%|████▉ | 563/1133 [1:24:51<1:02:09, 6.54s/it]
50%|████▉ | 564/1133 [1:24:58<1:02:33, 6.60s/it]
50%|████▉ | 565/1133 [1:25:14<1:29:38, 9.47s/it]
50%|████▉ | 566/1133 [1:25:20<1:19:16, 8.39s/it]
50%|█████ | 567/1133 [1:25:27<1:14:42, 7.92s/it]
50%|█████ | 568/1133 [1:25:28<57:15, 6.08s/it]
50%|█████ | 569/1133 [1:25:31<46:31, 4.95s/it]
50%|█████ | 570/1133 [1:25:38<52:08, 5.56s/it]
50%|█████ | 571/1133 [1:25:43<50:22, 5.38s/it]
50%|█████ | 572/1133 [1:25:44<38:48, 4.15s/it]
51%|█████ | 573/1133 [1:25:49<42:03, 4.51s/it]
51%|█████ | 574/1133 [1:26:02<1:04:55, 6.97s/it]
51%|█████ | 575/1133 [1:26:05<53:58, 5.80s/it]
51%|█████ | 576/1133 [1:26:16<1:08:17, 7.36s/it]
51%|█████ | 577/1133 [1:26:27<1:18:57, 8.52s/it]
51%|█████ | 578/1133 [1:26:40<1:29:45, 9.70s/it]
51%|█████ | 579/1133 [1:26:46<1:20:36, 8.73s/it]
51%|█████ | 580/1133 [1:26:58<1:29:33, 9.72s/it]
51%|█████▏ | 581/1133 [1:27:07<1:27:13, 9.48s/it]
51%|█████▏ | 582/1133 [1:27:15<1:22:53, 9.03s/it]
51%|█████▏ | 583/1133 [1:27:54<2:44:28, 17.94s/it]
52%|█████▏ | 584/1133 [1:28:06<2:28:24, 16.22s/it]
52%|█████▏ | 585/1133 [1:28:15<2:08:47, 14.10s/it]
52%|█████▏ | 586/1133 [1:28:23<1:50:33, 12.13s/it]
52%|█████▏ | 587/1133 [1:28:31<1:40:29, 11.04s/it]
52%|█████▏ | 588/1133 [1:28:37<1:24:54, 9.35s/it]
52%|█████▏ | 589/1133 [1:28:44<1:20:39, 8.90s/it]
52%|█████▏ | 590/1133 [1:28:48<1:04:44, 7.15s/it]
52%|█████▏ | 591/1133 [1:29:01<1:21:05, 8.98s/it]
52%|█████▏ | 592/1133 [1:29:05<1:07:48, 7.52s/it]
52%|█████▏ | 593/1133 [1:29:12<1:06:59, 7.44s/it]
52%|█████▏ | 594/1133 [1:29:14<53:02, 5.90s/it]
53%|█████▎ | 595/1133 [1:29:49<2:09:09, 14.40s/it]
53%|█████▎ | 596/1133 [1:30:15<2:41:10, 18.01s/it]
53%|█████▎ | 597/1133 [1:30:22<2:12:10, 14.79s/it]
53%|█████▎ | 598/1133 [1:30:26<1:41:17, 11.36s/it]
53%|█████▎ | 599/1133 [1:30:32<1:27:32, 9.84s/it]
53%|█████▎ | 600/1133 [1:30:46<1:38:19, 11.07s/it]
53%|█████▎ | 601/1133 [1:31:00<1:44:43, 11.81s/it]
53%|█████▎ | 602/1133 [1:31:04<1:26:01, 9.72s/it]
53%|█████▎ | 603/1133 [1:31:13<1:21:54, 9.27s/it]
53%|█████▎ | 604/1133 [1:31:20<1:17:12, 8.76s/it]
53%|█████▎ | 605/1133 [1:31:28<1:13:48, 8.39s/it]
53%|█████▎ | 606/1133 [1:31:32<1:01:48, 7.04s/it]
54%|█████▎ | 607/1133 [1:31:40<1:05:19, 7.45s/it]
54%|█████▎ | 608/1133 [1:31:46<1:01:31, 7.03s/it]
54%|█████▍ | 609/1133 [1:31:55<1:06:08, 7.57s/it]
54%|█████▍ | 610/1133 [1:31:59<56:58, 6.54s/it]
54%|█████▍ | 611/1133 [1:32:13<1:17:24, 8.90s/it]
54%|█████▍ | 612/1133 [1:32:22<1:17:41, 8.95s/it]
54%|█████▍ | 613/1133 [1:32:43<1:46:49, 12.33s/it]
54%|█████▍ | 614/1133 [1:32:50<1:33:54, 10.86s/it]
54%|█████▍ | 615/1133 [1:32:55<1:17:16, 8.95s/it]
54%|█████▍ | 616/1133 [1:33:03<1:16:54, 8.93s/it]
54%|█████▍ | 617/1133 [1:33:06<1:01:01, 7.10s/it]
55%|█████▍ | 618/1133 [1:33:08<47:15, 5.51s/it]
55%|█████▍ | 619/1133 [1:33:12<42:56, 5.01s/it]
55%|█████▍ | 620/1133 [1:33:57<2:25:03, 16.97s/it]
55%|█████▍ | 621/1133 [1:34:02<1:53:26, 13.29s/it]
55%|█████▍ | 622/1133 [1:34:17<1:59:39, 14.05s/it]
55%|█████▍ | 623/1133 [1:34:25<1:43:10, 12.14s/it]
55%|█████▌ | 624/1133 [1:34:28<1:19:16, 9.35s/it]
55%|█████▌ | 625/1133 [1:34:32<1:05:19, 7.72s/it]
55%|█████▌ | 626/1133 [1:34:38<1:01:42, 7.30s/it]
55%|█████▌ | 627/1133 [1:34:51<1:16:15, 9.04s/it]
55%|█████▌ | 628/1133 [1:35:00<1:16:33, 9.10s/it]
56%|█████▌ | 629/1133 [1:35:26<1:56:51, 13.91s/it]
56%|█████▌ | 630/1133 [1:35:29<1:30:42, 10.82s/it]
56%|█████▌ | 631/1133 [1:35:33<1:13:57, 8.84s/it]
56%|█████▌ | 632/1133 [1:35:37<1:00:02, 7.19s/it]
56%|█████▌ | 633/1133 [1:35:46<1:05:51, 7.90s/it]
56%|█████▌ | 634/1133 [1:35:49<52:24, 6.30s/it]
56%|█████▌ | 635/1133 [1:35:54<48:23, 5.83s/it]
56%|█████▌ | 636/1133 [1:35:56<38:54, 4.70s/it]
56%|█████▌ | 637/1133 [1:36:00<38:54, 4.71s/it]
56%|█████▋ | 638/1133 [1:36:15<1:03:30, 7.70s/it]
56%|█████▋ | 639/1133 [1:36:16<47:31, 5.77s/it]
56%|█████▋ | 640/1133 [1:36:20<42:04, 5.12s/it]
57%|█████▋ | 641/1133 [1:36:26<44:59, 5.49s/it]
57%|█████▋ | 642/1133 [1:36:48<1:25:35, 10.46s/it]
57%|█████▋ | 643/1133 [1:36:59<1:26:46, 10.63s/it]
57%|█████▋ | 644/1133 [1:37:10<1:25:31, 10.49s/it]
57%|█████▋ | 645/1133 [1:37:19<1:22:56, 10.20s/it]
57%|█████▋ | 646/1133 [1:37:22<1:06:05, 8.14s/it]
57%|█████▋ | 647/1133 [1:37:26<54:56, 6.78s/it]
57%|█████▋ | 648/1133 [1:37:35<1:00:30, 7.48s/it]
57%|█████▋ | 649/1133 [1:37:39<51:36, 6.40s/it]
57%|█████▋ | 650/1133 [1:38:12<1:56:17, 14.45s/it]
57%|█████▋ | 651/1133 [1:38:14<1:24:56, 10.57s/it]
58%|█████▊ | 652/1133 [1:38:18<1:08:37, 8.56s/it]
58%|█████▊ | 653/1133 [1:38:21<55:19, 6.92s/it]
58%|█████▊ | 654/1133 [1:38:27<53:12, 6.67s/it]
58%|█████▊ | 655/1133 [1:38:38<1:04:16, 8.07s/it]
58%|█████▊ | 656/1133 [1:38:40<49:10, 6.19s/it]
58%|█████▊ | 657/1133 [1:39:00<1:21:40, 10.30s/it]
58%|█████▊ | 658/1133 [1:39:16<1:34:39, 11.96s/it]
58%|█████▊ | 659/1133 [1:39:18<1:11:35, 9.06s/it]
58%|█████▊ | 660/1133 [1:39:19<53:38, 6.81s/it]
58%|█████▊ | 661/1133 [1:39:26<53:10, 6.76s/it]
58%|█████▊ | 662/1133 [1:39:34<55:54, 7.12s/it]
59%|█████▊ | 663/1133 [1:39:40<51:51, 6.62s/it]
59%|█████▊ | 664/1133 [1:39:46<51:13, 6.55s/it]
59%|█████▊ | 665/1133 [1:39:55<57:03, 7.31s/it]
59%|█████▉ | 666/1133 [1:40:04<1:00:29, 7.77s/it]
59%|█████▉ | 667/1133 [1:40:10<57:35, 7.41s/it]
59%|█████▉ | 668/1133 [1:40:16<53:50, 6.95s/it]
59%|█████▉ | 669/1133 [1:40:19<44:10, 5.71s/it]
59%|█████▉ | 670/1133 [1:40:27<50:02, 6.48s/it]
59%|█████▉ | 671/1133 [1:40:31<43:51, 5.70s/it]
59%|█████▉ | 672/1133 [1:40:35<40:07, 5.22s/it]
59%|█████▉ | 673/1133 [1:40:54<1:09:56, 9.12s/it]
59%|█████▉ | 674/1133 [1:41:03<1:09:48, 9.12s/it]
60%|█████▉ | 675/1133 [1:41:09<1:03:51, 8.37s/it]
60%|█████▉ | 676/1133 [1:41:14<56:20, 7.40s/it]
60%|█████▉ | 677/1133 [1:41:20<51:30, 6.78s/it]
60%|█████▉ | 678/1133 [1:41:26<49:32, 6.53s/it]
60%|█████▉ | 679/1133 [1:41:30<44:07, 5.83s/it]
60%|██████ | 680/1133 [1:41:35<42:53, 5.68s/it]
60%|██████ | 681/1133 [1:41:41<42:19, 5.62s/it]
60%|██████ | 682/1133 [1:41:45<39:04, 5.20s/it]
60%|██████ | 683/1133 [1:41:58<55:56, 7.46s/it]
60%|██████ | 684/1133 [1:42:01<45:24, 6.07s/it]
60%|██████ | 685/1133 [1:42:08<48:37, 6.51s/it]
61%|██████ | 686/1133 [1:42:10<37:58, 5.10s/it]
61%|██████ | 687/1133 [1:42:20<49:30, 6.66s/it]
61%|██████ | 688/1133 [1:42:23<40:17, 5.43s/it]
61%|██████ | 689/1133 [1:42:30<45:10, 6.11s/it]
61%|██████ | 690/1133 [1:42:33<38:22, 5.20s/it]
61%|██████ | 691/1133 [1:42:35<30:11, 4.10s/it]
61%|██████ | 692/1133 [1:42:41<35:08, 4.78s/it]
61%|██████ | 693/1133 [1:42:51<46:06, 6.29s/it]
61%|██████▏ | 694/1133 [1:43:03<57:11, 7.82s/it]
61%|██████▏ | 695/1133 [1:43:13<1:02:11, 8.52s/it]
61%|██████▏ | 696/1133 [1:43:20<59:25, 8.16s/it]
62%|██████▏ | 697/1133 [1:43:31<1:05:31, 9.02s/it]
62%|██████▏ | 698/1133 [1:43:49<1:24:49, 11.70s/it]
62%|██████▏ | 699/1133 [1:43:54<1:10:10, 9.70s/it]
62%|██████▏ | 700/1133 [1:44:04<1:11:00, 9.84s/it]
62%|██████▏ | 701/1133 [1:44:14<1:11:29, 9.93s/it]
62%|██████▏ | 702/1133 [1:44:53<2:13:31, 18.59s/it]
62%|██████▏ | 703/1133 [1:45:01<1:50:56, 15.48s/it]
62%|██████▏ | 704/1133 [1:45:06<1:27:19, 12.21s/it]
62%|██████▏ | 705/1133 [1:45:14<1:18:56, 11.07s/it]
62%|██████▏ | 706/1133 [1:45:30<1:29:04, 12.52s/it]
62%|██████▏ | 707/1133 [1:45:38<1:18:13, 11.02s/it]
62%|██████▏ | 708/1133 [1:45:52<1:24:01, 11.86s/it]
63%|██████▎ | 709/1133 [1:45:59<1:13:44, 10.44s/it]
63%|██████▎ | 710/1133 [1:46:05<1:05:27, 9.28s/it]
63%|██████▎ | 711/1133 [1:46:13<1:01:18, 8.72s/it]
63%|██████▎ | 712/1133 [1:46:24<1:06:26, 9.47s/it]
63%|██████▎ | 713/1133 [1:46:28<53:57, 7.71s/it]
63%|██████▎ | 714/1133 [1:46:33<49:30, 7.09s/it]
63%|██████▎ | 715/1133 [1:46:40<47:45, 6.86s/it]
63%|██████▎ | 716/1133 [1:46:45<44:03, 6.34s/it]
63%|██████▎ | 717/1133 [1:46:46<34:30, 4.98s/it]
63%|██████▎ | 718/1133 [1:46:53<36:50, 5.33s/it]
63%|██████▎ | 719/1133 [1:46:58<36:28, 5.29s/it]
64%|██████▎ | 720/1133 [1:47:06<41:27, 6.02s/it]
64%|██████▎ | 721/1133 [1:47:09<35:50, 5.22s/it]
64%|██████▎ | 722/1133 [1:47:17<40:44, 5.95s/it]
64%|██████▍ | 723/1133 [1:47:26<47:29, 6.95s/it]
64%|██████▍ | 724/1133 [1:47:39<1:00:19, 8.85s/it]
64%|██████▍ | 725/1133 [1:47:57<1:18:53, 11.60s/it]
64%|██████▍ | 726/1133 [1:48:05<1:10:35, 10.41s/it]
64%|██████▍ | 727/1133 [1:48:11<1:01:54, 9.15s/it]
64%|██████▍ | 728/1133 [1:48:29<1:20:45, 11.96s/it]
64%|██████▍ | 729/1133 [1:48:41<1:18:58, 11.73s/it]
64%|██████▍ | 730/1133 [1:48:43<59:47, 8.90s/it]
65%|██████▍ | 731/1133 [1:48:52<1:00:13, 8.99s/it]
65%|██████▍ | 732/1133 [1:48:58<52:48, 7.90s/it]
65%|██████▍ | 733/1133 [1:49:09<59:16, 8.89s/it]
65%|██████▍ | 734/1133 [1:49:13<49:39, 7.47s/it]
65%|██████▍ | 735/1133 [1:49:29<1:06:15, 9.99s/it]
65%|██████▍ | 736/1133 [1:49:38<1:04:38, 9.77s/it]
65%|██████▌ | 737/1133 [1:49:42<53:32, 8.11s/it]
65%|██████▌ | 738/1133 [1:49:56<1:03:57, 9.71s/it]
65%|██████▌ | 739/1133 [1:49:58<48:41, 7.42s/it]
65%|██████▌ | 740/1133 [1:50:05<49:01, 7.48s/it]
65%|██████▌ | 741/1133 [1:50:10<43:16, 6.62s/it]
65%|██████▌ | 742/1133 [1:50:17<43:10, 6.62s/it]
66%|██████▌ | 743/1133 [1:50:23<41:45, 6.43s/it]
66%|██████▌ | 744/1133 [1:50:29<41:25, 6.39s/it]
66%|██████▌ | 745/1133 [1:50:44<58:33, 9.06s/it]
66%|██████▌ | 746/1133 [1:50:58<1:08:11, 10.57s/it]
66%|██████▌ | 747/1133 [1:51:03<55:45, 8.67s/it]
66%|██████▌ | 748/1133 [1:51:22<1:16:18, 11.89s/it]
66%|██████▌ | 749/1133 [1:51:34<1:16:27, 11.95s/it]
66%|██████▌ | 750/1133 [1:51:42<1:08:45, 10.77s/it]
66%|██████▋ | 751/1133 [1:51:49<1:00:29, 9.50s/it]
66%|██████▋ | 752/1133 [1:51:55<54:47, 8.63s/it]
66%|██████▋ | 753/1133 [1:52:01<49:51, 7.87s/it]
67%|██████▋ | 754/1133 [1:52:24<1:17:46, 12.31s/it]
67%|██████▋ | 755/1133 [1:52:38<1:20:31, 12.78s/it]
67%|██████▋ | 756/1133 [1:52:43<1:05:07, 10.37s/it]
67%|██████▋ | 757/1133 [1:52:48<55:52, 8.92s/it]
67%|██████▋ | 758/1133 [1:53:08<1:16:34, 12.25s/it]
67%|██████▋ | 759/1133 [1:53:16<1:08:00, 10.91s/it]
67%|██████▋ | 760/1133 [1:53:18<51:17, 8.25s/it]
67%|██████▋ | 761/1133 [1:53:30<58:05, 9.37s/it]
67%|██████▋ | 762/1133 [1:53:32<45:18, 7.33s/it]
67%|██████▋ | 763/1133 [1:53:38<41:42, 6.76s/it]
67%|██████▋ | 764/1133 [1:53:44<40:58, 6.66s/it]
68%|██████▊ | 765/1133 [1:53:52<43:09, 7.04s/it]
68%|██████▊ | 766/1133 [1:54:08<59:23, 9.71s/it]
68%|██████▊ | 767/1133 [1:54:15<54:23, 8.92s/it]
68%|██████▊ | 768/1133 [1:54:35<1:13:58, 12.16s/it]
68%|██████▊ | 769/1133 [1:54:55<1:27:28, 14.42s/it]
68%|██████▊ | 770/1133 [1:55:00<1:10:22, 11.63s/it]
68%|██████▊ | 771/1133 [1:55:09<1:05:41, 10.89s/it]
68%|██████▊ | 772/1133 [1:55:20<1:05:33, 10.90s/it]
68%|██████▊ | 773/1133 [1:55:28<59:45, 9.96s/it]
68%|██████▊ | 774/1133 [1:55:36<56:28, 9.44s/it]
68%|██████▊ | 775/1133 [1:56:23<2:04:01, 20.79s/it]
68%|██████▊ | 776/1133 [1:56:27<1:33:00, 15.63s/it]
69%|██████▊ | 777/1133 [1:56:36<1:20:46, 13.61s/it]
69%|██████▊ | 778/1133 [1:56:40<1:03:17, 10.70s/it]
69%|██████▉ | 779/1133 [1:56:41<47:20, 8.03s/it]
69%|██████▉ | 780/1133 [1:56:47<42:54, 7.29s/it]
69%|██████▉ | 781/1133 [1:57:02<57:20, 9.77s/it]
69%|██████▉ | 782/1133 [1:57:05<44:31, 7.61s/it]
69%|██████▉ | 783/1133 [1:57:21<58:44, 10.07s/it]
69%|██████▉ | 784/1133 [1:57:28<53:20, 9.17s/it]
69%|██████▉ | 785/1133 [1:57:34<47:39, 8.22s/it]
69%|██████▉ | 786/1133 [1:57:39<41:25, 7.16s/it]
69%|██████▉ | 787/1133 [1:57:55<57:17, 9.93s/it]
70%|██████▉ | 788/1133 [1:58:00<48:06, 8.37s/it]
70%|██████▉ | 789/1133 [1:58:01<36:12, 6.32s/it]
70%|██████▉ | 790/1133 [1:58:20<56:32, 9.89s/it]
70%|██████▉ | 791/1133 [1:58:26<50:11, 8.81s/it]
70%|██████▉ | 792/1133 [1:58:36<52:51, 9.30s/it]
70%|██████▉ | 793/1133 [1:59:00<1:17:05, 13.61s/it]
70%|███████ | 794/1133 [1:59:02<57:16, 10.14s/it]
70%|███████ | 795/1133 [1:59:05<45:38, 8.10s/it]
70%|███████ | 796/1133 [1:59:08<35:44, 6.36s/it]
70%|███████ | 797/1133 [1:59:12<32:53, 5.87s/it]
70%|███████ | 798/1133 [1:59:15<28:08, 5.04s/it]
71%|███████ | 799/1133 [1:59:22<30:33, 5.49s/it]
71%|███████ | 800/1133 [1:59:28<30:55, 5.57s/it]
71%|███████ | 801/1133 [1:59:34<31:34, 5.71s/it]
71%|███████ | 802/1133 [1:59:43<37:34, 6.81s/it]
71%|███████ | 803/1133 [1:59:49<36:09, 6.57s/it]
71%|███████ | 804/1133 [2:00:04<48:54, 8.92s/it]
71%|███████ | 805/1133 [2:00:11<46:50, 8.57s/it]
71%|███████ | 806/1133 [2:00:23<51:11, 9.39s/it]
71%|███████ | 807/1133 [2:00:28<43:53, 8.08s/it]
71%|███████▏ | 808/1133 [2:00:33<39:31, 7.30s/it]
71%|███████▏ | 809/1133 [2:00:40<38:16, 7.09s/it]
71%|███████▏ | 810/1133 [2:00:43<31:16, 5.81s/it]
72%|███████▏ | 811/1133 [2:00:45<25:58, 4.84s/it]
72%|███████▏ | 812/1133 [2:00:56<35:34, 6.65s/it]
72%|███████▏ | 813/1133 [2:01:02<33:51, 6.35s/it]
72%|███████▏ | 814/1133 [2:01:04<27:42, 5.21s/it]
72%|███████▏ | 815/1133 [2:01:20<44:11, 8.34s/it]
72%|███████▏ | 816/1133 [2:01:28<44:07, 8.35s/it]
72%|███████▏ | 817/1133 [2:01:32<37:22, 7.10s/it]
72%|███████▏ | 818/1133 [2:01:39<36:22, 6.93s/it]
72%|███████▏ | 819/1133 [2:01:47<38:47, 7.41s/it]
72%|███████▏ | 820/1133 [2:01:51<31:53, 6.11s/it]
72%|███████▏ | 821/1133 [2:01:52<24:39, 4.74s/it]
73%|███████▎ | 822/1133 [2:01:56<23:36, 4.55s/it]
73%|███████▎ | 823/1133 [2:02:09<35:58, 6.96s/it]
73%|███████▎ | 824/1133 [2:02:15<34:00, 6.60s/it]
73%|███████▎ | 825/1133 [2:02:18<28:28, 5.55s/it]
73%|███████▎ | 826/1133 [2:02:29<37:59, 7.43s/it]
73%|███████▎ | 827/1133 [2:02:33<32:00, 6.28s/it]
73%|███████▎ | 828/1133 [2:02:36<26:15, 5.17s/it]
73%|███████▎ | 829/1133 [2:02:58<52:07, 10.29s/it]
73%|███████▎ | 830/1133 [2:03:14<1:00:22, 11.95s/it]
73%|███████▎ | 831/1133 [2:03:26<1:00:17, 11.98s/it]
73%|███████▎ | 832/1133 [2:03:31<49:47, 9.93s/it]
74%|███████▎ | 833/1133 [2:03:57<1:13:27, 14.69s/it]
74%|███████▎ | 834/1133 [2:04:02<59:13, 11.88s/it]
74%|███████▎ | 835/1133 [2:04:12<55:57, 11.27s/it]
74%|███████▍ | 836/1133 [2:04:23<55:17, 11.17s/it]
74%|███████▍ | 837/1133 [2:04:55<1:26:39, 17.57s/it]
74%|███████▍ | 838/1133 [2:05:15<1:29:06, 18.12s/it]
74%|███████▍ | 839/1133 [2:05:21<1:11:28, 14.59s/it]
74%|███████▍ | 840/1133 [2:05:32<1:06:12, 13.56s/it]
74%|███████▍ | 841/1133 [2:05:40<57:21, 11.78s/it]
74%|███████▍ | 842/1133 [2:05:53<59:38, 12.30s/it]
74%|███████▍ | 843/1133 [2:05:58<48:05, 9.95s/it]
74%|███████▍ | 844/1133 [2:06:11<52:34, 10.92s/it]
75%|███████▍ | 845/1133 [2:06:18<47:08, 9.82s/it]
75%|███████▍ | 846/1133 [2:06:28<46:55, 9.81s/it]
75%|███████▍ | 847/1133 [2:06:36<43:51, 9.20s/it]
75%|███████▍ | 848/1133 [2:06:46<45:52, 9.66s/it]
75%|███████▍ | 849/1133 [2:06:49<35:16, 7.45s/it]
75%|███████▌ | 850/1133 [2:07:01<41:31, 8.80s/it]
75%|███████▌ | 851/1133 [2:07:03<31:29, 6.70s/it]
75%|███████▌ | 852/1133 [2:07:06<27:28, 5.86s/it]
75%|███████▌ | 853/1133 [2:07:16<32:23, 6.94s/it]
75%|███████▌ | 854/1133 [2:07:23<32:19, 6.95s/it]
75%|███████▌ | 855/1133 [2:07:32<35:46, 7.72s/it]
76%|███████▌ | 856/1133 [2:07:50<49:45, 10.78s/it]
76%|███████▌ | 857/1133 [2:08:09<1:00:23, 13.13s/it]
76%|███████▌ | 858/1133 [2:08:15<51:07, 11.15s/it]
76%|███████▌ | 859/1133 [2:08:25<48:04, 10.53s/it]
76%|███████▌ | 860/1133 [2:08:29<39:47, 8.75s/it]
76%|███████▌ | 861/1133 [2:08:53<1:00:32, 13.35s/it]
76%|███████▌ | 862/1133 [2:09:04<56:35, 12.53s/it]
76%|███████▌ | 863/1133 [2:09:23<1:05:23, 14.53s/it]
76%|███████▋ | 864/1133 [2:09:28<52:18, 11.67s/it]
76%|███████▋ | 865/1133 [2:09:36<47:32, 10.64s/it]
76%|███████▋ | 866/1133 [2:09:53<55:34, 12.49s/it]
77%|███████▋ | 867/1133 [2:10:05<55:16, 12.47s/it]
77%|███████▋ | 868/1133 [2:10:11<45:48, 10.37s/it]
77%|███████▋ | 869/1133 [2:10:15<37:30, 8.53s/it]
77%|███████▋ | 870/1133 [2:10:32<48:10, 10.99s/it]
77%|███████▋ | 871/1133 [2:10:36<38:39, 8.85s/it]
77%|███████▋ | 872/1133 [2:10:46<40:12, 9.24s/it]
77%|███████▋ | 873/1133 [2:10:51<35:12, 8.12s/it]
77%|███████▋ | 874/1133 [2:10:58<32:38, 7.56s/it]
77%|███████▋ | 875/1133 [2:11:14<44:18, 10.30s/it]
77%|███████▋ | 876/1133 [2:11:26<46:07, 10.77s/it]
77%|███████▋ | 877/1133 [2:11:36<45:08, 10.58s/it]
77%|███████▋ | 878/1133 [2:11:46<44:16, 10.42s/it]
78%|███████▊ | 879/1133 [2:11:53<38:53, 9.19s/it]
78%|███████▊ | 880/1133 [2:11:58<33:27, 7.93s/it]
78%|███████▊ | 881/1133 [2:12:03<29:17, 6.97s/it]
78%|███████▊ | 882/1133 [2:12:15<36:17, 8.68s/it]
78%|███████▊ | 883/1133 [2:12:22<33:30, 8.04s/it]
78%|███████▊ | 884/1133 [2:12:32<35:49, 8.63s/it]
78%|███████▊ | 885/1133 [2:12:39<33:41, 8.15s/it]
78%|███████▊ | 886/1133 [2:12:43<28:15, 6.87s/it]
78%|███████▊ | 887/1133 [2:13:00<41:26, 10.11s/it]
78%|███████▊ | 888/1133 [2:13:04<33:59, 8.33s/it]
78%|███████▊ | 889/1133 [2:13:16<37:54, 9.32s/it]
79%|███████▊ | 890/1133 [2:13:21<32:52, 8.12s/it]
79%|███████▊ | 891/1133 [2:13:26<28:14, 7.00s/it]
79%|███████▊ | 892/1133 [2:13:42<38:52, 9.68s/it]
79%|███████▉ | 893/1133 [2:13:58<47:11, 11.80s/it]
79%|███████▉ | 894/1133 [2:14:00<35:02, 8.80s/it]
79%|███████▉ | 895/1133 [2:14:12<37:53, 9.55s/it]
79%|███████▉ | 896/1133 [2:14:20<36:36, 9.27s/it]
79%|███████▉ | 897/1133 [2:14:23<29:09, 7.41s/it]
79%|███████▉ | 898/1133 [2:14:30<27:42, 7.08s/it]
79%|███████▉ | 899/1133 [2:14:37<28:09, 7.22s/it]
79%|███████▉ | 900/1133 [2:14:46<29:50, 7.68s/it]
80%|███████▉ | 901/1133 [2:14:53<29:15, 7.57s/it]
80%|███████▉ | 902/1133 [2:14:58<25:55, 6.73s/it]
80%|███████▉ | 903/1133 [2:15:07<28:36, 7.46s/it]
80%|███████▉ | 904/1133 [2:15:39<56:37, 14.84s/it]
80%|███████▉ | 905/1133 [2:15:55<57:32, 15.14s/it]
80%|███████▉ | 906/1133 [2:15:58<43:54, 11.60s/it]
80%|████████ | 907/1133 [2:16:04<37:10, 9.87s/it]
80%|████████ | 908/1133 [2:16:14<36:32, 9.74s/it]
80%|████████ | 909/1133 [2:16:20<32:08, 8.61s/it]
80%|████████ | 910/1133 [2:16:24<27:46, 7.47s/it]
80%|████████ | 911/1133 [2:16:30<25:04, 6.78s/it]
80%|████████ | 912/1133 [2:16:36<24:22, 6.62s/it]
81%|████████ | 913/1133 [2:16:42<23:51, 6.51s/it]
81%|████████ | 914/1133 [2:16:49<24:19, 6.67s/it]
81%|████████ | 915/1133 [2:16:55<23:51, 6.57s/it]
81%|████████ | 916/1133 [2:17:08<30:24, 8.41s/it]
81%|████████ | 917/1133 [2:17:21<34:49, 9.68s/it]
81%|████████ | 918/1133 [2:17:37<41:14, 11.51s/it]
81%|████████ | 919/1133 [2:17:40<32:02, 8.98s/it]
81%|████████ | 920/1133 [2:17:43<25:19, 7.13s/it]
81%|████████▏ | 921/1133 [2:17:50<25:04, 7.10s/it]
81%|████████▏ | 922/1133 [2:17:53<21:32, 6.12s/it]
81%|████████▏ | 923/1133 [2:17:59<20:50, 5.95s/it]
82%|████████▏ | 924/1133 [2:18:03<19:13, 5.52s/it]
82%|████████▏ | 925/1133 [2:18:11<20:48, 6.00s/it]
82%|████████▏ | 926/1133 [2:18:18<21:50, 6.33s/it]
82%|████████▏ | 927/1133 [2:18:24<21:46, 6.34s/it]
82%|████████▏ | 928/1133 [2:18:28<18:51, 5.52s/it]
82%|████████▏ | 929/1133 [2:18:35<20:24, 6.00s/it]
82%|████████▏ | 930/1133 [2:18:45<24:30, 7.24s/it]
82%|████████▏ | 931/1133 [2:18:52<24:04, 7.15s/it]
82%|████████▏ | 932/1133 [2:18:58<22:45, 6.80s/it]
82%|████████▏ | 933/1133 [2:19:02<20:06, 6.03s/it]
82%|████████▏ | 934/1133 [2:19:04<16:02, 4.84s/it]
83%|████████▎ | 935/1133 [2:19:18<24:34, 7.45s/it]
83%|████████▎ | 936/1133 [2:19:24<22:56, 6.98s/it]
83%|████████▎ | 937/1133 [2:19:29<21:30, 6.58s/it]
83%|████████▎ | 938/1133 [2:19:35<20:20, 6.26s/it]
83%|████████▎ | 939/1133 [2:19:42<21:20, 6.60s/it]
83%|████████▎ | 940/1133 [2:19:52<23:58, 7.46s/it]
83%|████████▎ | 941/1133 [2:20:08<32:26, 10.14s/it]
83%|████████▎ | 942/1133 [2:20:25<38:55, 12.23s/it]
83%|████████▎ | 943/1133 [2:20:30<31:57, 10.09s/it]
83%|████████▎ | 944/1133 [2:20:52<42:59, 13.65s/it]
83%|████████▎ | 945/1133 [2:21:05<42:24, 13.54s/it]
83%|████████▎ | 946/1133 [2:21:21<43:55, 14.09s/it]
84%|████████▎ | 947/1133 [2:21:32<41:17, 13.32s/it]
84%|████████▎ | 948/1133 [2:21:50<45:06, 14.63s/it]
84%|████████▍ | 949/1133 [2:21:54<35:25, 11.55s/it]
84%|████████▍ | 950/1133 [2:21:57<27:29, 9.01s/it]
84%|████████▍ | 951/1133 [2:22:07<27:29, 9.07s/it]
84%|████████▍ | 952/1133 [2:22:13<25:01, 8.30s/it]
84%|████████▍ | 953/1133 [2:22:16<20:26, 6.81s/it]
84%|████████▍ | 954/1133 [2:22:19<16:03, 5.38s/it]
84%|████████▍ | 955/1133 [2:22:22<14:41, 4.95s/it]
84%|████████▍ | 956/1133 [2:22:30<17:04, 5.79s/it]
84%|████████▍ | 957/1133 [2:22:34<15:16, 5.21s/it]
85%|████████▍ | 958/1133 [2:22:40<16:09, 5.54s/it]
85%|████████▍ | 959/1133 [2:22:49<18:39, 6.43s/it]
85%|████████▍ | 960/1133 [2:22:57<20:00, 6.94s/it]
85%|████████▍ | 961/1133 [2:23:03<19:16, 6.73s/it]
85%|████████▍ | 962/1133 [2:23:25<31:37, 11.10s/it]
85%|████████▍ | 963/1133 [2:23:32<28:30, 10.06s/it]
85%|████████▌ | 964/1133 [2:23:36<23:18, 8.28s/it]
85%|████████▌ | 965/1133 [2:23:42<21:10, 7.57s/it]
85%|████████▌ | 966/1133 [2:23:46<17:31, 6.30s/it]
85%|████████▌ | 967/1133 [2:24:03<26:27, 9.57s/it]
85%|████████▌ | 968/1133 [2:24:07<21:35, 7.85s/it]
86%|████████▌ | 969/1133 [2:24:12<19:36, 7.17s/it]
86%|████████▌ | 970/1133 [2:24:16<17:08, 6.31s/it]
86%|████████▌ | 971/1133 [2:24:26<19:26, 7.20s/it]
86%|████████▌ | 972/1133 [2:24:32<18:14, 6.80s/it]
86%|████████▌ | 973/1133 [2:24:54<30:53, 11.58s/it]
86%|████████▌ | 974/1133 [2:24:58<24:20, 9.19s/it]
86%|████████▌ | 975/1133 [2:25:04<21:23, 8.12s/it]
86%|████████▌ | 976/1133 [2:25:07<17:42, 6.77s/it]
86%|████████▌ | 977/1133 [2:25:12<16:20, 6.29s/it]
86%|████████▋ | 978/1133 [2:25:19<16:32, 6.41s/it]
86%|████████▋ | 979/1133 [2:25:42<29:24, 11.46s/it]
86%|████████▋ | 980/1133 [2:25:47<23:50, 9.35s/it]
87%|████████▋ | 981/1133 [2:25:54<22:10, 8.75s/it]
87%|████████▋ | 982/1133 [2:26:04<23:01, 9.15s/it]
87%|████████▋ | 983/1133 [2:26:09<19:35, 7.83s/it]
87%|████████▋ | 984/1133 [2:26:11<15:32, 6.26s/it]
87%|████████▋ | 985/1133 [2:26:22<18:15, 7.40s/it]
87%|████████▋ | 986/1133 [2:26:36<23:29, 9.59s/it]
87%|████████▋ | 987/1133 [2:26:43<21:14, 8.73s/it]
87%|████████▋ | 988/1133 [2:26:55<23:20, 9.66s/it]
87%|████████▋ | 989/1133 [2:27:06<24:22, 10.16s/it]
87%|████████▋ | 990/1133 [2:27:47<45:49, 19.23s/it]
87%|████████▋ | 991/1133 [2:27:54<37:12, 15.72s/it]
88%|████████▊ | 992/1133 [2:27:59<29:03, 12.37s/it]
88%|████████▊ | 993/1133 [2:28:05<24:55, 10.69s/it]
88%|████████▊ | 994/1133 [2:28:20<27:18, 11.79s/it]
88%|████████▊ | 995/1133 [2:28:31<26:41, 11.61s/it]
88%|████████▊ | 996/1133 [2:28:36<21:49, 9.56s/it]
88%|████████▊ | 997/1133 [2:28:45<21:46, 9.61s/it]
88%|████████▊ | 998/1133 [2:28:52<19:51, 8.83s/it]
88%|████████▊ | 999/1133 [2:29:11<26:07, 11.70s/it]
88%|████████▊ | 1000/1133 [2:29:18<22:57, 10.36s/it]
88%|████████▊ | 1001/1133 [2:29:20<17:08, 7.79s/it]
88%|████████▊ | 1002/1133 [2:29:25<15:25, 7.07s/it]
89%|████████▊ | 1003/1133 [2:29:30<13:53, 6.41s/it]
89%|████████▊ | 1004/1133 [2:29:46<19:51, 9.24s/it]
89%|████████▊ | 1005/1133 [2:29:48<15:16, 7.16s/it]
89%|████████▉ | 1006/1133 [2:30:20<30:29, 14.41s/it]
89%|████████▉ | 1007/1133 [2:30:26<25:16, 12.03s/it]
89%|████████▉ | 1008/1133 [2:30:38<24:44, 11.87s/it]
89%|████████▉ | 1009/1133 [2:30:47<23:03, 11.16s/it]
89%|████████▉ | 1010/1133 [2:31:01<24:41, 12.04s/it]
89%|████████▉ | 1011/1133 [2:31:21<28:59, 14.26s/it]
89%|████████▉ | 1012/1133 [2:31:22<21:13, 10.52s/it]
89%|████████▉ | 1013/1133 [2:31:50<31:02, 15.52s/it]
89%|████████▉ | 1014/1133 [2:31:53<23:22, 11.79s/it]
90%|████████▉ | 1015/1133 [2:32:07<24:38, 12.53s/it]
90%|████████▉ | 1016/1133 [2:32:16<22:25, 11.50s/it]
90%|████████▉ | 1017/1133 [2:32:23<19:47, 10.24s/it]
90%|████████▉ | 1018/1133 [2:32:26<15:03, 7.86s/it]
90%|████████▉ | 1019/1133 [2:32:40<18:50, 9.91s/it]
90%|█████████ | 1020/1133 [2:32:55<21:16, 11.30s/it]
90%|█████████ | 1021/1133 [2:33:00<17:33, 9.41s/it]
90%|█████████ | 1022/1133 [2:33:11<18:14, 9.86s/it]
90%|█████████ | 1023/1133 [2:33:29<22:54, 12.49s/it]
90%|█████████ | 1024/1133 [2:33:36<19:29, 10.73s/it]
90%|█████████ | 1025/1133 [2:33:47<19:26, 10.80s/it]
91%|█████████ | 1026/1133 [2:33:54<17:19, 9.71s/it]
91%|█████████ | 1027/1133 [2:33:56<12:49, 7.26s/it]
91%|█████████ | 1028/1133 [2:34:00<10:55, 6.24s/it]
91%|█████████ | 1029/1133 [2:34:06<10:58, 6.33s/it]
91%|█████████ | 1030/1133 [2:34:15<12:13, 7.12s/it]
91%|█████████ | 1031/1133 [2:34:17<09:15, 5.45s/it]
91%|█████████ | 1032/1133 [2:34:23<09:41, 5.76s/it]
91%|█████████ | 1033/1133 [2:34:29<09:29, 5.69s/it]
91%|█████████▏| 1034/1133 [2:34:39<11:54, 7.21s/it]
91%|█████████▏| 1035/1133 [2:34:44<10:25, 6.38s/it]
91%|█████████▏| 1036/1133 [2:34:50<10:17, 6.37s/it]
92%|█████████▏| 1037/1133 [2:34:54<08:51, 5.54s/it]
92%|█████████▏| 1038/1133 [2:35:02<09:58, 6.30s/it]
92%|█████████▏| 1039/1133 [2:35:09<10:10, 6.49s/it]
92%|█████████▏| 1040/1133 [2:35:11<07:52, 5.08s/it]
92%|█████████▏| 1041/1133 [2:35:15<07:32, 4.92s/it]
92%|█████████▏| 1042/1133 [2:35:25<09:54, 6.53s/it]
92%|█████████▏| 1043/1133 [2:35:28<08:08, 5.42s/it]
92%|█████████▏| 1044/1133 [2:35:46<13:19, 8.98s/it]
92%|█████████▏| 1045/1133 [2:35:54<13:10, 8.98s/it]
92%|█████████▏| 1046/1133 [2:36:03<12:46, 8.81s/it]
92%|█████████▏| 1047/1133 [2:36:11<12:26, 8.68s/it]
92%|█████████▏| 1048/1133 [2:36:18<11:17, 7.97s/it]
93%|█████████▎| 1049/1133 [2:36:27<11:34, 8.27s/it]
93%|█████████▎| 1050/1133 [2:36:32<10:27, 7.56s/it]
93%|█████████▎| 1051/1133 [2:36:42<11:05, 8.12s/it]
93%|█████████▎| 1052/1133 [2:36:43<08:17, 6.14s/it]
93%|█████████▎| 1053/1133 [2:36:55<10:31, 7.89s/it]
93%|█████████▎| 1054/1133 [2:36:57<07:52, 5.99s/it]
93%|█████████▎| 1055/1133 [2:37:03<07:59, 6.14s/it]
93%|█████████▎| 1056/1133 [2:37:07<06:42, 5.22s/it]
93%|█████████▎| 1057/1133 [2:37:16<08:23, 6.63s/it]
93%|█████████▎| 1058/1133 [2:37:19<06:45, 5.41s/it]
93%|█████████▎| 1059/1133 [2:37:36<11:05, 8.99s/it]
94%|█████████▎| 1060/1133 [2:37:46<11:13, 9.23s/it]
94%|█████████▎| 1061/1133 [2:37:54<10:45, 8.97s/it]
94%|█████████▎| 1062/1133 [2:38:03<10:27, 8.84s/it]
94%|█████████▍| 1063/1133 [2:38:13<10:38, 9.13s/it]
94%|█████████▍| 1064/1133 [2:38:18<09:16, 8.06s/it]
94%|█████████▍| 1065/1133 [2:38:24<08:22, 7.39s/it]
94%|█████████▍| 1066/1133 [2:38:37<09:57, 8.92s/it]
94%|█████████▍| 1067/1133 [2:38:41<08:09, 7.42s/it]
94%|█████████▍| 1068/1133 [2:38:46<07:16, 6.71s/it]
94%|█████████▍| 1069/1133 [2:38:54<07:35, 7.11s/it]
94%|█████████▍| 1070/1133 [2:39:04<08:25, 8.03s/it]
95%|█████████▍| 1071/1133 [2:39:09<07:32, 7.29s/it]
95%|█████████▍| 1072/1133 [2:39:19<08:03, 7.93s/it]
95%|█████████▍| 1073/1133 [2:40:13<21:48, 21.80s/it]
95%|█████████▍| 1074/1133 [2:40:20<17:03, 17.35s/it]
95%|█████████▍| 1075/1133 [2:40:23<12:38, 13.07s/it]
95%|█████████▍| 1076/1133 [2:40:29<10:28, 11.03s/it]
95%|█████████▌| 1077/1133 [2:40:33<08:17, 8.88s/it]
95%|█████████▌| 1078/1133 [2:40:58<12:32, 13.69s/it]
95%|█████████▌| 1079/1133 [2:41:07<10:59, 12.21s/it]
95%|█████████▌| 1080/1133 [2:41:40<16:11, 18.33s/it]
95%|█████████▌| 1081/1133 [2:41:42<11:47, 13.60s/it]
95%|█████████▌| 1082/1133 [2:42:04<13:46, 16.20s/it]
96%|█████████▌| 1083/1133 [2:42:07<10:05, 12.11s/it]
96%|█████████▌| 1084/1133 [2:42:21<10:21, 12.68s/it]
96%|█████████▌| 1085/1133 [2:42:59<16:10, 20.22s/it]
96%|█████████▌| 1086/1133 [2:43:03<12:00, 15.33s/it]
96%|█████████▌| 1087/1133 [2:43:05<08:41, 11.35s/it]
96%|█████████▌| 1088/1133 [2:43:08<06:35, 8.79s/it]
96%|█████████▌| 1089/1133 [2:43:16<06:26, 8.78s/it]
96%|█████████▌| 1090/1133 [2:43:27<06:42, 9.37s/it]
96%|█████████▋| 1091/1133 [2:43:35<06:11, 8.85s/it]
96%|█████████▋| 1092/1133 [2:43:41<05:36, 8.20s/it]
96%|█████████▋| 1093/1133 [2:43:51<05:50, 8.76s/it]
97%|█████████▋| 1094/1133 [2:43:57<04:59, 7.67s/it]
97%|█████████▋| 1095/1133 [2:44:04<04:53, 7.71s/it]
97%|█████████▋| 1096/1133 [2:44:10<04:23, 7.12s/it]
97%|█████████▋| 1097/1133 [2:44:16<04:01, 6.69s/it]
97%|█████████▋| 1098/1133 [2:44:22<03:51, 6.61s/it]
97%|█████████▋| 1099/1133 [2:44:32<04:13, 7.47s/it]
97%|█████████▋| 1100/1133 [2:44:36<03:36, 6.57s/it]
97%|█████████▋| 1101/1133 [2:44:41<03:16, 6.15s/it]
97%|█████████▋| 1102/1133 [2:44:50<03:31, 6.81s/it]
97%|█████████▋| 1103/1133 [2:45:03<04:19, 8.65s/it]
97%|█████████▋| 1104/1133 [2:45:18<05:08, 10.63s/it]
98%|█████████▊| 1105/1133 [2:45:24<04:20, 9.30s/it]
98%|█████████▊| 1106/1133 [2:45:30<03:43, 8.29s/it]
98%|█████████▊| 1107/1133 [2:45:37<03:22, 7.78s/it]
98%|█████████▊| 1108/1133 [2:45:40<02:39, 6.37s/it]
98%|█████████▊| 1109/1133 [2:45:44<02:14, 5.62s/it]
98%|█████████▊| 1110/1133 [2:45:52<02:26, 6.38s/it]
98%|█████████▊| 1111/1133 [2:45:58<02:17, 6.25s/it]
98%|█████████▊| 1112/1133 [2:46:05<02:16, 6.50s/it]
98%|█████████▊| 1113/1133 [2:46:08<01:52, 5.63s/it]
98%|█████████▊| 1114/1133 [2:46:25<02:48, 8.88s/it]
98%|█████████▊| 1115/1133 [2:46:34<02:41, 8.99s/it]
98%|█████████▊| 1116/1133 [2:46:39<02:11, 7.72s/it]
99%|█████████▊| 1117/1133 [2:46:56<02:49, 10.62s/it]
99%|█████████▊| 1118/1133 [2:47:08<02:43, 10.91s/it]
99%|█████████▉| 1119/1133 [2:47:21<02:40, 11.47s/it]
99%|█████████▉| 1120/1133 [2:47:35<02:41, 12.39s/it]
99%|█████████▉| 1121/1133 [2:47:41<02:03, 10.31s/it]
99%|█████████▉| 1122/1133 [2:47:44<01:32, 8.37s/it]
99%|█████████▉| 1123/1133 [2:47:47<01:06, 6.63s/it]
99%|█████████▉| 1124/1133 [2:48:14<01:53, 12.63s/it]
99%|█████████▉| 1125/1133 [2:48:26<01:39, 12.47s/it]
99%|█████████▉| 1126/1133 [2:48:32<01:13, 10.52s/it]
99%|█████████▉| 1127/1133 [2:48:42<01:03, 10.56s/it]
100%|█████████▉| 1128/1133 [2:48:59<01:02, 12.51s/it]
100%|█████████▉| 1129/1133 [2:49:08<00:45, 11.42s/it]
100%|█████████▉| 1130/1133 [2:49:18<00:32, 10.81s/it]
100%|█████████▉| 1131/1133 [2:49:29<00:22, 11.04s/it]
100%|█████████▉| 1132/1133 [2:49:35<00:09, 9.54s/it]
100%|██████████| 1133/1133 [2:49:38<00:00, 7.45s/it]
100%|██████████| 1133/1133 [2:49:38<00:00, 8.98s/it]
-Batch output: ['Old Geng lifted his gun, squinted one of his triangular eyes, pulled the trigger, and the gun went off. The golden sparrows fell down like hailstones, and the iron pellets flew and ricocheted between the willow branches, making a rustling sound.']
-Qwen/Qwen2-72B-Instruct/shots-01 metrics: {'meteor': 0.4068727655718769, 'bleu_scores': {'bleu': 0.13151008586303575, 'precisions': [0.4338771593090211, 0.17213794934776114, 0.08670460424211071, 0.04619028819581524], 'brevity_penalty': 1.0, 'length_ratio': 1.0354421994037761, 'translation_length': 31260, 'reference_length': 30190}, 'rouge_scores': {'rouge1': 0.4533337050759828, 'rouge2': 0.2038991907718424, 'rougeL': 0.394535961214139, 'rougeLsum': 0.39516190072916624}, 'accuracy': 0.00176522506619594, 'correct_ids': [77, 364]}
-*** Evaluating with num_shots: 3
-loading train/test data files
-
Map: 0%| | 0/4528 [00:00, ? examples/s]
Map: 88%|████████▊ | 4000/4528 [00:00<00:00, 33417.22 examples/s]
Map: 100%|██████████| 4528/4528 [00:00<00:00, 32309.65 examples/s]
-
Map: 0%| | 0/1133 [00:00, ? examples/s]
Map: 100%|██████████| 1133/1133 [00:00<00:00, 28679.39 examples/s]
-DatasetDict({
- train: Dataset({
- features: ['chinese', 'english', 'text', 'prompt'],
- num_rows: 4528
- })
- test: Dataset({
- features: ['chinese', 'english', 'text', 'prompt'],
- num_rows: 1133
- })
-})
---------------------------------------------------
-chinese: 老耿端起枪,眯缝起一只三角眼,一搂扳机响了枪,冰雹般的金麻雀劈哩啪啦往下落,铁砂子在柳枝间飞迸着,嚓嚓有声。
---------------------------------------------------
-english: Old Geng picked up his shotgun, squinted, and pulled the trigger. Two sparrows crashed to the ground like hailstones as shotgun pellets tore noisily through the branches.
---------------------------------------------------
-text: <|im_start|>system
-You are a helpful assistant that translates Chinese to English.<|im_end|>
-<|im_start|>user
-You will be given a Chinese sentence to translate. If it is an incomplete sentence, or if you are unsure about the meaning, simply copy the input text as your output. Do not output any additional sentence such as explanation or reasoning.
-
-Example Translations:
-Chinese: 全仗着狐仙搭救。
-English: Because I was protected by a fox fairy.
-Chinese: 过后,表哥告诉她俩,这人是导演,在外国留过学的,还会编剧,今天拍的这戏,就是他自编自导的。
-English: He was the director, the cousin later told them. He had studied abroad and was also a screenwriter; in fact he had written and directed the scene they had earlier seen being filmed.
-Chinese: 这凤姐忽然想起一件事来,便向窗外叫:“蓉儿回来!”
-English: Xi-feng suddenly seemed to remember something, and called to him through the window, 'Rong, come back!'
-
-Chinese: 老耿端起枪,眯缝起一只三角眼,一搂扳机响了枪,冰雹般的金麻雀劈哩啪啦往下落,铁砂子在柳枝间飞迸着,嚓嚓有声。
-English:<|im_end|>
-<|im_start|>assistant
-Old Geng picked up his shotgun, squinted, and pulled the trigger. Two sparrows crashed to the ground like hailstones as shotgun pellets tore noisily through the branches.<|im_end|>
---------------------------------------------------
-prompt: <|im_start|>system
-You are a helpful assistant that translates Chinese to English.<|im_end|>
-<|im_start|>user
-You will be given a Chinese sentence to translate. If it is an incomplete sentence, or if you are unsure about the meaning, simply copy the input text as your output. Do not output any additional sentence such as explanation or reasoning.
-
-Example Translations:
-Chinese: 全仗着狐仙搭救。
-English: Because I was protected by a fox fairy.
-Chinese: 过后,表哥告诉她俩,这人是导演,在外国留过学的,还会编剧,今天拍的这戏,就是他自编自导的。
-English: He was the director, the cousin later told them. He had studied abroad and was also a screenwriter; in fact he had written and directed the scene they had earlier seen being filmed.
-Chinese: 这凤姐忽然想起一件事来,便向窗外叫:“蓉儿回来!”
-English: Xi-feng suddenly seemed to remember something, and called to him through the window, 'Rong, come back!'
-
-Chinese: 老耿端起枪,眯缝起一只三角眼,一搂扳机响了枪,冰雹般的金麻雀劈哩啪啦往下落,铁砂子在柳枝间飞迸着,嚓嚓有声。
-English:<|im_end|>
-<|im_start|>assistant
-
-
0%| | 0/1133 [00:00, ?it/s]
0%| | 1/1133 [00:20<6:34:54, 20.93s/it]
0%| | 2/1133 [00:45<7:10:10, 22.82s/it]
0%| | 3/1133 [01:31<10:31:14, 33.52s/it]
0%| | 4/1133 [01:49<8:34:04, 27.32s/it]
0%| | 5/1133 [02:06<7:27:09, 23.78s/it]
1%| | 6/1133 [02:16<5:58:57, 19.11s/it]
1%| | 7/1133 [02:33<5:42:13, 18.24s/it]
1%| | 8/1133 [03:27<9:15:34, 29.63s/it]
1%| | 9/1133 [03:33<6:56:14, 22.22s/it]
1%| | 10/1133 [03:36<5:08:58, 16.51s/it]
1%| | 11/1133 [03:42<4:04:20, 13.07s/it]
1%| | 12/1133 [03:59<4:26:07, 14.24s/it]
1%| | 13/1133 [04:03<3:33:18, 11.43s/it]
1%| | 14/1133 [04:05<2:39:07, 8.53s/it]
1%|▏ | 15/1133 [04:26<3:45:06, 12.08s/it]
1%|▏ | 16/1133 [04:32<3:12:03, 10.32s/it]
2%|▏ | 17/1133 [04:43<3:19:00, 10.70s/it]
2%|▏ | 18/1133 [05:00<3:49:20, 12.34s/it]
2%|▏ | 19/1133 [05:02<2:55:45, 9.47s/it]
2%|▏ | 20/1133 [05:16<3:17:20, 10.64s/it]
2%|▏ | 21/1133 [05:24<3:01:38, 9.80s/it]
2%|▏ | 22/1133 [05:42<3:50:10, 12.43s/it]
2%|▏ | 23/1133 [05:47<3:07:42, 10.15s/it]
2%|▏ | 24/1133 [05:54<2:50:31, 9.23s/it]
2%|▏ | 25/1133 [06:05<2:57:52, 9.63s/it]
2%|▏ | 26/1133 [06:21<3:37:43, 11.80s/it]
2%|▏ | 27/1133 [06:35<3:45:40, 12.24s/it]
2%|▏ | 28/1133 [06:37<2:51:30, 9.31s/it]
3%|▎ | 29/1133 [06:43<2:30:41, 8.19s/it]
3%|▎ | 30/1133 [06:46<2:04:06, 6.75s/it]
3%|▎ | 31/1133 [06:49<1:40:20, 5.46s/it]
3%|▎ | 32/1133 [07:05<2:38:30, 8.64s/it]
3%|▎ | 33/1133 [07:42<5:15:26, 17.21s/it]
3%|▎ | 34/1133 [07:56<4:58:36, 16.30s/it]
3%|▎ | 35/1133 [08:05<4:19:57, 14.21s/it]
3%|▎ | 36/1133 [08:15<3:53:23, 12.76s/it]
3%|▎ | 37/1133 [08:22<3:23:21, 11.13s/it]
3%|▎ | 38/1133 [08:28<2:53:40, 9.52s/it]
3%|▎ | 39/1133 [08:30<2:13:13, 7.31s/it]
4%|▎ | 40/1133 [08:41<2:31:43, 8.33s/it]
4%|▎ | 41/1133 [09:01<3:37:10, 11.93s/it]
4%|▎ | 42/1133 [09:04<2:50:24, 9.37s/it]
4%|▍ | 43/1133 [09:16<2:59:45, 9.89s/it]
4%|▍ | 44/1133 [09:24<2:53:33, 9.56s/it]
4%|▍ | 45/1133 [09:28<2:19:53, 7.71s/it]
4%|▍ | 46/1133 [09:45<3:12:37, 10.63s/it]
4%|▍ | 47/1133 [09:55<3:07:19, 10.35s/it]
4%|▍ | 48/1133 [09:58<2:26:01, 8.07s/it]
4%|▍ | 49/1133 [10:02<2:03:58, 6.86s/it]
4%|▍ | 50/1133 [10:07<1:53:35, 6.29s/it]
5%|▍ | 51/1133 [10:19<2:25:55, 8.09s/it]
5%|▍ | 52/1133 [10:39<3:31:14, 11.72s/it]
5%|▍ | 53/1133 [10:48<3:18:03, 11.00s/it]
5%|▍ | 54/1133 [10:52<2:40:10, 8.91s/it]
5%|▍ | 55/1133 [11:24<4:42:56, 15.75s/it]
5%|▍ | 56/1133 [11:35<4:17:27, 14.34s/it]
5%|▌ | 57/1133 [11:51<4:23:54, 14.72s/it]
5%|▌ | 58/1133 [12:04<4:14:27, 14.20s/it]
5%|▌ | 59/1133 [12:06<3:11:11, 10.68s/it]
5%|▌ | 60/1133 [12:26<4:01:42, 13.52s/it]
5%|▌ | 61/1133 [12:33<3:23:48, 11.41s/it]
5%|▌ | 62/1133 [12:38<2:50:00, 9.52s/it]
6%|▌ | 63/1133 [12:50<3:03:17, 10.28s/it]
6%|▌ | 64/1133 [13:02<3:10:43, 10.70s/it]
6%|▌ | 65/1133 [13:10<2:57:18, 9.96s/it]
6%|▌ | 66/1133 [13:22<3:06:33, 10.49s/it]
6%|▌ | 67/1133 [13:41<3:54:49, 13.22s/it]
6%|▌ | 68/1133 [14:05<4:48:16, 16.24s/it]
6%|▌ | 69/1133 [14:23<5:00:20, 16.94s/it]
6%|▌ | 70/1133 [14:33<4:20:41, 14.71s/it]
6%|▋ | 71/1133 [14:35<3:16:58, 11.13s/it]
6%|▋ | 72/1133 [14:40<2:44:01, 9.28s/it]
6%|▋ | 73/1133 [14:44<2:14:22, 7.61s/it]
7%|▋ | 74/1133 [14:47<1:48:40, 6.16s/it]
7%|▋ | 75/1133 [14:51<1:35:41, 5.43s/it]
7%|▋ | 76/1133 [14:58<1:44:13, 5.92s/it]
7%|▋ | 77/1133 [15:10<2:20:00, 7.96s/it]
7%|▋ | 78/1133 [15:14<1:57:28, 6.68s/it]
7%|▋ | 79/1133 [15:26<2:25:25, 8.28s/it]
7%|▋ | 80/1133 [15:31<2:06:11, 7.19s/it]
7%|▋ | 81/1133 [15:33<1:37:59, 5.59s/it]
7%|▋ | 82/1133 [15:36<1:24:45, 4.84s/it]
7%|▋ | 83/1133 [15:57<2:48:34, 9.63s/it]
7%|▋ | 84/1133 [15:59<2:12:23, 7.57s/it]
8%|▊ | 85/1133 [16:01<1:43:51, 5.95s/it]
8%|▊ | 86/1133 [16:08<1:48:41, 6.23s/it]
8%|▊ | 87/1133 [16:16<1:55:57, 6.65s/it]
8%|▊ | 88/1133 [16:30<2:34:33, 8.87s/it]
8%|▊ | 89/1133 [16:35<2:15:59, 7.82s/it]
8%|▊ | 90/1133 [16:49<2:48:22, 9.69s/it]
8%|▊ | 91/1133 [16:54<2:20:27, 8.09s/it]
8%|▊ | 92/1133 [17:00<2:11:28, 7.58s/it]
8%|▊ | 93/1133 [17:12<2:34:25, 8.91s/it]
8%|▊ | 94/1133 [17:19<2:23:42, 8.30s/it]
8%|▊ | 95/1133 [17:29<2:29:35, 8.65s/it]
8%|▊ | 96/1133 [17:44<3:06:21, 10.78s/it]
9%|▊ | 97/1133 [17:49<2:36:24, 9.06s/it]
9%|▊ | 98/1133 [17:54<2:13:23, 7.73s/it]
9%|▊ | 99/1133 [18:10<2:54:31, 10.13s/it]
9%|▉ | 100/1133 [18:13<2:17:59, 8.01s/it]
9%|▉ | 101/1133 [18:32<3:18:02, 11.51s/it]
9%|▉ | 102/1133 [18:56<4:18:37, 15.05s/it]
9%|▉ | 103/1133 [19:02<3:33:06, 12.41s/it]
9%|▉ | 104/1133 [19:05<2:44:53, 9.61s/it]
9%|▉ | 105/1133 [19:20<3:13:32, 11.30s/it]
9%|▉ | 106/1133 [20:28<8:00:51, 28.09s/it]
9%|▉ | 107/1133 [20:50<7:30:51, 26.37s/it]
10%|▉ | 108/1133 [20:58<5:55:01, 20.78s/it]
10%|▉ | 109/1133 [21:07<4:55:54, 17.34s/it]
10%|▉ | 110/1133 [21:29<5:19:50, 18.76s/it]
10%|▉ | 111/1133 [21:44<4:59:16, 17.57s/it]
10%|▉ | 112/1133 [22:17<6:19:44, 22.32s/it]
10%|▉ | 113/1133 [22:47<6:55:08, 24.42s/it]
10%|█ | 114/1133 [22:56<5:35:47, 19.77s/it]
10%|█ | 115/1133 [23:00<4:18:24, 15.23s/it]
10%|█ | 116/1133 [23:06<3:28:18, 12.29s/it]
10%|█ | 117/1133 [23:23<3:53:00, 13.76s/it]
10%|█ | 118/1133 [23:29<3:15:51, 11.58s/it]
11%|█ | 119/1133 [23:44<3:29:56, 12.42s/it]
11%|█ | 120/1133 [23:47<2:45:35, 9.81s/it]
11%|█ | 121/1133 [23:53<2:23:19, 8.50s/it]
11%|█ | 122/1133 [24:04<2:38:23, 9.40s/it]
11%|█ | 123/1133 [24:09<2:14:09, 7.97s/it]
11%|█ | 124/1133 [24:19<2:25:10, 8.63s/it]
11%|█ | 125/1133 [24:38<3:14:46, 11.59s/it]
11%|█ | 126/1133 [24:48<3:09:57, 11.32s/it]
11%|█ | 127/1133 [25:17<4:35:33, 16.44s/it]
11%|█▏ | 128/1133 [25:23<3:45:42, 13.48s/it]
11%|█▏ | 129/1133 [25:29<3:05:47, 11.10s/it]
11%|█▏ | 130/1133 [25:32<2:23:47, 8.60s/it]
12%|█▏ | 131/1133 [25:51<3:15:34, 11.71s/it]
12%|█▏ | 132/1133 [26:00<3:05:02, 11.09s/it]
12%|█▏ | 133/1133 [26:08<2:49:16, 10.16s/it]
12%|█▏ | 134/1133 [26:12<2:18:22, 8.31s/it]
12%|█▏ | 135/1133 [26:50<4:45:24, 17.16s/it]
12%|█▏ | 136/1133 [26:54<3:41:08, 13.31s/it]
12%|█▏ | 137/1133 [27:04<3:22:17, 12.19s/it]
12%|█▏ | 138/1133 [27:09<2:46:03, 10.01s/it]
12%|█▏ | 139/1133 [27:13<2:17:36, 8.31s/it]
12%|█▏ | 140/1133 [27:25<2:35:08, 9.37s/it]
12%|█▏ | 141/1133 [27:31<2:20:10, 8.48s/it]
13%|█▎ | 142/1133 [27:35<1:56:19, 7.04s/it]
13%|█▎ | 143/1133 [27:49<2:29:19, 9.05s/it]
13%|█▎ | 144/1133 [27:55<2:13:40, 8.11s/it]
13%|█▎ | 145/1133 [27:59<1:54:50, 6.97s/it]
13%|█▎ | 146/1133 [28:05<1:49:23, 6.65s/it]
13%|█▎ | 147/1133 [28:13<1:56:00, 7.06s/it]
13%|█▎ | 148/1133 [28:15<1:30:10, 5.49s/it]
13%|█▎ | 149/1133 [28:23<1:42:46, 6.27s/it]
13%|█▎ | 150/1133 [28:30<1:45:40, 6.45s/it]
13%|█▎ | 151/1133 [28:42<2:16:20, 8.33s/it]
13%|█▎ | 152/1133 [28:51<2:19:41, 8.54s/it]
14%|█▎ | 153/1133 [28:56<1:57:22, 7.19s/it]
14%|█▎ | 154/1133 [29:10<2:31:51, 9.31s/it]
14%|█▎ | 155/1133 [29:17<2:20:37, 8.63s/it]
14%|█▍ | 156/1133 [29:28<2:32:54, 9.39s/it]
14%|█▍ | 157/1133 [29:47<3:18:55, 12.23s/it]
14%|█▍ | 158/1133 [30:01<3:26:48, 12.73s/it]
14%|█▍ | 159/1133 [30:14<3:28:30, 12.84s/it]
14%|█▍ | 160/1133 [30:21<3:01:06, 11.17s/it]
14%|█▍ | 161/1133 [30:23<2:17:04, 8.46s/it]
14%|█▍ | 162/1133 [30:29<2:03:01, 7.60s/it]
14%|█▍ | 163/1133 [30:39<2:14:55, 8.35s/it]
14%|█▍ | 164/1133 [30:43<1:52:16, 6.95s/it]
15%|█▍ | 165/1133 [30:50<1:53:49, 7.05s/it]
15%|█▍ | 166/1133 [31:02<2:18:42, 8.61s/it]
15%|█▍ | 167/1133 [31:10<2:17:13, 8.52s/it]
15%|█▍ | 168/1133 [31:36<3:37:25, 13.52s/it]
15%|█▍ | 169/1133 [31:41<2:58:38, 11.12s/it]
15%|█▌ | 170/1133 [31:49<2:40:18, 9.99s/it]
15%|█▌ | 171/1133 [31:51<2:03:55, 7.73s/it]
15%|█▌ | 172/1133 [31:54<1:41:27, 6.33s/it]
15%|█▌ | 173/1133 [31:59<1:34:40, 5.92s/it]
15%|█▌ | 174/1133 [32:02<1:20:56, 5.06s/it]
15%|█▌ | 175/1133 [32:11<1:41:01, 6.33s/it]
16%|█▌ | 176/1133 [32:15<1:29:49, 5.63s/it]
16%|█▌ | 177/1133 [32:23<1:37:01, 6.09s/it]
16%|█▌ | 178/1133 [32:55<3:41:34, 13.92s/it]
16%|█▌ | 179/1133 [33:02<3:09:10, 11.90s/it]
16%|█▌ | 180/1133 [33:19<3:35:28, 13.57s/it]
16%|█▌ | 181/1133 [33:32<3:32:20, 13.38s/it]
16%|█▌ | 182/1133 [33:51<3:55:21, 14.85s/it]
16%|█▌ | 183/1133 [34:00<3:28:40, 13.18s/it]
16%|█▌ | 184/1133 [34:06<2:57:17, 11.21s/it]
16%|█▋ | 185/1133 [34:11<2:27:25, 9.33s/it]
16%|█▋ | 186/1133 [34:38<3:47:44, 14.43s/it]
17%|█▋ | 187/1133 [34:58<4:14:41, 16.15s/it]
17%|█▋ | 188/1133 [35:20<4:43:26, 18.00s/it]
17%|█▋ | 189/1133 [36:42<9:42:48, 37.04s/it]
17%|█▋ | 190/1133 [36:53<7:39:22, 29.23s/it]
17%|█▋ | 191/1133 [37:05<6:17:09, 24.02s/it]
17%|█▋ | 192/1133 [37:20<5:36:23, 21.45s/it]
17%|█▋ | 193/1133 [37:38<5:22:09, 20.56s/it]
17%|█▋ | 194/1133 [37:45<4:13:48, 16.22s/it]
17%|█▋ | 195/1133 [37:49<3:16:15, 12.55s/it]
17%|█▋ | 196/1133 [37:52<2:33:03, 9.80s/it]
17%|█▋ | 197/1133 [38:06<2:53:54, 11.15s/it]
17%|█▋ | 198/1133 [38:11<2:21:46, 9.10s/it]
18%|█▊ | 199/1133 [38:32<3:18:52, 12.78s/it]
18%|█▊ | 200/1133 [38:33<2:26:13, 9.40s/it]
18%|█▊ | 201/1133 [38:44<2:32:05, 9.79s/it]
18%|█▊ | 202/1133 [38:46<1:54:52, 7.40s/it]
18%|█▊ | 203/1133 [38:48<1:31:43, 5.92s/it]
18%|█▊ | 204/1133 [39:12<2:53:34, 11.21s/it]
18%|█▊ | 205/1133 [39:14<2:11:21, 8.49s/it]
18%|█▊ | 206/1133 [39:19<1:56:09, 7.52s/it]
18%|█▊ | 207/1133 [39:30<2:09:28, 8.39s/it]
18%|█▊ | 208/1133 [39:48<2:54:19, 11.31s/it]
18%|█▊ | 209/1133 [40:24<4:49:33, 18.80s/it]
19%|█▊ | 210/1133 [40:41<4:40:00, 18.20s/it]
19%|█▊ | 211/1133 [40:55<4:20:21, 16.94s/it]
19%|█▊ | 212/1133 [41:10<4:12:08, 16.43s/it]
19%|█▉ | 213/1133 [41:16<3:21:39, 13.15s/it]
19%|█▉ | 214/1133 [41:18<2:30:53, 9.85s/it]
19%|█▉ | 215/1133 [41:25<2:17:47, 9.01s/it]
19%|█▉ | 216/1133 [42:13<5:18:05, 20.81s/it]
19%|█▉ | 217/1133 [42:17<3:57:56, 15.59s/it]
19%|█▉ | 218/1133 [42:20<3:03:16, 12.02s/it]
19%|█▉ | 219/1133 [42:24<2:26:30, 9.62s/it]
19%|█▉ | 220/1133 [42:33<2:21:14, 9.28s/it]
20%|█▉ | 221/1133 [43:01<3:45:49, 14.86s/it]
20%|█▉ | 222/1133 [43:08<3:11:20, 12.60s/it]
20%|█▉ | 223/1133 [43:26<3:33:59, 14.11s/it]
20%|█▉ | 224/1133 [43:29<2:43:36, 10.80s/it]
20%|█▉ | 225/1133 [43:36<2:27:27, 9.74s/it]
20%|█▉ | 226/1133 [44:06<3:59:12, 15.82s/it]
20%|██ | 227/1133 [44:17<3:37:31, 14.41s/it]
20%|██ | 228/1133 [44:26<3:10:35, 12.64s/it]
20%|██ | 229/1133 [44:47<3:49:48, 15.25s/it]
20%|██ | 230/1133 [45:01<3:44:02, 14.89s/it]
20%|██ | 231/1133 [45:08<3:07:17, 12.46s/it]
20%|██ | 232/1133 [45:18<2:55:05, 11.66s/it]
21%|██ | 233/1133 [45:26<2:40:49, 10.72s/it]
21%|██ | 234/1133 [45:41<2:57:26, 11.84s/it]
21%|██ | 235/1133 [45:43<2:16:30, 9.12s/it]
21%|██ | 236/1133 [46:01<2:53:37, 11.61s/it]
21%|██ | 237/1133 [46:29<4:05:29, 16.44s/it]
21%|██ | 238/1133 [46:38<3:34:12, 14.36s/it]
21%|██ | 239/1133 [46:51<3:29:32, 14.06s/it]
21%|██ | 240/1133 [47:02<3:12:01, 12.90s/it]
21%|██▏ | 241/1133 [47:03<2:22:27, 9.58s/it]
21%|██▏ | 242/1133 [47:08<1:58:54, 8.01s/it]
21%|██▏ | 243/1133 [47:17<2:03:58, 8.36s/it]
22%|██▏ | 244/1133 [47:19<1:36:15, 6.50s/it]
22%|██▏ | 245/1133 [47:29<1:52:59, 7.63s/it]
22%|██▏ | 246/1133 [47:42<2:12:45, 8.98s/it]
22%|██▏ | 247/1133 [47:46<1:50:35, 7.49s/it]
22%|██▏ | 248/1133 [47:54<1:52:41, 7.64s/it]
22%|██▏ | 249/1133 [47:57<1:33:47, 6.37s/it]
22%|██▏ | 250/1133 [48:06<1:47:17, 7.29s/it]
22%|██▏ | 251/1133 [48:20<2:16:12, 9.27s/it]
22%|██▏ | 252/1133 [48:25<1:57:45, 8.02s/it]
22%|██▏ | 253/1133 [48:51<3:14:02, 13.23s/it]
22%|██▏ | 254/1133 [49:00<2:56:15, 12.03s/it]
23%|██▎ | 255/1133 [49:15<3:07:26, 12.81s/it]
23%|██▎ | 256/1133 [49:31<3:23:57, 13.95s/it]
23%|██▎ | 257/1133 [49:37<2:49:50, 11.63s/it]
23%|██▎ | 258/1133 [49:54<3:08:52, 12.95s/it]
23%|██▎ | 259/1133 [50:10<3:24:14, 14.02s/it]
23%|██▎ | 260/1133 [50:53<5:30:52, 22.74s/it]
23%|██▎ | 261/1133 [51:23<6:01:06, 24.85s/it]
23%|██▎ | 262/1133 [51:34<4:59:17, 20.62s/it]
23%|██▎ | 263/1133 [52:16<6:35:06, 27.25s/it]
23%|██▎ | 264/1133 [52:27<5:21:25, 22.19s/it]
23%|██▎ | 265/1133 [53:03<6:24:12, 26.56s/it]
23%|██▎ | 266/1133 [53:22<5:49:02, 24.16s/it]
24%|██▎ | 267/1133 [53:41<5:24:14, 22.46s/it]
24%|██▎ | 268/1133 [54:27<7:09:38, 29.80s/it]
24%|██▎ | 269/1133 [54:40<5:55:45, 24.71s/it]
24%|██▍ | 270/1133 [54:48<4:43:16, 19.69s/it]
24%|██▍ | 271/1133 [54:53<3:38:06, 15.18s/it]
24%|██▍ | 272/1133 [55:04<3:18:49, 13.86s/it]
24%|██▍ | 273/1133 [55:07<2:33:36, 10.72s/it]
24%|██▍ | 274/1133 [55:17<2:28:49, 10.40s/it]
24%|██▍ | 275/1133 [55:21<2:03:03, 8.61s/it]
24%|██▍ | 276/1133 [55:26<1:48:33, 7.60s/it]
24%|██▍ | 277/1133 [55:36<1:57:46, 8.26s/it]
25%|██▍ | 278/1133 [55:47<2:09:56, 9.12s/it]
25%|██▍ | 279/1133 [56:00<2:23:16, 10.07s/it]
25%|██▍ | 280/1133 [56:09<2:21:22, 9.94s/it]
25%|██▍ | 281/1133 [56:23<2:38:20, 11.15s/it]
25%|██▍ | 282/1133 [56:27<2:07:46, 9.01s/it]
25%|██▍ | 283/1133 [56:32<1:50:22, 7.79s/it]
25%|██▌ | 284/1133 [56:42<1:59:39, 8.46s/it]
25%|██▌ | 285/1133 [56:51<2:01:03, 8.57s/it]
25%|██▌ | 286/1133 [56:56<1:46:18, 7.53s/it]
25%|██▌ | 287/1133 [57:23<3:10:01, 13.48s/it]
25%|██▌ | 288/1133 [57:31<2:42:28, 11.54s/it]
26%|██▌ | 289/1133 [57:35<2:11:52, 9.38s/it]
26%|██▌ | 290/1133 [57:48<2:29:33, 10.65s/it]
26%|██▌ | 291/1133 [58:05<2:56:02, 12.54s/it]
26%|██▌ | 292/1133 [58:11<2:27:32, 10.53s/it]
26%|██▌ | 293/1133 [58:36<3:28:57, 14.93s/it]
26%|██▌ | 294/1133 [58:42<2:49:26, 12.12s/it]
26%|██▌ | 295/1133 [58:58<3:07:27, 13.42s/it]
26%|██▌ | 296/1133 [59:11<3:04:31, 13.23s/it]
26%|██▌ | 297/1133 [59:18<2:38:40, 11.39s/it]
26%|██▋ | 298/1133 [59:23<2:11:35, 9.46s/it]
26%|██▋ | 299/1133 [59:26<1:43:32, 7.45s/it]
26%|██▋ | 300/1133 [59:30<1:29:06, 6.42s/it]
27%|██▋ | 301/1133 [59:33<1:12:30, 5.23s/it]
27%|██▋ | 302/1133 [59:36<1:04:46, 4.68s/it]
27%|██▋ | 303/1133 [59:39<59:23, 4.29s/it]
27%|██▋ | 304/1133 [59:51<1:30:56, 6.58s/it]
27%|██▋ | 305/1133 [1:00:10<2:20:45, 10.20s/it]
27%|██▋ | 306/1133 [1:00:24<2:36:12, 11.33s/it]
27%|██▋ | 307/1133 [1:00:30<2:13:48, 9.72s/it]
27%|██▋ | 308/1133 [1:00:40<2:13:50, 9.73s/it]
27%|██▋ | 309/1133 [1:00:49<2:12:15, 9.63s/it]
27%|██▋ | 310/1133 [1:00:52<1:46:23, 7.76s/it]
27%|██▋ | 311/1133 [1:01:05<2:04:49, 9.11s/it]
28%|██▊ | 312/1133 [1:01:19<2:27:56, 10.81s/it]
28%|██▊ | 313/1133 [1:01:29<2:22:32, 10.43s/it]
28%|██▊ | 314/1133 [1:01:35<2:05:38, 9.20s/it]
28%|██▊ | 315/1133 [1:02:03<3:23:17, 14.91s/it]
28%|██▊ | 316/1133 [1:02:10<2:48:38, 12.39s/it]
28%|██▊ | 317/1133 [1:02:16<2:21:20, 10.39s/it]
28%|██▊ | 318/1133 [1:02:18<1:48:52, 8.01s/it]
28%|██▊ | 319/1133 [1:02:44<3:00:50, 13.33s/it]
28%|██▊ | 320/1133 [1:02:55<2:52:59, 12.77s/it]
28%|██▊ | 321/1133 [1:03:01<2:23:40, 10.62s/it]
28%|██▊ | 322/1133 [1:03:06<2:00:53, 8.94s/it]
29%|██▊ | 323/1133 [1:03:16<2:04:32, 9.23s/it]
29%|██▊ | 324/1133 [1:03:30<2:24:16, 10.70s/it]
29%|██▊ | 325/1133 [1:03:40<2:19:46, 10.38s/it]
29%|██▉ | 326/1133 [1:03:44<1:53:59, 8.48s/it]
29%|██▉ | 327/1133 [1:04:09<3:01:53, 13.54s/it]
29%|██▉ | 328/1133 [1:04:38<4:01:58, 18.04s/it]
29%|██▉ | 329/1133 [1:04:54<3:56:55, 17.68s/it]
29%|██▉ | 330/1133 [1:04:58<3:01:45, 13.58s/it]
29%|██▉ | 331/1133 [1:05:07<2:42:19, 12.14s/it]
29%|██▉ | 332/1133 [1:05:15<2:22:46, 10.69s/it]
29%|██▉ | 333/1133 [1:05:22<2:07:59, 9.60s/it]
29%|██▉ | 334/1133 [1:05:45<3:01:43, 13.65s/it]
30%|██▉ | 335/1133 [1:05:54<2:45:11, 12.42s/it]
30%|██▉ | 336/1133 [1:06:03<2:30:51, 11.36s/it]
30%|██▉ | 337/1133 [1:06:09<2:09:52, 9.79s/it]
30%|██▉ | 338/1133 [1:06:25<2:32:51, 11.54s/it]
30%|██▉ | 339/1133 [1:06:44<3:01:55, 13.75s/it]
30%|███ | 340/1133 [1:06:51<2:36:15, 11.82s/it]
30%|███ | 341/1133 [1:07:07<2:52:49, 13.09s/it]
30%|███ | 342/1133 [1:07:14<2:26:10, 11.09s/it]
30%|███ | 343/1133 [1:07:18<1:59:16, 9.06s/it]
30%|███ | 344/1133 [1:07:36<2:36:16, 11.88s/it]
30%|███ | 345/1133 [1:07:49<2:38:01, 12.03s/it]
31%|███ | 346/1133 [1:07:57<2:24:12, 10.99s/it]
31%|███ | 347/1133 [1:08:00<1:52:54, 8.62s/it]
31%|███ | 348/1133 [1:08:12<2:03:55, 9.47s/it]
31%|███ | 349/1133 [1:08:13<1:30:15, 6.91s/it]
31%|███ | 350/1133 [1:08:33<2:21:48, 10.87s/it]
31%|███ | 351/1133 [1:08:36<1:52:25, 8.63s/it]
31%|███ | 352/1133 [1:08:45<1:52:03, 8.61s/it]
31%|███ | 353/1133 [1:09:05<2:38:48, 12.22s/it]
31%|███ | 354/1133 [1:09:12<2:14:53, 10.39s/it]
31%|███▏ | 355/1133 [1:09:15<1:48:43, 8.38s/it]
31%|███▏ | 356/1133 [1:09:22<1:43:35, 8.00s/it]
32%|███▏ | 357/1133 [1:09:41<2:22:44, 11.04s/it]
32%|███▏ | 358/1133 [1:09:53<2:29:27, 11.57s/it]
32%|███▏ | 359/1133 [1:09:57<2:00:00, 9.30s/it]
32%|███▏ | 360/1133 [1:10:13<2:25:48, 11.32s/it]
32%|███▏ | 361/1133 [1:10:26<2:28:55, 11.57s/it]
32%|███▏ | 362/1133 [1:10:30<2:01:10, 9.43s/it]
32%|███▏ | 363/1133 [1:10:33<1:37:46, 7.62s/it]
32%|███▏ | 364/1133 [1:10:37<1:22:33, 6.44s/it]
32%|███▏ | 365/1133 [1:10:40<1:10:41, 5.52s/it]
32%|███▏ | 366/1133 [1:10:45<1:05:59, 5.16s/it]
32%|███▏ | 367/1133 [1:11:02<1:53:50, 8.92s/it]
32%|███▏ | 368/1133 [1:11:11<1:51:18, 8.73s/it]
33%|███▎ | 369/1133 [1:11:16<1:38:53, 7.77s/it]
33%|███▎ | 370/1133 [1:11:20<1:22:05, 6.46s/it]
33%|███▎ | 371/1133 [1:11:21<1:03:13, 4.98s/it]
33%|███▎ | 372/1133 [1:12:05<3:31:37, 16.69s/it]
33%|███▎ | 373/1133 [1:12:17<3:12:39, 15.21s/it]
33%|███▎ | 374/1133 [1:12:20<2:27:31, 11.66s/it]
33%|███▎ | 375/1133 [1:12:23<1:54:47, 9.09s/it]
33%|███▎ | 376/1133 [1:12:30<1:44:25, 8.28s/it]
33%|███▎ | 377/1133 [1:12:36<1:35:18, 7.56s/it]
33%|███▎ | 378/1133 [1:12:46<1:45:21, 8.37s/it]
33%|███▎ | 379/1133 [1:12:51<1:31:07, 7.25s/it]
34%|███▎ | 380/1133 [1:12:55<1:21:26, 6.49s/it]
34%|███▎ | 381/1133 [1:13:16<2:15:21, 10.80s/it]
34%|███▎ | 382/1133 [1:13:26<2:11:05, 10.47s/it]
34%|███▍ | 383/1133 [1:13:44<2:39:44, 12.78s/it]
34%|███▍ | 384/1133 [1:13:54<2:27:57, 11.85s/it]
34%|███▍ | 385/1133 [1:14:17<3:09:03, 15.17s/it]
34%|███▍ | 386/1133 [1:15:11<5:33:31, 26.79s/it]
34%|███▍ | 387/1133 [1:15:16<4:11:36, 20.24s/it]
34%|███▍ | 388/1133 [1:15:22<3:20:49, 16.17s/it]
34%|███▍ | 389/1133 [1:15:37<3:13:48, 15.63s/it]
34%|███▍ | 390/1133 [1:15:46<2:51:35, 13.86s/it]
35%|███▍ | 391/1133 [1:15:51<2:17:47, 11.14s/it]
35%|███▍ | 392/1133 [1:16:06<2:32:19, 12.33s/it]
35%|███▍ | 393/1133 [1:16:30<3:15:57, 15.89s/it]
35%|███▍ | 394/1133 [1:16:38<2:43:29, 13.27s/it]
35%|███▍ | 395/1133 [1:17:02<3:25:35, 16.71s/it]
35%|███▍ | 396/1133 [1:17:11<2:56:54, 14.40s/it]
35%|███▌ | 397/1133 [1:17:17<2:26:05, 11.91s/it]
35%|███▌ | 398/1133 [1:17:35<2:47:25, 13.67s/it]
35%|███▌ | 399/1133 [1:17:42<2:22:15, 11.63s/it]
35%|███▌ | 400/1133 [1:17:55<2:25:42, 11.93s/it]
35%|███▌ | 401/1133 [1:17:59<1:56:30, 9.55s/it]
35%|███▌ | 402/1133 [1:18:03<1:38:22, 8.07s/it]
36%|███▌ | 403/1133 [1:18:13<1:42:57, 8.46s/it]
36%|███▌ | 404/1133 [1:18:21<1:43:25, 8.51s/it]
36%|███▌ | 405/1133 [1:18:30<1:45:46, 8.72s/it]
36%|███▌ | 406/1133 [1:18:36<1:34:46, 7.82s/it]
36%|███▌ | 407/1133 [1:18:44<1:35:38, 7.90s/it]
36%|███▌ | 408/1133 [1:18:50<1:25:52, 7.11s/it]
36%|███▌ | 409/1133 [1:19:03<1:48:55, 9.03s/it]
36%|███▌ | 410/1133 [1:19:09<1:38:05, 8.14s/it]
36%|███▋ | 411/1133 [1:19:30<2:22:52, 11.87s/it]
36%|███▋ | 412/1133 [1:19:43<2:28:40, 12.37s/it]
36%|███▋ | 413/1133 [1:19:57<2:31:49, 12.65s/it]
37%|███▋ | 414/1133 [1:19:58<1:52:44, 9.41s/it]
37%|███▋ | 415/1133 [1:20:16<2:22:26, 11.90s/it]
37%|███▋ | 416/1133 [1:20:39<3:00:21, 15.09s/it]
37%|███▋ | 417/1133 [1:20:42<2:18:12, 11.58s/it]
37%|███▋ | 418/1133 [1:20:49<2:02:22, 10.27s/it]
37%|███▋ | 419/1133 [1:21:03<2:13:29, 11.22s/it]
37%|███▋ | 420/1133 [1:21:04<1:36:35, 8.13s/it]
37%|███▋ | 421/1133 [1:21:15<1:46:27, 8.97s/it]
37%|███▋ | 422/1133 [1:21:26<1:53:59, 9.62s/it]
37%|███▋ | 423/1133 [1:21:34<1:50:22, 9.33s/it]
37%|███▋ | 424/1133 [1:21:49<2:07:41, 10.81s/it]
38%|███▊ | 425/1133 [1:22:03<2:21:44, 12.01s/it]
38%|███▊ | 426/1133 [1:22:16<2:24:18, 12.25s/it]
38%|███▊ | 427/1133 [1:22:22<2:00:21, 10.23s/it]
38%|███▊ | 428/1133 [1:22:34<2:08:46, 10.96s/it]
38%|███▊ | 429/1133 [1:22:42<1:57:56, 10.05s/it]
38%|███▊ | 430/1133 [1:22:56<2:10:29, 11.14s/it]
38%|███▊ | 431/1133 [1:23:01<1:47:51, 9.22s/it]
38%|███▊ | 432/1133 [1:23:18<2:17:08, 11.74s/it]
38%|███▊ | 433/1133 [1:23:21<1:45:34, 9.05s/it]
38%|███▊ | 434/1133 [1:23:41<2:22:44, 12.25s/it]
38%|███▊ | 435/1133 [1:24:02<2:53:26, 14.91s/it]
38%|███▊ | 436/1133 [1:24:25<3:20:41, 17.28s/it]
39%|███▊ | 437/1133 [1:24:40<3:13:06, 16.65s/it]
39%|███▊ | 438/1133 [1:24:46<2:34:18, 13.32s/it]
39%|███▊ | 439/1133 [1:24:56<2:25:50, 12.61s/it]
39%|███▉ | 440/1133 [1:25:00<1:52:35, 9.75s/it]
39%|███▉ | 441/1133 [1:25:04<1:33:40, 8.12s/it]
39%|███▉ | 442/1133 [1:25:11<1:29:12, 7.75s/it]
39%|███▉ | 443/1133 [1:25:18<1:27:40, 7.62s/it]
39%|███▉ | 444/1133 [1:25:27<1:32:19, 8.04s/it]
39%|███▉ | 445/1133 [1:25:35<1:30:48, 7.92s/it]
39%|███▉ | 446/1133 [1:25:38<1:16:11, 6.65s/it]
39%|███▉ | 447/1133 [1:25:46<1:19:33, 6.96s/it]
40%|███▉ | 448/1133 [1:25:59<1:39:12, 8.69s/it]
40%|███▉ | 449/1133 [1:26:13<1:57:43, 10.33s/it]
40%|███▉ | 450/1133 [1:26:30<2:19:47, 12.28s/it]
40%|███▉ | 451/1133 [1:26:33<1:48:13, 9.52s/it]
40%|███▉ | 452/1133 [1:26:47<2:04:53, 11.00s/it]
40%|███▉ | 453/1133 [1:26:52<1:44:23, 9.21s/it]
40%|████ | 454/1133 [1:26:57<1:29:43, 7.93s/it]
40%|████ | 455/1133 [1:27:04<1:25:40, 7.58s/it]
40%|████ | 456/1133 [1:27:20<1:52:24, 9.96s/it]
40%|████ | 457/1133 [1:27:31<1:57:54, 10.46s/it]
40%|████ | 458/1133 [1:27:51<2:27:29, 13.11s/it]
41%|████ | 459/1133 [1:28:00<2:15:46, 12.09s/it]
41%|████ | 460/1133 [1:28:04<1:46:16, 9.48s/it]
41%|████ | 461/1133 [1:28:25<2:24:56, 12.94s/it]
41%|████ | 462/1133 [1:28:37<2:23:27, 12.83s/it]
41%|████ | 463/1133 [1:28:40<1:48:30, 9.72s/it]
41%|████ | 464/1133 [1:28:55<2:06:36, 11.36s/it]
41%|████ | 465/1133 [1:29:05<2:03:58, 11.14s/it]
41%|████ | 466/1133 [1:29:33<2:59:18, 16.13s/it]
41%|████ | 467/1133 [1:29:37<2:18:43, 12.50s/it]
41%|████▏ | 468/1133 [1:29:41<1:48:14, 9.77s/it]
41%|████▏ | 469/1133 [1:29:58<2:12:58, 12.02s/it]
41%|████▏ | 470/1133 [1:30:10<2:12:11, 11.96s/it]
42%|████▏ | 471/1133 [1:30:23<2:16:53, 12.41s/it]
42%|████▏ | 472/1133 [1:30:41<2:32:50, 13.87s/it]
42%|████▏ | 473/1133 [1:30:46<2:06:00, 11.46s/it]
42%|████▏ | 474/1133 [1:30:51<1:43:11, 9.39s/it]
42%|████▏ | 475/1133 [1:31:00<1:41:49, 9.28s/it]
42%|████▏ | 476/1133 [1:31:15<1:59:30, 10.91s/it]
42%|████▏ | 477/1133 [1:31:31<2:18:21, 12.65s/it]
42%|████▏ | 478/1133 [1:31:34<1:46:44, 9.78s/it]
42%|████▏ | 479/1133 [1:31:47<1:55:36, 10.61s/it]
42%|████▏ | 480/1133 [1:32:26<3:28:58, 19.20s/it]
42%|████▏ | 481/1133 [1:32:28<2:33:02, 14.08s/it]
43%|████▎ | 482/1133 [1:32:38<2:19:19, 12.84s/it]
43%|████▎ | 483/1133 [1:32:42<1:50:26, 10.19s/it]
43%|████▎ | 484/1133 [1:32:53<1:52:05, 10.36s/it]
43%|████▎ | 485/1133 [1:33:13<2:23:52, 13.32s/it]
43%|████▎ | 486/1133 [1:33:18<1:55:51, 10.74s/it]
43%|████▎ | 487/1133 [1:33:41<2:35:01, 14.40s/it]
43%|████▎ | 488/1133 [1:33:54<2:29:23, 13.90s/it]
43%|████▎ | 489/1133 [1:34:00<2:03:23, 11.50s/it]
43%|████▎ | 490/1133 [1:34:02<1:34:07, 8.78s/it]
43%|████▎ | 491/1133 [1:34:14<1:45:28, 9.86s/it]
43%|████▎ | 492/1133 [1:34:27<1:53:21, 10.61s/it]
44%|████▎ | 493/1133 [1:34:32<1:35:19, 8.94s/it]
44%|████▎ | 494/1133 [1:34:34<1:12:30, 6.81s/it]
44%|████▎ | 495/1133 [1:34:39<1:09:12, 6.51s/it]
44%|████▍ | 496/1133 [1:34:57<1:43:32, 9.75s/it]
44%|████▍ | 497/1133 [1:35:08<1:48:24, 10.23s/it]
44%|████▍ | 498/1133 [1:35:19<1:50:21, 10.43s/it]
44%|████▍ | 499/1133 [1:35:36<2:10:31, 12.35s/it]
44%|████▍ | 500/1133 [1:35:57<2:37:01, 14.88s/it]
44%|████▍ | 501/1133 [1:36:27<3:26:39, 19.62s/it]
44%|████▍ | 502/1133 [1:36:35<2:50:10, 16.18s/it]
44%|████▍ | 503/1133 [1:36:54<2:58:42, 17.02s/it]
44%|████▍ | 504/1133 [1:37:06<2:42:33, 15.51s/it]
45%|████▍ | 505/1133 [1:37:11<2:07:12, 12.15s/it]
45%|████▍ | 506/1133 [1:37:17<1:47:11, 10.26s/it]
45%|████▍ | 507/1133 [1:37:36<2:15:03, 12.94s/it]
45%|████▍ | 508/1133 [1:38:26<4:11:14, 24.12s/it]
45%|████▍ | 509/1133 [1:38:45<3:54:13, 22.52s/it]
45%|████▌ | 510/1133 [1:38:48<2:54:15, 16.78s/it]
45%|████▌ | 511/1133 [1:38:54<2:18:53, 13.40s/it]
45%|████▌ | 512/1133 [1:38:57<1:47:35, 10.39s/it]
45%|████▌ | 513/1133 [1:39:25<2:41:21, 15.62s/it]
45%|████▌ | 514/1133 [1:40:23<4:52:08, 28.32s/it]
45%|████▌ | 515/1133 [1:40:40<4:15:57, 24.85s/it]
46%|████▌ | 516/1133 [1:40:53<3:40:40, 21.46s/it]
46%|████▌ | 517/1133 [1:41:01<2:57:25, 17.28s/it]
46%|████▌ | 518/1133 [1:41:04<2:15:23, 13.21s/it]
46%|████▌ | 519/1133 [1:41:36<3:10:31, 18.62s/it]
46%|████▌ | 520/1133 [1:41:48<2:51:56, 16.83s/it]
46%|████▌ | 521/1133 [1:42:00<2:36:48, 15.37s/it]
46%|████▌ | 522/1133 [1:42:02<1:54:16, 11.22s/it]
46%|████▌ | 523/1133 [1:42:17<2:06:09, 12.41s/it]
46%|████▌ | 524/1133 [1:42:38<2:33:39, 15.14s/it]
46%|████▋ | 525/1133 [1:42:45<2:08:22, 12.67s/it]
46%|████▋ | 526/1133 [1:42:51<1:48:17, 10.71s/it]
47%|████▋ | 527/1133 [1:42:53<1:19:24, 7.86s/it]
47%|████▋ | 528/1133 [1:42:55<1:03:50, 6.33s/it]
47%|████▋ | 529/1133 [1:43:26<2:17:16, 13.64s/it]
47%|████▋ | 530/1133 [1:43:30<1:46:11, 10.57s/it]
47%|████▋ | 531/1133 [1:43:38<1:38:26, 9.81s/it]
47%|████▋ | 532/1133 [1:43:39<1:12:28, 7.24s/it]
47%|████▋ | 533/1133 [1:43:49<1:20:03, 8.01s/it]
47%|████▋ | 534/1133 [1:43:53<1:08:53, 6.90s/it]
47%|████▋ | 535/1133 [1:44:00<1:07:54, 6.81s/it]
47%|████▋ | 536/1133 [1:44:24<2:01:14, 12.18s/it]
47%|████▋ | 537/1133 [1:44:32<1:48:27, 10.92s/it]
47%|████▋ | 538/1133 [1:44:50<2:08:42, 12.98s/it]
48%|████▊ | 539/1133 [1:45:02<2:04:23, 12.56s/it]
48%|████▊ | 540/1133 [1:45:06<1:38:50, 10.00s/it]
48%|████▊ | 541/1133 [1:45:31<2:23:59, 14.59s/it]
48%|████▊ | 542/1133 [1:45:37<1:58:04, 11.99s/it]
48%|████▊ | 543/1133 [1:45:40<1:31:36, 9.32s/it]
48%|████▊ | 544/1133 [1:45:55<1:48:14, 11.03s/it]
48%|████▊ | 545/1133 [1:46:07<1:51:32, 11.38s/it]
48%|████▊ | 546/1133 [1:46:17<1:47:44, 11.01s/it]
48%|████▊ | 547/1133 [1:46:29<1:49:01, 11.16s/it]
48%|████▊ | 548/1133 [1:46:33<1:28:47, 9.11s/it]
48%|████▊ | 549/1133 [1:46:43<1:30:35, 9.31s/it]
49%|████▊ | 550/1133 [1:46:52<1:28:36, 9.12s/it]
49%|████▊ | 551/1133 [1:47:04<1:36:44, 9.97s/it]
49%|████▊ | 552/1133 [1:47:06<1:13:52, 7.63s/it]
49%|████▉ | 553/1133 [1:47:21<1:34:32, 9.78s/it]
49%|████▉ | 554/1133 [1:47:25<1:18:52, 8.17s/it]
49%|████▉ | 555/1133 [1:47:29<1:05:49, 6.83s/it]
49%|████▉ | 556/1133 [1:47:33<59:24, 6.18s/it]
49%|████▉ | 557/1133 [1:48:23<3:05:39, 19.34s/it]
49%|████▉ | 558/1133 [1:48:34<2:41:31, 16.85s/it]
49%|████▉ | 559/1133 [1:48:51<2:40:56, 16.82s/it]
49%|████▉ | 560/1133 [1:49:04<2:29:31, 15.66s/it]
50%|████▉ | 561/1133 [1:49:17<2:20:00, 14.69s/it]
50%|████▉ | 562/1133 [1:49:22<1:53:58, 11.98s/it]
50%|████▉ | 563/1133 [1:49:27<1:33:42, 9.86s/it]
50%|████▉ | 564/1133 [1:49:37<1:32:13, 9.73s/it]
50%|████▉ | 565/1133 [1:49:58<2:06:52, 13.40s/it]
50%|████▉ | 566/1133 [1:50:04<1:45:09, 11.13s/it]
50%|█████ | 567/1133 [1:50:13<1:37:22, 10.32s/it]
50%|█████ | 568/1133 [1:50:15<1:14:05, 7.87s/it]
50%|█████ | 569/1133 [1:50:18<59:34, 6.34s/it]
50%|█████ | 570/1133 [1:50:29<1:12:16, 7.70s/it]
50%|█████ | 571/1133 [1:50:35<1:07:27, 7.20s/it]
50%|█████ | 572/1133 [1:50:37<53:09, 5.69s/it]
51%|█████ | 573/1133 [1:50:44<57:09, 6.12s/it]
51%|█████ | 574/1133 [1:51:03<1:34:05, 10.10s/it]
51%|█████ | 575/1133 [1:51:07<1:16:04, 8.18s/it]
51%|█████ | 576/1133 [1:51:22<1:34:58, 10.23s/it]
51%|█████ | 577/1133 [1:51:37<1:46:49, 11.53s/it]
51%|█████ | 578/1133 [1:51:51<1:54:52, 12.42s/it]
51%|█████ | 579/1133 [1:52:02<1:50:54, 12.01s/it]
51%|█████ | 580/1133 [1:52:18<2:02:51, 13.33s/it]
51%|█████▏ | 581/1133 [1:52:31<1:59:54, 13.03s/it]
51%|█████▏ | 582/1133 [1:52:42<1:53:38, 12.37s/it]
51%|█████▏ | 583/1133 [1:52:44<1:27:00, 9.49s/it]
52%|█████▏ | 584/1133 [1:53:01<1:45:02, 11.48s/it]
52%|█████▏ | 585/1133 [1:53:14<1:51:05, 12.16s/it]
52%|█████▏ | 586/1133 [1:53:24<1:42:49, 11.28s/it]
52%|█████▏ | 587/1133 [1:53:37<1:47:47, 11.85s/it]
52%|█████▏ | 588/1133 [1:53:44<1:34:03, 10.35s/it]
52%|█████▏ | 589/1133 [1:53:52<1:28:51, 9.80s/it]
52%|█████▏ | 590/1133 [1:53:55<1:11:18, 7.88s/it]
52%|█████▏ | 591/1133 [1:54:15<1:41:41, 11.26s/it]
52%|█████▏ | 592/1133 [1:54:20<1:24:27, 9.37s/it]
52%|█████▏ | 593/1133 [1:54:30<1:28:25, 9.83s/it]
52%|█████▏ | 594/1133 [1:54:33<1:09:16, 7.71s/it]
53%|█████▎ | 595/1133 [1:55:08<2:21:36, 15.79s/it]
53%|█████▎ | 596/1133 [1:55:44<3:16:17, 21.93s/it]
53%|█████▎ | 597/1133 [1:55:55<2:45:26, 18.52s/it]
53%|█████▎ | 598/1133 [1:55:58<2:05:31, 14.08s/it]
53%|█████▎ | 599/1133 [1:56:04<1:42:02, 11.47s/it]
53%|█████▎ | 600/1133 [1:56:22<1:58:31, 13.34s/it]
53%|█████▎ | 601/1133 [1:56:35<1:59:06, 13.43s/it]
53%|█████▎ | 602/1133 [1:56:41<1:37:30, 11.02s/it]
53%|█████▎ | 603/1133 [1:56:55<1:45:13, 11.91s/it]
53%|█████▎ | 604/1133 [1:57:04<1:38:10, 11.14s/it]
53%|█████▎ | 605/1133 [1:57:15<1:37:11, 11.04s/it]
53%|█████▎ | 606/1133 [1:57:21<1:23:14, 9.48s/it]
54%|█████▎ | 607/1133 [1:57:32<1:28:57, 10.15s/it]
54%|█████▎ | 608/1133 [1:57:40<1:22:57, 9.48s/it]
54%|█████▍ | 609/1133 [1:57:52<1:29:35, 10.26s/it]
54%|█████▍ | 610/1133 [1:57:57<1:14:43, 8.57s/it]
54%|█████▍ | 611/1133 [1:58:14<1:37:59, 11.26s/it]
54%|█████▍ | 612/1133 [1:58:27<1:40:24, 11.56s/it]
54%|█████▍ | 613/1133 [1:58:55<2:24:38, 16.69s/it]
54%|█████▍ | 614/1133 [1:59:05<2:06:20, 14.61s/it]
54%|█████▍ | 615/1133 [1:59:11<1:43:46, 12.02s/it]
54%|█████▍ | 616/1133 [1:59:23<1:43:53, 12.06s/it]
54%|█████▍ | 617/1133 [1:59:27<1:21:19, 9.46s/it]
55%|█████▍ | 618/1133 [1:59:29<1:02:20, 7.26s/it]
55%|█████▍ | 619/1133 [1:59:33<55:26, 6.47s/it]
55%|█████▍ | 620/1133 [2:00:33<3:12:18, 22.49s/it]
55%|█████▍ | 621/1133 [2:00:41<2:33:15, 17.96s/it]
55%|█████▍ | 622/1133 [2:01:01<2:38:35, 18.62s/it]
55%|█████▍ | 623/1133 [2:01:10<2:13:27, 15.70s/it]
55%|█████▌ | 624/1133 [2:01:13<1:41:51, 12.01s/it]
55%|█████▌ | 625/1133 [2:01:18<1:23:10, 9.82s/it]
55%|█████▌ | 626/1133 [2:01:24<1:13:11, 8.66s/it]
55%|█████▌ | 627/1133 [2:01:40<1:32:56, 11.02s/it]
55%|█████▌ | 628/1133 [2:01:51<1:32:57, 11.04s/it]
56%|█████▌ | 629/1133 [2:02:22<2:21:19, 16.83s/it]
56%|█████▌ | 630/1133 [2:02:26<1:48:49, 12.98s/it]
56%|█████▌ | 631/1133 [2:02:31<1:29:01, 10.64s/it]
56%|█████▌ | 632/1133 [2:02:34<1:10:38, 8.46s/it]
56%|█████▌ | 633/1133 [2:02:52<1:33:20, 11.20s/it]
56%|█████▌ | 634/1133 [2:02:56<1:15:12, 9.04s/it]
56%|█████▌ | 635/1133 [2:03:02<1:06:58, 8.07s/it]
56%|█████▌ | 636/1133 [2:03:04<52:06, 6.29s/it]
56%|█████▌ | 637/1133 [2:03:10<51:47, 6.27s/it]
56%|█████▋ | 638/1133 [2:03:31<1:27:31, 10.61s/it]
56%|█████▋ | 639/1133 [2:03:32<1:04:55, 7.89s/it]
56%|█████▋ | 640/1133 [2:03:37<55:58, 6.81s/it]
57%|█████▋ | 641/1133 [2:03:44<58:36, 7.15s/it]
57%|█████▋ | 642/1133 [2:04:17<2:01:25, 14.84s/it]
57%|█████▋ | 643/1133 [2:04:32<1:59:57, 14.69s/it]
57%|█████▋ | 644/1133 [2:04:45<1:56:05, 14.24s/it]
57%|█████▋ | 645/1133 [2:04:58<1:53:12, 13.92s/it]
57%|█████▋ | 646/1133 [2:05:05<1:35:56, 11.82s/it]
57%|█████▋ | 647/1133 [2:05:09<1:17:31, 9.57s/it]
57%|█████▋ | 648/1133 [2:05:24<1:30:19, 11.17s/it]
57%|█████▋ | 649/1133 [2:05:54<2:14:23, 16.66s/it]
57%|█████▋ | 650/1133 [2:06:36<3:16:20, 24.39s/it]
57%|█████▋ | 651/1133 [2:06:38<2:21:35, 17.63s/it]
58%|█████▊ | 652/1133 [2:06:42<1:50:01, 13.72s/it]
58%|█████▊ | 653/1133 [2:06:46<1:25:43, 10.72s/it]
58%|█████▊ | 654/1133 [2:06:55<1:21:55, 10.26s/it]
58%|█████▊ | 655/1133 [2:07:11<1:35:27, 11.98s/it]
58%|█████▊ | 656/1133 [2:07:13<1:11:04, 8.94s/it]
58%|█████▊ | 657/1133 [2:07:41<1:56:42, 14.71s/it]
58%|█████▊ | 658/1133 [2:08:00<2:05:39, 15.87s/it]
58%|█████▊ | 659/1133 [2:08:03<1:34:20, 11.94s/it]
58%|█████▊ | 660/1133 [2:08:05<1:10:13, 8.91s/it]
58%|█████▊ | 661/1133 [2:08:14<1:10:45, 8.99s/it]
58%|█████▊ | 662/1133 [2:08:23<1:12:04, 9.18s/it]
59%|█████▊ | 663/1133 [2:08:31<1:07:48, 8.66s/it]
59%|█████▊ | 664/1133 [2:08:40<1:08:14, 8.73s/it]
59%|█████▊ | 665/1133 [2:08:52<1:15:44, 9.71s/it]
59%|█████▉ | 666/1133 [2:09:06<1:25:49, 11.03s/it]
59%|█████▉ | 667/1133 [2:09:16<1:22:54, 10.67s/it]
59%|█████▉ | 668/1133 [2:09:24<1:17:55, 10.06s/it]
59%|█████▉ | 669/1133 [2:09:28<1:02:17, 8.06s/it]
59%|█████▉ | 670/1133 [2:09:39<1:08:55, 8.93s/it]
59%|█████▉ | 671/1133 [2:09:43<58:07, 7.55s/it]
59%|█████▉ | 672/1133 [2:09:48<51:15, 6.67s/it]
59%|█████▉ | 673/1133 [2:10:09<1:24:17, 11.00s/it]
59%|█████▉ | 674/1133 [2:10:22<1:29:17, 11.67s/it]
60%|█████▉ | 675/1133 [2:10:33<1:27:35, 11.48s/it]
60%|█████▉ | 676/1133 [2:10:34<1:03:17, 8.31s/it]
60%|█████▉ | 677/1133 [2:10:41<1:00:19, 7.94s/it]
60%|█████▉ | 678/1133 [2:10:48<58:41, 7.74s/it]
60%|█████▉ | 679/1133 [2:10:54<53:31, 7.07s/it]
60%|██████ | 680/1133 [2:11:00<52:32, 6.96s/it]
60%|██████ | 681/1133 [2:11:07<50:49, 6.75s/it]
60%|██████ | 682/1133 [2:11:13<49:01, 6.52s/it]
60%|██████ | 683/1133 [2:11:30<1:13:20, 9.78s/it]
60%|██████ | 684/1133 [2:11:33<58:48, 7.86s/it]
60%|██████ | 685/1133 [2:11:43<1:02:44, 8.40s/it]
61%|██████ | 686/1133 [2:11:45<48:36, 6.52s/it]
61%|██████ | 687/1133 [2:11:57<59:52, 8.05s/it]
61%|██████ | 688/1133 [2:12:00<48:38, 6.56s/it]
61%|██████ | 689/1133 [2:12:12<59:51, 8.09s/it]
61%|██████ | 690/1133 [2:12:15<48:36, 6.58s/it]
61%|██████ | 691/1133 [2:12:17<38:40, 5.25s/it]
61%|██████ | 692/1133 [2:12:25<45:31, 6.19s/it]
61%|██████ | 693/1133 [2:12:40<1:03:20, 8.64s/it]
61%|██████▏ | 694/1133 [2:12:55<1:17:30, 10.59s/it]
61%|██████▏ | 695/1133 [2:13:09<1:25:00, 11.65s/it]
61%|██████▏ | 696/1133 [2:13:19<1:22:37, 11.34s/it]
62%|██████▏ | 697/1133 [2:13:35<1:30:47, 12.49s/it]
62%|██████▏ | 698/1133 [2:13:59<1:55:46, 15.97s/it]
62%|██████▏ | 699/1133 [2:14:09<1:42:15, 14.14s/it]
62%|██████▏ | 700/1133 [2:14:23<1:41:40, 14.09s/it]
62%|██████▏ | 701/1133 [2:14:37<1:42:07, 14.18s/it]
62%|██████▏ | 702/1133 [2:15:31<3:06:59, 26.03s/it]
62%|██████▏ | 703/1133 [2:15:40<2:30:17, 20.97s/it]
62%|██████▏ | 704/1133 [2:15:45<1:56:41, 16.32s/it]
62%|██████▏ | 705/1133 [2:15:57<1:47:14, 15.03s/it]
62%|██████▏ | 706/1133 [2:16:20<2:02:55, 17.27s/it]
62%|██████▏ | 707/1133 [2:16:29<1:44:36, 14.73s/it]
62%|██████▏ | 708/1133 [2:16:50<1:57:30, 16.59s/it]
63%|██████▎ | 709/1133 [2:16:56<1:36:35, 13.67s/it]
63%|██████▎ | 710/1133 [2:17:05<1:26:30, 12.27s/it]
63%|██████▎ | 711/1133 [2:17:17<1:24:06, 11.96s/it]
63%|██████▎ | 712/1133 [2:17:31<1:28:21, 12.59s/it]
63%|██████▎ | 713/1133 [2:17:35<1:10:48, 10.11s/it]
63%|██████▎ | 714/1133 [2:17:42<1:04:29, 9.23s/it]
63%|██████▎ | 715/1133 [2:17:51<1:03:01, 9.05s/it]
63%|██████▎ | 716/1133 [2:17:57<56:52, 8.18s/it]
63%|██████▎ | 717/1133 [2:18:00<46:07, 6.65s/it]
63%|██████▎ | 718/1133 [2:18:07<47:32, 6.87s/it]
63%|██████▎ | 719/1133 [2:18:14<46:18, 6.71s/it]
64%|██████▎ | 720/1133 [2:18:26<56:43, 8.24s/it]
64%|██████▎ | 721/1133 [2:18:29<47:13, 6.88s/it]
64%|██████▎ | 722/1133 [2:18:40<55:03, 8.04s/it]
64%|██████▍ | 723/1133 [2:18:53<1:04:03, 9.38s/it]
64%|██████▍ | 724/1133 [2:19:13<1:25:58, 12.61s/it]
64%|██████▍ | 725/1133 [2:19:38<1:52:02, 16.48s/it]
64%|██████▍ | 726/1133 [2:19:51<1:44:55, 15.47s/it]
64%|██████▍ | 727/1133 [2:19:58<1:27:00, 12.86s/it]
64%|██████▍ | 728/1133 [2:20:24<1:53:01, 16.74s/it]
64%|██████▍ | 729/1133 [2:20:40<1:50:33, 16.42s/it]
64%|██████▍ | 730/1133 [2:20:43<1:23:22, 12.41s/it]
65%|██████▍ | 731/1133 [2:20:57<1:26:54, 12.97s/it]
65%|██████▍ | 732/1133 [2:21:01<1:09:32, 10.40s/it]
65%|██████▍ | 733/1133 [2:21:17<1:20:45, 12.11s/it]
65%|██████▍ | 734/1133 [2:21:22<1:05:38, 9.87s/it]
65%|██████▍ | 735/1133 [2:21:47<1:34:42, 14.28s/it]
65%|██████▍ | 736/1133 [2:22:04<1:41:14, 15.30s/it]
65%|██████▌ | 737/1133 [2:22:12<1:26:38, 13.13s/it]
65%|██████▌ | 738/1133 [2:22:31<1:36:30, 14.66s/it]
65%|██████▌ | 739/1133 [2:22:33<1:12:13, 11.00s/it]
65%|██████▌ | 740/1133 [2:22:42<1:08:28, 10.46s/it]
65%|██████▌ | 741/1133 [2:22:47<57:57, 8.87s/it]
65%|██████▌ | 742/1133 [2:22:56<57:33, 8.83s/it]
66%|██████▌ | 743/1133 [2:23:03<54:22, 8.37s/it]
66%|██████▌ | 744/1133 [2:23:12<54:46, 8.45s/it]
66%|██████▌ | 745/1133 [2:23:31<1:15:24, 11.66s/it]
66%|██████▌ | 746/1133 [2:23:53<1:35:32, 14.81s/it]
66%|██████▌ | 747/1133 [2:23:58<1:15:13, 11.69s/it]
66%|██████▌ | 748/1133 [2:24:22<1:39:48, 15.55s/it]
66%|██████▌ | 749/1133 [2:24:38<1:40:35, 15.72s/it]
66%|██████▌ | 750/1133 [2:24:50<1:31:27, 14.33s/it]
66%|██████▋ | 751/1133 [2:24:58<1:20:03, 12.57s/it]
66%|██████▋ | 752/1133 [2:25:07<1:13:53, 11.64s/it]
66%|██████▋ | 753/1133 [2:25:16<1:07:01, 10.58s/it]
67%|██████▋ | 754/1133 [2:25:48<1:48:22, 17.16s/it]
67%|██████▋ | 755/1133 [2:26:04<1:45:20, 16.72s/it]
67%|██████▋ | 756/1133 [2:26:10<1:25:59, 13.69s/it]
67%|██████▋ | 757/1133 [2:26:18<1:14:30, 11.89s/it]
67%|██████▋ | 758/1133 [2:26:39<1:31:45, 14.68s/it]
67%|██████▋ | 759/1133 [2:26:51<1:26:32, 13.88s/it]
67%|██████▋ | 760/1133 [2:26:54<1:05:33, 10.55s/it]
67%|██████▋ | 761/1133 [2:27:10<1:15:33, 12.19s/it]
67%|██████▋ | 762/1133 [2:27:13<58:28, 9.46s/it]
67%|██████▋ | 763/1133 [2:27:22<56:49, 9.21s/it]
67%|██████▋ | 764/1133 [2:27:30<54:00, 8.78s/it]
68%|██████▊ | 765/1133 [2:27:39<54:27, 8.88s/it]
68%|██████▊ | 766/1133 [2:28:01<1:18:07, 12.77s/it]
68%|██████▊ | 767/1133 [2:28:14<1:18:39, 12.89s/it]
68%|██████▊ | 768/1133 [2:28:38<1:39:49, 16.41s/it]
68%|██████▊ | 769/1133 [2:28:58<1:45:55, 17.46s/it]
68%|██████▊ | 770/1133 [2:29:05<1:25:52, 14.19s/it]
68%|██████▊ | 771/1133 [2:29:17<1:22:45, 13.72s/it]
68%|██████▊ | 772/1133 [2:29:34<1:27:40, 14.57s/it]
68%|██████▊ | 773/1133 [2:29:45<1:20:29, 13.41s/it]
68%|██████▊ | 774/1133 [2:29:56<1:16:57, 12.86s/it]
68%|██████▊ | 775/1133 [2:31:01<2:48:48, 28.29s/it]
68%|██████▊ | 776/1133 [2:31:05<2:06:07, 21.20s/it]
69%|██████▊ | 777/1133 [2:31:19<1:52:42, 18.99s/it]
69%|██████▊ | 778/1133 [2:31:24<1:26:55, 14.69s/it]
69%|██████▉ | 779/1133 [2:31:26<1:04:27, 10.93s/it]
69%|██████▉ | 780/1133 [2:31:32<55:15, 9.39s/it]
69%|██████▉ | 781/1133 [2:31:55<1:19:33, 13.56s/it]
69%|██████▉ | 782/1133 [2:31:58<1:00:56, 10.42s/it]
69%|██████▉ | 783/1133 [2:32:19<1:19:29, 13.63s/it]
69%|██████▉ | 784/1133 [2:32:30<1:13:36, 12.66s/it]
69%|██████▉ | 785/1133 [2:32:36<1:02:49, 10.83s/it]
69%|██████▉ | 786/1133 [2:32:42<53:48, 9.30s/it]
69%|██████▉ | 787/1133 [2:33:03<1:13:18, 12.71s/it]
70%|██████▉ | 788/1133 [2:33:07<59:41, 10.38s/it]
70%|██████▉ | 789/1133 [2:33:09<44:49, 7.82s/it]
70%|██████▉ | 790/1133 [2:33:37<1:18:24, 13.72s/it]
70%|██████▉ | 791/1133 [2:33:46<1:10:01, 12.29s/it]
70%|██████▉ | 792/1133 [2:34:00<1:12:44, 12.80s/it]
70%|██████▉ | 793/1133 [2:34:31<1:43:22, 18.24s/it]
70%|███████ | 794/1133 [2:34:33<1:15:47, 13.42s/it]
70%|███████ | 795/1133 [2:34:37<59:42, 10.60s/it]
70%|███████ | 796/1133 [2:34:40<46:50, 8.34s/it]
70%|███████ | 797/1133 [2:34:47<44:26, 7.94s/it]
70%|███████ | 798/1133 [2:34:51<37:45, 6.76s/it]
71%|███████ | 799/1133 [2:34:59<40:28, 7.27s/it]
71%|███████ | 800/1133 [2:35:08<42:09, 7.60s/it]
71%|███████ | 801/1133 [2:35:16<42:25, 7.67s/it]
71%|███████ | 802/1133 [2:35:29<51:29, 9.33s/it]
71%|███████ | 803/1133 [2:35:37<49:34, 9.01s/it]
71%|███████ | 804/1133 [2:35:57<1:07:30, 12.31s/it]
71%|███████ | 805/1133 [2:36:08<1:05:22, 11.96s/it]
71%|███████ | 806/1133 [2:36:25<1:12:30, 13.30s/it]
71%|███████ | 807/1133 [2:36:30<59:26, 10.94s/it]
71%|███████▏ | 808/1133 [2:36:37<53:02, 9.79s/it]
71%|███████▏ | 809/1133 [2:36:46<51:00, 9.45s/it]
71%|███████▏ | 810/1133 [2:36:50<41:35, 7.72s/it]
72%|███████▏ | 811/1133 [2:36:53<34:28, 6.42s/it]
72%|███████▏ | 812/1133 [2:37:06<45:18, 8.47s/it]
72%|███████▏ | 813/1133 [2:37:14<43:44, 8.20s/it]
72%|███████▏ | 814/1133 [2:37:17<35:25, 6.66s/it]
72%|███████▏ | 815/1133 [2:37:38<58:43, 11.08s/it]
72%|███████▏ | 816/1133 [2:37:49<58:44, 11.12s/it]
72%|███████▏ | 817/1133 [2:37:54<48:56, 9.29s/it]
72%|███████▏ | 818/1133 [2:38:03<47:29, 9.05s/it]
72%|███████▏ | 819/1133 [2:38:14<50:49, 9.71s/it]
72%|███████▏ | 820/1133 [2:38:18<41:15, 7.91s/it]
72%|███████▏ | 821/1133 [2:38:19<31:10, 6.00s/it]
73%|███████▎ | 822/1133 [2:38:24<29:25, 5.68s/it]
73%|███████▎ | 823/1133 [2:38:45<53:00, 10.26s/it]
73%|███████▎ | 824/1133 [2:38:53<49:15, 9.57s/it]
73%|███████▎ | 825/1133 [2:38:57<40:32, 7.90s/it]
73%|███████▎ | 826/1133 [2:39:15<55:28, 10.84s/it]
73%|███████▎ | 827/1133 [2:39:19<45:17, 8.88s/it]
73%|███████▎ | 828/1133 [2:39:22<36:18, 7.14s/it]
73%|███████▎ | 829/1133 [2:39:53<1:12:26, 14.30s/it]
73%|███████▎ | 830/1133 [2:40:13<1:20:41, 15.98s/it]
73%|███████▎ | 831/1133 [2:40:30<1:21:15, 16.14s/it]
73%|███████▎ | 832/1133 [2:40:36<1:06:33, 13.27s/it]
74%|███████▎ | 833/1133 [2:41:07<1:32:04, 18.41s/it]
74%|███████▎ | 834/1133 [2:41:13<1:13:02, 14.66s/it]
74%|███████▎ | 835/1133 [2:41:27<1:12:57, 14.69s/it]
74%|███████▍ | 836/1133 [2:41:43<1:14:20, 15.02s/it]
74%|███████▍ | 837/1133 [2:42:29<1:59:41, 24.26s/it]
74%|███████▍ | 838/1133 [2:42:57<2:04:35, 25.34s/it]
74%|███████▍ | 839/1133 [2:43:04<1:37:59, 20.00s/it]
74%|███████▍ | 840/1133 [2:43:21<1:32:24, 18.92s/it]
74%|███████▍ | 841/1133 [2:43:32<1:20:09, 16.47s/it]
74%|███████▍ | 842/1133 [2:43:49<1:21:15, 16.75s/it]
74%|███████▍ | 843/1133 [2:43:55<1:04:41, 13.38s/it]
74%|███████▍ | 844/1133 [2:44:11<1:08:52, 14.30s/it]
75%|███████▍ | 845/1133 [2:44:20<1:00:54, 12.69s/it]
75%|███████▍ | 846/1133 [2:44:34<1:02:24, 13.05s/it]
75%|███████▍ | 847/1133 [2:44:45<58:56, 12.37s/it]
75%|███████▍ | 848/1133 [2:45:01<1:03:53, 13.45s/it]
75%|███████▍ | 849/1133 [2:45:04<48:56, 10.34s/it]
75%|███████▌ | 850/1133 [2:45:20<57:19, 12.15s/it]
75%|███████▌ | 851/1133 [2:45:22<43:01, 9.15s/it]
75%|███████▌ | 852/1133 [2:45:26<36:05, 7.71s/it]
75%|███████▌ | 853/1133 [2:45:38<41:05, 8.81s/it]
75%|███████▌ | 854/1133 [2:45:48<42:47, 9.20s/it]
75%|███████▌ | 855/1133 [2:46:02<49:13, 10.62s/it]
76%|███████▌ | 856/1133 [2:46:26<1:06:59, 14.51s/it]
76%|███████▌ | 857/1133 [2:46:47<1:16:05, 16.54s/it]
76%|███████▌ | 858/1133 [2:46:56<1:05:55, 14.38s/it]
76%|███████▌ | 859/1133 [2:47:07<1:00:36, 13.27s/it]
76%|███████▌ | 860/1133 [2:47:13<50:48, 11.17s/it]
76%|███████▌ | 861/1133 [2:47:45<1:18:47, 17.38s/it]
76%|███████▌ | 862/1133 [2:48:01<1:16:10, 16.87s/it]
76%|███████▌ | 863/1133 [2:48:28<1:30:22, 20.08s/it]
76%|███████▋ | 864/1133 [2:48:39<1:17:05, 17.20s/it]
76%|███████▋ | 865/1133 [2:48:50<1:09:21, 15.53s/it]
76%|███████▋ | 866/1133 [2:49:13<1:18:26, 17.63s/it]
77%|███████▋ | 867/1133 [2:49:29<1:16:37, 17.28s/it]
77%|███████▋ | 868/1133 [2:49:36<1:02:52, 14.24s/it]
77%|███████▋ | 869/1133 [2:49:42<50:43, 11.53s/it]
77%|███████▋ | 870/1133 [2:49:49<44:42, 10.20s/it]
77%|███████▋ | 871/1133 [2:49:54<37:40, 8.63s/it]
77%|███████▋ | 872/1133 [2:50:08<44:31, 10.24s/it]
77%|███████▋ | 873/1133 [2:50:16<41:27, 9.57s/it]
77%|███████▋ | 874/1133 [2:50:23<37:47, 8.76s/it]
77%|███████▋ | 875/1133 [2:50:43<53:03, 12.34s/it]
77%|███████▋ | 876/1133 [2:50:59<57:40, 13.46s/it]
77%|███████▋ | 877/1133 [2:51:14<59:08, 13.86s/it]
77%|███████▋ | 878/1133 [2:51:28<58:17, 13.72s/it]
78%|███████▊ | 879/1133 [2:51:34<49:05, 11.60s/it]
78%|███████▊ | 880/1133 [2:51:41<42:36, 10.10s/it]
78%|███████▊ | 881/1133 [2:51:46<36:32, 8.70s/it]
78%|███████▊ | 882/1133 [2:52:00<42:29, 10.16s/it]
78%|███████▊ | 883/1133 [2:52:09<41:46, 10.03s/it]
78%|███████▊ | 884/1133 [2:52:23<45:36, 10.99s/it]
78%|███████▊ | 885/1133 [2:52:33<45:02, 10.90s/it]
78%|███████▊ | 886/1133 [2:52:38<37:07, 9.02s/it]
78%|███████▊ | 887/1133 [2:53:05<58:43, 14.32s/it]
78%|███████▊ | 888/1133 [2:53:10<47:06, 11.54s/it]
78%|███████▊ | 889/1133 [2:53:26<52:48, 12.98s/it]
79%|███████▊ | 890/1133 [2:53:34<45:55, 11.34s/it]
79%|███████▊ | 891/1133 [2:53:39<38:00, 9.42s/it]
79%|███████▊ | 892/1133 [2:54:01<53:45, 13.38s/it]
79%|███████▉ | 893/1133 [2:54:17<56:54, 14.23s/it]
79%|███████▉ | 894/1133 [2:54:20<42:14, 10.60s/it]
79%|███████▉ | 895/1133 [2:54:38<50:52, 12.83s/it]
79%|███████▉ | 896/1133 [2:54:51<50:53, 12.88s/it]
79%|███████▉ | 897/1133 [2:54:55<40:34, 10.31s/it]
79%|███████▉ | 898/1133 [2:55:03<37:57, 9.69s/it]
79%|███████▉ | 899/1133 [2:55:14<39:40, 10.17s/it]
79%|███████▉ | 900/1133 [2:55:30<46:11, 11.89s/it]
80%|███████▉ | 901/1133 [2:55:40<43:57, 11.37s/it]
80%|███████▉ | 902/1133 [2:55:46<37:33, 9.76s/it]
80%|███████▉ | 903/1133 [2:56:00<41:33, 10.84s/it]
80%|███████▉ | 904/1133 [2:56:20<52:22, 13.72s/it]
80%|███████▉ | 905/1133 [2:56:42<1:01:06, 16.08s/it]
80%|███████▉ | 906/1133 [2:56:46<47:09, 12.46s/it]
80%|████████ | 907/1133 [2:56:54<42:01, 11.16s/it]
80%|████████ | 908/1133 [2:57:06<42:57, 11.46s/it]
80%|████████ | 909/1133 [2:57:15<39:51, 10.68s/it]
80%|████████ | 910/1133 [2:57:21<34:32, 9.30s/it]
80%|████████ | 911/1133 [2:57:28<31:27, 8.50s/it]
80%|████████ | 912/1133 [2:57:36<30:49, 8.37s/it]
81%|████████ | 913/1133 [2:57:44<30:20, 8.27s/it]
81%|████████ | 914/1133 [2:57:53<31:03, 8.51s/it]
81%|████████ | 915/1133 [2:58:01<30:17, 8.34s/it]
81%|████████ | 916/1133 [2:58:20<41:42, 11.53s/it]
81%|████████ | 917/1133 [2:58:35<45:03, 12.52s/it]
81%|████████ | 918/1133 [2:58:57<55:19, 15.44s/it]
81%|████████ | 919/1133 [2:59:01<42:30, 11.92s/it]
81%|████████ | 920/1133 [2:59:04<33:13, 9.36s/it]
81%|████████▏ | 921/1133 [2:59:15<34:23, 9.73s/it]
81%|████████▏ | 922/1133 [2:59:19<28:31, 8.11s/it]
81%|████████▏ | 923/1133 [2:59:26<27:08, 7.75s/it]
82%|████████▏ | 924/1133 [2:59:32<25:10, 7.23s/it]
82%|████████▏ | 925/1133 [2:59:42<28:05, 8.10s/it]
82%|████████▏ | 926/1133 [2:59:52<29:57, 8.69s/it]
82%|████████▏ | 927/1133 [3:00:00<28:44, 8.37s/it]
82%|████████▏ | 928/1133 [3:00:04<24:27, 7.16s/it]
82%|████████▏ | 929/1133 [3:00:15<28:37, 8.42s/it]
82%|████████▏ | 930/1133 [3:00:30<34:57, 10.33s/it]
82%|████████▏ | 931/1133 [3:00:40<34:26, 10.23s/it]
82%|████████▏ | 932/1133 [3:00:47<31:17, 9.34s/it]
82%|████████▏ | 933/1133 [3:00:53<27:05, 8.13s/it]
82%|████████▏ | 934/1133 [3:00:55<21:00, 6.34s/it]
83%|████████▎ | 935/1133 [3:01:13<32:52, 9.96s/it]
83%|████████▎ | 936/1133 [3:01:21<30:16, 9.22s/it]
83%|████████▎ | 937/1133 [3:01:28<28:07, 8.61s/it]
83%|████████▎ | 938/1133 [3:01:36<27:01, 8.32s/it]
83%|████████▎ | 939/1133 [3:01:44<26:38, 8.24s/it]
83%|████████▎ | 940/1133 [3:01:57<31:03, 9.65s/it]
83%|████████▎ | 941/1133 [3:02:19<43:02, 13.45s/it]
83%|████████▎ | 942/1133 [3:02:45<54:37, 17.16s/it]
83%|████████▎ | 943/1133 [3:02:52<44:34, 14.08s/it]
83%|████████▎ | 944/1133 [3:03:24<1:01:36, 19.56s/it]
83%|████████▎ | 945/1133 [3:03:41<59:11, 18.89s/it]
83%|████████▎ | 946/1133 [3:04:03<1:01:33, 19.75s/it]
84%|████████▎ | 947/1133 [3:04:19<57:28, 18.54s/it]
84%|████████▎ | 948/1133 [3:04:43<1:02:03, 20.13s/it]
84%|████████▍ | 949/1133 [3:04:49<48:37, 15.85s/it]
84%|████████▍ | 950/1133 [3:04:52<36:40, 12.02s/it]
84%|████████▍ | 951/1133 [3:05:03<36:16, 11.96s/it]
84%|████████▍ | 952/1133 [3:05:10<31:23, 10.40s/it]
84%|████████▍ | 953/1133 [3:05:14<25:10, 8.39s/it]
84%|████████▍ | 954/1133 [3:05:16<19:43, 6.61s/it]
84%|████████▍ | 955/1133 [3:05:21<18:00, 6.07s/it]
84%|████████▍ | 956/1133 [3:05:30<20:30, 6.95s/it]
84%|████████▍ | 957/1133 [3:05:34<17:30, 5.97s/it]
85%|████████▍ | 958/1133 [3:05:42<19:45, 6.77s/it]
85%|████████▍ | 959/1133 [3:05:54<23:47, 8.20s/it]
85%|████████▍ | 960/1133 [3:06:05<25:38, 8.89s/it]
85%|████████▍ | 961/1133 [3:06:12<24:41, 8.61s/it]
85%|████████▍ | 962/1133 [3:06:41<41:29, 14.56s/it]
85%|████████▍ | 963/1133 [3:06:52<38:20, 13.53s/it]
85%|████████▌ | 964/1133 [3:06:58<32:07, 11.40s/it]
85%|████████▌ | 965/1133 [3:07:06<28:58, 10.35s/it]
85%|████████▌ | 966/1133 [3:07:10<23:30, 8.44s/it]
85%|████████▌ | 967/1133 [3:07:32<34:31, 12.48s/it]
85%|████████▌ | 968/1133 [3:07:37<27:50, 10.12s/it]
86%|████████▌ | 969/1133 [3:07:45<25:45, 9.42s/it]
86%|████████▌ | 970/1133 [3:07:51<23:00, 8.47s/it]
86%|████████▌ | 971/1133 [3:08:04<26:41, 9.88s/it]
86%|████████▌ | 972/1133 [3:08:13<25:28, 9.49s/it]
86%|████████▌ | 973/1133 [3:08:43<41:50, 15.69s/it]
86%|████████▌ | 974/1133 [3:08:47<32:31, 12.28s/it]
86%|████████▌ | 975/1133 [3:08:54<28:17, 10.74s/it]
86%|████████▌ | 976/1133 [3:08:59<23:04, 8.82s/it]
86%|████████▌ | 977/1133 [3:09:06<21:51, 8.40s/it]
86%|████████▋ | 978/1133 [3:09:15<22:05, 8.55s/it]
86%|████████▋ | 979/1133 [3:09:46<39:18, 15.32s/it]
86%|████████▋ | 980/1133 [3:09:50<30:39, 12.02s/it]
87%|████████▋ | 981/1133 [3:10:00<28:35, 11.29s/it]
87%|████████▋ | 982/1133 [3:10:11<28:12, 11.21s/it]
87%|████████▋ | 983/1133 [3:10:17<24:02, 9.62s/it]
87%|████████▋ | 984/1133 [3:10:21<19:28, 7.84s/it]
87%|████████▋ | 985/1133 [3:10:35<24:07, 9.78s/it]
87%|████████▋ | 986/1133 [3:10:53<30:16, 12.36s/it]
87%|████████▋ | 987/1133 [3:11:03<27:55, 11.48s/it]
87%|████████▋ | 988/1133 [3:11:18<30:36, 12.66s/it]
87%|████████▋ | 989/1133 [3:11:32<31:23, 13.08s/it]
87%|████████▋ | 990/1133 [3:12:25<59:34, 25.00s/it]
87%|████████▋ | 991/1133 [3:12:34<47:44, 20.17s/it]
88%|████████▊ | 992/1133 [3:12:40<37:28, 15.95s/it]
88%|████████▊ | 993/1133 [3:12:48<31:50, 13.65s/it]
88%|████████▊ | 994/1133 [3:13:08<35:58, 15.53s/it]
88%|████████▊ | 995/1133 [3:13:23<34:58, 15.21s/it]
88%|████████▊ | 996/1133 [3:13:29<28:57, 12.69s/it]
88%|████████▊ | 997/1133 [3:13:42<28:52, 12.74s/it]
88%|████████▊ | 998/1133 [3:13:52<26:23, 11.73s/it]
88%|████████▊ | 999/1133 [3:14:16<34:44, 15.56s/it]
88%|████████▊ | 1000/1133 [3:14:25<29:44, 13.42s/it]
88%|████████▊ | 1001/1133 [3:14:27<22:05, 10.04s/it]
88%|████████▊ | 1002/1133 [3:14:34<19:51, 9.09s/it]
89%|████████▊ | 1003/1133 [3:14:40<18:07, 8.36s/it]
89%|████████▊ | 1004/1133 [3:15:02<26:44, 12.44s/it]
89%|████████▊ | 1005/1133 [3:15:05<20:20, 9.54s/it]
89%|████████▉ | 1006/1133 [3:15:48<41:08, 19.44s/it]
89%|████████▉ | 1007/1133 [3:15:58<35:05, 16.71s/it]
89%|████████▉ | 1008/1133 [3:16:16<35:57, 17.26s/it]
89%|████████▉ | 1009/1133 [3:16:30<33:04, 16.00s/it]
89%|████████▉ | 1010/1133 [3:16:53<37:05, 18.09s/it]
89%|████████▉ | 1011/1133 [3:17:18<41:15, 20.29s/it]
89%|████████▉ | 1012/1133 [3:17:20<29:56, 14.85s/it]
89%|████████▉ | 1013/1133 [3:17:27<25:00, 12.51s/it]
89%|████████▉ | 1014/1133 [3:17:31<19:34, 9.87s/it]
90%|████████▉ | 1015/1133 [3:17:54<27:11, 13.83s/it]
90%|████████▉ | 1016/1133 [3:18:07<26:20, 13.51s/it]
90%|████████▉ | 1017/1133 [3:18:16<23:30, 12.16s/it]
90%|████████▉ | 1018/1133 [3:18:18<17:54, 9.35s/it]
90%|████████▉ | 1019/1133 [3:18:39<24:16, 12.78s/it]
90%|█████████ | 1020/1133 [3:19:00<28:42, 15.24s/it]
90%|█████████ | 1021/1133 [3:19:07<23:47, 12.75s/it]
90%|█████████ | 1022/1133 [3:19:22<24:46, 13.39s/it]
90%|█████████ | 1023/1133 [3:19:49<32:10, 17.55s/it]
90%|█████████ | 1024/1133 [3:19:58<27:04, 14.91s/it]
90%|█████████ | 1025/1133 [3:20:11<25:57, 14.42s/it]
91%|█████████ | 1026/1133 [3:20:23<24:19, 13.64s/it]
91%|█████████ | 1027/1133 [3:20:25<17:50, 10.10s/it]
91%|█████████ | 1028/1133 [3:20:31<15:35, 8.91s/it]
91%|█████████ | 1029/1133 [3:20:41<15:49, 9.13s/it]
91%|█████████ | 1030/1133 [3:20:53<17:21, 10.12s/it]
91%|█████████ | 1031/1133 [3:20:55<12:58, 7.63s/it]
91%|█████████ | 1032/1133 [3:21:04<13:37, 8.09s/it]
91%|█████████ | 1033/1133 [3:21:12<13:29, 8.10s/it]
91%|█████████▏| 1034/1133 [3:21:28<17:04, 10.35s/it]
91%|█████████▏| 1035/1133 [3:21:33<14:29, 8.88s/it]
91%|█████████▏| 1036/1133 [3:21:42<14:05, 8.71s/it]
92%|█████████▏| 1037/1133 [3:21:46<11:50, 7.40s/it]
92%|█████████▏| 1038/1133 [3:21:58<13:53, 8.77s/it]
92%|█████████▏| 1039/1133 [3:22:08<14:31, 9.27s/it]
92%|█████████▏| 1040/1133 [3:22:11<11:03, 7.13s/it]
92%|█████████▏| 1041/1133 [3:22:15<09:54, 6.47s/it]
92%|█████████▏| 1042/1133 [3:22:31<13:51, 9.13s/it]
92%|█████████▏| 1043/1133 [3:22:34<11:07, 7.42s/it]
92%|█████████▏| 1044/1133 [3:22:58<18:22, 12.39s/it]
92%|█████████▏| 1045/1133 [3:23:11<18:09, 12.38s/it]
92%|█████████▏| 1046/1133 [3:23:22<17:37, 12.15s/it]
92%|█████████▏| 1047/1133 [3:23:34<17:10, 11.98s/it]
92%|█████████▏| 1048/1133 [3:23:42<15:22, 10.86s/it]
93%|█████████▎| 1049/1133 [3:23:55<16:09, 11.55s/it]
93%|█████████▎| 1050/1133 [3:24:03<14:16, 10.32s/it]
93%|█████████▎| 1051/1133 [3:24:15<14:58, 10.96s/it]
93%|█████████▎| 1052/1133 [3:24:17<11:06, 8.22s/it]
93%|█████████▎| 1053/1133 [3:24:35<15:04, 11.31s/it]
93%|█████████▎| 1054/1133 [3:24:37<11:08, 8.47s/it]
93%|█████████▎| 1055/1133 [3:24:46<11:07, 8.55s/it]
93%|█████████▎| 1056/1133 [3:24:50<09:06, 7.10s/it]
93%|█████████▎| 1057/1133 [3:25:00<10:10, 8.03s/it]
93%|█████████▎| 1058/1133 [3:25:03<08:17, 6.63s/it]
93%|█████████▎| 1059/1133 [3:25:29<15:07, 12.26s/it]
94%|█████████▎| 1060/1133 [3:25:42<15:15, 12.54s/it]
94%|█████████▎| 1061/1133 [3:25:53<14:40, 12.23s/it]
94%|█████████▎| 1062/1133 [3:26:05<14:16, 12.07s/it]
94%|█████████▍| 1063/1133 [3:26:19<14:51, 12.73s/it]
94%|█████████▍| 1064/1133 [3:26:28<13:12, 11.49s/it]
94%|█████████▍| 1065/1133 [3:26:36<11:43, 10.35s/it]
94%|█████████▍| 1066/1133 [3:26:49<12:40, 11.34s/it]
94%|█████████▍| 1067/1133 [3:26:54<10:17, 9.36s/it]
94%|█████████▍| 1068/1133 [3:27:02<09:40, 8.94s/it]
94%|█████████▍| 1069/1133 [3:27:14<10:29, 9.84s/it]
94%|█████████▍| 1070/1133 [3:27:27<11:23, 10.84s/it]
95%|█████████▍| 1071/1133 [3:27:31<09:11, 8.89s/it]
95%|█████████▍| 1072/1133 [3:27:44<10:14, 10.07s/it]
95%|█████████▍| 1073/1133 [3:28:03<12:32, 12.53s/it]
95%|█████████▍| 1074/1133 [3:28:12<11:29, 11.69s/it]
95%|█████████▍| 1075/1133 [3:28:16<08:59, 9.30s/it]
95%|█████████▍| 1076/1133 [3:28:23<08:10, 8.60s/it]
95%|█████████▌| 1077/1133 [3:28:28<06:55, 7.41s/it]
95%|█████████▌| 1078/1133 [3:29:01<13:51, 15.11s/it]
95%|█████████▌| 1079/1133 [3:29:11<12:13, 13.59s/it]
95%|█████████▌| 1080/1133 [3:29:56<20:17, 22.97s/it]
95%|█████████▌| 1081/1133 [3:29:59<14:44, 17.00s/it]
95%|█████████▌| 1082/1133 [3:30:23<16:19, 19.20s/it]
96%|█████████▌| 1083/1133 [3:30:27<12:07, 14.55s/it]
96%|█████████▌| 1084/1133 [3:30:46<13:04, 16.01s/it]
96%|█████████▌| 1085/1133 [3:31:35<20:42, 25.90s/it]
96%|█████████▌| 1086/1133 [3:31:40<15:18, 19.54s/it]
96%|█████████▌| 1087/1133 [3:31:42<11:03, 14.42s/it]
96%|█████████▌| 1088/1133 [3:31:46<08:19, 11.11s/it]
96%|█████████▌| 1089/1133 [3:31:59<08:33, 11.67s/it]
96%|█████████▌| 1090/1133 [3:32:13<09:02, 12.61s/it]
96%|█████████▋| 1091/1133 [3:32:25<08:31, 12.18s/it]
96%|█████████▋| 1092/1133 [3:32:35<07:58, 11.68s/it]
96%|█████████▋| 1093/1133 [3:32:44<07:15, 10.89s/it]
97%|█████████▋| 1094/1133 [3:32:51<06:18, 9.71s/it]
97%|█████████▋| 1095/1133 [3:33:02<06:26, 10.17s/it]
97%|█████████▋| 1096/1133 [3:33:09<05:37, 9.11s/it]
97%|█████████▋| 1097/1133 [3:33:18<05:22, 8.95s/it]
97%|█████████▋| 1098/1133 [3:33:27<05:17, 9.06s/it]
97%|█████████▋| 1099/1133 [3:33:41<06:01, 10.64s/it]
97%|█████████▋| 1100/1133 [3:33:49<05:23, 9.81s/it]
97%|█████████▋| 1101/1133 [3:33:56<04:43, 8.87s/it]
97%|█████████▋| 1102/1133 [3:34:11<05:37, 10.89s/it]
97%|█████████▋| 1103/1133 [3:34:28<06:20, 12.69s/it]
97%|█████████▋| 1104/1133 [3:34:49<07:18, 15.11s/it]
98%|█████████▊| 1105/1133 [3:34:57<06:05, 13.06s/it]
98%|█████████▊| 1106/1133 [3:35:05<05:08, 11.41s/it]
98%|█████████▊| 1107/1133 [3:35:13<04:31, 10.46s/it]
98%|█████████▊| 1108/1133 [3:35:17<03:30, 8.43s/it]
98%|█████████▊| 1109/1133 [3:35:21<02:50, 7.11s/it]
98%|█████████▊| 1110/1133 [3:35:32<03:12, 8.39s/it]
98%|█████████▊| 1111/1133 [3:35:39<02:56, 8.03s/it]
98%|█████████▊| 1112/1133 [3:35:47<02:48, 8.02s/it]
98%|█████████▊| 1113/1133 [3:35:52<02:18, 6.91s/it]
98%|█████████▊| 1114/1133 [3:36:15<03:42, 11.70s/it]
98%|█████████▊| 1115/1133 [3:36:28<03:42, 12.37s/it]
98%|█████████▊| 1116/1133 [3:36:34<02:57, 10.43s/it]
99%|█████████▊| 1117/1133 [3:36:57<03:47, 14.20s/it]
99%|█████████▊| 1118/1133 [3:37:10<03:24, 13.64s/it]
99%|█████████▉| 1119/1133 [3:37:15<02:36, 11.15s/it]
99%|█████████▉| 1120/1133 [3:37:35<02:58, 13.73s/it]
99%|█████████▉| 1121/1133 [3:37:43<02:26, 12.20s/it]
99%|█████████▉| 1122/1133 [3:37:48<01:49, 9.93s/it]
99%|█████████▉| 1123/1133 [3:37:51<01:18, 7.87s/it]
99%|█████████▉| 1124/1133 [3:38:18<02:01, 13.46s/it]
99%|█████████▉| 1125/1133 [3:38:36<01:59, 14.98s/it]
99%|█████████▉| 1126/1133 [3:38:45<01:31, 13.02s/it]
99%|█████████▉| 1127/1133 [3:38:59<01:20, 13.37s/it]
100%|█████████▉| 1128/1133 [3:39:21<01:19, 15.98s/it]
100%|█████████▉| 1129/1133 [3:39:33<00:58, 14.73s/it]
100%|█████████▉| 1130/1133 [3:39:43<00:40, 13.42s/it]
100%|█████████▉| 1131/1133 [3:39:57<00:27, 13.51s/it]
100%|█████████▉| 1132/1133 [3:40:05<00:11, 11.84s/it]
100%|██████████| 1133/1133 [3:40:08<00:00, 9.30s/it]
100%|██████████| 1133/1133 [3:40:08<00:00, 11.66s/it]
-Batch output: ['Lao Geng lifted his gun, narrowed one of his triangular eyes, pulled the trigger, and the gun went off. The golden sparrows fell like hailstones, making a crackling sound as the iron pellets flew among the willow branches.']
-Qwen/Qwen2-72B-Instruct/shots-03 metrics: {'meteor': 0.4086244766794449, 'bleu_scores': {'bleu': 0.13771788946915253, 'precisions': [0.44815899443914314, 0.17995078269191334, 0.09122906815515341, 0.048892510556337504], 'brevity_penalty': 1.0, 'length_ratio': 1.0066578337197747, 'translation_length': 30391, 'reference_length': 30190}, 'rouge_scores': {'rouge1': 0.45740289516151705, 'rouge2': 0.2083797823874547, 'rougeL': 0.39805004035860436, 'rougeLsum': 0.398477273454929}, 'accuracy': 0.00264783759929391, 'correct_ids': [77, 533, 659]}
-*** Evaluating with num_shots: 5
-loading train/test data files
-
Map: 0%| | 0/4528 [00:00, ? examples/s]
Map: 88%|████████▊ | 4000/4528 [00:00<00:00, 31370.07 examples/s]
Map: 100%|██████████| 4528/4528 [00:00<00:00, 30085.99 examples/s]
-
Map: 0%| | 0/1133 [00:00, ? examples/s]
Map: 100%|██████████| 1133/1133 [00:00<00:00, 16941.34 examples/s]
-DatasetDict({
- train: Dataset({
- features: ['chinese', 'english', 'text', 'prompt'],
- num_rows: 4528
- })
- test: Dataset({
- features: ['chinese', 'english', 'text', 'prompt'],
- num_rows: 1133
- })
-})
---------------------------------------------------
-chinese: 老耿端起枪,眯缝起一只三角眼,一搂扳机响了枪,冰雹般的金麻雀劈哩啪啦往下落,铁砂子在柳枝间飞迸着,嚓嚓有声。
---------------------------------------------------
-english: Old Geng picked up his shotgun, squinted, and pulled the trigger. Two sparrows crashed to the ground like hailstones as shotgun pellets tore noisily through the branches.
---------------------------------------------------
-text: <|im_start|>system
-You are a helpful assistant that translates Chinese to English.<|im_end|>
-<|im_start|>user
-You will be given a Chinese sentence to translate. If it is an incomplete sentence, or if you are unsure about the meaning, simply copy the input text as your output. Do not output any additional sentence such as explanation or reasoning.
-
-Example Translations:
-Chinese: 全仗着狐仙搭救。
-English: Because I was protected by a fox fairy.
-Chinese: 过后,表哥告诉她俩,这人是导演,在外国留过学的,还会编剧,今天拍的这戏,就是他自编自导的。
-English: He was the director, the cousin later told them. He had studied abroad and was also a screenwriter; in fact he had written and directed the scene they had earlier seen being filmed.
-Chinese: 这凤姐忽然想起一件事来,便向窗外叫:“蓉儿回来!”
-English: Xi-feng suddenly seemed to remember something, and called to him through the window, 'Rong, come back!'
-Chinese: 三个老红卫兵走到叶文洁面前,面对着她站成了一排——当年,她们也是这样面对叶哲泰的——试图再现那早已忘却的尊严,但她们当年那魔鬼般的精神力量显然已荡然无存。
-English: The three old Red Guards stood in front of Ye in a row—just like they had stood against Ye Zhetai—trying to recapture their long-forgotten dignity. But the demonic spiritual energy that had once propelled them was gone.
-Chinese: 程先生照单全收,都是一个“谢”字,然后问王琦瑶有什么话说。
-English: Mr. Cheng accepted their toast with equanimity and a 'thank you.' Then, turning to Wang Qiyao, he asked if she had anything to say.
-
-Chinese: 老耿端起枪,眯缝起一只三角眼,一搂扳机响了枪,冰雹般的金麻雀劈哩啪啦往下落,铁砂子在柳枝间飞迸着,嚓嚓有声。
-English:<|im_end|>
-<|im_start|>assistant
-Old Geng picked up his shotgun, squinted, and pulled the trigger. Two sparrows crashed to the ground like hailstones as shotgun pellets tore noisily through the branches.<|im_end|>
---------------------------------------------------
-prompt: <|im_start|>system
-You are a helpful assistant that translates Chinese to English.<|im_end|>
-<|im_start|>user
-You will be given a Chinese sentence to translate. If it is an incomplete sentence, or if you are unsure about the meaning, simply copy the input text as your output. Do not output any additional sentence such as explanation or reasoning.
-
-Example Translations:
-Chinese: 全仗着狐仙搭救。
-English: Because I was protected by a fox fairy.
-Chinese: 过后,表哥告诉她俩,这人是导演,在外国留过学的,还会编剧,今天拍的这戏,就是他自编自导的。
-English: He was the director, the cousin later told them. He had studied abroad and was also a screenwriter; in fact he had written and directed the scene they had earlier seen being filmed.
-Chinese: 这凤姐忽然想起一件事来,便向窗外叫:“蓉儿回来!”
-English: Xi-feng suddenly seemed to remember something, and called to him through the window, 'Rong, come back!'
-Chinese: 三个老红卫兵走到叶文洁面前,面对着她站成了一排——当年,她们也是这样面对叶哲泰的——试图再现那早已忘却的尊严,但她们当年那魔鬼般的精神力量显然已荡然无存。
-English: The three old Red Guards stood in front of Ye in a row—just like they had stood against Ye Zhetai—trying to recapture their long-forgotten dignity. But the demonic spiritual energy that had once propelled them was gone.
-Chinese: 程先生照单全收,都是一个“谢”字,然后问王琦瑶有什么话说。
-English: Mr. Cheng accepted their toast with equanimity and a 'thank you.' Then, turning to Wang Qiyao, he asked if she had anything to say.
-
-Chinese: 老耿端起枪,眯缝起一只三角眼,一搂扳机响了枪,冰雹般的金麻雀劈哩啪啦往下落,铁砂子在柳枝间飞迸着,嚓嚓有声。
-English:<|im_end|>
-<|im_start|>assistant
-
-
0%| | 0/1133 [00:00, ?it/s]
0%| | 1/1133 [00:25<8:10:10, 25.98s/it]
0%| | 2/1133 [00:59<9:32:47, 30.39s/it]
0%| | 3/1133 [02:14<15:59:33, 50.95s/it]
0%| | 4/1133 [02:36<12:20:18, 39.34s/it]
0%| | 5/1133 [03:00<10:35:43, 33.82s/it]
1%| | 6/1133 [03:15<8:35:30, 27.45s/it]
1%| | 7/1133 [03:38<8:08:44, 26.04s/it]
1%| | 8/1133 [04:47<12:20:44, 39.51s/it]
1%| | 9/1133 [04:57<9:27:24, 30.29s/it]
1%| | 10/1133 [05:05<7:20:02, 23.51s/it]
1%| | 11/1133 [05:14<5:58:57, 19.20s/it]
1%| | 12/1133 [05:37<6:17:31, 20.21s/it]
1%| | 13/1133 [05:46<5:13:24, 16.79s/it]
1%| | 14/1133 [05:49<3:57:09, 12.72s/it]
1%|▏ | 15/1133 [06:21<5:42:41, 18.39s/it]
1%|▏ | 16/1133 [06:29<4:48:59, 15.52s/it]
2%|▏ | 17/1133 [06:47<4:59:26, 16.10s/it]
2%|▏ | 18/1133 [07:13<5:52:57, 18.99s/it]
2%|▏ | 19/1133 [07:17<4:31:30, 14.62s/it]
2%|▏ | 20/1133 [07:37<4:59:10, 16.13s/it]
2%|▏ | 21/1133 [07:49<4:37:30, 14.97s/it]
2%|▏ | 22/1133 [08:17<5:48:54, 18.84s/it]
2%|▏ | 23/1133 [08:25<4:50:11, 15.69s/it]
2%|▏ | 24/1133 [08:35<4:18:50, 14.00s/it]
2%|▏ | 25/1133 [08:51<4:28:00, 14.51s/it]
2%|▏ | 26/1133 [09:15<5:21:59, 17.45s/it]
2%|▏ | 27/1133 [09:29<5:02:45, 16.42s/it]
2%|▏ | 28/1133 [09:34<3:56:19, 12.83s/it]
3%|▎ | 29/1133 [09:43<3:34:14, 11.64s/it]
3%|▎ | 30/1133 [09:50<3:09:38, 10.32s/it]
3%|▎ | 31/1133 [09:54<2:37:08, 8.56s/it]
3%|▎ | 32/1133 [10:16<3:51:25, 12.61s/it]
3%|▎ | 33/1133 [11:09<7:28:49, 24.48s/it]
3%|▎ | 34/1133 [11:28<7:01:57, 23.04s/it]
3%|▎ | 35/1133 [11:42<6:08:30, 20.14s/it]
3%|▎ | 36/1133 [11:55<5:31:34, 18.14s/it]
3%|▎ | 37/1133 [12:04<4:43:52, 15.54s/it]
3%|▎ | 38/1133 [12:15<4:13:29, 13.89s/it]
3%|▎ | 39/1133 [12:18<3:18:28, 10.89s/it]
4%|▎ | 40/1133 [12:32<3:35:38, 11.84s/it]
4%|▎ | 41/1133 [13:04<5:22:55, 17.74s/it]
4%|▎ | 42/1133 [13:10<4:19:06, 14.25s/it]
4%|▍ | 43/1133 [13:24<4:14:35, 14.01s/it]
4%|▍ | 44/1133 [13:36<4:08:13, 13.68s/it]
4%|▍ | 45/1133 [13:43<3:26:53, 11.41s/it]
4%|▍ | 46/1133 [14:11<5:00:22, 16.58s/it]
4%|▍ | 47/1133 [14:26<4:49:01, 15.97s/it]
4%|▍ | 48/1133 [14:31<3:49:09, 12.67s/it]
4%|▍ | 49/1133 [14:39<3:25:15, 11.36s/it]
4%|▍ | 50/1133 [14:48<3:14:42, 10.79s/it]
5%|▍ | 51/1133 [15:03<3:32:13, 11.77s/it]
5%|▍ | 52/1133 [15:25<4:27:52, 14.87s/it]
5%|▍ | 53/1133 [15:37<4:14:00, 14.11s/it]
5%|▍ | 54/1133 [15:44<3:36:29, 12.04s/it]
5%|▍ | 55/1133 [16:32<6:50:30, 22.85s/it]
5%|▍ | 56/1133 [16:47<6:08:35, 20.53s/it]
5%|▌ | 57/1133 [17:08<6:09:56, 20.63s/it]
5%|▌ | 58/1133 [17:25<5:48:59, 19.48s/it]
5%|▌ | 59/1133 [17:29<4:27:48, 14.96s/it]
5%|▌ | 60/1133 [17:57<5:36:11, 18.80s/it]
5%|▌ | 61/1133 [18:08<4:51:47, 16.33s/it]
5%|▌ | 62/1133 [18:17<4:11:43, 14.10s/it]
6%|▌ | 63/1133 [18:36<4:41:41, 15.80s/it]
6%|▌ | 64/1133 [18:49<4:25:53, 14.92s/it]
6%|▌ | 65/1133 [19:01<4:08:28, 13.96s/it]
6%|▌ | 66/1133 [19:20<4:35:26, 15.49s/it]
6%|▌ | 67/1133 [19:46<5:33:21, 18.76s/it]
6%|▌ | 68/1133 [20:18<6:41:03, 22.60s/it]
6%|▌ | 69/1133 [20:38<6:28:55, 21.93s/it]
6%|▌ | 70/1133 [20:51<5:40:23, 19.21s/it]
6%|▋ | 71/1133 [20:56<4:24:27, 14.94s/it]
6%|▋ | 72/1133 [21:05<3:51:54, 13.11s/it]
6%|▋ | 73/1133 [21:12<3:17:35, 11.18s/it]
7%|▋ | 74/1133 [21:17<2:44:34, 9.32s/it]
7%|▋ | 75/1133 [21:23<2:30:21, 8.53s/it]
7%|▋ | 76/1133 [21:34<2:41:13, 9.15s/it]
7%|▋ | 77/1133 [21:52<3:27:44, 11.80s/it]
7%|▋ | 78/1133 [21:59<3:00:27, 10.26s/it]
7%|▋ | 79/1133 [22:16<3:35:17, 12.26s/it]
7%|▋ | 80/1133 [22:26<3:23:04, 11.57s/it]
7%|▋ | 81/1133 [22:29<2:39:28, 9.10s/it]
7%|▋ | 82/1133 [22:34<2:20:37, 8.03s/it]
7%|▋ | 83/1133 [23:01<3:56:44, 13.53s/it]
7%|▋ | 84/1133 [23:06<3:11:30, 10.95s/it]
8%|▊ | 85/1133 [23:09<2:31:20, 8.66s/it]
8%|▊ | 86/1133 [23:21<2:46:57, 9.57s/it]
8%|▊ | 87/1133 [23:30<2:46:24, 9.55s/it]
8%|▊ | 88/1133 [23:51<3:45:13, 12.93s/it]
8%|▊ | 89/1133 [24:00<3:24:05, 11.73s/it]
8%|▊ | 90/1133 [24:20<4:08:57, 14.32s/it]
8%|▊ | 91/1133 [24:28<3:31:53, 12.20s/it]
8%|▊ | 92/1133 [24:38<3:23:18, 11.72s/it]
8%|▊ | 93/1133 [24:55<3:47:27, 13.12s/it]
8%|▊ | 94/1133 [25:06<3:36:57, 12.53s/it]
8%|▊ | 95/1133 [25:21<3:52:49, 13.46s/it]
8%|▊ | 96/1133 [25:46<4:49:28, 16.75s/it]
9%|▊ | 97/1133 [25:55<4:08:22, 14.38s/it]
9%|▊ | 98/1133 [26:03<3:36:45, 12.57s/it]
9%|▊ | 99/1133 [26:24<4:20:09, 15.10s/it]
9%|▉ | 100/1133 [26:30<3:33:19, 12.39s/it]
9%|▉ | 101/1133 [27:01<5:09:51, 18.02s/it]
9%|▉ | 102/1133 [27:33<6:22:44, 22.27s/it]
9%|▉ | 103/1133 [27:41<5:07:44, 17.93s/it]
9%|▉ | 104/1133 [27:46<3:58:04, 13.88s/it]
9%|▉ | 105/1133 [28:08<4:39:57, 16.34s/it]
9%|▉ | 106/1133 [30:01<12:58:32, 45.48s/it]
9%|▉ | 107/1133 [30:32<11:42:51, 41.10s/it]
10%|▉ | 108/1133 [30:42<9:00:10, 31.62s/it]
10%|▉ | 109/1133 [30:56<7:32:25, 26.51s/it]
10%|▉ | 110/1133 [31:30<8:10:18, 28.76s/it]
10%|▉ | 111/1133 [31:49<7:20:53, 25.88s/it]
10%|▉ | 112/1133 [32:42<9:36:32, 33.88s/it]
10%|▉ | 113/1133 [33:22<10:05:20, 35.61s/it]
10%|█ | 114/1133 [33:32<7:57:15, 28.10s/it]
10%|█ | 115/1133 [33:40<6:15:58, 22.16s/it]
10%|█ | 116/1133 [33:50<5:11:00, 18.35s/it]
10%|█ | 117/1133 [34:14<5:37:54, 19.96s/it]
10%|█ | 118/1133 [34:26<4:58:26, 17.64s/it]
11%|█ | 119/1133 [34:46<5:11:38, 18.44s/it]
11%|█ | 120/1133 [34:53<4:11:38, 14.91s/it]
11%|█ | 121/1133 [35:02<3:41:00, 13.10s/it]
11%|█ | 122/1133 [35:17<3:53:36, 13.86s/it]
11%|█ | 123/1133 [35:26<3:25:26, 12.20s/it]
11%|█ | 124/1133 [35:41<3:40:24, 13.11s/it]
11%|█ | 125/1133 [36:05<4:37:33, 16.52s/it]
11%|█ | 126/1133 [36:20<4:30:12, 16.10s/it]
11%|█ | 127/1133 [36:57<6:11:56, 22.18s/it]
11%|█▏ | 128/1133 [37:08<5:16:13, 18.88s/it]
11%|█▏ | 129/1133 [37:18<4:28:54, 16.07s/it]
11%|█▏ | 130/1133 [37:23<3:33:04, 12.75s/it]
12%|█▏ | 131/1133 [37:49<4:40:19, 16.79s/it]
12%|█▏ | 132/1133 [38:03<4:28:58, 16.12s/it]
12%|█▏ | 133/1133 [38:16<4:09:24, 14.96s/it]
12%|█▏ | 134/1133 [38:21<3:21:53, 12.13s/it]
12%|█▏ | 135/1133 [39:21<7:21:49, 26.56s/it]
12%|█▏ | 136/1133 [39:32<6:04:16, 21.92s/it]
12%|█▏ | 137/1133 [39:46<5:21:35, 19.37s/it]
12%|█▏ | 138/1133 [39:55<4:28:54, 16.22s/it]
12%|█▏ | 139/1133 [40:04<3:52:00, 14.00s/it]
12%|█▏ | 140/1133 [40:19<4:00:08, 14.51s/it]
12%|█▏ | 141/1133 [40:28<3:29:20, 12.66s/it]
13%|█▎ | 142/1133 [40:34<2:59:08, 10.85s/it]
13%|█▎ | 143/1133 [40:54<3:45:34, 13.67s/it]
13%|█▎ | 144/1133 [41:04<3:24:16, 12.39s/it]
13%|█▎ | 145/1133 [41:12<3:01:09, 11.00s/it]
13%|█▎ | 146/1133 [41:22<2:56:01, 10.70s/it]
13%|█▎ | 147/1133 [41:36<3:14:41, 11.85s/it]
13%|█▎ | 148/1133 [41:39<2:32:23, 9.28s/it]
13%|█▎ | 149/1133 [41:48<2:30:23, 9.17s/it]
13%|█▎ | 150/1133 [41:59<2:39:58, 9.76s/it]
13%|█▎ | 151/1133 [42:16<3:14:57, 11.91s/it]
13%|█▎ | 152/1133 [42:29<3:16:22, 12.01s/it]
14%|█▎ | 153/1133 [42:36<2:52:40, 10.57s/it]
14%|█▎ | 154/1133 [43:02<4:07:34, 15.17s/it]
14%|█▎ | 155/1133 [43:12<3:42:12, 13.63s/it]
14%|█▍ | 156/1133 [43:28<3:52:25, 14.27s/it]
14%|█▍ | 157/1133 [43:52<4:41:13, 17.29s/it]
14%|█▍ | 158/1133 [44:09<4:41:51, 17.35s/it]
14%|█▍ | 159/1133 [44:28<4:49:18, 17.82s/it]
14%|█▍ | 160/1133 [44:39<4:16:33, 15.82s/it]
14%|█▍ | 161/1133 [44:43<3:18:05, 12.23s/it]
14%|█▍ | 162/1133 [44:53<3:04:25, 11.40s/it]
14%|█▍ | 163/1133 [45:07<3:16:40, 12.17s/it]
14%|█▍ | 164/1133 [45:13<2:49:42, 10.51s/it]
15%|█▍ | 165/1133 [45:26<3:01:01, 11.22s/it]
15%|█▍ | 166/1133 [45:47<3:47:18, 14.10s/it]
15%|█▍ | 167/1133 [45:58<3:30:26, 13.07s/it]
15%|█▍ | 168/1133 [46:31<5:08:05, 19.16s/it]
15%|█▍ | 169/1133 [46:41<4:23:45, 16.42s/it]
15%|█▌ | 170/1133 [46:53<4:01:05, 15.02s/it]
15%|█▌ | 171/1133 [46:57<3:09:58, 11.85s/it]
15%|█▌ | 172/1133 [47:02<2:36:55, 9.80s/it]
15%|█▌ | 173/1133 [47:11<2:32:18, 9.52s/it]
15%|█▌ | 174/1133 [47:16<2:10:20, 8.15s/it]
15%|█▌ | 175/1133 [47:30<2:35:22, 9.73s/it]
16%|█▌ | 176/1133 [47:37<2:23:00, 8.97s/it]
16%|█▌ | 177/1133 [47:48<2:35:48, 9.78s/it]
16%|█▌ | 178/1133 [48:38<5:45:39, 21.72s/it]
16%|█▌ | 179/1133 [48:47<4:46:41, 18.03s/it]
16%|█▌ | 180/1133 [49:12<5:16:10, 19.91s/it]
16%|█▌ | 181/1133 [49:36<5:38:46, 21.35s/it]
16%|█▌ | 182/1133 [50:03<6:02:12, 22.85s/it]
16%|█▌ | 183/1133 [50:17<5:19:48, 20.20s/it]
16%|█▌ | 184/1133 [50:27<4:33:47, 17.31s/it]
16%|█▋ | 185/1133 [50:35<3:45:28, 14.27s/it]
16%|█▋ | 186/1133 [51:01<4:42:18, 17.89s/it]
17%|█▋ | 187/1133 [51:32<5:46:01, 21.95s/it]
17%|█▋ | 188/1133 [52:04<6:33:39, 24.99s/it]
17%|█▋ | 189/1133 [52:17<5:33:17, 21.18s/it]
17%|█▋ | 190/1133 [52:26<4:34:57, 17.49s/it]
17%|█▋ | 191/1133 [52:41<4:25:59, 16.94s/it]
17%|█▋ | 192/1133 [53:04<4:51:56, 18.61s/it]
17%|█▋ | 193/1133 [53:26<5:07:36, 19.63s/it]
17%|█▋ | 194/1133 [53:32<4:06:30, 15.75s/it]
17%|█▋ | 195/1133 [53:40<3:28:47, 13.36s/it]
17%|█▋ | 196/1133 [53:47<2:57:03, 11.34s/it]
17%|█▋ | 197/1133 [54:05<3:30:38, 13.50s/it]
17%|█▋ | 198/1133 [54:13<3:03:26, 11.77s/it]
18%|█▊ | 199/1133 [54:41<4:15:58, 16.44s/it]
18%|█▊ | 200/1133 [54:43<3:11:55, 12.34s/it]
18%|█▊ | 201/1133 [54:58<3:22:02, 13.01s/it]
18%|█▊ | 202/1133 [55:01<2:36:42, 10.10s/it]
18%|█▊ | 203/1133 [55:06<2:10:07, 8.40s/it]
18%|█▊ | 204/1133 [55:40<4:10:45, 16.20s/it]
18%|█▊ | 205/1133 [55:44<3:13:18, 12.50s/it]
18%|█▊ | 206/1133 [55:52<2:51:15, 11.08s/it]
18%|█▊ | 207/1133 [56:05<3:01:59, 11.79s/it]
18%|█▊ | 208/1133 [56:32<4:10:57, 16.28s/it]
18%|█▊ | 209/1133 [57:31<7:27:38, 29.07s/it]
19%|█▊ | 210/1133 [57:54<7:02:05, 27.44s/it]
19%|█▊ | 211/1133 [58:16<6:36:41, 25.82s/it]
19%|█▊ | 212/1133 [58:38<6:16:32, 24.53s/it]
19%|█▉ | 213/1133 [58:47<5:04:11, 19.84s/it]
19%|█▉ | 214/1133 [58:51<3:50:27, 15.05s/it]
19%|█▉ | 215/1133 [59:06<3:50:18, 15.05s/it]
19%|█▉ | 216/1133 [1:00:19<8:17:52, 32.58s/it]
19%|█▉ | 217/1133 [1:00:26<6:18:30, 24.79s/it]
19%|█▉ | 218/1133 [1:00:32<4:55:01, 19.35s/it]
19%|█▉ | 219/1133 [1:00:41<4:04:07, 16.03s/it]
19%|█▉ | 220/1133 [1:00:53<3:46:52, 14.91s/it]
20%|█▉ | 221/1133 [1:01:30<5:28:14, 21.59s/it]
20%|█▉ | 222/1133 [1:01:43<4:47:49, 18.96s/it]
20%|█▉ | 223/1133 [1:02:08<5:14:30, 20.74s/it]
20%|█▉ | 224/1133 [1:02:13<4:05:02, 16.17s/it]
20%|█▉ | 225/1133 [1:02:26<3:46:57, 15.00s/it]
20%|█▉ | 226/1133 [1:03:06<5:41:40, 22.60s/it]
20%|██ | 227/1133 [1:03:21<5:07:13, 20.35s/it]
20%|██ | 228/1133 [1:03:35<4:35:41, 18.28s/it]
20%|██ | 229/1133 [1:04:05<5:29:34, 21.87s/it]
20%|██ | 230/1133 [1:04:25<5:19:56, 21.26s/it]
20%|██ | 231/1133 [1:04:34<4:26:24, 17.72s/it]
20%|██ | 232/1133 [1:04:49<4:11:55, 16.78s/it]
21%|██ | 233/1133 [1:05:01<3:51:43, 15.45s/it]
21%|██ | 234/1133 [1:05:15<3:42:27, 14.85s/it]
21%|██ | 235/1133 [1:05:18<2:52:51, 11.55s/it]
21%|██ | 236/1133 [1:05:43<3:52:20, 15.54s/it]
21%|██ | 237/1133 [1:06:25<5:48:34, 23.34s/it]
21%|██ | 238/1133 [1:06:41<5:16:24, 21.21s/it]
21%|██ | 239/1133 [1:06:58<4:56:22, 19.89s/it]
21%|██ | 240/1133 [1:07:12<4:29:39, 18.12s/it]
21%|██▏ | 241/1133 [1:07:15<3:23:21, 13.68s/it]
21%|██▏ | 242/1133 [1:07:25<3:04:14, 12.41s/it]
21%|██▏ | 243/1133 [1:07:39<3:13:34, 13.05s/it]
22%|██▏ | 244/1133 [1:07:43<2:32:30, 10.29s/it]
22%|██▏ | 245/1133 [1:07:58<2:54:01, 11.76s/it]
22%|██▏ | 246/1133 [1:08:16<3:21:04, 13.60s/it]
22%|██▏ | 247/1133 [1:08:23<2:52:28, 11.68s/it]
22%|██▏ | 248/1133 [1:08:35<2:52:37, 11.70s/it]
22%|██▏ | 249/1133 [1:08:41<2:27:51, 10.04s/it]
22%|██▏ | 250/1133 [1:08:56<2:47:20, 11.37s/it]
22%|██▏ | 251/1133 [1:09:14<3:16:16, 13.35s/it]
22%|██▏ | 252/1133 [1:09:23<2:56:22, 12.01s/it]
22%|██▏ | 253/1133 [1:09:59<4:43:35, 19.34s/it]
22%|██▏ | 254/1133 [1:10:15<4:27:09, 18.24s/it]
23%|██▎ | 255/1133 [1:10:35<4:38:09, 19.01s/it]
23%|██▎ | 256/1133 [1:10:59<4:56:49, 20.31s/it]
23%|██▎ | 257/1133 [1:11:09<4:11:22, 17.22s/it]
23%|██▎ | 258/1133 [1:11:33<4:42:28, 19.37s/it]
23%|██▎ | 259/1133 [1:11:57<5:01:57, 20.73s/it]
23%|██▎ | 260/1133 [1:13:01<8:09:57, 33.67s/it]
23%|██▎ | 261/1133 [1:13:42<8:42:06, 35.92s/it]
23%|██▎ | 262/1133 [1:13:56<7:03:53, 29.20s/it]
23%|██▎ | 263/1133 [1:15:01<9:39:44, 39.98s/it]
23%|██▎ | 264/1133 [1:15:16<7:53:43, 32.71s/it]
23%|██▎ | 265/1133 [1:16:14<9:40:24, 40.12s/it]
23%|██▎ | 266/1133 [1:16:39<8:32:27, 35.46s/it]
24%|██▎ | 267/1133 [1:17:04<7:49:19, 32.52s/it]
24%|██▎ | 268/1133 [1:18:15<10:34:20, 44.00s/it]
24%|██▎ | 269/1133 [1:18:33<8:43:26, 36.35s/it]
24%|██▍ | 270/1133 [1:18:46<7:01:21, 29.30s/it]
24%|██▍ | 271/1133 [1:18:55<5:32:57, 23.18s/it]
24%|██▍ | 272/1133 [1:19:10<4:58:13, 20.78s/it]
24%|██▍ | 273/1133 [1:19:16<3:54:40, 16.37s/it]
24%|██▍ | 274/1133 [1:19:30<3:44:17, 15.67s/it]
24%|██▍ | 275/1133 [1:19:38<3:10:14, 13.30s/it]
24%|██▍ | 276/1133 [1:19:48<2:53:31, 12.15s/it]
24%|██▍ | 277/1133 [1:20:02<3:03:45, 12.88s/it]
25%|██▍ | 278/1133 [1:20:19<3:20:31, 14.07s/it]
25%|██▍ | 279/1133 [1:20:35<3:29:54, 14.75s/it]
25%|██▍ | 280/1133 [1:20:50<3:28:43, 14.68s/it]
25%|██▍ | 281/1133 [1:21:10<3:49:35, 16.17s/it]
25%|██▍ | 282/1133 [1:21:17<3:11:10, 13.48s/it]
25%|██▍ | 283/1133 [1:21:34<3:24:45, 14.45s/it]
25%|██▌ | 284/1133 [1:21:48<3:24:45, 14.47s/it]
25%|██▌ | 285/1133 [1:22:01<3:17:44, 13.99s/it]
25%|██▌ | 286/1133 [1:22:09<2:53:30, 12.29s/it]
25%|██▌ | 287/1133 [1:22:29<3:24:43, 14.52s/it]
25%|██▌ | 288/1133 [1:22:44<3:27:07, 14.71s/it]
26%|██▌ | 289/1133 [1:22:52<2:57:34, 12.62s/it]
26%|██▌ | 290/1133 [1:23:10<3:22:23, 14.40s/it]
26%|██▌ | 291/1133 [1:23:36<4:10:00, 17.82s/it]
26%|██▌ | 292/1133 [1:23:46<3:34:36, 15.31s/it]
26%|██▌ | 293/1133 [1:24:21<4:58:19, 21.31s/it]
26%|██▌ | 294/1133 [1:24:31<4:10:20, 17.90s/it]
26%|██▌ | 295/1133 [1:24:54<4:32:38, 19.52s/it]
26%|██▌ | 296/1133 [1:25:13<4:30:46, 19.41s/it]
26%|██▌ | 297/1133 [1:25:24<3:53:31, 16.76s/it]
26%|██▋ | 298/1133 [1:25:33<3:20:16, 14.39s/it]
26%|██▋ | 299/1133 [1:25:38<2:40:43, 11.56s/it]
26%|██▋ | 300/1133 [1:25:45<2:22:18, 10.25s/it]
27%|██▋ | 301/1133 [1:25:49<1:57:53, 8.50s/it]
27%|██▋ | 302/1133 [1:25:56<1:47:44, 7.78s/it]
27%|██▋ | 303/1133 [1:26:02<1:40:36, 7.27s/it]
27%|██▋ | 304/1133 [1:26:20<2:25:02, 10.50s/it]
27%|██▋ | 305/1133 [1:26:43<3:19:15, 14.44s/it]
27%|██▋ | 306/1133 [1:27:01<3:31:03, 15.31s/it]
27%|██▋ | 307/1133 [1:27:11<3:10:53, 13.87s/it]
27%|██▋ | 308/1133 [1:27:26<3:13:19, 14.06s/it]
27%|██▋ | 309/1133 [1:27:40<3:15:10, 14.21s/it]
27%|██▋ | 310/1133 [1:27:46<2:41:32, 11.78s/it]
27%|██▋ | 311/1133 [1:28:05<3:09:07, 13.80s/it]
28%|██▊ | 312/1133 [1:28:26<3:40:16, 16.10s/it]
28%|██▊ | 313/1133 [1:28:39<3:24:28, 14.96s/it]
28%|██▊ | 314/1133 [1:28:50<3:08:25, 13.80s/it]
28%|██▊ | 315/1133 [1:29:34<5:12:46, 22.94s/it]
28%|██▊ | 316/1133 [1:29:45<4:24:19, 19.41s/it]
28%|██▊ | 317/1133 [1:30:01<4:08:49, 18.30s/it]
28%|██▊ | 318/1133 [1:30:05<3:11:56, 14.13s/it]
28%|██▊ | 319/1133 [1:30:40<4:36:41, 20.40s/it]
28%|██▊ | 320/1133 [1:30:56<4:19:19, 19.14s/it]
28%|██▊ | 321/1133 [1:31:05<3:37:26, 16.07s/it]
28%|██▊ | 322/1133 [1:31:14<3:08:12, 13.92s/it]
29%|██▊ | 323/1133 [1:31:27<3:03:50, 13.62s/it]
29%|██▊ | 324/1133 [1:31:48<3:32:50, 15.79s/it]
29%|██▊ | 325/1133 [1:32:02<3:25:21, 15.25s/it]
29%|██▉ | 326/1133 [1:32:08<2:48:08, 12.50s/it]
29%|██▉ | 327/1133 [1:32:43<4:16:14, 19.08s/it]
29%|██▉ | 328/1133 [1:33:26<5:56:03, 26.54s/it]
29%|██▉ | 329/1133 [1:33:50<5:44:31, 25.71s/it]
29%|██▉ | 330/1133 [1:33:57<4:29:45, 20.16s/it]
29%|██▉ | 331/1133 [1:34:10<4:00:22, 17.98s/it]
29%|██▉ | 332/1133 [1:34:20<3:28:06, 15.59s/it]
29%|██▉ | 333/1133 [1:34:32<3:12:24, 14.43s/it]
29%|██▉ | 334/1133 [1:35:06<4:28:32, 20.17s/it]
30%|██▉ | 335/1133 [1:35:19<3:59:06, 17.98s/it]
30%|██▉ | 336/1133 [1:35:33<3:42:57, 16.78s/it]
30%|██▉ | 337/1133 [1:35:43<3:17:52, 14.92s/it]
30%|██▉ | 338/1133 [1:36:05<3:45:42, 17.03s/it]
30%|██▉ | 339/1133 [1:36:28<4:09:43, 18.87s/it]
30%|███ | 340/1133 [1:36:39<3:38:52, 16.56s/it]
30%|███ | 341/1133 [1:37:02<4:02:40, 18.38s/it]
30%|███ | 342/1133 [1:37:13<3:31:24, 16.04s/it]
30%|███ | 343/1133 [1:37:20<2:56:12, 13.38s/it]
30%|███ | 344/1133 [1:37:47<3:50:33, 17.53s/it]
30%|███ | 345/1133 [1:38:02<3:38:26, 16.63s/it]
31%|███ | 346/1133 [1:38:15<3:25:15, 15.65s/it]
31%|███ | 347/1133 [1:38:20<2:45:10, 12.61s/it]
31%|███ | 348/1133 [1:38:36<2:57:01, 13.53s/it]
31%|███ | 349/1133 [1:38:38<2:10:16, 9.97s/it]
31%|███ | 350/1133 [1:39:01<3:01:36, 13.92s/it]
31%|███ | 351/1133 [1:39:07<2:30:44, 11.57s/it]
31%|███ | 352/1133 [1:39:21<2:42:14, 12.46s/it]
31%|███ | 353/1133 [1:39:48<3:37:39, 16.74s/it]
31%|███ | 354/1133 [1:39:59<3:13:33, 14.91s/it]
31%|███▏ | 355/1133 [1:40:07<2:45:46, 12.78s/it]
31%|███▏ | 356/1133 [1:40:18<2:39:06, 12.29s/it]
32%|███▏ | 357/1133 [1:40:39<3:12:14, 14.86s/it]
32%|███▏ | 358/1133 [1:40:58<3:30:51, 16.32s/it]
32%|███▏ | 359/1133 [1:41:06<2:55:13, 13.58s/it]
32%|███▏ | 360/1133 [1:41:28<3:29:39, 16.27s/it]
32%|███▏ | 361/1133 [1:41:46<3:33:50, 16.62s/it]
32%|███▏ | 362/1133 [1:41:54<3:03:40, 14.29s/it]
32%|███▏ | 363/1133 [1:42:01<2:31:45, 11.83s/it]
32%|███▏ | 364/1133 [1:42:07<2:11:32, 10.26s/it]
32%|███▏ | 365/1133 [1:42:13<1:55:25, 9.02s/it]
32%|███▏ | 366/1133 [1:42:21<1:50:25, 8.64s/it]
32%|███▏ | 367/1133 [1:42:45<2:50:12, 13.33s/it]
32%|███▏ | 368/1133 [1:42:56<2:39:33, 12.51s/it]
33%|███▎ | 369/1133 [1:43:05<2:27:38, 11.60s/it]
33%|███▎ | 370/1133 [1:43:12<2:08:31, 10.11s/it]
33%|███▎ | 371/1133 [1:43:15<1:40:20, 7.90s/it]
33%|███▎ | 372/1133 [1:44:28<5:50:43, 27.65s/it]
33%|███▎ | 373/1133 [1:44:45<5:09:04, 24.40s/it]
33%|███▎ | 374/1133 [1:44:51<3:59:09, 18.91s/it]
33%|███▎ | 375/1133 [1:44:57<3:08:05, 14.89s/it]
33%|███▎ | 376/1133 [1:45:11<3:04:14, 14.60s/it]
33%|███▎ | 377/1133 [1:45:21<2:46:36, 13.22s/it]
33%|███▎ | 378/1133 [1:45:37<2:57:47, 14.13s/it]
33%|███▎ | 379/1133 [1:45:45<2:33:31, 12.22s/it]
34%|███▎ | 380/1133 [1:45:53<2:16:48, 10.90s/it]
34%|███▎ | 381/1133 [1:46:25<3:37:24, 17.35s/it]
34%|███▎ | 382/1133 [1:46:40<3:28:47, 16.68s/it]
34%|███▍ | 383/1133 [1:47:02<3:49:06, 18.33s/it]
34%|███▍ | 384/1133 [1:47:17<3:36:36, 17.35s/it]
34%|███▍ | 385/1133 [1:47:50<4:31:35, 21.79s/it]
34%|███▍ | 386/1133 [1:49:07<7:59:08, 38.49s/it]
34%|███▍ | 387/1133 [1:49:16<6:08:04, 29.60s/it]
34%|███▍ | 388/1133 [1:49:28<5:00:45, 24.22s/it]
34%|███▍ | 389/1133 [1:49:48<4:47:32, 23.19s/it]
34%|███▍ | 390/1133 [1:50:02<4:12:47, 20.41s/it]
35%|███▍ | 391/1133 [1:50:11<3:27:39, 16.79s/it]
35%|███▍ | 392/1133 [1:50:32<3:44:39, 18.19s/it]
35%|███▍ | 393/1133 [1:51:05<4:40:44, 22.76s/it]
35%|███▍ | 394/1133 [1:51:17<3:59:17, 19.43s/it]
35%|███▍ | 395/1133 [1:51:51<4:52:23, 23.77s/it]
35%|███▍ | 396/1133 [1:52:05<4:15:42, 20.82s/it]
35%|███▌ | 397/1133 [1:52:14<3:33:42, 17.42s/it]
35%|███▌ | 398/1133 [1:52:35<3:46:27, 18.49s/it]
35%|███▌ | 399/1133 [1:52:47<3:19:10, 16.28s/it]
35%|███▌ | 400/1133 [1:53:04<3:22:57, 16.61s/it]
35%|███▌ | 401/1133 [1:53:11<2:46:07, 13.62s/it]
35%|███▌ | 402/1133 [1:53:22<2:38:42, 13.03s/it]
36%|███▌ | 403/1133 [1:53:37<2:43:42, 13.46s/it]
36%|███▌ | 404/1133 [1:53:51<2:47:29, 13.79s/it]
36%|███▌ | 405/1133 [1:54:05<2:45:45, 13.66s/it]
36%|███▌ | 406/1133 [1:54:14<2:30:07, 12.39s/it]
36%|███▌ | 407/1133 [1:54:26<2:29:27, 12.35s/it]
36%|███▌ | 408/1133 [1:54:36<2:18:37, 11.47s/it]
36%|███▌ | 409/1133 [1:54:55<2:45:59, 13.76s/it]
36%|███▌ | 410/1133 [1:55:06<2:38:21, 13.14s/it]
36%|███▋ | 411/1133 [1:55:35<3:35:21, 17.90s/it]
36%|███▋ | 412/1133 [1:55:54<3:37:13, 18.08s/it]
36%|███▋ | 413/1133 [1:56:15<3:46:24, 18.87s/it]
37%|███▋ | 414/1133 [1:56:18<2:50:06, 14.20s/it]
37%|███▋ | 415/1133 [1:56:42<3:26:41, 17.27s/it]
37%|███▋ | 416/1133 [1:57:16<4:24:01, 22.09s/it]
37%|███▋ | 417/1133 [1:57:21<3:24:16, 17.12s/it]
37%|███▋ | 418/1133 [1:57:33<3:04:35, 15.49s/it]
37%|███▋ | 419/1133 [1:57:54<3:25:22, 17.26s/it]
37%|███▋ | 420/1133 [1:57:56<2:29:25, 12.57s/it]
37%|███▋ | 421/1133 [1:58:12<2:40:16, 13.51s/it]
37%|███▋ | 422/1133 [1:58:26<2:41:50, 13.66s/it]
37%|███▋ | 423/1133 [1:58:39<2:40:42, 13.58s/it]
37%|███▋ | 424/1133 [1:59:01<3:10:04, 16.08s/it]
38%|███▊ | 425/1133 [1:59:23<3:31:08, 17.89s/it]
38%|███▊ | 426/1133 [1:59:41<3:29:04, 17.74s/it]
38%|███▊ | 427/1133 [1:59:48<2:53:36, 14.75s/it]
38%|███▊ | 428/1133 [2:00:07<3:08:45, 16.06s/it]
38%|███▊ | 429/1133 [2:00:19<2:51:19, 14.60s/it]
38%|███▊ | 430/1133 [2:00:39<3:11:02, 16.31s/it]
38%|███▊ | 431/1133 [2:00:48<2:44:45, 14.08s/it]
38%|███▊ | 432/1133 [2:01:13<3:22:09, 17.30s/it]
38%|███▊ | 433/1133 [2:01:22<2:52:26, 14.78s/it]
38%|███▊ | 434/1133 [2:01:42<3:13:46, 16.63s/it]
38%|███▊ | 435/1133 [2:02:10<3:51:04, 19.86s/it]
38%|███▊ | 436/1133 [2:02:42<4:33:06, 23.51s/it]
39%|███▊ | 437/1133 [2:03:03<4:23:29, 22.71s/it]
39%|███▊ | 438/1133 [2:03:14<3:44:35, 19.39s/it]
39%|███▊ | 439/1133 [2:03:31<3:33:15, 18.44s/it]
39%|███▉ | 440/1133 [2:03:36<2:48:12, 14.56s/it]
39%|███▉ | 441/1133 [2:03:43<2:20:30, 12.18s/it]
39%|███▉ | 442/1133 [2:03:55<2:18:51, 12.06s/it]
39%|███▉ | 443/1133 [2:04:06<2:17:37, 11.97s/it]
39%|███▉ | 444/1133 [2:04:20<2:22:31, 12.41s/it]
39%|███▉ | 445/1133 [2:04:33<2:23:50, 12.54s/it]
39%|███▉ | 446/1133 [2:04:39<2:01:30, 10.61s/it]
39%|███▉ | 447/1133 [2:04:50<2:05:08, 10.95s/it]
40%|███▉ | 448/1133 [2:05:08<2:29:00, 13.05s/it]
40%|███▉ | 449/1133 [2:05:28<2:51:09, 15.01s/it]
40%|███▉ | 450/1133 [2:05:51<3:18:35, 17.45s/it]
40%|███▉ | 451/1133 [2:05:57<2:37:39, 13.87s/it]
40%|███▉ | 452/1133 [2:06:16<2:55:26, 15.46s/it]
40%|███▉ | 453/1133 [2:06:25<2:32:54, 13.49s/it]
40%|████ | 454/1133 [2:06:34<2:17:03, 12.11s/it]
40%|████ | 455/1133 [2:06:45<2:13:30, 11.82s/it]
40%|████ | 456/1133 [2:07:06<2:45:47, 14.69s/it]
40%|████ | 457/1133 [2:07:23<2:52:51, 15.34s/it]
40%|████ | 458/1133 [2:07:51<3:37:01, 19.29s/it]
41%|████ | 459/1133 [2:08:08<3:26:24, 18.37s/it]
41%|████ | 460/1133 [2:08:14<2:46:37, 14.86s/it]
41%|████ | 461/1133 [2:08:47<3:45:28, 20.13s/it]
41%|████ | 462/1133 [2:09:05<3:37:40, 19.46s/it]
41%|████ | 463/1133 [2:09:11<2:52:37, 15.46s/it]
41%|████ | 464/1133 [2:09:29<3:00:54, 16.23s/it]
41%|████ | 465/1133 [2:09:43<2:55:01, 15.72s/it]
41%|████ | 466/1133 [2:10:19<4:02:40, 21.83s/it]
41%|████ | 467/1133 [2:10:27<3:13:40, 17.45s/it]
41%|████▏ | 468/1133 [2:10:33<2:35:36, 14.04s/it]
41%|████▏ | 469/1133 [2:11:00<3:18:59, 17.98s/it]
41%|████▏ | 470/1133 [2:11:16<3:10:59, 17.28s/it]
42%|████▏ | 471/1133 [2:11:36<3:20:13, 18.15s/it]
42%|████▏ | 472/1133 [2:11:59<3:36:30, 19.65s/it]
42%|████▏ | 473/1133 [2:12:08<3:00:36, 16.42s/it]
42%|████▏ | 474/1133 [2:12:16<2:31:51, 13.83s/it]
42%|████▏ | 475/1133 [2:12:30<2:32:10, 13.88s/it]
42%|████▏ | 476/1133 [2:12:51<2:56:43, 16.14s/it]
42%|████▏ | 477/1133 [2:13:15<3:23:06, 18.58s/it]
42%|████▏ | 478/1133 [2:13:21<2:40:02, 14.66s/it]
42%|████▏ | 479/1133 [2:13:38<2:48:56, 15.50s/it]
42%|████▏ | 480/1133 [2:14:36<5:05:13, 28.04s/it]
42%|████▏ | 481/1133 [2:14:42<3:53:03, 21.45s/it]
43%|████▎ | 482/1133 [2:14:56<3:30:23, 19.39s/it]
43%|████▎ | 483/1133 [2:15:03<2:48:31, 15.56s/it]
43%|████▎ | 484/1133 [2:15:18<2:47:04, 15.45s/it]
43%|████▎ | 485/1133 [2:15:48<3:34:26, 19.86s/it]
43%|████▎ | 486/1133 [2:15:56<2:54:58, 16.23s/it]
43%|████▎ | 487/1133 [2:16:25<3:35:09, 19.98s/it]
43%|████▎ | 488/1133 [2:16:44<3:32:10, 19.74s/it]
43%|████▎ | 489/1133 [2:16:53<2:56:50, 16.48s/it]
43%|████▎ | 490/1133 [2:16:58<2:19:32, 13.02s/it]
43%|████▎ | 491/1133 [2:17:15<2:33:25, 14.34s/it]
43%|████▎ | 492/1133 [2:17:34<2:48:29, 15.77s/it]
44%|████▎ | 493/1133 [2:17:44<2:29:48, 14.04s/it]
44%|████▎ | 494/1133 [2:17:47<1:55:19, 10.83s/it]
44%|████▎ | 495/1133 [2:17:57<1:50:37, 10.40s/it]
44%|████▍ | 496/1133 [2:18:14<2:12:58, 12.53s/it]
44%|████▍ | 497/1133 [2:18:32<2:27:59, 13.96s/it]
44%|████▍ | 498/1133 [2:18:50<2:40:19, 15.15s/it]
44%|████▍ | 499/1133 [2:19:14<3:10:55, 18.07s/it]
44%|████▍ | 500/1133 [2:19:43<3:44:09, 21.25s/it]
44%|████▍ | 501/1133 [2:20:23<4:44:06, 26.97s/it]
44%|████▍ | 502/1133 [2:20:36<3:59:03, 22.73s/it]
44%|████▍ | 503/1133 [2:21:01<4:05:35, 23.39s/it]
44%|████▍ | 504/1133 [2:21:18<3:44:39, 21.43s/it]
45%|████▍ | 505/1133 [2:21:26<3:01:20, 17.33s/it]
45%|████▍ | 506/1133 [2:21:33<2:29:24, 14.30s/it]
45%|████▍ | 507/1133 [2:22:00<3:08:19, 18.05s/it]
45%|████▍ | 508/1133 [2:23:11<5:52:34, 33.85s/it]
45%|████▍ | 509/1133 [2:23:33<5:16:46, 30.46s/it]
45%|████▌ | 510/1133 [2:23:39<4:00:18, 23.14s/it]
45%|████▌ | 511/1133 [2:23:49<3:17:17, 19.03s/it]
45%|████▌ | 512/1133 [2:23:55<2:36:49, 15.15s/it]
45%|████▌ | 513/1133 [2:24:34<3:52:18, 22.48s/it]
45%|████▌ | 514/1133 [2:24:51<3:32:31, 20.60s/it]
45%|████▌ | 515/1133 [2:25:17<3:48:39, 22.20s/it]
46%|████▌ | 516/1133 [2:25:36<3:40:37, 21.45s/it]
46%|████▌ | 517/1133 [2:25:48<3:10:18, 18.54s/it]
46%|████▌ | 518/1133 [2:25:56<2:38:32, 15.47s/it]
46%|████▌ | 519/1133 [2:26:43<4:15:40, 24.98s/it]
46%|████▌ | 520/1133 [2:27:04<4:02:23, 23.72s/it]
46%|████▌ | 521/1133 [2:27:21<3:40:47, 21.65s/it]
46%|████▌ | 522/1133 [2:27:24<2:42:44, 15.98s/it]
46%|████▌ | 523/1133 [2:27:48<3:07:42, 18.46s/it]
46%|████▌ | 524/1133 [2:28:21<3:50:31, 22.71s/it]
46%|████▋ | 525/1133 [2:28:33<3:18:25, 19.58s/it]
46%|████▋ | 526/1133 [2:28:44<2:50:44, 16.88s/it]
47%|████▋ | 527/1133 [2:28:46<2:05:59, 12.47s/it]
47%|████▋ | 528/1133 [2:28:51<1:43:05, 10.22s/it]
47%|████▋ | 529/1133 [2:29:37<3:32:59, 21.16s/it]
47%|████▋ | 530/1133 [2:29:43<2:47:11, 16.64s/it]
47%|████▋ | 531/1133 [2:29:55<2:30:28, 15.00s/it]
47%|████▋ | 532/1133 [2:29:57<1:51:47, 11.16s/it]
47%|████▋ | 533/1133 [2:30:12<2:05:05, 12.51s/it]
47%|████▋ | 534/1133 [2:30:20<1:50:40, 11.09s/it]
47%|████▋ | 535/1133 [2:30:31<1:50:46, 11.11s/it]
47%|████▋ | 536/1133 [2:31:06<3:00:35, 18.15s/it]
47%|████▋ | 537/1133 [2:31:19<2:44:35, 16.57s/it]
47%|████▋ | 538/1133 [2:31:42<3:04:21, 18.59s/it]
48%|████▊ | 539/1133 [2:31:56<2:50:23, 17.21s/it]
48%|████▊ | 540/1133 [2:32:04<2:22:05, 14.38s/it]
48%|████▊ | 541/1133 [2:32:40<3:24:35, 20.74s/it]
48%|████▊ | 542/1133 [2:32:50<2:52:41, 17.53s/it]
48%|████▊ | 543/1133 [2:32:56<2:18:44, 14.11s/it]
48%|████▊ | 544/1133 [2:33:10<2:19:46, 14.24s/it]
48%|████▊ | 545/1133 [2:33:27<2:27:03, 15.01s/it]
48%|████▊ | 546/1133 [2:33:43<2:30:23, 15.37s/it]
48%|████▊ | 547/1133 [2:33:56<2:22:46, 14.62s/it]
48%|████▊ | 548/1133 [2:34:04<2:02:27, 12.56s/it]
48%|████▊ | 549/1133 [2:34:19<2:09:48, 13.34s/it]
49%|████▊ | 550/1133 [2:34:32<2:08:14, 13.20s/it]
49%|████▊ | 551/1133 [2:34:53<2:30:20, 15.50s/it]
49%|████▊ | 552/1133 [2:34:57<1:56:20, 12.01s/it]
49%|████▉ | 553/1133 [2:35:20<2:28:22, 15.35s/it]
49%|████▉ | 554/1133 [2:35:28<2:06:15, 13.08s/it]
49%|████▉ | 555/1133 [2:35:34<1:47:25, 11.15s/it]
49%|████▉ | 556/1133 [2:35:43<1:40:41, 10.47s/it]
49%|████▉ | 557/1133 [2:37:12<5:27:36, 34.13s/it]
49%|████▉ | 558/1133 [2:37:26<4:27:32, 27.92s/it]
49%|████▉ | 559/1133 [2:37:51<4:18:14, 26.99s/it]
49%|████▉ | 560/1133 [2:38:09<3:53:25, 24.44s/it]
50%|████▉ | 561/1133 [2:38:13<2:54:09, 18.27s/it]
50%|████▉ | 562/1133 [2:38:25<2:35:09, 16.30s/it]
50%|████▉ | 563/1133 [2:38:32<2:08:57, 13.58s/it]
50%|████▉ | 564/1133 [2:38:46<2:09:56, 13.70s/it]
50%|████▉ | 565/1133 [2:39:17<2:58:28, 18.85s/it]
50%|████▉ | 566/1133 [2:39:25<2:26:51, 15.54s/it]
50%|█████ | 567/1133 [2:39:39<2:22:15, 15.08s/it]
50%|█████ | 568/1133 [2:39:43<1:50:18, 11.71s/it]
50%|█████ | 569/1133 [2:39:47<1:31:02, 9.69s/it]
50%|█████ | 570/1133 [2:40:03<1:47:48, 11.49s/it]
50%|█████ | 571/1133 [2:40:13<1:43:31, 11.05s/it]
50%|█████ | 572/1133 [2:40:16<1:20:04, 8.56s/it]
51%|█████ | 573/1133 [2:40:27<1:25:43, 9.18s/it]
51%|█████ | 574/1133 [2:40:55<2:19:08, 14.93s/it]
51%|█████ | 575/1133 [2:41:02<1:55:46, 12.45s/it]
51%|█████ | 576/1133 [2:41:23<2:21:51, 15.28s/it]
51%|█████ | 577/1133 [2:41:44<2:36:57, 16.94s/it]
51%|█████ | 578/1133 [2:42:05<2:46:01, 17.95s/it]
51%|█████ | 579/1133 [2:42:20<2:39:21, 17.26s/it]
51%|█████ | 580/1133 [2:42:43<2:55:13, 19.01s/it]
51%|█████▏ | 581/1133 [2:43:01<2:50:21, 18.52s/it]
51%|█████▏ | 582/1133 [2:43:15<2:39:05, 17.32s/it]
51%|█████▏ | 583/1133 [2:43:35<2:44:35, 17.96s/it]
52%|█████▏ | 584/1133 [2:43:59<3:02:08, 19.91s/it]
52%|█████▏ | 585/1133 [2:44:19<3:02:35, 19.99s/it]
52%|█████▏ | 586/1133 [2:44:34<2:47:26, 18.37s/it]
52%|█████▏ | 587/1133 [2:44:52<2:45:54, 18.23s/it]
52%|█████▏ | 588/1133 [2:45:03<2:26:14, 16.10s/it]
52%|█████▏ | 589/1133 [2:45:16<2:17:13, 15.13s/it]
52%|█████▏ | 590/1133 [2:45:23<1:55:34, 12.77s/it]
52%|█████▏ | 591/1133 [2:45:52<2:38:25, 17.54s/it]
52%|█████▏ | 592/1133 [2:46:01<2:16:21, 15.12s/it]
52%|█████▏ | 593/1133 [2:46:17<2:19:06, 15.46s/it]
52%|█████▏ | 594/1133 [2:46:24<1:53:34, 12.64s/it]
53%|█████▎ | 595/1133 [2:47:23<3:58:15, 26.57s/it]
53%|█████▎ | 596/1133 [2:48:18<5:15:06, 35.21s/it]
53%|█████▎ | 597/1133 [2:48:28<4:07:07, 27.66s/it]
53%|█████▎ | 598/1133 [2:48:34<3:07:27, 21.02s/it]
53%|█████▎ | 599/1133 [2:48:43<2:36:25, 17.58s/it]
53%|█████▎ | 600/1133 [2:49:07<2:52:34, 19.43s/it]
53%|█████▎ | 601/1133 [2:49:32<3:08:05, 21.21s/it]
53%|█████▎ | 602/1133 [2:49:41<2:35:09, 17.53s/it]
53%|█████▎ | 603/1133 [2:49:59<2:34:35, 17.50s/it]
53%|█████▎ | 604/1133 [2:50:11<2:22:05, 16.12s/it]
53%|█████▎ | 605/1133 [2:50:28<2:22:08, 16.15s/it]
53%|█████▎ | 606/1133 [2:50:37<2:04:10, 14.14s/it]
54%|█████▎ | 607/1133 [2:50:55<2:12:28, 15.11s/it]
54%|█████▎ | 608/1133 [2:51:06<2:01:54, 13.93s/it]
54%|█████▍ | 609/1133 [2:51:23<2:09:13, 14.80s/it]
54%|█████▍ | 610/1133 [2:51:30<1:50:38, 12.69s/it]
54%|█████▍ | 611/1133 [2:51:55<2:22:57, 16.43s/it]
54%|█████▍ | 612/1133 [2:52:14<2:28:00, 17.04s/it]
54%|█████▍ | 613/1133 [2:52:56<3:33:56, 24.69s/it]
54%|█████▍ | 614/1133 [2:53:10<3:04:13, 21.30s/it]
54%|█████▍ | 615/1133 [2:53:20<2:34:48, 17.93s/it]
54%|█████▍ | 616/1133 [2:53:36<2:30:11, 17.43s/it]
54%|█████▍ | 617/1133 [2:53:42<2:00:43, 14.04s/it]
55%|█████▍ | 618/1133 [2:53:47<1:37:08, 11.32s/it]
55%|█████▍ | 619/1133 [2:53:56<1:30:43, 10.59s/it]
55%|█████▍ | 620/1133 [2:55:25<4:50:37, 33.99s/it]
55%|█████▍ | 621/1133 [2:55:37<3:54:34, 27.49s/it]
55%|█████▍ | 622/1133 [2:56:07<4:00:57, 28.29s/it]
55%|█████▍ | 623/1133 [2:56:20<3:21:09, 23.67s/it]
55%|█████▌ | 624/1133 [2:56:26<2:36:00, 18.39s/it]
55%|█████▌ | 625/1133 [2:56:38<2:18:38, 16.37s/it]
55%|█████▌ | 626/1133 [2:56:47<2:00:52, 14.30s/it]
55%|█████▌ | 627/1133 [2:57:12<2:26:15, 17.34s/it]
55%|█████▌ | 628/1133 [2:57:29<2:24:33, 17.18s/it]
56%|█████▌ | 629/1133 [2:58:15<3:38:07, 25.97s/it]
56%|█████▌ | 630/1133 [2:58:24<2:56:04, 21.00s/it]
56%|█████▌ | 631/1133 [2:58:33<2:25:31, 17.39s/it]
56%|█████▌ | 632/1133 [2:58:40<1:57:02, 14.02s/it]
56%|█████▌ | 633/1133 [2:59:02<2:18:11, 16.58s/it]
56%|█████▌ | 634/1133 [2:59:10<1:57:13, 14.10s/it]
56%|█████▌ | 635/1133 [2:59:20<1:46:49, 12.87s/it]
56%|█████▌ | 636/1133 [2:59:25<1:25:34, 10.33s/it]
56%|█████▌ | 637/1133 [2:59:34<1:21:50, 9.90s/it]
56%|█████▋ | 638/1133 [3:00:02<2:07:52, 15.50s/it]
56%|█████▋ | 639/1133 [3:00:05<1:36:09, 11.68s/it]
56%|█████▋ | 640/1133 [3:00:13<1:26:15, 10.50s/it]
57%|█████▋ | 641/1133 [3:00:26<1:33:16, 11.37s/it]
57%|█████▋ | 642/1133 [3:01:19<3:15:38, 23.91s/it]
57%|█████▋ | 643/1133 [3:01:38<3:03:26, 22.46s/it]
57%|█████▋ | 644/1133 [3:01:56<2:50:49, 20.96s/it]
57%|█████▋ | 645/1133 [3:02:15<2:44:39, 20.24s/it]
57%|█████▋ | 646/1133 [3:02:25<2:20:42, 17.34s/it]
57%|█████▋ | 647/1133 [3:02:33<1:57:19, 14.48s/it]
57%|█████▋ | 648/1133 [3:02:53<2:09:40, 16.04s/it]
57%|█████▋ | 649/1133 [3:03:51<3:51:07, 28.65s/it]
57%|█████▋ | 650/1133 [3:05:02<5:34:28, 41.55s/it]
57%|█████▋ | 651/1133 [3:05:06<4:02:57, 30.24s/it]
58%|█████▊ | 652/1133 [3:05:14<3:09:40, 23.66s/it]
58%|█████▊ | 653/1133 [3:05:21<2:28:26, 18.56s/it]
58%|█████▊ | 654/1133 [3:05:33<2:13:05, 16.67s/it]
58%|█████▊ | 655/1133 [3:05:55<2:24:03, 18.08s/it]
58%|█████▊ | 656/1133 [3:05:59<1:49:52, 13.82s/it]
58%|█████▊ | 657/1133 [3:06:39<2:52:57, 21.80s/it]
58%|█████▊ | 658/1133 [3:07:03<2:57:38, 22.44s/it]
58%|█████▊ | 659/1133 [3:07:08<2:15:52, 17.20s/it]
58%|█████▊ | 660/1133 [3:07:11<1:42:43, 13.03s/it]
58%|█████▊ | 661/1133 [3:07:25<1:44:53, 13.33s/it]
58%|█████▊ | 662/1133 [3:07:41<1:50:10, 14.03s/it]
59%|█████▊ | 663/1133 [3:07:53<1:44:33, 13.35s/it]
59%|█████▊ | 664/1133 [3:08:06<1:44:33, 13.38s/it]
59%|█████▊ | 665/1133 [3:08:25<1:56:24, 14.92s/it]
59%|█████▉ | 666/1133 [3:08:43<2:03:11, 15.83s/it]
59%|█████▉ | 667/1133 [3:08:57<1:58:36, 15.27s/it]
59%|█████▉ | 668/1133 [3:09:08<1:50:10, 14.22s/it]
59%|█████▉ | 669/1133 [3:09:14<1:31:04, 11.78s/it]
59%|█████▉ | 670/1133 [3:09:33<1:47:44, 13.96s/it]
59%|█████▉ | 671/1133 [3:09:41<1:33:09, 12.10s/it]
59%|█████▉ | 672/1133 [3:09:50<1:24:14, 10.96s/it]
59%|█████▉ | 673/1133 [3:10:22<2:12:39, 17.30s/it]
59%|█████▉ | 674/1133 [3:10:39<2:12:36, 17.33s/it]
60%|█████▉ | 675/1133 [3:10:51<2:00:47, 15.82s/it]
60%|█████▉ | 676/1133 [3:10:53<1:28:09, 11.58s/it]
60%|█████▉ | 677/1133 [3:11:05<1:28:24, 11.63s/it]
60%|█████▉ | 678/1133 [3:11:17<1:29:46, 11.84s/it]
60%|█████▉ | 679/1133 [3:11:26<1:23:01, 10.97s/it]
60%|██████ | 680/1133 [3:11:37<1:23:13, 11.02s/it]
60%|██████ | 681/1133 [3:11:48<1:22:07, 10.90s/it]
60%|██████ | 682/1133 [3:11:57<1:18:40, 10.47s/it]
60%|██████ | 683/1133 [3:12:22<1:49:48, 14.64s/it]
60%|██████ | 684/1133 [3:12:28<1:30:25, 12.08s/it]
60%|██████ | 685/1133 [3:12:43<1:37:04, 13.00s/it]
61%|██████ | 686/1133 [3:12:46<1:15:14, 10.10s/it]
61%|██████ | 687/1133 [3:13:08<1:40:11, 13.48s/it]
61%|██████ | 688/1133 [3:13:13<1:22:17, 11.10s/it]
61%|██████ | 689/1133 [3:13:33<1:40:59, 13.65s/it]
61%|██████ | 690/1133 [3:13:38<1:22:42, 11.20s/it]
61%|██████ | 691/1133 [3:13:42<1:06:18, 9.00s/it]
61%|██████ | 692/1133 [3:13:55<1:14:40, 10.16s/it]
61%|██████ | 693/1133 [3:14:15<1:36:38, 13.18s/it]
61%|██████▏ | 694/1133 [3:14:37<1:54:34, 15.66s/it]
61%|██████▏ | 695/1133 [3:14:57<2:04:13, 17.02s/it]
61%|██████▏ | 696/1133 [3:15:13<2:01:04, 16.62s/it]
62%|██████▏ | 697/1133 [3:15:34<2:11:07, 18.04s/it]
62%|██████▏ | 698/1133 [3:16:12<2:54:07, 24.02s/it]
62%|██████▏ | 699/1133 [3:16:24<2:26:58, 20.32s/it]
62%|██████▏ | 700/1133 [3:16:43<2:25:23, 20.15s/it]
62%|██████▏ | 701/1133 [3:17:02<2:21:38, 19.67s/it]
62%|██████▏ | 702/1133 [3:18:26<4:39:28, 38.91s/it]
62%|██████▏ | 703/1133 [3:18:41<3:48:57, 31.95s/it]
62%|██████▏ | 704/1133 [3:18:50<2:59:01, 25.04s/it]
62%|██████▏ | 705/1133 [3:19:08<2:43:19, 22.89s/it]
62%|██████▏ | 706/1133 [3:19:40<3:02:34, 25.65s/it]
62%|██████▏ | 707/1133 [3:19:53<2:34:56, 21.82s/it]
62%|██████▏ | 708/1133 [3:20:17<2:39:43, 22.55s/it]
63%|██████▎ | 709/1133 [3:20:30<2:17:34, 19.47s/it]
63%|██████▎ | 710/1133 [3:20:45<2:08:03, 18.16s/it]
63%|██████▎ | 711/1133 [3:20:59<2:00:00, 17.06s/it]
63%|██████▎ | 712/1133 [3:21:20<2:06:42, 18.06s/it]
63%|██████▎ | 713/1133 [3:21:26<1:42:26, 14.63s/it]
63%|██████▎ | 714/1133 [3:21:38<1:36:08, 13.77s/it]
63%|██████▎ | 715/1133 [3:21:51<1:35:14, 13.67s/it]
63%|██████▎ | 716/1133 [3:22:02<1:28:39, 12.76s/it]
63%|██████▎ | 717/1133 [3:22:08<1:13:23, 10.59s/it]
63%|██████▎ | 718/1133 [3:22:19<1:14:28, 10.77s/it]
63%|██████▎ | 719/1133 [3:22:29<1:14:02, 10.73s/it]
64%|██████▎ | 720/1133 [3:22:47<1:27:32, 12.72s/it]
64%|██████▎ | 721/1133 [3:22:54<1:15:57, 11.06s/it]
64%|██████▎ | 722/1133 [3:23:08<1:21:52, 11.95s/it]
64%|██████▍ | 723/1133 [3:23:27<1:35:02, 13.91s/it]
64%|██████▍ | 724/1133 [3:23:53<2:00:50, 17.73s/it]
64%|██████▍ | 725/1133 [3:24:29<2:37:46, 23.20s/it]
64%|██████▍ | 726/1133 [3:24:44<2:19:46, 20.61s/it]
64%|██████▍ | 727/1133 [3:24:55<2:01:25, 17.94s/it]
64%|██████▍ | 728/1133 [3:25:30<2:35:32, 23.04s/it]
64%|██████▍ | 729/1133 [3:25:52<2:33:10, 22.75s/it]
64%|██████▍ | 730/1133 [3:25:58<1:58:02, 17.57s/it]
65%|██████▍ | 731/1133 [3:26:15<1:57:26, 17.53s/it]
65%|██████▍ | 732/1133 [3:26:23<1:37:41, 14.62s/it]
65%|██████▍ | 733/1133 [3:26:46<1:53:32, 17.03s/it]
65%|██████▍ | 734/1133 [3:26:54<1:35:56, 14.43s/it]
65%|██████▍ | 735/1133 [3:27:28<2:14:19, 20.25s/it]
65%|██████▍ | 736/1133 [3:27:49<2:16:15, 20.59s/it]
65%|██████▌ | 737/1133 [3:28:01<1:58:21, 17.93s/it]
65%|██████▌ | 738/1133 [3:28:27<2:14:26, 20.42s/it]
65%|██████▌ | 739/1133 [3:28:32<1:42:36, 15.63s/it]
65%|██████▌ | 740/1133 [3:28:46<1:39:10, 15.14s/it]
65%|██████▌ | 741/1133 [3:28:54<1:25:41, 13.12s/it]
65%|██████▌ | 742/1133 [3:29:09<1:28:18, 13.55s/it]
66%|██████▌ | 743/1133 [3:29:21<1:24:33, 13.01s/it]
66%|██████▌ | 744/1133 [3:29:33<1:24:05, 12.97s/it]
66%|██████▌ | 745/1133 [3:30:03<1:55:20, 17.84s/it]
66%|██████▌ | 746/1133 [3:30:33<2:19:45, 21.67s/it]
66%|██████▌ | 747/1133 [3:30:41<1:52:44, 17.53s/it]
66%|██████▌ | 748/1133 [3:31:47<3:24:46, 31.91s/it]
66%|██████▌ | 749/1133 [3:32:11<3:09:51, 29.66s/it]
66%|██████▌ | 750/1133 [3:32:27<2:42:39, 25.48s/it]
66%|██████▋ | 751/1133 [3:32:39<2:17:04, 21.53s/it]
66%|██████▋ | 752/1133 [3:32:54<2:03:24, 19.43s/it]
66%|██████▋ | 753/1133 [3:33:05<1:48:28, 17.13s/it]
67%|██████▋ | 754/1133 [3:33:44<2:28:52, 23.57s/it]
67%|██████▋ | 755/1133 [3:34:07<2:26:46, 23.30s/it]
67%|██████▋ | 756/1133 [3:34:18<2:04:34, 19.83s/it]
67%|██████▋ | 757/1133 [3:34:29<1:48:02, 17.24s/it]
67%|██████▋ | 758/1133 [3:35:05<2:22:13, 22.76s/it]
67%|██████▋ | 759/1133 [3:35:20<2:06:30, 20.30s/it]
67%|██████▋ | 760/1133 [3:35:24<1:36:31, 15.53s/it]
67%|██████▋ | 761/1133 [3:35:42<1:40:53, 16.27s/it]
67%|██████▋ | 762/1133 [3:35:48<1:20:41, 13.05s/it]
67%|██████▋ | 763/1133 [3:35:59<1:16:59, 12.49s/it]
67%|██████▋ | 764/1133 [3:36:12<1:18:32, 12.77s/it]
68%|██████▊ | 765/1133 [3:36:27<1:21:38, 13.31s/it]
68%|██████▊ | 766/1133 [3:36:57<1:53:08, 18.50s/it]
68%|██████▊ | 767/1133 [3:37:12<1:45:43, 17.33s/it]
68%|██████▊ | 768/1133 [3:37:50<2:23:03, 23.52s/it]
68%|██████▊ | 769/1133 [3:38:19<2:32:47, 25.19s/it]
68%|██████▊ | 770/1133 [3:38:29<2:04:54, 20.65s/it]
68%|██████▊ | 771/1133 [3:38:47<1:59:46, 19.85s/it]
68%|██████▊ | 772/1133 [3:39:10<2:04:25, 20.68s/it]
68%|██████▊ | 773/1133 [3:39:25<1:55:04, 19.18s/it]
68%|██████▊ | 774/1133 [3:39:42<1:50:35, 18.48s/it]
68%|██████▊ | 775/1133 [3:41:21<4:14:06, 42.59s/it]
68%|██████▊ | 776/1133 [3:41:29<3:11:13, 32.14s/it]
69%|██████▊ | 777/1133 [3:41:47<2:45:28, 27.89s/it]
69%|██████▊ | 778/1133 [3:41:55<2:10:14, 22.01s/it]
69%|██████▉ | 779/1133 [3:41:59<1:37:44, 16.57s/it]
69%|██████▉ | 780/1133 [3:42:10<1:26:53, 14.77s/it]
69%|██████▉ | 781/1133 [3:42:39<1:51:59, 19.09s/it]
69%|██████▉ | 782/1133 [3:42:44<1:27:52, 15.02s/it]
69%|██████▉ | 783/1133 [3:43:14<1:53:03, 19.38s/it]
69%|██████▉ | 784/1133 [3:43:28<1:43:20, 17.77s/it]
69%|██████▉ | 785/1133 [3:43:38<1:30:35, 15.62s/it]
69%|██████▉ | 786/1133 [3:43:48<1:20:36, 13.94s/it]
69%|██████▉ | 787/1133 [3:44:18<1:47:19, 18.61s/it]
70%|██████▉ | 788/1133 [3:44:27<1:30:14, 15.70s/it]
70%|██████▉ | 789/1133 [3:44:30<1:08:39, 11.98s/it]
70%|██████▉ | 790/1133 [3:45:06<1:49:53, 19.22s/it]
70%|██████▉ | 791/1133 [3:45:21<1:41:27, 17.80s/it]
70%|██████▉ | 792/1133 [3:45:40<1:44:23, 18.37s/it]
70%|██████▉ | 793/1133 [3:46:28<2:33:57, 27.17s/it]
70%|███████ | 794/1133 [3:46:32<1:53:57, 20.17s/it]
70%|███████ | 795/1133 [3:46:39<1:31:41, 16.28s/it]
70%|███████ | 796/1133 [3:46:45<1:13:18, 13.05s/it]
70%|███████ | 797/1133 [3:46:57<1:11:51, 12.83s/it]
70%|███████ | 798/1133 [3:47:04<1:02:19, 11.16s/it]
71%|███████ | 799/1133 [3:47:18<1:06:54, 12.02s/it]
71%|███████ | 800/1133 [3:47:33<1:10:55, 12.78s/it]
71%|███████ | 801/1133 [3:47:45<1:09:57, 12.64s/it]
71%|███████ | 802/1133 [3:48:04<1:20:26, 14.58s/it]
71%|███████ | 803/1133 [3:48:17<1:17:20, 14.06s/it]
71%|███████ | 804/1133 [3:48:46<1:41:52, 18.58s/it]
71%|███████ | 805/1133 [3:49:02<1:36:48, 17.71s/it]
71%|███████ | 806/1133 [3:49:24<1:44:23, 19.15s/it]
71%|███████ | 807/1133 [3:49:34<1:28:14, 16.24s/it]
71%|███████▏ | 808/1133 [3:49:48<1:24:20, 15.57s/it]
71%|███████▏ | 809/1133 [3:50:01<1:20:38, 14.93s/it]
71%|███████▏ | 810/1133 [3:50:07<1:06:06, 12.28s/it]
72%|███████▏ | 811/1133 [3:50:13<55:56, 10.42s/it]
72%|███████▏ | 812/1133 [3:50:32<1:08:59, 12.90s/it]
72%|███████▏ | 813/1133 [3:50:44<1:07:44, 12.70s/it]
72%|███████▏ | 814/1133 [3:50:49<54:20, 10.22s/it]
72%|███████▏ | 815/1133 [3:51:24<1:33:57, 17.73s/it]
72%|███████▏ | 816/1133 [3:51:41<1:32:11, 17.45s/it]
72%|███████▏ | 817/1133 [3:51:50<1:18:21, 14.88s/it]
72%|███████▏ | 818/1133 [3:52:03<1:15:52, 14.45s/it]
72%|███████▏ | 819/1133 [3:52:21<1:20:16, 15.34s/it]
72%|███████▏ | 820/1133 [3:52:27<1:05:31, 12.56s/it]
72%|███████▏ | 821/1133 [3:52:29<50:04, 9.63s/it]
73%|███████▎ | 822/1133 [3:52:38<48:43, 9.40s/it]
73%|███████▎ | 823/1133 [3:53:04<1:14:20, 14.39s/it]
73%|███████▎ | 824/1133 [3:53:17<1:11:43, 13.93s/it]
73%|███████▎ | 825/1133 [3:53:24<1:01:07, 11.91s/it]
73%|███████▎ | 826/1133 [3:53:47<1:17:26, 15.13s/it]
73%|███████▎ | 827/1133 [3:53:55<1:05:55, 12.93s/it]
73%|███████▎ | 828/1133 [3:54:00<54:28, 10.71s/it]
73%|███████▎ | 829/1133 [3:54:44<1:44:44, 20.67s/it]
73%|███████▎ | 830/1133 [3:55:13<1:57:13, 23.21s/it]
73%|███████▎ | 831/1133 [3:55:36<1:55:55, 23.03s/it]
73%|███████▎ | 832/1133 [3:55:47<1:36:51, 19.31s/it]
74%|███████▎ | 833/1133 [3:56:33<2:17:11, 27.44s/it]
74%|███████▎ | 834/1133 [3:56:45<1:54:00, 22.88s/it]
74%|███████▎ | 835/1133 [3:57:03<1:46:21, 21.41s/it]
74%|███████▍ | 836/1133 [3:57:25<1:46:45, 21.57s/it]
74%|███████▍ | 837/1133 [3:58:29<2:49:31, 34.36s/it]
74%|███████▍ | 838/1133 [3:59:01<2:44:42, 33.50s/it]
74%|███████▍ | 839/1133 [3:59:14<2:13:49, 27.31s/it]
74%|███████▍ | 840/1133 [3:59:35<2:04:52, 25.57s/it]
74%|███████▍ | 841/1133 [3:59:50<1:49:07, 22.42s/it]
74%|███████▍ | 842/1133 [4:00:15<1:51:53, 23.07s/it]
74%|███████▍ | 843/1133 [4:00:25<1:31:49, 19.00s/it]
74%|███████▍ | 844/1133 [4:00:49<1:39:14, 20.61s/it]
75%|███████▍ | 845/1133 [4:01:03<1:29:25, 18.63s/it]
75%|███████▍ | 846/1133 [4:01:22<1:29:47, 18.77s/it]
75%|███████▍ | 847/1133 [4:01:35<1:21:49, 17.17s/it]
75%|███████▍ | 848/1133 [4:01:56<1:26:42, 18.25s/it]
75%|███████▍ | 849/1133 [4:02:02<1:08:18, 14.43s/it]
75%|███████▌ | 850/1133 [4:02:25<1:20:21, 17.04s/it]
75%|███████▌ | 851/1133 [4:02:29<1:01:28, 13.08s/it]
75%|███████▌ | 852/1133 [4:02:36<53:50, 11.50s/it]
75%|███████▌ | 853/1133 [4:02:52<59:34, 12.77s/it]
75%|███████▌ | 854/1133 [4:03:03<57:13, 12.31s/it]
75%|███████▌ | 855/1133 [4:03:23<1:07:14, 14.51s/it]
76%|███████▌ | 856/1133 [4:03:57<1:34:30, 20.47s/it]
76%|███████▌ | 857/1133 [4:04:33<1:54:28, 24.88s/it]
76%|███████▌ | 858/1133 [4:04:46<1:38:19, 21.45s/it]
76%|███████▌ | 859/1133 [4:05:03<1:32:22, 20.23s/it]
76%|███████▌ | 860/1133 [4:05:14<1:18:08, 17.18s/it]
76%|███████▌ | 861/1133 [4:06:00<1:58:04, 26.05s/it]
76%|███████▌ | 862/1133 [4:06:22<1:52:03, 24.81s/it]
76%|███████▌ | 863/1133 [4:07:04<2:14:11, 29.82s/it]
76%|███████▋ | 864/1133 [4:07:14<1:47:50, 24.05s/it]
76%|███████▋ | 865/1133 [4:07:31<1:37:48, 21.90s/it]
76%|███████▋ | 866/1133 [4:07:59<1:44:57, 23.59s/it]
77%|███████▋ | 867/1133 [4:08:22<1:44:09, 23.49s/it]
77%|███████▋ | 868/1133 [4:08:33<1:27:23, 19.79s/it]
77%|███████▋ | 869/1133 [4:08:42<1:12:44, 16.53s/it]
77%|███████▋ | 870/1133 [4:08:52<1:03:59, 14.60s/it]
77%|███████▋ | 871/1133 [4:09:01<56:20, 12.90s/it]
77%|███████▋ | 872/1133 [4:09:21<1:05:00, 14.95s/it]
77%|███████▋ | 873/1133 [4:09:33<1:01:17, 14.15s/it]
77%|███████▋ | 874/1133 [4:09:43<55:46, 12.92s/it]
77%|███████▋ | 875/1133 [4:10:13<1:17:08, 17.94s/it]
77%|███████▋ | 876/1133 [4:10:38<1:25:57, 20.07s/it]
77%|███████▋ | 877/1133 [4:10:59<1:26:36, 20.30s/it]
77%|███████▋ | 878/1133 [4:11:16<1:21:53, 19.27s/it]
78%|███████▊ | 879/1133 [4:11:27<1:11:58, 17.00s/it]
78%|███████▊ | 880/1133 [4:11:38<1:03:35, 15.08s/it]
78%|███████▊ | 881/1133 [4:11:47<56:20, 13.41s/it]
78%|███████▊ | 882/1133 [4:12:11<1:09:10, 16.54s/it]
78%|███████▊ | 883/1133 [4:12:24<1:04:17, 15.43s/it]
78%|███████▊ | 884/1133 [4:12:44<1:09:18, 16.70s/it]
78%|███████▊ | 885/1133 [4:12:59<1:07:45, 16.39s/it]
78%|███████▊ | 886/1133 [4:13:08<57:32, 13.98s/it]
78%|███████▊ | 887/1133 [4:13:46<1:26:55, 21.20s/it]
78%|███████▊ | 888/1133 [4:13:55<1:11:28, 17.50s/it]
78%|███████▊ | 889/1133 [4:14:18<1:18:02, 19.19s/it]
79%|███████▊ | 890/1133 [4:14:28<1:07:17, 16.62s/it]
79%|███████▊ | 891/1133 [4:14:37<57:39, 14.29s/it]
79%|███████▊ | 892/1133 [4:15:08<1:17:00, 19.17s/it]
79%|███████▉ | 893/1133 [4:15:32<1:22:23, 20.60s/it]
79%|███████▉ | 894/1133 [4:15:36<1:02:04, 15.58s/it]
79%|███████▉ | 895/1133 [4:15:59<1:11:27, 18.02s/it]
79%|███████▉ | 896/1133 [4:16:17<1:10:26, 17.84s/it]
79%|███████▉ | 897/1133 [4:16:24<58:14, 14.81s/it]
79%|███████▉ | 898/1133 [4:16:37<55:06, 14.07s/it]
79%|███████▉ | 899/1133 [4:16:53<56:44, 14.55s/it]
79%|███████▉ | 900/1133 [4:17:09<58:27, 15.05s/it]
80%|███████▉ | 901/1133 [4:17:21<55:01, 14.23s/it]
80%|███████▉ | 902/1133 [4:17:33<52:33, 13.65s/it]
80%|███████▉ | 903/1133 [4:17:54<59:57, 15.64s/it]
80%|███████▉ | 904/1133 [4:18:07<57:12, 14.99s/it]
80%|███████▉ | 905/1133 [4:18:39<1:15:45, 19.94s/it]
80%|███████▉ | 906/1133 [4:18:46<1:00:59, 16.12s/it]
80%|████████ | 907/1133 [4:18:59<57:01, 15.14s/it]
80%|████████ | 908/1133 [4:19:17<59:59, 16.00s/it]
80%|████████ | 909/1133 [4:19:31<57:28, 15.40s/it]
80%|████████ | 910/1133 [4:19:40<50:34, 13.61s/it]
80%|████████ | 911/1133 [4:19:50<46:22, 12.53s/it]
80%|████████ | 912/1133 [4:20:03<46:32, 12.64s/it]
81%|████████ | 913/1133 [4:20:14<44:07, 12.03s/it]
81%|████████ | 914/1133 [4:20:29<47:56, 13.14s/it]
81%|████████ | 915/1133 [4:20:37<41:18, 11.37s/it]
81%|████████ | 916/1133 [4:21:04<58:23, 16.14s/it]
81%|████████ | 917/1133 [4:21:28<1:06:21, 18.43s/it]
81%|████████ | 918/1133 [4:21:58<1:19:18, 22.13s/it]
81%|████████ | 919/1133 [4:22:05<1:02:21, 17.48s/it]
81%|████████ | 920/1133 [4:22:11<49:58, 14.08s/it]
81%|████████▏ | 921/1133 [4:22:27<51:28, 14.57s/it]
81%|████████▏ | 922/1133 [4:22:35<44:05, 12.54s/it]
81%|████████▏ | 923/1133 [4:22:46<43:00, 12.29s/it]
82%|████████▏ | 924/1133 [4:22:56<39:54, 11.46s/it]
82%|████████▏ | 925/1133 [4:23:10<42:57, 12.39s/it]
82%|████████▏ | 926/1133 [4:23:25<44:58, 13.04s/it]
82%|████████▏ | 927/1133 [4:23:37<43:25, 12.65s/it]
82%|████████▏ | 928/1133 [4:23:45<38:14, 11.19s/it]
82%|████████▏ | 929/1133 [4:23:58<40:23, 11.88s/it]
82%|████████▏ | 930/1133 [4:24:21<51:35, 15.25s/it]
82%|████████▏ | 931/1133 [4:24:36<50:36, 15.03s/it]
82%|████████▏ | 932/1133 [4:24:48<47:34, 14.20s/it]
82%|████████▏ | 933/1133 [4:24:57<42:04, 12.62s/it]
82%|████████▏ | 934/1133 [4:25:01<33:45, 10.18s/it]
83%|████████▎ | 935/1133 [4:25:26<47:40, 14.45s/it]
83%|████████▎ | 936/1133 [4:25:37<44:45, 13.63s/it]
83%|████████▎ | 937/1133 [4:25:49<42:40, 13.07s/it]
83%|████████▎ | 938/1133 [4:26:02<41:45, 12.85s/it]
83%|████████▎ | 939/1133 [4:26:14<41:00, 12.68s/it]
83%|████████▎ | 940/1133 [4:26:31<45:20, 14.10s/it]
83%|████████▎ | 941/1133 [4:27:00<58:50, 18.39s/it]
83%|████████▎ | 942/1133 [4:27:44<1:23:47, 26.32s/it]
83%|████████▎ | 943/1133 [4:27:55<1:08:24, 21.60s/it]
83%|████████▎ | 944/1133 [4:28:41<1:30:40, 28.79s/it]
83%|████████▎ | 945/1133 [4:29:05<1:26:01, 27.46s/it]
83%|████████▎ | 946/1133 [4:29:29<1:22:07, 26.35s/it]
84%|████████▎ | 947/1133 [4:29:51<1:17:45, 25.08s/it]
84%|████████▎ | 948/1133 [4:30:26<1:26:37, 28.10s/it]
84%|████████▍ | 949/1133 [4:30:37<1:10:00, 22.83s/it]
84%|████████▍ | 950/1133 [4:30:42<53:47, 17.64s/it]
84%|████████▍ | 951/1133 [4:30:56<50:11, 16.55s/it]
84%|████████▍ | 952/1133 [4:31:07<44:30, 14.75s/it]
84%|████████▍ | 953/1133 [4:31:13<37:00, 12.33s/it]
84%|████████▍ | 954/1133 [4:31:17<29:11, 9.79s/it]
84%|████████▍ | 955/1133 [4:31:26<27:45, 9.36s/it]
84%|████████▍ | 956/1133 [4:31:41<33:12, 11.26s/it]
84%|████████▍ | 957/1133 [4:31:48<29:26, 10.03s/it]
85%|████████▍ | 958/1133 [4:32:02<32:11, 11.04s/it]
85%|████████▍ | 959/1133 [4:32:19<37:05, 12.79s/it]
85%|████████▍ | 960/1133 [4:32:34<39:21, 13.65s/it]
85%|████████▍ | 961/1133 [4:32:47<38:24, 13.40s/it]
85%|████████▍ | 962/1133 [4:33:26<1:00:00, 21.06s/it]
85%|████████▍ | 963/1133 [4:33:43<56:04, 19.79s/it]
85%|████████▌ | 964/1133 [4:33:54<48:25, 17.19s/it]
85%|████████▌ | 965/1133 [4:34:07<44:59, 16.07s/it]
85%|████████▌ | 966/1133 [4:34:15<37:22, 13.43s/it]
85%|████████▌ | 967/1133 [4:34:49<54:04, 19.55s/it]
85%|████████▌ | 968/1133 [4:34:56<43:33, 15.84s/it]
86%|████████▌ | 969/1133 [4:35:09<41:16, 15.10s/it]
86%|████████▌ | 970/1133 [4:35:19<36:52, 13.57s/it]
86%|████████▌ | 971/1133 [4:35:37<40:16, 14.92s/it]
86%|████████▌ | 972/1133 [4:35:48<37:02, 13.80s/it]
86%|████████▌ | 973/1133 [4:36:39<1:06:09, 24.81s/it]
86%|████████▌ | 974/1133 [4:36:47<52:10, 19.69s/it]
86%|████████▌ | 975/1133 [4:36:58<45:07, 17.14s/it]
86%|████████▌ | 976/1133 [4:37:06<37:27, 14.31s/it]
86%|████████▌ | 977/1133 [4:37:16<33:53, 13.03s/it]
86%|████████▋ | 978/1133 [4:37:29<33:59, 13.16s/it]
86%|████████▋ | 979/1133 [4:38:17<1:00:41, 23.64s/it]
86%|████████▋ | 980/1133 [4:38:24<47:46, 18.74s/it]
87%|████████▋ | 981/1133 [4:38:40<45:11, 17.84s/it]
87%|████████▋ | 982/1133 [4:38:56<43:16, 17.20s/it]
87%|████████▋ | 983/1133 [4:39:06<37:35, 15.04s/it]
87%|████████▋ | 984/1133 [4:39:11<30:17, 12.20s/it]
87%|████████▋ | 985/1133 [4:39:32<36:03, 14.62s/it]
87%|████████▋ | 986/1133 [4:39:57<43:59, 17.95s/it]
87%|████████▋ | 987/1133 [4:40:12<41:12, 16.93s/it]
87%|████████▋ | 988/1133 [4:40:30<42:03, 17.41s/it]
87%|████████▋ | 989/1133 [4:40:49<42:37, 17.76s/it]
87%|████████▋ | 990/1133 [4:42:05<1:23:55, 35.21s/it]
87%|████████▋ | 991/1133 [4:42:20<1:09:04, 29.18s/it]
88%|████████▊ | 992/1133 [4:42:30<54:42, 23.28s/it]
88%|████████▊ | 993/1133 [4:42:37<43:27, 18.63s/it]
88%|████████▊ | 994/1133 [4:43:06<50:04, 21.61s/it]
88%|████████▊ | 995/1133 [4:43:28<49:39, 21.59s/it]
88%|████████▊ | 996/1133 [4:43:39<42:07, 18.45s/it]
88%|████████▊ | 997/1133 [4:43:57<41:30, 18.31s/it]
88%|████████▊ | 998/1133 [4:44:10<37:54, 16.85s/it]
88%|████████▊ | 999/1133 [4:44:48<51:35, 23.10s/it]
88%|████████▊ | 1000/1133 [4:45:03<46:14, 20.86s/it]
88%|████████▊ | 1001/1133 [4:45:07<34:39, 15.76s/it]
88%|████████▊ | 1002/1133 [4:45:18<31:25, 14.39s/it]
89%|████████▊ | 1003/1133 [4:45:31<30:11, 13.94s/it]
89%|████████▊ | 1004/1133 [4:46:01<40:07, 18.66s/it]
89%|████████▊ | 1005/1133 [4:46:06<31:03, 14.56s/it]
89%|████████▉ | 1006/1133 [4:47:09<1:01:23, 29.01s/it]
89%|████████▉ | 1007/1133 [4:47:23<51:49, 24.68s/it]
89%|████████▉ | 1008/1133 [4:47:53<54:29, 26.16s/it]
89%|████████▉ | 1009/1133 [4:48:15<51:46, 25.06s/it]
89%|████████▉ | 1010/1133 [4:48:42<52:29, 25.60s/it]
89%|████████▉ | 1011/1133 [4:49:17<57:48, 28.43s/it]
89%|████████▉ | 1012/1133 [4:49:21<42:27, 21.06s/it]
89%|████████▉ | 1013/1133 [4:49:32<36:11, 18.09s/it]
89%|████████▉ | 1014/1133 [4:49:40<29:26, 14.84s/it]
90%|████████▉ | 1015/1133 [4:50:05<35:11, 17.90s/it]
90%|████████▉ | 1016/1133 [4:50:23<35:14, 18.07s/it]
90%|████████▉ | 1017/1133 [4:50:36<32:13, 16.67s/it]
90%|████████▉ | 1018/1133 [4:50:41<25:13, 13.16s/it]
90%|████████▉ | 1019/1133 [4:51:13<35:31, 18.69s/it]
90%|█████████ | 1020/1133 [4:51:42<41:05, 21.82s/it]
90%|█████████ | 1021/1133 [4:51:54<35:01, 18.77s/it]
90%|█████████ | 1022/1133 [4:52:15<35:57, 19.43s/it]
90%|█████████ | 1023/1133 [4:52:50<44:30, 24.28s/it]
90%|█████████ | 1024/1133 [4:53:03<37:52, 20.85s/it]
90%|█████████ | 1025/1133 [4:53:19<34:33, 19.20s/it]
91%|█████████ | 1026/1133 [4:53:35<32:55, 18.46s/it]
91%|█████████ | 1027/1133 [4:53:39<24:35, 13.92s/it]
91%|█████████ | 1028/1133 [4:53:46<21:09, 12.09s/it]
91%|█████████ | 1029/1133 [4:53:58<20:47, 12.00s/it]
91%|█████████ | 1030/1133 [4:54:15<22:50, 13.30s/it]
91%|█████████ | 1031/1133 [4:54:18<17:30, 10.30s/it]
91%|█████████ | 1032/1133 [4:54:32<19:29, 11.58s/it]
91%|█████████ | 1033/1133 [4:54:45<19:38, 11.78s/it]
91%|█████████▏| 1034/1133 [4:55:06<24:14, 14.69s/it]
91%|█████████▏| 1035/1133 [4:55:16<21:25, 13.11s/it]
91%|█████████▏| 1036/1133 [4:55:25<19:27, 12.04s/it]
92%|█████████▏| 1037/1133 [4:55:33<17:14, 10.77s/it]
92%|█████████▏| 1038/1133 [4:55:50<19:57, 12.61s/it]
92%|█████████▏| 1039/1133 [4:56:05<20:55, 13.36s/it]
92%|█████████▏| 1040/1133 [4:56:08<16:01, 10.34s/it]
92%|█████████▏| 1041/1133 [4:56:17<15:12, 9.92s/it]
92%|█████████▏| 1042/1133 [4:56:39<20:17, 13.38s/it]
92%|█████████▏| 1043/1133 [4:56:45<16:48, 11.20s/it]
92%|█████████▏| 1044/1133 [4:57:12<23:50, 16.08s/it]
92%|█████████▏| 1045/1133 [4:57:35<26:27, 18.04s/it]
92%|█████████▏| 1046/1133 [4:57:49<24:27, 16.86s/it]
92%|█████████▏| 1047/1133 [4:58:05<23:54, 16.68s/it]
92%|█████████▏| 1048/1133 [4:58:19<22:27, 15.85s/it]
93%|█████████▎| 1049/1133 [4:58:36<22:37, 16.16s/it]
93%|█████████▎| 1050/1133 [4:58:48<20:44, 14.99s/it]
93%|█████████▎| 1051/1133 [4:59:03<20:32, 15.03s/it]
93%|█████████▎| 1052/1133 [4:59:08<15:59, 11.84s/it]
93%|█████████▎| 1053/1133 [4:59:33<21:01, 15.77s/it]
93%|█████████▎| 1054/1133 [4:59:36<15:50, 12.04s/it]
93%|█████████▎| 1055/1133 [4:59:51<16:38, 12.80s/it]
93%|█████████▎| 1056/1133 [4:59:57<14:04, 10.97s/it]
93%|█████████▎| 1057/1133 [5:00:17<17:12, 13.58s/it]
93%|█████████▎| 1058/1133 [5:00:23<14:10, 11.33s/it]
93%|█████████▎| 1059/1133 [5:00:54<21:15, 17.24s/it]
94%|█████████▎| 1060/1133 [5:01:13<21:26, 17.63s/it]
94%|█████████▎| 1061/1133 [5:01:29<20:52, 17.39s/it]
94%|█████████▎| 1062/1133 [5:01:44<19:22, 16.38s/it]
94%|█████████▍| 1063/1133 [5:02:02<19:51, 17.02s/it]
94%|█████████▍| 1064/1133 [5:02:15<18:07, 15.76s/it]
94%|█████████▍| 1065/1133 [5:02:27<16:41, 14.73s/it]
94%|█████████▍| 1066/1133 [5:02:50<19:13, 17.21s/it]
94%|█████████▍| 1067/1133 [5:02:59<16:01, 14.57s/it]
94%|█████████▍| 1068/1133 [5:03:10<14:41, 13.56s/it]
94%|█████████▍| 1069/1133 [5:03:23<14:26, 13.55s/it]
94%|█████████▍| 1070/1133 [5:03:43<16:09, 15.38s/it]
95%|█████████▍| 1071/1133 [5:03:56<15:06, 14.63s/it]
95%|█████████▍| 1072/1133 [5:04:14<16:04, 15.81s/it]
95%|█████████▍| 1073/1133 [5:05:51<40:05, 40.09s/it]
95%|█████████▍| 1074/1133 [5:06:07<32:14, 32.79s/it]
95%|█████████▍| 1075/1133 [5:06:14<24:08, 24.97s/it]
95%|█████████▍| 1076/1133 [5:06:25<19:47, 20.84s/it]
95%|█████████▌| 1077/1133 [5:06:33<15:56, 17.08s/it]
95%|█████████▌| 1078/1133 [5:07:35<27:58, 30.51s/it]
95%|█████████▌| 1079/1133 [5:07:50<23:21, 25.96s/it]
95%|█████████▌| 1080/1133 [5:09:00<34:26, 38.98s/it]
95%|█████████▌| 1081/1133 [5:09:05<25:05, 28.96s/it]
95%|█████████▌| 1082/1133 [5:09:49<28:22, 33.38s/it]
96%|█████████▌| 1083/1133 [5:09:57<21:25, 25.71s/it]
96%|█████████▌| 1084/1133 [5:10:28<22:27, 27.50s/it]
96%|█████████▌| 1085/1133 [5:11:51<35:09, 43.95s/it]
96%|█████████▌| 1086/1133 [5:11:59<26:04, 33.28s/it]
96%|█████████▌| 1087/1133 [5:12:04<18:52, 24.63s/it]
96%|█████████▌| 1088/1133 [5:12:10<14:18, 19.08s/it]
96%|█████████▌| 1089/1133 [5:12:29<14:00, 19.10s/it]
96%|█████████▌| 1090/1133 [5:12:47<13:28, 18.80s/it]
96%|█████████▋| 1091/1133 [5:13:03<12:38, 18.05s/it]
96%|█████████▋| 1092/1133 [5:13:17<11:30, 16.83s/it]
96%|█████████▋| 1093/1133 [5:13:23<08:57, 13.44s/it]
97%|█████████▋| 1094/1133 [5:13:36<08:37, 13.27s/it]
97%|█████████▋| 1095/1133 [5:13:51<08:52, 14.01s/it]
97%|█████████▋| 1096/1133 [5:14:02<08:00, 12.99s/it]
97%|█████████▋| 1097/1133 [5:14:13<07:28, 12.46s/it]
97%|█████████▋| 1098/1133 [5:14:27<07:26, 12.76s/it]
97%|█████████▋| 1099/1133 [5:14:45<08:07, 14.34s/it]
97%|█████████▋| 1100/1133 [5:14:56<07:22, 13.40s/it]
97%|█████████▋| 1101/1133 [5:15:07<06:42, 12.57s/it]
97%|█████████▋| 1102/1133 [5:15:30<08:09, 15.80s/it]
97%|█████████▋| 1103/1133 [5:15:53<09:01, 18.05s/it]
97%|█████████▋| 1104/1133 [5:16:21<10:10, 21.07s/it]
98%|█████████▊| 1105/1133 [5:16:35<08:45, 18.76s/it]
98%|█████████▊| 1106/1133 [5:16:47<07:34, 16.83s/it]
98%|█████████▊| 1107/1133 [5:16:59<06:42, 15.47s/it]
98%|█████████▊| 1108/1133 [5:17:06<05:21, 12.84s/it]
98%|█████████▊| 1109/1133 [5:17:13<04:27, 11.16s/it]
98%|█████████▊| 1110/1133 [5:17:29<04:47, 12.51s/it]
98%|█████████▊| 1111/1133 [5:17:41<04:30, 12.28s/it]
98%|█████████▊| 1112/1133 [5:17:53<04:18, 12.29s/it]
98%|█████████▊| 1113/1133 [5:18:01<03:38, 10.94s/it]
98%|█████████▊| 1114/1133 [5:18:31<05:15, 16.63s/it]
98%|█████████▊| 1115/1133 [5:18:50<05:16, 17.58s/it]
98%|█████████▊| 1116/1133 [5:19:01<04:20, 15.32s/it]
99%|█████████▊| 1117/1133 [5:19:31<05:15, 19.72s/it]
99%|█████████▊| 1118/1133 [5:19:51<05:00, 20.06s/it]
99%|█████████▉| 1119/1133 [5:20:00<03:54, 16.72s/it]
99%|█████████▉| 1120/1133 [5:20:31<04:30, 20.79s/it]
99%|█████████▉| 1121/1133 [5:20:43<03:41, 18.42s/it]
99%|█████████▉| 1122/1133 [5:20:50<02:43, 14.90s/it]
99%|█████████▉| 1123/1133 [5:20:56<02:00, 12.09s/it]
99%|█████████▉| 1124/1133 [5:21:34<02:59, 19.95s/it]
99%|█████████▉| 1125/1133 [5:21:57<02:47, 20.96s/it]
99%|█████████▉| 1126/1133 [5:22:10<02:08, 18.37s/it]
99%|█████████▉| 1127/1133 [5:22:30<01:53, 18.94s/it]
100%|█████████▉| 1128/1133 [5:23:00<01:51, 22.23s/it]
100%|█████████▉| 1129/1133 [5:23:14<01:19, 19.92s/it]
100%|█████████▉| 1130/1133 [5:23:30<00:55, 18.65s/it]
100%|█████████▉| 1131/1133 [5:23:53<00:39, 19.92s/it]
100%|█████████▉| 1132/1133 [5:24:05<00:17, 17.64s/it]
100%|██████████| 1133/1133 [5:24:11<00:00, 14.01s/it]
100%|██████████| 1133/1133 [5:24:11<00:00, 17.17s/it]
-Batch output: ['Old Geng lifted his gun, narrowed one of his triangular eyes, and pulled the trigger. The sparrows fell like hailstones, and the iron shot whizzed through the willow branches with a sharp sound.']
-Qwen/Qwen2-72B-Instruct/shots-05 metrics: {'meteor': 0.4132330811975005, 'bleu_scores': {'bleu': 0.1439773872150899, 'precisions': [0.4590344919875548, 0.18770429097990124, 0.09733584304640557, 0.05332880434782609], 'brevity_penalty': 0.9900468527732591, 'length_ratio': 0.9900960582974495, 'translation_length': 29891, 'reference_length': 30190}, 'rouge_scores': {'rouge1': 0.46282265580817644, 'rouge2': 0.21481984475715887, 'rougeL': 0.40390542786997174, 'rougeLsum': 0.40417936239605845}, 'accuracy': 0.00264783759929391, 'correct_ids': [77, 533, 659]}
-*** Evaluating with num_shots: 10
-loading train/test data files
-
Map: 0%| | 0/4528 [00:00, ? examples/s]
Map: 88%|████████▊ | 4000/4528 [00:00<00:00, 28078.69 examples/s]
Map: 100%|██████████| 4528/4528 [00:00<00:00, 27481.47 examples/s]
-
Map: 0%| | 0/1133 [00:00, ? examples/s]
Map: 100%|██████████| 1133/1133 [00:00<00:00, 23286.96 examples/s]
-DatasetDict({
- train: Dataset({
- features: ['chinese', 'english', 'text', 'prompt'],
- num_rows: 4528
- })
- test: Dataset({
- features: ['chinese', 'english', 'text', 'prompt'],
- num_rows: 1133
- })
-})
---------------------------------------------------
-chinese: 老耿端起枪,眯缝起一只三角眼,一搂扳机响了枪,冰雹般的金麻雀劈哩啪啦往下落,铁砂子在柳枝间飞迸着,嚓嚓有声。
---------------------------------------------------
-english: Old Geng picked up his shotgun, squinted, and pulled the trigger. Two sparrows crashed to the ground like hailstones as shotgun pellets tore noisily through the branches.
---------------------------------------------------
-text: <|im_start|>system
-You are a helpful assistant that translates Chinese to English.<|im_end|>
-<|im_start|>user
-You will be given a Chinese sentence to translate. If it is an incomplete sentence, or if you are unsure about the meaning, simply copy the input text as your output. Do not output any additional sentence such as explanation or reasoning.
-
-Example Translations:
-Chinese: 全仗着狐仙搭救。
-English: Because I was protected by a fox fairy.
-Chinese: 过后,表哥告诉她俩,这人是导演,在外国留过学的,还会编剧,今天拍的这戏,就是他自编自导的。
-English: He was the director, the cousin later told them. He had studied abroad and was also a screenwriter; in fact he had written and directed the scene they had earlier seen being filmed.
-Chinese: 这凤姐忽然想起一件事来,便向窗外叫:“蓉儿回来!”
-English: Xi-feng suddenly seemed to remember something, and called to him through the window, 'Rong, come back!'
-Chinese: 三个老红卫兵走到叶文洁面前,面对着她站成了一排——当年,她们也是这样面对叶哲泰的——试图再现那早已忘却的尊严,但她们当年那魔鬼般的精神力量显然已荡然无存。
-English: The three old Red Guards stood in front of Ye in a row—just like they had stood against Ye Zhetai—trying to recapture their long-forgotten dignity. But the demonic spiritual energy that had once propelled them was gone.
-Chinese: 程先生照单全收,都是一个“谢”字,然后问王琦瑶有什么话说。
-English: Mr. Cheng accepted their toast with equanimity and a 'thank you.' Then, turning to Wang Qiyao, he asked if she had anything to say.
-Chinese: 程先生向来觉得她母亲势利,过去并不把他放在眼里,他在楼下叫王琦瑶,她连门都不肯开,只让老妈子伸出头来回话。
-English: Mr. Cheng had always thought her a calculating woman. Back when he used to call on Wang Qiyao, she would never even bother to greet him but always sent the maid down to talk to him at the door instead.
-Chinese: 按他的逻辑,我身上这个通红通红,直不愣登,长约一尺的东西就是罪恶的化身。
-English: In his way of thinking, this red, stiff, foot-long thing on my body was the incarnation of evil.
-Chinese: 他听沙瑞山讲她如何目睹父亲在“文革”中的惨死,讲她后来在建设兵团被诬陷,后来杳无音讯; 九十年代初才又回到了这座城市,在父亲曾工作过的大学中讲授天体物理学直到退休。
-English: He listened as Sha told of how she witnessed the death of her father during the Cultural Revolution, how she was falsely accused at the Production and Construction Corps, how she then seemed to disappear until her return to Beijing at the beginning of the nineties, when she began teaching astrophysics at Tsinghua, where her father had also taught, until her retirement.
-Chinese: 事情一时上有些弄反了,去片厂倒是为了照顾吴佩珍似的。
-English: Before long, it was more like Wang Qiyao was doing her a favor by going with her.
-Chinese: “这等于说正确的哲学是从天上掉下来的。
-English: 'Then that's equivalent to saying that the correct philosophy falls out of the sky.
-
-Chinese: 老耿端起枪,眯缝起一只三角眼,一搂扳机响了枪,冰雹般的金麻雀劈哩啪啦往下落,铁砂子在柳枝间飞迸着,嚓嚓有声。
-English:<|im_end|>
-<|im_start|>assistant
-Old Geng picked up his shotgun, squinted, and pulled the trigger. Two sparrows crashed to the ground like hailstones as shotgun pellets tore noisily through the branches.<|im_end|>
---------------------------------------------------
-prompt: <|im_start|>system
-You are a helpful assistant that translates Chinese to English.<|im_end|>
-<|im_start|>user
-You will be given a Chinese sentence to translate. If it is an incomplete sentence, or if you are unsure about the meaning, simply copy the input text as your output. Do not output any additional sentence such as explanation or reasoning.
-
-Example Translations:
-Chinese: 全仗着狐仙搭救。
-English: Because I was protected by a fox fairy.
-Chinese: 过后,表哥告诉她俩,这人是导演,在外国留过学的,还会编剧,今天拍的这戏,就是他自编自导的。
-English: He was the director, the cousin later told them. He had studied abroad and was also a screenwriter; in fact he had written and directed the scene they had earlier seen being filmed.
-Chinese: 这凤姐忽然想起一件事来,便向窗外叫:“蓉儿回来!”
-English: Xi-feng suddenly seemed to remember something, and called to him through the window, 'Rong, come back!'
-Chinese: 三个老红卫兵走到叶文洁面前,面对着她站成了一排——当年,她们也是这样面对叶哲泰的——试图再现那早已忘却的尊严,但她们当年那魔鬼般的精神力量显然已荡然无存。
-English: The three old Red Guards stood in front of Ye in a row—just like they had stood against Ye Zhetai—trying to recapture their long-forgotten dignity. But the demonic spiritual energy that had once propelled them was gone.
-Chinese: 程先生照单全收,都是一个“谢”字,然后问王琦瑶有什么话说。
-English: Mr. Cheng accepted their toast with equanimity and a 'thank you.' Then, turning to Wang Qiyao, he asked if she had anything to say.
-Chinese: 程先生向来觉得她母亲势利,过去并不把他放在眼里,他在楼下叫王琦瑶,她连门都不肯开,只让老妈子伸出头来回话。
-English: Mr. Cheng had always thought her a calculating woman. Back when he used to call on Wang Qiyao, she would never even bother to greet him but always sent the maid down to talk to him at the door instead.
-Chinese: 按他的逻辑,我身上这个通红通红,直不愣登,长约一尺的东西就是罪恶的化身。
-English: In his way of thinking, this red, stiff, foot-long thing on my body was the incarnation of evil.
-Chinese: 他听沙瑞山讲她如何目睹父亲在“文革”中的惨死,讲她后来在建设兵团被诬陷,后来杳无音讯; 九十年代初才又回到了这座城市,在父亲曾工作过的大学中讲授天体物理学直到退休。
-English: He listened as Sha told of how she witnessed the death of her father during the Cultural Revolution, how she was falsely accused at the Production and Construction Corps, how she then seemed to disappear until her return to Beijing at the beginning of the nineties, when she began teaching astrophysics at Tsinghua, where her father had also taught, until her retirement.
-Chinese: 事情一时上有些弄反了,去片厂倒是为了照顾吴佩珍似的。
-English: Before long, it was more like Wang Qiyao was doing her a favor by going with her.
-Chinese: “这等于说正确的哲学是从天上掉下来的。
-English: 'Then that's equivalent to saying that the correct philosophy falls out of the sky.
-
-Chinese: 老耿端起枪,眯缝起一只三角眼,一搂扳机响了枪,冰雹般的金麻雀劈哩啪啦往下落,铁砂子在柳枝间飞迸着,嚓嚓有声。
-English:<|im_end|>
-<|im_start|>assistant
-
-
0%| | 0/1133 [00:00, ?it/s]
0%| | 1/1133 [00:50<15:59:50, 50.87s/it]
0%| | 2/1133 [01:40<15:44:28, 50.10s/it]
0%| | 3/1133 [03:26<23:44:44, 75.65s/it]
0%| | 4/1133 [04:06<19:16:48, 61.48s/it]
0%| | 5/1133 [04:45<16:47:52, 53.61s/it]
1%| | 6/1133 [05:13<13:59:30, 44.69s/it]
1%| | 7/1133 [05:52<13:23:01, 42.79s/it]
1%| | 8/1133 [07:11<17:00:41, 54.44s/it]
1%| | 9/1133 [07:28<13:22:22, 42.83s/it]
1%| | 10/1133 [07:42<10:30:31, 33.69s/it]
1%| | 11/1133 [07:55<8:32:45, 27.42s/it]
1%| | 12/1133 [08:34<9:38:19, 30.95s/it]
1%| | 13/1133 [08:50<8:14:45, 26.51s/it]
1%| | 14/1133 [08:59<6:33:30, 21.10s/it]
1%|▏ | 15/1133 [09:41<8:33:49, 27.58s/it]
1%|▏ | 16/1133 [09:58<7:30:06, 24.18s/it]
2%|▏ | 17/1133 [10:28<8:02:26, 25.94s/it]
2%|▏ | 18/1133 [11:12<9:46:29, 31.56s/it]
2%|▏ | 19/1133 [11:21<7:40:55, 24.82s/it]
2%|▏ | 20/1133 [11:56<8:32:41, 27.64s/it]
2%|▏ | 21/1133 [12:18<8:03:32, 26.09s/it]
2%|▏ | 22/1133 [13:11<10:30:50, 34.07s/it]
2%|▏ | 23/1133 [13:26<8:46:07, 28.44s/it]
2%|▏ | 24/1133 [13:46<8:01:15, 26.04s/it]
2%|▏ | 25/1133 [14:15<8:13:23, 26.72s/it]
2%|▏ | 26/1133 [14:57<9:36:46, 31.26s/it]
2%|▏ | 27/1133 [15:25<9:19:36, 30.36s/it]
2%|▏ | 28/1133 [15:33<7:16:17, 23.69s/it]
3%|▎ | 29/1133 [15:46<6:17:25, 20.51s/it]
3%|▎ | 30/1133 [15:59<5:36:46, 18.32s/it]
3%|▎ | 31/1133 [16:07<4:37:53, 15.13s/it]
3%|▎ | 32/1133 [16:45<6:42:30, 21.94s/it]
3%|▎ | 33/1133 [18:17<13:09:53, 43.08s/it]
3%|▎ | 34/1133 [18:51<12:19:51, 40.39s/it]
3%|▎ | 35/1133 [19:16<10:51:54, 35.62s/it]
3%|▎ | 36/1133 [19:40<9:49:55, 32.27s/it]
3%|▎ | 37/1133 [19:59<8:33:38, 28.12s/it]
3%|▎ | 38/1133 [20:17<7:39:44, 25.19s/it]
3%|▎ | 39/1133 [20:24<5:58:48, 19.68s/it]
4%|▎ | 40/1133 [20:48<6:24:21, 21.10s/it]
4%|▎ | 41/1133 [21:38<8:59:50, 29.66s/it]
4%|▎ | 42/1133 [21:49<7:16:42, 24.02s/it]
4%|▍ | 43/1133 [22:14<7:23:36, 24.42s/it]
4%|▍ | 44/1133 [22:37<7:17:10, 24.09s/it]
4%|▍ | 45/1133 [22:50<6:12:06, 20.52s/it]
4%|▍ | 46/1133 [23:42<9:05:46, 30.13s/it]
4%|▍ | 47/1133 [24:08<8:44:15, 28.96s/it]
4%|▍ | 48/1133 [24:17<6:52:51, 22.83s/it]
4%|▍ | 49/1133 [24:32<6:11:28, 20.56s/it]
4%|▍ | 50/1133 [24:49<5:48:01, 19.28s/it]
5%|▍ | 51/1133 [25:11<6:04:28, 20.21s/it]
5%|▍ | 52/1133 [25:57<8:21:56, 27.86s/it]
5%|▍ | 53/1133 [26:22<8:08:17, 27.13s/it]
5%|▍ | 54/1133 [26:35<6:51:04, 22.86s/it]
5%|▍ | 55/1133 [27:48<11:22:58, 38.01s/it]
5%|▍ | 56/1133 [28:14<10:18:33, 34.46s/it]
5%|▌ | 57/1133 [28:52<10:36:31, 35.49s/it]
5%|▌ | 58/1133 [29:26<10:23:10, 34.78s/it]
5%|▌ | 59/1133 [29:51<9:32:07, 31.96s/it]
5%|▌ | 60/1133 [30:40<11:01:48, 37.01s/it]
5%|▌ | 61/1133 [31:01<9:37:40, 32.33s/it]
5%|▌ | 62/1133 [31:17<8:11:16, 27.52s/it]
6%|▌ | 63/1133 [31:50<8:39:07, 29.11s/it]
6%|▌ | 64/1133 [32:18<8:33:39, 28.83s/it]
6%|▌ | 65/1133 [32:40<7:53:46, 26.62s/it]
6%|▌ | 66/1133 [33:09<8:07:44, 27.43s/it]
6%|▌ | 67/1133 [33:59<10:05:42, 34.09s/it]
6%|▌ | 68/1133 [34:53<11:54:21, 40.25s/it]
6%|▌ | 69/1133 [35:35<12:01:43, 40.70s/it]
6%|▌ | 70/1133 [36:02<10:45:30, 36.43s/it]
6%|▋ | 71/1133 [36:11<8:22:25, 28.39s/it]
6%|▋ | 72/1133 [36:28<7:17:46, 24.76s/it]
6%|▋ | 73/1133 [36:41<6:16:15, 21.30s/it]
7%|▋ | 74/1133 [36:50<5:10:24, 17.59s/it]
7%|▋ | 75/1133 [37:05<4:57:44, 16.89s/it]
7%|▋ | 76/1133 [37:24<5:10:45, 17.64s/it]
7%|▋ | 77/1133 [37:52<6:01:39, 20.55s/it]
7%|▋ | 78/1133 [38:04<5:17:12, 18.04s/it]
7%|▋ | 79/1133 [38:35<6:25:03, 21.92s/it]
7%|▋ | 80/1133 [38:53<6:05:50, 20.85s/it]
7%|▋ | 81/1133 [38:59<4:46:54, 16.36s/it]
7%|▋ | 82/1133 [39:09<4:13:16, 14.46s/it]
7%|▋ | 83/1133 [39:55<6:56:32, 23.80s/it]
7%|▋ | 84/1133 [40:03<5:37:04, 19.28s/it]
8%|▊ | 85/1133 [40:09<4:26:35, 15.26s/it]
8%|▊ | 86/1133 [40:31<4:58:36, 17.11s/it]
8%|▊ | 87/1133 [40:48<4:59:37, 17.19s/it]
8%|▊ | 88/1133 [41:25<6:43:08, 23.15s/it]
8%|▊ | 89/1133 [41:42<6:12:19, 21.40s/it]
8%|▊ | 90/1133 [42:19<7:32:03, 26.01s/it]
8%|▊ | 91/1133 [42:36<6:41:17, 23.11s/it]
8%|▊ | 92/1133 [42:55<6:21:26, 21.98s/it]
8%|▊ | 93/1133 [43:24<6:56:40, 24.04s/it]
8%|▊ | 94/1133 [43:42<6:26:41, 22.33s/it]
8%|▊ | 95/1133 [44:11<6:58:19, 24.18s/it]
8%|▊ | 96/1133 [44:51<8:22:50, 29.09s/it]
9%|▊ | 97/1133 [45:08<7:16:09, 25.26s/it]
9%|▊ | 98/1133 [45:23<6:23:59, 22.26s/it]
9%|▊ | 99/1133 [45:59<7:37:46, 26.56s/it]
9%|▉ | 100/1133 [46:10<6:16:43, 21.88s/it]
9%|▉ | 101/1133 [46:55<8:14:23, 28.74s/it]
9%|▉ | 102/1133 [47:52<10:37:47, 37.12s/it]
9%|▉ | 103/1133 [48:08<8:50:03, 30.88s/it]
9%|▉ | 104/1133 [48:14<6:41:27, 23.41s/it]
9%|▉ | 105/1133 [48:52<7:55:27, 27.75s/it]
9%|▉ | 106/1133 [51:19<18:06:45, 63.49s/it]
9%|▉ | 107/1133 [52:10<17:04:14, 59.90s/it]
10%|▉ | 108/1133 [52:30<13:35:32, 47.74s/it]
10%|▉ | 109/1133 [52:57<11:50:26, 41.63s/it]
10%|▉ | 110/1133 [53:52<12:56:13, 45.53s/it]
10%|▉ | 111/1133 [54:27<12:01:06, 42.34s/it]
10%|▉ | 112/1133 [55:49<15:26:27, 54.44s/it]
10%|▉ | 113/1133 [57:03<17:04:52, 60.29s/it]
10%|█ | 114/1133 [57:23<13:35:28, 48.02s/it]
10%|█ | 115/1133 [57:39<10:52:59, 38.49s/it]
10%|█ | 116/1133 [57:56<9:04:35, 32.13s/it]
10%|█ | 117/1133 [58:39<9:58:43, 35.36s/it]
10%|█ | 118/1133 [59:04<9:03:02, 32.10s/it]
11%|█ | 119/1133 [59:39<9:22:04, 33.26s/it]
11%|█ | 120/1133 [59:52<7:34:47, 26.94s/it]
11%|█ | 121/1133 [1:00:08<6:40:34, 23.75s/it]
11%|█ | 122/1133 [1:00:38<7:13:34, 25.73s/it]
11%|█ | 123/1133 [1:00:54<6:20:13, 22.59s/it]
11%|█ | 124/1133 [1:01:22<6:48:45, 24.31s/it]
11%|█ | 125/1133 [1:02:09<8:45:38, 31.29s/it]
11%|█ | 126/1133 [1:02:31<7:55:21, 28.32s/it]
11%|█ | 127/1133 [1:03:42<11:28:53, 41.09s/it]
11%|█▏ | 128/1133 [1:04:00<9:34:03, 34.27s/it]
11%|█▏ | 129/1133 [1:04:23<8:34:12, 30.73s/it]
11%|█▏ | 130/1133 [1:04:30<6:38:07, 23.82s/it]
12%|█▏ | 131/1133 [1:05:19<8:41:45, 31.24s/it]
12%|█▏ | 132/1133 [1:05:46<8:21:43, 30.07s/it]
12%|█▏ | 133/1133 [1:06:09<7:42:59, 27.78s/it]
12%|█▏ | 134/1133 [1:06:18<6:12:56, 22.40s/it]
12%|█▏ | 135/1133 [1:07:52<12:06:32, 43.68s/it]
12%|█▏ | 136/1133 [1:08:17<10:35:03, 38.22s/it]
12%|█▏ | 137/1133 [1:08:43<9:29:55, 34.33s/it]
12%|█▏ | 138/1133 [1:08:59<7:58:55, 28.88s/it]
12%|█▏ | 139/1133 [1:09:15<6:55:43, 25.09s/it]
12%|█▏ | 140/1133 [1:09:43<7:11:04, 26.05s/it]
12%|█▏ | 141/1133 [1:10:00<6:22:22, 23.13s/it]
13%|█▎ | 142/1133 [1:10:12<5:26:48, 19.79s/it]
13%|█▎ | 143/1133 [1:10:42<6:17:39, 22.89s/it]
13%|█▎ | 144/1133 [1:10:59<5:49:48, 21.22s/it]
13%|█▎ | 145/1133 [1:11:15<5:24:52, 19.73s/it]
13%|█▎ | 146/1133 [1:11:34<5:17:36, 19.31s/it]
13%|█▎ | 147/1133 [1:11:58<5:42:33, 20.85s/it]
13%|█▎ | 148/1133 [1:12:03<4:26:33, 16.24s/it]
13%|█▎ | 149/1133 [1:12:22<4:36:45, 16.88s/it]
13%|█▎ | 150/1133 [1:12:43<4:58:48, 18.24s/it]
13%|█▎ | 151/1133 [1:13:12<5:51:42, 21.49s/it]
13%|█▎ | 152/1133 [1:13:34<5:51:15, 21.48s/it]
14%|█▎ | 153/1133 [1:13:47<5:10:18, 19.00s/it]
14%|█▎ | 154/1133 [1:14:22<6:29:08, 23.85s/it]
14%|█▎ | 155/1133 [1:14:44<6:16:56, 23.13s/it]
14%|█▍ | 156/1133 [1:15:16<7:04:05, 26.04s/it]
14%|█▍ | 157/1133 [1:16:03<8:45:25, 32.30s/it]
14%|█▍ | 158/1133 [1:16:34<8:38:48, 31.93s/it]
14%|█▍ | 159/1133 [1:17:04<8:26:57, 31.23s/it]
14%|█▍ | 160/1133 [1:17:24<7:33:40, 27.98s/it]
14%|█▍ | 161/1133 [1:17:33<5:59:04, 22.16s/it]
14%|█▍ | 162/1133 [1:17:50<5:35:09, 20.71s/it]
14%|█▍ | 163/1133 [1:18:17<6:06:08, 22.65s/it]
14%|█▍ | 164/1133 [1:18:30<5:15:01, 19.51s/it]
15%|█▍ | 165/1133 [1:18:49<5:14:27, 19.49s/it]
15%|█▍ | 166/1133 [1:19:20<6:10:07, 22.97s/it]
15%|█▍ | 167/1133 [1:19:39<5:47:37, 21.59s/it]
15%|█▍ | 168/1133 [1:20:41<9:02:04, 33.70s/it]
15%|█▍ | 169/1133 [1:20:57<7:37:40, 28.49s/it]
15%|█▌ | 170/1133 [1:21:18<7:03:22, 26.38s/it]
15%|█▌ | 171/1133 [1:21:26<5:33:41, 20.81s/it]
15%|█▌ | 172/1133 [1:21:35<4:37:18, 17.31s/it]
15%|█▌ | 173/1133 [1:21:52<4:32:02, 17.00s/it]
15%|█▌ | 174/1133 [1:22:00<3:52:58, 14.58s/it]
15%|█▌ | 175/1133 [1:22:28<4:54:02, 18.42s/it]
16%|█▌ | 176/1133 [1:22:38<4:13:43, 15.91s/it]
16%|█▌ | 177/1133 [1:22:59<4:40:03, 17.58s/it]
16%|█▌ | 178/1133 [1:24:18<9:32:59, 36.00s/it]
16%|█▌ | 179/1133 [1:24:37<8:07:57, 30.69s/it]
16%|█▌ | 180/1133 [1:25:21<9:10:18, 34.65s/it]
16%|█▌ | 181/1133 [1:25:52<8:54:20, 33.68s/it]
16%|█▌ | 182/1133 [1:26:36<9:40:48, 36.64s/it]
16%|█▌ | 183/1133 [1:27:00<8:41:46, 32.95s/it]
16%|█▌ | 184/1133 [1:27:19<7:36:30, 28.86s/it]
16%|█▋ | 185/1133 [1:27:34<6:31:26, 24.77s/it]
16%|█▋ | 186/1133 [1:28:23<8:22:07, 31.81s/it]
17%|█▋ | 187/1133 [1:29:01<8:53:51, 33.86s/it]
17%|█▋ | 188/1133 [1:29:56<10:30:35, 40.04s/it]
17%|█▋ | 189/1133 [1:30:18<9:06:54, 34.76s/it]
17%|█▋ | 190/1133 [1:30:41<8:08:09, 31.06s/it]
17%|█▋ | 191/1133 [1:31:09<7:54:55, 30.25s/it]
17%|█▋ | 192/1133 [1:31:48<8:36:07, 32.91s/it]
17%|█▋ | 193/1133 [1:32:26<8:58:14, 34.36s/it]
17%|█▋ | 194/1133 [1:32:38<7:13:39, 27.71s/it]
17%|█▋ | 195/1133 [1:32:49<5:54:58, 22.71s/it]
17%|█▋ | 196/1133 [1:33:00<5:00:02, 19.21s/it]
17%|█▋ | 197/1133 [1:33:33<6:04:51, 23.39s/it]
17%|█▋ | 198/1133 [1:33:47<5:21:02, 20.60s/it]
18%|█▊ | 199/1133 [1:34:39<7:45:02, 29.87s/it]
18%|█▊ | 200/1133 [1:34:43<5:46:28, 22.28s/it]
18%|█▊ | 201/1133 [1:35:10<6:04:42, 23.48s/it]
18%|█▊ | 202/1133 [1:35:15<4:40:47, 18.10s/it]
18%|█▊ | 203/1133 [1:35:23<3:51:57, 14.96s/it]
18%|█▊ | 204/1133 [1:36:22<7:18:32, 28.32s/it]
18%|█▊ | 205/1133 [1:36:29<5:37:37, 21.83s/it]
18%|█▊ | 206/1133 [1:36:46<5:16:05, 20.46s/it]
18%|█▊ | 207/1133 [1:37:14<5:46:53, 22.48s/it]
18%|█▊ | 208/1133 [1:37:57<7:23:47, 28.79s/it]
18%|█▊ | 209/1133 [1:39:30<12:20:48, 48.10s/it]
19%|█▊ | 210/1133 [1:40:13<11:55:13, 46.49s/it]
19%|█▊ | 211/1133 [1:40:51<11:13:38, 43.84s/it]
19%|█▊ | 212/1133 [1:41:31<10:58:21, 42.89s/it]
19%|█▉ | 213/1133 [1:41:47<8:55:01, 34.89s/it]
19%|█▉ | 214/1133 [1:41:54<6:45:47, 26.49s/it]
19%|█▉ | 215/1133 [1:42:21<6:45:13, 26.48s/it]
19%|█▉ | 216/1133 [1:44:14<13:20:47, 52.40s/it]
19%|█▉ | 217/1133 [1:44:26<10:15:38, 40.33s/it]
19%|█▉ | 218/1133 [1:44:38<8:04:53, 31.80s/it]
19%|█▉ | 219/1133 [1:44:52<6:43:55, 26.52s/it]
19%|█▉ | 220/1133 [1:45:15<6:29:18, 25.58s/it]
20%|█▉ | 221/1133 [1:46:15<9:06:06, 35.93s/it]
20%|█▉ | 222/1133 [1:47:41<12:52:52, 50.90s/it]
20%|█▉ | 223/1133 [1:48:23<12:09:59, 48.13s/it]
20%|█▉ | 224/1133 [1:48:33<9:15:32, 36.67s/it]
20%|█▉ | 225/1133 [1:48:49<7:42:20, 30.55s/it]
20%|█▉ | 226/1133 [1:49:53<10:12:00, 40.49s/it]
20%|██ | 227/1133 [1:50:16<8:54:11, 35.38s/it]
20%|██ | 228/1133 [1:50:41<8:04:25, 32.12s/it]
20%|██ | 229/1133 [1:51:34<9:40:32, 38.53s/it]
20%|██ | 230/1133 [1:52:09<9:22:55, 37.40s/it]
20%|██ | 231/1133 [1:52:26<7:51:39, 31.37s/it]
20%|██ | 232/1133 [1:52:53<7:28:14, 29.85s/it]
21%|██ | 233/1133 [1:53:15<6:53:25, 27.56s/it]
21%|██ | 234/1133 [1:53:39<6:38:53, 26.62s/it]
21%|██ | 235/1133 [1:53:48<5:18:32, 21.28s/it]
21%|██ | 236/1133 [1:54:32<6:59:14, 28.04s/it]
21%|██ | 237/1133 [1:55:39<9:52:42, 39.69s/it]
21%|██ | 238/1133 [1:56:08<9:06:21, 36.63s/it]
21%|██ | 239/1133 [1:56:36<8:24:00, 33.83s/it]
21%|██ | 240/1133 [1:57:02<7:49:52, 31.57s/it]
21%|██▏ | 241/1133 [1:57:08<5:53:52, 23.80s/it]
21%|██▏ | 242/1133 [1:57:25<5:24:29, 21.85s/it]
21%|██▏ | 243/1133 [1:57:51<5:43:53, 23.18s/it]
22%|██▏ | 244/1133 [1:57:58<4:31:33, 18.33s/it]
22%|██▏ | 245/1133 [1:58:26<5:13:52, 21.21s/it]
22%|██▏ | 246/1133 [1:58:50<5:27:39, 22.16s/it]
22%|██▏ | 247/1133 [1:59:04<4:47:29, 19.47s/it]
22%|██▏ | 248/1133 [1:59:25<4:55:51, 20.06s/it]
22%|██▏ | 249/1133 [1:59:39<4:29:51, 18.32s/it]
22%|██▏ | 250/1133 [2:00:06<5:05:26, 20.76s/it]
22%|██▏ | 251/1133 [2:00:38<5:54:57, 24.15s/it]
22%|██▏ | 252/1133 [2:00:55<5:24:16, 22.08s/it]
22%|██▏ | 253/1133 [2:01:58<8:22:34, 34.27s/it]
22%|██▏ | 254/1133 [2:02:26<7:55:09, 32.43s/it]
23%|██▎ | 255/1133 [2:03:03<8:14:09, 33.77s/it]
23%|██▎ | 256/1133 [2:03:42<8:38:19, 35.46s/it]
23%|██▎ | 257/1133 [2:04:01<7:22:37, 30.32s/it]
23%|██▎ | 258/1133 [2:04:43<8:15:56, 34.01s/it]
23%|██▎ | 259/1133 [2:05:25<8:48:11, 36.26s/it]
23%|██▎ | 260/1133 [2:07:08<13:38:27, 56.25s/it]
23%|██▎ | 261/1133 [2:08:16<14:28:22, 59.75s/it]
23%|██▎ | 262/1133 [2:08:42<12:00:27, 49.63s/it]
23%|██▎ | 263/1133 [2:10:09<14:44:35, 61.01s/it]
23%|██▎ | 264/1133 [2:10:37<12:21:36, 51.20s/it]
23%|██▎ | 265/1133 [2:12:11<15:24:25, 63.90s/it]
23%|██▎ | 266/1133 [2:12:50<13:37:39, 56.58s/it]
24%|██▎ | 267/1133 [2:13:35<12:44:28, 52.97s/it]
24%|██▎ | 268/1133 [2:15:17<16:17:36, 67.81s/it]
24%|██▎ | 269/1133 [2:15:51<13:46:43, 57.41s/it]
24%|██▍ | 270/1133 [2:16:16<11:27:52, 47.82s/it]
24%|██▍ | 271/1133 [2:16:31<9:06:30, 38.04s/it]
24%|██▍ | 272/1133 [2:16:58<8:18:20, 34.73s/it]
24%|██▍ | 273/1133 [2:17:09<6:36:18, 27.65s/it]
24%|██▍ | 274/1133 [2:17:34<6:21:04, 26.62s/it]
24%|██▍ | 275/1133 [2:17:48<5:27:24, 22.90s/it]
24%|██▍ | 276/1133 [2:18:05<5:02:58, 21.21s/it]
24%|██▍ | 277/1133 [2:18:31<5:24:25, 22.74s/it]
25%|██▍ | 278/1133 [2:18:59<5:46:11, 24.29s/it]
25%|██▍ | 279/1133 [2:19:34<6:31:29, 27.51s/it]
25%|██▍ | 280/1133 [2:20:01<6:25:36, 27.12s/it]
25%|██▍ | 281/1133 [2:20:38<7:11:11, 30.37s/it]
25%|██▍ | 282/1133 [2:20:52<5:57:22, 25.20s/it]
25%|██▍ | 283/1133 [2:21:03<4:57:14, 20.98s/it]
25%|██▌ | 284/1133 [2:21:29<5:19:48, 22.60s/it]
25%|██▌ | 285/1133 [2:21:53<5:22:53, 22.85s/it]
25%|██▌ | 286/1133 [2:22:09<4:54:36, 20.87s/it]
25%|██▌ | 287/1133 [2:22:44<5:54:01, 25.11s/it]
25%|██▌ | 288/1133 [2:23:05<5:38:03, 24.00s/it]
26%|██▌ | 289/1133 [2:23:19<4:56:26, 21.07s/it]
26%|██▌ | 290/1133 [2:23:50<5:37:44, 24.04s/it]
26%|██▌ | 291/1133 [2:24:39<7:20:05, 31.36s/it]
26%|██▌ | 292/1133 [2:24:56<6:20:22, 27.14s/it]
26%|██▌ | 293/1133 [2:25:57<8:41:00, 37.21s/it]
26%|██▌ | 294/1133 [2:26:15<7:20:52, 31.53s/it]
26%|██▌ | 295/1133 [2:26:56<7:58:09, 34.24s/it]
26%|██▌ | 296/1133 [2:27:28<7:47:40, 33.53s/it]
26%|██▌ | 297/1133 [2:27:47<6:47:43, 29.26s/it]
26%|██▋ | 298/1133 [2:28:03<5:52:50, 25.35s/it]
26%|██▋ | 299/1133 [2:28:12<4:43:25, 20.39s/it]
26%|██▋ | 300/1133 [2:28:25<4:13:02, 18.23s/it]
27%|██▋ | 301/1133 [2:28:33<3:28:55, 15.07s/it]
27%|██▋ | 302/1133 [2:28:44<3:12:25, 13.89s/it]
27%|██▋ | 303/1133 [2:28:55<3:00:51, 13.07s/it]
27%|██▋ | 304/1133 [2:29:28<4:23:03, 19.04s/it]
27%|██▋ | 305/1133 [2:30:12<6:05:46, 26.51s/it]
27%|██▋ | 306/1133 [2:30:46<6:35:52, 28.72s/it]
27%|██▋ | 307/1133 [2:31:04<5:52:11, 25.58s/it]
27%|██▋ | 308/1133 [2:31:33<6:03:54, 26.47s/it]
27%|██▋ | 309/1133 [2:32:01<6:10:58, 27.01s/it]
27%|██▋ | 310/1133 [2:32:12<5:04:54, 22.23s/it]
27%|██▋ | 311/1133 [2:32:41<5:33:22, 24.33s/it]
28%|██▊ | 312/1133 [2:33:19<6:28:18, 28.38s/it]
28%|██▊ | 313/1133 [2:33:44<6:14:05, 27.37s/it]
28%|██▊ | 314/1133 [2:34:04<5:44:46, 25.26s/it]
28%|██▊ | 315/1133 [2:35:16<8:52:55, 39.09s/it]
28%|██▊ | 316/1133 [2:35:36<7:35:55, 33.48s/it]
28%|██▊ | 317/1133 [2:35:53<6:25:19, 28.33s/it]
28%|██▊ | 318/1133 [2:36:01<5:01:59, 22.23s/it]
28%|██▊ | 319/1133 [2:37:01<7:37:42, 33.74s/it]
28%|██▊ | 320/1133 [2:37:30<7:18:04, 32.33s/it]
28%|██▊ | 321/1133 [2:37:45<6:08:10, 27.20s/it]
28%|██▊ | 322/1133 [2:38:02<5:23:19, 23.92s/it]
29%|██▊ | 323/1133 [2:38:27<5:28:33, 24.34s/it]
29%|██▊ | 324/1133 [2:39:02<6:11:16, 27.54s/it]
29%|██▊ | 325/1133 [2:39:28<6:06:06, 27.19s/it]
29%|██▉ | 326/1133 [2:39:43<5:13:16, 23.29s/it]
29%|██▉ | 327/1133 [2:40:43<7:42:21, 34.42s/it]
29%|██▉ | 328/1133 [2:41:56<10:16:18, 45.94s/it]
29%|██▉ | 329/1133 [2:42:37<9:58:07, 44.64s/it]
29%|██▉ | 330/1133 [2:42:47<7:38:00, 34.22s/it]
29%|██▉ | 331/1133 [2:43:08<6:41:41, 30.05s/it]
29%|██▉ | 332/1133 [2:43:25<5:50:03, 26.22s/it]
29%|██▉ | 333/1133 [2:43:48<5:38:32, 25.39s/it]
29%|██▉ | 334/1133 [2:44:45<7:43:31, 34.81s/it]
30%|██▉ | 335/1133 [2:45:09<7:00:49, 31.64s/it]
30%|██▉ | 336/1133 [2:45:33<6:27:21, 29.16s/it]
30%|██▉ | 337/1133 [2:45:52<5:47:40, 26.21s/it]
30%|██▉ | 338/1133 [2:46:30<6:33:21, 29.69s/it]
30%|██▉ | 339/1133 [2:47:19<7:48:31, 35.40s/it]
30%|███ | 340/1133 [2:47:39<6:48:30, 30.91s/it]
30%|███ | 341/1133 [2:48:19<7:22:42, 33.54s/it]
30%|███ | 342/1133 [2:48:38<6:26:05, 29.29s/it]
30%|███ | 343/1133 [2:48:51<5:22:04, 24.46s/it]
30%|███ | 344/1133 [2:49:59<8:11:53, 37.41s/it]
30%|███ | 345/1133 [2:50:24<7:23:23, 33.76s/it]
31%|███ | 346/1133 [2:50:52<6:58:12, 31.88s/it]
31%|███ | 347/1133 [2:51:02<5:31:22, 25.30s/it]
31%|███ | 348/1133 [2:51:30<5:42:40, 26.19s/it]
31%|███ | 349/1133 [2:51:33<4:10:16, 19.15s/it]
31%|███ | 350/1133 [2:52:13<5:34:09, 25.61s/it]
31%|███ | 351/1133 [2:52:24<4:37:20, 21.28s/it]
31%|███ | 352/1133 [2:52:51<4:56:38, 22.79s/it]
31%|███ | 353/1133 [2:53:39<6:36:31, 30.50s/it]
31%|███ | 354/1133 [2:53:57<5:48:23, 26.83s/it]
31%|███▏ | 355/1133 [2:54:12<4:58:46, 23.04s/it]
31%|███▏ | 356/1133 [2:54:29<4:35:50, 21.30s/it]
32%|███▏ | 357/1133 [2:55:05<5:31:21, 25.62s/it]
32%|███▏ | 358/1133 [2:55:35<5:51:07, 27.18s/it]
32%|███▏ | 359/1133 [2:55:49<4:56:30, 22.99s/it]
32%|███▏ | 360/1133 [2:56:26<5:53:26, 27.43s/it]
32%|███▏ | 361/1133 [2:56:57<6:03:15, 28.23s/it]
32%|███▏ | 362/1133 [2:57:13<5:16:48, 24.65s/it]
32%|███▏ | 363/1133 [2:57:24<4:24:27, 20.61s/it]
32%|███▏ | 364/1133 [2:57:36<3:50:47, 18.01s/it]
32%|███▏ | 365/1133 [2:57:45<3:15:32, 15.28s/it]
32%|███▏ | 366/1133 [2:57:59<3:11:04, 14.95s/it]
32%|███▏ | 367/1133 [2:58:41<4:53:21, 22.98s/it]
32%|███▏ | 368/1133 [2:59:03<4:50:49, 22.81s/it]
33%|███▎ | 369/1133 [2:59:16<4:13:46, 19.93s/it]
33%|███▎ | 370/1133 [2:59:27<3:39:37, 17.27s/it]
33%|███▎ | 371/1133 [2:59:32<2:51:12, 13.48s/it]
33%|███▎ | 372/1133 [3:01:19<8:44:39, 41.37s/it]
33%|███▎ | 373/1133 [3:01:51<8:09:10, 38.62s/it]
33%|███▎ | 374/1133 [3:02:02<6:23:01, 30.28s/it]
33%|███▎ | 375/1133 [3:02:12<5:05:42, 24.20s/it]
33%|███▎ | 376/1133 [3:02:33<4:54:36, 23.35s/it]
33%|███▎ | 377/1133 [3:02:51<4:35:09, 21.84s/it]
33%|███▎ | 378/1133 [3:03:23<5:13:43, 24.93s/it]
33%|███▎ | 379/1133 [3:03:39<4:36:47, 22.03s/it]
34%|███▎ | 380/1133 [3:03:53<4:07:03, 19.69s/it]
34%|███▎ | 381/1133 [3:04:45<6:07:21, 29.31s/it]
34%|███▎ | 382/1133 [3:05:13<6:03:36, 29.05s/it]
34%|███▍ | 383/1133 [3:05:52<6:38:18, 31.86s/it]
34%|███▍ | 384/1133 [3:06:19<6:20:44, 30.50s/it]
34%|███▍ | 385/1133 [3:07:17<8:05:14, 38.92s/it]
34%|███▍ | 386/1133 [3:08:58<11:55:06, 57.44s/it]
34%|███▍ | 387/1133 [3:09:14<9:20:41, 45.10s/it]
34%|███▍ | 388/1133 [3:09:37<7:55:25, 38.29s/it]
34%|███▍ | 389/1133 [3:10:11<7:39:03, 37.02s/it]
34%|███▍ | 390/1133 [3:10:36<6:55:41, 33.57s/it]
35%|███▍ | 391/1133 [3:10:53<5:50:55, 28.38s/it]
35%|███▍ | 392/1133 [3:11:30<6:25:22, 31.20s/it]
35%|███▍ | 393/1133 [3:12:36<8:32:47, 41.58s/it]
35%|███▍ | 394/1133 [3:12:58<7:17:27, 35.52s/it]
35%|███▍ | 395/1133 [3:13:55<8:39:23, 42.23s/it]
35%|███▍ | 396/1133 [3:14:21<7:36:59, 37.20s/it]
35%|███▌ | 397/1133 [3:14:39<6:26:53, 31.54s/it]
35%|███▌ | 398/1133 [3:15:16<6:44:44, 33.04s/it]
35%|███▌ | 399/1133 [3:15:36<5:57:39, 29.24s/it]
35%|███▌ | 400/1133 [3:16:07<6:03:55, 29.79s/it]
35%|███▌ | 401/1133 [3:16:19<4:58:33, 24.47s/it]
35%|███▌ | 402/1133 [3:16:44<4:58:00, 24.46s/it]
36%|███▌ | 403/1133 [3:17:12<5:12:31, 25.69s/it]
36%|███▌ | 404/1133 [3:17:37<5:07:45, 25.33s/it]
36%|███▌ | 405/1133 [3:18:01<5:04:04, 25.06s/it]
36%|███▌ | 406/1133 [3:18:18<4:35:17, 22.72s/it]
36%|███▌ | 407/1133 [3:18:41<4:33:38, 22.61s/it]
36%|███▌ | 408/1133 [3:18:58<4:13:50, 21.01s/it]
36%|███▌ | 409/1133 [3:19:33<5:03:56, 25.19s/it]
36%|███▌ | 410/1133 [3:19:55<4:53:35, 24.36s/it]
36%|███▋ | 411/1133 [3:20:48<6:34:35, 32.79s/it]
36%|███▋ | 412/1133 [3:21:21<6:34:29, 32.83s/it]
36%|███▋ | 413/1133 [3:21:52<6:28:11, 32.35s/it]
37%|███▋ | 414/1133 [3:21:58<4:50:59, 24.28s/it]
37%|███▋ | 415/1133 [3:22:41<5:59:24, 30.03s/it]
37%|███▋ | 416/1133 [3:23:37<7:30:24, 37.69s/it]
37%|███▋ | 417/1133 [3:23:47<5:54:01, 29.67s/it]
37%|███▋ | 418/1133 [3:24:09<5:23:51, 27.18s/it]
37%|███▋ | 419/1133 [3:24:43<5:47:52, 29.23s/it]
37%|███▋ | 420/1133 [3:24:46<4:12:53, 21.28s/it]
37%|███▋ | 421/1133 [3:25:15<4:40:11, 23.61s/it]
37%|███▋ | 422/1133 [3:25:37<4:33:57, 23.12s/it]
37%|███▋ | 423/1133 [3:26:01<4:38:26, 23.53s/it]
37%|███▋ | 424/1133 [3:26:41<5:35:49, 28.42s/it]
38%|███▊ | 425/1133 [3:27:20<6:11:29, 31.48s/it]
38%|███▊ | 426/1133 [3:27:50<6:08:49, 31.30s/it]
38%|███▊ | 427/1133 [3:28:05<5:08:01, 26.18s/it]
38%|███▊ | 428/1133 [3:28:37<5:28:09, 27.93s/it]
38%|███▊ | 429/1133 [3:28:57<5:00:32, 25.61s/it]
38%|███▊ | 430/1133 [3:29:33<5:38:45, 28.91s/it]
38%|███▊ | 431/1133 [3:29:50<4:53:53, 25.12s/it]
38%|███▊ | 432/1133 [3:30:35<6:02:13, 31.00s/it]
38%|███▊ | 433/1133 [3:30:48<4:59:25, 25.66s/it]
38%|███▊ | 434/1133 [3:31:22<5:30:17, 28.35s/it]
38%|███▊ | 435/1133 [3:32:10<6:36:42, 34.10s/it]
38%|███▊ | 436/1133 [3:33:08<8:01:10, 41.42s/it]
39%|███▊ | 437/1133 [3:33:47<7:51:20, 40.63s/it]
39%|███▊ | 438/1133 [3:34:09<6:43:43, 34.85s/it]
39%|███▊ | 439/1133 [3:34:38<6:23:42, 33.17s/it]
39%|███▉ | 440/1133 [3:34:48<5:02:11, 26.16s/it]
39%|███▉ | 441/1133 [3:35:02<4:20:32, 22.59s/it]
39%|███▉ | 442/1133 [3:35:21<4:08:54, 21.61s/it]
39%|███▉ | 443/1133 [3:35:43<4:07:48, 21.55s/it]
39%|███▉ | 444/1133 [3:36:07<4:16:25, 22.33s/it]
39%|███▉ | 445/1133 [3:36:29<4:16:25, 22.36s/it]
39%|███▉ | 446/1133 [3:36:40<3:37:31, 19.00s/it]
39%|███▉ | 447/1133 [3:37:10<4:12:36, 22.09s/it]
40%|███▉ | 448/1133 [3:37:41<4:42:57, 24.78s/it]
40%|███▉ | 449/1133 [3:38:18<5:24:11, 28.44s/it]
40%|███▉ | 450/1133 [3:39:00<6:12:20, 32.71s/it]
40%|███▉ | 451/1133 [3:39:10<4:54:50, 25.94s/it]
40%|███▉ | 452/1133 [3:39:45<5:23:37, 28.51s/it]
40%|███▉ | 453/1133 [3:40:01<4:41:26, 24.83s/it]
40%|████ | 454/1133 [3:40:22<4:25:41, 23.48s/it]
40%|████ | 455/1133 [3:40:42<4:14:36, 22.53s/it]
40%|████ | 456/1133 [3:41:18<4:59:02, 26.50s/it]
40%|████ | 457/1133 [3:41:48<5:10:57, 27.60s/it]
40%|████ | 458/1133 [3:42:36<6:20:49, 33.85s/it]
41%|████ | 459/1133 [3:43:06<6:04:54, 32.48s/it]
41%|████ | 460/1133 [3:43:17<4:55:17, 26.33s/it]
41%|████ | 461/1133 [3:44:14<6:35:59, 35.36s/it]
41%|████ | 462/1133 [3:44:46<6:24:43, 34.40s/it]
41%|████ | 463/1133 [3:44:55<4:59:08, 26.79s/it]
41%|████ | 464/1133 [3:45:27<5:15:52, 28.33s/it]
41%|████ | 465/1133 [3:45:54<5:11:14, 27.96s/it]
41%|████ | 466/1133 [3:46:51<6:48:52, 36.78s/it]
41%|████ | 467/1133 [3:47:05<5:29:45, 29.71s/it]
41%|████▏ | 468/1133 [3:47:16<4:27:33, 24.14s/it]
41%|████▏ | 469/1133 [3:48:03<5:44:50, 31.16s/it]
41%|████▏ | 470/1133 [3:48:31<5:34:12, 30.25s/it]
42%|████▏ | 471/1133 [3:49:06<5:49:24, 31.67s/it]
42%|████▏ | 472/1133 [3:49:46<6:15:20, 34.07s/it]
42%|████▏ | 473/1133 [3:50:02<5:15:58, 28.73s/it]
42%|████▏ | 474/1133 [3:50:16<4:24:27, 24.08s/it]
42%|████▏ | 475/1133 [3:50:38<4:18:42, 23.59s/it]
42%|████▏ | 476/1133 [3:51:14<4:58:42, 27.28s/it]
42%|████▏ | 477/1133 [3:51:56<5:45:44, 31.62s/it]
42%|████▏ | 478/1133 [3:52:06<4:33:48, 25.08s/it]
42%|████▏ | 479/1133 [3:52:37<4:52:57, 26.88s/it]
42%|████▏ | 480/1133 [3:54:21<9:05:17, 50.10s/it]
42%|████▏ | 481/1133 [3:54:32<6:55:47, 38.26s/it]
43%|████▎ | 482/1133 [3:54:56<6:08:36, 33.97s/it]
43%|████▎ | 483/1133 [3:55:08<4:57:09, 27.43s/it]
43%|████▎ | 484/1133 [3:55:35<4:55:09, 27.29s/it]
43%|████▎ | 485/1133 [3:56:28<6:19:28, 35.14s/it]
43%|████▎ | 486/1133 [3:56:42<5:11:14, 28.86s/it]
43%|████▎ | 487/1133 [3:57:38<6:37:11, 36.89s/it]
43%|████▎ | 488/1133 [3:58:12<6:26:33, 35.96s/it]
43%|████▎ | 489/1133 [3:58:29<5:25:49, 30.36s/it]
43%|████▎ | 490/1133 [3:58:37<4:12:11, 23.53s/it]
43%|████▎ | 491/1133 [3:59:07<4:34:47, 25.68s/it]
43%|████▎ | 492/1133 [3:59:45<5:14:04, 29.40s/it]
44%|████▎ | 493/1133 [4:00:02<4:31:36, 25.46s/it]
44%|████▎ | 494/1133 [4:00:07<3:27:37, 19.49s/it]
44%|████▎ | 495/1133 [4:00:27<3:26:45, 19.44s/it]
44%|████▍ | 496/1133 [4:00:58<4:05:30, 23.12s/it]
44%|████▍ | 497/1133 [4:01:28<4:25:08, 25.01s/it]
44%|████▍ | 498/1133 [4:01:59<4:44:35, 26.89s/it]
44%|████▍ | 499/1133 [4:02:43<5:37:21, 31.93s/it]
44%|████▍ | 500/1133 [4:03:37<6:48:52, 38.76s/it]
44%|████▍ | 501/1133 [4:04:43<8:14:01, 46.90s/it]
44%|████▍ | 502/1133 [4:05:07<6:59:19, 39.87s/it]
44%|████▍ | 503/1133 [4:05:50<7:10:42, 41.02s/it]
44%|████▍ | 504/1133 [4:06:20<6:34:35, 37.64s/it]
45%|████▍ | 505/1133 [4:06:34<5:20:23, 30.61s/it]
45%|████▍ | 506/1133 [4:06:48<4:25:15, 25.38s/it]
45%|████▍ | 507/1133 [4:07:32<5:24:44, 31.13s/it]
45%|████▍ | 508/1133 [4:09:32<10:01:35, 57.75s/it]
45%|████▍ | 509/1133 [4:10:19<9:26:02, 54.43s/it]
45%|████▌ | 510/1133 [4:10:30<7:10:20, 41.45s/it]
45%|████▌ | 511/1133 [4:10:48<5:57:40, 34.50s/it]
45%|████▌ | 512/1133 [4:11:01<4:50:57, 28.11s/it]
45%|████▌ | 513/1133 [4:12:06<6:44:28, 39.14s/it]
45%|████▌ | 514/1133 [4:12:35<6:10:24, 35.90s/it]
45%|████▌ | 515/1133 [4:13:19<6:36:57, 38.54s/it]
46%|████▌ | 516/1133 [4:13:53<6:22:14, 37.17s/it]
46%|████▌ | 517/1133 [4:14:15<5:33:03, 32.44s/it]
46%|████▌ | 518/1133 [4:14:30<4:39:34, 27.28s/it]
46%|████▌ | 519/1133 [4:15:58<7:45:34, 45.50s/it]
46%|████▌ | 520/1133 [4:16:32<7:09:57, 42.08s/it]
46%|████▌ | 521/1133 [4:17:02<6:32:18, 38.46s/it]
46%|████▌ | 522/1133 [4:17:07<4:48:05, 28.29s/it]
46%|████▌ | 523/1133 [4:17:44<5:16:37, 31.14s/it]
46%|████▌ | 524/1133 [4:18:36<6:18:03, 37.25s/it]
46%|████▋ | 525/1133 [4:18:58<5:32:10, 32.78s/it]
46%|████▋ | 526/1133 [4:19:20<4:56:58, 29.35s/it]
47%|████▋ | 527/1133 [4:19:39<4:27:46, 26.51s/it]
47%|████▋ | 528/1133 [4:19:48<3:34:07, 21.24s/it]
47%|████▋ | 529/1133 [4:21:02<6:13:06, 37.06s/it]
47%|████▋ | 530/1133 [4:21:17<5:03:35, 30.21s/it]
47%|████▋ | 531/1133 [4:21:44<4:54:59, 29.40s/it]
47%|████▋ | 532/1133 [4:21:48<3:37:04, 21.67s/it]
47%|████▋ | 533/1133 [4:22:14<3:50:38, 23.06s/it]
47%|████▋ | 534/1133 [4:22:28<3:23:43, 20.41s/it]
47%|████▋ | 535/1133 [4:22:49<3:23:11, 20.39s/it]
47%|████▋ | 536/1133 [4:23:44<5:08:02, 30.96s/it]
47%|████▋ | 537/1133 [4:24:10<4:51:13, 29.32s/it]
47%|████▋ | 538/1133 [4:24:50<5:24:09, 32.69s/it]
48%|████▊ | 539/1133 [4:25:18<5:10:28, 31.36s/it]
48%|████▊ | 540/1133 [4:25:31<4:13:04, 25.61s/it]
48%|████▊ | 541/1133 [4:26:32<5:58:51, 36.37s/it]
48%|████▊ | 542/1133 [4:26:56<5:19:59, 32.49s/it]
48%|████▊ | 543/1133 [4:27:07<4:16:29, 26.08s/it]
48%|████▊ | 544/1133 [4:27:49<5:02:29, 30.81s/it]
48%|████▊ | 545/1133 [4:28:19<4:59:40, 30.58s/it]
48%|████▊ | 546/1133 [4:28:42<4:38:11, 28.44s/it]
48%|████▊ | 547/1133 [4:29:07<4:26:09, 27.25s/it]
48%|████▊ | 548/1133 [4:29:21<3:47:16, 23.31s/it]
48%|████▊ | 549/1133 [4:29:45<3:49:59, 23.63s/it]
49%|████▊ | 550/1133 [4:30:13<4:03:01, 25.01s/it]
49%|████▊ | 551/1133 [4:30:52<4:42:38, 29.14s/it]
49%|████▊ | 552/1133 [4:30:59<3:37:47, 22.49s/it]
49%|████▉ | 553/1133 [4:31:32<4:07:46, 25.63s/it]
49%|████▉ | 554/1133 [4:31:46<3:34:22, 22.22s/it]
49%|████▉ | 555/1133 [4:31:58<3:04:39, 19.17s/it]
49%|████▉ | 556/1133 [4:32:13<2:52:59, 17.99s/it]
49%|████▉ | 557/1133 [4:33:22<5:18:53, 33.22s/it]
49%|████▉ | 558/1133 [4:33:52<5:09:43, 32.32s/it]
49%|████▉ | 559/1133 [4:34:37<5:44:36, 36.02s/it]
49%|████▉ | 560/1133 [4:35:07<5:27:34, 34.30s/it]
50%|████▉ | 561/1133 [4:35:14<4:08:15, 26.04s/it]
50%|████▉ | 562/1133 [4:35:34<3:51:24, 24.32s/it]
50%|████▉ | 563/1133 [4:35:49<3:21:47, 21.24s/it]
50%|████▉ | 564/1133 [4:36:14<3:33:06, 22.47s/it]
50%|████▉ | 565/1133 [4:37:11<5:12:26, 33.01s/it]
50%|████▉ | 566/1133 [4:37:26<4:18:41, 27.38s/it]
50%|█████ | 567/1133 [4:37:51<4:12:56, 26.81s/it]
50%|█████ | 568/1133 [4:37:58<3:15:02, 20.71s/it]
50%|█████ | 569/1133 [4:38:06<2:40:43, 17.10s/it]
50%|█████ | 570/1133 [4:38:35<3:12:05, 20.47s/it]
50%|█████ | 571/1133 [4:38:54<3:08:26, 20.12s/it]
50%|█████ | 572/1133 [4:38:59<2:24:44, 15.48s/it]
51%|█████ | 573/1133 [4:39:18<2:35:18, 16.64s/it]
51%|█████ | 574/1133 [4:40:07<4:04:25, 26.23s/it]
51%|█████ | 575/1133 [4:40:19<3:24:43, 22.01s/it]
51%|█████ | 576/1133 [4:40:56<4:05:55, 26.49s/it]
51%|█████ | 577/1133 [4:41:34<4:37:39, 29.96s/it]
51%|█████ | 578/1133 [4:42:12<5:00:43, 32.51s/it]
51%|█████ | 579/1133 [4:42:40<4:45:44, 30.95s/it]
51%|█████ | 580/1133 [4:43:20<5:12:20, 33.89s/it]
51%|█████▏ | 581/1133 [4:43:53<5:09:10, 33.61s/it]
51%|█████▏ | 582/1133 [4:44:19<4:48:18, 31.40s/it]
51%|█████▏ | 583/1133 [4:44:27<3:42:33, 24.28s/it]
52%|█████▏ | 584/1133 [4:45:12<4:37:25, 30.32s/it]
52%|█████▏ | 585/1133 [4:45:47<4:49:50, 31.73s/it]
52%|█████▏ | 586/1133 [4:46:12<4:32:09, 29.85s/it]
52%|█████▏ | 587/1133 [4:46:44<4:37:52, 30.54s/it]
52%|█████▏ | 588/1133 [4:47:05<4:09:40, 27.49s/it]
52%|█████▏ | 589/1133 [4:47:31<4:06:09, 27.15s/it]
52%|█████▏ | 590/1133 [4:47:44<3:27:53, 22.97s/it]
52%|█████▏ | 591/1133 [4:48:34<4:39:34, 30.95s/it]
52%|█████▏ | 592/1133 [4:48:51<4:02:05, 26.85s/it]
52%|█████▏ | 593/1133 [4:49:12<3:47:05, 25.23s/it]
52%|█████▏ | 594/1133 [4:49:25<3:11:32, 21.32s/it]
53%|█████▎ | 595/1133 [4:51:04<6:41:37, 44.79s/it]
53%|█████▎ | 596/1133 [4:52:34<8:42:36, 58.39s/it]
53%|█████▎ | 597/1133 [4:53:01<7:15:42, 48.77s/it]
53%|█████▎ | 598/1133 [4:53:12<5:34:18, 37.49s/it]
53%|█████▎ | 599/1133 [4:53:31<4:45:14, 32.05s/it]
53%|█████▎ | 600/1133 [4:54:12<5:07:18, 34.59s/it]
53%|█████▎ | 601/1133 [4:54:54<5:28:11, 37.01s/it]
53%|█████▎ | 602/1133 [4:55:11<4:32:35, 30.80s/it]
53%|█████▎ | 603/1133 [4:55:39<4:25:13, 30.03s/it]
53%|█████▎ | 604/1133 [4:56:02<4:07:17, 28.05s/it]
53%|█████▎ | 605/1133 [4:56:28<3:59:50, 27.26s/it]
53%|█████▎ | 606/1133 [4:56:46<3:35:49, 24.57s/it]
54%|█████▎ | 607/1133 [4:57:19<3:58:18, 27.18s/it]
54%|█████▎ | 608/1133 [4:57:38<3:34:43, 24.54s/it]
54%|█████▍ | 609/1133 [4:58:08<3:49:04, 26.23s/it]
54%|█████▍ | 610/1133 [4:58:22<3:17:12, 22.62s/it]
54%|█████▍ | 611/1133 [4:59:03<4:03:29, 27.99s/it]
54%|█████▍ | 612/1133 [4:59:35<4:14:04, 29.26s/it]
54%|█████▍ | 613/1133 [5:00:43<5:54:36, 40.92s/it]
54%|█████▍ | 614/1133 [5:01:07<5:11:22, 36.00s/it]
54%|█████▍ | 615/1133 [5:01:26<4:24:59, 30.69s/it]
54%|█████▍ | 616/1133 [5:01:58<4:28:02, 31.11s/it]
54%|█████▍ | 617/1133 [5:02:12<3:43:37, 26.00s/it]
55%|█████▍ | 618/1133 [5:02:19<2:53:57, 20.27s/it]
55%|█████▍ | 619/1133 [5:02:34<2:40:37, 18.75s/it]
55%|█████▍ | 620/1133 [5:04:42<7:19:35, 51.41s/it]
55%|█████▍ | 621/1133 [5:05:04<6:04:27, 42.71s/it]
55%|█████▍ | 622/1133 [5:05:52<6:16:09, 44.17s/it]
55%|█████▍ | 623/1133 [5:06:16<5:24:33, 38.18s/it]
55%|█████▌ | 624/1133 [5:06:27<4:15:07, 30.07s/it]
55%|█████▌ | 625/1133 [5:06:43<3:39:32, 25.93s/it]
55%|█████▌ | 626/1133 [5:07:01<3:17:18, 23.35s/it]
55%|█████▌ | 627/1133 [5:07:40<3:57:32, 28.17s/it]
55%|█████▌ | 628/1133 [5:08:11<4:05:10, 29.13s/it]
56%|█████▌ | 629/1133 [5:09:26<5:58:23, 42.67s/it]
56%|█████▌ | 630/1133 [5:09:43<4:53:39, 35.03s/it]
56%|█████▌ | 631/1133 [5:09:59<4:05:57, 29.40s/it]
56%|█████▌ | 632/1133 [5:10:10<3:19:27, 23.89s/it]
56%|█████▌ | 633/1133 [5:10:51<4:01:14, 28.95s/it]
56%|█████▌ | 634/1133 [5:11:04<3:21:05, 24.18s/it]
56%|█████▌ | 635/1133 [5:11:22<3:05:57, 22.41s/it]
56%|█████▌ | 636/1133 [5:11:30<2:28:45, 17.96s/it]
56%|█████▌ | 637/1133 [5:11:46<2:24:11, 17.44s/it]
56%|█████▋ | 638/1133 [5:12:34<3:40:37, 26.74s/it]
56%|█████▋ | 639/1133 [5:12:39<2:45:35, 20.11s/it]
56%|█████▋ | 640/1133 [5:12:53<2:30:45, 18.35s/it]
57%|█████▋ | 641/1133 [5:13:18<2:45:31, 20.18s/it]
57%|█████▋ | 642/1133 [5:14:42<5:22:11, 39.37s/it]
57%|█████▋ | 643/1133 [5:15:17<5:10:27, 38.02s/it]
57%|█████▋ | 644/1133 [5:15:49<4:54:32, 36.14s/it]
57%|█████▋ | 645/1133 [5:16:22<4:46:18, 35.20s/it]
57%|█████▋ | 646/1133 [5:16:40<4:04:33, 30.13s/it]
57%|█████▋ | 647/1133 [5:16:54<3:25:26, 25.36s/it]
57%|█████▋ | 648/1133 [5:17:29<3:48:35, 28.28s/it]
57%|█████▋ | 649/1133 [5:18:26<4:58:05, 36.95s/it]
57%|█████▋ | 650/1133 [5:19:57<7:07:43, 53.13s/it]
57%|█████▋ | 651/1133 [5:20:04<5:15:09, 39.23s/it]
58%|█████▊ | 652/1133 [5:20:19<4:16:32, 32.00s/it]
58%|█████▊ | 653/1133 [5:20:29<3:23:01, 25.38s/it]
58%|█████▊ | 654/1133 [5:20:52<3:15:41, 24.51s/it]
58%|█████▊ | 655/1133 [5:21:33<3:54:27, 29.43s/it]
58%|█████▊ | 656/1133 [5:21:40<3:02:27, 22.95s/it]
58%|█████▊ | 657/1133 [5:22:41<4:32:41, 34.37s/it]
58%|█████▊ | 658/1133 [5:23:26<4:56:07, 37.40s/it]
58%|█████▊ | 659/1133 [5:23:35<3:47:58, 28.86s/it]
58%|█████▊ | 660/1133 [5:23:40<2:52:06, 21.83s/it]
58%|█████▊ | 661/1133 [5:24:06<3:00:18, 22.92s/it]
58%|█████▊ | 662/1133 [5:24:34<3:12:27, 24.52s/it]
59%|█████▊ | 663/1133 [5:24:54<3:02:29, 23.30s/it]
59%|█████▊ | 664/1133 [5:25:19<3:04:46, 23.64s/it]
59%|█████▊ | 665/1133 [5:25:49<3:19:45, 25.61s/it]
59%|█████▉ | 666/1133 [5:26:24<3:41:27, 28.45s/it]
59%|█████▉ | 667/1133 [5:26:47<3:28:43, 26.87s/it]
59%|█████▉ | 668/1133 [5:27:12<3:22:36, 26.14s/it]
59%|█████▉ | 669/1133 [5:27:23<2:47:27, 21.65s/it]
59%|█████▉ | 670/1133 [5:27:57<3:15:51, 25.38s/it]
59%|█████▉ | 671/1133 [5:28:11<2:49:10, 21.97s/it]
59%|█████▉ | 672/1133 [5:28:25<2:30:43, 19.62s/it]
59%|█████▉ | 673/1133 [5:29:21<3:53:16, 30.43s/it]
59%|█████▉ | 674/1133 [5:29:53<3:56:48, 30.96s/it]
60%|█████▉ | 675/1133 [5:30:24<3:57:24, 31.10s/it]
60%|█████▉ | 676/1133 [5:30:27<2:52:03, 22.59s/it]
60%|█████▉ | 677/1133 [5:30:49<2:49:03, 22.24s/it]
60%|█████▉ | 678/1133 [5:31:11<2:49:07, 22.30s/it]
60%|█████▉ | 679/1133 [5:31:26<2:32:48, 20.20s/it]
60%|██████ | 680/1133 [5:31:47<2:32:54, 20.25s/it]
60%|██████ | 681/1133 [5:32:03<2:23:19, 19.03s/it]
60%|██████ | 682/1133 [5:32:20<2:19:16, 18.53s/it]
60%|██████ | 683/1133 [5:33:02<3:11:07, 25.48s/it]
60%|██████ | 684/1133 [5:33:13<2:37:52, 21.10s/it]
60%|██████ | 685/1133 [5:33:40<2:51:41, 22.99s/it]
61%|██████ | 686/1133 [5:33:47<2:14:35, 18.07s/it]
61%|██████ | 687/1133 [5:34:24<2:56:47, 23.78s/it]
61%|██████ | 688/1133 [5:34:34<2:25:28, 19.61s/it]
61%|██████ | 689/1133 [5:35:10<3:01:58, 24.59s/it]
61%|██████ | 690/1133 [5:35:21<2:30:53, 20.44s/it]
61%|██████ | 691/1133 [5:35:27<2:00:12, 16.32s/it]
61%|██████ | 692/1133 [5:35:50<2:13:32, 18.17s/it]
61%|██████ | 693/1133 [5:36:22<2:43:48, 22.34s/it]
61%|██████▏ | 694/1133 [5:37:02<3:21:52, 27.59s/it]
61%|██████▏ | 695/1133 [5:37:39<3:42:32, 30.49s/it]
61%|██████▏ | 696/1133 [5:38:07<3:37:15, 29.83s/it]
62%|██████▏ | 697/1133 [5:38:45<3:54:25, 32.26s/it]
62%|██████▏ | 698/1133 [5:39:48<5:00:18, 41.42s/it]
62%|██████▏ | 699/1133 [5:40:11<4:18:29, 35.74s/it]
62%|██████▏ | 700/1133 [5:40:46<4:16:12, 35.50s/it]
62%|██████▏ | 701/1133 [5:41:20<4:12:23, 35.05s/it]
62%|██████▏ | 702/1133 [5:43:13<7:01:22, 58.66s/it]
62%|██████▏ | 703/1133 [5:43:43<5:57:15, 49.85s/it]
62%|██████▏ | 704/1133 [5:43:59<4:44:32, 39.80s/it]
62%|██████▏ | 705/1133 [5:44:31<4:27:52, 37.55s/it]
62%|██████▏ | 706/1133 [5:45:27<5:06:08, 43.02s/it]
62%|██████▏ | 707/1133 [5:45:52<4:28:05, 37.76s/it]
62%|██████▏ | 708/1133 [5:46:42<4:53:12, 41.39s/it]
63%|██████▎ | 709/1133 [5:47:03<4:08:00, 35.10s/it]
63%|██████▎ | 710/1133 [5:47:29<3:49:21, 32.53s/it]
63%|██████▎ | 711/1133 [5:48:01<3:46:44, 32.24s/it]
63%|██████▎ | 712/1133 [5:48:35<3:49:11, 32.66s/it]
63%|██████▎ | 713/1133 [5:48:49<3:09:55, 27.13s/it]
63%|██████▎ | 714/1133 [5:49:10<2:57:32, 25.42s/it]
63%|██████▎ | 715/1133 [5:49:35<2:55:21, 25.17s/it]
63%|██████▎ | 716/1133 [5:49:51<2:36:32, 22.52s/it]
63%|██████▎ | 717/1133 [5:50:00<2:08:09, 18.49s/it]
63%|██████▎ | 718/1133 [5:50:22<2:14:05, 19.39s/it]
63%|██████▎ | 719/1133 [5:50:41<2:13:53, 19.40s/it]
64%|██████▎ | 720/1133 [5:51:14<2:40:30, 23.32s/it]
64%|██████▎ | 721/1133 [5:51:27<2:19:17, 20.28s/it]
64%|██████▎ | 722/1133 [5:51:54<2:33:20, 22.39s/it]
64%|██████▍ | 723/1133 [5:52:26<2:53:21, 25.37s/it]
64%|██████▍ | 724/1133 [5:53:17<3:44:45, 32.97s/it]
64%|██████▍ | 725/1133 [5:54:18<4:41:20, 41.37s/it]
64%|██████▍ | 726/1133 [5:54:43<4:08:07, 36.58s/it]
64%|██████▍ | 727/1133 [5:55:05<3:36:45, 32.03s/it]
64%|██████▍ | 728/1133 [5:56:05<4:32:13, 40.33s/it]
64%|██████▍ | 729/1133 [5:56:45<4:32:28, 40.47s/it]
64%|██████▍ | 730/1133 [5:56:54<3:28:00, 30.97s/it]
65%|██████▍ | 731/1133 [5:57:22<3:21:56, 30.14s/it]
65%|██████▍ | 732/1133 [5:57:37<2:49:37, 25.38s/it]
65%|██████▍ | 733/1133 [5:58:17<3:19:43, 29.96s/it]
65%|██████▍ | 734/1133 [5:58:34<2:52:01, 25.87s/it]
65%|██████▍ | 735/1133 [5:59:28<3:49:06, 34.54s/it]
65%|██████▍ | 736/1133 [6:00:06<3:55:18, 35.56s/it]
65%|██████▌ | 737/1133 [6:00:27<3:24:51, 31.04s/it]
65%|██████▌ | 738/1133 [6:01:12<3:53:02, 35.40s/it]
65%|██████▌ | 739/1133 [6:01:20<2:58:19, 27.16s/it]
65%|██████▌ | 740/1133 [6:01:44<2:50:31, 26.04s/it]
65%|██████▌ | 741/1133 [6:02:05<2:41:06, 24.66s/it]
65%|██████▌ | 742/1133 [6:02:30<2:40:27, 24.62s/it]
66%|██████▌ | 743/1133 [6:02:52<2:35:54, 23.99s/it]
66%|██████▌ | 744/1133 [6:03:16<2:34:43, 23.86s/it]
66%|██████▌ | 745/1133 [6:04:04<3:22:29, 31.31s/it]
66%|██████▌ | 746/1133 [6:04:54<3:58:05, 36.91s/it]
66%|██████▌ | 747/1133 [6:05:09<3:13:46, 30.12s/it]
66%|██████▌ | 748/1133 [6:06:13<4:18:04, 40.22s/it]
66%|██████▌ | 749/1133 [6:06:53<4:18:24, 40.38s/it]
66%|██████▌ | 750/1133 [6:07:21<3:54:28, 36.73s/it]
66%|██████▋ | 751/1133 [6:07:44<3:26:40, 32.46s/it]
66%|██████▋ | 752/1133 [6:08:10<3:14:47, 30.68s/it]
66%|██████▋ | 753/1133 [6:08:32<2:56:45, 27.91s/it]
67%|██████▋ | 754/1133 [6:09:51<4:33:14, 43.26s/it]
67%|██████▋ | 755/1133 [6:10:28<4:20:19, 41.32s/it]
67%|██████▋ | 756/1133 [6:10:48<3:40:13, 35.05s/it]
67%|██████▋ | 757/1133 [6:11:09<3:12:14, 30.68s/it]
67%|██████▋ | 758/1133 [6:12:08<4:06:12, 39.39s/it]
67%|██████▋ | 759/1133 [6:12:35<3:40:39, 35.40s/it]
67%|██████▋ | 760/1133 [6:12:42<2:48:12, 27.06s/it]
67%|██████▋ | 761/1133 [6:13:20<3:07:56, 30.31s/it]
67%|██████▋ | 762/1133 [6:13:30<2:29:48, 24.23s/it]
67%|██████▋ | 763/1133 [6:13:53<2:26:12, 23.71s/it]
67%|██████▋ | 764/1133 [6:14:17<2:27:07, 23.92s/it]
68%|██████▊ | 765/1133 [6:14:41<2:27:36, 24.07s/it]
68%|██████▊ | 766/1133 [6:15:40<3:31:25, 34.57s/it]
68%|██████▊ | 767/1133 [6:16:10<3:21:10, 32.98s/it]
68%|██████▊ | 768/1133 [6:16:42<3:20:04, 32.89s/it]
68%|██████▊ | 769/1133 [6:17:34<3:53:41, 38.52s/it]
68%|██████▊ | 770/1133 [6:17:52<3:16:29, 32.48s/it]
68%|██████▊ | 771/1133 [6:18:22<3:10:01, 31.49s/it]
68%|██████▊ | 772/1133 [6:18:58<3:18:57, 33.07s/it]
68%|██████▊ | 773/1133 [6:19:28<3:11:52, 31.98s/it]
68%|██████▊ | 774/1133 [6:19:54<3:01:10, 30.28s/it]
68%|██████▊ | 775/1133 [6:22:16<6:20:25, 63.76s/it]
68%|██████▊ | 776/1133 [6:22:30<4:50:55, 48.90s/it]
69%|██████▊ | 777/1133 [6:22:59<4:15:04, 42.99s/it]
69%|██████▊ | 778/1133 [6:23:16<3:27:00, 34.99s/it]
69%|██████▉ | 779/1133 [6:23:22<2:35:56, 26.43s/it]
69%|██████▉ | 780/1133 [6:23:42<2:23:00, 24.31s/it]
69%|██████▉ | 781/1133 [6:24:32<3:08:57, 32.21s/it]
69%|██████▉ | 782/1133 [6:24:42<2:29:21, 25.53s/it]
69%|██████▉ | 783/1133 [6:25:33<3:12:58, 33.08s/it]
69%|██████▉ | 784/1133 [6:25:58<2:58:51, 30.75s/it]
69%|██████▉ | 785/1133 [6:26:21<2:44:03, 28.29s/it]
69%|██████▉ | 786/1133 [6:26:39<2:26:18, 25.30s/it]
69%|██████▉ | 787/1133 [6:27:28<3:06:27, 32.33s/it]
70%|██████▉ | 788/1133 [6:27:43<2:36:31, 27.22s/it]
70%|██████▉ | 789/1133 [6:27:49<1:58:36, 20.69s/it]
70%|██████▉ | 790/1133 [6:28:58<3:22:40, 35.45s/it]
70%|██████▉ | 791/1133 [6:29:24<3:05:12, 32.49s/it]
70%|██████▉ | 792/1133 [6:29:55<3:02:07, 32.04s/it]
70%|██████▉ | 793/1133 [6:31:07<4:09:26, 44.02s/it]
70%|███████ | 794/1133 [6:31:14<3:06:48, 33.06s/it]
70%|███████ | 795/1133 [6:31:28<2:32:43, 27.11s/it]
70%|███████ | 796/1133 [6:31:38<2:03:22, 21.97s/it]
70%|███████ | 797/1133 [6:32:01<2:05:27, 22.40s/it]
70%|███████ | 798/1133 [6:32:16<1:53:12, 20.28s/it]
71%|███████ | 799/1133 [6:32:42<2:01:42, 21.86s/it]
71%|███████ | 800/1133 [6:33:10<2:12:21, 23.85s/it]
71%|███████ | 801/1133 [6:33:33<2:09:46, 23.45s/it]
71%|███████ | 802/1133 [6:34:08<2:28:49, 26.98s/it]
71%|███████ | 803/1133 [6:34:32<2:22:40, 25.94s/it]
71%|███████ | 804/1133 [6:35:17<2:54:43, 31.86s/it]
71%|███████ | 805/1133 [6:35:46<2:48:05, 30.75s/it]
71%|███████ | 806/1133 [6:36:25<3:01:06, 33.23s/it]
71%|███████ | 807/1133 [6:36:42<2:34:37, 28.46s/it]
71%|███████▏ | 808/1133 [6:37:07<2:29:25, 27.59s/it]
71%|███████▏ | 809/1133 [6:37:32<2:24:04, 26.68s/it]
71%|███████▏ | 810/1133 [6:37:43<1:58:36, 22.03s/it]
72%|███████▏ | 811/1133 [6:37:53<1:39:08, 18.47s/it]
72%|███████▏ | 812/1133 [6:38:26<2:01:52, 22.78s/it]
72%|███████▏ | 813/1133 [6:38:49<2:01:03, 22.70s/it]
72%|███████▏ | 814/1133 [6:38:58<1:39:49, 18.78s/it]
72%|███████▏ | 815/1133 [6:39:49<2:30:34, 28.41s/it]
72%|███████▏ | 816/1133 [6:40:21<2:34:50, 29.31s/it]
72%|███████▏ | 817/1133 [6:40:37<2:13:49, 25.41s/it]
72%|███████▏ | 818/1133 [6:41:02<2:12:06, 25.16s/it]
72%|███████▏ | 819/1133 [6:41:33<2:21:13, 26.99s/it]
72%|███████▏ | 820/1133 [6:41:44<1:55:49, 22.20s/it]
72%|███████▏ | 821/1133 [6:41:48<1:27:54, 16.90s/it]
73%|███████▎ | 822/1133 [6:42:05<1:27:53, 16.96s/it]
73%|███████▎ | 823/1133 [6:42:49<2:09:27, 25.06s/it]
73%|███████▎ | 824/1133 [6:43:13<2:06:43, 24.61s/it]
73%|███████▎ | 825/1133 [6:43:26<1:48:51, 21.20s/it]
73%|███████▎ | 826/1133 [6:44:08<2:20:02, 27.37s/it]
73%|███████▎ | 827/1133 [6:44:22<1:59:10, 23.37s/it]
73%|███████▎ | 828/1133 [6:44:32<1:38:40, 19.41s/it]
73%|███████▎ | 829/1133 [6:45:42<2:55:28, 34.63s/it]
73%|███████▎ | 830/1133 [6:46:31<3:16:13, 38.86s/it]
73%|███████▎ | 831/1133 [6:47:12<3:18:35, 39.45s/it]
73%|███████▎ | 832/1133 [6:47:31<2:47:50, 33.46s/it]
74%|███████▎ | 833/1133 [6:48:50<3:54:32, 46.91s/it]
74%|███████▎ | 834/1133 [6:49:12<3:17:13, 39.58s/it]
74%|███████▎ | 835/1133 [6:49:44<3:05:28, 37.35s/it]
74%|███████▍ | 836/1133 [6:50:25<3:10:27, 38.48s/it]
74%|███████▍ | 837/1133 [6:52:12<4:51:23, 59.07s/it]
74%|███████▍ | 838/1133 [6:53:13<4:52:59, 59.59s/it]
74%|███████▍ | 839/1133 [6:53:35<3:56:00, 48.16s/it]
74%|███████▍ | 840/1133 [6:54:15<3:42:59, 45.66s/it]
74%|███████▍ | 841/1133 [6:54:42<3:15:29, 40.17s/it]
74%|███████▍ | 842/1133 [6:55:25<3:18:27, 40.92s/it]
74%|███████▍ | 843/1133 [6:55:42<2:43:37, 33.85s/it]
74%|███████▍ | 844/1133 [6:56:26<2:57:45, 36.91s/it]
75%|███████▍ | 845/1133 [6:56:52<2:42:08, 33.78s/it]
75%|███████▍ | 846/1133 [6:57:29<2:45:01, 34.50s/it]
75%|███████▍ | 847/1133 [6:57:54<2:30:59, 31.68s/it]
75%|███████▍ | 848/1133 [6:58:42<2:53:47, 36.59s/it]
75%|███████▍ | 849/1133 [6:58:52<2:15:41, 28.67s/it]
75%|███████▌ | 850/1133 [6:59:32<2:31:17, 32.08s/it]
75%|███████▌ | 851/1133 [6:59:39<1:55:17, 24.53s/it]
75%|███████▌ | 852/1133 [6:59:53<1:40:29, 21.46s/it]
75%|███████▌ | 853/1133 [7:00:23<1:52:26, 24.10s/it]
75%|███████▌ | 854/1133 [7:00:44<1:47:00, 23.01s/it]
75%|███████▌ | 855/1133 [7:01:17<2:00:37, 26.03s/it]
76%|███████▌ | 856/1133 [7:02:17<2:46:47, 36.13s/it]
76%|███████▌ | 857/1133 [7:03:18<3:20:33, 43.60s/it]
76%|███████▌ | 858/1133 [7:03:42<2:53:18, 37.81s/it]
76%|███████▌ | 859/1133 [7:04:11<2:41:03, 35.27s/it]
76%|███████▌ | 860/1133 [7:04:30<2:17:26, 30.21s/it]
76%|███████▌ | 861/1133 [7:05:46<3:19:46, 44.07s/it]
76%|███████▌ | 862/1133 [7:06:22<3:08:20, 41.70s/it]
76%|███████▌ | 863/1133 [7:07:27<3:39:10, 48.71s/it]
76%|███████▋ | 864/1133 [7:07:49<3:01:42, 40.53s/it]
76%|███████▋ | 865/1133 [7:08:22<2:51:17, 38.35s/it]
76%|███████▋ | 866/1133 [7:09:14<3:08:43, 42.41s/it]
77%|███████▋ | 867/1133 [7:09:56<3:07:11, 42.23s/it]
77%|███████▋ | 868/1133 [7:10:18<2:40:24, 36.32s/it]
77%|███████▋ | 869/1133 [7:10:35<2:13:22, 30.31s/it]
77%|███████▋ | 870/1133 [7:10:53<1:57:10, 26.73s/it]
77%|███████▋ | 871/1133 [7:11:10<1:44:25, 23.91s/it]
77%|███████▋ | 872/1133 [7:11:45<1:58:34, 27.26s/it]
77%|███████▋ | 873/1133 [7:12:06<1:49:19, 25.23s/it]
77%|███████▋ | 874/1133 [7:12:24<1:40:03, 23.18s/it]
77%|███████▋ | 875/1133 [7:13:19<2:20:31, 32.68s/it]
77%|███████▋ | 876/1133 [7:14:03<2:34:13, 36.01s/it]
77%|███████▋ | 877/1133 [7:14:40<2:34:57, 36.32s/it]
77%|███████▋ | 878/1133 [7:15:11<2:27:52, 34.79s/it]
78%|███████▊ | 879/1133 [7:15:30<2:06:30, 29.88s/it]
78%|███████▊ | 880/1133 [7:15:49<1:52:47, 26.75s/it]
78%|███████▊ | 881/1133 [7:16:06<1:40:31, 23.93s/it]
78%|███████▊ | 882/1133 [7:16:49<2:03:59, 29.64s/it]
78%|███████▊ | 883/1133 [7:17:14<1:57:11, 28.13s/it]
78%|███████▊ | 884/1133 [7:17:49<2:05:33, 30.26s/it]
78%|███████▊ | 885/1133 [7:18:18<2:02:44, 29.69s/it]
78%|███████▊ | 886/1133 [7:18:31<1:41:53, 24.75s/it]
78%|███████▊ | 887/1133 [7:19:38<2:33:31, 37.45s/it]
78%|███████▊ | 888/1133 [7:19:53<2:05:45, 30.80s/it]
78%|███████▊ | 889/1133 [7:20:31<2:14:05, 32.97s/it]
79%|███████▊ | 890/1133 [7:20:51<1:57:12, 28.94s/it]
79%|███████▊ | 891/1133 [7:21:07<1:41:25, 25.15s/it]
79%|███████▊ | 892/1133 [7:21:58<2:12:03, 32.88s/it]
79%|███████▉ | 893/1133 [7:22:38<2:19:41, 34.92s/it]
79%|███████▉ | 894/1133 [7:22:44<1:45:17, 26.43s/it]
79%|███████▉ | 895/1133 [7:23:28<2:05:51, 31.73s/it]
79%|███████▉ | 896/1133 [7:24:02<2:07:03, 32.17s/it]
79%|███████▉ | 897/1133 [7:24:16<1:45:16, 26.77s/it]
79%|███████▉ | 898/1133 [7:24:38<1:39:38, 25.44s/it]
79%|███████▉ | 899/1133 [7:25:09<1:45:02, 26.93s/it]
79%|███████▉ | 900/1133 [7:25:39<1:48:34, 27.96s/it]
80%|███████▉ | 901/1133 [7:26:03<1:44:03, 26.91s/it]
80%|███████▉ | 902/1133 [7:26:26<1:38:33, 25.60s/it]
80%|███████▉ | 903/1133 [7:27:02<1:50:18, 28.78s/it]
80%|███████▉ | 904/1133 [7:28:14<2:39:43, 41.85s/it]
80%|███████▉ | 905/1133 [7:29:06<2:50:21, 44.83s/it]
80%|███████▉ | 906/1133 [7:29:23<2:17:14, 36.28s/it]
80%|████████ | 907/1133 [7:29:45<2:01:04, 32.14s/it]
80%|████████ | 908/1133 [7:30:16<1:59:32, 31.88s/it]
80%|████████ | 909/1133 [7:30:39<1:48:32, 29.07s/it]
80%|████████ | 910/1133 [7:30:54<1:32:42, 24.94s/it]
80%|████████ | 911/1133 [7:31:15<1:27:20, 23.61s/it]
80%|████████ | 912/1133 [7:31:38<1:26:54, 23.59s/it]
81%|████████ | 913/1133 [7:32:03<1:27:35, 23.89s/it]
81%|████████ | 914/1133 [7:32:30<1:30:59, 24.93s/it]
81%|████████ | 915/1133 [7:32:47<1:22:22, 22.67s/it]
81%|████████ | 916/1133 [7:33:34<1:48:11, 29.91s/it]
81%|████████ | 917/1133 [7:34:14<1:58:29, 32.92s/it]
81%|████████ | 918/1133 [7:35:09<2:21:29, 39.49s/it]
81%|████████ | 919/1133 [7:35:21<1:51:26, 31.24s/it]
81%|████████ | 920/1133 [7:35:32<1:29:12, 25.13s/it]
81%|████████▏ | 921/1133 [7:35:58<1:30:10, 25.52s/it]
81%|████████▏ | 922/1133 [7:36:13<1:17:45, 22.11s/it]
81%|████████▏ | 923/1133 [7:36:34<1:16:40, 21.91s/it]
82%|████████▏ | 924/1133 [7:36:51<1:11:35, 20.55s/it]
82%|████████▏ | 925/1133 [7:37:16<1:15:10, 21.69s/it]
82%|████████▏ | 926/1133 [7:37:39<1:16:33, 22.19s/it]
82%|████████▏ | 927/1133 [7:37:56<1:11:17, 20.76s/it]
82%|████████▏ | 928/1133 [7:38:11<1:04:16, 18.81s/it]
82%|████████▏ | 929/1133 [7:38:41<1:15:35, 22.23s/it]
82%|████████▏ | 930/1133 [7:39:21<1:33:19, 27.59s/it]
82%|████████▏ | 931/1133 [7:39:48<1:31:49, 27.27s/it]
82%|████████▏ | 932/1133 [7:40:10<1:26:34, 25.84s/it]
82%|████████▏ | 933/1133 [7:40:26<1:16:39, 23.00s/it]
82%|████████▏ | 934/1133 [7:40:38<1:05:13, 19.67s/it]
83%|████████▎ | 935/1133 [7:41:16<1:22:58, 25.15s/it]
83%|████████▎ | 936/1133 [7:41:38<1:18:55, 24.04s/it]
83%|████████▎ | 937/1133 [7:41:59<1:16:00, 23.27s/it]
83%|████████▎ | 938/1133 [7:42:25<1:17:47, 23.94s/it]
83%|████████▎ | 939/1133 [7:42:48<1:17:01, 23.82s/it]
83%|████████▎ | 940/1133 [7:43:22<1:26:37, 26.93s/it]
83%|████████▎ | 941/1133 [7:44:19<1:54:53, 35.90s/it]
83%|████████▎ | 942/1133 [7:45:29<2:26:11, 45.92s/it]
83%|████████▎ | 943/1133 [7:45:48<2:00:15, 37.98s/it]
83%|████████▎ | 944/1133 [7:47:02<2:33:57, 48.87s/it]
83%|████████▎ | 945/1133 [7:47:51<2:33:13, 48.90s/it]
83%|████████▎ | 946/1133 [7:48:42<2:34:19, 49.52s/it]
84%|████████▎ | 947/1133 [7:49:13<2:16:07, 43.91s/it]
84%|████████▎ | 948/1133 [7:50:14<2:31:08, 49.02s/it]
84%|████████▍ | 949/1133 [7:50:33<2:02:49, 40.05s/it]
84%|████████▍ | 950/1133 [7:50:43<1:34:48, 31.09s/it]
84%|████████▍ | 951/1133 [7:51:12<1:31:42, 30.23s/it]
84%|████████▍ | 952/1133 [7:51:28<1:18:36, 26.06s/it]
84%|████████▍ | 953/1133 [7:51:40<1:05:43, 21.91s/it]
84%|████████▍ | 954/1133 [7:51:48<52:45, 17.68s/it]
84%|████████▍ | 955/1133 [7:52:03<50:19, 16.97s/it]
84%|████████▍ | 956/1133 [7:52:32<1:00:17, 20.44s/it]
84%|████████▍ | 957/1133 [7:52:44<52:28, 17.89s/it]
85%|████████▍ | 958/1133 [7:53:08<58:01, 19.90s/it]
85%|████████▍ | 959/1133 [7:53:39<1:06:44, 23.01s/it]
85%|████████▍ | 960/1133 [7:54:07<1:11:04, 24.65s/it]
85%|████████▍ | 961/1133 [7:54:31<1:09:44, 24.33s/it]
85%|████████▍ | 962/1133 [7:55:44<1:51:09, 39.00s/it]
85%|████████▍ | 963/1133 [7:56:14<1:43:07, 36.39s/it]
85%|████████▌ | 964/1133 [7:56:35<1:29:01, 31.61s/it]
85%|████████▌ | 965/1133 [7:56:59<1:22:35, 29.50s/it]
85%|████████▌ | 966/1133 [7:57:12<1:08:27, 24.60s/it]
85%|████████▌ | 967/1133 [7:58:15<1:39:22, 35.92s/it]
85%|████████▌ | 968/1133 [7:58:30<1:21:45, 29.73s/it]
86%|████████▌ | 969/1133 [7:58:54<1:17:02, 28.19s/it]
86%|████████▌ | 970/1133 [7:59:11<1:06:57, 24.64s/it]
86%|████████▌ | 971/1133 [7:59:43<1:12:31, 26.86s/it]
86%|████████▌ | 972/1133 [8:00:03<1:07:00, 24.97s/it]
86%|████████▌ | 973/1133 [8:01:18<1:46:17, 39.86s/it]
86%|████████▌ | 974/1133 [8:01:32<1:25:04, 32.10s/it]
86%|████████▌ | 975/1133 [8:01:54<1:16:08, 28.92s/it]
86%|████████▌ | 976/1133 [8:02:08<1:04:09, 24.52s/it]
86%|████████▌ | 977/1133 [8:02:26<59:00, 22.69s/it]
86%|████████▋ | 978/1133 [8:02:51<1:00:02, 23.24s/it]
86%|████████▋ | 979/1133 [8:04:00<1:35:13, 37.10s/it]
86%|████████▋ | 980/1133 [8:04:19<1:20:18, 31.49s/it]
87%|████████▋ | 981/1133 [8:04:44<1:15:08, 29.66s/it]
87%|████████▋ | 982/1133 [8:05:12<1:13:34, 29.24s/it]
87%|████████▋ | 983/1133 [8:05:31<1:04:58, 25.99s/it]
87%|████████▋ | 984/1133 [8:05:42<53:31, 21.55s/it]
87%|████████▋ | 985/1133 [8:06:17<1:03:14, 25.64s/it]
87%|████████▋ | 986/1133 [8:07:02<1:16:53, 31.38s/it]
87%|████████▋ | 987/1133 [8:07:28<1:12:44, 29.89s/it]
87%|████████▋ | 988/1133 [8:08:02<1:15:22, 31.19s/it]
87%|████████▋ | 989/1133 [8:08:37<1:16:56, 32.06s/it]
87%|████████▋ | 990/1133 [8:10:41<2:22:09, 59.65s/it]
87%|████████▋ | 991/1133 [8:11:06<1:56:54, 49.39s/it]
88%|████████▊ | 992/1133 [8:11:22<1:32:46, 39.48s/it]
88%|████████▊ | 993/1133 [8:11:40<1:16:39, 32.85s/it]
88%|████████▊ | 994/1133 [8:12:26<1:25:45, 37.02s/it]
88%|████████▊ | 995/1133 [8:13:04<1:25:39, 37.25s/it]
88%|████████▊ | 996/1133 [8:13:25<1:13:32, 32.21s/it]
88%|████████▊ | 997/1133 [8:13:56<1:12:22, 31.93s/it]
88%|████████▊ | 998/1133 [8:14:22<1:07:29, 30.00s/it]
88%|████████▊ | 999/1133 [8:15:21<1:26:39, 38.80s/it]
88%|████████▊ | 1000/1133 [8:15:42<1:14:32, 33.63s/it]
88%|████████▊ | 1001/1133 [8:15:49<56:04, 25.49s/it]
88%|████████▊ | 1002/1133 [8:16:11<53:43, 24.61s/it]
89%|████████▊ | 1003/1133 [8:16:34<51:59, 24.00s/it]
89%|████████▊ | 1004/1133 [8:17:27<1:10:08, 32.62s/it]
89%|████████▊ | 1005/1133 [8:17:35<54:17, 25.45s/it]
89%|████████▉ | 1006/1133 [8:19:13<1:39:20, 46.94s/it]
89%|████████▉ | 1007/1133 [8:19:39<1:25:36, 40.77s/it]
89%|████████▉ | 1008/1133 [8:20:22<1:26:12, 41.38s/it]
89%|████████▉ | 1009/1133 [8:20:59<1:22:53, 40.11s/it]
89%|████████▉ | 1010/1133 [8:21:54<1:31:17, 44.54s/it]
89%|████████▉ | 1011/1133 [8:22:53<1:39:18, 48.84s/it]
89%|████████▉ | 1012/1133 [8:22:59<1:12:56, 36.17s/it]
89%|████████▉ | 1013/1133 [8:23:20<1:02:55, 31.47s/it]
89%|████████▉ | 1014/1133 [8:23:32<50:57, 25.70s/it]
90%|████████▉ | 1015/1133 [8:24:16<1:01:11, 31.11s/it]
90%|████████▉ | 1016/1133 [8:24:49<1:01:55, 31.76s/it]
90%|████████▉ | 1017/1133 [8:25:13<57:10, 29.57s/it]
90%|████████▉ | 1018/1133 [8:25:22<44:52, 23.42s/it]
90%|████████▉ | 1019/1133 [8:26:13<1:00:08, 31.65s/it]
90%|█████████ | 1020/1133 [8:27:05<1:10:59, 37.70s/it]
90%|█████████ | 1021/1133 [8:27:27<1:01:17, 32.83s/it]
90%|█████████ | 1022/1133 [8:28:04<1:03:27, 34.30s/it]
90%|█████████ | 1023/1133 [8:29:12<1:20:58, 44.17s/it]
90%|█████████ | 1024/1133 [8:29:36<1:09:32, 38.28s/it]
90%|█████████ | 1025/1133 [8:30:02<1:02:06, 34.51s/it]
91%|█████████ | 1026/1133 [8:30:29<57:49, 32.43s/it]
91%|█████████ | 1027/1133 [8:30:35<43:00, 24.34s/it]
91%|█████████ | 1028/1133 [8:30:49<37:18, 21.31s/it]
91%|█████████ | 1029/1133 [8:31:11<37:02, 21.37s/it]
91%|█████████ | 1030/1133 [8:31:42<41:40, 24.27s/it]
91%|█████████ | 1031/1133 [8:31:47<31:40, 18.64s/it]
91%|█████████ | 1032/1133 [8:32:14<35:16, 20.96s/it]
91%|█████████ | 1033/1133 [8:32:35<35:13, 21.13s/it]
91%|█████████▏| 1034/1133 [8:33:13<43:13, 26.19s/it]
91%|█████████▏| 1035/1133 [8:33:29<37:57, 23.24s/it]
91%|█████████▏| 1036/1133 [8:33:47<34:45, 21.50s/it]
92%|█████████▏| 1037/1133 [8:34:02<31:24, 19.63s/it]
92%|█████████▏| 1038/1133 [8:34:32<36:03, 22.78s/it]
92%|█████████▏| 1039/1133 [8:35:01<38:21, 24.48s/it]
92%|█████████▏| 1040/1133 [8:35:05<28:41, 18.51s/it]
92%|█████████▏| 1041/1133 [8:35:22<27:22, 17.86s/it]
92%|█████████▏| 1042/1133 [8:36:04<38:08, 25.15s/it]
92%|█████████▏| 1043/1133 [8:36:15<31:27, 20.98s/it]
92%|█████████▏| 1044/1133 [8:37:05<43:57, 29.63s/it]
92%|█████████▏| 1045/1133 [8:37:37<44:30, 30.35s/it]
92%|█████████▏| 1046/1133 [8:38:02<41:39, 28.73s/it]
92%|█████████▏| 1047/1133 [8:38:31<41:19, 28.83s/it]
92%|█████████▏| 1048/1133 [8:38:51<37:18, 26.34s/it]
93%|█████████▎| 1049/1133 [8:39:19<37:35, 26.85s/it]
93%|█████████▎| 1050/1133 [8:39:41<34:55, 25.24s/it]
93%|█████████▎| 1051/1133 [8:40:10<36:09, 26.46s/it]
93%|█████████▎| 1052/1133 [8:40:16<27:15, 20.19s/it]
93%|█████████▎| 1053/1133 [8:40:52<33:15, 24.95s/it]
93%|█████████▎| 1054/1133 [8:40:58<25:14, 19.17s/it]
93%|█████████▎| 1055/1133 [8:41:22<27:01, 20.78s/it]
93%|█████████▎| 1056/1133 [8:41:34<23:17, 18.15s/it]
93%|█████████▎| 1057/1133 [8:42:02<26:52, 21.21s/it]
93%|█████████▎| 1058/1133 [8:42:13<22:35, 18.08s/it]
93%|█████████▎| 1059/1133 [8:43:12<37:22, 30.31s/it]
94%|█████████▎| 1060/1133 [8:43:45<37:55, 31.17s/it]
94%|█████████▎| 1061/1133 [8:44:16<37:08, 30.95s/it]
94%|█████████▎| 1062/1133 [8:44:42<34:59, 29.56s/it]
94%|█████████▍| 1063/1133 [8:45:15<35:45, 30.65s/it]
94%|█████████▍| 1064/1133 [8:45:40<33:08, 28.81s/it]
94%|█████████▍| 1065/1133 [8:46:01<30:11, 26.64s/it]
94%|█████████▍| 1066/1133 [8:46:39<33:26, 29.94s/it]
94%|█████████▍| 1067/1133 [8:46:54<28:06, 25.56s/it]
94%|█████████▍| 1068/1133 [8:47:16<26:22, 24.34s/it]
94%|█████████▍| 1069/1133 [8:47:40<25:55, 24.31s/it]
94%|█████████▍| 1070/1133 [8:48:15<28:54, 27.53s/it]
95%|█████████▍| 1071/1133 [8:48:28<24:01, 23.25s/it]
95%|█████████▍| 1072/1133 [8:49:02<26:42, 26.27s/it]
95%|█████████▍| 1073/1133 [8:49:34<28:10, 28.18s/it]
95%|█████████▍| 1074/1133 [8:50:03<27:47, 28.26s/it]
95%|█████████▍| 1075/1133 [8:50:15<22:39, 23.44s/it]
95%|█████████▍| 1076/1133 [8:50:34<21:07, 22.24s/it]
95%|█████████▌| 1077/1133 [8:50:50<18:48, 20.16s/it]
95%|█████████▌| 1078/1133 [8:52:22<38:20, 41.82s/it]
95%|█████████▌| 1079/1133 [8:52:57<35:43, 39.70s/it]
95%|█████████▌| 1080/1133 [8:54:44<52:59, 60.00s/it]
95%|█████████▌| 1081/1133 [8:54:54<39:02, 45.06s/it]
95%|█████████▌| 1082/1133 [8:56:07<45:13, 53.21s/it]
96%|█████████▌| 1083/1133 [8:56:18<33:50, 40.61s/it]
96%|█████████▌| 1084/1133 [8:57:13<36:37, 44.86s/it]
96%|█████████▌| 1085/1133 [8:59:06<52:27, 65.57s/it]
96%|█████████▌| 1086/1133 [8:59:22<39:32, 50.49s/it]
96%|█████████▌| 1087/1133 [8:59:30<28:53, 37.69s/it]
96%|█████████▌| 1088/1133 [8:59:41<22:16, 29.71s/it]
96%|█████████▌| 1089/1133 [9:00:15<22:48, 31.10s/it]
96%|█████████▌| 1090/1133 [9:00:48<22:43, 31.70s/it]
96%|█████████▋| 1091/1133 [9:01:17<21:41, 30.98s/it]
96%|█████████▋| 1092/1133 [9:01:43<20:02, 29.33s/it]
96%|█████████▋| 1093/1133 [9:01:51<15:17, 22.94s/it]
97%|█████████▋| 1094/1133 [9:02:14<15:02, 23.13s/it]
97%|█████████▋| 1095/1133 [9:02:43<15:39, 24.73s/it]
97%|█████████▋| 1096/1133 [9:03:02<14:16, 23.15s/it]
97%|█████████▋| 1097/1133 [9:03:23<13:24, 22.34s/it]
97%|█████████▋| 1098/1133 [9:03:48<13:35, 23.29s/it]
97%|█████████▋| 1099/1133 [9:04:22<14:53, 26.27s/it]
97%|█████████▋| 1100/1133 [9:04:33<11:57, 21.75s/it]
97%|█████████▋| 1101/1133 [9:04:52<11:14, 21.08s/it]
97%|█████████▋| 1102/1133 [9:05:29<13:21, 25.86s/it]
97%|█████████▋| 1103/1133 [9:06:11<15:20, 30.68s/it]
97%|█████████▋| 1104/1133 [9:07:03<17:52, 36.99s/it]
98%|█████████▊| 1105/1133 [9:07:29<15:39, 33.57s/it]
98%|█████████▊| 1106/1133 [9:07:51<13:37, 30.26s/it]
98%|█████████▊| 1107/1133 [9:08:14<12:06, 27.95s/it]
98%|█████████▊| 1108/1133 [9:08:26<09:40, 23.23s/it]
98%|█████████▊| 1109/1133 [9:08:40<08:13, 20.54s/it]
98%|█████████▊| 1110/1133 [9:09:09<08:46, 22.91s/it]
98%|█████████▊| 1111/1133 [9:09:30<08:14, 22.47s/it]
98%|█████████▊| 1112/1133 [9:09:53<07:52, 22.49s/it]
98%|█████████▊| 1113/1133 [9:10:07<06:40, 20.02s/it]
98%|█████████▊| 1114/1133 [9:11:01<09:32, 30.15s/it]
98%|█████████▊| 1115/1133 [9:11:36<09:29, 31.63s/it]
98%|█████████▊| 1116/1133 [9:11:54<07:49, 27.64s/it]
99%|█████████▊| 1117/1133 [9:12:52<09:47, 36.72s/it]
99%|█████████▊| 1118/1133 [9:13:39<09:57, 39.82s/it]
99%|█████████▉| 1119/1133 [9:13:55<07:38, 32.77s/it]
99%|█████████▉| 1120/1133 [9:14:44<08:08, 37.57s/it]
99%|█████████▉| 1121/1133 [9:15:08<06:40, 33.38s/it]
99%|█████████▉| 1122/1133 [9:15:20<04:56, 27.00s/it]
99%|█████████▉| 1123/1133 [9:15:30<03:38, 21.89s/it]
99%|█████████▉| 1124/1133 [9:16:40<05:27, 36.40s/it]
99%|█████████▉| 1125/1133 [9:17:21<05:01, 37.71s/it]
99%|█████████▉| 1126/1133 [9:17:40<03:45, 32.21s/it]
99%|█████████▉| 1127/1133 [9:18:18<03:24, 34.00s/it]
100%|█████████▉| 1128/1133 [9:19:16<03:25, 41.15s/it]
100%|█████████▉| 1129/1133 [9:19:45<02:29, 37.37s/it]
100%|█████████▉| 1130/1133 [9:20:13<01:43, 34.65s/it]
100%|█████████▉| 1131/1133 [9:20:50<01:10, 35.23s/it]
100%|█████████▉| 1132/1133 [9:21:13<00:31, 31.74s/it]
100%|██████████| 1133/1133 [9:21:22<00:00, 24.81s/it]
100%|██████████| 1133/1133 [9:21:22<00:00, 29.73s/it]
-Batch output: ['Lao Geng lifted his gun, narrowed one of his triangular eyes, pulled the trigger, and the gun went off. The golden sparrows fell like hailstones, making a crackling sound as the iron pellets flew between the willow branches.']
-Qwen/Qwen2-72B-Instruct/shots-10 metrics: {'meteor': 0.41598174489789025, 'bleu_scores': {'bleu': 0.14493475334416772, 'precisions': [0.4622178936055884, 0.19006388995566106, 0.09796081567373051, 0.05420567832910049], 'brevity_penalty': 0.9861923964657416, 'length_ratio': 0.9862868499503147, 'translation_length': 29776, 'reference_length': 30190}, 'rouge_scores': {'rouge1': 0.46393285894184033, 'rouge2': 0.2169835441251653, 'rougeL': 0.40675258302138867, 'rougeLsum': 0.40702597349559044}, 'accuracy': 0.00441306266548985, 'correct_ids': [77, 195, 364, 533, 659]}
-*** Evaluating with num_shots: 50
-loading train/test data files
-
Map: 0%| | 0/4528 [00:00, ? examples/s]
Map: 44%|████▍ | 2000/4528 [00:00<00:00, 13205.75 examples/s]
Map: 88%|████████▊ | 4000/4528 [00:00<00:00, 13879.53 examples/s]
Map: 100%|██████████| 4528/4528 [00:00<00:00, 13503.64 examples/s]
-
Map: 0%| | 0/1133 [00:00, ? examples/s]
Map: 100%|██████████| 1133/1133 [00:00<00:00, 12855.35 examples/s]
-DatasetDict({
- train: Dataset({
- features: ['chinese', 'english', 'text', 'prompt'],
- num_rows: 4528
- })
- test: Dataset({
- features: ['chinese', 'english', 'text', 'prompt'],
- num_rows: 1133
- })
-})
---------------------------------------------------
-chinese: 老耿端起枪,眯缝起一只三角眼,一搂扳机响了枪,冰雹般的金麻雀劈哩啪啦往下落,铁砂子在柳枝间飞迸着,嚓嚓有声。
---------------------------------------------------
-english: Old Geng picked up his shotgun, squinted, and pulled the trigger. Two sparrows crashed to the ground like hailstones as shotgun pellets tore noisily through the branches.
---------------------------------------------------
-text: <|im_start|>system
-You are a helpful assistant that translates Chinese to English.<|im_end|>
-<|im_start|>user
-You will be given a Chinese sentence to translate. If it is an incomplete sentence, or if you are unsure about the meaning, simply copy the input text as your output. Do not output any additional sentence such as explanation or reasoning.
-
-Example Translations:
-Chinese: 全仗着狐仙搭救。
-English: Because I was protected by a fox fairy.
-Chinese: 过后,表哥告诉她俩,这人是导演,在外国留过学的,还会编剧,今天拍的这戏,就是他自编自导的。
-English: He was the director, the cousin later told them. He had studied abroad and was also a screenwriter; in fact he had written and directed the scene they had earlier seen being filmed.
-Chinese: 这凤姐忽然想起一件事来,便向窗外叫:“蓉儿回来!”
-English: Xi-feng suddenly seemed to remember something, and called to him through the window, 'Rong, come back!'
-Chinese: 三个老红卫兵走到叶文洁面前,面对着她站成了一排——当年,她们也是这样面对叶哲泰的——试图再现那早已忘却的尊严,但她们当年那魔鬼般的精神力量显然已荡然无存。
-English: The three old Red Guards stood in front of Ye in a row—just like they had stood against Ye Zhetai—trying to recapture their long-forgotten dignity. But the demonic spiritual energy that had once propelled them was gone.
-Chinese: 程先生照单全收,都是一个“谢”字,然后问王琦瑶有什么话说。
-English: Mr. Cheng accepted their toast with equanimity and a 'thank you.' Then, turning to Wang Qiyao, he asked if she had anything to say.
-Chinese: 程先生向来觉得她母亲势利,过去并不把他放在眼里,他在楼下叫王琦瑶,她连门都不肯开,只让老妈子伸出头来回话。
-English: Mr. Cheng had always thought her a calculating woman. Back when he used to call on Wang Qiyao, she would never even bother to greet him but always sent the maid down to talk to him at the door instead.
-Chinese: 按他的逻辑,我身上这个通红通红,直不愣登,长约一尺的东西就是罪恶的化身。
-English: In his way of thinking, this red, stiff, foot-long thing on my body was the incarnation of evil.
-Chinese: 他听沙瑞山讲她如何目睹父亲在“文革”中的惨死,讲她后来在建设兵团被诬陷,后来杳无音讯; 九十年代初才又回到了这座城市,在父亲曾工作过的大学中讲授天体物理学直到退休。
-English: He listened as Sha told of how she witnessed the death of her father during the Cultural Revolution, how she was falsely accused at the Production and Construction Corps, how she then seemed to disappear until her return to Beijing at the beginning of the nineties, when she began teaching astrophysics at Tsinghua, where her father had also taught, until her retirement.
-Chinese: 事情一时上有些弄反了,去片厂倒是为了照顾吴佩珍似的。
-English: Before long, it was more like Wang Qiyao was doing her a favor by going with her.
-Chinese: “这等于说正确的哲学是从天上掉下来的。
-English: 'Then that's equivalent to saying that the correct philosophy falls out of the sky.
-Chinese: 爷爷把三种物质拌匀,连同那张黄表纸,拍在伤口上,父亲帮着爷爷把那根肮脏不堪的绷带扎好。
-English: After Granddad mixed the three substances together and covered the wound with them, paper and all, Father wrapped a filthy strip of bandage cloth around it and tied it tight.
-Chinese: 藏在宫里,当然是普天下最稳妥的所在。
-English: Mind you, look anywhere you like, you'll never find a safer place than this.
-Chinese: 果然来的又是四名使者,为首一人下马抱拳,说道:“总舵主相请茅十八茅爷、韦小宝韦爷两位,劳驾前去相会。”
-English: There were four messengers this time. Their leader, having dismounted from his horse, clasped his hands together respectfully: 'The Helmsman requests Mr Mao and Mr Wei to favour him with their company.'
-Chinese: 只见史湘云大说大笑的,见了他两个,忙站起来问好。
-English: Shi Xiang-yun was already there, laughing and chattering away nineteen to the dozen, but rose to greet them as they entered.
-Chinese: 两人虽然没互相叮嘱,却不约而同地缄口不提。
-English: It was implicitly understood between them that they should never broach the subject.
-Chinese: 史强拿起一支笔,在桌面上画了两条弯曲的平行线,“这是运河,”
-English: Da Shi picked up a pen and drew two parallel curves on the table. 'That's the canal.'
-Chinese: 贾环道:“我拿什么比宝玉? 你们怕他,都和他好,都欺负我不是太太养的!” 说着便哭。
-English: 'How can I hope to compete with Bao-yu?' said Jia Huan, beginning to blubber.
-Chinese: 我为此所惊,伏下身不动。
-English: I was scared and stopped, leaning over her body.
-Chinese: 海老公一惊,道:“皇上早知道了?”
-English: The old eunuch was clearly startled by this. 'The Emperor knew this?'
-Chinese: 只说这句就再不能说话了。
-English: Those were the last words he ever uttered.
-Chinese: 再回到医院,人已经进了产房,晚上八点便生下了,是个女孩,说是一出娘胎就满头黑发,手脚很长。
-English: By the time he got back, Wang Qiyao had already been taken into the delivery room. It was a baby girl. She was born at eight o'clock. They told Mr. Cheng that she had long arms and legs and a full head of black hair.
-Chinese: 等她回来,他便对她说,要不要替她去倒杯饮料?
-English: When she came back, he asked her if he could get her a drink.
-Chinese: 我这两套功夫,你这一生一世也来不及学得全了。”
-English: In any case, you couldn't master my two kinds of kungfu if you spent a whole lifetime studying them.'
-Chinese: 香色呢礼帽熟练地搧了他一个耳光,叫道:“说!
-English: Chestnut Wool Cap slapped him across the mouth and shouted: 'Tell me!
-Chinese: 韦小宝沉吟道:“你说怎么办?”
-English: 'What do you think we ought to do?' Trinket asked presently, as if he had been mulling the matter over in his mind.
-Chinese: 王琦瑶就说:你还是没明白我的意思。
-English: 'I don't think so. . . .'
-Chinese: 她默默地站了一会儿,转身走去,悲伤已感觉不到了,她现在就像一台盖革计数仪,当置身于超量的辐射中时,反而不再有任何反应,没有声响,读数为零。
-English: She stood there for a while, silent. Then she turned and walked away. She could no longer feel grief. She was now like a Geiger counter that had been subjected to too much radiation, no longer capable of giving any reaction, noiselessly displaying a reading of zero.
-Chinese: 父亲在墨水河里玩过水,他的水性好像是天生的,奶奶说他见了水比见了亲娘还急。
-English: Father had gone swimming so often in the Black Water River that he seemed born to it. Grandma said that the sight of the river excited him more than the sight of his own mother.
-Chinese: 父亲从高粱根下挖起一块黑土,用手搓得精细,撒在黄表纸上。
-English: Father bent down and picked up a clod of dark earth near the roots of a sorghum stalk, crumbled it in his fingers, and spread it on the paper.
-Chinese: 自从分手后,这是第一次见,中间相隔有十万八千年似的。
-English: This was the first time they had been together since their parting. It felt like thousands of years since they had last seen each other.
-Chinese: 好好儿的,家去做什么?”
-English: 'I'm perfectly all right. What should I want to go home for?'
-Chinese: 绍琳大叫起来,又接着滔滔不绝地讲起了宇宙大爆炸,自然不忘深刻地剖析其反动本质。
-English: Shao Lin shouted. Then she began a long lecture about the big bang theory, remembering to splice in insightful critiques of the theory's extremely reactionary nature.
-Chinese: 顾炎武道:“痛快淋漓,真是绝妙好辞。”
-English: 'It says all there is to say, ' said Gu Yanwu. 'Masterly!'
-Chinese: 它虽是捣乱也是认真恳切,而不是玩世不恭,就算是谣言也是悉心编造。
-English: Though always making trouble, they are nevertheless earnest and sincere. Gossip is never cynical; even if the thing in question is nothing but empty rumors, the utmost care is still put into their creation.
-Chinese: 有一点可以肯定,不管幽灵倒计时的尽头是什么,在这剩下的千余个小时中,对尽头的猜测将像恶魔那样残酷地折磨他,最后在精神上彻底摧毁他。
-English: One thing was certain. No matter what was at the end of the countdown, in the remaining one thousand or so hours, the possibilities would torture him cruelly, like demons, until he suffered a complete mental breakdown.
-Chinese: 我虽糊涂,却明白这两句话。
-English: Even a simpleton like me knows that much!
-Chinese: 王琦瑶还没到这一步,她的想头还有些枝叶花朵,在平安里黯淡的夜里,闪出些光亮来。
-English: Wang Qiyao had not reached this stage. Her thoughts still had stems, leaves, and flowers, which glimmered in the dark night of Peace Lane.
-Chinese: 原来贾瑞父母早亡,只有他祖父代儒教养。
-English: Jia Rui had lost both of his parents in infancy and had been brought up under the sole guardianship of his grandfather Jia Dai-ru.
-Chinese: 在我进山之前,总共就见到了两个人,一个是陈清扬,她没有告诉我这件事。 另一个是我们队长,他也没说起这件事,只叫我去温泉养病。
-English: I saw only two people before my trip, one of whom was Chen Qingyang, who hadn't mentioned it; the other one was our team leader, who also hadn't said anything other than telling me to take a good rest at the thermal springs.
-Chinese: 那个飞出的构件旋即落人水中,激起了高高的水柱,在它一闪而过之际,汪淼看出那是船上发动机的一段曲轴。
-English: A broken component flew out of the hole and fell into the water, causing a large column of water to shoot up. As it briefly flew past, Wang recognized it as a section of the engine crankshaft.
-Chinese: 到了荣府大门前石狮子旁边,只见满门口的轿马。
-English: There, at each side of the stone lions which flanked the gates of the Rong Mansion, she saw a cluster of horses and palanquins.
-Chinese: 审问者:你认为这个结论,本身科学吗?
-English: INTERROGATOR: Do you think this conclusion you drew is scientific?
-Chinese: 他把吴佩珍当小孩子看,喜欢逗她,开些玩笑;对王琦瑶则说有机会要让她上一回镜头,因她的眉眼有些像阮玲玉,趁着人们对阮玲玉的怀念,说不定能捧出一颗明星。
-English: He treated Wu Peizhen as if she were a child; he loved to tease her and play little jokes on her. He promised to put Wang Qiyao in a scene in one of his movies as soon as the opportunity arose. Who knows? Because her coquettish eyes resembled Ruan Lingyu's, they might even be able to capitalize on the audience's nostalgia for the dead movie star and make Wang Qiyao into a new diva of the screen.
-Chinese: 贾瑞也捻着一把汗,少不得回来撒谎,只说:“往舅舅家去了,天黑了,留我住了一夜。”
-English: The prospect of facing his grandfather on arrival made Jia Rui sweat. A lie of some sort was indispensable. 'I went to see Uncle yesterday,' he managed to say, 'and as it was getting dark, he asked me to stay the night.'
-Chinese: 我的后腰上好像被猪八戒筑了两耙。
-English: My lower back looked like it had been struck by Pigsy's rake.
-Chinese: 贾瑞见请,心中暗喜。
-English: Hearing that he was to be received, Jia Rui rejoiced inwardly.
-Chinese: 我去告诉我家爹,拿铜炮枪打你们!”
-English: I'm going to tell my father. He'll shoot the two of you with his bronze-barreled shotgun!'
-Chinese: 我们有各种选择,可以到各方向去。
-English: We could have made any choice and set off in any direction.
-Chinese: 父亲的勃朗宁手枪压在日本洋马肚子下边了。 在下午最后的搏斗中,父亲拖着一杆比他矮不了多少的日本马枪,爷爷还用着那支德国造“自来得”手枪。 连续不断地射击,使本来就过了青春年华的这支“自来得”迅速奔向废铁堆。
-English: Since Father's Browning pistol lay under the belly of the fallen horse, during the final battle of the afternoon he used a Japanese rifle nearly as tall as he was; Granddad used his German automatic, firing it so rapidly it spent its youth and was ready for the trash heap.
-Chinese: 钱老板道:“多谢韦香主夸奖。”
-English: 'Oh, I don't know about that,' said Butcher Qian coyly. 'Anyway, thank you, Master.'
-
-Chinese: 老耿端起枪,眯缝起一只三角眼,一搂扳机响了枪,冰雹般的金麻雀劈哩啪啦往下落,铁砂子在柳枝间飞迸着,嚓嚓有声。
-English:<|im_end|>
-<|im_start|>assistant
-Old Geng picked up his shotgun, squinted, and pulled the trigger. Two sparrows crashed to the ground like hailstones as shotgun pellets tore noisily through the branches.<|im_end|>
---------------------------------------------------
-prompt: <|im_start|>system
-You are a helpful assistant that translates Chinese to English.<|im_end|>
-<|im_start|>user
-You will be given a Chinese sentence to translate. If it is an incomplete sentence, or if you are unsure about the meaning, simply copy the input text as your output. Do not output any additional sentence such as explanation or reasoning.
-
-Example Translations:
-Chinese: 全仗着狐仙搭救。
-English: Because I was protected by a fox fairy.
-Chinese: 过后,表哥告诉她俩,这人是导演,在外国留过学的,还会编剧,今天拍的这戏,就是他自编自导的。
-English: He was the director, the cousin later told them. He had studied abroad and was also a screenwriter; in fact he had written and directed the scene they had earlier seen being filmed.
-Chinese: 这凤姐忽然想起一件事来,便向窗外叫:“蓉儿回来!”
-English: Xi-feng suddenly seemed to remember something, and called to him through the window, 'Rong, come back!'
-Chinese: 三个老红卫兵走到叶文洁面前,面对着她站成了一排——当年,她们也是这样面对叶哲泰的——试图再现那早已忘却的尊严,但她们当年那魔鬼般的精神力量显然已荡然无存。
-English: The three old Red Guards stood in front of Ye in a row—just like they had stood against Ye Zhetai—trying to recapture their long-forgotten dignity. But the demonic spiritual energy that had once propelled them was gone.
-Chinese: 程先生照单全收,都是一个“谢”字,然后问王琦瑶有什么话说。
-English: Mr. Cheng accepted their toast with equanimity and a 'thank you.' Then, turning to Wang Qiyao, he asked if she had anything to say.
-Chinese: 程先生向来觉得她母亲势利,过去并不把他放在眼里,他在楼下叫王琦瑶,她连门都不肯开,只让老妈子伸出头来回话。
-English: Mr. Cheng had always thought her a calculating woman. Back when he used to call on Wang Qiyao, she would never even bother to greet him but always sent the maid down to talk to him at the door instead.
-Chinese: 按他的逻辑,我身上这个通红通红,直不愣登,长约一尺的东西就是罪恶的化身。
-English: In his way of thinking, this red, stiff, foot-long thing on my body was the incarnation of evil.
-Chinese: 他听沙瑞山讲她如何目睹父亲在“文革”中的惨死,讲她后来在建设兵团被诬陷,后来杳无音讯; 九十年代初才又回到了这座城市,在父亲曾工作过的大学中讲授天体物理学直到退休。
-English: He listened as Sha told of how she witnessed the death of her father during the Cultural Revolution, how she was falsely accused at the Production and Construction Corps, how she then seemed to disappear until her return to Beijing at the beginning of the nineties, when she began teaching astrophysics at Tsinghua, where her father had also taught, until her retirement.
-Chinese: 事情一时上有些弄反了,去片厂倒是为了照顾吴佩珍似的。
-English: Before long, it was more like Wang Qiyao was doing her a favor by going with her.
-Chinese: “这等于说正确的哲学是从天上掉下来的。
-English: 'Then that's equivalent to saying that the correct philosophy falls out of the sky.
-Chinese: 爷爷把三种物质拌匀,连同那张黄表纸,拍在伤口上,父亲帮着爷爷把那根肮脏不堪的绷带扎好。
-English: After Granddad mixed the three substances together and covered the wound with them, paper and all, Father wrapped a filthy strip of bandage cloth around it and tied it tight.
-Chinese: 藏在宫里,当然是普天下最稳妥的所在。
-English: Mind you, look anywhere you like, you'll never find a safer place than this.
-Chinese: 果然来的又是四名使者,为首一人下马抱拳,说道:“总舵主相请茅十八茅爷、韦小宝韦爷两位,劳驾前去相会。”
-English: There were four messengers this time. Their leader, having dismounted from his horse, clasped his hands together respectfully: 'The Helmsman requests Mr Mao and Mr Wei to favour him with their company.'
-Chinese: 只见史湘云大说大笑的,见了他两个,忙站起来问好。
-English: Shi Xiang-yun was already there, laughing and chattering away nineteen to the dozen, but rose to greet them as they entered.
-Chinese: 两人虽然没互相叮嘱,却不约而同地缄口不提。
-English: It was implicitly understood between them that they should never broach the subject.
-Chinese: 史强拿起一支笔,在桌面上画了两条弯曲的平行线,“这是运河,”
-English: Da Shi picked up a pen and drew two parallel curves on the table. 'That's the canal.'
-Chinese: 贾环道:“我拿什么比宝玉? 你们怕他,都和他好,都欺负我不是太太养的!” 说着便哭。
-English: 'How can I hope to compete with Bao-yu?' said Jia Huan, beginning to blubber.
-Chinese: 我为此所惊,伏下身不动。
-English: I was scared and stopped, leaning over her body.
-Chinese: 海老公一惊,道:“皇上早知道了?”
-English: The old eunuch was clearly startled by this. 'The Emperor knew this?'
-Chinese: 只说这句就再不能说话了。
-English: Those were the last words he ever uttered.
-Chinese: 再回到医院,人已经进了产房,晚上八点便生下了,是个女孩,说是一出娘胎就满头黑发,手脚很长。
-English: By the time he got back, Wang Qiyao had already been taken into the delivery room. It was a baby girl. She was born at eight o'clock. They told Mr. Cheng that she had long arms and legs and a full head of black hair.
-Chinese: 等她回来,他便对她说,要不要替她去倒杯饮料?
-English: When she came back, he asked her if he could get her a drink.
-Chinese: 我这两套功夫,你这一生一世也来不及学得全了。”
-English: In any case, you couldn't master my two kinds of kungfu if you spent a whole lifetime studying them.'
-Chinese: 香色呢礼帽熟练地搧了他一个耳光,叫道:“说!
-English: Chestnut Wool Cap slapped him across the mouth and shouted: 'Tell me!
-Chinese: 韦小宝沉吟道:“你说怎么办?”
-English: 'What do you think we ought to do?' Trinket asked presently, as if he had been mulling the matter over in his mind.
-Chinese: 王琦瑶就说:你还是没明白我的意思。
-English: 'I don't think so. . . .'
-Chinese: 她默默地站了一会儿,转身走去,悲伤已感觉不到了,她现在就像一台盖革计数仪,当置身于超量的辐射中时,反而不再有任何反应,没有声响,读数为零。
-English: She stood there for a while, silent. Then she turned and walked away. She could no longer feel grief. She was now like a Geiger counter that had been subjected to too much radiation, no longer capable of giving any reaction, noiselessly displaying a reading of zero.
-Chinese: 父亲在墨水河里玩过水,他的水性好像是天生的,奶奶说他见了水比见了亲娘还急。
-English: Father had gone swimming so often in the Black Water River that he seemed born to it. Grandma said that the sight of the river excited him more than the sight of his own mother.
-Chinese: 父亲从高粱根下挖起一块黑土,用手搓得精细,撒在黄表纸上。
-English: Father bent down and picked up a clod of dark earth near the roots of a sorghum stalk, crumbled it in his fingers, and spread it on the paper.
-Chinese: 自从分手后,这是第一次见,中间相隔有十万八千年似的。
-English: This was the first time they had been together since their parting. It felt like thousands of years since they had last seen each other.
-Chinese: 好好儿的,家去做什么?”
-English: 'I'm perfectly all right. What should I want to go home for?'
-Chinese: 绍琳大叫起来,又接着滔滔不绝地讲起了宇宙大爆炸,自然不忘深刻地剖析其反动本质。
-English: Shao Lin shouted. Then she began a long lecture about the big bang theory, remembering to splice in insightful critiques of the theory's extremely reactionary nature.
-Chinese: 顾炎武道:“痛快淋漓,真是绝妙好辞。”
-English: 'It says all there is to say, ' said Gu Yanwu. 'Masterly!'
-Chinese: 它虽是捣乱也是认真恳切,而不是玩世不恭,就算是谣言也是悉心编造。
-English: Though always making trouble, they are nevertheless earnest and sincere. Gossip is never cynical; even if the thing in question is nothing but empty rumors, the utmost care is still put into their creation.
-Chinese: 有一点可以肯定,不管幽灵倒计时的尽头是什么,在这剩下的千余个小时中,对尽头的猜测将像恶魔那样残酷地折磨他,最后在精神上彻底摧毁他。
-English: One thing was certain. No matter what was at the end of the countdown, in the remaining one thousand or so hours, the possibilities would torture him cruelly, like demons, until he suffered a complete mental breakdown.
-Chinese: 我虽糊涂,却明白这两句话。
-English: Even a simpleton like me knows that much!
-Chinese: 王琦瑶还没到这一步,她的想头还有些枝叶花朵,在平安里黯淡的夜里,闪出些光亮来。
-English: Wang Qiyao had not reached this stage. Her thoughts still had stems, leaves, and flowers, which glimmered in the dark night of Peace Lane.
-Chinese: 原来贾瑞父母早亡,只有他祖父代儒教养。
-English: Jia Rui had lost both of his parents in infancy and had been brought up under the sole guardianship of his grandfather Jia Dai-ru.
-Chinese: 在我进山之前,总共就见到了两个人,一个是陈清扬,她没有告诉我这件事。 另一个是我们队长,他也没说起这件事,只叫我去温泉养病。
-English: I saw only two people before my trip, one of whom was Chen Qingyang, who hadn't mentioned it; the other one was our team leader, who also hadn't said anything other than telling me to take a good rest at the thermal springs.
-Chinese: 那个飞出的构件旋即落人水中,激起了高高的水柱,在它一闪而过之际,汪淼看出那是船上发动机的一段曲轴。
-English: A broken component flew out of the hole and fell into the water, causing a large column of water to shoot up. As it briefly flew past, Wang recognized it as a section of the engine crankshaft.
-Chinese: 到了荣府大门前石狮子旁边,只见满门口的轿马。
-English: There, at each side of the stone lions which flanked the gates of the Rong Mansion, she saw a cluster of horses and palanquins.
-Chinese: 审问者:你认为这个结论,本身科学吗?
-English: INTERROGATOR: Do you think this conclusion you drew is scientific?
-Chinese: 他把吴佩珍当小孩子看,喜欢逗她,开些玩笑;对王琦瑶则说有机会要让她上一回镜头,因她的眉眼有些像阮玲玉,趁着人们对阮玲玉的怀念,说不定能捧出一颗明星。
-English: He treated Wu Peizhen as if she were a child; he loved to tease her and play little jokes on her. He promised to put Wang Qiyao in a scene in one of his movies as soon as the opportunity arose. Who knows? Because her coquettish eyes resembled Ruan Lingyu's, they might even be able to capitalize on the audience's nostalgia for the dead movie star and make Wang Qiyao into a new diva of the screen.
-Chinese: 贾瑞也捻着一把汗,少不得回来撒谎,只说:“往舅舅家去了,天黑了,留我住了一夜。”
-English: The prospect of facing his grandfather on arrival made Jia Rui sweat. A lie of some sort was indispensable. 'I went to see Uncle yesterday,' he managed to say, 'and as it was getting dark, he asked me to stay the night.'
-Chinese: 我的后腰上好像被猪八戒筑了两耙。
-English: My lower back looked like it had been struck by Pigsy's rake.
-Chinese: 贾瑞见请,心中暗喜。
-English: Hearing that he was to be received, Jia Rui rejoiced inwardly.
-Chinese: 我去告诉我家爹,拿铜炮枪打你们!”
-English: I'm going to tell my father. He'll shoot the two of you with his bronze-barreled shotgun!'
-Chinese: 我们有各种选择,可以到各方向去。
-English: We could have made any choice and set off in any direction.
-Chinese: 父亲的勃朗宁手枪压在日本洋马肚子下边了。 在下午最后的搏斗中,父亲拖着一杆比他矮不了多少的日本马枪,爷爷还用着那支德国造“自来得”手枪。 连续不断地射击,使本来就过了青春年华的这支“自来得”迅速奔向废铁堆。
-English: Since Father's Browning pistol lay under the belly of the fallen horse, during the final battle of the afternoon he used a Japanese rifle nearly as tall as he was; Granddad used his German automatic, firing it so rapidly it spent its youth and was ready for the trash heap.
-Chinese: 钱老板道:“多谢韦香主夸奖。”
-English: 'Oh, I don't know about that,' said Butcher Qian coyly. 'Anyway, thank you, Master.'
-
-Chinese: 老耿端起枪,眯缝起一只三角眼,一搂扳机响了枪,冰雹般的金麻雀劈哩啪啦往下落,铁砂子在柳枝间飞迸着,嚓嚓有声。
-English:<|im_end|>
-<|im_start|>assistant
-
-
0%| | 0/1133 [00:00, ?it/s]
0%| | 1/1133 [04:01<76:01:45, 241.79s/it]
0%| | 2/1133 [07:27<69:22:48, 220.84s/it]
0%| | 3/1133 [16:57<119:15:59, 379.96s/it]
0%| | 4/1133 [19:37<91:55:24, 293.11s/it]
0%| | 5/1133 [22:25<77:44:57, 248.14s/it]
1%| | 6/1133 [24:05<61:52:12, 197.63s/it]
1%| | 7/1133 [26:33<56:45:17, 181.45s/it]
1%| | 8/1133 [31:28<68:01:16, 217.67s/it]
1%| | 9/1133 [32:31<52:49:32, 169.19s/it]
1%| | 10/1133 [33:33<42:31:00, 136.30s/it]
1%| | 11/1133 [34:51<36:51:05, 118.24s/it]
1%| | 12/1133 [37:18<39:36:50, 127.22s/it]
1%| | 13/1133 [38:17<33:08:27, 106.52s/it]
1%| | 14/1133 [38:50<26:12:55, 84.34s/it]
1%|▏ | 15/1133 [41:46<34:44:39, 111.88s/it]
1%|▏ | 16/1133 [42:41<29:25:00, 94.81s/it]
2%|▏ | 17/1133 [44:47<32:15:08, 104.04s/it]
2%|▏ | 18/1133 [47:24<37:07:50, 119.88s/it]
2%|▏ | 19/1133 [47:57<29:01:40, 93.81s/it]
2%|▏ | 20/1133 [49:54<31:13:58, 101.02s/it]
2%|▏ | 21/1133 [51:15<29:20:30, 94.99s/it]
2%|▏ | 22/1133 [54:14<37:03:11, 120.06s/it]
2%|▏ | 23/1133 [55:09<31:00:44, 100.58s/it]
2%|▏ | 24/1133 [56:23<28:29:42, 92.50s/it]
2%|▏ | 25/1133 [58:06<29:26:45, 95.67s/it]
2%|▏ | 26/1133 [1:00:45<35:16:22, 114.71s/it]
2%|▏ | 27/1133 [1:02:32<34:30:44, 112.34s/it]
2%|▏ | 28/1133 [1:03:16<28:11:46, 91.86s/it]
3%|▎ | 29/1133 [1:04:18<25:27:44, 83.03s/it]
3%|▎ | 30/1133 [1:05:06<22:11:36, 72.44s/it]
3%|▎ | 31/1133 [1:05:28<17:32:36, 57.31s/it]
3%|▎ | 32/1133 [1:07:56<25:49:33, 84.44s/it]
3%|▎ | 33/1133 [1:13:05<46:26:20, 151.98s/it]
3%|▎ | 34/1133 [1:15:18<44:37:34, 146.18s/it]
3%|▎ | 35/1133 [1:16:57<40:17:36, 132.11s/it]
3%|▎ | 36/1133 [1:18:33<36:55:46, 121.19s/it]
3%|▎ | 37/1133 [1:19:50<32:52:52, 108.00s/it]
3%|▎ | 38/1133 [1:21:00<29:21:59, 96.55s/it]
3%|▎ | 39/1133 [1:21:26<22:52:46, 75.29s/it]
4%|▎ | 40/1133 [1:22:54<24:02:45, 79.20s/it]
4%|▎ | 41/1133 [1:26:12<34:48:15, 114.74s/it]
4%|▎ | 42/1133 [1:26:56<28:20:41, 93.53s/it]
4%|▍ | 43/1133 [1:28:31<28:30:57, 94.18s/it]
4%|▍ | 44/1133 [1:29:52<27:17:30, 90.22s/it]
4%|▍ | 45/1133 [1:30:40<23:24:56, 77.48s/it]
4%|▍ | 46/1133 [1:34:28<37:03:04, 122.71s/it]
4%|▍ | 47/1133 [1:36:04<34:34:29, 114.61s/it]
4%|▍ | 48/1133 [1:36:37<27:09:42, 90.12s/it]
4%|▍ | 49/1133 [1:37:28<23:38:24, 78.51s/it]
4%|▍ | 50/1133 [1:38:31<22:10:02, 73.69s/it]
5%|▍ | 51/1133 [1:40:29<26:07:31, 86.92s/it]
5%|▍ | 52/1133 [1:43:42<35:40:49, 118.82s/it]
5%|▍ | 53/1133 [1:45:14<33:13:33, 110.75s/it]
5%|▍ | 54/1133 [1:46:09<28:11:08, 94.04s/it]
5%|▍ | 55/1133 [1:50:48<44:49:42, 149.71s/it]
5%|▍ | 56/1133 [1:52:24<39:56:33, 133.51s/it]
5%|▌ | 57/1133 [1:54:33<39:30:04, 132.16s/it]
5%|▌ | 58/1133 [1:56:35<38:30:51, 128.98s/it]
5%|▌ | 59/1133 [1:57:04<29:33:42, 99.09s/it]
5%|▌ | 60/1133 [2:00:09<37:14:17, 124.94s/it]
5%|▌ | 61/1133 [2:01:19<32:16:41, 108.40s/it]
5%|▌ | 62/1133 [2:02:25<28:28:30, 95.71s/it]
6%|▌ | 63/1133 [2:04:27<30:45:55, 103.51s/it]
6%|▌ | 64/1133 [2:05:59<29:42:43, 100.06s/it]
6%|▌ | 65/1133 [2:07:35<29:17:36, 98.74s/it]
6%|▌ | 66/1133 [2:09:36<31:16:41, 105.53s/it]
6%|▌ | 67/1133 [2:12:43<38:29:12, 129.97s/it]
6%|▌ | 68/1133 [2:16:20<46:10:28, 156.08s/it]
6%|▌ | 69/1133 [2:18:52<45:44:41, 154.78s/it]
6%|▌ | 70/1133 [2:20:27<40:27:50, 137.04s/it]
6%|▋ | 71/1133 [2:21:04<31:32:38, 106.93s/it]
6%|▋ | 72/1133 [2:22:03<27:15:09, 92.47s/it]
6%|▋ | 73/1133 [2:22:47<22:57:02, 77.95s/it]
7%|▋ | 74/1133 [2:23:20<18:58:01, 64.48s/it]
7%|▋ | 75/1133 [2:24:15<18:07:23, 61.67s/it]
7%|▋ | 76/1133 [2:25:25<18:49:40, 64.13s/it]
7%|▋ | 77/1133 [2:27:34<24:30:37, 83.56s/it]
7%|▋ | 78/1133 [2:28:18<21:00:54, 71.71s/it]
7%|▋ | 79/1133 [2:29:57<23:25:56, 80.03s/it]
7%|▋ | 80/1133 [2:31:03<22:11:30, 75.87s/it]
7%|▋ | 81/1133 [2:31:29<17:46:12, 60.81s/it]
7%|▋ | 82/1133 [2:32:02<15:19:13, 52.48s/it]
7%|▋ | 83/1133 [2:35:09<27:05:20, 92.88s/it]
7%|▋ | 84/1133 [2:35:42<21:49:44, 74.91s/it]
8%|▊ | 85/1133 [2:36:15<18:08:56, 62.34s/it]
8%|▊ | 86/1133 [2:37:33<19:25:47, 66.81s/it]
8%|▊ | 87/1133 [2:38:35<19:02:03, 65.51s/it]
8%|▊ | 88/1133 [2:40:48<24:51:38, 85.64s/it]
8%|▊ | 89/1133 [2:41:46<22:29:49, 77.58s/it]
8%|▊ | 90/1133 [2:44:14<28:35:23, 98.68s/it]
8%|▊ | 91/1133 [2:45:17<25:25:07, 87.82s/it]
8%|▊ | 92/1133 [2:46:27<23:49:51, 82.41s/it]
8%|▊ | 93/1133 [2:48:25<26:53:33, 93.09s/it]
8%|▊ | 94/1133 [2:49:38<25:10:01, 87.20s/it]
8%|▊ | 95/1133 [2:51:21<26:30:24, 91.93s/it]
8%|▊ | 96/1133 [2:53:53<31:41:18, 110.01s/it]
9%|▊ | 97/1133 [2:54:52<27:14:02, 94.64s/it]
9%|▊ | 98/1133 [2:55:43<23:28:46, 81.67s/it]
9%|▊ | 99/1133 [2:58:00<28:13:16, 98.26s/it]
9%|▉ | 100/1133 [2:58:37<22:53:37, 79.78s/it]
9%|▉ | 101/1133 [3:01:56<33:07:25, 115.55s/it]
9%|▉ | 102/1133 [3:05:33<41:49:51, 146.06s/it]
9%|▉ | 103/1133 [3:06:32<34:18:04, 119.89s/it]
9%|▉ | 104/1133 [3:06:54<25:52:32, 90.53s/it]
9%|▉ | 105/1133 [3:09:18<30:26:42, 106.62s/it]
9%|▉ | 106/1133 [3:18:45<69:45:09, 244.51s/it]
9%|▉ | 107/1133 [3:22:02<65:40:52, 230.46s/it]
10%|▉ | 108/1133 [3:23:12<51:53:36, 182.26s/it]
10%|▉ | 109/1133 [3:24:48<44:26:41, 156.25s/it]
10%|▉ | 110/1133 [3:28:32<50:14:26, 176.80s/it]
10%|▉ | 111/1133 [3:30:52<47:04:06, 165.80s/it]
10%|▉ | 112/1133 [3:35:51<58:16:46, 205.49s/it]
10%|▉ | 113/1133 [3:40:25<64:04:34, 226.15s/it]
10%|█ | 114/1133 [3:41:35<50:44:22, 179.26s/it]
10%|█ | 115/1133 [3:42:33<40:27:45, 143.09s/it]
10%|█ | 116/1133 [3:43:36<33:35:09, 118.89s/it]
10%|█ | 117/1133 [3:46:30<38:12:30, 135.38s/it]
10%|█ | 118/1133 [3:47:54<33:52:17, 120.14s/it]
11%|█ | 119/1133 [3:50:07<34:53:44, 123.89s/it]
11%|█ | 120/1133 [3:50:51<28:07:06, 99.93s/it]
11%|█ | 121/1133 [3:52:01<25:32:56, 90.89s/it]
11%|█ | 122/1133 [3:53:55<27:28:57, 97.86s/it]
11%|█ | 123/1133 [3:54:39<22:55:35, 81.72s/it]
11%|█ | 124/1133 [3:56:33<25:37:31, 91.43s/it]
11%|█ | 125/1133 [3:59:28<32:35:46, 116.42s/it]
11%|█ | 126/1133 [4:01:11<31:26:31, 112.40s/it]
11%|█ | 127/1133 [4:04:48<40:12:56, 143.91s/it]
11%|█▏ | 128/1133 [4:05:58<33:58:06, 121.68s/it]
11%|█▏ | 129/1133 [4:07:26<31:08:09, 111.64s/it]
11%|█▏ | 130/1133 [4:07:52<23:55:08, 85.85s/it]
12%|█▏ | 131/1133 [4:10:39<30:41:04, 110.24s/it]
12%|█▏ | 132/1133 [4:12:07<28:49:01, 103.64s/it]
12%|█▏ | 133/1133 [4:13:36<27:29:54, 98.99s/it]
12%|█▏ | 134/1133 [4:14:16<22:35:21, 81.40s/it]
12%|█▏ | 135/1133 [4:19:46<43:14:03, 155.96s/it]
12%|█▏ | 136/1133 [4:22:20<43:03:44, 155.49s/it]
12%|█▏ | 137/1133 [4:23:48<37:26:18, 135.32s/it]
12%|█▏ | 138/1133 [4:24:14<28:18:38, 102.43s/it]
12%|█▏ | 139/1133 [4:25:05<24:03:07, 87.11s/it]
12%|█▏ | 140/1133 [4:26:52<25:38:45, 92.98s/it]
12%|█▏ | 141/1133 [4:27:51<22:47:36, 82.72s/it]
13%|█▎ | 142/1133 [4:28:28<18:57:58, 68.90s/it]
13%|█▎ | 143/1133 [4:30:44<24:30:21, 89.11s/it]
13%|█▎ | 144/1133 [4:31:46<22:16:49, 81.10s/it]
13%|█▎ | 145/1133 [4:32:34<19:30:25, 71.08s/it]
13%|█▎ | 146/1133 [4:33:40<19:04:43, 69.59s/it]
13%|█▎ | 147/1133 [4:35:19<21:29:50, 78.49s/it]
13%|█▎ | 148/1133 [4:35:49<17:26:19, 63.74s/it]
13%|█▎ | 149/1133 [4:36:55<17:36:58, 64.45s/it]
13%|█▎ | 150/1133 [4:37:46<16:31:50, 60.54s/it]
13%|█▎ | 151/1133 [4:40:10<23:19:09, 85.49s/it]
13%|█▎ | 152/1133 [4:42:59<30:08:22, 110.60s/it]
14%|█▎ | 153/1133 [4:43:47<24:58:15, 91.73s/it]
14%|█▎ | 154/1133 [4:46:25<30:22:56, 111.72s/it]
14%|█▎ | 155/1133 [4:47:57<28:44:01, 105.77s/it]
14%|█▍ | 156/1133 [4:50:02<30:17:43, 111.63s/it]
14%|█▍ | 157/1133 [4:52:56<35:18:42, 130.25s/it]
14%|█▍ | 158/1133 [4:54:46<33:39:39, 124.29s/it]
14%|█▍ | 159/1133 [4:55:16<25:55:05, 95.80s/it]
14%|█▍ | 160/1133 [4:56:33<24:22:17, 90.17s/it]
14%|█▍ | 161/1133 [4:56:58<19:07:14, 70.82s/it]
14%|█▍ | 162/1133 [4:58:16<19:36:38, 72.71s/it]
14%|█▍ | 163/1133 [4:59:48<21:08:51, 78.49s/it]
14%|█▍ | 164/1133 [5:00:32<18:20:39, 68.15s/it]
15%|█▍ | 165/1133 [5:01:41<18:27:41, 68.66s/it]
15%|█▍ | 166/1133 [5:03:47<23:00:00, 85.63s/it]
15%|█▍ | 167/1133 [5:04:49<21:06:43, 78.68s/it]
15%|█▍ | 168/1133 [5:11:02<44:46:44, 167.05s/it]
15%|█▍ | 169/1133 [5:12:16<37:12:52, 138.98s/it]
15%|█▌ | 170/1133 [5:13:33<32:12:42, 120.42s/it]
15%|█▌ | 171/1133 [5:14:02<24:52:27, 93.08s/it]
15%|█▌ | 172/1133 [5:14:35<20:02:11, 75.06s/it]
15%|█▌ | 173/1133 [5:15:34<18:42:47, 70.17s/it]
15%|█▌ | 174/1133 [5:16:11<16:00:53, 60.12s/it]
15%|█▌ | 175/1133 [5:17:35<17:56:50, 67.44s/it]
16%|█▌ | 176/1133 [5:18:27<16:38:44, 62.62s/it]
16%|█▌ | 177/1133 [5:20:06<19:32:27, 73.59s/it]
16%|█▌ | 178/1133 [5:25:29<39:25:46, 148.64s/it]
16%|█▌ | 179/1133 [5:26:47<33:41:59, 127.17s/it]
16%|█▌ | 180/1133 [5:29:14<35:16:04, 133.23s/it]
16%|█▌ | 181/1133 [5:30:49<32:14:30, 121.92s/it]
16%|█▌ | 182/1133 [5:33:49<36:45:03, 139.12s/it]
16%|█▌ | 183/1133 [5:35:10<32:05:51, 121.63s/it]
16%|█▌ | 184/1133 [5:36:16<27:40:04, 104.96s/it]
16%|█▋ | 185/1133 [5:37:03<23:06:49, 87.77s/it]
16%|█▋ | 186/1133 [5:40:41<33:18:57, 126.65s/it]
17%|█▋ | 187/1133 [5:43:16<35:33:24, 135.31s/it]
17%|█▋ | 188/1133 [5:46:41<41:00:49, 156.24s/it]
17%|█▋ | 189/1133 [5:48:02<35:01:56, 133.60s/it]
17%|█▋ | 190/1133 [5:49:30<31:25:11, 119.95s/it]
17%|█▋ | 191/1133 [5:51:13<30:02:35, 114.81s/it]
17%|█▋ | 192/1133 [5:53:18<30:48:16, 117.85s/it]
17%|█▋ | 193/1133 [5:55:53<33:41:42, 129.05s/it]
17%|█▋ | 194/1133 [5:56:33<26:43:14, 102.44s/it]
17%|█▋ | 195/1133 [5:57:10<21:32:56, 82.70s/it]
17%|█▋ | 196/1133 [5:57:54<18:30:08, 71.09s/it]
17%|█▋ | 197/1133 [6:00:03<22:58:28, 88.36s/it]
17%|█▋ | 198/1133 [6:00:54<20:03:44, 77.25s/it]
18%|█▊ | 199/1133 [6:04:00<28:29:43, 109.83s/it]
18%|█▊ | 200/1133 [6:04:15<21:03:50, 81.28s/it]
18%|█▊ | 201/1133 [6:05:54<22:26:10, 86.66s/it]
18%|█▊ | 202/1133 [6:06:16<17:23:39, 67.26s/it]
18%|█▊ | 203/1133 [6:06:45<14:25:55, 55.87s/it]
18%|█▊ | 204/1133 [6:10:25<27:07:28, 105.11s/it]
18%|█▊ | 205/1133 [6:10:51<20:56:58, 81.27s/it]
18%|█▊ | 206/1133 [6:11:57<19:44:49, 76.69s/it]
18%|█▊ | 207/1133 [6:13:43<22:01:45, 85.64s/it]
18%|█▊ | 208/1133 [6:16:38<28:50:46, 112.27s/it]
18%|█▊ | 209/1133 [6:22:11<45:51:41, 178.68s/it]
19%|█▊ | 210/1133 [6:24:35<43:06:31, 168.14s/it]
19%|█▊ | 211/1133 [6:26:47<40:19:23, 157.44s/it]
19%|█▊ | 212/1133 [6:29:30<40:40:55, 159.02s/it]
19%|█▉ | 213/1133 [6:30:18<32:05:59, 125.61s/it]
19%|█▉ | 214/1133 [6:30:54<25:14:56, 98.91s/it]
19%|█▉ | 215/1133 [6:32:22<24:23:21, 95.64s/it]
19%|█▉ | 216/1133 [6:38:53<46:54:31, 184.16s/it]
19%|█▉ | 217/1133 [6:39:37<36:09:19, 142.10s/it]
19%|█▉ | 218/1133 [6:40:21<28:37:41, 112.64s/it]
19%|█▉ | 219/1133 [6:41:12<23:55:15, 94.22s/it]
19%|█▉ | 220/1133 [6:42:40<23:25:35, 92.37s/it]
20%|█▉ | 221/1133 [6:46:26<33:33:30, 132.47s/it]
20%|█▉ | 222/1133 [6:47:32<28:28:25, 112.52s/it]
20%|█▉ | 223/1133 [6:50:11<31:56:45, 126.38s/it]
20%|█▉ | 224/1133 [6:50:47<25:06:27, 99.44s/it]
20%|█▉ | 225/1133 [6:51:42<21:42:47, 86.09s/it]
20%|█▉ | 226/1133 [6:56:12<35:34:36, 141.21s/it]
20%|██ | 227/1133 [6:58:02<33:11:05, 131.86s/it]
20%|██ | 228/1133 [6:59:23<29:17:06, 116.49s/it]
20%|██ | 229/1133 [7:02:40<35:18:55, 140.64s/it]
20%|██ | 230/1133 [7:04:48<34:22:17, 137.03s/it]
20%|██ | 231/1133 [7:05:47<28:26:15, 113.50s/it]
20%|██ | 232/1133 [7:07:11<26:13:00, 104.75s/it]
21%|██ | 233/1133 [7:08:32<24:22:57, 97.53s/it]
21%|██ | 234/1133 [7:10:00<23:38:13, 94.65s/it]
21%|██ | 235/1133 [7:10:33<18:59:29, 76.13s/it]
21%|██ | 236/1133 [7:13:15<25:22:11, 101.82s/it]
21%|██ | 237/1133 [7:16:52<33:59:01, 136.54s/it]
21%|██ | 238/1133 [7:18:35<31:24:38, 126.34s/it]
21%|██ | 239/1133 [7:20:14<29:20:33, 118.16s/it]
21%|██ | 240/1133 [7:22:00<28:26:11, 114.64s/it]
21%|██▏ | 241/1133 [7:22:22<21:30:52, 86.83s/it]
21%|██▏ | 242/1133 [7:23:32<20:12:26, 81.65s/it]
21%|██▏ | 243/1133 [7:24:49<19:50:23, 80.25s/it]
22%|██▏ | 244/1133 [7:25:14<15:46:01, 63.85s/it]
22%|██▏ | 245/1133 [7:27:01<18:54:24, 76.65s/it]
22%|██▏ | 246/1133 [7:29:06<22:26:13, 91.06s/it]
22%|██▏ | 247/1133 [7:30:00<19:44:33, 80.22s/it]
22%|██▏ | 248/1133 [7:31:32<20:33:26, 83.62s/it]
22%|██▏ | 249/1133 [7:32:12<17:20:17, 70.61s/it]
22%|██▏ | 250/1133 [7:33:47<19:07:56, 78.00s/it]
22%|██▏ | 251/1133 [7:35:52<22:33:03, 92.04s/it]
22%|██▏ | 252/1133 [7:36:47<19:47:50, 80.90s/it]
22%|██▏ | 253/1133 [7:40:17<29:12:33, 119.49s/it]
22%|██▏ | 254/1133 [7:41:48<27:08:19, 111.15s/it]
23%|██▎ | 255/1133 [7:44:08<29:11:15, 119.68s/it]
23%|██▎ | 256/1133 [7:46:48<32:05:27, 131.73s/it]
23%|██▎ | 257/1133 [7:47:54<27:15:39, 112.03s/it]
23%|██▎ | 258/1133 [7:50:18<29:34:20, 121.67s/it]
23%|██▎ | 259/1133 [7:53:13<33:24:37, 137.62s/it]
23%|██▎ | 260/1133 [7:59:41<51:36:26, 212.81s/it]
23%|██▎ | 261/1133 [8:04:35<57:27:38, 237.22s/it]
23%|██▎ | 262/1133 [8:06:15<47:23:21, 195.87s/it]
23%|██▎ | 263/1133 [8:12:00<58:10:46, 240.74s/it]
23%|██▎ | 264/1133 [8:13:43<48:07:54, 199.40s/it]
23%|██▎ | 265/1133 [8:18:39<55:05:23, 228.48s/it]
23%|██▎ | 266/1133 [8:21:19<50:04:49, 207.95s/it]
24%|██▎ | 267/1133 [8:24:25<48:26:03, 201.34s/it]
24%|██▎ | 268/1133 [8:30:49<61:32:05, 256.10s/it]
24%|██▎ | 269/1133 [8:32:58<52:17:42, 217.90s/it]
24%|██▍ | 270/1133 [8:34:19<42:22:35, 176.77s/it]
24%|██▍ | 271/1133 [8:35:25<34:22:33, 143.57s/it]
24%|██▍ | 272/1133 [8:37:15<31:57:10, 133.60s/it]
24%|██▍ | 273/1133 [8:37:59<25:29:34, 106.71s/it]
24%|██▍ | 274/1133 [8:39:50<25:43:18, 107.80s/it]
24%|██▍ | 275/1133 [8:40:45<21:55:06, 91.97s/it]
24%|██▍ | 276/1133 [8:41:51<20:02:18, 84.18s/it]
24%|██▍ | 277/1133 [8:43:26<20:49:32, 87.58s/it]
25%|██▍ | 278/1133 [8:44:43<20:03:55, 84.49s/it]
25%|██▍ | 279/1133 [8:46:45<22:40:05, 95.56s/it]
25%|██▍ | 280/1133 [8:48:31<23:25:42, 98.88s/it]
25%|██▍ | 281/1133 [8:51:02<27:05:56, 114.50s/it]
25%|██▍ | 282/1133 [8:51:50<22:19:35, 94.45s/it]
25%|██▍ | 283/1133 [8:52:30<18:27:58, 78.21s/it]
25%|██▌ | 284/1133 [8:54:06<19:40:02, 83.40s/it]
25%|██▌ | 285/1133 [8:55:27<19:27:41, 82.62s/it]
25%|██▌ | 286/1133 [8:56:29<18:00:37, 76.55s/it]
25%|██▌ | 287/1133 [8:58:45<22:11:40, 94.45s/it]
25%|██▌ | 288/1133 [9:00:02<20:57:08, 89.26s/it]
26%|██▌ | 289/1133 [9:00:54<18:15:43, 77.90s/it]
26%|██▌ | 290/1133 [9:02:55<21:17:50, 90.95s/it]
26%|██▌ | 291/1133 [9:05:24<25:19:56, 108.31s/it]
26%|██▌ | 292/1133 [9:06:26<22:05:05, 94.54s/it]
26%|██▌ | 293/1133 [9:10:23<32:00:37, 137.19s/it]
26%|██▌ | 294/1133 [9:11:25<26:44:12, 114.72s/it]
26%|██▌ | 295/1133 [9:13:46<28:29:14, 122.38s/it]
26%|██▌ | 296/1133 [9:16:02<29:24:54, 126.52s/it]
26%|██▌ | 297/1133 [9:17:15<25:40:43, 110.58s/it]
26%|██▋ | 298/1133 [9:18:14<22:02:00, 94.99s/it]
26%|██▋ | 299/1133 [9:18:47<17:41:39, 76.38s/it]
26%|██▋ | 300/1133 [9:19:34<15:40:48, 67.77s/it]
27%|██▋ | 301/1133 [9:20:04<12:59:38, 56.22s/it]
27%|██▋ | 302/1133 [9:20:44<11:52:35, 51.45s/it]
27%|██▋ | 303/1133 [9:21:24<11:05:28, 48.11s/it]
27%|██▋ | 304/1133 [9:23:29<16:23:36, 71.19s/it]
27%|██▋ | 305/1133 [9:26:15<22:53:54, 99.56s/it]
27%|██▋ | 306/1133 [9:28:09<23:51:59, 103.89s/it]
27%|██▋ | 307/1133 [9:29:23<21:44:07, 94.73s/it]
27%|██▋ | 308/1133 [9:31:13<22:46:04, 99.35s/it]
27%|██▋ | 309/1133 [9:33:03<23:29:18, 102.62s/it]
27%|██▋ | 310/1133 [9:33:36<18:41:04, 81.73s/it]
27%|██▋ | 311/1133 [9:35:26<20:37:08, 90.30s/it]
28%|██▊ | 312/1133 [9:37:42<23:44:18, 104.09s/it]
28%|██▊ | 313/1133 [9:39:22<23:23:06, 102.67s/it]
28%|██▊ | 314/1133 [9:40:35<21:21:23, 93.87s/it]
28%|██▊ | 315/1133 [9:45:00<32:57:41, 145.06s/it]
28%|██▊ | 316/1133 [9:46:09<27:47:31, 122.46s/it]
28%|██▊ | 317/1133 [9:48:00<26:55:41, 118.80s/it]
28%|██▊ | 318/1133 [9:48:36<21:19:06, 94.17s/it]
28%|██▊ | 319/1133 [9:52:32<30:54:08, 136.67s/it]
28%|██▊ | 320/1133 [9:54:23<29:04:50, 128.77s/it]
28%|██▊ | 321/1133 [9:55:18<24:03:23, 106.65s/it]
28%|██▊ | 322/1133 [9:56:16<20:47:08, 92.27s/it]
29%|██▊ | 323/1133 [9:57:52<20:58:43, 93.24s/it]
29%|██▊ | 324/1133 [9:59:53<22:51:03, 101.69s/it]
29%|██▊ | 325/1133 [10:01:29<22:24:17, 99.82s/it]
29%|██▉ | 326/1133 [10:02:24<19:21:39, 86.37s/it]
29%|██▉ | 327/1133 [10:06:30<30:06:45, 134.50s/it]
29%|██▉ | 328/1133 [10:11:12<39:57:49, 178.72s/it]
29%|██▉ | 329/1133 [10:13:59<39:05:32, 175.04s/it]
29%|██▉ | 330/1133 [10:14:35<29:46:50, 133.51s/it]
29%|██▉ | 331/1133 [10:16:07<26:57:35, 121.02s/it]
29%|██▉ | 332/1133 [10:17:17<23:29:51, 105.61s/it]
29%|██▉ | 333/1133 [10:19:03<23:31:31, 105.86s/it]
29%|██▉ | 334/1133 [10:22:53<31:43:00, 142.90s/it]
30%|██▉ | 335/1133 [10:24:21<28:02:12, 126.48s/it]
30%|██▉ | 336/1133 [10:25:45<25:12:53, 113.89s/it]
30%|██▉ | 337/1133 [10:26:55<22:14:55, 100.62s/it]
30%|██▉ | 338/1133 [10:29:15<24:49:04, 112.38s/it]
30%|██▉ | 339/1133 [10:31:50<27:35:40, 125.11s/it]
30%|███ | 340/1133 [10:32:59<23:54:03, 108.50s/it]
30%|███ | 341/1133 [10:35:27<26:26:29, 120.19s/it]
30%|███ | 342/1133 [10:36:37<23:04:45, 105.04s/it]
30%|███ | 343/1133 [10:37:28<19:30:46, 88.92s/it]
30%|███ | 344/1133 [10:40:26<25:19:51, 115.58s/it]
30%|███ | 345/1133 [10:41:39<22:31:51, 102.93s/it]
31%|███ | 346/1133 [10:52:17<57:36:15, 263.50s/it]
31%|███ | 347/1133 [10:52:54<42:40:13, 195.44s/it]
31%|███ | 348/1133 [10:54:40<36:48:02, 168.77s/it]
31%|███ | 349/1133 [10:54:51<26:26:46, 121.44s/it]
31%|███ | 350/1133 [10:57:08<27:22:33, 125.87s/it]
31%|███ | 351/1133 [10:57:52<22:00:16, 101.30s/it]
31%|███ | 352/1133 [10:59:16<20:52:50, 96.25s/it]
31%|███ | 353/1133 [11:02:29<27:09:28, 125.34s/it]
31%|███ | 354/1133 [11:03:50<24:13:34, 111.96s/it]
31%|███▏ | 355/1133 [11:04:45<20:30:05, 94.87s/it]
31%|███▏ | 356/1133 [11:05:47<18:22:11, 85.11s/it]
32%|███▏ | 357/1133 [11:08:11<22:08:45, 102.74s/it]
32%|███▏ | 358/1133 [11:10:05<22:51:03, 106.15s/it]
32%|███▏ | 359/1133 [11:10:49<18:48:50, 87.51s/it]
32%|███▏ | 360/1133 [11:13:06<21:55:27, 102.11s/it]
32%|███▏ | 361/1133 [11:15:07<23:07:56, 107.87s/it]
32%|███▏ | 362/1133 [11:16:06<19:56:28, 93.11s/it]
32%|███▏ | 363/1133 [11:16:46<16:31:46, 77.28s/it]
32%|███▏ | 364/1133 [11:17:37<14:50:34, 69.49s/it]
32%|███▏ | 365/1133 [11:18:10<12:29:13, 58.53s/it]
32%|███▏ | 366/1133 [11:19:01<12:00:46, 56.38s/it]
32%|███▏ | 367/1133 [11:22:03<19:58:55, 93.91s/it]
32%|███▏ | 368/1133 [11:23:13<18:24:50, 86.65s/it]
33%|███▎ | 369/1133 [11:24:15<16:50:35, 79.37s/it]
33%|███▎ | 370/1133 [11:24:55<14:20:19, 67.65s/it]
33%|███▎ | 371/1133 [11:25:14<11:11:13, 52.85s/it]
33%|███▎ | 372/1133 [11:31:56<33:21:39, 157.82s/it]
33%|███▎ | 373/1133 [11:33:47<30:18:36, 143.57s/it]
33%|███▎ | 374/1133 [11:34:27<23:44:16, 112.59s/it]
33%|███▎ | 375/1133 [11:35:04<18:54:38, 89.81s/it]
33%|███▎ | 376/1133 [11:36:17<17:51:15, 84.91s/it]
33%|███▎ | 377/1133 [11:37:27<16:52:35, 80.36s/it]
33%|███▎ | 378/1133 [11:39:25<19:12:13, 91.57s/it]
33%|███▎ | 379/1133 [11:40:16<16:39:11, 79.51s/it]
34%|███▎ | 380/1133 [11:41:11<15:05:49, 72.18s/it]
34%|███▎ | 381/1133 [11:44:27<22:48:03, 109.15s/it]
34%|███▎ | 382/1133 [11:46:13<22:37:01, 108.42s/it]
34%|███▍ | 383/1133 [11:49:01<26:18:22, 126.27s/it]
34%|███▍ | 384/1133 [11:50:52<25:17:09, 121.53s/it]
34%|███▍ | 385/1133 [11:55:23<34:33:41, 166.34s/it]
34%|███▍ | 386/1133 [12:02:21<50:12:20, 241.95s/it]
34%|███▍ | 387/1133 [12:03:27<39:12:16, 189.19s/it]
34%|███▍ | 388/1133 [12:04:40<31:57:56, 154.46s/it]
34%|███▍ | 389/1133 [12:06:42<29:52:33, 144.56s/it]
34%|███▍ | 390/1133 [12:08:14<26:34:15, 128.74s/it]
35%|███▍ | 391/1133 [12:09:12<22:12:33, 107.75s/it]
35%|███▍ | 392/1133 [12:11:47<25:05:47, 121.93s/it]
35%|███▍ | 393/1133 [12:15:56<32:50:48, 159.80s/it]
35%|███▍ | 394/1133 [12:17:17<27:56:43, 136.13s/it]
35%|███▍ | 395/1133 [12:21:07<33:40:52, 164.30s/it]
35%|███▍ | 396/1133 [12:26:50<44:36:24, 217.89s/it]
35%|███▌ | 397/1133 [12:27:59<35:27:58, 173.48s/it]
35%|███▌ | 398/1133 [12:30:28<33:52:54, 165.95s/it]
35%|███▌ | 399/1133 [12:31:41<28:10:57, 138.23s/it]
35%|███▌ | 400/1133 [12:33:32<26:27:19, 129.93s/it]
35%|███▌ | 401/1133 [12:34:23<21:37:49, 106.38s/it]
35%|███▌ | 402/1133 [12:35:22<18:42:07, 92.10s/it]
36%|███▌ | 403/1133 [12:37:12<19:47:15, 97.58s/it]
36%|███▌ | 404/1133 [12:38:37<18:58:22, 93.69s/it]
36%|███▌ | 405/1133 [12:40:05<18:37:16, 92.08s/it]
36%|███▌ | 406/1133 [12:41:12<17:01:35, 84.31s/it]
36%|███▌ | 407/1133 [12:42:40<17:14:40, 85.51s/it]
36%|███▌ | 408/1133 [12:43:42<15:49:52, 78.61s/it]
36%|███▌ | 409/1133 [12:46:14<20:12:08, 100.45s/it]
36%|███▌ | 410/1133 [12:47:35<19:00:11, 94.62s/it]
36%|███▋ | 411/1133 [12:50:38<24:17:02, 121.08s/it]
36%|███▋ | 412/1133 [12:52:40<24:17:53, 121.32s/it]
36%|███▋ | 413/1133 [12:54:41<24:17:09, 121.43s/it]
37%|███▋ | 414/1133 [12:55:07<18:31:02, 92.72s/it]
37%|███▋ | 415/1133 [12:57:55<22:58:46, 115.22s/it]
37%|███▋ | 416/1133 [13:01:22<28:25:34, 142.73s/it]
37%|███▋ | 417/1133 [13:02:06<22:30:14, 113.15s/it]
37%|███▋ | 418/1133 [13:03:19<20:07:13, 101.31s/it]
37%|███▋ | 419/1133 [13:05:36<22:12:14, 111.95s/it]
37%|███▋ | 420/1133 [13:05:51<16:23:42, 82.78s/it]
37%|███▋ | 421/1133 [13:07:49<18:28:31, 93.42s/it]
37%|███▋ | 422/1133 [13:09:07<17:30:56, 88.69s/it]
37%|███▋ | 423/1133 [13:10:43<17:55:12, 90.86s/it]
37%|███▋ | 424/1133 [13:13:07<21:02:56, 106.88s/it]
38%|███▊ | 425/1133 [13:15:20<22:35:29, 114.87s/it]
38%|███▊ | 426/1133 [13:17:19<22:45:56, 115.92s/it]
38%|███▊ | 427/1133 [13:18:07<18:44:02, 95.53s/it]
38%|███▊ | 428/1133 [13:20:09<20:15:49, 103.47s/it]
38%|███▊ | 429/1133 [13:21:23<18:30:04, 94.61s/it]
38%|███▊ | 430/1133 [13:23:44<21:11:17, 108.50s/it]
38%|███▊ | 431/1133 [13:24:46<18:28:51, 94.77s/it]
38%|███▊ | 432/1133 [13:27:34<22:40:50, 116.48s/it]
38%|███▊ | 433/1133 [13:28:07<17:47:16, 91.48s/it]
38%|███▊ | 434/1133 [13:30:54<22:12:04, 114.34s/it]
38%|███▊ | 435/1133 [13:34:21<27:32:44, 142.07s/it]
38%|███▊ | 436/1133 [13:37:40<30:48:29, 159.12s/it]
39%|███▊ | 437/1133 [13:40:27<31:14:11, 161.57s/it]
39%|███▊ | 438/1133 [13:41:45<26:18:55, 136.31s/it]
39%|███▊ | 439/1133 [13:43:32<24:35:06, 127.53s/it]
39%|███▉ | 440/1133 [13:44:09<19:18:36, 100.31s/it]
39%|███▉ | 441/1133 [13:44:53<16:02:59, 83.50s/it]
39%|███▉ | 442/1133 [13:46:14<15:53:28, 82.79s/it]
39%|███▉ | 443/1133 [13:47:35<15:46:21, 82.29s/it]
39%|███▉ | 444/1133 [13:49:00<15:54:05, 83.09s/it]
39%|███▉ | 445/1133 [13:50:17<15:33:14, 81.39s/it]
39%|███▉ | 446/1133 [13:51:09<13:49:20, 72.43s/it]
39%|███▉ | 447/1133 [13:52:15<13:27:34, 70.63s/it]
40%|███▉ | 448/1133 [13:54:10<15:57:08, 83.84s/it]
40%|███▉ | 449/1133 [13:56:20<18:31:59, 97.54s/it]
40%|███▉ | 450/1133 [13:59:03<22:16:34, 117.42s/it]
40%|███▉ | 451/1133 [13:59:40<17:39:53, 93.25s/it]
40%|███▉ | 452/1133 [14:01:50<19:43:38, 104.29s/it]
40%|███▉ | 453/1133 [14:02:49<17:07:57, 90.70s/it]
40%|████ | 454/1133 [14:03:52<15:31:21, 82.30s/it]
40%|████ | 455/1133 [14:05:06<15:00:59, 79.73s/it]
40%|████ | 456/1133 [14:07:11<17:35:24, 93.54s/it]
40%|████ | 457/1133 [14:08:59<18:19:36, 97.60s/it]
40%|████ | 458/1133 [14:11:54<22:40:17, 120.91s/it]
41%|████ | 459/1133 [14:13:41<21:51:32, 116.75s/it]
41%|████ | 460/1133 [14:14:32<18:10:14, 97.20s/it]
41%|████ | 461/1133 [14:18:02<24:25:58, 130.89s/it]
41%|████ | 462/1133 [14:20:04<23:53:37, 128.19s/it]
41%|████ | 463/1133 [14:20:55<19:34:50, 105.21s/it]
41%|████ | 464/1133 [14:22:54<20:16:54, 109.14s/it]
41%|████ | 465/1133 [14:24:30<19:31:20, 105.21s/it]
41%|████ | 466/1133 [14:27:52<24:53:32, 134.35s/it]
41%|████ | 467/1133 [14:28:40<20:03:19, 108.41s/it]
41%|████▏ | 468/1133 [14:29:24<16:28:00, 89.14s/it]
41%|████▏ | 469/1133 [14:31:53<19:43:18, 106.93s/it]
41%|████▏ | 470/1133 [14:33:40<19:42:03, 106.97s/it]
42%|████▏ | 471/1133 [14:35:53<21:06:21, 114.78s/it]
42%|████▏ | 472/1133 [14:38:52<24:36:17, 134.00s/it]
42%|████▏ | 473/1133 [14:40:01<21:02:35, 114.78s/it]
42%|████▏ | 474/1133 [14:40:49<17:20:06, 94.70s/it]
42%|████▏ | 475/1133 [14:42:25<17:22:04, 95.02s/it]
42%|████▏ | 476/1133 [14:44:46<19:49:37, 108.64s/it]
42%|████▏ | 477/1133 [14:47:17<22:08:26, 121.50s/it]
42%|████▏ | 478/1133 [14:47:54<17:29:03, 96.10s/it]
42%|████▏ | 479/1133 [14:50:33<20:52:41, 114.93s/it]
42%|████▏ | 480/1133 [14:57:17<36:36:03, 201.78s/it]
42%|████▏ | 481/1133 [14:57:47<27:10:43, 150.07s/it]
43%|████▎ | 482/1133 [14:59:34<24:48:17, 137.17s/it]
43%|████▎ | 483/1133 [15:00:14<19:31:47, 108.16s/it]
43%|████▎ | 484/1133 [15:02:05<19:38:18, 108.93s/it]
43%|████▎ | 485/1133 [15:05:27<24:37:14, 136.78s/it]
43%|████▎ | 486/1133 [15:06:22<20:11:11, 112.32s/it]
43%|████▎ | 487/1133 [15:09:52<25:26:51, 141.81s/it]
43%|████▎ | 488/1133 [15:11:47<23:56:13, 133.60s/it]
43%|████▎ | 489/1133 [15:12:46<19:53:30, 111.20s/it]
43%|████▎ | 490/1133 [15:13:15<15:28:35, 86.65s/it]
43%|████▎ | 491/1133 [15:15:17<17:20:27, 97.24s/it]
43%|████▎ | 492/1133 [15:17:19<18:37:23, 104.59s/it]
44%|████▎ | 493/1133 [15:18:21<16:21:05, 91.98s/it]
44%|████▎ | 494/1133 [15:18:43<12:36:06, 71.00s/it]
44%|████▎ | 495/1133 [15:19:46<12:08:03, 68.47s/it]
44%|████▍ | 496/1133 [15:22:52<18:22:14, 103.82s/it]
44%|████▍ | 497/1133 [15:24:28<17:55:00, 101.42s/it]
44%|████▍ | 498/1133 [15:26:00<17:23:52, 98.63s/it]
44%|████▍ | 499/1133 [15:28:55<21:23:26, 121.46s/it]
44%|████▍ | 500/1133 [15:32:10<25:15:28, 143.65s/it]
44%|████▍ | 501/1133 [15:36:27<31:11:23, 177.66s/it]
44%|████▍ | 502/1133 [15:37:52<26:15:22, 149.80s/it]
44%|████▍ | 503/1133 [15:40:36<26:55:41, 153.88s/it]
44%|████▍ | 504/1133 [15:43:04<26:35:50, 152.23s/it]
45%|████▍ | 505/1133 [15:43:56<21:17:08, 122.02s/it]
45%|████▍ | 506/1133 [15:45:06<18:31:51, 106.40s/it]
45%|████▍ | 507/1133 [15:48:02<22:09:03, 127.39s/it]
45%|████▍ | 508/1133 [15:55:17<38:07:31, 219.60s/it]
45%|████▍ | 509/1133 [15:57:52<34:43:33, 200.34s/it]
45%|████▌ | 510/1133 [15:58:33<26:22:09, 152.37s/it]
45%|████▌ | 511/1133 [15:59:31<21:28:53, 124.33s/it]
45%|████▌ | 512/1133 [16:00:19<17:29:14, 101.38s/it]
45%|████▌ | 513/1133 [16:04:13<24:18:24, 141.14s/it]
45%|████▌ | 514/1133 [16:06:04<22:41:04, 131.93s/it]
45%|████▌ | 515/1133 [16:08:54<24:37:42, 143.47s/it]
46%|████▌ | 516/1133 [16:11:03<23:50:41, 139.13s/it]
46%|████▌ | 517/1133 [16:12:20<20:37:37, 120.55s/it]
46%|████▌ | 518/1133 [16:13:15<17:14:11, 100.90s/it]
46%|████▌ | 519/1133 [16:17:32<25:12:30, 147.80s/it]
46%|████▌ | 520/1133 [16:19:38<24:00:41, 141.01s/it]
46%|████▌ | 521/1133 [16:21:21<22:02:28, 129.65s/it]
46%|████▌ | 522/1133 [16:21:39<16:20:12, 96.26s/it]
46%|████▌ | 523/1133 [16:24:03<18:43:26, 110.50s/it]
46%|████▌ | 524/1133 [16:27:44<24:18:06, 143.66s/it]
46%|████▋ | 525/1133 [16:29:05<21:04:53, 124.82s/it]
46%|████▋ | 526/1133 [16:30:15<18:15:42, 108.31s/it]
47%|████▋ | 527/1133 [16:33:29<22:36:29, 134.31s/it]
47%|████▋ | 528/1133 [16:34:02<17:27:50, 103.92s/it]
47%|████▋ | 529/1133 [16:38:38<26:03:35, 155.32s/it]
47%|████▋ | 530/1133 [16:39:18<20:14:27, 120.84s/it]
47%|████▋ | 531/1133 [16:40:43<18:23:06, 109.94s/it]
47%|████▋ | 532/1133 [16:41:08<14:08:01, 84.66s/it]
47%|████▋ | 533/1133 [16:42:51<15:01:35, 90.16s/it]
47%|████▋ | 534/1133 [16:43:43<13:04:03, 78.54s/it]
47%|████▋ | 535/1133 [16:45:00<12:58:33, 78.12s/it]
47%|████▋ | 536/1133 [16:48:53<20:39:41, 124.59s/it]
47%|████▋ | 537/1133 [16:50:40<19:44:14, 119.22s/it]
47%|████▋ | 538/1133 [16:53:20<21:44:57, 131.59s/it]
48%|████▊ | 539/1133 [16:54:59<20:07:05, 121.93s/it]
48%|████▊ | 540/1133 [16:55:43<16:14:08, 98.56s/it]
48%|████▊ | 541/1133 [16:59:17<21:51:33, 132.93s/it]
48%|████▊ | 542/1133 [17:00:30<18:53:37, 115.09s/it]
48%|████▊ | 543/1133 [17:01:07<15:00:28, 91.57s/it]
48%|████▊ | 544/1133 [17:03:42<18:05:10, 110.54s/it]
48%|████▊ | 545/1133 [17:05:17<17:19:58, 106.12s/it]
48%|████▊ | 546/1133 [17:06:42<16:14:55, 99.65s/it]
48%|████▊ | 547/1133 [17:08:10<15:39:54, 96.24s/it]
48%|████▊ | 548/1133 [17:09:02<13:27:03, 82.78s/it]
48%|████▊ | 549/1133 [17:10:26<13:31:06, 83.33s/it]
49%|████▊ | 550/1133 [17:12:09<14:27:07, 89.24s/it]
49%|████▊ | 551/1133 [17:14:22<16:31:56, 102.26s/it]
49%|████▊ | 552/1133 [17:14:48<12:47:52, 79.30s/it]
49%|████▉ | 553/1133 [17:17:11<15:53:35, 98.65s/it]
49%|████▉ | 554/1133 [17:18:06<13:45:48, 85.58s/it]
49%|████▉ | 555/1133 [17:18:54<11:54:53, 74.21s/it]
49%|████▉ | 556/1133 [17:19:49<10:58:35, 68.48s/it]
49%|████▉ | 557/1133 [17:24:58<22:29:05, 140.53s/it]
49%|████▉ | 558/1133 [17:26:48<21:00:10, 131.50s/it]
49%|████▉ | 559/1133 [17:29:05<21:12:06, 132.97s/it]
49%|████▉ | 560/1133 [17:31:10<20:47:23, 130.62s/it]
50%|████▉ | 561/1133 [17:31:36<15:45:03, 99.13s/it]
50%|████▉ | 562/1133 [17:32:31<13:37:43, 85.92s/it]
50%|████▉ | 563/1133 [17:33:18<11:47:29, 74.47s/it]
50%|████▉ | 564/1133 [17:34:50<12:36:09, 79.73s/it]
50%|████▉ | 565/1133 [17:37:35<16:34:49, 105.09s/it]
50%|████▉ | 566/1133 [17:38:52<15:13:55, 96.71s/it]
50%|█████ | 567/1133 [17:40:16<14:37:55, 93.07s/it]
50%|█████ | 568/1133 [17:40:42<11:25:56, 72.84s/it]
50%|█████ | 569/1133 [17:41:15<9:32:24, 60.89s/it]
50%|█████ | 570/1133 [17:42:58<11:29:47, 73.51s/it]
50%|█████ | 571/1133 [17:44:08<11:18:07, 72.40s/it]
50%|█████ | 572/1133 [17:44:26<8:45:16, 56.18s/it]
51%|█████ | 573/1133 [17:45:58<10:24:47, 66.94s/it]
51%|█████ | 574/1133 [17:49:01<15:46:33, 101.60s/it]
51%|█████ | 575/1133 [17:49:52<13:24:57, 86.55s/it]
51%|█████ | 576/1133 [17:52:27<16:33:51, 107.06s/it]
51%|█████ | 577/1133 [17:55:02<18:45:14, 121.43s/it]
51%|█████ | 578/1133 [17:57:23<19:37:37, 127.31s/it]
51%|█████ | 579/1133 [17:58:59<18:07:49, 117.82s/it]
51%|█████ | 580/1133 [18:01:38<20:00:32, 130.26s/it]
51%|█████▏ | 581/1133 [18:03:40<19:34:43, 127.69s/it]
51%|█████▏ | 582/1133 [18:05:23<18:25:03, 120.33s/it]
51%|█████▏ | 583/1133 [18:05:56<14:22:58, 94.14s/it]
52%|█████▏ | 584/1133 [18:08:55<18:14:56, 119.67s/it]
52%|█████▏ | 585/1133 [18:11:12<18:58:57, 124.70s/it]
52%|█████▏ | 586/1133 [18:12:51<17:47:46, 117.12s/it]
52%|█████▏ | 587/1133 [18:14:49<17:48:03, 117.37s/it]
52%|█████▏ | 588/1133 [18:16:02<15:46:45, 104.23s/it]
52%|█████▏ | 589/1133 [18:17:31<15:01:49, 99.47s/it]
52%|█████▏ | 590/1133 [18:18:19<12:39:48, 83.96s/it]
52%|█████▏ | 591/1133 [18:21:33<17:38:59, 117.23s/it]
52%|█████▏ | 592/1133 [18:22:36<15:08:54, 100.80s/it]
52%|█████▏ | 593/1133 [18:24:08<14:43:36, 98.18s/it]
52%|█████▏ | 594/1133 [18:24:52<12:16:12, 81.95s/it]
53%|█████▎ | 595/1133 [18:30:53<24:44:47, 165.59s/it]
53%|█████▎ | 596/1133 [18:36:23<32:02:56, 214.85s/it]
53%|█████▎ | 597/1133 [18:37:55<26:30:26, 178.03s/it]
53%|█████▎ | 598/1133 [18:38:46<20:48:54, 140.06s/it]
53%|█████▎ | 599/1133 [18:39:56<17:39:15, 119.02s/it]
53%|█████▎ | 600/1133 [18:42:36<19:25:45, 131.23s/it]
53%|█████▎ | 601/1133 [18:45:19<20:48:15, 140.78s/it]
53%|█████▎ | 602/1133 [18:46:29<17:37:36, 119.50s/it]
53%|█████▎ | 603/1133 [18:48:38<18:00:47, 122.35s/it]
53%|█████▎ | 604/1133 [18:50:02<16:19:03, 111.05s/it]
53%|█████▎ | 605/1133 [18:51:42<15:46:17, 107.53s/it]
53%|█████▎ | 606/1133 [18:52:41<13:36:13, 92.93s/it]
54%|█████▎ | 607/1133 [18:54:46<14:59:33, 102.61s/it]
54%|█████▎ | 608/1133 [18:56:29<14:59:07, 102.76s/it]
54%|█████▍ | 609/1133 [18:58:16<15:08:18, 104.00s/it]
54%|█████▍ | 610/1133 [18:59:07<12:49:09, 88.24s/it]
54%|█████▍ | 611/1133 [19:01:41<15:37:33, 107.76s/it]
54%|█████▍ | 612/1133 [19:03:35<15:52:29, 109.69s/it]
54%|█████▍ | 613/1133 [19:08:07<22:53:28, 158.48s/it]
54%|█████▍ | 614/1133 [19:09:39<19:58:24, 138.54s/it]
54%|█████▍ | 615/1133 [19:10:45<16:48:42, 116.84s/it]
54%|█████▍ | 616/1133 [19:12:43<16:49:49, 117.19s/it]
54%|█████▍ | 617/1133 [19:13:39<14:07:45, 98.58s/it]
55%|█████▍ | 618/1133 [19:14:12<11:17:34, 78.94s/it]
55%|█████▍ | 619/1133 [19:15:07<10:15:14, 71.82s/it]
55%|█████▍ | 620/1133 [19:22:21<25:43:53, 180.57s/it]
55%|█████▍ | 621/1133 [19:23:42<21:26:04, 150.71s/it]
55%|█████▍ | 622/1133 [19:26:56<23:14:45, 163.77s/it]
55%|█████▍ | 623/1133 [19:28:21<19:50:57, 140.11s/it]
55%|█████▌ | 624/1133 [19:29:02<15:35:00, 110.22s/it]
55%|█████▌ | 625/1133 [19:29:53<13:04:17, 92.63s/it]
55%|█████▌ | 626/1133 [19:30:56<11:46:51, 83.65s/it]
55%|█████▌ | 627/1133 [19:33:21<14:21:25, 102.15s/it]
55%|█████▌ | 628/1133 [19:35:23<15:09:21, 108.04s/it]
56%|█████▌ | 629/1133 [19:40:04<22:22:12, 159.79s/it]
56%|█████▌ | 630/1133 [19:40:55<17:47:13, 127.30s/it]
56%|█████▌ | 631/1133 [19:42:02<15:12:02, 109.01s/it]
56%|█████▌ | 632/1133 [19:42:42<12:18:28, 88.44s/it]
56%|█████▌ | 633/1133 [19:45:10<14:46:05, 106.33s/it]
56%|█████▌ | 634/1133 [19:45:58<12:18:25, 88.79s/it]
56%|█████▌ | 635/1133 [19:47:04<11:21:06, 82.06s/it]
56%|█████▌ | 636/1133 [19:47:37<9:18:06, 67.38s/it]
56%|█████▌ | 637/1133 [19:48:36<8:56:10, 64.86s/it]
56%|█████▋ | 638/1133 [19:51:44<13:58:04, 101.58s/it]
56%|█████▋ | 639/1133 [19:52:02<10:30:53, 76.63s/it]
56%|█████▋ | 640/1133 [19:52:57<9:36:55, 70.21s/it]
57%|█████▋ | 641/1133 [19:54:26<10:20:51, 75.71s/it]
57%|█████▋ | 642/1133 [19:59:33<19:48:04, 145.18s/it]
57%|█████▋ | 643/1133 [20:01:46<19:15:46, 141.52s/it]
57%|█████▋ | 644/1133 [20:03:48<18:25:38, 135.66s/it]
57%|█████▋ | 645/1133 [20:05:50<17:49:42, 131.52s/it]
57%|█████▋ | 646/1133 [20:07:18<16:02:42, 118.61s/it]
57%|█████▋ | 647/1133 [20:08:10<13:17:55, 98.51s/it]
57%|█████▋ | 648/1133 [20:10:23<14:39:56, 108.86s/it]
57%|█████▋ | 649/1133 [20:11:15<12:19:25, 91.66s/it]
57%|█████▋ | 650/1133 [20:16:54<22:15:14, 165.87s/it]
57%|█████▋ | 651/1133 [20:17:27<16:52:27, 126.03s/it]
58%|█████▊ | 652/1133 [20:18:22<14:00:03, 104.79s/it]
58%|█████▊ | 653/1133 [20:19:02<11:23:53, 85.49s/it]
58%|█████▊ | 654/1133 [20:20:35<11:38:23, 87.48s/it]
58%|█████▊ | 655/1133 [20:23:06<14:10:12, 106.72s/it]
58%|█████▊ | 656/1133 [20:23:36<11:03:59, 83.52s/it]
58%|█████▊ | 657/1133 [20:27:41<17:28:27, 132.16s/it]
58%|█████▊ | 658/1133 [20:30:10<18:06:22, 137.23s/it]
58%|█████▊ | 659/1133 [20:30:43<13:57:20, 105.99s/it]
58%|█████▊ | 660/1133 [20:31:05<10:37:04, 80.81s/it]
58%|█████▊ | 661/1133 [20:32:38<11:02:33, 84.22s/it]
58%|█████▊ | 662/1133 [20:34:10<11:20:00, 86.63s/it]
59%|█████▊ | 663/1133 [20:35:23<10:48:08, 82.74s/it]
59%|█████▊ | 664/1133 [20:37:10<11:43:29, 90.00s/it]
59%|█████▊ | 665/1133 [20:38:39<11:38:34, 89.56s/it]
59%|█████▉ | 666/1133 [20:40:19<12:00:40, 92.59s/it]
59%|█████▉ | 667/1133 [20:41:51<11:58:32, 92.52s/it]
59%|█████▉ | 668/1133 [20:43:20<11:47:49, 91.33s/it]
59%|█████▉ | 669/1133 [20:44:00<9:48:20, 76.08s/it]
59%|█████▉ | 670/1133 [20:46:06<11:41:42, 90.93s/it]
59%|█████▉ | 671/1133 [20:47:01<10:17:37, 80.21s/it]
59%|█████▉ | 672/1133 [20:47:56<9:18:44, 72.72s/it]
59%|█████▉ | 673/1133 [20:51:45<15:16:58, 119.61s/it]
59%|█████▉ | 674/1133 [20:53:36<14:54:45, 116.96s/it]
60%|█████▉ | 675/1133 [20:55:30<14:46:49, 116.18s/it]
60%|█████▉ | 676/1133 [20:56:36<12:50:44, 101.19s/it]
60%|█████▉ | 677/1133 [20:57:54<11:54:47, 94.05s/it]
60%|█████▉ | 678/1133 [20:59:15<11:23:48, 90.17s/it]
60%|█████▉ | 679/1133 [21:00:14<10:11:27, 80.81s/it]
60%|██████ | 680/1133 [21:01:28<9:54:04, 78.68s/it]
60%|██████ | 681/1133 [21:02:49<9:58:04, 79.39s/it]
60%|██████ | 682/1133 [21:03:55<9:27:20, 75.48s/it]
60%|██████ | 683/1133 [21:06:31<12:28:01, 99.74s/it]
60%|██████ | 684/1133 [21:07:23<10:38:05, 85.27s/it]
60%|██████ | 685/1133 [21:09:02<11:08:45, 89.57s/it]
61%|██████ | 686/1133 [21:09:28<8:44:35, 70.41s/it]
61%|██████ | 687/1133 [21:11:37<10:54:40, 88.07s/it]
61%|██████ | 688/1133 [21:12:14<8:59:05, 72.69s/it]
61%|██████ | 689/1133 [21:14:16<10:47:00, 87.43s/it]
61%|██████ | 690/1133 [21:14:57<9:01:29, 73.34s/it]
61%|██████ | 691/1133 [21:15:22<7:15:03, 59.06s/it]
61%|██████ | 692/1133 [21:16:54<8:27:10, 69.00s/it]
61%|██████ | 693/1133 [21:19:07<10:46:39, 88.18s/it]
61%|██████▏ | 694/1133 [21:21:43<13:13:17, 108.42s/it]
61%|██████▏ | 695/1133 [21:23:52<13:57:02, 114.66s/it]
61%|██████▏ | 696/1133 [21:25:36<13:30:27, 111.27s/it]
62%|██████▏ | 697/1133 [21:27:56<14:32:06, 120.02s/it]
62%|██████▏ | 698/1133 [21:31:53<18:44:13, 155.07s/it]
62%|██████▏ | 699/1133 [21:32:56<15:21:03, 127.33s/it]
62%|██████▏ | 700/1133 [21:35:05<15:23:22, 127.95s/it]
62%|██████▏ | 701/1133 [21:37:14<15:24:17, 128.37s/it]
62%|██████▏ | 702/1133 [21:43:50<24:57:20, 208.45s/it]
62%|██████▏ | 703/1133 [21:45:40<21:23:53, 179.15s/it]
62%|██████▏ | 704/1133 [21:46:39<17:03:08, 143.10s/it]
62%|██████▏ | 705/1133 [21:48:30<15:51:26, 133.38s/it]
62%|██████▏ | 706/1133 [21:52:39<19:55:07, 167.93s/it]
62%|██████▏ | 707/1133 [21:54:11<17:11:02, 145.22s/it]
62%|██████▏ | 708/1133 [21:57:21<18:43:36, 158.63s/it]
63%|██████▎ | 709/1133 [21:58:38<15:48:51, 134.27s/it]
63%|██████▎ | 710/1133 [22:00:21<14:41:06, 124.98s/it]
63%|██████▎ | 711/1133 [22:02:16<14:16:33, 121.79s/it]
63%|██████▎ | 712/1133 [22:04:33<14:47:36, 126.50s/it]
63%|██████▎ | 713/1133 [22:05:25<12:08:03, 104.01s/it]
63%|██████▎ | 714/1133 [22:06:42<11:10:29, 96.01s/it]
63%|██████▎ | 715/1133 [22:07:52<10:14:31, 88.21s/it]
63%|██████▎ | 716/1133 [22:08:47<9:04:23, 78.33s/it]
63%|██████▎ | 717/1133 [22:09:28<7:44:19, 66.97s/it]
63%|██████▎ | 718/1133 [22:10:45<8:04:56, 70.11s/it]
63%|██████▎ | 719/1133 [22:11:52<7:55:57, 68.98s/it]
64%|██████▎ | 720/1133 [22:13:46<9:28:22, 82.57s/it]
64%|██████▎ | 721/1133 [22:14:34<8:15:28, 72.16s/it]
64%|██████▎ | 722/1133 [22:16:06<8:55:37, 78.19s/it]
64%|██████▍ | 723/1133 [22:18:08<10:23:47, 91.29s/it]
64%|██████▍ | 724/1133 [22:21:37<14:23:01, 126.60s/it]
64%|██████▍ | 725/1133 [22:25:27<17:51:55, 157.64s/it]
64%|██████▍ | 726/1133 [22:26:59<15:36:09, 138.01s/it]
64%|██████▍ | 727/1133 [22:28:17<13:30:47, 119.82s/it]
64%|██████▍ | 728/1133 [22:32:55<18:50:22, 167.46s/it]
64%|██████▍ | 729/1133 [22:35:39<18:40:08, 166.36s/it]
64%|██████▍ | 730/1133 [22:36:12<14:08:50, 126.38s/it]
65%|██████▍ | 731/1133 [22:37:41<12:50:35, 115.01s/it]
65%|██████▍ | 732/1133 [22:38:54<11:25:47, 102.61s/it]
65%|██████▍ | 733/1133 [22:41:19<12:48:36, 115.29s/it]
65%|██████▍ | 734/1133 [22:42:14<10:46:47, 97.26s/it]
65%|██████▍ | 735/1133 [22:46:07<15:15:18, 137.99s/it]
65%|██████▍ | 736/1133 [22:48:51<16:03:03, 145.55s/it]
65%|██████▌ | 737/1133 [22:49:46<13:01:50, 118.46s/it]
65%|██████▌ | 738/1133 [22:52:34<14:38:03, 133.38s/it]
65%|██████▌ | 739/1133 [22:53:03<11:11:04, 102.19s/it]
65%|██████▌ | 740/1133 [22:54:32<10:42:27, 98.08s/it]
65%|██████▌ | 741/1133 [22:55:46<9:53:08, 90.79s/it]
65%|██████▌ | 742/1133 [22:57:29<10:15:58, 94.52s/it]
66%|██████▌ | 743/1133 [22:58:50<9:48:08, 90.48s/it]
66%|██████▌ | 744/1133 [23:00:33<10:11:31, 94.32s/it]
66%|██████▌ | 745/1133 [23:03:44<13:17:44, 123.36s/it]
66%|██████▌ | 746/1133 [23:07:05<15:45:54, 146.65s/it]
66%|██████▌ | 747/1133 [23:08:08<13:01:14, 121.44s/it]
66%|██████▌ | 748/1133 [23:12:16<17:02:35, 159.36s/it]
66%|██████▌ | 749/1133 [23:14:33<16:17:21, 152.71s/it]
66%|██████▌ | 750/1133 [23:16:16<14:40:20, 137.91s/it]
66%|██████▋ | 751/1133 [23:17:38<12:49:30, 120.87s/it]
66%|██████▋ | 752/1133 [23:19:13<11:59:49, 113.36s/it]
66%|██████▋ | 753/1133 [23:20:46<11:17:40, 107.00s/it]
67%|██████▋ | 754/1133 [23:25:45<17:20:48, 164.77s/it]
67%|██████▋ | 755/1133 [23:28:44<17:44:01, 168.89s/it]
67%|██████▋ | 756/1133 [23:29:57<14:41:35, 140.31s/it]
67%|██████▋ | 757/1133 [23:31:11<12:34:00, 120.32s/it]
67%|██████▋ | 758/1133 [23:34:11<14:23:26, 138.15s/it]
67%|██████▋ | 759/1133 [23:35:47<13:02:12, 125.49s/it]
67%|██████▋ | 760/1133 [23:36:16<10:00:53, 96.66s/it]
67%|██████▋ | 761/1133 [23:38:52<11:48:47, 114.32s/it]
67%|██████▋ | 762/1133 [23:39:28<9:23:01, 91.06s/it]
67%|██████▋ | 763/1133 [23:40:49<9:03:02, 88.06s/it]
67%|██████▋ | 764/1133 [23:42:11<8:48:55, 86.00s/it]
68%|██████▊ | 765/1133 [23:43:39<8:52:10, 86.77s/it]
68%|██████▊ | 766/1133 [23:46:44<11:50:32, 116.17s/it]
68%|██████▊ | 767/1133 [23:48:46<11:59:04, 117.88s/it]
68%|██████▊ | 768/1133 [23:53:36<17:11:13, 169.52s/it]
68%|██████▊ | 769/1133 [23:56:54<18:00:54, 178.17s/it]
68%|██████▊ | 770/1133 [23:58:04<14:41:47, 145.75s/it]
68%|██████▊ | 771/1133 [23:59:51<13:29:22, 134.15s/it]
68%|██████▊ | 772/1133 [24:02:01<13:19:23, 132.86s/it]
68%|██████▊ | 773/1133 [24:03:48<12:30:33, 125.09s/it]
68%|██████▊ | 774/1133 [24:05:39<12:02:45, 120.80s/it]
68%|██████▊ | 775/1133 [24:13:40<22:45:07, 228.79s/it]
68%|██████▊ | 776/1133 [24:14:35<17:31:25, 176.71s/it]
69%|██████▊ | 777/1133 [24:16:22<15:24:23, 155.80s/it]
69%|██████▊ | 778/1133 [24:17:21<12:29:45, 126.72s/it]
69%|██████▉ | 779/1133 [24:17:46<9:28:51, 96.42s/it]
69%|██████▉ | 780/1133 [24:18:56<8:40:25, 88.46s/it]
69%|██████▉ | 781/1133 [24:22:34<12:25:50, 127.13s/it]
69%|██████▉ | 782/1133 [24:23:10<9:45:06, 100.02s/it]
69%|██████▉ | 783/1133 [24:26:40<12:54:18, 132.74s/it]
69%|██████▉ | 784/1133 [24:28:26<12:07:02, 124.99s/it]
69%|██████▉ | 785/1133 [24:29:40<10:35:36, 109.59s/it]
69%|██████▉ | 786/1133 [24:30:35<8:59:21, 93.26s/it]
69%|██████▉ | 787/1133 [24:34:04<12:18:24, 128.05s/it]
70%|██████▉ | 788/1133 [24:35:07<10:23:16, 108.39s/it]
70%|██████▉ | 789/1133 [24:35:29<7:52:51, 82.47s/it]
70%|██████▉ | 790/1133 [24:39:29<12:22:03, 129.81s/it]
70%|██████▉ | 791/1133 [24:41:05<11:21:38, 119.59s/it]
70%|██████▉ | 792/1133 [24:43:07<11:23:33, 120.27s/it]
70%|██████▉ | 793/1133 [24:48:11<16:33:43, 175.36s/it]
70%|███████ | 794/1133 [24:48:33<12:10:54, 129.36s/it]
70%|███████ | 795/1133 [24:49:21<9:50:57, 104.90s/it]
70%|███████ | 796/1133 [24:49:57<7:54:21, 84.46s/it]
70%|███████ | 797/1133 [24:51:22<7:53:12, 84.50s/it]
70%|███████ | 798/1133 [24:52:13<6:56:30, 74.60s/it]
71%|███████ | 799/1133 [24:53:46<7:24:25, 79.84s/it]
71%|███████ | 800/1133 [24:55:18<7:43:30, 83.51s/it]
71%|███████ | 801/1133 [24:56:39<7:37:59, 82.77s/it]
71%|███████ | 802/1133 [24:58:37<8:34:54, 93.34s/it]
71%|███████ | 803/1133 [25:00:05<8:25:10, 91.85s/it]
71%|███████ | 804/1133 [25:03:05<10:47:59, 118.18s/it]
71%|███████ | 805/1133 [25:04:52<10:27:32, 114.79s/it]
71%|███████ | 806/1133 [25:07:19<11:19:28, 124.67s/it]
71%|███████ | 807/1133 [25:08:22<9:36:04, 106.03s/it]
71%|███████▏ | 808/1133 [25:09:50<9:05:42, 100.74s/it]
71%|███████▏ | 809/1133 [25:11:19<8:44:00, 97.04s/it]
71%|███████▏ | 810/1133 [25:12:03<7:16:58, 81.17s/it]
72%|███████▏ | 811/1133 [25:12:40<6:04:08, 67.85s/it]
72%|███████▏ | 812/1133 [25:14:42<7:29:57, 84.11s/it]
72%|███████▏ | 813/1133 [25:16:10<7:35:25, 85.39s/it]
72%|███████▏ | 814/1133 [25:16:47<6:16:22, 70.79s/it]
72%|███████▏ | 815/1133 [25:20:55<10:58:04, 124.17s/it]
72%|███████▏ | 816/1133 [25:22:13<9:41:45, 110.11s/it]
72%|███████▏ | 817/1133 [25:23:04<8:07:18, 92.53s/it]
72%|███████▏ | 818/1133 [25:24:36<8:05:04, 92.40s/it]
72%|███████▏ | 819/1133 [25:26:23<8:26:31, 96.79s/it]
72%|███████▏ | 820/1133 [25:27:07<7:02:29, 80.99s/it]
72%|███████▏ | 821/1133 [25:27:30<5:29:13, 63.31s/it]
73%|███████▎ | 822/1133 [25:28:32<5:26:54, 63.07s/it]
73%|███████▎ | 823/1133 [25:31:11<7:55:02, 91.94s/it]
73%|███████▎ | 824/1133 [25:32:29<7:30:55, 87.56s/it]
73%|███████▎ | 825/1133 [25:33:16<6:28:16, 75.64s/it]
73%|███████▎ | 826/1133 [25:36:27<9:22:47, 109.99s/it]
73%|███████▎ | 827/1133 [25:37:18<7:51:21, 92.42s/it]
73%|███████▎ | 828/1133 [25:37:55<6:24:54, 75.72s/it]
73%|███████▎ | 829/1133 [25:42:41<11:44:16, 139.00s/it]
73%|███████▎ | 830/1133 [25:45:52<13:00:08, 154.48s/it]
73%|███████▎ | 831/1133 [25:48:24<12:53:44, 153.72s/it]
73%|███████▎ | 832/1133 [25:49:41<10:56:11, 130.80s/it]
74%|███████▎ | 833/1133 [25:54:37<15:01:32, 180.31s/it]
74%|███████▎ | 834/1133 [25:58:53<16:51:14, 202.92s/it]
74%|███████▎ | 835/1133 [26:00:51<14:41:23, 177.46s/it]
74%|███████▍ | 836/1133 [26:03:26<14:05:04, 170.72s/it]
74%|███████▍ | 837/1133 [26:09:54<19:24:33, 236.06s/it]
74%|███████▍ | 838/1133 [26:13:09<18:19:45, 223.68s/it]
74%|███████▍ | 839/1133 [26:14:41<15:02:32, 184.19s/it]
74%|███████▍ | 840/1133 [26:17:25<14:29:05, 177.97s/it]
74%|███████▍ | 841/1133 [26:18:46<12:04:41, 148.91s/it]
74%|███████▍ | 842/1133 [26:21:53<12:57:46, 160.37s/it]
74%|███████▍ | 843/1133 [26:22:59<10:38:30, 132.11s/it]
74%|███████▍ | 844/1133 [26:25:19<10:48:07, 134.56s/it]
75%|███████▍ | 845/1133 [26:27:03<10:00:38, 125.13s/it]
75%|███████▍ | 846/1133 [26:29:15<10:09:40, 127.46s/it]
75%|███████▍ | 847/1133 [26:30:59<9:32:59, 120.21s/it]
75%|███████▍ | 848/1133 [26:33:23<10:04:49, 127.33s/it]
75%|███████▍ | 849/1133 [26:33:56<7:48:51, 99.06s/it]
75%|███████▌ | 850/1133 [26:36:31<9:06:45, 115.92s/it]
75%|███████▌ | 851/1133 [26:36:57<6:57:36, 88.85s/it]
75%|███████▌ | 852/1133 [26:38:36<7:10:55, 92.01s/it]
75%|███████▌ | 853/1133 [26:40:23<7:30:16, 96.49s/it]
75%|███████▌ | 854/1133 [26:41:51<7:17:26, 94.07s/it]
75%|███████▌ | 855/1133 [26:43:53<7:54:26, 102.40s/it]
76%|███████▌ | 856/1133 [26:46:45<9:28:35, 123.16s/it]
76%|███████▌ | 857/1133 [26:50:27<11:42:47, 152.78s/it]
76%|███████▌ | 858/1133 [26:51:59<10:16:53, 134.60s/it]
76%|███████▌ | 859/1133 [26:53:50<9:41:47, 127.40s/it]
76%|███████▌ | 860/1133 [26:54:52<8:11:10, 107.95s/it]
76%|███████▌ | 861/1133 [26:59:39<12:12:49, 161.65s/it]
76%|███████▌ | 862/1133 [27:02:07<11:51:04, 157.43s/it]
76%|███████▌ | 863/1133 [27:06:11<13:46:20, 183.63s/it]
76%|███████▋ | 864/1133 [27:07:29<11:20:09, 151.71s/it]
76%|███████▋ | 865/1133 [27:09:19<10:22:34, 139.38s/it]
76%|███████▋ | 866/1133 [27:12:46<11:49:53, 159.53s/it]
77%|███████▋ | 867/1133 [27:15:45<12:12:48, 165.30s/it]
77%|███████▋ | 868/1133 [27:16:54<10:03:38, 136.67s/it]
77%|███████▋ | 869/1133 [27:17:53<8:18:42, 113.34s/it]
77%|███████▋ | 870/1133 [27:19:03<7:19:43, 100.32s/it]
77%|███████▋ | 871/1133 [27:19:58<6:18:49, 86.75s/it]
77%|███████▋ | 872/1133 [27:22:04<7:07:47, 98.34s/it]
77%|███████▋ | 873/1133 [27:23:17<6:33:59, 90.92s/it]
77%|███████▋ | 874/1133 [27:24:20<5:55:40, 82.39s/it]
77%|███████▋ | 875/1133 [27:27:30<8:13:21, 114.73s/it]
77%|███████▋ | 876/1133 [27:30:10<9:09:36, 128.32s/it]
77%|███████▋ | 877/1133 [27:32:27<9:18:01, 130.79s/it]
77%|███████▋ | 878/1133 [27:34:32<9:09:02, 129.18s/it]
78%|███████▊ | 879/1133 [27:35:46<7:56:21, 112.52s/it]
78%|███████▊ | 880/1133 [27:36:56<7:00:33, 99.74s/it]
78%|███████▊ | 881/1133 [27:37:58<6:11:57, 88.56s/it]
78%|███████▊ | 882/1133 [27:40:38<7:39:32, 109.85s/it]
78%|███████▊ | 883/1133 [27:42:10<7:15:28, 104.51s/it]
78%|███████▊ | 884/1133 [27:44:23<7:48:57, 113.00s/it]
78%|███████▊ | 885/1133 [27:46:17<7:48:42, 113.40s/it]
78%|███████▊ | 886/1133 [27:47:12<6:34:54, 95.93s/it]
78%|███████▊ | 887/1133 [27:50:57<9:12:35, 134.78s/it]
78%|███████▊ | 888/1133 [27:51:53<7:32:48, 110.89s/it]
78%|███████▊ | 889/1133 [27:54:20<8:15:57, 121.96s/it]
79%|███████▊ | 890/1133 [27:55:41<7:24:11, 109.68s/it]
79%|███████▊ | 891/1133 [27:56:40<6:20:49, 94.42s/it]
79%|███████▊ | 892/1133 [28:00:11<8:39:10, 129.26s/it]
79%|███████▉ | 893/1133 [28:03:02<9:27:55, 141.98s/it]
79%|███████▉ | 894/1133 [28:03:28<7:06:35, 107.10s/it]
79%|███████▉ | 895/1133 [28:06:18<8:20:05, 126.07s/it]
79%|███████▉ | 896/1133 [28:08:13<8:04:02, 122.54s/it]
79%|███████▉ | 897/1133 [28:08:49<6:20:45, 96.80s/it]
79%|███████▉ | 898/1133 [28:10:11<6:00:39, 92.08s/it]
79%|███████▉ | 899/1133 [28:12:12<6:33:36, 100.93s/it]
79%|███████▉ | 900/1133 [28:14:06<6:47:25, 104.92s/it]
80%|███████▉ | 901/1133 [28:15:42<6:35:02, 102.17s/it]
80%|███████▉ | 902/1133 [28:16:52<5:56:05, 92.49s/it]
80%|███████▉ | 903/1133 [28:18:54<6:28:06, 101.25s/it]
80%|███████▉ | 904/1133 [28:20:37<6:28:31, 101.80s/it]
80%|███████▉ | 905/1133 [28:23:59<8:21:00, 131.85s/it]
80%|███████▉ | 906/1133 [28:24:58<6:55:58, 109.95s/it]
80%|████████ | 907/1133 [28:26:22<6:25:37, 102.38s/it]
80%|████████ | 908/1133 [28:28:17<6:37:20, 105.96s/it]
80%|████████ | 909/1133 [28:29:49<6:19:54, 101.76s/it]
80%|████████ | 910/1133 [28:30:44<5:26:15, 87.78s/it]
80%|████████ | 911/1133 [28:31:57<5:09:01, 83.52s/it]
80%|████████ | 912/1133 [28:33:22<5:08:50, 83.85s/it]
81%|████████ | 913/1133 [28:34:39<5:00:13, 81.88s/it]
81%|████████ | 914/1133 [28:36:08<5:05:57, 83.82s/it]
81%|████████ | 915/1133 [28:37:10<4:41:24, 77.45s/it]
81%|████████ | 916/1133 [28:40:01<6:21:40, 105.53s/it]
81%|████████ | 917/1133 [28:42:41<7:18:02, 121.68s/it]
81%|████████ | 918/1133 [28:46:02<8:41:33, 145.55s/it]
81%|████████ | 919/1133 [28:46:46<6:50:29, 115.09s/it]
81%|████████ | 920/1133 [28:47:19<5:21:10, 90.47s/it]
81%|████████▏ | 921/1133 [28:48:55<5:25:13, 92.05s/it]
81%|████████▏ | 922/1133 [28:49:50<4:44:40, 80.95s/it]
81%|████████▏ | 923/1133 [28:51:25<4:58:42, 85.34s/it]
82%|████████▏ | 924/1133 [28:52:24<4:29:32, 77.38s/it]
82%|████████▏ | 925/1133 [28:53:56<4:43:32, 81.79s/it]
82%|████████▏ | 926/1133 [28:55:36<5:00:27, 87.09s/it]
82%|████████▏ | 927/1133 [28:56:49<4:45:06, 83.04s/it]
82%|████████▏ | 928/1133 [28:57:41<4:11:22, 73.58s/it]
82%|████████▏ | 929/1133 [28:59:28<4:44:10, 83.58s/it]
82%|████████▏ | 930/1133 [29:01:52<5:44:03, 101.69s/it]
82%|████████▏ | 931/1133 [29:03:31<5:40:04, 101.01s/it]
82%|████████▏ | 932/1133 [29:04:56<5:21:59, 96.12s/it]
82%|████████▏ | 933/1133 [29:06:09<4:57:54, 89.37s/it]
82%|████████▏ | 934/1133 [29:06:57<4:15:00, 76.89s/it]
83%|████████▎ | 935/1133 [29:09:10<5:09:11, 93.70s/it]
83%|████████▎ | 936/1133 [29:10:24<4:47:49, 87.66s/it]
83%|████████▎ | 937/1133 [29:11:41<4:36:10, 84.54s/it]
83%|████████▎ | 938/1133 [29:13:13<4:42:07, 86.81s/it]
83%|████████▎ | 939/1133 [29:14:38<4:38:32, 86.15s/it]
83%|████████▎ | 940/1133 [29:16:28<5:00:43, 93.49s/it]
83%|████████▎ | 941/1133 [29:20:01<6:53:44, 129.30s/it]
83%|████████▎ | 942/1133 [29:24:58<9:32:10, 179.74s/it]
83%|████████▎ | 943/1133 [29:26:08<7:44:54, 146.81s/it]
83%|████████▎ | 944/1133 [29:30:13<9:15:07, 176.23s/it]
83%|████████▎ | 945/1133 [29:33:12<9:14:18, 176.91s/it]
83%|████████▎ | 946/1133 [29:35:40<8:44:21, 168.24s/it]
84%|████████▎ | 947/1133 [29:38:08<8:23:17, 162.35s/it]
84%|████████▎ | 948/1133 [29:41:54<9:18:51, 181.25s/it]
84%|████████▍ | 949/1133 [29:43:00<7:29:56, 146.72s/it]
84%|████████▍ | 950/1133 [29:43:37<5:46:51, 113.73s/it]
84%|████████▍ | 951/1133 [29:45:24<5:38:45, 111.68s/it]
84%|████████▍ | 952/1133 [29:46:37<5:02:25, 100.25s/it]
84%|████████▍ | 953/1133 [29:47:29<4:16:50, 85.61s/it]
84%|████████▍ | 954/1133 [29:47:58<3:25:03, 68.73s/it]
84%|████████▍ | 955/1133 [29:48:53<3:11:47, 64.65s/it]
84%|████████▍ | 956/1133 [29:50:32<3:41:25, 75.06s/it]
84%|████████▍ | 957/1133 [29:51:09<3:06:25, 63.56s/it]
85%|████████▍ | 958/1133 [29:52:34<3:23:47, 69.87s/it]
85%|████████▍ | 959/1133 [29:54:17<3:51:37, 79.87s/it]
85%|████████▍ | 960/1133 [29:56:00<4:10:25, 86.85s/it]
85%|████████▍ | 961/1133 [29:57:17<4:00:44, 83.98s/it]
85%|████████▍ | 962/1133 [30:01:52<6:42:31, 141.24s/it]
85%|████████▍ | 963/1133 [30:03:35<6:07:47, 129.81s/it]
85%|████████▌ | 964/1133 [30:04:45<5:14:57, 111.82s/it]
85%|████████▌ | 965/1133 [30:06:17<4:56:22, 105.85s/it]
85%|████████▌ | 966/1133 [30:07:05<4:06:05, 88.41s/it]
85%|████████▌ | 967/1133 [30:10:44<5:53:00, 127.59s/it]
85%|████████▌ | 968/1133 [30:11:39<4:51:03, 105.84s/it]
86%|████████▌ | 969/1133 [30:13:07<4:34:50, 100.55s/it]
86%|████████▌ | 970/1133 [30:14:06<3:59:10, 88.04s/it]
86%|████████▌ | 971/1133 [30:16:04<4:22:02, 97.05s/it]
86%|████████▌ | 972/1133 [30:17:18<4:01:34, 90.03s/it]
86%|████████▌ | 973/1133 [30:22:17<6:47:45, 152.91s/it]
86%|████████▌ | 974/1133 [30:23:16<5:30:20, 124.66s/it]
86%|████████▌ | 975/1133 [30:24:41<4:56:36, 112.64s/it]
86%|████████▌ | 976/1133 [30:25:32<4:06:41, 94.28s/it]
86%|████████▌ | 977/1133 [30:26:42<3:46:04, 86.95s/it]
86%|████████▋ | 978/1133 [30:28:10<3:45:40, 87.36s/it]
86%|████████▋ | 979/1133 [30:33:47<6:56:10, 162.15s/it]
86%|████████▋ | 980/1133 [30:34:31<5:23:08, 126.72s/it]
87%|████████▋ | 981/1133 [30:36:18<5:05:51, 120.74s/it]
87%|████████▋ | 982/1133 [30:38:01<4:50:35, 115.47s/it]
87%|████████▋ | 983/1133 [30:38:56<4:03:23, 97.36s/it]
87%|████████▋ | 984/1133 [30:39:29<3:13:51, 78.06s/it]
87%|████████▋ | 985/1133 [30:41:38<3:50:10, 93.32s/it]
87%|████████▋ | 986/1133 [30:44:41<4:54:44, 120.30s/it]
87%|████████▋ | 987/1133 [30:46:13<4:32:02, 111.80s/it]
87%|████████▋ | 988/1133 [30:48:29<4:47:55, 119.14s/it]
87%|████████▋ | 989/1133 [30:50:53<5:03:38, 126.52s/it]
87%|████████▋ | 990/1133 [30:58:07<8:41:20, 218.74s/it]
87%|████████▋ | 991/1133 [30:59:32<7:02:28, 178.51s/it]
88%|████████▊ | 992/1133 [31:00:38<5:40:18, 144.81s/it]
88%|████████▊ | 993/1133 [31:01:44<4:42:49, 121.21s/it]
88%|████████▊ | 994/1133 [31:04:51<5:26:20, 140.87s/it]
88%|████████▊ | 995/1133 [31:07:04<5:18:44, 138.58s/it]
88%|████████▊ | 996/1133 [31:08:18<4:31:54, 119.08s/it]
88%|████████▊ | 997/1133 [31:10:16<4:29:10, 118.75s/it]
88%|████████▊ | 998/1133 [31:11:48<4:09:09, 110.74s/it]
88%|████████▊ | 999/1133 [31:15:34<5:25:04, 145.56s/it]
88%|████████▊ | 1000/1133 [31:16:55<4:39:42, 126.18s/it]
88%|████████▊ | 1001/1133 [31:17:21<3:31:15, 96.02s/it]
88%|████████▊ | 1002/1133 [31:18:38<3:17:19, 90.37s/it]
89%|████████▊ | 1003/1133 [31:19:48<3:02:29, 84.23s/it]
89%|████████▊ | 1004/1133 [31:23:02<4:11:57, 117.19s/it]
89%|████████▊ | 1005/1133 [31:23:35<3:16:09, 91.95s/it]
89%|████████▉ | 1006/1133 [31:29:44<6:10:24, 175.00s/it]
89%|████████▉ | 1007/1133 [31:31:20<5:17:36, 151.24s/it]
89%|████████▉ | 1008/1133 [31:34:00<5:20:29, 153.83s/it]
89%|████████▉ | 1009/1133 [31:36:16<5:07:11, 148.64s/it]
89%|████████▉ | 1010/1133 [31:39:58<5:49:23, 170.44s/it]
89%|████████▉ | 1011/1133 [31:44:28<6:47:36, 200.46s/it]
89%|████████▉ | 1012/1133 [31:44:54<4:58:31, 148.03s/it]
89%|████████▉ | 1013/1133 [31:46:07<4:11:22, 125.69s/it]
89%|████████▉ | 1014/1133 [31:47:28<3:42:37, 112.25s/it]
90%|████████▉ | 1015/1133 [31:51:16<4:49:02, 146.97s/it]
90%|████████▉ | 1016/1133 [31:53:10<4:27:24, 137.13s/it]
90%|████████▉ | 1017/1133 [31:54:28<3:50:24, 119.18s/it]
90%|████████▉ | 1018/1133 [31:55:01<2:58:53, 93.33s/it]
90%|████████▉ | 1019/1133 [31:58:01<3:46:36, 119.27s/it]
90%|█████████ | 1020/1133 [32:01:18<4:28:47, 142.72s/it]
90%|█████████ | 1021/1133 [32:02:35<3:49:42, 123.06s/it]
90%|█████████ | 1022/1133 [32:04:49<3:53:25, 126.17s/it]
90%|█████████ | 1023/1133 [32:09:28<5:15:30, 172.09s/it]
90%|█████████ | 1024/1133 [32:10:49<4:22:57, 144.75s/it]
90%|█████████ | 1025/1133 [32:12:51<4:08:30, 138.06s/it]
91%|█████████ | 1026/1133 [32:14:20<3:39:36, 123.14s/it]
91%|█████████ | 1027/1133 [32:14:42<2:43:57, 92.80s/it]
91%|█████████ | 1028/1133 [32:15:33<2:20:40, 80.39s/it]
91%|█████████ | 1029/1133 [32:16:54<2:19:37, 80.55s/it]
91%|█████████ | 1030/1133 [32:19:11<2:47:08, 97.37s/it]
91%|█████████ | 1031/1133 [32:19:33<2:07:06, 74.77s/it]
91%|█████████ | 1032/1133 [32:21:27<2:25:45, 86.59s/it]
91%|█████████ | 1033/1133 [32:22:44<2:19:41, 83.82s/it]
91%|█████████▏| 1034/1133 [32:25:04<2:46:16, 100.77s/it]
91%|█████████▏| 1035/1133 [32:26:11<2:27:39, 90.41s/it]
91%|█████████▏| 1036/1133 [32:27:13<2:12:38, 82.05s/it]
92%|█████████▏| 1037/1133 [32:28:08<1:58:21, 73.97s/it]
92%|█████████▏| 1038/1133 [32:29:59<2:14:34, 85.00s/it]
92%|█████████▏| 1039/1133 [32:31:31<2:16:29, 87.12s/it]
92%|█████████▏| 1040/1133 [32:31:57<1:46:28, 68.69s/it]
92%|█████████▏| 1041/1133 [32:32:59<1:42:30, 66.86s/it]
92%|█████████▏| 1042/1133 [32:35:20<2:14:46, 88.87s/it]
92%|█████████▏| 1043/1133 [32:36:00<1:51:30, 74.34s/it]
92%|█████████▏| 1044/1133 [32:40:00<3:03:44, 123.87s/it]
92%|█████████▏| 1045/1133 [32:41:58<2:59:08, 122.14s/it]
92%|█████████▏| 1046/1133 [32:43:56<2:55:22, 120.95s/it]
92%|█████████▏| 1047/1133 [32:45:54<2:52:06, 120.08s/it]
92%|█████████▏| 1048/1133 [32:47:18<2:35:02, 109.44s/it]
93%|█████████▎| 1049/1133 [32:49:05<2:32:09, 108.69s/it]
93%|█████████▎| 1050/1133 [32:50:26<2:18:49, 100.36s/it]
93%|█████████▎| 1051/1133 [32:52:24<2:24:21, 105.63s/it]
93%|█████████▎| 1052/1133 [32:52:46<1:48:44, 80.55s/it]
93%|█████████▎| 1053/1133 [32:55:25<2:18:47, 104.09s/it]
93%|█████████▎| 1054/1133 [32:55:47<1:44:38, 79.47s/it]
93%|█████████▎| 1055/1133 [32:57:08<1:43:53, 79.91s/it]
93%|█████████▎| 1056/1133 [32:57:49<1:27:20, 68.06s/it]
93%|█████████▎| 1057/1133 [32:59:35<1:40:55, 79.67s/it]
93%|█████████▎| 1058/1133 [33:00:16<1:24:51, 67.89s/it]
93%|█████████▎| 1059/1133 [33:03:46<2:16:12, 110.44s/it]
94%|█████████▎| 1060/1133 [33:06:02<2:23:51, 118.23s/it]
94%|█████████▎| 1061/1133 [33:07:56<2:20:22, 116.98s/it]
94%|█████████▎| 1062/1133 [33:09:32<2:10:53, 110.62s/it]
94%|█████████▍| 1063/1133 [33:11:33<2:12:54, 113.92s/it]
94%|█████████▍| 1064/1133 [33:12:58<2:00:53, 105.12s/it]
94%|█████████▍| 1065/1133 [33:14:15<1:49:40, 96.77s/it]
94%|████
\ No newline at end of file
+version https://git-lfs.github.com/spec/v1
+oid sha256:331ef9c8db6932d566a62eb84a7a16657edf0d7078d987bec7552d1437eab1f4
+size 504380
diff --git a/logs/openai-gpt-4o-mini.txt b/logs/openai-gpt-4o-mini.txt
index 54e1fd5af40d15e076a9ccc4c58e71f57814e259..a5faf9c3377b8ac0a9cc51b1dc8771bf838e7659 100644
--- a/logs/openai-gpt-4o-mini.txt
+++ b/logs/openai-gpt-4o-mini.txt
@@ -1,69 +1,3 @@
-loading env vars from: D:\code\projects\rapget-translation\.env
-Adding D:\code\projects\rapget-translation to sys.path
-C:\Users\dongh\.conda\envs\rapget\Lib\site-packages\threadpoolctl.py:1214: RuntimeWarning:
-Found Intel OpenMP ('libiomp') and LLVM OpenMP ('libomp') loaded at
-the same time. Both libraries are known to be incompatible and this
-can cause random crashes or deadlocks on Linux when loaded in the
-same Python program.
-Using threadpoolctl may cause crashes or deadlocks. For more
-information and possible workarounds, please see
- https://github.com/joblib/threadpoolctl/blob/master/multiple_openmp.md
-
- warnings.warn(msg, RuntimeWarning)
-[nltk_data] Downloading package wordnet to
-[nltk_data] C:\Users\dongh\AppData\Roaming\nltk_data...
-[nltk_data] Package wordnet is already up-to-date!
-[nltk_data] Downloading package punkt to
-[nltk_data] C:\Users\dongh\AppData\Roaming\nltk_data...
-[nltk_data] Package punkt is already up-to-date!
-[nltk_data] Downloading package omw-1.4 to
-[nltk_data] C:\Users\dongh\AppData\Roaming\nltk_data...
-[nltk_data] Package omw-1.4 is already up-to-date!
-loading: D:\code\projects\rapget-translation\eval_modules\calc_repetitions.py
-loading D:\code\projects\rapget-translation\llm_toolkit\translation_utils.py
-[nltk_data] Downloading package wordnet to
-[nltk_data] C:\Users\dongh\AppData\Roaming\nltk_data...
-[nltk_data] Package wordnet is already up-to-date!
-[nltk_data] Downloading package punkt to
-[nltk_data] C:\Users\dongh\AppData\Roaming\nltk_data...
-[nltk_data] Package punkt is already up-to-date!
-[nltk_data] Downloading package omw-1.4 to
-[nltk_data] C:\Users\dongh\AppData\Roaming\nltk_data...
-[nltk_data] Package omw-1.4 is already up-to-date!
-gpt-4o-mini datasets/mac/mac.tsv results/mac-results_few_shots_openai.csv 300
-Evaluating model: gpt-4o-mini
-loading train/test data files
-DatasetDict({
- train: Dataset({
- features: ['chinese', 'english'],
- num_rows: 4528
- })
- num_rows: 1133
- num_rows: 1133
- })
-})
---------------------------------------------------
-chinese: 老耿端起枪,眯缝起一只三角眼,一搂扳机响了枪,冰雹般的金麻雀劈哩啪啦往下落,铁砂子在柳枝间飞迸着,嚓嚓有声。
---------------------------------------------------
-english: Old Geng picked up his shotgun, squinted, and pulled the trigger. Two sparrows crashed to the ground like hailstones as shotgun pellets tore noisily through the branches.
-*** Evaluating with num_shots: 0
- 5%|████████▎ | 53/1133 [01:16<28:17, 1.57s/it]
- 5%|█████████▌ | 61/1133 [01:31<31:47, 1.78s 5%|█████████▋ | 62/1133 [01:32<32:02, 1.79s 6%|█████████▊ | 63/1133 [01:34<32:23, 1.82s 6%|█████████▉ | 64/1133 [01:36<31:57, 1.79s 6%|██████████▏ | 65/1133 [01:38<32:19, 1.82s 6%|██████████▎ | 66/1133 [01:40<32:04, 1.80s 6%|██████████▍ | 67/1133 [01:42<34:37, 1.95s 6%|██████████▌ | 68/1133 [01:45<38:16, 2.16s 6%|██████████▊ | 69/1133 [01:47<39:44, 2.24s 6%|██████████▉ | 70/1133 [01:49<36:27, 2.06s 6%|███████████ | 71/1133 [01:50<33:32, 1.90s 6%|███████████▏ | 72/1133 [01:52<31:44, 1.80s 6%|███████████▍ | 73/1133 [01:53<29:57, 1.70s 7%|███████████▌ | 74/1133 [01:55<28:46, 1.63s 7%|███████████▋ | 75/1133 [01:56<28:47, 1.63s 7%|███████████▊ | 76/1133 [01:58<30:45, 1.75s 7%|████████████ | 77/1133 [02:00<31:17, 1.78s 7%|████████████▏ | 78/1133 [02:02<29:36, 1.68s 7%|████████████▎ | 79/1133 [02:04<30:54, 1.76s 7%|████████████▍ | 80/1133 [02:05<29:47, 1.70s 7%|████████████▋ | 81/1133 [02:07<28:46, 1.64s 7%|████████████▊ | 82/1133 [02:08<27:21, 1.56s 7%|████████████▉ | 83/1133 [02:11<33:26, 1.91s 7%|█████████████ | 84/1133 [02:12<30:41, 1.76s 8%|█████████████▎ | 85/1133 [02:14<28:52, 1.65s 8%|█████████████▍ | 86/1133 [02:16<34:00, 1.95s 8%|█████████████▌ | 87/1133 [02:18<32:14, 1.85s 8%|█████████████▋ | 88/1133 [02:20<32:02, 1.84s 8%|█████████████▉ | 89/1133 [02:21<30:39, 1.76s 8%|██████████████ | 90/1133 [02:24<34:04, 1.96s 8%|██████████████▏ | 91/1133 [02:25<30:34, 1.76s 8%|██████████████▎ | 92/1133 [02:27<31:52, 1.84s 8%|██████████████▌ | 93/1133 [02:29<31:02, 1.79s 8%|██████████████▋ | 94/1133 [02:30<29:17, 1.69s 8%|██████████████▊ | 95/1133 [02:32<29:27, 1.70s 8%|██████████████▉ | 96/1133 [02:34<29:40, 1.72s 9%|███████████████▏ | 97/1133 [02:35<27:52, 1.61s 9%|███████████████▎ | 98/1133 [02:36<26:39, 1.55s 9%|███████████████▍ | 99/1133 [02:38<27:00, 1.57s 9%|███████████████▌ | 100/1133 [02:39<26:01, 1.51s 9%|███████████████▋ | 101/1133 [02:41<27:32, 1.60s 9%|███████████████▊ | 102/1133 [02:43<27:43, 1.61s 9%|████████████████ | 103/1133 [02:44<26:26, 1.54s 9%|████████████████▏ | 104/1133 [02:45<24:45, 1.44s 9%|████████████████▎ | 105/1133 [02:47<24:53, 1.45s 9%|████████████████▍ | 106/1133 [02:50<33:29, 1.96s 9%|████████████████▌ | 107/1133 [02:52<35:42, 2.09s 10%|████████████████▊ | 108/1133 [02:54<31:31, 1.85s 10%|████████████████▉ | 109/1133 [02:55<29:56, 1.75s 10%|█████████████████ | 110/1133 [02:57<30:43, 1.80s 10%|█████████████████▏ | 111/1133 [02:59<29:57, 1.76s 10%|█████████████████▍ | 112/1133 [03:02<36:01, 2.12s 10%|█████████████████▌ | 113/1133 [03:04<35:18, 2.08s 10%|█████████████████▋ | 114/1133 [03:05<30:55, 1.82s 10%|█████████████████▊ | 115/1133 [03:06<27:02, 1.59s 10%|██████████████████ | 116/1133 [03:07<24:45, 1.46s 10%|██████████████████▏ | 117/1133 [03:09<25:21, 1.50s 10%|██████████████████▎ | 118/1133 [03:10<24:49, 1.47s 11%|██████████████████▍ | 119/1133 [03:12<24:26, 1.45s 11%|██████████████████▋ | 120/1133 [03:13<22:56, 1.36s 11%|██████████████████▊ | 121/1133 [03:14<22:05, 1.31s 11%|██████████████████▉ | 122/1133 [03:15<21:48, 1.29s 11%|███████████████████ | 123/1133 [03:16<20:25, 1.21s 11%|███████████████████▎ | 124/1133 [03:18<21:09, 1.26s 11%|███████████████████▍ | 125/1133 [03:19<22:15, 1.32s 11%|███████████████████▌ | 126/1133 [03:20<22:23, 1.33s 11%|███████████████████▋ | 127/1133 [03:22<24:34, 1.47s 11%|███████████████████▉ | 128/1133 [03:23<23:15, 1.39s 11%|████████████████████ | 129/1133 [03:25<22:28, 1.34s 11%|████████████████████▏ | 130/1133 [03:26<20:57, 1.25s 12%|████████████████████▎ | 131/1133 [03:27<21:43, 1.30s 12%|████████████████████▌ | 132/1133 [03:28<21:15, 1.27s 12%|████████████████████▋ | 133/1133 [03:30<20:59, 1.26s 12%|████████████████████▊ | 134/1133 [03:30<19:28, 1.17s 12%|████████████████████▉ | 135/1133 [03:33<24:59, 1.50s 12%|█████████████████████▏ | 136/1133 [03:34<23:23, 1.41s 12%|█████████████████████▎ | 137/1133 [03:35<21:47, 1.31s 12%|█████████████████████▍ | 138/1133 [03:36<20:18, 1.22s 12%|█████████████████████▌ | 139/1133 [03:37<19:29, 1.18s 12%|█████████████████████▋ | 140/1133 [03:38<20:07, 1.22s 12%|█████████████████████▉ | 141/1133 [03:40<19:31, 1.18s 13%|██████████████████████ | 142/1133 [03:41<18:34, 1.12s 13%|██████████████████████▏ | 143/1133 [03:42<19:57, 1.21s 13%|██████████████████████▎ | 144/1133 [03:43<19:16, 1.17s 13%|██████████████████████▌ | 145/1133 [03:44<18:17, 1.11s 13%|██████████████████████▋ | 146/1133 [03:45<17:38, 1.07s 13%|██████████████████████▊ | 147/1133 [03:46<18:21, 1.12s 13%|██████████████████████▉ | 148/1133 [03:47<17:38, 1.07s 13%|███████████████████████▏ | 149/1133 [03:48<17:42, 1.08s 13%|███████████████████████▎ | 150/1133 [03:49<17:45, 1.08s 13%|███████████████████████▍ | 151/1133 [03:51<21:26, 1.31s 13%|███████████████████████▌ | 152/1133 [03:52<20:56, 1.28s 14%|███████████████████████▊ | 153/1133 [03:54<20:13, 1.24s 14%|███████████████████████▉ | 154/1133 [03:55<21:43, 1.33s 14%|████████████████████████ | 155/1133 [03:56<20:35, 1.26s 14%|████████████████████████▏ | 156/1133 [03:58<21:12, 1.30s 14%|████████████████████████▍ | 157/1133 [03:59<21:13, 1.31s 14%|████████████████████████▌ | 158/1133 [04:00<21:21, 1.31s 14%|████████████████████████▋ | 159/1133 [04:01<20:12, 1.24s 14%|████████████████████████▊ | 160/1133 [04:02<18:54, 1.17s 14%|█████████████████████████ | 161/1133 [04:03<17:36, 1.09s 14%|█████████████████████████▏ | 162/1133 [04:04<17:13, 1.06s 14%|█████████████████████████▎ | 163/1133 [04:05<17:27, 1.08s 14%|█████████████████████████▍ | 164/1133 [04:06<17:07, 1.06s 15%|█████████████████████████▋ | 165/1133 [04:08<20:01, 1.24s 15%|█████████████████████████▊ | 166/1133 [04:09<19:49, 1.23s 15%|█████████████████████████▉ | 167/1133 [04:10<19:07, 1.19s 15%|██████████████████████████ | 168/1133 [04:11<19:01, 1.18s 15%|██████████████████████████▎ | 169/1133 [04:13<18:25, 1.15s 15%|██████████████████████████▍ | 170/1133 [04:14<18:05, 1.13s 15%|██████████████████████████▌ | 171/1133 [04:15<17:18, 1.08s 15%|██████████████████████████▋ | 172/1133 [04:16<16:57, 1.06s 15%|██████████████████████████▊ | 173/1133 [04:17<17:23, 1.09s 15%|███████████████████████████ | 174/1133 [04:18<16:53, 1.06s 15%|███████████████████████████▏ | 175/1133 [04:19<17:23, 1.09s 16%|███████████████████████████▎ | 176/1133 [04:20<16:43, 1.05s 16%|███████████████████████████▍ | 177/1133 [04:21<18:03, 1.13s 16%|███████████████████████████▋ | 178/1133 [04:25<30:53, 1.94s 16%|███████████████████████████▊ | 179/1133 [04:26<28:26, 1.79s 16%|███████████████████████████▉ | 180/1133 [04:28<26:12, 1.65s 16%|████████████████████████████ | 181/1133 [04:29<23:21, 1.47s 16%|████████████████████████████▎ | 182/1133 [04:31<25:15, 1.59s 16%|████████████████████████████▍ | 183/1133 [04:32<23:55, 1.51s 16%|████████████████████████████▌ | 184/1133 [04:33<21:36, 1.37s 16%|████████████████████████████▋ | 185/1133 [04:34<20:17, 1.28s 16%|████████████████████████████▉ | 186/1133 [04:35<19:22, 1.23s 17%|█████████████████████████████ | 187/1133 [04:37<21:06, 1.34s 17%|█████████████████████████████▏ | 188/1133 [04:39<24:30, 1.56s 17%|█████████████████████████████▎ | 189/1133 [04:40<21:55, 1.39s 17%|█████████████████████████████▌ | 190/1133 [04:41<21:14, 1.35s 17%|█████████████████████████████▋ | 191/1133 [04:43<23:21, 1.49s 17%|█████████████████████████████▊ | 192/1133 [04:44<22:01, 1.40s 17%|█████████████████████████████▉ | 193/1133 [04:46<21:54, 1.40s 17%|██████████████████████████████▏ | 194/1133 [04:46<19:43, 1.26s 17%|██████████████████████████████▎ | 195/1133 [04:47<18:19, 1.17s 17%|██████████████████████████████▍ | 196/1133 [04:48<16:47, 1.08s 17%|██████████████████████████████▌ | 197/1133 [04:50<17:24, 1.12s 17%|██████████████████████████████▊ | 198/1133 [04:50<16:45, 1.08s 18%|██████████████████████████████▉ | 199/1133 [04:52<18:25, 1.18s 18%|███████████████████████████████ | 200/1133 [04:53<17:19, 1.11s 18%|███████████████████████████████▏ | 201/1133 [04:54<17:25, 1.12s 18%|███████████████████████████████▍ | 202/1133 [04:55<16:32, 1.07s 18%|███████████████████████████████▌ | 203/1133 [04:56<16:09, 1.04s 18%|███████████████████████████████▋ | 204/1133 [04:57<17:55, 1.16s 18%|███████████████████████████████▊ | 205/1133 [04:58<17:17, 1.12s 18%|████████████████████████████████ | 206/1133 [04:59<16:54, 1.09s 18%|████████████████████████████████▏ | 207/1133 [05:00<16:28, 1.07s 18%|████████████████████████████████▎ | 208/1133 [05:02<17:40, 1.15s 18%|████████████████████████████████▍ | 209/1133 [05:05<28:31, 1.85s 19%|████████████████████████████████▌ | 210/1133 [05:07<26:23, 1.72s 19%|████████████████████████████████▊ | 211/1133 [05:08<24:43, 1.61s 19%|████████████████████████████████▉ | 212/1133 [05:09<23:07, 1.51s 19%|█████████████████████████████████ | 213/1133 [05:10<21:22, 1.39s 19%|█████████████████████████████████▏ | 214/1133 [05:11<19:29, 1.27s 19%|█████████████████████████████████▍ | 215/1133 [05:13<18:45, 1.23s 19%|█████████████████████████████████▌ | 216/1133 [05:15<23:12, 1.52s 19%|█████████████████████████████████▋ | 217/1133 [05:16<20:55, 1.37s 19%|█████████████████████████████████▊ | 218/1133 [05:17<19:10, 1.26s 19%|██████████████████████████████████ | 219/1133 [05:18<17:52, 1.17s 19%|██████████████████████████████████▏ | 220/1133 [05:19<18:11, 1.20s 20%|██████████████████████████████████▎ | 221/1133 [05:21<19:44, 1.30s 20%|██████████████████████████████████▍ | 222/1133 [05:22<18:46, 1.24s 20%|██████████████████████████████████▋ | 223/1133 [05:23<19:05, 1.26s 20%|██████████████████████████████████▊ | 224/1133 [05:24<17:21, 1.15s 20%|██████████████████████████████████▉ | 225/1133 [05:25<17:16, 1.14s 20%|███████████████████████████████████ | 226/1133 [05:26<18:54, 1.25s 20%|███████████████████████████████████▎ | 227/1133 [05:28<19:38, 1.30s 20%|███████████████████████████████████▍ | 228/1133 [05:30<25:43, 1.71s 20%|███████████████████████████████████▌ | 229/1133 [05:32<25:07, 1.67s 20%|███████████████████████████████████▋ | 230/1133 [05:33<23:36, 1.57s 20%|███████████████████████████████████▉ | 231/1133 [05:35<24:11, 1.61s 20%|████████████████████████████████████ | 232/1133 [05:36<22:18, 1.49s 21%|████████████████████████████████████▏ | 233/1133 [05:38<21:43, 1.45s 21%|████████████████████████████████████▎ | 234/1133 [05:39<20:23, 1.36s 21%|████████████████████████████████████▌ | 235/1133 [05:40<19:13, 1.28s 21%|████████████████████████████████████▋ | 236/1133 [05:41<19:36, 1.31s 21%|████████████████████████████████████▊ | 237/1133 [05:43<21:31, 1.44s 21%|████████████████████████████████████▉ | 238/1133 [05:44<20:45, 1.39s 21%|█████████████████████████████████████▏ | 239/1133 [05:46<20:10, 1.35s 21%|█████████████████████████████████████▎ | 240/1133 [05:47<19:36, 1.32s 21%|█████████████████████████████████████▍ | 241/1133 [05:48<17:46, 1.20s 21%|█████████████████████████████████████▌ | 242/1133 [05:49<18:55, 1.27s 21%|█████████████████████████████████████▋ | 243/1133 [05:50<18:55, 1.28s 22%|█████████████████████████████████████▉ | 244/1133 [05:52<18:15, 1.23s 22%|██████████████████████████████████████ | 245/1133 [05:53<18:08, 1.23s 22%|██████████████████████████████████████▏ | 246/1133 [05:54<17:33, 1.19s 22%|██████████████████████████████████████▎ | 247/1133 [05:55<16:07, 1.09s 22%|██████████████████████████████████████▌ | 248/1133 [05:56<16:28, 1.12s 22%|██████████████████████████████████████▋ | 249/1133 [05:57<15:43, 1.07s 22%|██████████████████████████████████████▊ | 250/1133 [06:00<22:58, 1.56s 22%|██████████████████████████████████████▉ | 251/1133 [06:01<21:54, 1.49s 22%|███████████████████████████████████████▏ | 252/1133 [06:03<22:36, 1.54s 22%|███████████████████████████████████████▎ | 253/1133 [06:04<22:57, 1.56s 22%|███████████████████████████████████████▍ | 254/1133 [06:06<21:37, 1.48s 23%|███████████████████████████████████████▌ | 255/1133 [06:07<21:03, 1.44s 23%|███████████████████████████████████████▊ | 256/1133 [06:08<20:49, 1.43s 23%|███████████████████████████████████████▉ | 257/1133 [06:09<18:57, 1.30s 23%|████████████████████████████████████████ | 258/1133 [06:11<19:50, 1.36s 23%|████████████████████████████████████████▏ | 259/1133 [06:12<19:23, 1.33s 23%|████████████████████████████████████████▍ | 260/1133 [06:14<22:37, 1.56s 23%|████████████████████████████████████████▌ | 261/1133 [06:16<24:08, 1.66s 23%|████████████████████████████████████████▋ | 262/1133 [06:17<22:04, 1.52s 23%|████████████████████████████████████████▊ | 263/1133 [06:20<27:23, 1.89s 23%|█████████████████████████████████████████ | 264/1133 [06:21<24:35, 1.70s 23%|█████████████████████████████████████████▏ | 265/1133 [06:23<24:13, 1.67s 23%|█████████████████████████████████████████▎ | 266/1133 [06:24<22:50, 1.58s 24%|█████████████████████████████████████████▍ | 267/1133 [06:26<21:50, 1.51s 24%|█████████████████████████████████████████▋ | 268/1133 [06:29<31:47, 2.21s 24%|█████████████████████████████████████████▊ | 269/1133 [06:31<27:43, 1.93s 24%|█████████████████████████████████████████▉ | 270/1133 [06:32<25:28, 1.77s 24%|██████████████████████████████████████████ | 271/1133 [06:33<22:39, 1.58s 24%|██████████████████████████████████████████▎ | 272/1133 [06:34<21:01, 1.46s 24%|██████████████████████████████████████████▍ | 273/1133 [06:36<21:03, 1.47s 24%|██████████████████████████████████████████▌ | 274/1133 [06:37<19:40, 1.37s 24%|██████████████████████████████████████████▋ | 275/1133 [06:38<18:04, 1.26s 24%|██████████████████████████████████████████▊ | 276/1133 [06:39<16:58, 1.19s 24%|███████████████████████████████████████████ | 277/1133 [06:40<17:56, 1.26s 25%|███████████████████████████████████████████▏ | 278/1133 [06:42<17:37, 1.24s 25%|███████████████████████████████████████████▎ | 279/1133 [06:43<18:38, 1.31s 25%|███████████████████████████████████████████▍ | 280/1133 [06:45<20:33, 1.45s 25%|███████████████████████████████████████████▋ | 281/1133 [06:46<20:08, 1.42s 25%|███████████████████████████████████████████▊ | 282/1133 [06:47<18:17, 1.29s 25%|███████████████████████████████████████████▉ | 283/1133 [06:48<17:15, 1.22s 25%|████████████████████████████████████████████ | 284/1133 [06:50<17:43, 1.25s 25%|████████████████████████████████████████████▎ | 285/1133 [06:51<16:55, 1.20s 25%|████████████████████████████████████████████▍ | 286/1133 [06:52<17:43, 1.26s 25%|████████████████████████████████████████████▌ | 287/1133 [06:53<17:26, 1.24s 25%|████████████████████████████████████████████▋ | 288/1133 [06:55<17:44, 1.26s 26%|████████████████████████████████████████████▉ | 289/1133 [06:56<17:08, 1.22s 26%|█████████████████████████████████████████████ | 290/1133 [06:57<18:09, 1.29s 26%|█████████████████████████████████████████████▏ | 291/1133 [06:59<18:42, 1.33s 26%|█████████████████████████████████████████████▎ | 292/1133 [07:00<17:29, 1.25s 26%|█████████████████████████████████████████████▌ | 293/1133 [07:01<19:23, 1.38s 26%|█████████████████████████████████████████████▋ | 294/1133 [07:03<18:30, 1.32s 26%|█████████████████████████████████████████████▊ | 295/1133 [07:04<19:13, 1.38s 26%|█████████████████████████████████████████████▉ | 296/1133 [07:05<18:51, 1.35s 26%|██████████████████████████████████████████████▏ | 297/1133 [07:06<17:46, 1.28s 26%|██████████████████████████████████████████████▎ | 298/1133 [07:07<16:55, 1.22s 26%|██████████████████████████████████████████████▍ | 299/1133 [07:09<16:48, 1.21s 26%|██████████████████████████████████████████████▌ | 300/1133 [07:10<16:07, 1.16s 27%|██████████████████████████████████████████████▊ | 301/1133 [07:11<15:38, 1.13s 27%|██████████████████████████████████████████████▉ | 302/1133 [07:12<15:19, 1.11s 27%|███████████████████████████████████████████████ | 303/1133 [07:13<14:40, 1.06s 27%|███████████████████████████████████████████████▏ | 304/1133 [07:15<17:53, 1.29s 27%|███████████████████████████████████████████████▍ | 305/1133 [07:16<17:49, 1.29s 27%|███████████████████████████████████████████████▌ | 306/1133 [07:17<17:24, 1.26s 27%|███████████████████████████████████████████████▋ | 307/1133 [07:18<16:32, 1.20s 27%|███████████████████████████████████████████████▊ | 308/1133 [07:19<16:12, 1.18s 27%|████████████████████████████████████████████████ | 309/1133 [07:20<16:04, 1.17s 27%|████████████████████████████████████████████████▏ | 310/1133 [07:21<15:04, 1.10s 27%|████████████████████████████████████████████████▎ | 311/1133 [07:23<16:25, 1.20s 28%|████████████████████████████████████████████████▍ | 312/1133 [07:24<16:53, 1.23s 28%|████████████████████████████████████████████████▌ | 313/1133 [07:25<17:16, 1.26s 28%|████████████████████████████████████████████████▊ | 314/1133 [07:27<16:46, 1.23s 28%|████████████████████████████████████████████████▉ | 315/1133 [07:29<20:47, 1.53s 28%|█████████████████████████████████████████████████ | 316/1133 [07:30<19:51, 1.46s 28%|█████████████████████████████████████████████████▏ | 317/1133 [07:31<18:45, 1.38s 28%|█████████████████████████████████████████████████▍ | 318/1133 [07:32<17:16, 1.27s 28%|█████████████████████████████████████████████████▌ | 319/1133 [07:34<18:10, 1.34s 28%|█████████████████████████████████████████████████▋ | 320/1133 [07:35<17:35, 1.30s 28%|█████████████████████████████████████████████████▊ | 321/1133 [07:36<17:08, 1.27s 28%|██████████████████████████████████████████████████ | 322/1133 [07:37<15:51, 1.17s 29%|██████████████████████████████████████████████████▏ | 323/1133 [07:38<15:20, 1.14s 29%|██████████████████████████████████████████████████▎ | 324/1133 [07:39<15:11, 1.13s 29%|██████████████████████████████████████████████████▍ | 325/1133 [07:41<15:27, 1.15s 29%|██████████████████████████████████████████████████▋ | 326/1133 [07:42<14:47, 1.10s 29%|██████████████████████████████████████████████████▊ | 327/1133 [07:43<16:45, 1.25s 29%|██████████████████████████████████████████████████▉ | 328/1133 [07:45<17:51, 1.33s 29%|███████████████████████████████████████████████████ | 329/1133 [07:46<18:35, 1.39s 29%|███████████████████████████████████████████████████▎ | 330/1133 [07:47<17:15, 1.29s 29%|███████████████████████████████████████████████████▍ | 331/1133 [07:48<16:47, 1.26s 29%|███████████████████████████████████████████████████▌ | 332/1133 [07:49<16:08, 1.21s 29%|███████████████████████████████████████████████████▋ | 333/1133 [07:51<16:03, 1.20s 29%|███████████████████████████████████████████████████▉ | 334/1133 [07:52<18:22, 1.38s 30%|████████████████████████████████████████████████████ | 335/1133 [07:54<18:11, 1.37s 30%|████████████████████████████████████████████████████▏ | 336/1133 [07:55<17:12, 1.30s 30%|████████████████████████████████████████████████████▎ | 337/1133 [07:56<16:27, 1.24s 30%|████████████████████████████████████████████████████▌ | 338/1133 [07:57<16:26, 1.24s 30%|████████████████████████████████████████████████████▋ | 339/1133 [07:59<17:48, 1.35s 30%|████████████████████████████████████████████████████▊ | 340/1133 [08:00<17:04, 1.29s 30%|████████████████████████████████████████████████████▉ | 341/1133 [08:02<18:14, 1.38s 30%|█████████████████████████████████████████████████████▏ | 342/1133 [08:03<17:03, 1.29s 30%|█████████████████████████████████████████████████████▎ | 343/1133 [08:04<16:18, 1.24s 30%|█████████████████████████████████████████████████████▍ | 344/1133 [08:06<19:04, 1.45s 30%|█████████████████████████████████████████████████████▌ | 345/1133 [08:07<17:27, 1.33s 31%|█████████████████████████████████████████████████████▋ | 346/1133 [08:08<16:19, 1.25s 31%|█████████████████████████████████████████████████████▉ | 347/1133 [08:09<15:44, 1.20s 31%|██████████████████████████████████████████████████████ | 348/1133 [08:10<16:49, 1.29s 31%|██████████████████████████████████████████████████████▏ | 349/1133 [08:12<17:37, 1.35s 31%|██████████████████████████████████████████████████████▎ | 350/1133 [08:14<19:15, 1.48s 31%|██████████████████████████████████████████████████████▌ | 351/1133 [08:15<17:29, 1.34s 31%|██████████████████████████████████████████████████████▋ | 352/1133 [08:16<16:33, 1.27s 31%|██████████████████████████████████████████████████████▊ | 353/1133 [08:17<16:36, 1.28s 31%|██████████████████████████████████████████████████████▉ | 354/1133 [08:18<15:27, 1.19s 31%|███████████████████████████████████████████████████████▏ | 355/1133 [08:19<15:10, 1.17s 31%|███████████████████████████████████████████████████████▎ | 356/1133 [08:21<16:14, 1.25s 32%|███████████████████████████████████████████████████████▍ | 357/1133 [08:22<17:04, 1.32s 32%|███████████████████████████████████████████████████████▌ | 358/1133 [08:23<16:23, 1.27s 32%|███████████████████████████████████████████████████████▊ | 359/1133 [08:24<15:10, 1.18s 32%|███████████████████████████████████████████████████████▉ | 360/1133 [08:26<15:18, 1.19s 32%|████████████████████████████████████████████████████████ | 361/1133 [08:27<16:36, 1.29s 32%|████████████████████████████████████████████████████████▏ | 362/1133 [08:28<15:57, 1.24s 32%|████████████████████████████████████████████████████████▍ | 363/1133 [08:29<15:13, 1.19s 32%|████████████████████████████████████████████████████████▌ | 364/1133 [08:30<14:32, 1.13s 32%|████████████████████████████████████████████████████████▋ | 365/1133 [08:31<14:42, 1.15s 32%|████████████████████████████████████████████████████████▊ | 366/1133 [08:32<14:14, 1.11s 32%|█████████████████████████████████████████████████████████ | 367/1133 [08:34<14:53, 1.17s 32%|█████████████████████████████████████████████████████████▏ | 368/1133 [08:35<14:48, 1.16s 33%|█████████████████████████████████████████████████████████▎ | 369/1133 [08:36<14:23, 1.13s 33%|█████████████████████████████████████████████████████████▍ | 370/1133 [08:37<13:49, 1.09s 33%|█████████████████████████████████████████████████████████▋ | 371/1133 [08:38<13:11, 1.04s 33%|█████████████████████████████████████████████████████████▊ | 372/1133 [08:40<16:45, 1.32s 33%|█████████████████████████████████████████████████████████▉ | 373/1133 [08:41<16:16, 1.29s 33%|██████████████████████████████████████████████████████████ | 374/1133 [08:42<14:54, 1.18s 33%|██████████████████████████████████████████████████████████▎ | 375/1133 [08:43<14:24, 1.14s 33%|██████████████████████████████████████████████████████████▍ | 376/1133 [08:44<14:17, 1.13s 33%|██████████████████████████████████████████████████████████▌ | 377/1133 [08:45<13:56, 1.11s 33%|██████████████████████████████████████████████████████████▋ | 378/1133 [08:46<14:09, 1.13s 33%|██████████████████████████████████████████████████████████▊ | 379/1133 [08:47<14:06, 1.12s 34%|███████████████████████████████████████████████████████████ | 380/1133 [08:49<14:22, 1.15s 34%|███████████████████████████████████████████████████████████▏ | 381/1133 [08:51<19:33, 1.56s 34%|███████████████████████████████████████████████████████████▎ | 382/1133 [08:52<18:11, 1.45s 34%|███████████████████████████████████████████████████████████▍ | 383/1133 [08:54<17:50, 1.43s 34%|███████████████████████████████████████████████████████████▋ | 384/1133 [08:55<17:05, 1.37s 34%|███████████████████████████████████████████████████████████▊ | 385/1133 [08:57<17:32, 1.41s 34%|███████████████████████████████████████████████████████████▉ | 386/1133 [08:59<20:39, 1.66s 34%|████████████████████████████████████████████████████████████ | 387/1133 [09:00<18:12, 1.46s 34%|████████████████████████████████████████████████████████████▎ | 388/1133 [09:01<16:25, 1.32s 34%|████████████████████████████████████████████████████████████▍ | 389/1133 [09:02<17:03, 1.38s 34%|████████████████████████████████████████████████████████████▌ | 390/1133 [09:03<16:04, 1.30s 35%|████████████████████████████████████████████████████████████▋ | 391/1133 [09:04<15:12, 1.23s 35%|████████████████████████████████████████████████████████████▉ | 392/1133 [09:06<15:27, 1.25s 35%|█████████████████████████████████████████████████████████████ | 393/1133 [09:08<18:13, 1.48s 35%|█████████████████████████████████████████████████████████████▏ | 394/1133 [09:09<16:55, 1.37s 35%|█████████████████████████████████████████████████████████████▎ | 395/1133 [09:10<17:33, 1.43s 35%|█████████████████████████████████████████████████████████████▌ | 396/1133 [09:12<17:28, 1.42s 35%|█████████████████████████████████████████████████████████████▋ | 397/1133 [09:13<16:23, 1.34s 35%|█████████████████████████████████████████████████████████████▊ | 398/1133 [09:14<16:26, 1.34s 35%|█████████████████████████████████████████████████████████████▉ | 399/1133 [09:16<16:47, 1.37s 35%|██████████████████████████████████████████████████████████████▏ | 400/1133 [09:17<16:08, 1.32s 35%|██████████████████████████████████████████████████████████████▎ | 401/1133 [09:18<15:42, 1.29s 35%|██████████████████████████████████████████████████████████████▍ | 402/1133 [09:19<14:47, 1.21s 36%|██████████████████████████████████████████████████████████████▌ | 403/1133 [09:20<14:19, 1.18s 36%|██████████████████████████████████████████████████████████████▊ | 404/1133 [09:21<13:57, 1.15s 36%|██████████████████████████████████████████████████████████████▉ | 405/1133 [09:23<14:33, 1.20s 36%|███████████████████████████████████████████████████████████████ | 406/1133 [09:24<14:10, 1.17s 36%|███████████████████████████████████████████████████████████████▏ | 407/1133 [09:25<15:25, 1.27s 36%|███████████████████████████████████████████████████████████████▍ | 408/1133 [09:27<15:16, 1.26s 36%|███████████████████████████████████████████████████████████████▌ | 409/1133 [09:28<15:26, 1.28s 36%|███████████████████████████████████████████████████████████████▋ | 410/1133 [09:29<14:51, 1.23s 36%|███████████████████████████████████████████████████████████████▊ | 411/1133 [09:31<16:51, 1.40s 36%|████████████████████████████████████████████████████████████████ | 412/1133 [09:32<16:35, 1.38s 36%|████████████████████████████████████████████████████████████████▏ | 413/1133 [09:33<16:00, 1.33s 37%|████████████████████████████████████████████████████████████████▎ | 414/1133 [09:34<15:02, 1.26s 37%|████████████████████████████████████████████████████████████████▍ | 415/1133 [09:36<15:22, 1.29s 37%|████████████████████████████████████████████████████████████████▌ | 416/1133 [09:38<17:05, 1.43s 37%|████████████████████████████████████████████████████████████████▊ | 417/1133 [09:39<15:39, 1.31s 37%|████████████████████████████████████████████████████████████████▉ | 418/1133 [09:40<14:44, 1.24s 37%|█████████████████████████████████████████████████████████████████ | 419/1133 [09:41<15:06, 1.27s 37%|█████████████████████████████████████████████████████████████████▏ | 420/1133 [09:42<14:01, 1.18s 37%|█████████████████████████████████████████████████████████████████▍ | 421/1133 [09:43<15:00, 1.26s 37%|█████████████████████████████████████████████████████████████████▌ | 422/1133 [09:45<15:23, 1.30s 37%|█████████████████████████████████████████████████████████████████▋ | 423/1133 [09:47<17:05, 1.44s 37%|█████████████████████████████████████████████████████████████████▊ | 424/1133 [09:48<16:23, 1.39s 38%|██████████████████████████████████████████████████████████████████ | 425/1133 [09:49<16:56, 1.44s 38%|██████████████████████████████████████████████████████████████████▏ | 426/1133 [09:51<16:19, 1.39s 38%|██████████████████████████████████████████████████████████████████▎ | 427/1133 [09:52<15:26, 1.31s 38%|██████████████████████████████████████████████████████████████████▍ | 428/1133 [09:53<15:36, 1.33s 38%|██████████████████████████████████████████████████████████████████▋ | 429/1133 [09:54<15:01, 1.28s 38%|██████████████████████████████████████████████████████████████████▊ | 430/1133 [09:56<15:01, 1.28s 38%|██████████████████████████████████████████████████████████████████▉ | 431/1133 [09:57<14:17, 1.22s 38%|███████████████████████████████████████████████████████████████████ | 432/1133 [09:58<14:27, 1.24s 38%|███████████████████████████████████████████████████████████████████▎ | 433/1133 [09:59<14:16, 1.22s 38%|███████████████████████████████████████████████████████████████████▍ | 434/1133 [10:01<16:29, 1.42s 38%|███████████████████████████████████████████████████████████████████▌ | 435/1133 [10:03<16:45, 1.44s 38%|███████████████████████████████████████████████████████████████████▋ | 436/1133 [10:04<16:19, 1.40s 39%|███████████████████████████████████████████████████████████████████▉ | 437/1133 [10:05<15:58, 1.38s 39%|████████████████████████████████████████████████████████████████████ | 438/1133 [10:07<17:20, 1.50s 39%|████████████████████████████████████████████████████████████████████▏ | 439/1133 [10:08<16:08, 1.40s 39%|████████████████████████████████████████████████████████████████████▎ | 440/1133 [10:09<15:14, 1.32s 39%|████████████████████████████████████████████████████████████████████▌ | 441/1133 [10:11<15:04, 1.31s 39%|████████████████████████████████████████████████████████████████████▋ | 442/1133 [10:12<14:30, 1.26s 39%|████████████████████████████████████████████████████████████████████▊ | 443/1133 [10:13<15:16, 1.33s 39%|████████████████████████████████████████████████████████████████████▉ | 444/1133 [10:14<15:04, 1.31s 39%|█████████████████████████████████████████████████████████████████████▏ | 445/1133 [10:16<14:14, 1.24s 39%|█████████████████████████████████████████████████████████████████████▎ | 446/1133 [10:17<13:57, 1.22s 39%|█████████████████████████████████████████████████████████████████████▍ | 447/1133 [10:18<14:07, 1.24s 40%|█████████████████████████████████████████████████████████████████████▌ | 448/1133 [10:20<15:28, 1.35s 40%|█████████████████████████████████████████████████████████████████████▋ | 449/1133 [10:21<15:26, 1.35s 40%|█████████████████████████████████████████████████████████████████████▉ | 450/1133 [10:23<16:23, 1.44s 40%|██████████████████████████████████████████████████████████████████████ | 451/1133 [10:24<15:07, 1.33s 40%|██████████████████████████████████████████████████████████████████████▏ | 452/1133 [10:25<15:06, 1.33s 40%|██████████████████████████████████████████████████████████████████████▎ | 453/1133 [10:26<14:58, 1.32s 40%|██████████████████████████████████████████████████████████████████████▌ | 454/1133 [10:27<14:21, 1.27s 40%|██████████████████████████████████████████████████████████████████████▋ | 455/1133 [10:29<14:07, 1.25s 40%|██████████████████████████████████████████████████████████████████████▊ | 456/1133 [10:30<14:51, 1.32s 40%|██████████████████████████████████████████████████████████████████████▉ | 457/1133 [10:31<14:48, 1.31s 40%|███████████████████████████████████████████████████████████████████████▏ | 458/1133 [10:33<15:22, 1.37s 41%|███████████████████████████████████████████████████████████████████████▎ | 459/1133 [10:34<14:31, 1.29s 41%|███████████████████████████████████████████████████████████████████████▍ | 460/1133 [10:35<13:41, 1.22s 41%|███████████████████████████████████████████████████████████████████████▌ | 461/1133 [10:36<13:53, 1.24s 41%|███████████████████████████████████████████████████████████████████████▊ | 462/1133 [10:38<13:59, 1.25s 41%|███████████████████████████████████████████████████████████████████████▉ | 463/1133 [10:39<13:26, 1.20s 41%|████████████████████████████████████████████████████████████████████████ | 464/1133 [10:40<13:43, 1.23s 41%|████████████████████████████████████████████████████████████████████████▏ | 465/1133 [10:41<13:44, 1.23s 41%|████████████████████████████████████████████████████████████████████████▍ | 466/1133 [10:43<16:04, 1.45s 41%|████████████████████████████████████████████████████████████████████████▌ | 467/1133 [10:44<14:48, 1.33s 41%|████████████████████████████████████████████████████████████████████████▋ | 468/1133 [10:45<13:42, 1.24s 41%|████████████████████████████████████████████████████████████████████████▊ | 469/1133 [10:47<14:48, 1.34s 41%|█████████████████████████████████████████████████████████████████████████ | 470/1133 [10:48<14:26, 1.31s 42%|█████████████████████████████████████████████████████████████████████████▏ | 471/1133 [10:49<14:25, 1.31s 42%|█████████████████████████████████████████████████████████████████████████▎ | 472/1133 [10:51<16:30, 1.50s 42%|█████████████████████████████████████████████████████████████████████████▍ | 473/1133 [10:53<15:18, 1.39s/i 42%|█████████████████████████████████████████████████████████████████████████▋ | 474/1133 [10:54<14:37, 1.33s/i 42%|█████████████████████████████████████████████████████████████████████████▊ | 475/1133 [10:55<14:49, 1.35s/i 42%|█████████████████████████████████████████████████████████████████████████▉ | 476/1133 [10:57<15:44, 1.44s/i 42%|██████████████████████████████████████████████████████████████████████████ | 477/1133 [10:58<15:59, 1.46s/i 42%|██████████████████████████████████████████████████████████████████████████▎ | 478/1133 [11:00<15:23, 1.41s/i 42%|██████████████████████████████████████████████████████████████████████████▍ | 479/1133 [11:01<15:29, 1.42s/i 42%|██████████████████████████████████████████████████████████████████████████▌ | 480/1133 [11:03<17:50, 1.64s/i 42%|██████████████████████████████████████████████████████████████████████████▋ | 481/1133 [11:04<16:12, 1.49s/i 43%|██████████████████████████████████████████████████████████████████████████▊ | 482/1133 [11:06<16:29, 1.52s/i 43%|███████████████████████████████████████████████████████████████████████████ | 483/1133 [11:07<15:33, 1.44s/i 43%|███████████████████████████████████████████████████████████████████████████▏ | 484/1133 [11:08<15:06, 1.40s/i 43%|███████████████████████████████████████████████████████████████████████████▎ | 485/1133 [11:10<15:46, 1.46s/i 43%|███████████████████████████████████████████████████████████████████████████▍ | 486/1133 [11:11<15:01, 1.39s/i 43%|███████████████████████████████████████████████████████████████████████████▋ | 487/1133 [11:13<17:28, 1.62s/i 43%|███████████████████████████████████████████████████████████████████████████▊ | 488/1133 [11:15<16:50, 1.57s/i 43%|███████████████████████████████████████████████████████████████████████████▉ | 489/1133 [11:16<16:31, 1.54s/i 43%|████████████████████████████████████████████████████████████████████████████ | 490/1133 [11:17<15:04, 1.41s/i 43%|████████████████████████████████████████████████████████████████████████████▎ | 491/1133 [11:19<16:10, 1.51s/i 43%|████████████████████████████████████████████████████████████████████████████▍ | 492/1133 [11:21<15:54, 1.49s/i 44%|████████████████████████████████████████████████████████████████████████████▌ | 493/1133 [11:22<14:57, 1.40s/i 44%|████████████████████████████████████████████████████████████████████████████▋ | 494/1133 [11:23<14:22, 1.35s/i 44%|████████████████████████████████████████████████████████████████████████████▉ | 495/1133 [11:24<14:29, 1.36s/i 44%|█████████████████████████████████████████████████████████████████████████████ | 496/1133 [11:26<15:19, 1.44s/i 44%|█████████████████████████████████████████████████████████████████████████████▏ | 497/1133 [11:27<14:45, 1.39s/i 44%|█████████████████████████████████████████████████████████████████████████████▎ | 498/1133 [11:29<14:10, 1.34s/i 44%|█████████████████████████████████████████████████████████████████████████████▌ | 499/1133 [11:30<15:48, 1.50s/i 44%|█████████████████████████████████████████████████████████████████████████████▋ | 500/1133 [11:33<17:58, 1.70s/i 44%|█████████████████████████████████████████████████████████████████████████████▊ | 501/1133 [11:34<18:03, 1.71s/i 44%|█████████████████████████████████████████████████████████████████████████████▉ | 502/1133 [11:36<16:32, 1.57s/i 44%|██████████████████████████████████████████████████████████████████████████████▏ | 503/1133 [11:38<17:37, 1.68s/i 44%|██████████████████████████████████████████████████████████████████████████████▎ | 504/1133 [11:39<16:30, 1.57s/i 45%|██████████████████████████████████████████████████████████████████████████████▍ | 505/1133 [11:40<15:08, 1.45s/i 45%|██████████████████████████████████████████████████████████████████████████████▌ | 506/1133 [11:41<14:07, 1.35s/i 45%|██████████████████████████████████████████████████████████████████████████████▊ | 507/1133 [11:43<15:58, 1.53s/i 45%|██████████████████████████████████████████████████████████████████████████████▉ | 508/1133 [11:45<18:34, 1.78s/i 45%|███████████████████████████████████████████████████████████████████████████████ | 509/1133 [11:47<16:53, 1.62s/i 45%|███████████████████████████████████████████████████████████████████████████████▏ | 510/1133 [11:48<15:31, 1.49s/i 45%|███████████████████████████████████████████████████████████████████████████████▍ | 511/1133 [11:49<14:34, 1.41s/i 45%|███████████████████████████████████████████████████████████████████████████████▌ | 512/1133 [11:50<13:58, 1.35s/i 45%|███████████████████████████████████████████████████████████████████████████████▋ | 513/1133 [11:52<15:39, 1.52s/i 45%|███████████████████████████████████████████████████████████████████████████████▊ | 514/1133 [11:54<15:04, 1.46s/i 45%|████████████████████████████████████████████████████████████████████████████████ | 515/1133 [11:56<17:13, 1.67s/i 46%|████████████████████████████████████████████████████████████████████████████████▏ | 516/1133 [11:57<16:38, 1.62s/i 46%|████████████████████████████████████████████████████████████████████████████████▎ | 517/1133 [11:58<14:44, 1.44s/i 46%|████████████████████████████████████████████████████████████████████████████████▍ | 518/1133 [11:59<13:39, 1.33s/i 46%|████████████████████████████████████████████████████████████████████████████████▌ | 519/1133 [12:03<20:48, 2.03s/i 46%|████████████████████████████████████████████████████████████████████████████████▊ | 520/1133 [12:04<18:52, 1.85s/i 46%|████████████████████████████████████████████████████████████████████████████████▉ | 521/1133 [12:06<17:16, 1.69s/i 46%|█████████████████████████████████████████████████████████████████████████████████ | 522/1133 [12:07<14:54, 1.46s/i 46%|█████████████████████████████████████████████████████████████████████████████████▏ | 523/1133 [12:08<15:27, 1.52s/i 46%|█████████████████████████████████████████████████████████████████████████████████▍ | 524/1133 [12:10<15:52, 1.56s/i 46%|█████████████████████████████████████████████████████████████████████████████████▌ | 525/1133 [12:11<15:36, 1.54s/i 46%|█████████████████████████████████████████████████████████████████████████████████▋ | 526/1133 [12:13<14:13, 1.41s/i 47%|█████████████████████████████████████████████████████████████████████████████████▊ | 527/1133 [12:13<12:23, 1.23s/i 47%|██████████████████████████████████████████████████████████████████████████████████ | 528/1133 [12:16<15:16, 1.51s/i 47%|██████████████████████████████████████████████████████████████████████████████████▏ | 529/1133 [12:17<15:40, 1.56s/i 47%|██████████████████████████████████████████████████████████████████████████████████▎ | 530/1133 [12:18<14:22, 1.43s/i 47%|██████████████████████████████████████████████████████████████████████████████████▍ | 531/1133 [12:20<14:34, 1.45s/i 47%|██████████████████████████████████████████████████████████████████████████████████▋ | 532/1133 [12:21<12:57, 1.29s/i 47%|██████████████████████████████████████████████████████████████████████████████████▊ | 533/1133 [12:22<12:55, 1.29s/i 47%|██████████████████████████████████████████████████████████████████████████████████▉ | 534/1133 [12:23<12:03, 1.21s/i 47%|███████████████████████████████████████████████████████████████████████████████████ | 535/1133 [12:24<12:06, 1.22s/i 47%|███████████████████████████████████████████████████████████████████████████████████▎ | 536/1133 [12:26<12:46, 1.28s/i 47%|███████████████████████████████████████████████████████████████████████████████████▍ | 537/1133 [12:27<12:30, 1.26s/i 47%|███████████████████████████████████████████████████████████████████████████████████▌ | 538/1133 [12:28<12:41, 1.28s/i 48%|███████████████████████████████████████████████████████████████████████████████████▋ | 539/1133 [12:30<12:46, 1.29s/i 48%|███████████████████████████████████████████████████████████████████████████████████▉ | 540/1133 [12:31<12:43, 1.29s/i 48%|████████████████████████████████████████████████████████████████████████████████████ | 541/1133 [12:32<13:06, 1.33s/i 48%|████████████████████████████████████████████████████████████████████████████████████▏ | 542/1133 [12:33<12:02, 1.22s/i 48%|████████████████████████████████████████████████████████████████████████████████████▎ | 543/1133 [12:34<11:21, 1.16s/i 48%|████████████████████████████████████████████████████████████████████████████████████▌ | 544/1133 [12:36<11:38, 1.19s/i 48%|████████████████████████████████████████████████████████████████████████████████████▋ | 545/1133 [12:37<11:46, 1.20s/i 48%|████████████████████████████████████████████████████████████████████████████████████▊ | 546/1133 [12:38<11:22, 1.16s/i 48%|████████████████████████████████████████████████████████████████████████████████████▉ | 547/1133 [12:39<12:00, 1.23s/i 48%|█████████████████████████████████████████████████████████████████████████████████████▏ | 548/1133 [12:40<11:38, 1.19s/i 48%|█████████████████████████████████████████████████████████████████████████████████████▎ | 549/1133 [12:41<11:26, 1.17s/i 49%|█████████████████████████████████████████████████████████████████████████████████████▍ | 550/1133 [12:43<11:09, 1.15s/i 49%|█████████████████████████████████████████████████████████████████████████████████████▌ | 551/1133 [12:44<12:08, 1.25s/i 49%|█████████████████████████████████████████████████████████████████████████████████████▋ | 552/1133 [12:45<11:56, 1.23s/i 49%|█████████████████████████████████████████████████████████████████████████████████████▉ | 553/1133 [12:47<12:15, 1.27s/i 49%|██████████████████████████████████████████████████████████████████████████████████████ | 554/1133 [12:48<11:27, 1.19s/i 49%|██████████████████████████████████████████████████████████████████████████████████████▏ | 555/1133 [12:49<10:56, 1.14s/i 49%|██████████████████████████████████████████████████████████████████████████████████████▎ | 556/1133 [12:50<10:34, 1.10s/i 49%|██████████████████████████████████████████████████████████████████████████████████████▌ | 557/1133 [12:51<12:12, 1.27s/i 49%|██████████████████████████████████████████████████████████████████████████████████████▋ | 558/1133 [12:53<12:18, 1.29s/i 49%|██████████████████████████████████████████████████████████████████████████████████████▊ | 559/1133 [12:54<12:31, 1.31s/i 49%|██████████████████████████████████████████████████████████████████████████████████████▉ | 560/1133 [12:55<12:17, 1.29s/i 50%|███████████████████████████████████████████████████████████████████████████████████████▏ | 561/1133 [12:56<11:32, 1.21s/i 50%|███████████████████████████████████████████████████████████████████████████████████████▎ | 562/1133 [12:57<11:06, 1.17s/i 50%|███████████████████████████████████████████████████████████████████████████████████████▍ | 563/1133 [12:58<10:56, 1.15s/i 50%|███████████████████████████████████████████████████████████████████████████████████████▌ | 564/1133 [13:00<10:50, 1.14s/i 50%|███████████████████████████████████████████████████████████████████████████████████████▊ | 565/1133 [13:01<11:51, 1.25s/i 50%|███████████████████████████████████████████████████████████████████████████████████████▉ | 566/1133 [13:02<11:11, 1.18s/i 50%|████████████████████████████████████████████████████████████████████████████████████████ | 567/1133 [13:03<11:25, 1.21s/i 50%|████████████████████████████████████████████████████████████████████████████████████████▏ | 568/1133 [13:05<11:28, 1.22s/i 50%|████████████████████████████████████████████████████████████████████████████████████████▍ | 569/1133 [13:06<10:53, 1.16s/i 50%|████████████████████████████████████████████████████████████████████████████████████████▌ | 570/1133 [13:07<11:03, 1.18s/i 50%|████████████████████████████████████████████████████████████████████████████████████████▋ | 571/1133 [13:08<10:51, 1.16s/i 50%|████████████████████████████████████████████████████████████████████████████████████████▊ | 572/1133 [13:09<10:09, 1.09s/i 51%|█████████████████████████████████████████████████████████████████████████████████████████ | 573/1133 [13:10<10:53, 1.17s/i 51%|█████████████████████████████████████████████████████████████████████████████████████████▏ | 574/1133 [13:12<12:43, 1.37s/i 51%|█████████████████████████████████████████████████████████████████████████████████████████▎ | 575/1133 [13:13<11:39, 1.25s/i 51%|█████████████████████████████████████████████████████████████████████████████████████████▍ | 576/1133 [13:14<11:58, 1.29s/i 51%|█████████████████████████████████████████████████████████████████████████████████████████▋ | 577/1133 [13:16<12:00, 1.30s/i 51%|█████████████████████████████████████████████████████████████████████████████████████████▊ | 578/1133 [13:17<12:22, 1.34s/i 51%|█████████████████████████████████████████████████████████████████████████████████████████▉ | 579/1133 [13:18<11:59, 1.30s/i 51%|██████████████████████████████████████████████████████████████████████████████████████████ | 580/1133 [13:20<13:01, 1.41s/i 51%|██████████████████████████████████████████████████████████████████████████████████████████▎ | 581/1133 [13:22<14:07, 1.54s/i 51%|██████████████████████████████████████████████████████████████████████████████████████████▍ | 582/1133 [13:23<13:06, 1.43s/i 51%|██████████████████████████████████████████████████████████████████████████████████████████▌ | 583/1133 [13:24<11:35, 1.27s/i 52%|██████████████████████████████████████████████████████████████████████████████████████████▋ | 584/1133 [13:26<13:10, 1.44s/i 52%|██████████████████████████████████████████████████████████████████████████████████████████▊ | 585/1133 [13:27<12:37, 1.38s/i 52%|███████████████████████████████████████████████████████████████████████████████████████████ | 586/1133 [13:28<12:07, 1.33s/i 52%|███████████████████████████████████████████████████████████████████████████████████████████▏ | 587/1133 [13:30<12:11, 1.34s/i 52%|███████████████████████████████████████████████████████████████████████████████████████████▎ | 588/1133 [13:31<11:45, 1.29s/i 52%|███████████████████████████████████████████████████████████████████████████████████████████▍ | 589/1133 [13:32<11:13, 1.24s/i 52%|███████████████████████████████████████████████████████████████████████████████████████████▋ | 590/1133 [13:33<10:30, 1.16s/i 52%|███████████████████████████████████████████████████████████████████████████████████████████▊ | 591/1133 [13:35<14:04, 1.56s/i 52%|███████████████████████████████████████████████████████████████████████████████████████████▉ | 592/1133 [13:36<12:38, 1.40s/i 52%|████████████████████████████████████████████████████████████████████████████████████████████ | 593/1133 [13:38<11:50, 1.32s/i 52%|████████████████████████████████████████████████████████████████████████████████████████████▎ | 594/1133 [13:39<11:23, 1.27s/i 53%|████████████████████████████████████████████████████████████████████████████████████████████▍ | 595/1133 [13:40<12:50, 1.43s/i 53%|████████████████████████████████████████████████████████████████████████████████████████████▌ | 596/1133 [13:42<14:18, 1.60s/i 53%|████████████████████████████████████████████████████████████████████████████████████████████▋ | 597/1133 [13:44<13:14, 1.48s/i 53%|████████████████████████████████████████████████████████████████████████████████████████████▉ | 598/1133 [13:45<11:38, 1.31s/i 53%|█████████████████████████████████████████████████████████████████████████████████████████████ | 599/1133 [13:46<10:58, 1.23s/i 53%|█████████████████████████████████████████████████████████████████████████████████████████████▏ | 600/1133 [13:47<11:13, 1.26s/i 53%|█████████████████████████████████████████████████████████████████████████████████████████████▎ | 601/1133 [13:49<13:27, 1.52s/i 53%|█████████████████████████████████████████████████████████████████████████████████████████████▌ | 602/1133 [13:50<12:22, 1.40s/i 53%|█████████████████████████████████████████████████████████████████████████████████████████████▋ | 603/1133 [13:51<11:56, 1.35s/i 53%|█████████████████████████████████████████████████████████████████████████████████████████████▊ | 604/1133 [13:53<11:43, 1.33s/i 53%|█████████████████████████████████████████████████████████████████████████████████████████████▉ | 605/1133 [13:54<11:27, 1.30s/i 53%|██████████████████████████████████████████████████████████████████████████████████████████████▏ | 606/1133 [13:55<11:03, 1.26s/i 54%|██████████████████████████████████████████████████████████████████████████████████████████████▎ | 607/1133 [13:56<10:51, 1.24s/i 54%|██████████████████████████████████████████████████████████████████████████████████████████████▍ | 608/1133 [13:57<10:24, 1.19s/i 54%|██████████████████████████████████████████████████████████████████████████████████████████████▌ | 609/1133 [13:59<11:11, 1.28s/i 54%|██████████████████████████████████████████████████████████████████████████████████████████████▊ | 610/1133 [14:01<13:08, 1.51s/i 54%|██████████████████████████████████████████████████████████████████████████████████████████████▉ | 611/1133 [14:02<12:49, 1.47s/i 54%|███████████████████████████████████████████████████████████████████████████████████████████████ | 612/1133 [14:04<12:34, 1.45s/i 54%|███████████████████████████████████████████████████████████████████████████████████████████████▏ | 613/1133 [14:05<13:17, 1.53s/i 54%|███████████████████████████████████████████████████████████████████████████████████████████████▍ | 614/1133 [14:07<12:34, 1.45s/i 54%|███████████████████████████████████████████████████████████████████████████████████████████████▌ | 615/1133 [14:08<11:44, 1.36s/i 54%|███████████████████████████████████████████████████████████████████████████████████████████████▋ | 616/1133 [14:09<11:24, 1.32s/i 54%|███████████████████████████████████████████████████████████████████████████████████████████████▊ | 617/1133 [14:11<11:41, 1.36s/i 55%|████████████████████████████████████████████████████████████████████████████████████████████████ | 618/1133 [14:12<10:43, 1.25s/i 55%|████████████████████████████████████████████████████████████████████████████████████████████████▏ | 619/1133 [14:13<10:21, 1.21s/i 55%|████████████████████████████████████████████████████████████████████████████████████████████████▎ | 620/1133 [14:15<13:00, 1.52s/i 55%|████████████████████████████████████████████████████████████████████████████████████████████████▍ | 621/1133 [14:16<12:13, 1.43s/i 55%|████████████████████████████████████████████████████████████████████████████████████████████████▌ | 622/1133 [14:17<11:45, 1.38s/i 55%|████████████████████████████████████████████████████████████████████████████████████████████████▊ | 623/1133 [14:19<11:06, 1.31s/i 55%|████████████████████████████████████████████████████████████████████████████████████████████████▉ | 624/1133 [14:19<10:12, 1.20s/i 55%|█████████████████████████████████████████████████████████████████████████████████████████████████ | 625/1133 [14:21<09:47, 1.16s/i 55%|█████████████████████████████████████████████████████████████████████████████████████████████████▏ | 626/1133 [14:22<09:51, 1.17s/i 55%|█████████████████████████████████████████████████████████████████████████████████████████████████▍ | 627/1133 [14:23<10:32, 1.25s/i 55%|█████████████████████████████████████████████████████████████████████████████████████████████████▌ | 628/1133 [14:25<10:47, 1.28s/i 56%|█████████████████████████████████████████████████████████████████████████████████████████████████▋ | 629/1133 [14:27<12:55, 1.54s/i 56%|█████████████████████████████████████████████████████████████████████████████████████████████████▊ | 630/1133 [14:28<11:43, 1.40s/i 56%|██████████████████████████████████████████████████████████████████████████████████████████████████ | 631/1133 [14:29<11:04, 1.32s/i 56%|██████████████████████████████████████████████████████████████████████████████████████████████████▏ | 632/1133 [14:30<10:09, 1.22s/i 56%|██████████████████████████████████████████████████████████████████████████████████████████████████▎ | 633/1133 [14:31<10:57, 1.31s/i 56%|██████████████████████████████████████████████████████████████████████████████████████████████████▍ | 634/1133 [14:32<10:09, 1.22s/i 56%|██████████████████████████████████████████████████████████████████████████████████████████████████▋ | 635/1133 [14:34<10:08, 1.22s/i 56%|██████████████████████████████████████████████████████████████████████████████████████████████████▊ | 636/1133 [14:35<09:25, 1.14s/i 56%|██████████████████████████████████████████████████████████████████████████████████████████████████▉ | 637/1133 [14:36<09:14, 1.12s/i 56%|███████████████████████████████████████████████████████████████████████████████████████████████████ | 638/1133 [14:37<10:43, 1.30s/i 56%|███████████████████████████████████████████████████████████████████████████████████████████████████▎ | 639/1133 [14:38<09:43, 1.18s/i 56%|███████████████████████████████████████████████████████████████████████████████████████████████████▍ | 640/1133 [14:39<09:17, 1.13s/i 57%|███████████████████████████████████████████████████████████████████████████████████████████████████▌ | 641/1133 [14:40<09:20, 1.14s/i 57%|███████████████████████████████████████████████████████████████████████████████████████████████████▋ | 642/1133 [14:42<11:33, 1.41s/i 57%|███████████████████████████████████████████████████████████████████████████████████████████████████▉ | 643/1133 [14:44<11:53, 1.46s/i 57%|████████████████████████████████████████████████████████████████████████████████████████████████████ | 644/1133 [14:46<12:57, 1.59s/i 57%|████████████████████████████████████████████████████████████████████████████████████████████████████▏ | 645/1133 [14:48<13:20, 1.64s/i 57%|████████████████████████████████████████████████████████████████████████████████████████████████████▎ | 646/1133 [14:49<12:24, 1.53s/i 57%|████████████████████████████████████████████████████████████████████████████████████████████████████▌ | 647/1133 [14:50<12:03, 1.49s/i 57%|████████████████████████████████████████████████████████████████████████████████████████████████████▋ | 648/1133 [14:52<11:25, 1.41s/i 57%|████████████████████████████████████████████████████████████████████████████████████████████████████▊ | 649/1133 [14:53<10:25, 1.29s/i 57%|████████████████████████████████████████████████████████████████████████████████████████████████████▉ | 650/1133 [14:55<11:55, 1.48s/i 57%|█████████████████████████████████████████████████████████████████████████████████████████████████████▏ | 651/1133 [14:56<10:46, 1.34s/i 58%|█████████████████████████████████████████████████████████████████████████████████████████████████████▎ | 652/1133 [14:57<10:16, 1.28s/i 58%|█████████████████████████████████████████████████████████████████████████████████████████████████████▍ | 653/1133 [14:58<10:10, 1.27s/i 58%|█████████████████████████████████████████████████████████████████████████████████████████████████████▌ | 654/1133 [14:59<10:10, 1.27s/i 58%|█████████████████████████████████████████████████████████████████████████████████████████████████████▋ | 655/1133 [15:01<10:33, 1.32s/i 58%|█████████████████████████████████████████████████████████████████████████████████████████████████████▉ | 656/1133 [15:02<09:33, 1.20s/i 58%|██████████████████████████████████████████████████████████████████████████████████████████████████████ | 657/1133 [15:04<11:31, 1.45s/i 58%|██████████████████████████████████████████████████████████████████████████████████████████████████████▏ | 658/1133 [15:05<11:17, 1.43s/i 58%|██████████████████████████████████████████████████████████████████████████████████████████████████████▎ | 659/1133 [15:06<10:38, 1.35s/i 58%|██████████████████████████████████████████████████████████████████████████████████████████████████████▌ | 660/1133 [15:07<09:54, 1.26s/i 58%|██████████████████████████████████████████████████████████████████████████████████████████████████████▋ | 661/1133 [15:08<09:49, 1.25s/i 58%|██████████████████████████████████████████████████████████████████████████████████████████████████████▊ | 662/1133 [15:10<09:44, 1.24s/i 59%|██████████████████████████████████████████████████████████████████████████████████████████████████████▉ | 663/1133 [15:11<09:43, 1.24s/i 59%|███████████████████████████████████████████████████████████████████████████████████████████████████████▏ | 664/1133 [15:12<09:44, 1.25s/i 59%|███████████████████████████████████████████████████████████████████████████████████████████████████████▎ | 665/1133 [15:13<09:34, 1.23s/i 59%|███████████████████████████████████████████████████████████████████████████████████████████████████████▍ | 666/1133 [15:15<09:59, 1.28s/i 59%|███████████████████████████████████████████████████████████████████████████████████████████████████████▌ | 667/1133 [15:16<09:32, 1.23s/i 59%|███████████████████████████████████████████████████████████████████████████████████████████████████████▊ | 668/1133 [15:17<09:23, 1.21s/i 59%|███████████████████████████████████████████████████████████████████████████████████████████████████████▉ | 669/1133 [15:18<08:52, 1.15s/i 59%|████████████████████████████████████████████████████████████████████████████████████████████████████████ | 670/1133 [15:24<20:39, 2.68s/i 59%|████████████████████████████████████████████████████████████████████████████████████████████████████████▏ | 671/1133 [15:25<17:16, 2.24s/i 59%|████████████████████████████████████████████████████████████████████████████████████████████████████████▍ | 672/1133 [15:27<14:41, 1.91s/i 59%|████████████████████████████████████████████████████████████████████████████████████████████████████████▌ | 673/1133 [15:28<14:26, 1.88s/i 59%|████████████████████████████████████████████████████████████████████████████████████████████████████████▋ | 674/1133 [15:30<12:33, 1.64s/i 60%|████████████████████████████████████████████████████████████████████████████████████████████████████████▊ | 675/1133 [15:31<11:12, 1.47s/i 60%|█████████████████████████████████████████████████████████████████████████████████████████████████████████ | 676/1133 [15:32<10:13, 1.34s/i 60%|█████████████████████████████████████████████████████████████████████████████████████████████████████████▏ | 677/1133 [15:33<09:30, 1.25s/i 60%|█████████████████████████████████████████████████████████████████████████████████████████████████████████▎ | 678/1133 [15:34<09:08, 1.21s/i 60%|█████████████████████████████████████████████████████████████████████████████████████████████████████████▍ | 679/1133 [15:35<08:40, 1.15s/i 60%|█████████████████████████████████████████████████████████████████████████████████████████████████████████▋ | 680/1133 [15:36<08:20, 1.11s/i 60%|█████████████████████████████████████████████████████████████████████████████████████████████████████████▊ | 681/1133 [15:37<08:40, 1.15s/i 60%|█████████████████████████████████████████████████████████████████████████████████████████████████████████▉ | 682/1133 [15:38<08:32, 1.14s/i 60%|██████████████████████████████████████████████████████████████████████████████████████████████████████████ | 683/1133 [15:40<09:12, 1.23s/i 60%|██████████████████████████████████████████████████████████████████████████████████████████████████████████▎ | 684/1133 [15:41<08:39, 1.16s/i 60%|██████████████████████████████████████████████████████████████████████████████████████████████████████████▍ | 685/1133 [15:42<09:10, 1.23s/i 61%|██████████████████████████████████████████████████████████████████████████████████████████████████████████▌ | 686/1133 [15:43<08:37, 1.16s/i 61%|██████████████████████████████████████████████████████████████████████████████████████████████████████████▋ | 687/1133 [15:45<09:52, 1.33s/i 61%|██████████████████████████████████████████████████████████████████████████████████████████████████████████▊ | 688/1133 [15:46<09:11, 1.24s/i 61%|███████████████████████████████████████████████████████████████████████████████████████████████████████████ | 689/1133 [15:47<09:06, 1.23s/i 61%|███████████████████████████████████████████████████████████████████████████████████████████████████████████▏ | 690/1133 [15:48<08:42, 1.18s/i 61%|███████████████████████████████████████████████████████████████████████████████████████████████████████████▎ | 691/1133 [15:49<07:52, 1.07s/i 61%|███████████████████████████████████████████████████████████████████████████████████████████████████████████▍ | 692/1133 [15:50<07:52, 1.07s/i 61%|███████████████████████████████████████████████████████████████████████████████████████████████████████████▋ | 693/1133 [15:51<08:36, 1.17s/i 61%|███████████████████████████████████████████████████████████████████████████████████████████████████████████▊ | 694/1133 [15:53<08:58, 1.23s/i 61%|███████████████████████████████████████████████████████████████████████████████████████████████████████████▉ | 695/1133 [15:54<08:57, 1.23s/i 61%|████████████████████████████████████████████████████████████████████████████████████████████████████████████ | 696/1133 [15:55<08:58, 1.23s/i 62%|████████████████████████████████████████████████████████████████████████████████████████████████████████████▎ | 697/1133 [15:57<09:55, 1.37s/i 62%|████████████████████████████████████████████████████████████████████████████████████████████████████████████▍ | 698/1133 [15:58<09:55, 1.37s/i 62%|████████████████████████████████████████████████████████████████████████████████████████████████████████████▌ | 699/1133 [15:59<09:29, 1.31s/i 62%|████████████████████████████████████████████████████████████████████████████████████████████████████████████▋ | 700/1133 [16:01<09:10, 1.27s/i 62%|████████████████████████████████████████████████████████████████████████████████████████████████████████████▉ | 701/1133 [16:02<09:01, 1.25s/i 62%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████ | 702/1133 [16:04<12:01, 1.67s/i 62%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████▏ | 703/1133 [16:06<10:58, 1.53s/i 62%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████▎ | 704/1133 [16:07<10:03, 1.41s/i 62%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████▌ | 705/1133 [16:08<09:25, 1.32s/i 62%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████▋ | 706/1133 [16:09<09:53, 1.39s/i 62%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████▊ | 707/1133 [16:10<09:06, 1.28s/i 62%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████▉ | 708/1133 [16:12<09:22, 1.32s/i 63%|██████████████████████████████████████████████████████████████████████████████████████████████████████████████▏ | 709/1133 [16:13<09:47, 1.39s/i 63%|██████████████████████████████████████████████████████████████████████████████████████████████████████████████▎ | 710/1133 [16:15<10:33, 1.50s/i 63%|██████████████████████████████████████████████████████████████████████████████████████████████████████████████▍ | 711/1133 [16:16<09:49, 1.40s/i 63%|██████████████████████████████████████████████████████████████████████████████████████████████████████████████▌ | 712/1133 [16:18<09:41, 1.38s/i 63%|██████████████████████████████████████████████████████████████████████████████████████████████████████████████▊ | 713/1133 [16:19<09:57, 1.42s/i 63%|██████████████████████████████████████████████████████████████████████████████████████████████████████████████▉ | 714/1133 [16:20<09:01, 1.29s/i 63%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████ | 715/1133 [16:21<08:35, 1.23s/i 63%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████▏ | 716/1133 [16:23<09:09, 1.32s/i 63%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████▍ | 717/1133 [16:24<08:29, 1.23s/i 63%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████▌ | 718/1133 [16:26<09:36, 1.39s/i 63%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████▋ | 719/1133 [16:27<09:01, 1.31s/i 64%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████▊ | 720/1133 [16:28<08:37, 1.25s/i 64%|████████████████████████████████████████████████████████████████████████████████████████████████████████████████ | 721/1133 [16:29<07:54, 1.15s/i 64%|████████████████████████████████████████████████████████████████████████████████████████████████████████████████▏ | 722/1133 [16:30<07:52, 1.15s/i 64%|████████████████████████████████████████████████████████████████████████████████████████████████████████████████▎ | 723/1133 [16:31<07:57, 1.16s/i 64%|████████████████████████████████████████████████████████████████████████████████████████████████████████████████▍ | 724/1133 [16:33<08:38, 1.27s/i 64%|████████████████████████████████████████████████████████████████████████████████████████████████████████████████▌ | 725/1133 [16:35<10:07, 1.49s/i 64%|████████████████████████████████████████████████████████████████████████████████████████████████████████████████▊ | 726/1133 [16:36<09:37, 1.42s/i 64%|████████████████████████████████████████████████████████████████████████████████████████████████████████████████▉ | 727/1133 [16:38<11:17, 1.67s/i 64%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████ | 728/1133 [16:40<10:59, 1.63s/i 64%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████▏ | 729/1133 [16:41<10:01, 1.49s/i 64%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████▍ | 730/1133 [16:42<09:52, 1.47s/i 65%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████▌ | 731/1133 [16:43<09:00, 1.34s/i 65%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████▋ | 732/1133 [16:44<08:47, 1.32s/i 65%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████▊ | 733/1133 [16:46<09:19, 1.40s/i 65%|██████████████████████████████████████████████████████████████████████████████████████████████████████████████████ | 734/1133 [16:47<08:45, 1.32s/i 65%|██████████████████████████████████████████████████████████████████████████████████████████████████████████████████▏ | 735/1133 [16:49<09:30, 1.43s/i 65%|██████████████████████████████████████████████████████████████████████████████████████████████████████████████████▎ | 736/1133 [16:50<09:29, 1.43s/i 65%|██████████████████████████████████████████████████████████████████████████████████████████████████████████████████▍ | 737/1133 [16:51<08:44, 1.32s/i 65%|██████████████████████████████████████████████████████████████████████████████████████████████████████████████████▋ | 738/1133 [16:53<08:49, 1.34s/i 65%|██████████████████████████████████████████████████████████████████████████████████████████████████████████████████▊ | 739/1133 [16:54<07:54, 1.20s/i 65%|██████████████████████████████████████████████████████████████████████████████████████████████████████████████████▉ | 740/1133 [16:55<07:53, 1.20s/i 65%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████████ | 741/1133 [16:56<08:04, 1.24s/i 65%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████████▎ | 742/1133 [16:57<07:39, 1.18s/i 66%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████████▍ | 743/1133 [16:58<07:43, 1.19s/i 66%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████████▌ | 744/1133 [16:59<07:27, 1.15s/i 66%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████████▋ | 745/1133 [17:01<08:26, 1.30s/i 66%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████████▉ | 746/1133 [17:03<09:13, 1.43s/i 66%|████████████████████████████████████████████████████████████████████████████████████████████████████████████████████ | 747/1133 [17:04<08:42, 1.35s/i 66%|████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▏ | 748/1133 [17:06<08:54, 1.39s/i 66%|████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▎ | 749/1133 [17:07<08:55, 1.39s/i 66%|████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▌ | 750/1133 [17:08<09:08, 1.43s/i 66%|████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▋ | 751/1133 [17:10<09:07, 1.43s/i 66%|████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▊ | 752/1133 [17:11<08:50, 1.39s/i 66%|████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▉ | 753/1133 [17:12<08:18, 1.31s/i 67%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▏ | 754/1133 [17:14<09:08, 1.45s/i 67%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▎ | 755/1133 [17:15<08:55, 1.42s/i 67%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▍ | 756/1133 [17:17<08:18, 1.32s/i 67%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▌ | 757/1133 [17:18<07:52, 1.26s/i 67%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▋ | 758/1133 [17:19<08:46, 1.40s/i 67%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▉ | 759/1133 [17:21<08:23, 1.34s/i 67%|██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████ | 760/1133 [17:21<07:31, 1.21s/i 67%|██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▏ | 761/1133 [17:23<07:42, 1.24s/i 67%|██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▎ | 762/1133 [17:24<07:11, 1.16s/i 67%|██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▌ | 763/1133 [17:25<07:08, 1.16s/i 67%|██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▋ | 764/1133 [17:26<07:00, 1.14s/i 68%|██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▊ | 765/1133 [17:28<07:53, 1.29s/i 68%|██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▉ | 766/1133 [17:29<08:42, 1.42s/i 68%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▏ | 767/1133 [17:31<08:28, 1.39s/i 68%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▎ | 768/1133 [17:33<10:33, 1.74s/i 68%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▍ | 769/1133 [17:35<10:09, 1.68s/i 68%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▌ | 770/1133 [17:36<09:26, 1.56s/i 68%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▊ | 771/1133 [17:37<08:53, 1.47s/i 68%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▉ | 772/1133 [17:39<09:02, 1.50s/i 68%|████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████ | 773/1133 [17:41<09:38, 1.61s/i 68%|████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▏ | 774/1133 [17:44<12:01, 2.01s/i 68%|████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▍ | 775/1133 [17:48<16:39, 2.79s/i 68%|████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▌ | 776/1133 [17:51<16:18, 2.74s/i 69%|████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▋ | 777/1133 [17:54<16:04, 2.71s/i 69%|████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▊ | 778/1133 [17:56<16:09, 2.73s/i 69%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████ | 779/1133 [17:59<15:39, 2.65s/i 69%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▏ | 780/1133 [18:02<15:48, 2.69s/i 69%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▎ | 781/1133 [18:05<16:20, 2.79s/i 69%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▍ | 782/1133 [18:07<15:35, 2.66s/i 69%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▋ | 783/1133 [18:11<18:25, 3.16s/i 69%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▊ | 784/1133 [18:14<17:47, 3.06s/i 69%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▉ | 785/1133 [18:17<16:50, 2.90s/i 69%|██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████ | 786/1133 [18:19<16:06, 2.79s/i 69%|██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▎ | 787/1133 [18:22<16:18, 2.83s/i 70%|██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▍ | 788/1133 [18:25<15:48, 2.75s/i 70%|██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▌ | 789/1133 [18:27<15:34, 2.72s/i 70%|██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▋ | 790/1133 [18:30<16:06, 2.82s/i 70%|██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▊ | 791/1133 [18:33<16:01, 2.81s/i 70%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████ | 792/1133 [18:36<15:43, 2.77s/i 70%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▏ | 793/1133 [18:40<17:27, 3.08s/i 70%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▎ | 794/1133 [18:42<16:24, 2.90s/i 70%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▍ | 795/1133 [18:45<15:41, 2.78s/i 70%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▋ | 796/1133 [18:47<15:10, 2.70s/i 70%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▊ | 797/1133 [18:50<15:03, 2.69s/i 70%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▉ | 798/1133 [18:52<13:27, 2.41s/i 71%|████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████ | 799/1133 [18:53<12:24, 2.23s/i 71%|████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▎ | 800/1133 [18:55<11:39, 2.10s/i 71%|████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▍ | 801/1133 [18:57<11:04, 2.00s/i 71%|████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▌ | 802/1133 [18:59<10:44, 1.95s/i 71%|████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▋ | 803/1133 [19:01<11:09, 2.03s/i 71%|████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▉ | 804/1133 [19:03<11:26, 2.09s/i 71%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████ | 805/1133 [19:05<10:59, 2.01s/i 71%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▏ | 806/1133 [19:07<11:09, 2.05s/i 71%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▎ | 807/1133 [19:09<10:45, 1.98s/i 71%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▌ | 808/1133 [19:11<10:48, 1.99s/i 71%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▋ | 809/1133 [19:13<10:32, 1.95s/i 71%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▊ | 810/1133 [19:15<10:05, 1.87s/i 72%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▉ | 811/1133 [19:16<09:47, 1.83s/i 72%|██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▏ | 812/1133 [19:18<09:59, 1.87s/i 72%|██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▎ | 813/1133 [19:20<09:57, 1.87s/i 72%|██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▍ | 814/1133 [19:22<09:46, 1.84s/i 72%|██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▌ | 815/1133 [19:24<10:54, 2.06s/i 72%|██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▊ | 816/1133 [19:26<10:36, 2.01s/i 72%|██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▉ | 817/1133 [19:28<10:02, 1.91s/i 72%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████ | 818/1133 [19:30<10:05, 1.92s/i 72%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▏ | 819/1133 [19:32<09:51, 1.88s/i 72%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▍ | 820/1133 [19:33<09:24, 1.80s/i 72%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▌ | 821/1133 [19:35<08:53, 1.71s/i 73%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▋ | 822/1133 [19:37<08:48, 1.70s/i 73%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▊ | 823/1133 [19:39<09:55, 1.92s/i 73%|████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████ | 824/1133 [19:41<09:45, 1.89s/i 73%|████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▏ | 825/1133 [19:43<09:23, 1.83s/i 73%|████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▎ | 826/1133 [19:44<09:26, 1.84s/i 73%|████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▍ | 827/1133 [19:46<08:58, 1.76s/i 73%|████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▌ | 828/1133 [19:48<08:51, 1.74s/i 73%|████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▊ | 829/1133 [19:50<10:10, 2.01s/i 73%|████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▉ | 830/1133 [19:52<10:26, 2.07s/i 73%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████ | 831/1133 [19:55<10:21, 2.06s/i 73%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▏ | 832/1133 [19:56<09:46, 1.95s/i 74%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▍ | 833/1133 [19:59<11:16, 2.26s/i 74%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▌ | 834/1133 [20:01<10:29, 2.11s/i 74%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▋ | 835/1133 [20:03<10:13, 2.06s/i 74%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▊ | 836/1133 [20:05<10:28, 2.12s/i 74%|██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████ | 837/1133 [20:09<13:22, 2.71s/i 74%|██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▏ | 838/1133 [20:12<12:44, 2.59s/i 74%|██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▎ | 839/1133 [20:13<11:32, 2.35s/i 74%|██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▍ | 840/1133 [20:15<11:01, 2.26s/i 74%|██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▋ | 841/1133 [20:17<10:18, 2.12s/i 74%|██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▊ | 842/1133 [20:19<10:12, 2.11s/i 74%|██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▉ | 843/1133 [20:21<10:03, 2.08s/i 74%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████ | 844/1133 [20:24<10:19, 2.14s/i 75%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▎ | 845/1133 [20:25<09:44, 2.03s/i 75%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▍ | 846/1133 [20:27<09:41, 2.03s/i 75%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▌ | 847/1133 [20:29<09:23, 1.97s/i 75%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▋ | 848/1133 [20:31<09:19, 1.96s/i 75%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▉ | 849/1133 [20:33<08:40, 1.83s/i 75%|████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████ | 850/1133 [20:35<08:43, 1.85s/i 75%|████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▏ | 851/1133 [20:36<08:17, 1.76s/i 75%|████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▎ | 852/1133 [20:38<08:04, 1.72s/i 75%|████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▌ | 853/1133 [20:40<08:43, 1.87s/i 75%|████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▋ | 854/1133 [20:42<08:43, 1.88s/i 75%|████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▊ | 855/1133 [20:44<08:47, 1.90s/i 76%|████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▉ | 856/1133 [20:48<11:49, 2.56s/i 76%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▎ | 858/1133 [20:52<10:38, 2.32s/i 76%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▍ | 859/1133 [20:54<10:05, 2.21s/i 76%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▌ ████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▌ | 860/1133 [20:56<09:18, 2.04s/i 76%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▋ | 861/1133 [20:58<09:59, 2.20s/i 76%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▉ | 862/1133 [21:01<09:57, 2.21s/i 76%|██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████ | 863/1133 [21:04<11:40, 2.59s/i 76%|██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████ | 863/1133 [21:04<11:40, 2.59s/i 76%|██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▏ | 864/1133 [21:07<11:37, 2.59s/i 76%|██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▎ | 865/1133 [21:10<12:09, 2.72s/i 76%|██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▌ | 866/1133 [21:13<12:27, 2.80s/i 77%|██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▋ | 867/1133 [21:16<12:27, 2.81s/i 77%|██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▊ | 868/1133 [21:18<12:17, 2.78s/i 77%|██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▊ | 868/1133 [21:18<12:17, 2.78s/i 77%|██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▉ | 869/1133 [21:21<12:07, 2.76s/i 77%|███████████████████████████████100%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 1133/1133 [30:06<00:00, 1.59s/it]
-lty': 0.9654655435541387, 'length_ratio': 0.9660483603842331, 'translation_length': 29165, 'reference_length': 30190}, 'rouge_scores': {'rouge1': 0.4252666895334968, 'rouge2': 0.17680805583201015, 'rougeL': 0.37056105*** Evaluating with num_shots: 1
-100%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 1133/1133 [29:35<00:00, 1.57s/it]
-gpt-4o-mini/shots-01 metrics: {'meteor': 0.37721414424357197, 'bleu_scores': {'bleu': 0.12013402254992751, 'precisions': [0.4451597103173215, 0.16918032786885245, 0.08121750351056967, 0.04263995565761343], 'brevity_penalty': 0.945329032077754, 'length_ratio': 0.9467704537926466, 'translation_length': 28583, 'reference_length': 30190}, 'rouge_scores': {'rouge1': 0.4215349536613707, 'rouge2': 0.17753363548835494, 'rougeL': 0.3673196038986237, 'rougeLsum': 0.36792396155259355}, 'accuracy': 0.00088261253309797, 'correct_ids': [77]}
-*** Evaluating with num_shots: 3
- 7%|████████████▍ | 79/1133 [02:01<24:50, 1.41s/it]
-
- 8%|█████████████▉ | 89/1133 [02:19<28:02, 1.61s/it]
-100%|████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 1133/1133 [24:18<00:00, 1.29s/it]
-gpt-4o-mini/shots-03 metrics: {'meteor': 0.3772985230936086, 'bleu_scores': {'bleu': 0.12400311006855895, 'precisions': [0.45071868583162217, 0.17486076789731864, 0.08617642538804364, 0.045846190838776904], 'brevity_penalty': 0.9334910493935458, 'length_ratio': 0.9356078171579993, 'translation_length': 28246, 'reference_length': 30190}, 'rouge_scores': {'rouge1': 0.4230629273079418, 'rouge2': 0.1818697368972046, 'rougeL': 0.3679541363941613, 'rougeLsum': 0.36851392679500217}, 'accuracy': 0.00176522506619594, 'correct_ids': [77, 364]}
-*** Evaluating with num_shots: 5
-100%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 1133/1133 [22:44<00:00, 1.20s/it]
-gpt-4o-mini/shots-05 metrics: {'meteor': 0.35541821046691263, 'bleu_scores': {'bleu': 0.1202464326274801, 'precisions': [0.45601469926503674, 0.17818680242803994, 0.08953701815215175, 0.04873692268435825], 'brevity_penalty': 0.8762810584020014, 'length_ratio': 0.8833388539251408, 'translation_length': 26668, 'reference_length': 30190}, 'rouge_scores': {'rouge1': 0.39742045762711026, 'rouge2': 0.17405508986831186, 'rougeL': 0.34719227324954327, 'rougeLsum': 0.34741865988090387}, 'accuracy': 0.00088261253309797, 'correct_ids': [77]}
-*** Evaluating with num_shots: 10
-100%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 1133/1133 [22:26<00:00, 1.19s/it]
-gpt-4o-mini/shots-10 metrics: {'meteor': 0.37335968903521094, 'bleu_scores': {'bleu': 0.1257600824824953, 'precisions': [0.4555427667074311, 0.1784093891784469, 0.0895703125, 0.04844755928612175], 'brevity_penalty': 0.9176923261709347, 'length_ratio': 0.9209009605829745, 'translation_length': 27802, 'reference_length': 30190}, 'rouge_scores': {'rouge1': 0.41853820668198777, 'rouge2': 0.18415851465475241, 'rougeL': 0.3652538618630646, 'rougeLsum': 0.36619019409341136}, 'accuracy': 0.00176522506619594, 'correct_ids': [77, 364]}
-*** Evaluating with num_shots: 50
-100%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 1133/1133 [24:21<00:00, 1.29s/it]
-gpt-4o-mini/shots-50 metrics: {'meteor': 0.4044690970661121, 'bleu_scores': {'bleu': 0.13972883920222515, 'precisions': [0.4703562928492771, 0.1934266044858983, 0.10019297568506368, 0.05587132664167372], 'brevity_penalty': 0.9301300912908947, 'length_ratio': 0.9324610798277575, 'translation_length': 28151, 'reference_length': 30190}, 'rouge_scores': {'rouge1': 0.44391562502472376, 'rouge2': 0.20449952563468665, 'rougeL': 0.39138256897537294, 'rougeLsum': 0.39157398755630557}, 'accuracy': 0.00353045013239188, 'correct_ids': [77, 364, 567, 1000]}
+version https://git-lfs.github.com/spec/v1
+oid sha256:06725451837b1fc37701efb01f5227b1a93ffa2b57ec4ca87b8a51cce1999754
+size 300766
diff --git a/logs/openai-gpt-4o.txt b/logs/openai-gpt-4o.txt
index 228eac34c0d56043b218dd922a944375ccb7b967..7d8f0d3c9c157f32a101b32a59da322ec324acb7 100644
--- a/logs/openai-gpt-4o.txt
+++ b/logs/openai-gpt-4o.txt
@@ -1,74 +1,3 @@
-loading env vars from: D:\code\projects\rapget-translation\.env
-Adding D:\code\projects\rapget-translation to sys.path
-C:\Users\dongh\.conda\envs\rapget\Lib\site-packages\threadpoolctl.py:1214: RuntimeWarning:
-Found Intel OpenMP ('libiomp') and LLVM OpenMP ('libomp') loaded at
-the same time. Both libraries are known to be incompatible and this
-can cause random crashes or deadlocks on Linux when loaded in the
-same Python program.
-Using threadpoolctl may cause crashes or deadlocks. For more
-information and possible workarounds, please see
- https://github.com/joblib/threadpoolctl/blob/master/multiple_openmp.md
-
- warnings.warn(msg, RuntimeWarning)
-[nltk_data] Downloading package wordnet to
-[nltk_data] C:\Users\dongh\AppData\Roaming\nltk_data...
-[nltk_data] Package wordnet is already up-to-date!
-[nltk_data] Downloading package punkt to
-[nltk_data] C:\Users\dongh\AppData\Roaming\nltk_data...
-[nltk_data] Package punkt is already up-to-date!
-[nltk_data] Downloading package omw-1.4 to
-[nltk_data] C:\Users\dongh\AppData\Roaming\nltk_data...
-[nltk_data] Package omw-1.4 is already up-to-date!
-loading: D:\code\projects\rapget-translation\eval_modules\calc_repetitions.py
-loading D:\code\projects\rapget-translation\llm_toolkit\translation_utils.py
-[nltk_data] Downloading package wordnet to
-[nltk_data] C:\Users\dongh\AppData\Roaming\nltk_data...
-[nltk_data] Package wordnet is already up-to-date!
-[nltk_data] Downloading package punkt to
-[nltk_data] C:\Users\dongh\AppData\Roaming\nltk_data...
-[nltk_data] Package punkt is already up-to-date!
-[nltk_data] Downloading package omw-1.4 to
-[nltk_data] C:\Users\dongh\AppData\Roaming\nltk_data...
-[nltk_data] Package omw-1.4 is already up-to-date!
-gpt-4o datasets/mac/mac.tsv results/mac-results_few_shots_openai.csv 300
-Evaluating model: gpt-4o
-loading train/test data files
-DatasetDict({
- train: Dataset({
- features: ['chinese', 'english'],
- num_rows: 4528
- })
- test: Dataset({
- test: Dataset({
- features: ['chinese', 'english'],
- num_rows: 1133
- })
-})
---------------------------------------------------
-chinese: 老耿端起枪,眯缝起一只三角眼,一搂扳机响了枪,冰雹般的金麻雀劈哩啪啦往下落,铁砂子在柳枝间飞迸着,嚓嚓有声。
-chinese: 老耿端起枪,眯缝起一只三角眼,一搂扳机响了枪,冰雹般的金麻雀劈哩啪啦往下落,铁砂子在柳枝间飞迸着,嚓嚓有声。
---------------------------------------------------
-english: Old Geng picked up his shotgun, squinted, and pulled the trigger. Two sparrows crashed to the ground like hailstones as shotgun pellets tore noisily through the branches.
-*** Evaluating with num_shots: 0
-*** Evaluating with num_shots: 0
-100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 1133/1133 [28:52<00:00, 1.53s/it]
-gpt-4o/shots-00 metrics: {'meteor': 0.3797419877414444, 'bleu_scores': {'bleu': 0.12054600115274576, 'precisions': [0.4395170970950372, 0.1657507850413931, 0.08008175399479747, 0.041705426356589144], 'brevity_penalty': 0.965191371371961, 'length_ratio': 0.965783371977476, 'translation_length': 29157, 'reference_length': 30190}, 'rouge_scores': {'rouge1': 0.42488525198918325, 'rouge2': 0.17659595999851255, 'rougeL': 0.37036814222422193, 'rougeLsum': 0.37043557409027883}, 'accuracy': 0.00088261253309797, 'correct_ids': [77]}
-*** Evaluating with num_shots: 1
-100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 1133/1133 [22:44<00:00, 1.20s/it]
-gpt-4o/shots-01 metrics: {'meteor': 0.37588586538591867, 'bleu_scores': {'bleu': 0.12049862468096047, 'precisions': [0.4438186524872315, 0.16850617418861327, 0.08162258566387129, 0.043228692450813504], 'brevity_penalty': 0.9454338245859127, 'length_ratio': 0.9468698244451805, 'translation_length': 28586, 'reference_length': 30190}, 'rouge_scores': {'rouge1': 0.4200247346821462, 'rouge2': 0.17611482166851536, 'rougeL': 0.36555347015620193, 'rougeLsum': 0.36597227925335113}, 'accuracy': 0.00088261253309797, 'correct_ids': [77]}
-*** Evaluating with num_shots: 3
-100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 1133/1133 [38:45<00:00, 2.05s/it]
-gpt-4o/shots-03 metrics: {'meteor': 0.3768512103553621, 'bleu_scores': {'bleu': 0.12408746322526747, 'precisions': [0.4504073680481757, 0.17455806915894748, 0.08641500730375952, 0.04606687515034881], 'brevity_penalty': 0.9329257300005195, 'length_ratio': 0.9350778403444849, 'translation_length': 28230, 'reference_length': 30190}, 'rouge_scores': {'rouge1': 0.42185440095437376, 'rouge2': 0.18099296897772787, 'rougeL': 0.36683121325656565572, 'rougeLsum': 0.36692420445626067}, 'accuracy': 0.00088261253309797, 'correct_ids': [77]}
-*** Evaluating with num_shots: 5
-100%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 1133/1133 [31:48<00:00, 1.68s/it]
-gpt-4o/shots-05 metrics: {'meteor': 0.35772544915145654, 'bleu_scores': {'bleu': 0.12169683347842021, 'precisions': [0.45675271230826786, 0.1799429620658671, 0.0908092273892347, 0.04932145886344359], 'brevity_penalty': 0.8785850406914042, 'length_ratio': 0.8853925140775091, 'translation_length': 26730, 'reference_length': 30190}, 'rouge_scores': {'rouge1': 0.3989536343087876, 'rouge2': 0.17450105082463535, 'rougeL': 0.348320055666115, 'rougeLsum': 0.3483328999510906}, 'accuracy': 0.00088261253309797, 'correct_ids': [77]}
-*** Evaluating with num_shots: 10
- 'rougeLsum': 0.3483328999510906}, 'accuracy': 0.00088261253309797, 'correct_ids': [77]}
-*** Evaluating with num_shots: 10
- 'rougeLsum': 0.3483328999510906}, 'accuracy': 0.00088261253309797, 'correct_ids': [77]}
-*** Evaluating with num_shots: 10
-100%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 1133/1133 [33:48<00:00, 1.79s/it]
-gpt-4o/shots-10 metrics: {'meteor': 0.3746444651189953, 'bleu_scores': {'bleu': 0.12498238983123719, 'precisions': [0.45538813929351135, 0.17677558937630558, 0.08810041971086585, 0.04747233145498034], 'brevity_penalty': 0.9226631755170949, 'length_ratio': 0.9255051341503809, 'translation_length': 27941, 'reference_length': 30190}, 'rouge_scores': {'rouge1': 0.42057276805902843, 'rouge2': 0.182701868068981, 'rougeL': 0.3668754130715727, 'rougeLsum': 0.3673183260659394}, 'accuracy': 0.00176522506619594, 'correct_ids': [77, 364]}
-*** Evaluating with num_shots: 50
-100%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 1133/1133 [38:15<00:00, 2.03s/it]
-gpt-4o/shots-50 metrics: {'meteor': 0.40413933252744955, 'bleu_scores': {'bleu': 0.13782450337569063, 'precisions': [0.4695234708392603, 0.19261125727201986, 0.09873251410464487, 0.05424823410696267], 'brevity_penalty': 0.9290310787259491, 'length_ratio': 0.9314342497515734, 'translation_length': 28120, 'reference_length': 30190}, 'rouge_scores': {'rouge1': 0.44343703034704307, 'rouge2': 0.20310004059554654, 'rougeL': 0.3908878454222482, 'rougeLsum': 0.39082492657743595}, 'accuracy': 0.00353045013239188, 'correct_ids': [77, 364, 567, 1000]}
+version https://git-lfs.github.com/spec/v1
+oid sha256:ad80c611cc68e4bca4120d818e49a283694a72c8b1dc71abe908ec8dd68e4497
+size 9795
diff --git a/notebooks/00b_Data Analysis_Few_Shots.ipynb b/notebooks/00b_Data Analysis_Few_Shots.ipynb
index 54401406900fac540aa9420635d5d9644dee4ea9..90b1787e7469ff1cf8f52b1d0d79faf81f09eed0 100644
--- a/notebooks/00b_Data Analysis_Few_Shots.ipynb
+++ b/notebooks/00b_Data Analysis_Few_Shots.ipynb
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:4062aa5271a5e14210e73d9ce344cb49dcbb126429fa370c68f8e38725840121
-size 593498
+oid sha256:5c9785edd77e41276edd7d949b04796bb3a2b98fbf4efc56049f074ef0c74e39
+size 645130
diff --git a/results/mac-results_few_shots_metrics.csv b/results/mac-results_few_shots_metrics.csv
index f07bd1ab99f5ff16cecf6f7ee819286cca0b4110..2d06a8b7ca9126c5d28b9b29e6f8b7eb495285cf 100644
--- a/results/mac-results_few_shots_metrics.csv
+++ b/results/mac-results_few_shots_metrics.csv
@@ -1,23 +1,29 @@
-model,shots,meteor,bleu_1,rouge_l,ews_score,repetition_score,total_repetitions,rap,num_max_output_tokens
-01-ai/Yi-1.5-9B-Chat,0,0.2624042529095214,0.052402107437040435,0.22702109917009206,0.0088261253309797,1.593115622241836,1.6019417475728155,0.24649759532229093,18
-01-ai/Yi-1.5-9B-Chat,1,0.34870107586750904,0.08089424511255362,0.32734221074629044,0.0,0.41394527802294795,0.41394527802294795,0.3426649332614599,17
-01-ai/Yi-1.5-9B-Chat,3,0.32640977691198636,0.055279846527263934,0.2928978370489262,0.0,0.8570167696381289,0.8570167696381289,0.3151554166830832,41
-01-ai/Yi-1.5-9B-Chat,5,0.34766805202103457,0.08282971728232061,0.3267409773412665,0.0,0.1703442188879082,0.1703442188879082,0.3451362525721807,12
-01-ai/Yi-1.5-9B-Chat,10,0.3404245874451134,0.0874799371333584,0.3186285587310857,0.0,0.33451015004413065,0.33451015004413065,0.335628491165567,9
-Qwen/Qwen2-72B-Instruct,0,0.4003638205699929,0.12223832517678616,0.3843308919636922,0.0,0.19593998234774934,0.19593998234774934,0.3970180421898014,1
-Qwen/Qwen2-72B-Instruct,1,0.4068727655718769,0.13151008586303575,0.39419477888585397,0.0,0.15798764342453664,0.15798764342453664,0.4041216347207881,1
-Qwen/Qwen2-72B-Instruct,3,0.4086244766794449,0.13771788946915253,0.3975872454980886,0.0,0.12709620476610767,0.12709620476610767,0.4063954239173824,0
-Qwen/Qwen2-72B-Instruct,5,0.4132330811975005,0.1439773872150899,0.40319922813685904,0.0,0.11915269196822595,0.11915269196822595,0.41111822769434864,0
-Qwen/Qwen2-72B-Instruct,10,0.41598174489789025,0.14493475334416772,0.4061550950232767,0.0,0.09620476610767872,0.09620476610767872,0.4142591929807702,0
-gpt-4o-mini,0,0.3797696357415517,0.1208238389018596,0.3703414668036082,0.0,0.09532215357458076,0.09532215357458076,0.37821133607113916,0
-gpt-4o-mini,1,0.37721414424357197,0.12013402254992751,0.3672849018610451,0.0,0.09179170344218888,0.09179170344218888,0.37572317024740703,0
-gpt-4o-mini,3,0.3772985230936086,0.12400311006855895,0.3678727405759652,0.0,0.09179170344218888,0.09179170344218888,0.3758072155821894,0
-gpt-4o-mini,5,0.35541821046691263,0.1202464326274801,0.3467666649149247,0.0,0.05030891438658429,0.05030891438658429,0.3546452926906339,0
-gpt-4o-mini,10,0.37335968903521094,0.1257600824824953,0.3655393297085069,0.0,0.0706090026478376,0.0706090026478376,0.37222227656264567,0
-gpt-4o-mini,50,0.4044690970661121,0.13972883920222515,0.39119808964775155,0.0,0.08473080317740513,0.08473080317740513,0.4029924080114739,0
-gpt-4o,0,0.3797419877414444,0.12054600115274576,0.3701547457064372,0.0,0.09532215357458076,0.09532215357458076,0.37818380151840997,0
-gpt-4o,1,0.37588586538591867,0.12049862468096047,0.3655088353382996,0.0,0.09179170344218888,0.09179170344218888,0.3744001415355042,0
-gpt-4o,3,0.3768512103553621,0.12408746322526747,0.36675999670221837,0.0,0.09355692850838482,0.09355692850838482,0.3753332737090981,0
-gpt-4o,5,0.35772544915145654,0.12169683347842021,0.348000637544411,0.0,0.0353045013239188,0.0353045013239188,0.3571787674657609,0
-gpt-4o,10,0.3746444651189953,0.12498238983123719,0.36675868342577317,0.0,0.0706090026478376,0.0706090026478376,0.37350313867182305,0
-gpt-4o,50,0.40413933252744955,0.13782450337569063,0.39068912530823663,0.0,0.07590467784642542,0.07590467784642542,0.402816463024093,0
+model,shots,meteor,bleu_1,rouge_l,ews_score,repetition_score,total_repetitions,rap,num_max_output_tokens,eval_time
+Qwen/Qwen2-72B-Instruct,0,0.4003638205699929,0.12223832517678616,0.3850228285100058,0.0,0.19593998234774934,0.19593998234774934,0.3970180421898014,1,167.96666666666667
+Qwen/Qwen2-72B-Instruct,1,0.4068727655718769,0.13151008586303575,0.39473841744219135,0.0,0.15798764342453664,0.15798764342453664,0.4041216347207881,1,169.63333333333333
+Qwen/Qwen2-72B-Instruct,3,0.4086244766794449,0.13771788946915253,0.3982274035420223,0.0,0.12709620476610767,0.12709620476610767,0.4063954239173824,0,220.13333333333333
+Qwen/Qwen2-72B-Instruct,5,0.4132330811975005,0.1439773872150899,0.4038550675754348,0.0,0.11915269196822595,0.11915269196822595,0.41111822769434864,0,324.18333333333334
+Qwen/Qwen2-72B-Instruct,10,0.41598174489789025,0.14493475334416772,0.40675496346798323,0.0,0.09620476610767872,0.09620476610767872,0.4142591929807702,0,561.3666666666667
+Qwen/Qwen2-7B-Instruct,0,0.377477070949433,0.11783492823424507,0.36803838669677474,0.0,0.07149161518093557,0.07149161518093557,0.3763128359886437,0,18.516666666666666
+Qwen/Qwen2-7B-Instruct,1,0.38000752971097884,0.11731917392837622,0.3717522235071834,0.0,0.07413945278022947,0.07413945278022947,0.37879237953430883,0,19.883333333333333
+Qwen/Qwen2-7B-Instruct,3,0.38678180999660744,0.12368875746156333,0.37795982050404114,0.0,0.1412180052956752,0.1412180052956752,0.38444052153933106,0,30.233333333333334
+Qwen/Qwen2-7B-Instruct,5,0.38784856371389564,0.1227725469820483,0.38271501720823375,0.0,0.09179170344218888,0.09179170344218888,0.38631555618548774,0,43.233333333333334
+Qwen/Qwen2-7B-Instruct,10,0.38526484346757095,0.12535252418966952,0.381921964717894,0.0,0.10326566637246248,0.10326566637246248,0.3835535147682633,0,75.65
+internlm/internlm2_5-7b-chat,0,0.36816799960793073,0.11360521358693174,0.3604145848797059,0.0,0.2144748455428067,0.2144748455428067,0.3648059323539847,0,23.116666666666667
+internlm/internlm2_5-7b-chat,1,0.3719587471180722,0.1157707566176535,0.3640593681230251,0.0,0.14033539276257723,0.14033539276257723,0.36972107700643503,0,24.783333333333335
+internlm/internlm2_5-7b-chat,3,0.3747105229822289,0.1154826016668525,0.3690935886519632,0.0,0.17740511915269197,0.17740511915269197,0.37187052462735126,0,35.083333333333336
+internlm/internlm2_5-7b-chat,5,0.37285562384505977,0.11541534709366409,0.36890113755410703,0.0,0.14827890556045895,0.14827890556045895,0.37048732274065205,0,54.016666666666666
+internlm/internlm2_5-7b-chat,10,0.3750895095392996,0.11696492920010637,0.3680889860873816,0.0,0.13062665489849956,0.13062665489849956,0.37298723763770353,0,108.06666666666666
+internlm/internlm2_5-7b-chat,50,0.37213069871716603,0.11404688073207249,0.3626467635078598,0.0,0.16857899382171226,0.16857899382171226,0.3694484047441432,8,798.6166666666667
+gpt-4o-mini,0,0.3797696357415517,0.1208238389018596,0.3705758962787884,0.0,0.09532215357458076,0.09532215357458076,0.37821133607113916,0,30.1
+gpt-4o-mini,1,0.37721414424357197,0.12013402254992751,0.36747964103348624,0.0,0.09179170344218888,0.09179170344218888,0.37572317024740703,0,29.583333333333332
+gpt-4o-mini,3,0.3772985230936086,0.12400311006855895,0.3682804376759824,0.0,0.09179170344218888,0.09179170344218888,0.3758072155821894,0,24.3
+gpt-4o-mini,5,0.35541821046691263,0.1202464326274801,0.34720271618869103,0.0,0.05030891438658429,0.05030891438658429,0.3546452926906339,0,22.733333333333334
+gpt-4o-mini,10,0.37335968903521094,0.1257600824824953,0.3659023214917385,0.0,0.0706090026478376,0.0706090026478376,0.37222227656264567,0,22.433333333333334
+gpt-4o-mini,50,0.4044690970661121,0.13972883920222515,0.3916652577211933,0.0,0.08473080317740513,0.08473080317740513,0.4029924080114739,0,24.35
+gpt-4o,0,0.3797419877414444,0.12054600115274576,0.3704105629830775,0.0,0.09532215357458076,0.09532215357458076,0.37818380151840997,0,28.866666666666667
+gpt-4o,1,0.37588586538591867,0.12049862468096047,0.3658901615314057,0.0,0.09179170344218888,0.09179170344218888,0.3744001415355042,0,22.733333333333334
+gpt-4o,3,0.3768512103553621,0.12408746322526747,0.3668998399542892,0.0,0.09355692850838482,0.09355692850838482,0.3753332737090981,0,38.75
+gpt-4o,5,0.35772544915145654,0.12169683347842021,0.3483810267695463,0.0,0.0353045013239188,0.0353045013239188,0.3571787674657609,0,31.8
+gpt-4o,10,0.3746444651189953,0.12498238983123719,0.36712547974906085,0.0,0.0706090026478376,0.0706090026478376,0.37350313867182305,0,33.8
+gpt-4o,50,0.40413933252744955,0.13782450337569063,0.3909558691963182,0.0,0.07590467784642542,0.07590467784642542,0.402816463024093,0,38.25