diff --git a/converts/prepare.sh b/converts/prepare.sh new file mode 100644 index 0000000000000000000000000000000000000000..8349df9988e51c38cd4e77d836a374833fb0dcc2 --- /dev/null +++ b/converts/prepare.sh @@ -0,0 +1,6 @@ +python /data/shuimu.chen/TimeSearch-R/prepare_frame_cache_1.py \ + --target_fps 2 \ + --num_workers 32 \ + --min_pixels 3136 \ + --max_pixels 150528 \ + --overwrite False \ No newline at end of file diff --git a/converts/prepare_frame_cache_from_images.py b/converts/prepare_frame_cache_from_images.py new file mode 100644 index 0000000000000000000000000000000000000000..019c65d4f9330483b28405518e6f96475cd41511 --- /dev/null +++ b/converts/prepare_frame_cache_from_images.py @@ -0,0 +1,105 @@ +from time_r1.utils.qwen_vl_utils import floor_by_factor, FRAME_FACTOR, smart_resize +import decord +import torch +import os +import tqdm +import glob +import multiprocessing +from torchvision import io, transforms +from torchvision.transforms import InterpolationMode +from functools import partial +from time_r1.utils.io import load_jsonl +from PIL import Image +import numpy as np + + +def load_images_from_pathlist(filenames): + images = [] + for filename in filenames: + img = Image.open(filename) + img_array = np.array(img) # shape: (H, W, 3) + images.append(img_array) + return np.array(images) + + +def load_video_frames(video_path, frame_fps=1): + filenames = sorted(os.listdir(video_path)) + image_paths = [os.path.join(video_path, filename) for filename in filenames] + images = load_images_from_pathlist(image_paths) + return images + + +def get_video_tensor(video_path, target_fps=1, image_factor = 28, min_pixels = 28 * 28 * 128, max_pixels = 28 * 28 * 256): + """ + 将视频以固定帧率提前抽帧、解码保存为tensor,用于后续训练 + """ + images = load_video_frames(video_path) + frame_tensor = torch.from_numpy(images).permute(0, 3, 1, 2) # Convert to TCHW format + height, width = frame_tensor.shape[2], frame_tensor.shape[3] + resized_height, resized_width = smart_resize( + height, + width, + factor=image_factor, + min_pixels=min_pixels, + max_pixels=max_pixels, + ) + frame_tensor = transforms.functional.resize( + frame_tensor, + [resized_height, resized_width], + interpolation=InterpolationMode.BICUBIC, + antialias=True, + ) + frame_cache = { + "frame_tensor": frame_tensor, + "fps": target_fps, + } + return frame_cache + + +def process_single_video(video_path, target_fps=1, image_factor = 28, min_pixels = 28 * 28 * 128, max_pixels = 28 * 28 * 256): + """Helper function to process and save frame cache for a single video.""" + print(f"Processing {video_path}...") + try: + frame_cache = get_video_tensor(video_path, target_fps, image_factor, min_pixels, max_pixels) + torch.save(frame_cache, video_path + ".frame_cache") + print(f"Successfully saved frame cache for {video_path}") + except Exception as e: + print(f"Error processing {video_path}: {e}") + + +def prepare_frame_cache(video_root, dataset_path=None, num_workers=8, target_fps=1, overwrite=False, image_factor = 28, min_pixels = 28 * 28 * 128, max_pixels = 28 * 28 * 256): + if dataset_path is not None: + video_list = load_jsonl(dataset_path) + video_list = [os.path.join(video_root, v["video"]) for v in video_list] + else: + video_list = glob.glob(os.path.join(video_root, "*")) + if not video_list: + print(f"No MP4 videos found in {video_root}") + return + # remove videos that already have frame cache + if not overwrite: + print("skipping videos that already have frame cache") + num_total = len(video_list) + video_list = [v for v in video_list if not os.path.exists(v + ".frame_cache")] + num_skipped = num_total - len(video_list) + print(f"skipped {num_skipped} videos") + + if num_workers is None: + num_workers = multiprocessing.cpu_count() # Default to using all available CPU cores + + print(f"Found {len(video_list)} videos. Starting processing with {num_workers} workers...") + + # Use a multiprocessing Pool to process videos in parallel + with multiprocessing.Pool(processes=num_workers) as pool: + # Using tqdm with pool.imap_unordered for progress bar and efficient iteration + # We wrap process_single_video if it needs more arguments or if we want to handle results + # For this case, process_single_video only takes video_path + func = partial(process_single_video, target_fps=target_fps, image_factor = image_factor, min_pixels = min_pixels, max_pixels = max_pixels) + list(tqdm.tqdm(pool.imap_unordered(func, video_list), total=len(video_list))) + + print("All videos processed.") + + +if __name__ == "__main__": + import fire + fire.Fire(prepare_frame_cache) diff --git a/data_prepare/__pycache__/json.cpython-311.pyc b/data_prepare/__pycache__/json.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1ef8a49a1710ecb08a6cdd495498a33227bc7f46 Binary files /dev/null and b/data_prepare/__pycache__/json.cpython-311.pyc differ diff --git a/data_prepare/check_video.py b/data_prepare/check_video.py new file mode 100644 index 0000000000000000000000000000000000000000..e76d2c1047ed8f368175f6f18869ba6ddf9ee829 --- /dev/null +++ b/data_prepare/check_video.py @@ -0,0 +1,102 @@ +import os +import cv2 +import subprocess + +def check_video_corruption(video_path): + """检查视频文件是否损坏""" + try: + # 方法1:使用OpenCV检查 + cap = cv2.VideoCapture(video_path) + if not cap.isOpened(): + return True + + # 尝试读取第一帧 + ret, frame = cap.read() + cap.release() + + if not ret or frame is None: + return True + + # 方法2:使用ffprobe进一步检查(如果可用) + try: + result = subprocess.run( + ['ffprobe', '-v', 'error', '-select_streams', 'v:0', + '-count_frames', '-show_entries', 'stream=nb_read_frames', + '-of', 'default=nokey=1:noprint_wrappers=1', video_path], + stdout=subprocess.PIPE, + stderr=subprocess.PIPE, + text=True, + timeout=5 + ) + if result.returncode != 0: + return True + except (subprocess.TimeoutExpired, FileNotFoundError): + pass # ffprobe不可用,仅依赖OpenCV检查 + + return False + except Exception as e: + print(f"检查视频时出错 {video_path}: {e}") + return True + +def find_and_check_mp4_files(root_dir): + """查找并检查所有MP4文件""" + print(f"开始扫描目录: {root_dir}") + + mp4_files = [] + corrupted_files = [] + + # 遍历目录树查找所有.mp4文件 + for root, dirs, files in os.walk(root_dir): + for file in files: + if file.lower().endswith('.mp4'): + full_path = os.path.join(root, file) + mp4_files.append(full_path) + + print(f"找到 {len(mp4_files)} 个MP4文件") + + # 检查每个文件 + total = len(mp4_files) + for i, video_path in enumerate(mp4_files, 1): + print(f"正在检查 [{i}/{total}]: {os.path.basename(video_path)}", end="\r") + + if check_video_corruption(video_path): + corrupted_files.append(video_path) + + print(f"\n检查完成!") + return mp4_files, corrupted_files + +def save_corrupted_files(corrupted_files, output_file="corrupted_videos.txt"): + """将损坏的文件路径保存到文本文件""" + with open(output_file, 'w', encoding='utf-8') as f: + for file_path in corrupted_files: + f.write(file_path + '\n') + print(f"损坏的文件列表已保存到: {output_file}") + +def main(): + # 设置根目录 + root_dir = "/data/shuimu.chen/videomarathon/downloaded_videos/panda" # 根据实际情况调整路径 + + # 查找并检查文件 + all_mp4_files, corrupted_files = find_and_check_mp4_files(root_dir) + + # 输出统计信息 + print("\n" + "="*50) + print(f"统计结果:") + print(f"总MP4文件数: {len(all_mp4_files)}") + print(f"损坏文件数: {len(corrupted_files)}") + print(f"正常文件数: {len(all_mp4_files) - len(corrupted_files)}") + + if corrupted_files: + print(f"\n损坏的文件:") + for file_path in corrupted_files[:10]: # 只显示前10个 + print(f" - {os.path.relpath(file_path, root_dir)}") + if len(corrupted_files) > 10: + print(f" ... 还有 {len(corrupted_files) - 10} 个文件") + + # 保存损坏文件列表 + save_corrupted_files(corrupted_files) + else: + print("\n恭喜!没有发现损坏的视频文件。") + +if __name__ == "__main__": + main() \ No newline at end of file diff --git a/data_prepare/cookies.txt b/data_prepare/cookies.txt new file mode 100644 index 0000000000000000000000000000000000000000..06572b6d28ccee31151a568702a770ecaef08b67 --- /dev/null +++ b/data_prepare/cookies.txt @@ -0,0 +1,24 @@ +# Netscape HTTP Cookie File +# This file is generated by yt-dlp. Do not edit. + +.youtube.com TRUE / FALSE 0 PREF f4=4000000&tz=UTC&hl=en +.youtube.com TRUE / TRUE 1800167186 __Secure-1PSIDTS sidts-CjQB7I_69CjO7SkZY1GiwUMNgIcXBnLTLKEXZjvYCtZPjqSS6e6_C66RwEvpKD5KtcbHHMC1EAA +.youtube.com TRUE / TRUE 1800167186 __Secure-3PSIDTS sidts-CjQB7I_69CjO7SkZY1GiwUMNgIcXBnLTLKEXZjvYCtZPjqSS6e6_C66RwEvpKD5KtcbHHMC1EAA +.youtube.com TRUE / FALSE 1803191186 HSID AJeilnuDMezyvPCkX +.youtube.com TRUE / TRUE 1803191186 SSID ARsp10KokOO4mmsC4 +.youtube.com TRUE / FALSE 1803191186 APISID h0_pXki4-Ctnb9e6/AwApL-U7WX4zRBlh0 +.youtube.com TRUE / TRUE 1803191186 SAPISID go07S4KUNVV7vbAX/AXPMOQZ0wARCabmes +.youtube.com TRUE / TRUE 1803191186 __Secure-1PAPISID go07S4KUNVV7vbAX/AXPMOQZ0wARCabmes +.youtube.com TRUE / TRUE 1803191186 __Secure-3PAPISID go07S4KUNVV7vbAX/AXPMOQZ0wARCabmes +.youtube.com TRUE / FALSE 1803191186 SID g.a0005wg5cWYUo9XQjQpG1ofB9mxAeOOZsDSKMPWqrY-qPDgHGWYLzDibXZZA5S4ssOKahms73AACgYKARoSARESFQHGX2MiJhQNiC802qoImvNVzzhbdxoVAUF8yKrmWZbcYWBMJQCgZDrk2paj0076 +.youtube.com TRUE / TRUE 1803191186 __Secure-1PSID g.a0005wg5cWYUo9XQjQpG1ofB9mxAeOOZsDSKMPWqrY-qPDgHGWYLgZ7tLzrvYmVjZvklMkMG2wACgYKAeoSARESFQHGX2MiPoNxR46C567-OYtFR4Pi0BoVAUF8yKp_uFsbE7wdo70DS79ifZpC0076 +.youtube.com TRUE / TRUE 1803191186 __Secure-3PSID g.a0005wg5cWYUo9XQjQpG1ofB9mxAeOOZsDSKMPWqrY-qPDgHGWYLcXA5F8vNCLYvIl2h74zovQACgYKAT0SARESFQHGX2Mi8RpKA1kxQOrY0jIyluSQrhoVAUF8yKou61PSSL5gf3w-60jdm_Yy0076 +.youtube.com TRUE / TRUE 1803191186 LOGIN_INFO AFmmF2swRQIgRaEiI1c_sK75DTTaCIYfdz3_F3LWupMWMQLXphl3HmgCIQDe3wH6yq-9enMWFVwYRHujbWFn6T2UbH1j9ywnG1f_lA:QUQ3MjNmeTE5VWlUci15X25TVVUyNkVXNWkxN2VkQWtfZ0ozVk5yT1N6cU1fVFVIOU1xQ0s3dEE2SlB4VTZUVWVLODF5LXFDLUVTR1BWQV9mT1Bway1tLWxQZWFsSjdZc1pXenowcEE2VFhENUJTMHM3RUVYa21zMS1tTmJPVS0zV083VE1TWXZrYW1zTHkweHpQYVkzTFpCUTVzWHF0bktn +.youtube.com TRUE / FALSE 1800171226 SIDCC AKEyXzVq1qOo1FsWcTgaTigO6Rr5kzti-AWkosVx_bbM-ZIX_jeSZ84j8b4suQWicDctyOhKuQ +.youtube.com TRUE / TRUE 1800171226 __Secure-1PSIDCC AKEyXzWeo73F4vzn8mKue64E8SZcJ7YrQYwZXNOViHd9xEuPPnpFXMMzCRN_4JQfeV476KzNyw +.youtube.com TRUE / TRUE 1800171226 __Secure-3PSIDCC AKEyXzWNjIE7FVRXqSyIoggbTqQlgAv1Ev6PlUFJooZru02QVXD3hULBRiBs7dqn5J2DlULZ +.youtube.com TRUE / TRUE 0 YSC sRjqD_eZddA +.youtube.com TRUE / TRUE 1784187226 VISITOR_INFO1_LIVE SWS4XTNPJ2Q +.youtube.com TRUE / TRUE 1784187226 VISITOR_PRIVACY_METADATA CgJUVxIEGgAgLA%3D%3D +.youtube.com TRUE / TRUE 1784181162 __Secure-YNID 15.YT=htxOtd0LDpJhdu-znXVL-zL6tdRRpSqeC-olvIE2TXUvKAP30QxrcQtLqrngVJh2lUy94jqUdJtuZPp_D2EvzuQsuvghUucvi9I3fV0yJ3Y8Kk1-lWNHu6BkLOkuAdHBAdrtI49ynR21WCnoIGhD2MFmSqZ6HUidTGcOdMSgY3VsyM6mfsAmz_F672JKutuumm_oSMOyyeFKOMuf4uefH4P1dw6a1ndkiPu1yfi50i4X7dnDMR3H_OBSO_ybwCNHjY-EeuzjHBhNcod2mc3DW1gI5W62H3epHsnguUwVzKdipfvGIK3NCoU8ZKOpiHy3YGqfxMLnPhLp6mtZd5weJA +.youtube.com TRUE / TRUE 1784181164 __Secure-ROLLOUT_TOKEN COqSi_Kwx43PhwEQx9fBh_GRkgMYvOWeiPGRkgM%3D diff --git a/data_prepare/data.py b/data_prepare/data.py new file mode 100644 index 0000000000000000000000000000000000000000..4d0cc4397ebe2cf48545582530d98e970f49f910 --- /dev/null +++ b/data_prepare/data.py @@ -0,0 +1,167 @@ +import os +import yt_dlp +from datasets import load_dataset +from concurrent.futures import ThreadPoolExecutor, as_completed +from tqdm import tqdm +import time +import random + +# ================= 配置区域 ================= +DATASET_PATH = "/data/shuimu.chen/videomarathon" +SAVE_ROOT = "/data/shuimu.chen/videomarathon/downloaded_videos" + +# 🔥 核心安全配置:挂 Cookie 时并发不能太高!建议 2,最高不要超过 4 +MAX_WORKERS = 2 + +# 你的 Cookie 路径 +COOKIE_PATH = "/data/shuimu.chen/TimeSearch-R/data_prepare/cookies.txt" + +# Node 路径设置 +NODE_BIN_DIR = "/data/shuimu.chen/TimeSearch-R/data_prepare/node-v24.12.0-linux-x64/bin" +os.environ["PATH"] = NODE_BIN_DIR + os.pathsep + os.environ["PATH"] +# =========================================== + +def process_video(item): + video_rel_path = item['rel_path'] + url = item['url'] + + base_name = os.path.splitext(video_rel_path)[0] + full_save_path_no_ext = os.path.join(SAVE_ROOT, base_name) + final_file_path = full_save_path_no_ext + ".mp4" + + # 1. 检查已存在文件 (跳过 > 1KB 的正常文件) + if os.path.exists(final_file_path): + if os.path.getsize(final_file_path) > 1024: + return "skipped" + else: + try: + os.remove(final_file_path) # 删除 0KB 的坏文件 + except: + pass + + os.makedirs(os.path.dirname(final_file_path), exist_ok=True) + + # 2. 核心配置:复刻命令行成功的环境 +# ... (前面的路径配置保持不变) ... + + # 4. 终极配置:使用 Aria2 接管下载 + ydl_opts = { + 'format': 'bestvideo[height<=480][ext=mp4]+bestaudio[ext=m4a]/best[height<=480]/best', + 'merge_output_format': 'mp4', + 'outtmpl': f"{full_save_path_no_ext}.%(ext)s", + + # 🔥 核心修改:启用外部下载器 aria2c + 'external_downloader': 'aria2c', + + # 🔥 aria2c 的专用参数 (伪装性更强,断点续传更稳) + 'external_downloader_args': [ + '-c', '-j', '3', '-x', '3', # 3个连接,3个线程 (不宜过多,否则触发IP限流) + '-s', '3', '-k', '1M', # 分块配置 + '--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36"' + ], + + # 这里的参数依然保留,用于辅助 + # 'cookiefile': COOKIE_PATH, + + # 强制 IPv4 (很多时候 IPv6 线路拥堵或风控更严) + 'source_address': '0.0.0.0', + + # 'retries': 2, + # 'fragment_retries': 2, + 'quiet': False, + 'no_warnings': False, + 'ignoreerrors': False, + } + + # ... (后面的 try-catch 逻辑保持不变) ... + + try: + with yt_dlp.YoutubeDL(ydl_opts) as ydl: + ydl.download([url]) + + # 3. 下载后校验 + if os.path.exists(final_file_path): + if os.path.getsize(final_file_path) > 1024: + return "success" + else: + # 下载了但是空文件 (可能是 IP 临时限流返回了空包) + os.remove(final_file_path) + return "failed_empty" + else: + return "failed_unavailable" # 视频不存在 + + except Exception as e: + # 这里仅捕获严重异常,普通的 "Video unavailable" 会被 ignoreerrors 处理 + # 如果想看报错可以把下面注释打开 + # print(f"Error: {e}") + return "error" + +def main(): + # 0. 环境自检 + print(f"🛠️ 环境检查...") + if os.system("node -v") != 0: + print("❌ 错误: Node 环境未生效,请检查路径!") + return + if not os.path.exists(COOKIE_PATH): + print("❌ 错误: Cookie 文件不存在!") + return + + # 1. 加载数据 + print(f"📂 正在加载数据集: {DATASET_PATH} ...") + try: + dataset = load_dataset(DATASET_PATH) + except Exception as e: + print(f"❌ 加载失败: {e}") + return + + unique_videos = {} + print("🔍 正在筛选 ActivityNet 数据...") + + for item in tqdm(dataset['train'], desc="Filtering"): + source = item.get('data_source') + q_type = item.get('question_type') + video_rel_path = item.get('video') + url = item.get('URL') + + if source == 'ActivityNet' and q_type and str(q_type).endswith('mc'): + if video_rel_path and url: + if video_rel_path not in unique_videos: + unique_videos[video_rel_path] = url + + tasks = [{'rel_path': k, 'url': v} for k, v in unique_videos.items()] + print(f"✅ 筛选完成!共 {len(tasks)} 个唯一视频任务。") + + # 2. 开始下载 + print(f"🚀 启动下载 (Workers={MAX_WORKERS}, Cookie 已启用)...") + results = {"success": 0, "skipped": 0, "failed_unavailable": 0, "failed_empty": 0, "error": 0} + + with ThreadPoolExecutor(max_workers=MAX_WORKERS) as executor: + future_to_video = {executor.submit(process_video, task): task for task in tasks} + + progress = tqdm(as_completed(future_to_video), total=len(tasks), desc="Downloading") + for future in progress: + status = future.result() + + # 简单的状态归类 + if status in results: + results[status] += 1 + else: + results["error"] += 1 + + progress.set_postfix( + ok=results['success'], + skip=results['skipped'], + fail=results['failed_unavailable'] + results['failed_empty'] + results['error'] + ) + + print("\n" + "=" * 30) + print(f"🎉 处理完毕") + print(f"✅ 成功下载: {results['success']}") + print(f"⏩ 跳过存在: {results['skipped']}") + print(f"❌ 视频失效(死链): {results['failed_unavailable']}") + print(f"⚠️ 下载为空(网络/限流): {results['failed_empty']}") + print(f"🚫 其他错误: {results['error']}") + print(f"保存在: {SAVE_ROOT}") + +if __name__ == "__main__": + main() \ No newline at end of file diff --git a/data_prepare/data_json.py b/data_prepare/data_json.py new file mode 100644 index 0000000000000000000000000000000000000000..6a2e962dc841d2f08183c14bf86069e3248efe90 --- /dev/null +++ b/data_prepare/data_json.py @@ -0,0 +1,254 @@ +import os +import json +import yt_dlp +from concurrent.futures import ThreadPoolExecutor, as_completed +from tqdm import tqdm + +# ================= 配置区域 ================= +JSON_PATH = "/data/shuimu.chen/videomarathon/filtered_1000_videos.json" # JSON文件路径 +SAVE_ROOT = "/data/shuimu.chen/videomarathon/downloaded_videos" +MAX_WORKERS = 1 # 保持单线程比较稳 + +# 【请确认】cookies.txt 文件的绝对路径 +COOKIE_PATH = "/data/shuimu.chen/TimeSearch-R/data_prepare/cookies.txt" +# =========================================== + +def load_videos_from_json(json_path): + """ + 从JSON文件加载视频和URL信息 + """ + try: + with open(json_path, 'r', encoding='utf-8') as f: + data = json.load(f) + + print(f"从 {json_path} 加载了 {len(data)} 条记录") + + # 提取唯一的视频-URL映射 + unique_videos = {} + for item in data: + video_rel_path = item.get('video', '') + url = item.get('URL', '') + + if video_rel_path and url: + if video_rel_path not in unique_videos: + unique_videos[video_rel_path] = url + + print(f"找到 {len(unique_videos)} 个唯一视频") + return unique_videos, data + + except FileNotFoundError: + print(f"错误: 找不到JSON文件 {json_path}") + return {}, [] + except json.JSONDecodeError: + print(f"错误: JSON文件格式错误 {json_path}") + return {}, [] + except Exception as e: + print(f"加载JSON文件时出错: {str(e)}") + return {}, [] + +def process_video(item): + """ + 单个视频下载任务函数 + """ + video_rel_path = item['rel_path'] + url = item['url'] + + # 构建保存路径 + # base_name 类似于 "category/video_id" + base_name = os.path.splitext(video_rel_path)[0] + full_save_path_no_ext = os.path.join(SAVE_ROOT, base_name) + + # 你的脚本用来检查的最终路径(带 .mp4) + final_file_path = full_save_path_no_ext + ".mp4" + + # 检查文件是否已存在 + if os.path.exists(final_file_path): + return "skipped", video_rel_path + + # 确保目录存在 + os.makedirs(os.path.dirname(final_file_path), exist_ok=True) + + # yt-dlp 配置 + ydl_opts = { + 'format': 'bestvideo[height<=480]+bestaudio/best[height<=480]', + 'sleep_interval': 5, # # 每次下载完至少睡 5 秒 + 'max_sleep_interval': 15, # # 最多随机睡到 30 秒 + 'merge_output_format': 'mp4', + 'sleep_interval_requests': 1, # 甚至连请求视频信息也要睡 5 秒 + # 'js_runtimes': ['node'], + # 【核心修改】这里加上了 .%(ext)s + # 意思就是:文件名 = 你的路径 + . + 扩展名(mp4) + 'outtmpl': f"{full_save_path_no_ext}.%(ext)s", + 'js_runtimes': ['node:/data/shuimu.chen/TimeSearch-R/data_prepare/node-v24.12.0-linux-x64/bin/node'], + + 'quiet': False, # 建议开启 False 以便调试,稳定后可改为 True + 'no_warnings': False, + 'ignoreerrors': True, + 'cookiefile': COOKIE_PATH, + } + + try: + with yt_dlp.YoutubeDL(ydl_opts) as ydl: + ydl.download([url]) + + # 再次检查文件是否生成 + if os.path.exists(final_file_path): + return "success", video_rel_path + else: + return "failed", video_rel_path + except Exception as e: + print(f"下载 {video_rel_path} 时出错: {str(e)}") + return "error", video_rel_path + +def main(): + # 0. 检查 cookie + if not os.path.exists(COOKIE_PATH): + print(f"❌ 错误: 找不到 Cookie 文件: {COOKIE_PATH}") + print("请上传 cookies.txt 后再重试!") + return + + # 1. 从JSON文件加载数据 + print(f"正在加载JSON文件: {JSON_PATH} ...") + unique_videos, all_data = load_videos_from_json(JSON_PATH) + + if not unique_videos: + print("❌ 错误: 没有找到可下载的视频") + return + + # 显示统计信息 + print(f"\n【统计信息】") + print(f"JSON文件中的总问答对: {len(all_data)}") + print(f"需要下载的唯一视频数: {len(unique_videos)}") + + # 计算问答对分布 + video_qa_count = {} + for item in all_data: + video = item.get('video', '') + if video: + video_qa_count[video] = video_qa_count.get(video, 0) + 1 + + # 显示前10个视频的问答对数量 + print(f"\n【前10个视频的问答对数量】") + sorted_videos = sorted(video_qa_count.items(), key=lambda x: x[1], reverse=True) + for i, (video, count) in enumerate(sorted_videos[:10], 1): + print(f"{i:2}. {video:40}: {count:3} 个问答对") + + total_qa = sum(video_qa_count.values()) + avg_qa_per_video = total_qa / len(video_qa_count) if video_qa_count else 0 + print(f"\n平均每个视频: {avg_qa_per_video:.1f} 个问答对") + print(f"总问答对数: {total_qa}") + + # 2. 准备下载任务 + tasks = [{'rel_path': k, 'url': v} for k, v in unique_videos.items()] + print(f"\n开始下载 (Workers={MAX_WORKERS}, Cookie已启用)...") + + results = { + "success": [], + "skipped": [], + "failed": [], + "error": [] + } + + # 3. 多线程下载 + with ThreadPoolExecutor(max_workers=MAX_WORKERS) as executor: + future_to_video = {executor.submit(process_video, task): task for task in tasks} + + for future in tqdm(as_completed(future_to_video), total=len(tasks), desc="下载进度"): + status, video_path = future.result() + results[status].append(video_path) + + # 4. 生成下载报告 + print("\n" + "=" * 50) + print("【下载完成】") + print("=" * 50) + + total_tasks = len(tasks) + success_count = len(results["success"]) + skipped_count = len(results["skipped"]) + failed_count = len(results["failed"]) + error_count = len(results["error"]) + + print(f"总任务数: {total_tasks}") + print(f"跳过(已存在): {skipped_count}") + print(f"下载成功: {success_count}") + print(f"下载失败: {failed_count}") + print(f"下载错误: {error_count}") + print(f"成功下载的视频数: {success_count} / {total_tasks} ({success_count/total_tasks*100:.1f}%)") + print(f"数据保存在: {os.path.abspath(SAVE_ROOT)}") + + # 计算已下载视频对应的问答对数量 + downloaded_videos = set(results["success"] + results["skipped"]) + downloaded_qa_count = 0 + for video in downloaded_videos: + downloaded_qa_count += video_qa_count.get(video, 0) + + print(f"\n【问答对覆盖率】") + print(f"已下载视频对应的问答对数: {downloaded_qa_count} / {total_qa} ({downloaded_qa_count/total_qa*100:.1f}%)") + + # 5. 保存详细的下载报告 + generate_detailed_report(results, video_qa_count, total_qa) + +def generate_detailed_report(results, video_qa_count, total_qa): + """ + 生成详细的下载报告 + """ + report_path = "video_download_report.txt" + + with open(report_path, 'w', encoding='utf-8') as f: + f.write("# 视频下载详细报告\n") + f.write("#" * 70 + "\n\n") + + # 下载统计 + f.write("## 下载统计\n") + f.write("-" * 40 + "\n") + f.write(f"总视频数: {len(video_qa_count)}\n") + f.write(f"成功下载: {len(results['success'])}\n") + f.write(f"跳过(已存在): {len(results['skipped'])}\n") + f.write(f"下载失败: {len(results['failed'])}\n") + f.write(f"下载错误: {len(results['error'])}\n") + f.write(f"成功率: {len(results['success'])/len(video_qa_count)*100:.1f}%\n\n") + + # 问答对覆盖率 + downloaded_videos = set(results["success"] + results["skipped"]) + downloaded_qa = sum(video_qa_count.get(v, 0) for v in downloaded_videos) + + f.write("## 问答对覆盖率\n") + f.write("-" * 40 + "\n") + f.write(f"总问答对数: {total_qa}\n") + f.write(f"已下载视频对应的问答对数: {downloaded_qa}\n") + f.write(f"覆盖率: {downloaded_qa/total_qa*100:.1f}%\n\n") + + # 成功下载的视频列表 + f.write("## 成功下载的视频\n") + f.write("-" * 40 + "\n") + for i, video in enumerate(sorted(results["success"]), 1): + qa_count = video_qa_count.get(video, 0) + f.write(f"{i:4}. {video} ({qa_count} 个问答对)\n") + + # 跳过的视频列表 + if results["skipped"]: + f.write("\n## 已存在跳过的视频\n") + f.write("-" * 40 + "\n") + for i, video in enumerate(sorted(results["skipped"]), 1): + qa_count = video_qa_count.get(video, 0) + f.write(f"{i:4}. {video} ({qa_count} 个问答对)\n") + + # 失败和错误的视频列表 + if results["failed"]: + f.write("\n## 下载失败的视频\n") + f.write("-" * 40 + "\n") + for i, video in enumerate(results["failed"], 1): + qa_count = video_qa_count.get(video, 0) + f.write(f"{i:4}. {video} ({qa_count} 个问答对)\n") + + if results["error"]: + f.write("\n## 下载出错的视频\n") + f.write("-" * 40 + "\n") + for i, video in enumerate(results["error"], 1): + qa_count = video_qa_count.get(video, 0) + f.write(f"{i:4}. {video} ({qa_count} 个问答对)\n") + + print(f"\n详细报告已保存到: {report_path}") + +if __name__ == "__main__": + main() \ No newline at end of file diff --git a/data_prepare/filter_r1.py b/data_prepare/filter_r1.py new file mode 100644 index 0000000000000000000000000000000000000000..910d539b90ad21d1c6af0110af0da6f76750419e --- /dev/null +++ b/data_prepare/filter_r1.py @@ -0,0 +1,424 @@ +import json +import os +import re +from collections import Counter +from typing import List, Dict, Any + +def extract_source_from_path(path: str) -> str: + """ + 从路径中提取第一个目录名作为来源 + + Args: + path: 文件路径,如 "./PerceptionTest/video_2448.mp4" + + Returns: + 来源名称,如 "PerceptionTest" + """ + # 去除开头的"./"和".\"等相对路径符号 + clean_path = path.lstrip('./\\') + + # 分割路径,获取第一个目录名 + parts = clean_path.split('/') + if len(parts) > 0: + return parts[0] + else: + # 如果没有找到目录结构,返回整个路径的基本名称 + return os.path.splitext(os.path.basename(path))[0] + +def filter_multiple_choice_videos(input_file: str, output_file: str = None): + """ + 筛选multiple choice的MP4视频数据 + + Args: + input_file: 输入JSON文件路径 + output_file: 输出JSON文件路径 + """ + + # 读取原始数据 + with open(input_file, 'r', encoding='utf-8') as f: + data = json.load(f) + + print(f"原始数据总数: {len(data)}") + + # 筛选条件 + filtered_data = [] + for item in data: + # 必须是multiple choice + if item.get("problem_type") != "multiple choice": + continue + + # 必须是MP4视频 + path = item.get("path", "").lower() + if not (path.endswith(".mp4") or path.endswith(".mov") or path.endswith(".avi")): + # 如果不是常见视频格式,检查是否包含视频关键词 + if not any(keyword in path for keyword in ["video", "mp4", "mov", "avi", "webm"]): + continue + + filtered_data.append(item) + + print(f"筛选后数据总数: {len(filtered_data)}") + + # 生成输出文件名 + if output_file is None: + base_name = os.path.splitext(input_file)[0] + output_file = f"{base_name}_filtered.json" + + # 保存筛选后的数据 + with open(output_file, 'w', encoding='utf-8') as f: + json.dump(filtered_data, f, indent=2, ensure_ascii=False) + + print(f"筛选后的数据已保存到: {output_file}") + + return filtered_data, output_file + +def analyze_source_statistics(data: List[Dict[str, Any]]): + """ + 分析数据来源统计 + + Args: + data: 数据列表 + """ + + print("\n" + "="*60) + print("数据来源统计 (按路径的第一个目录名):") + print("="*60) + + # 统计来源 + source_counter = Counter() + + for item in data: + path = item.get("path", "") + source = extract_source_from_path(path) + source_counter[source] += 1 + + # 打印统计结果 + total = len(data) + print(f"\n总数据量: {total}") + print("-" * 40) + + # 按数量降序排列 + for source, count in source_counter.most_common(): + percentage = (count / total) * 100 + print(f"{source:30s}: {count:5d} ({percentage:.1f}%)") + + # 生成饼图数据(可以用于后续可视化) + print("\n" + "="*60) + print("饼图数据 (可以直接复制到Excel/可视化工具):") + print("="*60) + + print("\n来源,数量,百分比") + for source, count in source_counter.most_common(): + percentage = (count / total) * 100 + print(f"{source},{count},{percentage:.1f}%") + + return source_counter + +def generate_detailed_report(data: List[Dict[str, Any]], + source_counter: Counter, + output_report: str = "data_report.md"): + """ + 生成详细的数据报告 + + Args: + data: 数据列表 + source_counter: 来源统计 + output_report: 输出报告文件路径 + """ + + with open(output_report, 'w', encoding='utf-8') as f: + f.write("# 数据筛选与统计报告\n\n") + + # 基本信息 + f.write("## 基本信息\n") + f.write(f"- **筛选日期**: {time.strftime('%Y-%m-%d %H:%M:%S')}\n") + f.write(f"- **原始数据量**: {len(data)} 条\n") + f.write(f"- **筛选条件**: problem_type为'multiple choice'且path为视频文件\n\n") + + # 来源统计表 + f.write("## 来源统计表\n\n") + f.write("| 来源 | 数量 | 百分比 |\n") + f.write("|------|------|--------|\n") + + total = len(data) + for source, count in source_counter.most_common(): + percentage = (count / total) * 100 + f.write(f"| {source} | {count} | {percentage:.1f}% |\n") + + # 数据示例 + f.write("\n## 数据示例\n\n") + f.write("### 前10条数据示例\n\n") + + for i, item in enumerate(data[:10]): + f.write(f"#### 示例 {i+1}\n\n") + f.write(f"- **problem_id**: {item.get('problem_id', 'N/A')}\n") + f.write(f"- **problem**: {item.get('problem', 'N/A')}\n") + f.write(f"- **data_type**: {item.get('data_type', 'N/A')}\n") + f.write(f"- **problem_type**: {item.get('problem_type', 'N/A')}\n") + f.write(f"- **path**: {item.get('path', 'N/A')}\n") + f.write(f"- **options**: {len(item.get('options', []))} 个选项\n") + f.write(f"- **data_source**: {item.get('data_source', 'N/A')}\n") + f.write(f"- **来源目录**: {extract_source_from_path(item.get('path', ''))}\n") + f.write("\n---\n\n") + + # 分析总结 + f.write("## 分析总结\n\n") + f.write(f"1. 共筛选出 {len(data)} 条符合条件的数据\n") + f.write(f"2. 数据来源分布在 {len(source_counter)} 个不同的目录\n") + + # 列出前3大来源 + top_sources = source_counter.most_common(3) + f.write(f"3. 前三大来源:\n") + for i, (source, count) in enumerate(top_sources, 1): + percentage = (count / total) * 100 + f.write(f" {i}. {source}: {count} 条 ({percentage:.1f}%)\n") + + f.write("\n4. 数据质量分析:\n") + f.write(" - 所有数据均包含完整的问题、选项和答案\n") + f.write(" - 数据格式统一,便于后续处理\n") + f.write(" - 视频来源多样,覆盖多个领域\n") + + print(f"\n详细报告已保存到: {output_report}") + +def export_source_files(data: List[Dict[str, Any]]): + """ + 按来源导出文件列表 + + Args: + data: 数据列表 + """ + + # 按来源分组 + source_groups = {} + for item in data: + path = item.get("path", "") + source = extract_source_from_path(path) + + if source not in source_groups: + source_groups[source] = [] + + source_groups[source].append(item) + + # 为每个来源创建目录并导出 + export_dir = "exported_data" + os.makedirs(export_dir, exist_ok=True) + + print(f"\n导出数据到目录: {export_dir}/") + + for source, items in source_groups.items(): + # 为每个来源创建子目录 + source_dir = os.path.join(export_dir, source) + os.makedirs(source_dir, exist_ok=True) + + # 保存该来源的所有数据 + source_file = os.path.join(source_dir, f"{source}_data.json") + with open(source_file, 'w', encoding='utf-8') as f: + json.dump(items, f, indent=2, ensure_ascii=False) + + # 创建视频路径列表 + paths_file = os.path.join(source_dir, f"{source}_paths.txt") + with open(paths_file, 'w', encoding='utf-8') as f: + for item in items: + f.write(item.get("path", "") + "\n") + + print(f" - {source}: {len(items)} 条数据") + + return source_groups + +def analyze_video_path_patterns(data: List[Dict[str, Any]]): + """ + 分析视频路径模式 + + Args: + data: 数据列表 + """ + + print("\n" + "="*60) + print("视频路径模式分析:") + print("="*60) + + # 统计路径深度 + depth_counter = Counter() + pattern_counter = Counter() + + for item in data: + path = item.get("path", "") + + # 统计路径深度 + depth = path.count('/') + depth_counter[depth] += 1 + + # 统计常见的路径模式 + # 例如:./LLaVA-Video-178K/academic_source/activitynet/v_xxx.mp4 + parts = path.split('/') + if len(parts) >= 3: + pattern = f"{parts[0]}/{parts[1]}/.../{parts[-1]}" + pattern_counter[pattern] += 1 + elif len(parts) == 2: + pattern = f"{parts[0]}/{parts[1]}" + pattern_counter[pattern] += 1 + else: + pattern_counter[path] += 1 + + # 打印路径深度统计 + print("\n路径深度统计:") + print("-" * 40) + for depth, count in sorted(depth_counter.items()): + print(f"深度 {depth}: {count} 条路径") + + # 打印常见路径模式 + print("\n常见路径模式 (前10):") + print("-" * 40) + for pattern, count in pattern_counter.most_common(10): + print(f"{pattern}: {count}") + +def main(): + """ + 主函数:处理整个数据筛选和统计流程 + """ + + # 配置参数 + input_json = "your_data.json" # 请替换为你的JSON文件路径 + + if not os.path.exists(input_json): + print(f"错误: 文件 '{input_json}' 不存在!") + print("请修改脚本中的 input_json 变量为你的JSON文件路径") + return + + print("="*60) + print("开始筛选 multiple choice 视频数据") + print("="*60) + + # 步骤1: 筛选数据 + filtered_data, output_file = filter_multiple_choice_videos(input_json) + + if not filtered_data: + print("没有找到符合条件的数据!") + return + + print("\n✓ 数据筛选完成") + + # 步骤2: 分析来源统计 + source_counter = analyze_source_statistics(filtered_data) + + print("\n✓ 来源统计完成") + + # 步骤3: 生成详细报告 + base_name = os.path.splitext(output_file)[0] + report_file = f"{base_name}_report.md" + generate_detailed_report(filtered_data, source_counter, report_file) + + print("✓ 详细报告生成完成") + + # 步骤4: 导出按来源分组的数据 + source_groups = export_source_files(filtered_data) + + print("✓ 数据导出完成") + + # 步骤5: 分析视频路径模式 + analyze_video_path_patterns(filtered_data) + + print("✓ 路径模式分析完成") + + # 最终总结 + print("\n" + "="*60) + print("处理完成! 生成的文件:") + print("="*60) + print(f"1. 筛选后的JSON数据: {output_file}") + print(f"2. 详细统计报告: {report_file}") + print(f"3. 按来源分组的数据: exported_data/ 目录") + print(f"4. 总数据量: {len(filtered_data)} 条") + + # 显示前5大来源 + print(f"\n前5大来源:") + for i, (source, count) in enumerate(source_counter.most_common(5), 1): + percentage = (count / len(filtered_data)) * 100 + print(f" {i}. {source}: {count} 条 ({percentage:.1f}%)") + +# 简单版本的函数,用于快速使用 +def quick_filter(input_file: str): + """ + 快速筛选函数,一键完成所有操作 + """ + import time + + print(f"开始处理文件: {input_file}") + start_time = time.time() + + # 读取数据 + with open(input_file, 'r', encoding='utf-8') as f: + data = json.load(f) + + # 筛选 + filtered = [] + source_counter = Counter() + + for item in data: + if item.get("problem_type") == "multiple choice": + path = item.get("path", "").lower() + if path.endswith(".mp4"): + filtered.append(item) + source = extract_source_from_path(path) + source_counter[source] += 1 + + # 保存结果 + output_file = f"{os.path.splitext(input_file)[0]}_filtered.json" + with open(output_file, 'w', encoding='utf-8') as f: + json.dump(filtered, f, indent=2, ensure_ascii=False) + + # 打印统计 + print(f"\n原始数据: {len(data)} 条") + print(f"筛选后: {len(filtered)} 条") + print(f"\n来源统计:") + for source, count in source_counter.most_common(): + print(f" {source}: {count}") + + end_time = time.time() + print(f"\n处理完成! 耗时: {end_time - start_time:.2f}秒") + print(f"结果保存到: {output_file}") + + return filtered + +# 命令行接口 +if __name__ == "__main__": + import sys + + if len(sys.argv) < 2: + print("使用方法:") + print(f" python {sys.argv[0]} <输入JSON文件>") + print(f"示例:") + print(f" python {sys.argv[0]} data.json") + print(f"\n或者使用完整模式:") + print(f" python {sys.argv[0]} --full <输入JSON文件>") + sys.exit(1) + + input_file = sys.argv[1] + + if not os.path.exists(input_file): + print(f"错误: 文件 '{input_file}' 不存在!") + sys.exit(1) + + # 判断是否使用完整模式 + if len(sys.argv) > 2 and sys.argv[1] == "--full": + input_file = sys.argv[2] + # 运行完整版本 + main() + else: + # 运行快速版本 + quick_filter(input_file) + +# python /data/shuimu.chen/TimeSearch-R/data_prepare/filter_r1.py /data/shuimu.chen/Video-R1/src/r1-v/Video-R1-data/Video-R1-260k.json +(timesearch) root@aa363201ed5b:/data/shuimu.chen# python /data/shuimu.chen/TimeSearch-R/data_prepare/filter_r1.py /data/shuimu.chen/Video-R1/src/r1-v/Video-R1-data/Video-R1-260k.json +开始处理文件: /data/shuimu.chen/Video-R1/src/r1-v/Video-R1-data/Video-R1-260k.json + +原始数据: 263071 条 +筛选后: 103891 条 + +来源统计: + llava-video-178k: 72421 + star: 11455 + next-qa: 7549 + perceptiontest: 6348 + clevrer: 6118 + +处理完成! 耗时: 4.34秒 +结果保存到: /data/shuimu.chen/Video-R1/src/r1-v/Video-R1-data/Video-R1-260k_filtered.json \ No newline at end of file diff --git a/data_prepare/json_down.py b/data_prepare/json_down.py new file mode 100644 index 0000000000000000000000000000000000000000..01366a1104a965c352543ea6f16162a0e6fa41b6 --- /dev/null +++ b/data_prepare/json_down.py @@ -0,0 +1,137 @@ +import os +import json # 新增:用于读取JSON文件 +import yt_dlp +from concurrent.futures import ThreadPoolExecutor, as_completed +from tqdm import tqdm + +# ================= 配置区域 ================= +# 修改:直接读取你提供的JSON文件路径 +JSON_DATA_PATH = "/data/shuimu.chen/videomarathon/panda70m_mc_subset_100k.json" +SAVE_ROOT = "/data/shuimu.chen/videomarathon/100k_videos" +MAX_WORKERS = 1 # 保持单线程比较稳 + +# 【请确认】cookies.txt 文件的绝对路径 +COOKIE_PATH = "/data/shuimu.chen/TimeSearch-R/data_prepare/cookies.txt" +# =========================================== + +def process_video(item): + """ + 单个视频下载任务函数 (完全不变) + """ + video_rel_path = item['rel_path'] + url = item['url'] + + # 构建保存路径 + # base_name 类似于 "category/video_id" + base_name = os.path.splitext(video_rel_path)[0] + full_save_path_no_ext = os.path.join(SAVE_ROOT, base_name) + + # 你的脚本用来检查的最终路径(带 .mp4) + final_file_path = full_save_path_no_ext + ".mp4" + + # 检查文件是否已存在 + if os.path.exists(final_file_path): + return "skipped" + + # 确保目录存在 + os.makedirs(os.path.dirname(final_file_path), exist_ok=True) + + # yt-dlp 配置 + ydl_opts = { + 'format': 'bestvideo[height<=480]+bestaudio/best[height<=480]', + 'sleep_interval': 5, # # 每次下载完至少睡 5 秒 + 'max_sleep_interval': 15, # # 最多随机睡到 30 秒 + 'merge_output_format': 'mp4', + 'sleep_interval_requests': 1, # 甚至连请求视频信息也要睡 5 秒 + # 'js_runtimes': ['node'], + # 【核心修改】这里加上了 .%(ext)s + # 意思就是:文件名 = 你的路径 + . + 扩展名(mp4) + 'outtmpl': f"{full_save_path_no_ext}.%(ext)s", + 'js_runtimes': ['node:/data/shuimu.chen/TimeSearch-R/data_prepare/node-v24.12.0-linux-x64/bin/node'], + + 'quiet': False, # 建议开启 False 以便调试,稳定后可改为 True + 'no_warnings': False, + 'ignoreerrors': True, + 'cookiefile': COOKIE_PATH, + } + + try: + with yt_dlp.YoutubeDL(ydl_opts) as ydl: + ydl.download([url]) + + # 再次检查文件是否生成 + if os.path.exists(final_file_path): + return "success" + else: + return "failed" + except Exception as e: + return "error" + +def main(): + # 0. 检查 cookie + if not os.path.exists(COOKIE_PATH): + print(f"❌ 错误: 找不到 Cookie 文件: {COOKIE_PATH}") + print("请上传 cookies.txt 后再重试!") + return + + # 1. 加载和筛选数据 + print(f"正在加载JSON数据文件: {JSON_DATA_PATH} ...") + + # 修改:直接加载你提供的JSON文件 + with open(JSON_DATA_PATH, 'r', encoding='utf-8') as f: + dataset = json.load(f) + + print(f"已加载 {len(dataset)} 条数据") + + unique_videos = {} + print("正在从JSON数据中筛选唯一视频任务 (Panda-70M + Multiple Choice) ...") + + # 修改:简化筛选逻辑,因为你的JSON已经是MC样本了 + for item in tqdm(dataset, desc="筛选唯一视频"): + # 你提供的JSON里都是Panda-70M的MC样本,这里可以简化判断 + video_rel_path = item.get('video') + url = item.get('URL') + + if video_rel_path and url: + if video_rel_path not in unique_videos: + unique_videos[video_rel_path] = url + + tasks = [{'rel_path': k, 'url': v} for k, v in unique_videos.items()] + print(f"筛选完成!共 {len(tasks)} 个唯一视频任务。") + print(f"注: 原JSON中有 {len(dataset)} 条问答对,涉及 {len(tasks)} 个唯一视频。") + + # 2. 多线程下载 + print(f"\n开始并发下载 (Workers={MAX_WORKERS}, Cookie已启用)...") + + results = { + "success": 0, + "skipped": 0, + "failed": 0, + "error": 0 + } + + with ThreadPoolExecutor(max_workers=MAX_WORKERS) as executor: + future_to_video = {executor.submit(process_video, task): task for task in tasks} + + for future in tqdm(as_completed(future_to_video), total=len(tasks), desc="下载进度"): + status = future.result() + results[status] += 1 + + # 3. 总结 + print("\n" + "=" * 40) + print("处理完毕") + print("=" * 40) + print(f"JSON中问答对总数: {len(dataset)}") + print(f"唯一视频任务数: {len(tasks)}") + print(f"跳过(已存在): {results['skipped']}") + print(f"下载成功: {results['success']}") + print(f"下载失败: {results['failed'] + results['error']}") + print(f"数据保存在: {os.path.abspath(SAVE_ROOT)}") + + # 额外统计信息 + if results['success'] > 0: + coverage_rate = results['success'] / len(tasks) * 100 + print(f"视频覆盖率: {coverage_rate:.1f}%") + +if __name__ == "__main__": + main() \ No newline at end of file diff --git a/data_prepare/node-v24.12.0-linux-x64/CHANGELOG.md b/data_prepare/node-v24.12.0-linux-x64/CHANGELOG.md new file mode 100644 index 0000000000000000000000000000000000000000..575f9bbde27b0fb8c5a90a270b565a6d67f8cf44 --- /dev/null +++ b/data_prepare/node-v24.12.0-linux-x64/CHANGELOG.md @@ -0,0 +1,2154 @@ +# Node.js 24 ChangeLog + + + + + + + + + + + + +
LTS 'Krypton'Current
+24.12.0
+24.11.1
+24.11.0
+
+24.10.0
+24.9.0
+24.8.0
+24.7.0
+24.6.0
+24.5.0
+24.4.1
+24.4.0
+24.3.0
+24.2.0
+24.1.0
+24.0.2
+24.0.1
+24.0.0
+
+ +* Other Versions + * [23.x](CHANGELOG_V23.md) + * [22.x](CHANGELOG_V22.md) + * [21.x](CHANGELOG_V21.md) + * [20.x](CHANGELOG_V20.md) + * [19.x](CHANGELOG_V19.md) + * [18.x](CHANGELOG_V18.md) + * [17.x](CHANGELOG_V17.md) + * [16.x](CHANGELOG_V16.md) + * [15.x](CHANGELOG_V15.md) + * [14.x](CHANGELOG_V14.md) + * [13.x](CHANGELOG_V13.md) + * [12.x](CHANGELOG_V12.md) + * [11.x](CHANGELOG_V11.md) + * [10.x](CHANGELOG_V10.md) + * [9.x](CHANGELOG_V9.md) + * [8.x](CHANGELOG_V8.md) + * [7.x](CHANGELOG_V7.md) + * [6.x](CHANGELOG_V6.md) + * [5.x](CHANGELOG_V5.md) + * [4.x](CHANGELOG_V4.md) + * [0.12.x](CHANGELOG_V012.md) + * [0.10.x](CHANGELOG_V010.md) + * [io.js](CHANGELOG_IOJS.md) + * [Archive](CHANGELOG_ARCHIVE.md) + + + +## 2025-12-10, Version 24.12.0 'Krypton' (LTS), @targos + +### Notable Changes + +* \[[`1a00b5f68a`](https://github.com/nodejs/node/commit/1a00b5f68a)] - **(SEMVER-MINOR)** **http**: add optimizeEmptyRequests server option (Rafael Gonzaga) [#59778](https://github.com/nodejs/node/pull/59778) +* \[[`ff5754077d`](https://github.com/nodejs/node/commit/ff5754077d)] - **(SEMVER-MINOR)** **lib**: add options to util.deprecate (Rafael Gonzaga) [#59982](https://github.com/nodejs/node/pull/59982) +* \[[`8987159234`](https://github.com/nodejs/node/commit/8987159234)] - **(SEMVER-MINOR)** **module**: mark type stripping as stable (Marco Ippolito) [#60600](https://github.com/nodejs/node/pull/60600) +* \[[`92c484ebf4`](https://github.com/nodejs/node/commit/92c484ebf4)] - **(SEMVER-MINOR)** **node-api**: add napi\_create\_object\_with\_properties (Miguel Marcondes Filho) [#59953](https://github.com/nodejs/node/pull/59953) +* \[[`b11bc5984e`](https://github.com/nodejs/node/commit/b11bc5984e)] - **(SEMVER-MINOR)** **sqlite**: allow setting defensive flag (Bart Louwers) [#60217](https://github.com/nodejs/node/pull/60217) +* \[[`e7da5b4b7d`](https://github.com/nodejs/node/commit/e7da5b4b7d)] - **(SEMVER-MINOR)** **src**: add watch config namespace (Marco Ippolito) [#60178](https://github.com/nodejs/node/pull/60178) +* \[[`a7f7d10c06`](https://github.com/nodejs/node/commit/a7f7d10c06)] - **(SEMVER-MINOR)** **src**: add an option to make compile cache portable (Aditi) [#58797](https://github.com/nodejs/node/pull/58797) +* \[[`92ea669240`](https://github.com/nodejs/node/commit/92ea669240)] - **(SEMVER-MINOR)** **src,permission**: add --allow-inspector ability (Rafael Gonzaga) [#59711](https://github.com/nodejs/node/pull/59711) +* \[[`05d7509bd2`](https://github.com/nodejs/node/commit/05d7509bd2)] - **(SEMVER-MINOR)** **v8**: add cpu profile (theanarkh) [#59807](https://github.com/nodejs/node/pull/59807) + +### Commits + +* \[[`e4a23a35ac`](https://github.com/nodejs/node/commit/e4a23a35ac)] - **benchmark**: focus on import.meta intialization in import-meta benchmark (Joyee Cheung) [#60603](https://github.com/nodejs/node/pull/60603) +* \[[`b6114ae5c9`](https://github.com/nodejs/node/commit/b6114ae5c9)] - **benchmark**: add per-suite setup option (Joyee Cheung) [#60574](https://github.com/nodejs/node/pull/60574) +* \[[`ac8e90af7c`](https://github.com/nodejs/node/commit/ac8e90af7c)] - **buffer**: speed up concat via TypedArray#set (Gürgün Dayıoğlu) [#60399](https://github.com/nodejs/node/pull/60399) +* \[[`acbc8ca13e`](https://github.com/nodejs/node/commit/acbc8ca13e)] - **build**: upgrade Python linter ruff, add rules ASYNC,PERF (Christian Clauss) [#59984](https://github.com/nodejs/node/pull/59984) +* \[[`f97a609a07`](https://github.com/nodejs/node/commit/f97a609a07)] - **console**: optimize single-string logging (Gürgün Dayıoğlu) [#60422](https://github.com/nodejs/node/pull/60422) +* \[[`6cd9bdc580`](https://github.com/nodejs/node/commit/6cd9bdc580)] - **crypto**: ensure documented RSA-PSS saltLength default is used (Filip Skokan) [#60662](https://github.com/nodejs/node/pull/60662) +* \[[`0fafe24d9b`](https://github.com/nodejs/node/commit/0fafe24d9b)] - **crypto**: fix argument validation in crypto.timingSafeEqual fast path (Joyee Cheung) [#60538](https://github.com/nodejs/node/pull/60538) +* \[[`54421e0419`](https://github.com/nodejs/node/commit/54421e0419)] - **debugger**: fix event listener leak in the run command (Joyee Cheung) [#60464](https://github.com/nodejs/node/pull/60464) +* \[[`c361a628b4`](https://github.com/nodejs/node/commit/c361a628b4)] - **deps**: V8: cherry-pick 72b0e27bd936 (pthier) [#60732](https://github.com/nodejs/node/pull/60732) +* \[[`c70f4588dd`](https://github.com/nodejs/node/commit/c70f4588dd)] - **deps**: V8: cherry-pick 6bb32bd2c194 (Erik Corry) [#60732](https://github.com/nodejs/node/pull/60732) +* \[[`881fe784c5`](https://github.com/nodejs/node/commit/881fe784c5)] - **deps**: V8: cherry-pick 0dd2318b5237 (Erik Corry) [#60732](https://github.com/nodejs/node/pull/60732) +* \[[`457c33efcc`](https://github.com/nodejs/node/commit/457c33efcc)] - **deps**: V8: cherry-pick df20105ccf36 (Erik Corry) [#60732](https://github.com/nodejs/node/pull/60732) +* \[[`0bf45a829c`](https://github.com/nodejs/node/commit/0bf45a829c)] - **deps**: V8: backport e5dbbbadcbff (Darshan Sen) [#60524](https://github.com/nodejs/node/pull/60524) +* \[[`4993bdc476`](https://github.com/nodejs/node/commit/4993bdc476)] - **deps**: V8: cherry-pick 5ba9200cd046 (Juan José Arboleda) [#60620](https://github.com/nodejs/node/pull/60620) +* \[[`1e9abe0078`](https://github.com/nodejs/node/commit/1e9abe0078)] - **deps**: update corepack to 0.34.5 (Node.js GitHub Bot) [#60842](https://github.com/nodejs/node/pull/60842) +* \[[`3f704ed08f`](https://github.com/nodejs/node/commit/3f704ed08f)] - **deps**: update corepack to 0.34.4 (Node.js GitHub Bot) [#60643](https://github.com/nodejs/node/pull/60643) +* \[[`04e360fdb1`](https://github.com/nodejs/node/commit/04e360fdb1)] - **deps**: V8: cherry-pick 06bf293610ef, 146962dda8d2 and e0fb10b5148c (Michaël Zasso) [#60713](https://github.com/nodejs/node/pull/60713) +* \[[`fcbd8dbbde`](https://github.com/nodejs/node/commit/fcbd8dbbde)] - **deps**: patch V8 to 13.6.233.17 (Michaël Zasso) [#60712](https://github.com/nodejs/node/pull/60712) +* \[[`28e9433f39`](https://github.com/nodejs/node/commit/28e9433f39)] - **deps**: V8: cherry-pick 87356585659b (Joyee Cheung) [#60069](https://github.com/nodejs/node/pull/60069) +* \[[`3cac85b243`](https://github.com/nodejs/node/commit/3cac85b243)] - **deps**: V8: backport 2e4c5cf9b112 (Michaël Zasso) [#60654](https://github.com/nodejs/node/pull/60654) +* \[[`1daece1970`](https://github.com/nodejs/node/commit/1daece1970)] - **deps**: call OPENSSL\_free after ANS1\_STRING\_to\_UTF8 (Rafael Gonzaga) [#60609](https://github.com/nodejs/node/pull/60609) +* \[[`5f55a9c9ea`](https://github.com/nodejs/node/commit/5f55a9c9ea)] - **deps**: nghttp2: revert 7784fa979d0b (Antoine du Hamel) [#59790](https://github.com/nodejs/node/pull/59790) +* \[[`1d9e7c1f4d`](https://github.com/nodejs/node/commit/1d9e7c1f4d)] - **deps**: update nghttp2 to 1.67.1 (nodejs-github-bot) [#59790](https://github.com/nodejs/node/pull/59790) +* \[[`3140415068`](https://github.com/nodejs/node/commit/3140415068)] - **deps**: update simdjson to 4.1.0 (Node.js GitHub Bot) [#60542](https://github.com/nodejs/node/pull/60542) +* \[[`d911f9f1b8`](https://github.com/nodejs/node/commit/d911f9f1b8)] - **deps**: update amaro to 1.1.5 (Node.js GitHub Bot) [#60541](https://github.com/nodejs/node/pull/60541) +* \[[`daaaf04a32`](https://github.com/nodejs/node/commit/daaaf04a32)] - **deps**: V8: cherry-pick 2abc61361dd4 (Richard Lau) [#60177](https://github.com/nodejs/node/pull/60177) +* \[[`b4f63ee5f8`](https://github.com/nodejs/node/commit/b4f63ee5f8)] - **doc**: update Collaborators list to reflect hybrist handle change (Antoine du Hamel) [#60650](https://github.com/nodejs/node/pull/60650) +* \[[`effcf7a8ab`](https://github.com/nodejs/node/commit/effcf7a8ab)] - **doc**: fix link in `--env-file=file` section (N. Bighetti) [#60563](https://github.com/nodejs/node/pull/60563) +* \[[`7011736703`](https://github.com/nodejs/node/commit/7011736703)] - **doc**: fix linter issues (Antoine du Hamel) [#60636](https://github.com/nodejs/node/pull/60636) +* \[[`5cc79d8945`](https://github.com/nodejs/node/commit/5cc79d8945)] - **doc**: add missing history entry for `sqlite.md` (Antoine du Hamel) [#60607](https://github.com/nodejs/node/pull/60607) +* \[[`bbc649057c`](https://github.com/nodejs/node/commit/bbc649057c)] - **doc**: correct values/references for buffer.kMaxLength (René) [#60305](https://github.com/nodejs/node/pull/60305) +* \[[`ea7ecb517b`](https://github.com/nodejs/node/commit/ea7ecb517b)] - **doc**: recommend events.once to manage 'close' event (Dan Fabulich) [#60017](https://github.com/nodejs/node/pull/60017) +* \[[`58bff04cc2`](https://github.com/nodejs/node/commit/58bff04cc2)] - **doc**: highlight module loading difference between import and require (Ajay A) [#59815](https://github.com/nodejs/node/pull/59815) +* \[[`bbcbff9b4d`](https://github.com/nodejs/node/commit/bbcbff9b4d)] - **doc**: add CJS code snippets in `sqlite.md` (Allon Murienik) [#60395](https://github.com/nodejs/node/pull/60395) +* \[[`f8af33d5a7`](https://github.com/nodejs/node/commit/f8af33d5a7)] - **doc**: fix typo in `process.unref` documentation (우혁) [#59698](https://github.com/nodejs/node/pull/59698) +* \[[`df105dc351`](https://github.com/nodejs/node/commit/df105dc351)] - **doc**: add some entries to `glossary.md` (Mohataseem Khan) [#59277](https://github.com/nodejs/node/pull/59277) +* \[[`4955cb2b5b`](https://github.com/nodejs/node/commit/4955cb2b5b)] - **doc**: improve agent.createConnection docs for http and https agents (JaeHo Jang) [#58205](https://github.com/nodejs/node/pull/58205) +* \[[`6283bb5cc9`](https://github.com/nodejs/node/commit/6283bb5cc9)] - **doc**: fix pseudo code in modules.md (chirsz) [#57677](https://github.com/nodejs/node/pull/57677) +* \[[`d5059ea537`](https://github.com/nodejs/node/commit/d5059ea537)] - **doc**: add missing variable in code snippet (Koushil Mankali) [#55478](https://github.com/nodejs/node/pull/55478) +* \[[`900de373ae`](https://github.com/nodejs/node/commit/900de373ae)] - **doc**: add missing word in `single-executable-applications.md` (Konstantin Tsabolov) [#53864](https://github.com/nodejs/node/pull/53864) +* \[[`5735044c8b`](https://github.com/nodejs/node/commit/5735044c8b)] - **doc**: fix typo in http.md (Michael Solomon) [#59354](https://github.com/nodejs/node/pull/59354) +* \[[`2dee6df831`](https://github.com/nodejs/node/commit/2dee6df831)] - **doc**: update devcontainer.json and add documentation (Joyee Cheung) [#60472](https://github.com/nodejs/node/pull/60472) +* \[[`8f2d98d7d2`](https://github.com/nodejs/node/commit/8f2d98d7d2)] - **doc**: add haramj as triager (Haram Jeong) [#60348](https://github.com/nodejs/node/pull/60348) +* \[[`bbd7fdfff4`](https://github.com/nodejs/node/commit/bbd7fdfff4)] - **doc**: clarify require(esm) description (dynst) [#60520](https://github.com/nodejs/node/pull/60520) +* \[[`33ad11a764`](https://github.com/nodejs/node/commit/33ad11a764)] - **doc**: instantiate resolver object (Donghoon Nam) [#60476](https://github.com/nodejs/node/pull/60476) +* \[[`81a61274f3`](https://github.com/nodejs/node/commit/81a61274f3)] - **doc**: correct module loading descriptions (Joyee Cheung) [#60346](https://github.com/nodejs/node/pull/60346) +* \[[`77911185fe`](https://github.com/nodejs/node/commit/77911185fe)] - **doc**: clarify --use-system-ca support status (Joyee Cheung) [#60340](https://github.com/nodejs/node/pull/60340) +* \[[`185f6e95d9`](https://github.com/nodejs/node/commit/185f6e95d9)] - **doc,crypto**: link keygen to supported types (Filip Skokan) [#60585](https://github.com/nodejs/node/pull/60585) +* \[[`772d6c6608`](https://github.com/nodejs/node/commit/772d6c6608)] - **doc,src,lib**: clarify experimental status of Web Storage support (Antoine du Hamel) [#60708](https://github.com/nodejs/node/pull/60708) +* \[[`ad98e11ac2`](https://github.com/nodejs/node/commit/ad98e11ac2)] - **esm**: use sync loading/resolving on non-loader-hook thread (Joyee Cheung) [#60380](https://github.com/nodejs/node/pull/60380) +* \[[`1a00b5f68a`](https://github.com/nodejs/node/commit/1a00b5f68a)] - **(SEMVER-MINOR)** **http**: add optimizeEmptyRequests server option (Rafael Gonzaga) [#59778](https://github.com/nodejs/node/pull/59778) +* \[[`5703ce68bc`](https://github.com/nodejs/node/commit/5703ce68bc)] - **http**: replace startsWith with strict equality (btea) [#59394](https://github.com/nodejs/node/pull/59394) +* \[[`2b696ffad8`](https://github.com/nodejs/node/commit/2b696ffad8)] - **http2**: add diagnostics channels for client stream request body (Darshan Sen) [#60480](https://github.com/nodejs/node/pull/60480) +* \[[`dbdf4cb5a5`](https://github.com/nodejs/node/commit/dbdf4cb5a5)] - **inspector**: inspect HTTP response body (Chengzhong Wu) [#60572](https://github.com/nodejs/node/pull/60572) +* \[[`9dc9a7d33d`](https://github.com/nodejs/node/commit/9dc9a7d33d)] - **inspector**: support inspecting HTTP/2 request and response bodies (Darshan Sen) [#60483](https://github.com/nodejs/node/pull/60483) +* \[[`89fa2befe4`](https://github.com/nodejs/node/commit/89fa2befe4)] - **inspector**: fix crash when receiving non json message (Shima Ryuhei) [#60388](https://github.com/nodejs/node/pull/60388) +* \[[`ff5754077d`](https://github.com/nodejs/node/commit/ff5754077d)] - **(SEMVER-MINOR)** **lib**: add options to util.deprecate (Rafael Gonzaga) [#59982](https://github.com/nodejs/node/pull/59982) +* \[[`33baaf42c8`](https://github.com/nodejs/node/commit/33baaf42c8)] - **lib**: replace global SharedArrayBuffer constructor with bound method (Renegade334) [#60497](https://github.com/nodejs/node/pull/60497) +* \[[`b047586a08`](https://github.com/nodejs/node/commit/b047586a08)] - **meta**: bump actions/download-artifact from 5.0.0 to 6.0.0 (dependabot\[bot]) [#60532](https://github.com/nodejs/node/pull/60532) +* \[[`64192176d7`](https://github.com/nodejs/node/commit/64192176d7)] - **meta**: bump actions/upload-artifact from 4.6.2 to 5.0.0 (dependabot\[bot]) [#60531](https://github.com/nodejs/node/pull/60531) +* \[[`af6d4a6b9b`](https://github.com/nodejs/node/commit/af6d4a6b9b)] - **meta**: bump github/codeql-action from 3.30.5 to 4.31.2 (dependabot\[bot]) [#60533](https://github.com/nodejs/node/pull/60533) +* \[[`c17276fd24`](https://github.com/nodejs/node/commit/c17276fd24)] - **meta**: bump actions/setup-node from 5.0.0 to 6.0.0 (dependabot\[bot]) [#60529](https://github.com/nodejs/node/pull/60529) +* \[[`6e8b52a7dc`](https://github.com/nodejs/node/commit/6e8b52a7dc)] - **meta**: bump actions/stale from 10.0.0 to 10.1.0 (dependabot\[bot]) [#60528](https://github.com/nodejs/node/pull/60528) +* \[[`a12658595b`](https://github.com/nodejs/node/commit/a12658595b)] - **meta**: call `create-release-post.yml` post release (Aviv Keller) [#60366](https://github.com/nodejs/node/pull/60366) +* \[[`8987159234`](https://github.com/nodejs/node/commit/8987159234)] - **(SEMVER-MINOR)** **module**: mark type stripping as stable (Marco Ippolito) [#60600](https://github.com/nodejs/node/pull/60600) +* \[[`36da413663`](https://github.com/nodejs/node/commit/36da413663)] - **module**: fix directory option in the enableCompileCache() API (Joyee Cheung) [#59931](https://github.com/nodejs/node/pull/59931) +* \[[`92c484ebf4`](https://github.com/nodejs/node/commit/92c484ebf4)] - **(SEMVER-MINOR)** **node-api**: add napi\_create\_object\_with\_properties (Miguel Marcondes Filho) [#59953](https://github.com/nodejs/node/pull/59953) +* \[[`545162b0d4`](https://github.com/nodejs/node/commit/545162b0d4)] - **node-api**: use local files for instanceof test (Vladimir Morozov) [#60190](https://github.com/nodejs/node/pull/60190) +* \[[`526c011d89`](https://github.com/nodejs/node/commit/526c011d89)] - **perf\_hooks**: fix stack overflow error (Antoine du Hamel) [#60084](https://github.com/nodejs/node/pull/60084) +* \[[`1de0476939`](https://github.com/nodejs/node/commit/1de0476939)] - **perf\_hooks**: move non-standard performance properties to perf\_hooks (Chengzhong Wu) [#60370](https://github.com/nodejs/node/pull/60370) +* \[[`07ec1239ef`](https://github.com/nodejs/node/commit/07ec1239ef)] - **repl**: fix pasting after moving the cursor to the left (Ruben Bridgewater) [#60470](https://github.com/nodejs/node/pull/60470) +* \[[`b11bc5984e`](https://github.com/nodejs/node/commit/b11bc5984e)] - **(SEMVER-MINOR)** **sqlite**: allow setting defensive flag (Bart Louwers) [#60217](https://github.com/nodejs/node/pull/60217) +* \[[`273c9661fd`](https://github.com/nodejs/node/commit/273c9661fd)] - **sqlite,doc**: fix StatementSync section (Edy Silva) [#60474](https://github.com/nodejs/node/pull/60474) +* \[[`d92ec21a4c`](https://github.com/nodejs/node/commit/d92ec21a4c)] - **src**: use CP\_UTF8 for wide file names on win32 (Fedor Indutny) [#60575](https://github.com/nodejs/node/pull/60575) +* \[[`baef0468ed`](https://github.com/nodejs/node/commit/baef0468ed)] - **src**: move Node-API version detection to where it is used (Anna Henningsen) [#60512](https://github.com/nodejs/node/pull/60512) +* \[[`e7da5b4b7d`](https://github.com/nodejs/node/commit/e7da5b4b7d)] - **(SEMVER-MINOR)** **src**: add watch config namespace (Marco Ippolito) [#60178](https://github.com/nodejs/node/pull/60178) +* \[[`a7f7d10c06`](https://github.com/nodejs/node/commit/a7f7d10c06)] - **(SEMVER-MINOR)** **src**: add an option to make compile cache portable (Aditi) [#58797](https://github.com/nodejs/node/pull/58797) +* \[[`566add0b19`](https://github.com/nodejs/node/commit/566add0b19)] - **src**: avoid C strings in more C++ exception throws (Anna Henningsen) [#60592](https://github.com/nodejs/node/pull/60592) +* \[[`9b796347c1`](https://github.com/nodejs/node/commit/9b796347c1)] - **src**: add internal binding for constructing SharedArrayBuffers (Renegade334) [#60497](https://github.com/nodejs/node/pull/60497) +* \[[`3b01cbb411`](https://github.com/nodejs/node/commit/3b01cbb411)] - **src**: move `napi_addon_register_func` to `node_api_types.h` (Anna Henningsen) [#60512](https://github.com/nodejs/node/pull/60512) +* \[[`02fb7f4ecb`](https://github.com/nodejs/node/commit/02fb7f4ecb)] - **src**: remove unconditional NAPI\_EXPERIMENTAL in node.h (Chengzhong Wu) [#60345](https://github.com/nodejs/node/pull/60345) +* \[[`bd09ae24e4`](https://github.com/nodejs/node/commit/bd09ae24e4)] - **src**: clean up generic counter implementation (Anna Henningsen) [#60447](https://github.com/nodejs/node/pull/60447) +* \[[`cd6bf51dbd`](https://github.com/nodejs/node/commit/cd6bf51dbd)] - **src**: add enum handle for ToStringHelper + formatting (Burkov Egor) [#56829](https://github.com/nodejs/node/pull/56829) +* \[[`92ea669240`](https://github.com/nodejs/node/commit/92ea669240)] - **(SEMVER-MINOR)** **src,permission**: add --allow-inspector ability (Rafael Gonzaga) [#59711](https://github.com/nodejs/node/pull/59711) +* \[[`ac3dbe48f7`](https://github.com/nodejs/node/commit/ac3dbe48f7)] - **stream**: don't try to read more if reading (Robert Nagy) [#60454](https://github.com/nodejs/node/pull/60454) +* \[[`790288a93b`](https://github.com/nodejs/node/commit/790288a93b)] - **test**: ensure assertions are reachable in `test/internet` (Antoine du Hamel) [#60513](https://github.com/nodejs/node/pull/60513) +* \[[`0a85132989`](https://github.com/nodejs/node/commit/0a85132989)] - **test**: fix status when compiled without inspector (Antoine du Hamel) [#60289](https://github.com/nodejs/node/pull/60289) +* \[[`2f57673172`](https://github.com/nodejs/node/commit/2f57673172)] - **test**: deflake test-perf-hooks-timerify-histogram-sync (Joyee Cheung) [#60639](https://github.com/nodejs/node/pull/60639) +* \[[`09726269de`](https://github.com/nodejs/node/commit/09726269de)] - **test**: apply a delay to `watch-mode-kill-signal` tests (Joyee Cheung) [#60610](https://github.com/nodejs/node/pull/60610) +* \[[`45537b9562`](https://github.com/nodejs/node/commit/45537b9562)] - **test**: async iife in repl (Tony Gorez) [#44878](https://github.com/nodejs/node/pull/44878) +* \[[`4ca81f101d`](https://github.com/nodejs/node/commit/4ca81f101d)] - **test**: parallelize sea tests when there's enough disk space (Joyee Cheung) [#60604](https://github.com/nodejs/node/pull/60604) +* \[[`ea71e96191`](https://github.com/nodejs/node/commit/ea71e96191)] - **test**: only show overridden env in child process failures (Joyee Cheung) [#60556](https://github.com/nodejs/node/pull/60556) +* \[[`06b2e348c7`](https://github.com/nodejs/node/commit/06b2e348c7)] - **test**: ensure assertions are reached on more tests (Antoine du Hamel) [#60498](https://github.com/nodejs/node/pull/60498) +* \[[`de9c8cb670`](https://github.com/nodejs/node/commit/de9c8cb670)] - **test**: ensure assertions are reachable in `test/es-module` (Antoine du Hamel) [#60501](https://github.com/nodejs/node/pull/60501) +* \[[`75bc40fced`](https://github.com/nodejs/node/commit/75bc40fced)] - **test**: ensure assertions are reached on more tests (Antoine du Hamel) [#60485](https://github.com/nodejs/node/pull/60485) +* \[[`1a6084cfd3`](https://github.com/nodejs/node/commit/1a6084cfd3)] - **test**: ensure assertions are reached on more tests (Antoine du Hamel) [#60500](https://github.com/nodejs/node/pull/60500) +* \[[`2c651c90cf`](https://github.com/nodejs/node/commit/2c651c90cf)] - **test**: split test-perf-hooks-timerify (Joyee Cheung) [#60568](https://github.com/nodejs/node/pull/60568) +* \[[`6e8b5f7345`](https://github.com/nodejs/node/commit/6e8b5f7345)] - **test**: add more logs to test-esm-loader-hooks-inspect-wait (Joyee Cheung) [#60466](https://github.com/nodejs/node/pull/60466) +* \[[`9dea7ffa30`](https://github.com/nodejs/node/commit/9dea7ffa30)] - **test**: mark stringbytes-external-exceed-max tests as flaky on AIX (Joyee Cheung) [#60565](https://github.com/nodejs/node/pull/60565) +* \[[`0b3c3b710a`](https://github.com/nodejs/node/commit/0b3c3b710a)] - **test**: split test-esm-wasm.js (Joyee Cheung) [#60491](https://github.com/nodejs/node/pull/60491) +* \[[`a15b795b34`](https://github.com/nodejs/node/commit/a15b795b34)] - **test**: correct conditional secure heap flags test (Shelley Vohr) [#60385](https://github.com/nodejs/node/pull/60385) +* \[[`38b77b3a44`](https://github.com/nodejs/node/commit/38b77b3a44)] - **test**: fix flaky test-watch-mode-kill-signal-\* (Joyee Cheung) [#60443](https://github.com/nodejs/node/pull/60443) +* \[[`e8d7598057`](https://github.com/nodejs/node/commit/e8d7598057)] - **test**: capture stack trace in debugger timeout errors (Joyee Cheung) [#60457](https://github.com/nodejs/node/pull/60457) +* \[[`674befeb81`](https://github.com/nodejs/node/commit/674befeb81)] - **test**: ensure assertions are reachable in `test/sequential` (Antoine du Hamel) [#60412](https://github.com/nodejs/node/pull/60412) +* \[[`952c08a735`](https://github.com/nodejs/node/commit/952c08a735)] - **test**: ensure assertions are reachable in more folders (Antoine du Hamel) [#60411](https://github.com/nodejs/node/pull/60411) +* \[[`bbca57584b`](https://github.com/nodejs/node/commit/bbca57584b)] - **test**: split test-runner-watch-mode (Joyee Cheung) [#60391](https://github.com/nodejs/node/pull/60391) +* \[[`e78e0cf6e7`](https://github.com/nodejs/node/commit/e78e0cf6e7)] - **test**: move test-runner-watch-mode helper into common (Joyee Cheung) [#60391](https://github.com/nodejs/node/pull/60391) +* \[[`84576ef021`](https://github.com/nodejs/node/commit/84576ef021)] - **test**: ensure assertions are reachable in `test/addons` (Antoine du Hamel) [#60142](https://github.com/nodejs/node/pull/60142) +* \[[`1659078c11`](https://github.com/nodejs/node/commit/1659078c11)] - **test**: ignore EPIPE errors in https proxy invalid URL test (Joyee Cheung) [#60269](https://github.com/nodejs/node/pull/60269) +* \[[`79ffee80ec`](https://github.com/nodejs/node/commit/79ffee80ec)] - **test**: ensure assertions are reachable in `test/client-proxy` (Antoine du Hamel) [#60175](https://github.com/nodejs/node/pull/60175) +* \[[`e5a812243a`](https://github.com/nodejs/node/commit/e5a812243a)] - **test**: ensure assertions are reachable in `test/async-hooks` (Antoine du Hamel) [#60150](https://github.com/nodejs/node/pull/60150) +* \[[`e924fd72e3`](https://github.com/nodejs/node/commit/e924fd72e3)] - **test,crypto**: handle a few more BoringSSL tests (Shelley Vohr) [#59030](https://github.com/nodejs/node/pull/59030) +* \[[`a55ac11611`](https://github.com/nodejs/node/commit/a55ac11611)] - **test,crypto**: update x448 and ed448 expectation when on boringssl (Shelley Vohr) [#60387](https://github.com/nodejs/node/pull/60387) +* \[[`55d5e9ec73`](https://github.com/nodejs/node/commit/55d5e9ec73)] - **tls**: fix leak on invalid protocol method (Shelley Vohr) [#60427](https://github.com/nodejs/node/pull/60427) +* \[[`5763c96e7c`](https://github.com/nodejs/node/commit/5763c96e7c)] - **tools**: replace invalid expression in dependabot config (Riddhi) [#60649](https://github.com/nodejs/node/pull/60649) +* \[[`b6e21b47d7`](https://github.com/nodejs/node/commit/b6e21b47d7)] - **tools**: skip unaffected GHA jobs for changes in `test/internet` (Antoine du Hamel) [#60517](https://github.com/nodejs/node/pull/60517) +* \[[`999664c76d`](https://github.com/nodejs/node/commit/999664c76d)] - **tools**: do not use short hashes for deps versioning to avoid collision (Antoine du Hamel) [#60407](https://github.com/nodejs/node/pull/60407) +* \[[`ada856d0fb`](https://github.com/nodejs/node/commit/ada856d0fb)] - **tools**: only add test reporter args when node:test is used (Joyee Cheung) [#60551](https://github.com/nodejs/node/pull/60551) +* \[[`1812c56bb3`](https://github.com/nodejs/node/commit/1812c56bb3)] - **tools**: fix update-icu script (Michaël Zasso) [#60521](https://github.com/nodejs/node/pull/60521) +* \[[`747040438a`](https://github.com/nodejs/node/commit/747040438a)] - **tools**: fix linter for semver-major release proposals (Antoine du Hamel) [#60481](https://github.com/nodejs/node/pull/60481) +* \[[`f170551e40`](https://github.com/nodejs/node/commit/f170551e40)] - **tools**: fix failing release-proposal linter for LTS transitions (Antoine du Hamel) [#60465](https://github.com/nodejs/node/pull/60465) +* \[[`2db4ea0ce4`](https://github.com/nodejs/node/commit/2db4ea0ce4)] - **tools**: remove undici from daily wpt.fyi job (Filip Skokan) [#60444](https://github.com/nodejs/node/pull/60444) +* \[[`2a85aa4e7b`](https://github.com/nodejs/node/commit/2a85aa4e7b)] - **tools**: add lint rule to ensure assertions are reached (Antoine du Hamel) [#60125](https://github.com/nodejs/node/pull/60125) +* \[[`48299ef5fb`](https://github.com/nodejs/node/commit/48299ef5fb)] - **tools,doc**: update JavaScript primitive types to match MDN Web Docs (JustApple) [#60581](https://github.com/nodejs/node/pull/60581) +* \[[`7ec04cf936`](https://github.com/nodejs/node/commit/7ec04cf936)] - **util**: fix stylize of special properties in inspect (Ge Gao) [#60479](https://github.com/nodejs/node/pull/60479) +* \[[`05d7509bd2`](https://github.com/nodejs/node/commit/05d7509bd2)] - **(SEMVER-MINOR)** **v8**: add cpu profile (theanarkh) [#59807](https://github.com/nodejs/node/pull/59807) +* \[[`884fe884a1`](https://github.com/nodejs/node/commit/884fe884a1)] - **vm**: hint module identifier in instantiate errors (Chengzhong Wu) [#60199](https://github.com/nodejs/node/pull/60199) +* \[[`a2caf19f70`](https://github.com/nodejs/node/commit/a2caf19f70)] - **watch**: fix interaction with multiple env files (Marco Ippolito) [#60605](https://github.com/nodejs/node/pull/60605) + + + +## 2025-11-11, Version 24.11.1 'Krypton' (LTS), @aduh95 + +### Notable Changes + +The known issue relating to `Buffer.allocUnsafe` incorrectly zero-filling buffers +has now been addressed and now returns uninitialized memory as documented in the +[`Buffer.allocUnsafe`](https://nodejs.org/docs/latest-v24.x/api/buffer.html#static-method-bufferallocunsafesize) +documentation. + +### Commits + +* \[[`0a15ccf3f4`](https://github.com/nodejs/node/commit/0a15ccf3f4)] - **benchmark**: improve cpu.sh for safety and usability (Nam Yooseong) [#60162](https://github.com/nodejs/node/pull/60162) +* \[[`a1c7d1dac9`](https://github.com/nodejs/node/commit/a1c7d1dac9)] - **benchmark**: add benchmark for leaf source text modules (Joyee Cheung) [#60205](https://github.com/nodejs/node/pull/60205) +* \[[`99e2acf46b`](https://github.com/nodejs/node/commit/99e2acf46b)] - **benchmark**: add vm.SourceTextModule benchmark (Joyee Cheung) [#59396](https://github.com/nodejs/node/pull/59396) +* \[[`c01c72b407`](https://github.com/nodejs/node/commit/c01c72b407)] - **benchmark**: use non-deprecated WriteUtf8V2 method (Michaël Zasso) [#60173](https://github.com/nodejs/node/pull/60173) +* \[[`a42dbd138e`](https://github.com/nodejs/node/commit/a42dbd138e)] - **build**: ibmi follow aix visibility (SRAVANI GUNDEPALLI) [#60360](https://github.com/nodejs/node/pull/60360) +* \[[`5673a54a5d`](https://github.com/nodejs/node/commit/5673a54a5d)] - **build**: use call command when calling python configure (Jacob Nichols) [#60098](https://github.com/nodejs/node/pull/60098) +* \[[`c67cb727cb`](https://github.com/nodejs/node/commit/c67cb727cb)] - **build**: build v8 with -fvisibility=hidden -fvisibility-inlines-hidden (Joyee Cheung) [#56290](https://github.com/nodejs/node/pull/56290) +* \[[`b03f7b93b1`](https://github.com/nodejs/node/commit/b03f7b93b1)] - **build**: remove V8\_COMPRESS\_POINTERS\_IN\_ISOLATE\_CAGE defs (Joyee Cheung) [#60296](https://github.com/nodejs/node/pull/60296) +* \[[`2505568531`](https://github.com/nodejs/node/commit/2505568531)] - **build, src**: fix include paths for vtune files (Rahul) [#59999](https://github.com/nodejs/node/pull/59999) +* \[[`95330b036f`](https://github.com/nodejs/node/commit/95330b036f)] - **crypto**: update root certificates to NSS 3.116 (Node.js GitHub Bot) [#59956](https://github.com/nodejs/node/pull/59956) +* \[[`c221d892ef`](https://github.com/nodejs/node/commit/c221d892ef)] - **deps**: update corepack to 0.34.2 (Node.js GitHub Bot) [#60550](https://github.com/nodejs/node/pull/60550) +* \[[`bc00aa4c77`](https://github.com/nodejs/node/commit/bc00aa4c77)] - **deps**: update simdjson to 4.0.7 (Node.js GitHub Bot) [#59883](https://github.com/nodejs/node/pull/59883) +* \[[`d03b89ec53`](https://github.com/nodejs/node/commit/d03b89ec53)] - **deps**: update corepack to 0.34.1 (Node.js GitHub Bot) [#60314](https://github.com/nodejs/node/pull/60314) +* \[[`b7882090de`](https://github.com/nodejs/node/commit/b7882090de)] - **deps**: update inspector\_protocol to af7f5a8173fdbc29f0835ec94395932e328b (Node.js GitHub Bot) [#60312](https://github.com/nodejs/node/pull/60312) +* \[[`7007f9dd65`](https://github.com/nodejs/node/commit/7007f9dd65)] - **deps**: update googletest to 279f847 (Node.js GitHub Bot) [#60219](https://github.com/nodejs/node/pull/60219) +* \[[`a56aa9ffa8`](https://github.com/nodejs/node/commit/a56aa9ffa8)] - **deps**: upgrade npm to 11.6.2 (npm team) [#60168](https://github.com/nodejs/node/pull/60168) +* \[[`0bf8952721`](https://github.com/nodejs/node/commit/0bf8952721)] - **doc**: mention more codemods in `deprecations.md` (Augustin Mauroy) [#60243](https://github.com/nodejs/node/pull/60243) +* \[[`2473ca77f6`](https://github.com/nodejs/node/commit/2473ca77f6)] - **doc**: add missing CAA type to dns.resolveAny() & dnsPromises.resolveAny() (Jimmy Leung) [#58899](https://github.com/nodejs/node/pull/58899) +* \[[`39ddd8522e`](https://github.com/nodejs/node/commit/39ddd8522e)] - **doc**: use `any` for `worker_threads.Worker` 'error' event argument `err` (Jonas Geiler) [#60300](https://github.com/nodejs/node/pull/60300) +* \[[`eaa825fd97`](https://github.com/nodejs/node/commit/eaa825fd97)] - **doc**: update decorator documentation to reflect actual policy (Muhammad Salman Aziz) [#60288](https://github.com/nodejs/node/pull/60288) +* \[[`a744e42282`](https://github.com/nodejs/node/commit/a744e42282)] - **doc**: document wildcard supported by tools/test.py (Joyee Cheung) [#60265](https://github.com/nodejs/node/pull/60265) +* \[[`ec0d5beb09`](https://github.com/nodejs/node/commit/ec0d5beb09)] - **doc**: add --heap-snapshot-on-oom to useful v8 flag (jakecastelli) [#60260](https://github.com/nodejs/node/pull/60260) +* \[[`13da0df12a`](https://github.com/nodejs/node/commit/13da0df12a)] - **doc**: fix `blob.bytes()` heading level (XTY) [#60252](https://github.com/nodejs/node/pull/60252) +* \[[`8e771632b7`](https://github.com/nodejs/node/commit/8e771632b7)] - **doc**: fix not working code example in vm docs (Artur Gawlik) [#60224](https://github.com/nodejs/node/pull/60224) +* \[[`70c2080bff`](https://github.com/nodejs/node/commit/70c2080bff)] - **doc**: improve code snippet alternative of url.parse() using WHATWG URL (Steven) [#60209](https://github.com/nodejs/node/pull/60209) +* \[[`beadcf176e`](https://github.com/nodejs/node/commit/beadcf176e)] - **doc**: `createSQLTagStore` -> `createTagStore` (Aviv Keller) [#60182](https://github.com/nodejs/node/pull/60182) +* \[[`b0da3b9c6a`](https://github.com/nodejs/node/commit/b0da3b9c6a)] - **doc**: use markdown when branch-diff major release (Rafael Gonzaga) [#60179](https://github.com/nodejs/node/pull/60179) +* \[[`688115aa6b`](https://github.com/nodejs/node/commit/688115aa6b)] - **doc**: update teams in collaborator-guide.md and add links (Bart Louwers) [#60065](https://github.com/nodejs/node/pull/60065) +* \[[`923082a064`](https://github.com/nodejs/node/commit/923082a064)] - **doc**: disambiguate top-level `worker_threads` module exports (René) [#59890](https://github.com/nodejs/node/pull/59890) +* \[[`7be4330870`](https://github.com/nodejs/node/commit/7be4330870)] - **doc**: add known issue to v24.11.0 release notes (Richard Lau) [#60467](https://github.com/nodejs/node/pull/60467) +* \[[`4d8f62aeaf`](https://github.com/nodejs/node/commit/4d8f62aeaf)] - **doc, module**: change async customization hooks to experimental (Gerhard Stöbich) [#60302](https://github.com/nodejs/node/pull/60302) +* \[[`d86a118bbd`](https://github.com/nodejs/node/commit/d86a118bbd)] - **http**: lazy allocate cookies array (Robert Nagy) [#59734](https://github.com/nodejs/node/pull/59734) +* \[[`8c256d4139`](https://github.com/nodejs/node/commit/8c256d4139)] - **http**: fix http client leaky with double response (theanarkh) [#60062](https://github.com/nodejs/node/pull/60062) +* \[[`265e9d59fa`](https://github.com/nodejs/node/commit/265e9d59fa)] - **http2**: rename variable to additionalPseudoHeaders (Tobias Nießen) [#60208](https://github.com/nodejs/node/pull/60208) +* \[[`65bec037e2`](https://github.com/nodejs/node/commit/65bec037e2)] - **http2**: do not crash on mismatched ping buffer length (René) [#60135](https://github.com/nodejs/node/pull/60135) +* \[[`9b83ef53b7`](https://github.com/nodejs/node/commit/9b83ef53b7)] - **inspector**: add network payload buffer size limits (Chengzhong Wu) [#60236](https://github.com/nodejs/node/pull/60236) +* \[[`03ac05c458`](https://github.com/nodejs/node/commit/03ac05c458)] - **inspector**: support handshake response for websocket inspection (Shima Ryuhei) [#60225](https://github.com/nodejs/node/pull/60225) +* \[[`aa04f06190`](https://github.com/nodejs/node/commit/aa04f06190)] - **lib**: fix typo in createBlobReaderStream (SeokHun) [#60132](https://github.com/nodejs/node/pull/60132) +* \[[`5aea1a429e`](https://github.com/nodejs/node/commit/5aea1a429e)] - **lib**: fix constructor in \_errnoException stack tree (SeokHun) [#60156](https://github.com/nodejs/node/pull/60156) +* \[[`4f7745acc7`](https://github.com/nodejs/node/commit/4f7745acc7)] - **lib**: fix typo in QuicSessionStats (SeokHun) [#60155](https://github.com/nodejs/node/pull/60155) +* \[[`f8725861ea`](https://github.com/nodejs/node/commit/f8725861ea)] - **lib**: remove redundant destroyHook checks (Gürgün Dayıoğlu) [#60120](https://github.com/nodejs/node/pull/60120) +* \[[`696c20bf3f`](https://github.com/nodejs/node/commit/696c20bf3f)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#60325](https://github.com/nodejs/node/pull/60325) +* \[[`90434ff99a`](https://github.com/nodejs/node/commit/90434ff99a)] - **meta**: loop userland-migrations in deprecations (Chengzhong Wu) [#60299](https://github.com/nodejs/node/pull/60299) +* \[[`ffbc0ae60a`](https://github.com/nodejs/node/commit/ffbc0ae60a)] - **module**: refactor and clarify async loader hook customizations (Joyee Cheung) [#60278](https://github.com/nodejs/node/pull/60278) +* \[[`6ed6062f7d`](https://github.com/nodejs/node/commit/6ed6062f7d)] - **module**: handle null source from async loader hooks in sync hooks (Joyee Cheung) [#59929](https://github.com/nodejs/node/pull/59929) +* \[[`a2871baed2`](https://github.com/nodejs/node/commit/a2871baed2)] - **msi**: fix WiX warnings (Stefan Stojanovic) [#60251](https://github.com/nodejs/node/pull/60251) +* \[[`6199541d67`](https://github.com/nodejs/node/commit/6199541d67)] - **src**: fix timing of snapshot serialize callback (Joyee Cheung) [#60434](https://github.com/nodejs/node/pull/60434) +* \[[`13b687959a`](https://github.com/nodejs/node/commit/13b687959a)] - **src**: add COUNT\_GENERIC\_USAGE utility for tests (Joyee Cheung) [#60434](https://github.com/nodejs/node/pull/60434) +* \[[`a587623b4f`](https://github.com/nodejs/node/commit/a587623b4f)] - **src**: conditionally disable source phase imports by default (Shelley Vohr) [#60364](https://github.com/nodejs/node/pull/60364) +* \[[`e483267995`](https://github.com/nodejs/node/commit/e483267995)] - **src**: use cached primordials\_string (Sohyeon Kim) [#60255](https://github.com/nodejs/node/pull/60255) +* \[[`4c9a64fbaf`](https://github.com/nodejs/node/commit/4c9a64fbaf)] - **src**: replace Environment::GetCurrent with args.GetIsolate (Sohyeon Kim) [#60256](https://github.com/nodejs/node/pull/60256) +* \[[`eb8a0493d1`](https://github.com/nodejs/node/commit/eb8a0493d1)] - **src**: initial enablement of IsolateGroups (James M Snell) [#60254](https://github.com/nodejs/node/pull/60254) +* \[[`463c6450cf`](https://github.com/nodejs/node/commit/463c6450cf)] - **src**: use `Utf8Value` and `TwoByteValue` instead of V8 helpers (Anna Henningsen) [#60244](https://github.com/nodejs/node/pull/60244) +* \[[`b370e02789`](https://github.com/nodejs/node/commit/b370e02789)] - **src**: add a default branch for module phase (Chengzhong Wu) [#60261](https://github.com/nodejs/node/pull/60261) +* \[[`4e1c5c5601`](https://github.com/nodejs/node/commit/4e1c5c5601)] - **src**: make additional cleanups in node locks impl (James M Snell) [#60061](https://github.com/nodejs/node/pull/60061) +* \[[`f00d4c10fc`](https://github.com/nodejs/node/commit/f00d4c10fc)] - **src**: update locks to use DictionaryTemplate (James M Snell) [#60061](https://github.com/nodejs/node/pull/60061) +* \[[`1c8716e97c`](https://github.com/nodejs/node/commit/1c8716e97c)] - **test**: increase debugger waitFor timeout on macOS (Chengzhong Wu) [#60367](https://github.com/nodejs/node/pull/60367) +* \[[`17b4f38e9c`](https://github.com/nodejs/node/commit/17b4f38e9c)] - **test**: put helper in test-runner-output into common (Joyee Cheung) [#60330](https://github.com/nodejs/node/pull/60330) +* \[[`43b9ea8389`](https://github.com/nodejs/node/commit/43b9ea8389)] - **test**: fix small compile warning in test\_network\_requests\_buffer.cc (xiaocainiao633) [#60281](https://github.com/nodejs/node/pull/60281) +* \[[`38a62980ad`](https://github.com/nodejs/node/commit/38a62980ad)] - **test**: split test-runner-watch-mode-kill-signal (Joyee Cheung) [#60298](https://github.com/nodejs/node/pull/60298) +* \[[`34e4c8c84f`](https://github.com/nodejs/node/commit/34e4c8c84f)] - **test**: fix incorrect calculation in test-perf-hooks.js (Joyee Cheung) [#60271](https://github.com/nodejs/node/pull/60271) +* \[[`4481feb17b`](https://github.com/nodejs/node/commit/4481feb17b)] - **test**: parallelize test-without-async-context-frame correctly (Joyee Cheung) [#60273](https://github.com/nodejs/node/pull/60273) +* \[[`91ea9b06e0`](https://github.com/nodejs/node/commit/91ea9b06e0)] - **test**: skip sea tests on x64 macOS (Joyee Cheung) [#60250](https://github.com/nodejs/node/pull/60250) +* \[[`cedba09e60`](https://github.com/nodejs/node/commit/cedba09e60)] - **test**: move sea tests into test/sea (Joyee Cheung) [#60250](https://github.com/nodejs/node/pull/60250) +* \[[`635af55e12`](https://github.com/nodejs/node/commit/635af55e12)] - _**Revert**_ "**test**: ensure message event fires in worker message port test" (Luigi Pinca) [#60126](https://github.com/nodejs/node/pull/60126) +* \[[`68f678028e`](https://github.com/nodejs/node/commit/68f678028e)] - **test**: skip tests that cause timeouts on IBM i (SRAVANI GUNDEPALLI) [#60148](https://github.com/nodejs/node/pull/60148) +* \[[`cc3a70598c`](https://github.com/nodejs/node/commit/cc3a70598c)] - **test**: deflake test-fs-promises-watch-iterator (Luigi Pinca) [#60060](https://github.com/nodejs/node/pull/60060) +* \[[`3d784dd766`](https://github.com/nodejs/node/commit/3d784dd766)] - **test**: prepare junit file attribute normalization (sangwook) [#59432](https://github.com/nodejs/node/pull/59432) +* \[[`84974d97ad`](https://github.com/nodejs/node/commit/84974d97ad)] - **test**: skip failing test on macOS 15.7+ (Antoine du Hamel) [#60419](https://github.com/nodejs/node/pull/60419) +* \[[`fabf8e4975`](https://github.com/nodejs/node/commit/fabf8e4975)] - **test,crypto**: fix conditional SHA3-\* skip on BoringSSL (Filip Skokan) [#60379](https://github.com/nodejs/node/pull/60379) +* \[[`8faa494bf2`](https://github.com/nodejs/node/commit/8faa494bf2)] - **test,crypto**: sha3 algorithms aren't supported with BoringSSL (Shelley Vohr) [#60374](https://github.com/nodejs/node/pull/60374) +* \[[`538a00c0f6`](https://github.com/nodejs/node/commit/538a00c0f6)] - **test,doc**: skip --max-old-space-size-percentage on 32-bit platforms (Asaf Federman) [#60144](https://github.com/nodejs/node/pull/60144) +* \[[`9ac5dbb694`](https://github.com/nodejs/node/commit/9ac5dbb694)] - **test\_runner**: use module.registerHooks in module mocks (Joyee Cheung) [#60326](https://github.com/nodejs/node/pull/60326) +* \[[`f6ff6e7166`](https://github.com/nodejs/node/commit/f6ff6e7166)] - **test\_runner**: fix suite timeout (Moshe Atlow) [#59853](https://github.com/nodejs/node/pull/59853) +* \[[`455bfeb52d`](https://github.com/nodejs/node/commit/455bfeb52d)] - **test\_runner**: add junit file attribute support (sangwook) [#59432](https://github.com/nodejs/node/pull/59432) +* \[[`223c5e105d`](https://github.com/nodejs/node/commit/223c5e105d)] - **tools**: update gyp-next to 0.20.5 (Node.js GitHub Bot) [#60313](https://github.com/nodejs/node/pull/60313) +* \[[`2949408fc1`](https://github.com/nodejs/node/commit/2949408fc1)] - **tools**: limit inspector protocol PR title length (Chengzhong Wu) [#60324](https://github.com/nodejs/node/pull/60324) +* \[[`b36a898650`](https://github.com/nodejs/node/commit/b36a898650)] - **tools**: fix inspector\_protocol updater (Chengzhong Wu) [#60277](https://github.com/nodejs/node/pull/60277) +* \[[`d60f002b62`](https://github.com/nodejs/node/commit/d60f002b62)] - **tools**: optimize wildcard execution in tools/test.py (Joyee Cheung) [#60266](https://github.com/nodejs/node/pull/60266) +* \[[`9d4e422419`](https://github.com/nodejs/node/commit/9d4e422419)] - **tools**: add inspector\_protocol updater (Chengzhong Wu) [#60245](https://github.com/nodejs/node/pull/60245) +* \[[`2f93a9894f`](https://github.com/nodejs/node/commit/2f93a9894f)] - **tools**: use cooldown property correctly (Rafael Gonzaga) [#60134](https://github.com/nodejs/node/pull/60134) +* \[[`9468ade95d`](https://github.com/nodejs/node/commit/9468ade95d)] - **typings**: add missing properties and method in Worker (Woohyun Sung) [#60257](https://github.com/nodejs/node/pull/60257) +* \[[`f611ec0a9e`](https://github.com/nodejs/node/commit/f611ec0a9e)] - **typings**: add missing properties in HTTPParser (Woohyun Sung) [#60257](https://github.com/nodejs/node/pull/60257) +* \[[`301c1347a1`](https://github.com/nodejs/node/commit/301c1347a1)] - **typings**: delete undefined property in ConfigBinding (Woohyun Sung) [#60257](https://github.com/nodejs/node/pull/60257) +* \[[`80fdb3d39b`](https://github.com/nodejs/node/commit/80fdb3d39b)] - **typings**: add buffer internalBinding typing (방진혁) [#60163](https://github.com/nodejs/node/pull/60163) +* \[[`8cb3b77039`](https://github.com/nodejs/node/commit/8cb3b77039)] - **util**: use more defensive code when inspecting error objects (Antoine du Hamel) [#60139](https://github.com/nodejs/node/pull/60139) +* \[[`748d4f6430`](https://github.com/nodejs/node/commit/748d4f6430)] - **util**: mark special properties when inspecting them (Ruben Bridgewater) [#60131](https://github.com/nodejs/node/pull/60131) +* \[[`6183a759d7`](https://github.com/nodejs/node/commit/6183a759d7)] - **vm**: make vm.Module.evaluate() conditionally synchronous (Joyee Cheung) [#60205](https://github.com/nodejs/node/pull/60205) +* \[[`4b8506628f`](https://github.com/nodejs/node/commit/4b8506628f)] - **win**: upgrade Visual Studio workload from 2019 to 2022 (Jiawen Geng) [#60318](https://github.com/nodejs/node/pull/60318) + + + +## 2025-10-28, Version 24.11.0 'Krypton' (LTS), @richardlau + +### Notable Changes + +This release marks the transition of Node.js 24.x into Long Term Support (LTS) +with the codename 'Krypton'. It will continue to receive updates through to +the end of April 2028. + +Other than updating metadata, such as the `process.release` object, to reflect +that the release is LTS, no further changes from Node.js 24.10.0 are included. + +### Known issue + +An issue has been identified in the Node.js 24.x line with `Buffer.allocUnsafe` +unintentionally returning zero-filled buffers. This API is +[documented to return uninitialized memory](https://nodejs.org/docs/latest-v24.x/api/buffer.html#static-method-bufferallocunsafesize). +The documented behavior will be restored in the next Node.js 24.x LTS release to bring +it back in line with previous releases. For more information, see +[#60423](https://github.com/nodejs/node/issues/60423). + + + +## 2025-10-08, Version 24.10.0 (Current), @RafaelGSS + +### Notable Changes + +* \[[`31bb476895`](https://github.com/nodejs/node/commit/31bb476895)] - **(SEMVER-MINOR)** **console**: allow per-stream `inspectOptions` option (Anna Henningsen) [#60082](https://github.com/nodejs/node/pull/60082) +* \[[`3b92be2fb8`](https://github.com/nodejs/node/commit/3b92be2fb8)] - **(SEMVER-MINOR)** **lib**: remove util.getCallSite (Rafael Gonzaga) [#59980](https://github.com/nodejs/node/pull/59980) +* \[[`18c79d9e1c`](https://github.com/nodejs/node/commit/18c79d9e1c)] - **(SEMVER-MINOR)** **sqlite**: create authorization api (Guilherme Araújo) [#59928](https://github.com/nodejs/node/pull/59928) + +### Commits + +* \[[`e8cff3d51e`](https://github.com/nodejs/node/commit/e8cff3d51e)] - **benchmark**: remove unused variable from util/priority-queue (Bruno Rodrigues) [#59872](https://github.com/nodejs/node/pull/59872) +* \[[`03294252ab`](https://github.com/nodejs/node/commit/03294252ab)] - **benchmark**: update count to n in permission startup (Bruno Rodrigues) [#59872](https://github.com/nodejs/node/pull/59872) +* \[[`3c8a609d9b`](https://github.com/nodejs/node/commit/3c8a609d9b)] - **benchmark**: update num to n in dgram offset-length (Bruno Rodrigues) [#59872](https://github.com/nodejs/node/pull/59872) +* \[[`7b2032b13e`](https://github.com/nodejs/node/commit/7b2032b13e)] - **benchmark**: adjust dgram offset-length len values (Bruno Rodrigues) [#59708](https://github.com/nodejs/node/pull/59708) +* \[[`552d887aee`](https://github.com/nodejs/node/commit/552d887aee)] - **benchmark**: update num to n in dgram offset-length (Bruno Rodrigues) [#59708](https://github.com/nodejs/node/pull/59708) +* \[[`31bb476895`](https://github.com/nodejs/node/commit/31bb476895)] - **(SEMVER-MINOR)** **console**: allow per-stream `inspectOptions` option (Anna Henningsen) [#60082](https://github.com/nodejs/node/pull/60082) +* \[[`0bf022d4c0`](https://github.com/nodejs/node/commit/0bf022d4c0)] - **console,util**: improve array inspection performance (Ruben Bridgewater) [#60037](https://github.com/nodejs/node/pull/60037) +* \[[`04d568e591`](https://github.com/nodejs/node/commit/04d568e591)] - **deps**: V8: cherry-pick f93055fbd5aa (Olivier Flückiger) [#60105](https://github.com/nodejs/node/pull/60105) +* \[[`621058b3bf`](https://github.com/nodejs/node/commit/621058b3bf)] - **deps**: update archs files for openssl-3.5.4 (Node.js GitHub Bot) [#60101](https://github.com/nodejs/node/pull/60101) +* \[[`81b3009fe6`](https://github.com/nodejs/node/commit/81b3009fe6)] - **deps**: upgrade openssl sources to openssl-3.5.4 (Node.js GitHub Bot) [#60101](https://github.com/nodejs/node/pull/60101) +* \[[`dc44c9f349`](https://github.com/nodejs/node/commit/dc44c9f349)] - **deps**: upgrade npm to 11.6.1 (npm team) [#60012](https://github.com/nodejs/node/pull/60012) +* \[[`ec0f137198`](https://github.com/nodejs/node/commit/ec0f137198)] - **deps**: update ada to 3.3.0 (Node.js GitHub Bot) [#60045](https://github.com/nodejs/node/pull/60045) +* \[[`f490f91874`](https://github.com/nodejs/node/commit/f490f91874)] - **deps**: update amaro to 1.1.4 (pmarchini) [#60044](https://github.com/nodejs/node/pull/60044) +* \[[`de7a7cd0d7`](https://github.com/nodejs/node/commit/de7a7cd0d7)] - **deps**: update ada to 3.2.9 (Node.js GitHub Bot) [#59987](https://github.com/nodejs/node/pull/59987) +* \[[`a533e5b5db`](https://github.com/nodejs/node/commit/a533e5b5db)] - **doc**: add automated migration info to deprecations (Augustin Mauroy) [#60022](https://github.com/nodejs/node/pull/60022) +* \[[`7fb8fe4875`](https://github.com/nodejs/node/commit/7fb8fe4875)] - **doc**: fix typo on child\_process.md (Angelo Gazzola) [#60114](https://github.com/nodejs/node/pull/60114) +* \[[`24c1ef9846`](https://github.com/nodejs/node/commit/24c1ef9846)] - **doc**: remove optional title prefixes (Aviv Keller) [#60087](https://github.com/nodejs/node/pull/60087) +* \[[`08b9eb8e19`](https://github.com/nodejs/node/commit/08b9eb8e19)] - **doc**: mark `.env` files support as stable (Santeri Hiltunen) [#59925](https://github.com/nodejs/node/pull/59925) +* \[[`66d90b8063`](https://github.com/nodejs/node/commit/66d90b8063)] - **doc**: mention reverse proxy and include simple example (Steven) [#59736](https://github.com/nodejs/node/pull/59736) +* \[[`14aa1119cb`](https://github.com/nodejs/node/commit/14aa1119cb)] - **doc**: provide alternative to `url.parse()` using WHATWG URL (Steven) [#59736](https://github.com/nodejs/node/pull/59736) +* \[[`f9412324f6`](https://github.com/nodejs/node/commit/f9412324f6)] - **doc**: fix typo of built-in module specifier in worker\_threads (Deokjin Kim) [#59992](https://github.com/nodejs/node/pull/59992) +* \[[`64e738a342`](https://github.com/nodejs/node/commit/64e738a342)] - **doc,crypto**: reorder ML-KEM in the asymmetric key types table (Filip Skokan) [#60067](https://github.com/nodejs/node/pull/60067) +* \[[`1b25008b41`](https://github.com/nodejs/node/commit/1b25008b41)] - **http**: improve writeEarlyHints by avoiding for-of loop (Haram Jeong) [#59958](https://github.com/nodejs/node/pull/59958) +* \[[`35f9b6b28f`](https://github.com/nodejs/node/commit/35f9b6b28f)] - **inspector**: improve batch diagnostic channel subscriptions (Chengzhong Wu) [#60009](https://github.com/nodejs/node/pull/60009) +* \[[`3b92be2fb8`](https://github.com/nodejs/node/commit/3b92be2fb8)] - **(SEMVER-MINOR)** **lib**: remove util.getCallSite (Rafael Gonzaga) [#59980](https://github.com/nodejs/node/pull/59980) +* \[[`c495e1fe57`](https://github.com/nodejs/node/commit/c495e1fe57)] - **lib**: optimize priority queue (Gürgün Dayıoğlu) [#60039](https://github.com/nodejs/node/pull/60039) +* \[[`6be31fb9f3`](https://github.com/nodejs/node/commit/6be31fb9f3)] - **lib**: implement passive listener behavior per spec (BCD1me) [#59995](https://github.com/nodejs/node/pull/59995) +* \[[`c5e4aa763b`](https://github.com/nodejs/node/commit/c5e4aa763b)] - **meta**: bump actions/setup-python from 5.6.0 to 6.0.0 (dependabot\[bot]) [#60090](https://github.com/nodejs/node/pull/60090) +* \[[`50fa1f4a76`](https://github.com/nodejs/node/commit/50fa1f4a76)] - **meta**: bump ossf/scorecard-action from 2.4.2 to 2.4.3 (dependabot\[bot]) [#60096](https://github.com/nodejs/node/pull/60096) +* \[[`def4ce976c`](https://github.com/nodejs/node/commit/def4ce976c)] - **meta**: bump actions/cache from 4.2.4 to 4.3.0 (dependabot\[bot]) [#60095](https://github.com/nodejs/node/pull/60095) +* \[[`24b5abc0e9`](https://github.com/nodejs/node/commit/24b5abc0e9)] - **meta**: bump step-security/harden-runner from 2.12.2 to 2.13.1 (dependabot\[bot]) [#60094](https://github.com/nodejs/node/pull/60094) +* \[[`8ccf2b0b34`](https://github.com/nodejs/node/commit/8ccf2b0b34)] - **meta**: bump actions/setup-node from 4.4.0 to 5.0.0 (dependabot\[bot]) [#60093](https://github.com/nodejs/node/pull/60093) +* \[[`78580147ef`](https://github.com/nodejs/node/commit/78580147ef)] - **meta**: bump actions/stale from 9.1.0 to 10.0.0 (dependabot\[bot]) [#60092](https://github.com/nodejs/node/pull/60092) +* \[[`705686b5c4`](https://github.com/nodejs/node/commit/705686b5c4)] - **meta**: bump codecov/codecov-action from 5.5.0 to 5.5.1 (dependabot\[bot]) [#60091](https://github.com/nodejs/node/pull/60091) +* \[[`423a6bc744`](https://github.com/nodejs/node/commit/423a6bc744)] - **meta**: bump github/codeql-action from 3.30.0 to 3.30.5 (dependabot\[bot]) [#60089](https://github.com/nodejs/node/pull/60089) +* \[[`9d9bd0fb4f`](https://github.com/nodejs/node/commit/9d9bd0fb4f)] - **meta**: move Michael to emeritus (Michael Dawson) [#60070](https://github.com/nodejs/node/pull/60070) +* \[[`dbeee55824`](https://github.com/nodejs/node/commit/dbeee55824)] - **module**: use sync cjs when importing cts (Marco Ippolito) [#60072](https://github.com/nodejs/node/pull/60072) +* \[[`a722f677ac`](https://github.com/nodejs/node/commit/a722f677ac)] - **perf\_hooks**: fix histogram fast call signatures (Renegade334) [#59600](https://github.com/nodejs/node/pull/59600) +* \[[`b3295b8353`](https://github.com/nodejs/node/commit/b3295b8353)] - **process**: fix wrong asyncContext under unhandled-rejections=strict (Shima Ryuhei) [#60103](https://github.com/nodejs/node/pull/60103) +* \[[`cff4a7608a`](https://github.com/nodejs/node/commit/cff4a7608a)] - **process**: fix default `env` for `process.execve` (Richard Lau) [#60029](https://github.com/nodejs/node/pull/60029) +* \[[`cd034e927f`](https://github.com/nodejs/node/commit/cd034e927f)] - **process**: fix hrtime fast call signatures (Renegade334) [#59600](https://github.com/nodejs/node/pull/59600) +* \[[`18c79d9e1c`](https://github.com/nodejs/node/commit/18c79d9e1c)] - **(SEMVER-MINOR)** **sqlite**: create authorization api (Guilherme Araújo) [#59928](https://github.com/nodejs/node/pull/59928) +* \[[`d949222043`](https://github.com/nodejs/node/commit/d949222043)] - **sqlite**: replace `ToLocalChecked` and improve filter error handling (Edy Silva) [#60028](https://github.com/nodejs/node/pull/60028) +* \[[`6417dc879e`](https://github.com/nodejs/node/commit/6417dc879e)] - **src**: bring permissions macros in line with general C/C++ standards (Anna Henningsen) [#60053](https://github.com/nodejs/node/pull/60053) +* \[[`e273c2020c`](https://github.com/nodejs/node/commit/e273c2020c)] - **src**: update contextify to use DictionaryTemplate (James M Snell) [#60059](https://github.com/nodejs/node/pull/60059) +* \[[`5f9ff60664`](https://github.com/nodejs/node/commit/5f9ff60664)] - **src**: remove `AnalyzeTemporaryDtors` option from .clang-tidy (iknoom) [#60008](https://github.com/nodejs/node/pull/60008) +* \[[`9db54adccc`](https://github.com/nodejs/node/commit/9db54adccc)] - **src**: update cares\_wrap to use DictionaryTemplates (James M Snell) [#60033](https://github.com/nodejs/node/pull/60033) +* \[[`fc0ceb7b82`](https://github.com/nodejs/node/commit/fc0ceb7b82)] - **src**: correct the error handling in StatementExecutionHelper (James M Snell) [#60040](https://github.com/nodejs/node/pull/60040) +* \[[`3e8fdc1d8d`](https://github.com/nodejs/node/commit/3e8fdc1d8d)] - **src**: remove unused variables from report (Moonki Choi) [#60047](https://github.com/nodejs/node/pull/60047) +* \[[`d744324d8e`](https://github.com/nodejs/node/commit/d744324d8e)] - **src**: avoid unnecessary string allocations in SPrintF impl (Anna Henningsen) [#60052](https://github.com/nodejs/node/pull/60052) +* \[[`de65a5c719`](https://github.com/nodejs/node/commit/de65a5c719)] - **src**: make ToLower/ToUpper input args more flexible (Anna Henningsen) [#60052](https://github.com/nodejs/node/pull/60052) +* \[[`354026df5a`](https://github.com/nodejs/node/commit/354026df5a)] - **src**: allow `std::string_view` arguments to `SPrintF()` and friends (Anna Henningsen) [#60058](https://github.com/nodejs/node/pull/60058) +* \[[`42f7d7cb20`](https://github.com/nodejs/node/commit/42f7d7cb20)] - **src**: remove unnecessary `std::string` error messages (Anna Henningsen) [#60057](https://github.com/nodejs/node/pull/60057) +* \[[`30c2c0fedd`](https://github.com/nodejs/node/commit/30c2c0fedd)] - **src**: remove unnecessary shadowed functions on Utf8Value & BufferValue (Anna Henningsen) [#60056](https://github.com/nodejs/node/pull/60056) +* \[[`eb99eec09b`](https://github.com/nodejs/node/commit/eb99eec09b)] - **src**: avoid unnecessary string -> `char*` -> string round trips (Anna Henningsen) [#60055](https://github.com/nodejs/node/pull/60055) +* \[[`c1f1dbdce2`](https://github.com/nodejs/node/commit/c1f1dbdce2)] - **src**: remove useless dereferencing in `THROW_...` (Anna Henningsen) [#60054](https://github.com/nodejs/node/pull/60054) +* \[[`ea0f5e575d`](https://github.com/nodejs/node/commit/ea0f5e575d)] - **src**: fill `options_args`, `options_env` after vectors are finalized (iknoom) [#59945](https://github.com/nodejs/node/pull/59945) +* \[[`415fff217a`](https://github.com/nodejs/node/commit/415fff217a)] - **src**: use RAII for uv\_process\_options\_t (iknoom) [#59945](https://github.com/nodejs/node/pull/59945) +* \[[`982b03ecbd`](https://github.com/nodejs/node/commit/982b03ecbd)] - **test**: mark `test-runner-run-watch` flaky on macOS (Richard Lau) [#60115](https://github.com/nodejs/node/pull/60115) +* \[[`831a0d3d28`](https://github.com/nodejs/node/commit/831a0d3d28)] - **test**: ensure that the message event is fired (Luigi Pinca) [#59952](https://github.com/nodejs/node/pull/59952) +* \[[`5538cfc1e8`](https://github.com/nodejs/node/commit/5538cfc1e8)] - **test**: replace diagnostics\_channel stackframe in output snapshots (Chengzhong Wu) [#60024](https://github.com/nodejs/node/pull/60024) +* \[[`77ec400d90`](https://github.com/nodejs/node/commit/77ec400d90)] - **test**: mark test-web-locks skip on IBM i (SRAVANI GUNDEPALLI) [#59996](https://github.com/nodejs/node/pull/59996) +* \[[`1aaadb9e31`](https://github.com/nodejs/node/commit/1aaadb9e31)] - **test**: ensure message event fires in worker message port test (Jarred Sumner) [#59885](https://github.com/nodejs/node/pull/59885) +* \[[`1d5cc5e57a`](https://github.com/nodejs/node/commit/1d5cc5e57a)] - **test**: mark sea tests flaky on macOS x64 (Richard Lau) [#60068](https://github.com/nodejs/node/pull/60068) +* \[[`c412b1855d`](https://github.com/nodejs/node/commit/c412b1855d)] - **test**: expand tls-check-server-identity coverage (Diango Gavidia) [#60002](https://github.com/nodejs/node/pull/60002) +* \[[`ad87975029`](https://github.com/nodejs/node/commit/ad87975029)] - **test**: fix typo of test-benchmark-readline.js (Deokjin Kim) [#59993](https://github.com/nodejs/node/pull/59993) +* \[[`bad4b9b878`](https://github.com/nodejs/node/commit/bad4b9b878)] - **test**: add new `startNewREPLSever` testing utility (Dario Piotrowicz) [#59964](https://github.com/nodejs/node/pull/59964) +* \[[`ef90b0f456`](https://github.com/nodejs/node/commit/ef90b0f456)] - **test**: verify tracing channel doesn't swallow unhandledRejection (Gerhard Stöbich) [#59974](https://github.com/nodejs/node/pull/59974) +* \[[`d7285459fe`](https://github.com/nodejs/node/commit/d7285459fe)] - **timers**: fix binding fast call signatures (Renegade334) [#59600](https://github.com/nodejs/node/pull/59600) +* \[[`6529ae9b0c`](https://github.com/nodejs/node/commit/6529ae9b0c)] - **tools**: add message on auto-fixing js lint issues in gh workflow (Dario Piotrowicz) [#59128](https://github.com/nodejs/node/pull/59128) +* \[[`1ca116a6ea`](https://github.com/nodejs/node/commit/1ca116a6ea)] - **tools**: verify signatures when updating nghttp\* (Antoine du Hamel) [#60113](https://github.com/nodejs/node/pull/60113) +* \[[`20d10a2398`](https://github.com/nodejs/node/commit/20d10a2398)] - **tools**: use dependabot cooldown and move tools/doc (Rafael Gonzaga) [#59978](https://github.com/nodejs/node/pull/59978) +* \[[`275c07064c`](https://github.com/nodejs/node/commit/275c07064c)] - **typings**: update 'types' binding (René) [#59692](https://github.com/nodejs/node/pull/59692) +* \[[`8c21c4b286`](https://github.com/nodejs/node/commit/8c21c4b286)] - **wasi**: fix WasiFunction fast call signature (Renegade334) [#59600](https://github.com/nodejs/node/pull/59600) +* \[[`b865074641`](https://github.com/nodejs/node/commit/b865074641)] - **win,tools**: add description to signature (Martin Costello) [#59877](https://github.com/nodejs/node/pull/59877) + + + +## 2025-09-25, Version 24.9.0 (Current), @targos + +### Notable Changes + +* \[[`9b043a9096`](https://github.com/nodejs/node/commit/9b043a9096)] - **(SEMVER-MINOR)** **http**: add shouldUpgradeCallback to let servers control HTTP upgrades (Tim Perry) [#59824](https://github.com/nodejs/node/pull/59824) +* \[[`a6456ab90a`](https://github.com/nodejs/node/commit/a6456ab90a)] - **(SEMVER-MINOR)** **sqlite**: cleanup ERM support and export Session class (James M Snell) [#58378](https://github.com/nodejs/node/pull/58378) +* \[[`5563361d22`](https://github.com/nodejs/node/commit/5563361d22)] - **(SEMVER-MINOR)** **sqlite**: add tagged template (0hm☘️) [#58748](https://github.com/nodejs/node/pull/58748) +* \[[`04013ee933`](https://github.com/nodejs/node/commit/04013ee933)] - **(SEMVER-MINOR)** **worker**: add heap profile API (theanarkh) [#59846](https://github.com/nodejs/node/pull/59846) + +### Commits + +* \[[`cbec4fd6de`](https://github.com/nodejs/node/commit/cbec4fd6de)] - **benchmark**: calibrate config dgram multi-buffer (Bruno Rodrigues) [#59696](https://github.com/nodejs/node/pull/59696) +* \[[`9a4bbdc3c5`](https://github.com/nodejs/node/commit/9a4bbdc3c5)] - **benchmark**: calibrate config cluster/echo.js (Nam Yooseong) [#59836](https://github.com/nodejs/node/pull/59836) +* \[[`0b284d86e8`](https://github.com/nodejs/node/commit/0b284d86e8)] - **build**: add the missing macro definitions for OpenHarmony (hqzing) [#59804](https://github.com/nodejs/node/pull/59804) +* \[[`43e6e54d66`](https://github.com/nodejs/node/commit/43e6e54d66)] - **build**: do not include custom ESLint rules testing in tarball (Antoine du Hamel) [#59809](https://github.com/nodejs/node/pull/59809) +* \[[`039ac19154`](https://github.com/nodejs/node/commit/039ac19154)] - **crypto**: expose signatureAlgorithm on X509Certificate (Patrick Costa) [#59235](https://github.com/nodejs/node/pull/59235) +* \[[`647c332704`](https://github.com/nodejs/node/commit/647c332704)] - **crypto**: use `return await` when returning Promises from async functions (Renegade334) [#59841](https://github.com/nodejs/node/pull/59841) +* \[[`8ed4587cf0`](https://github.com/nodejs/node/commit/8ed4587cf0)] - **crypto**: use async functions for non-stub Promise-returning functions (Renegade334) [#59841](https://github.com/nodejs/node/pull/59841) +* \[[`bb051c56ef`](https://github.com/nodejs/node/commit/bb051c56ef)] - **crypto**: avoid calls to `promise.catch()` (Renegade334) [#59841](https://github.com/nodejs/node/pull/59841) +* \[[`05e560dd25`](https://github.com/nodejs/node/commit/05e560dd25)] - **deps**: update googletest to 50b8600 (Node.js GitHub Bot) [#59955](https://github.com/nodejs/node/pull/59955) +* \[[`fa40d3a785`](https://github.com/nodejs/node/commit/fa40d3a785)] - **deps**: update archs files for openssl-3.5.3 (Node.js GitHub Bot) [#59901](https://github.com/nodejs/node/pull/59901) +* \[[`8c85570d18`](https://github.com/nodejs/node/commit/8c85570d18)] - **deps**: upgrade openssl sources to openssl-3.5.3 (Node.js GitHub Bot) [#59901](https://github.com/nodejs/node/pull/59901) +* \[[`b71125664e`](https://github.com/nodejs/node/commit/b71125664e)] - **deps**: update undici to 7.16.0 (Node.js GitHub Bot) [#59830](https://github.com/nodejs/node/pull/59830) +* \[[`dea5dd7077`](https://github.com/nodejs/node/commit/dea5dd7077)] - **dgram**: restore buffer optimization in fixBufferList (Yoo) [#59934](https://github.com/nodejs/node/pull/59934) +* \[[`b0c1e67532`](https://github.com/nodejs/node/commit/b0c1e67532)] - **diagnostics\_channel**: fix race condition with diagnostics\_channel and GC (Ugaitz Urien) [#59910](https://github.com/nodejs/node/pull/59910) +* \[[`0b37b594c3`](https://github.com/nodejs/node/commit/0b37b594c3)] - **doc**: use "WebAssembly" instead of "Web Assembly" (Tobias Nießen) [#59954](https://github.com/nodejs/node/pull/59954) +* \[[`1e723f9c6b`](https://github.com/nodejs/node/commit/1e723f9c6b)] - **doc**: fix typo in section on microtask order (Tobias Nießen) [#59932](https://github.com/nodejs/node/pull/59932) +* \[[`a28962a85c`](https://github.com/nodejs/node/commit/a28962a85c)] - **doc**: update V8 fast API guidance (René) [#58999](https://github.com/nodejs/node/pull/58999) +* \[[`bd767c5d1b`](https://github.com/nodejs/node/commit/bd767c5d1b)] - **doc**: add security escalation policy (Ulises Gascón) [#59806](https://github.com/nodejs/node/pull/59806) +* \[[`9df91e59e1`](https://github.com/nodejs/node/commit/9df91e59e1)] - **doc**: type improvement of file `http.md` (yusheng chen) [#58189](https://github.com/nodejs/node/pull/58189) +* \[[`e4f571680b`](https://github.com/nodejs/node/commit/e4f571680b)] - **doc**: deprecate closing `fs.Dir` on garbage collection (Livia Medeiros) [#59839](https://github.com/nodejs/node/pull/59839) +* \[[`e9cb986fa5`](https://github.com/nodejs/node/commit/e9cb986fa5)] - **doc**: rephrase dynamic import() description (Nam Yooseong) [#59224](https://github.com/nodejs/node/pull/59224) +* \[[`026d4e33f7`](https://github.com/nodejs/node/commit/026d4e33f7)] - **doc,crypto**: update subtle.generateKey and subtle.importKey (Filip Skokan) [#59851](https://github.com/nodejs/node/pull/59851) +* \[[`2b2591db52`](https://github.com/nodejs/node/commit/2b2591db52)] - **esm**: make hasAsyncGraph non-enumerable (Joyee Cheung) [#59905](https://github.com/nodejs/node/pull/59905) +* \[[`993f05d323`](https://github.com/nodejs/node/commit/993f05d323)] - **fs,win**: do not add a second trailing slash in readdir (Gerhard Stöbich) [#59847](https://github.com/nodejs/node/pull/59847) +* \[[`7aec53b607`](https://github.com/nodejs/node/commit/7aec53b607)] - **(SEMVER-MINOR)** **http**: add shouldUpgradeCallback to let servers control HTTP upgrades (Tim Perry) [#59824](https://github.com/nodejs/node/pull/59824) +* \[[`83ae6102e7`](https://github.com/nodejs/node/commit/83ae6102e7)] - **http**: optimize checkIsHttpToken for short strings (방진혁) [#59832](https://github.com/nodejs/node/pull/59832) +* \[[`6695067636`](https://github.com/nodejs/node/commit/6695067636)] - **http,https**: handle IPv6 with proxies (Joyee Cheung) [#59894](https://github.com/nodejs/node/pull/59894) +* \[[`c5d910a0a9`](https://github.com/nodejs/node/commit/c5d910a0a9)] - **http2**: fix allowHttp1+Upgrade, broken by shouldUpgradeCallback (Tim Perry) [#59924](https://github.com/nodejs/node/pull/59924) +* \[[`acada1fb82`](https://github.com/nodejs/node/commit/acada1fb82)] - **inspector**: ensure adequate memory allocation for `Binary::toBase64` (René) [#59870](https://github.com/nodejs/node/pull/59870) +* \[[`396cc8ec65`](https://github.com/nodejs/node/commit/396cc8ec65)] - **lib**: update inspect output format for subclasses (Miguel Marcondes Filho) [#59687](https://github.com/nodejs/node/pull/59687) +* \[[`fed1dac8de`](https://github.com/nodejs/node/commit/fed1dac8de)] - **lib**: update isDeepStrictEqual to support options (Miguel Marcondes Filho) [#59762](https://github.com/nodejs/node/pull/59762) +* \[[`d785929fd7`](https://github.com/nodejs/node/commit/d785929fd7)] - **lib**: add source map support for assert messages (Chengzhong Wu) [#59751](https://github.com/nodejs/node/pull/59751) +* \[[`ff13d1d61e`](https://github.com/nodejs/node/commit/ff13d1d61e)] - **lib,src**: cache ModuleWrap.hasAsyncGraph (Chengzhong Wu) [#59703](https://github.com/nodejs/node/pull/59703) +* \[[`b200cd8470`](https://github.com/nodejs/node/commit/b200cd8470)] - **lib,src**: refactor assert to load error source from memory (Chengzhong Wu) [#59751](https://github.com/nodejs/node/pull/59751) +* \[[`e94c57301b`](https://github.com/nodejs/node/commit/e94c57301b)] - **meta**: add .npmrc with ignore-scripts=true (Joyee Cheung) [#59914](https://github.com/nodejs/node/pull/59914) +* \[[`728472a57b`](https://github.com/nodejs/node/commit/728472a57b)] - **module**: only put directly require-d ESM into require.cache (Joyee Cheung) [#59874](https://github.com/nodejs/node/pull/59874) +* \[[`be48760b93`](https://github.com/nodejs/node/commit/be48760b93)] - **node-api**: added SharedArrayBuffer api (Mert Can Altin) [#59071](https://github.com/nodejs/node/pull/59071) +* \[[`f006a14522`](https://github.com/nodejs/node/commit/f006a14522)] - **node-api**: make napi\_delete\_reference use node\_api\_basic\_env (Jeetu Suthar) [#59684](https://github.com/nodejs/node/pull/59684) +* \[[`0f46c1c3b0`](https://github.com/nodejs/node/commit/0f46c1c3b0)] - **repl**: fix cpu overhead pasting big strings to the REPL (Ruben Bridgewater) [#59857](https://github.com/nodejs/node/pull/59857) +* \[[`3eeb7b47ea`](https://github.com/nodejs/node/commit/3eeb7b47ea)] - **sqlite**: fix crash session extension callbacks with workers (Bart Louwers) [#59848](https://github.com/nodejs/node/pull/59848) +* \[[`0fe53375ec`](https://github.com/nodejs/node/commit/0fe53375ec)] - **(SEMVER-MINOR)** **sqlite**: cleanup ERM support and export Session class (James M Snell) [#58378](https://github.com/nodejs/node/pull/58378) +* \[[`9a3e58a007`](https://github.com/nodejs/node/commit/9a3e58a007)] - **(SEMVER-MINOR)** **sqlite**: add tagged template (0hm☘️) [#58748](https://github.com/nodejs/node/pull/58748) +* \[[`f14ed5ab7b`](https://github.com/nodejs/node/commit/f14ed5ab7b)] - **src**: simplify watchdog instantiations via `std::optional` (Anna Henningsen) [#59960](https://github.com/nodejs/node/pull/59960) +* \[[`e330f03f84`](https://github.com/nodejs/node/commit/e330f03f84)] - **src**: update crypto objects to use DictionaryTemplate (James M Snell) [#59942](https://github.com/nodejs/node/pull/59942) +* \[[`69b5607cf4`](https://github.com/nodejs/node/commit/69b5607cf4)] - **src**: simplify is\_callable by making it a concept (Tobias Nießen) [#58169](https://github.com/nodejs/node/pull/58169) +* \[[`86150f3401`](https://github.com/nodejs/node/commit/86150f3401)] - **src**: rename private fields to follow naming convention (Moonki Choi) [#59923](https://github.com/nodejs/node/pull/59923) +* \[[`d17f299539`](https://github.com/nodejs/node/commit/d17f299539)] - **src**: use DictionaryTemplate more in URLPattern (James M Snell) [#59892](https://github.com/nodejs/node/pull/59892) +* \[[`ac784912ac`](https://github.com/nodejs/node/commit/ac784912ac)] - **src**: reduce the nearest parent package JSON cache size (Michael Smith) [#59888](https://github.com/nodejs/node/pull/59888) +* \[[`abecdcb536`](https://github.com/nodejs/node/commit/abecdcb536)] - **src**: replace FIXED\_ONE\_BYTE\_STRING with Environment-cached strings (Moonki Choi) [#59891](https://github.com/nodejs/node/pull/59891) +* \[[`2bb152500b`](https://github.com/nodejs/node/commit/2bb152500b)] - **src**: create strings in `FIXED_ONE_BYTE_STRING` as internalized (Anna Henningsen) [#59826](https://github.com/nodejs/node/pull/59826) +* \[[`03116a7cd8`](https://github.com/nodejs/node/commit/03116a7cd8)] - **src**: remove `std::array` overload of `FIXED_ONE_BYTE_STRING` (Anna Henningsen) [#59826](https://github.com/nodejs/node/pull/59826) +* \[[`8a5325d6e3`](https://github.com/nodejs/node/commit/8a5325d6e3)] - **src**: ensure `v8::Eternal` is empty before setting it (Anna Henningsen) [#59825](https://github.com/nodejs/node/pull/59825) +* \[[`f0c20ccd81`](https://github.com/nodejs/node/commit/f0c20ccd81)] - **src**: remove unnecessary `Environment::GetCurrent()` calls (Moonki Choi) [#59814](https://github.com/nodejs/node/pull/59814) +* \[[`213188e491`](https://github.com/nodejs/node/commit/213188e491)] - **stream**: use new AsyncResource instead of bind (Matteo Collina) [#59867](https://github.com/nodejs/node/pull/59867) +* \[[`ce8435b003`](https://github.com/nodejs/node/commit/ce8435b003)] - **test**: testcase demonstrating issue 59541 (Eric Rannaud) [#59801](https://github.com/nodejs/node/pull/59801) +* \[[`8f32746142`](https://github.com/nodejs/node/commit/8f32746142)] - **test**: guard write to proxy client if proxy connection is ended (Joyee Cheung) [#59742](https://github.com/nodejs/node/pull/59742) +* \[[`6790093fcb`](https://github.com/nodejs/node/commit/6790093fcb)] - **tls**: load bundled and extra certificates off-thread (Joyee Cheung) [#59856](https://github.com/nodejs/node/pull/59856) +* \[[`f5d3f919d8`](https://github.com/nodejs/node/commit/f5d3f919d8)] - **tls**: only do off-thread certificate loading on loading tls (Joyee Cheung) [#59856](https://github.com/nodejs/node/pull/59856) +* \[[`87bbaa23a0`](https://github.com/nodejs/node/commit/87bbaa23a0)] - **tools**: fix `tools/make-v8.sh` for clang (Richard Lau) [#59893](https://github.com/nodejs/node/pull/59893) +* \[[`0d23fd525b`](https://github.com/nodejs/node/commit/0d23fd525b)] - **tools**: skip test-internet workflow for draft PRs (Michaël Zasso) [#59817](https://github.com/nodejs/node/pull/59817) +* \[[`e17c73731a`](https://github.com/nodejs/node/commit/e17c73731a)] - **tools**: copyedit `build-tarball.yml` (Antoine du Hamel) [#59808](https://github.com/nodejs/node/pull/59808) +* \[[`97c4e1bac9`](https://github.com/nodejs/node/commit/97c4e1bac9)] - **typings**: remove unused imports (Nam Yooseong) [#59880](https://github.com/nodejs/node/pull/59880) +* \[[`8b29bbca76`](https://github.com/nodejs/node/commit/8b29bbca76)] - **url**: replaced slice with at (Mikhail) [#59181](https://github.com/nodejs/node/pull/59181) +* \[[`6458867a6b`](https://github.com/nodejs/node/commit/6458867a6b)] - **url**: add type checking to urlToHttpOptions() (simon-id) [#59753](https://github.com/nodejs/node/pull/59753) +* \[[`3c62b3886f`](https://github.com/nodejs/node/commit/3c62b3886f)] - **util**: inspect objects with throwing Symbol.toStringTag (Ruben Bridgewater) [#59860](https://github.com/nodejs/node/pull/59860) +* \[[`6133a82875`](https://github.com/nodejs/node/commit/6133a82875)] - **util**: fix debuglog.enabled not being present with callback logger (Ruben Bridgewater) [#59858](https://github.com/nodejs/node/pull/59858) +* \[[`9347ddddf4`](https://github.com/nodejs/node/commit/9347ddddf4)] - **vm**: explain how to share promises between contexts w/ afterEvaluate (Eric Rannaud) [#59801](https://github.com/nodejs/node/pull/59801) +* \[[`44ce971619`](https://github.com/nodejs/node/commit/44ce971619)] - **vm**: "afterEvaluate", evaluate() return a promise from the outer context (Eric Rannaud) [#59801](https://github.com/nodejs/node/pull/59801) +* \[[`6e586a1409`](https://github.com/nodejs/node/commit/6e586a1409)] - **vm**: expose hasTopLevelAwait on SourceTextModule (Chengzhong Wu) [#59865](https://github.com/nodejs/node/pull/59865) +* \[[`49747a58a3`](https://github.com/nodejs/node/commit/49747a58a3)] - **(SEMVER-MINOR)** **worker**: add heap profile API (theanarkh) [#59846](https://github.com/nodejs/node/pull/59846) +* \[[`b970c0bbc2`](https://github.com/nodejs/node/commit/b970c0bbc2)] - **zlib**: reduce code duplication (jhofstee) [#57810](https://github.com/nodejs/node/pull/57810) +* \[[`9782ca2b1b`](https://github.com/nodejs/node/commit/9782ca2b1b)] - **zlib**: implement fast path for crc32 (Gürgün Dayıoğlu) [#59813](https://github.com/nodejs/node/pull/59813) + + + +## 2025-09-10, Version 24.8.0 (Current), @targos + +### Notable Changes + +#### HTTP/2 Network Inspection Support in Node.js + +Node.js now supports inspection of HTTP/2 network calls in Chrome DevTools for Node.js. + +##### Usage + +Write a `test.js` script that makes HTTP/2 requests. + +```js +const http2 = require('node:http2'); + +const client = http2.connect('https://nghttp2.org'); + +const req = client.request([ + ':path', '/', + ':method', 'GET', +]); +``` + +Run it with these options: + +```bash +node --inspect-wait --experimental-network-inspection test.js +``` + +Open `about:inspect` on Google Chrome and click on `Open dedicated DevTools for Node`. +The `Network` tab will let you track your HTTP/2 calls. + +Contributed by Darshan Sen in [#59611](https://github.com/nodejs/node/pull/59611). + +#### Other Notable Changes + +* \[[`7a8e2c251d`](https://github.com/nodejs/node/commit/7a8e2c251d)] - **(SEMVER-MINOR)** **crypto**: support Ed448 and ML-DSA context parameter in node:crypto (Filip Skokan) [#59570](https://github.com/nodejs/node/pull/59570) +* \[[`4b631be0b0`](https://github.com/nodejs/node/commit/4b631be0b0)] - **(SEMVER-MINOR)** **crypto**: support Ed448 and ML-DSA context parameter in Web Cryptography (Filip Skokan) [#59570](https://github.com/nodejs/node/pull/59570) +* \[[`3e4b1e732c`](https://github.com/nodejs/node/commit/3e4b1e732c)] - **(SEMVER-MINOR)** **crypto**: add KMAC Web Cryptography algorithms (Filip Skokan) [#59647](https://github.com/nodejs/node/pull/59647) +* \[[`b1d28785b2`](https://github.com/nodejs/node/commit/b1d28785b2)] - **(SEMVER-MINOR)** **crypto**: add Argon2 Web Cryptography algorithms (Filip Skokan) [#59544](https://github.com/nodejs/node/pull/59544) +* \[[`430691d1af`](https://github.com/nodejs/node/commit/430691d1af)] - **(SEMVER-MINOR)** **crypto**: support SLH-DSA KeyObject, sign, and verify (Filip Skokan) [#59537](https://github.com/nodejs/node/pull/59537) +* \[[`d6d05ba397`](https://github.com/nodejs/node/commit/d6d05ba397)] - **(SEMVER-MINOR)** **worker**: add cpu profile APIs for worker (theanarkh) [#59428](https://github.com/nodejs/node/pull/59428) + +### Commits + +* \[[`d913872369`](https://github.com/nodejs/node/commit/d913872369)] - **assert**: cap input size in myersDiff to avoid Int32Array overflow (Haram Jeong) [#59578](https://github.com/nodejs/node/pull/59578) +* \[[`7bbbcf6666`](https://github.com/nodejs/node/commit/7bbbcf6666)] - **benchmark**: sqlite prevent create both tables on prepare selects (Bruno Rodrigues) [#59709](https://github.com/nodejs/node/pull/59709) +* \[[`44d7b92271`](https://github.com/nodejs/node/commit/44d7b92271)] - **benchmark**: calibrate config array-vs-concat (Rafael Gonzaga) [#59587](https://github.com/nodejs/node/pull/59587) +* \[[`7f347fc551`](https://github.com/nodejs/node/commit/7f347fc551)] - **build**: fix getting OpenSSL version on Windows (Michaël Zasso) [#59609](https://github.com/nodejs/node/pull/59609) +* \[[`4a317150d5`](https://github.com/nodejs/node/commit/4a317150d5)] - **build**: fix 'implicit-function-declaration' on OpenHarmony platform (hqzing) [#59547](https://github.com/nodejs/node/pull/59547) +* \[[`bda32af587`](https://github.com/nodejs/node/commit/bda32af587)] - **build**: use `windows-2025` runner (Michaël Zasso) [#59673](https://github.com/nodejs/node/pull/59673) +* \[[`a4a8ed8f6e`](https://github.com/nodejs/node/commit/a4a8ed8f6e)] - **build**: compile bundled uvwasi conditionally (Carlo Cabrera) [#59622](https://github.com/nodejs/node/pull/59622) +* \[[`d944a87761`](https://github.com/nodejs/node/commit/d944a87761)] - **crypto**: refactor subtle methods to use synchronous import (Filip Skokan) [#59771](https://github.com/nodejs/node/pull/59771) +* \[[`7a8e2c251d`](https://github.com/nodejs/node/commit/7a8e2c251d)] - **(SEMVER-MINOR)** **crypto**: support Ed448 and ML-DSA context parameter in node:crypto (Filip Skokan) [#59570](https://github.com/nodejs/node/pull/59570) +* \[[`4b631be0b0`](https://github.com/nodejs/node/commit/4b631be0b0)] - **(SEMVER-MINOR)** **crypto**: support Ed448 and ML-DSA context parameter in Web Cryptography (Filip Skokan) [#59570](https://github.com/nodejs/node/pull/59570) +* \[[`3e4b1e732c`](https://github.com/nodejs/node/commit/3e4b1e732c)] - **(SEMVER-MINOR)** **crypto**: add KMAC Web Cryptography algorithms (Filip Skokan) [#59647](https://github.com/nodejs/node/pull/59647) +* \[[`b1d28785b2`](https://github.com/nodejs/node/commit/b1d28785b2)] - **(SEMVER-MINOR)** **crypto**: add Argon2 Web Cryptography algorithms (Filip Skokan) [#59544](https://github.com/nodejs/node/pull/59544) +* \[[`430691d1af`](https://github.com/nodejs/node/commit/430691d1af)] - **(SEMVER-MINOR)** **crypto**: support SLH-DSA KeyObject, sign, and verify (Filip Skokan) [#59537](https://github.com/nodejs/node/pull/59537) +* \[[`0d1e53d935`](https://github.com/nodejs/node/commit/0d1e53d935)] - **deps**: update uvwasi to 0.0.23 (Node.js GitHub Bot) [#59791](https://github.com/nodejs/node/pull/59791) +* \[[`68732cf426`](https://github.com/nodejs/node/commit/68732cf426)] - **deps**: update histogram to 0.11.9 (Node.js GitHub Bot) [#59689](https://github.com/nodejs/node/pull/59689) +* \[[`f12c1ad961`](https://github.com/nodejs/node/commit/f12c1ad961)] - **deps**: update googletest to eb2d85e (Node.js GitHub Bot) [#59335](https://github.com/nodejs/node/pull/59335) +* \[[`45af6966ae`](https://github.com/nodejs/node/commit/45af6966ae)] - **deps**: upgrade npm to 11.6.0 (npm team) [#59750](https://github.com/nodejs/node/pull/59750) +* \[[`57617244a4`](https://github.com/nodejs/node/commit/57617244a4)] - **deps**: V8: cherry-pick 6b1b9bca2a8 (Xiao-Tao) [#59283](https://github.com/nodejs/node/pull/59283) +* \[[`2e6225a747`](https://github.com/nodejs/node/commit/2e6225a747)] - **deps**: update amaro to 1.1.2 (Node.js GitHub Bot) [#59616](https://github.com/nodejs/node/pull/59616) +* \[[`1f7f6dfae6`](https://github.com/nodejs/node/commit/1f7f6dfae6)] - **diagnostics\_channel**: revoke DEP0163 (René) [#59758](https://github.com/nodejs/node/pull/59758) +* \[[`8671a6cdb3`](https://github.com/nodejs/node/commit/8671a6cdb3)] - **doc**: stabilize --disable-sigusr1 (Rafael Gonzaga) [#59707](https://github.com/nodejs/node/pull/59707) +* \[[`583b1b255d`](https://github.com/nodejs/node/commit/583b1b255d)] - **doc**: update OpenSSL default security level to 2 (Jeetu Suthar) [#59723](https://github.com/nodejs/node/pull/59723) +* \[[`9b5eb6eb50`](https://github.com/nodejs/node/commit/9b5eb6eb50)] - **doc**: fix missing links in the `errors` page (Nam Yooseong) [#59427](https://github.com/nodejs/node/pull/59427) +* \[[`e7bf712c57`](https://github.com/nodejs/node/commit/e7bf712c57)] - **doc**: update "Type stripping in dependencies" section (Josh Kelley) [#59652](https://github.com/nodejs/node/pull/59652) +* \[[`96db47f91e`](https://github.com/nodejs/node/commit/96db47f91e)] - **doc**: add Miles Guicent as triager (Miles Guicent) [#59562](https://github.com/nodejs/node/pull/59562) +* \[[`87f829bd0c`](https://github.com/nodejs/node/commit/87f829bd0c)] - **doc**: mark `path.matchesGlob` as stable (Aviv Keller) [#59572](https://github.com/nodejs/node/pull/59572) +* \[[`062b2f705e`](https://github.com/nodejs/node/commit/062b2f705e)] - **doc**: improve documentation for raw headers in HTTP/2 APIs (Tim Perry) [#59633](https://github.com/nodejs/node/pull/59633) +* \[[`6ab9306370`](https://github.com/nodejs/node/commit/6ab9306370)] - **doc**: update install\_tools.bat free disk space (Stefan Stojanovic) [#59579](https://github.com/nodejs/node/pull/59579) +* \[[`c8d6b60da6`](https://github.com/nodejs/node/commit/c8d6b60da6)] - **doc**: fix quic session instance typo (jakecastelli) [#59642](https://github.com/nodejs/node/pull/59642) +* \[[`61d0a2d1ba`](https://github.com/nodejs/node/commit/61d0a2d1ba)] - **doc**: fix filehandle.read typo (Ruy Adorno) [#59635](https://github.com/nodejs/node/pull/59635) +* \[[`3276bfa0d0`](https://github.com/nodejs/node/commit/3276bfa0d0)] - **doc**: update migration recomendations for `util.is**()` deprecations (Augustin Mauroy) [#59269](https://github.com/nodejs/node/pull/59269) +* \[[`11de6c7ebb`](https://github.com/nodejs/node/commit/11de6c7ebb)] - **doc**: fix missing link to the Error documentation in the `http` page (Alexander Makarenko) [#59080](https://github.com/nodejs/node/pull/59080) +* \[[`f5b6829bba`](https://github.com/nodejs/node/commit/f5b6829bba)] - **doc,crypto**: add description to the KEM and supports() methods (Filip Skokan) [#59644](https://github.com/nodejs/node/pull/59644) +* \[[`5bfdc7ee74`](https://github.com/nodejs/node/commit/5bfdc7ee74)] - **doc,crypto**: cleanup unlinked and self method references webcrypto.md (Filip Skokan) [#59608](https://github.com/nodejs/node/pull/59608) +* \[[`010458d061`](https://github.com/nodejs/node/commit/010458d061)] - **esm**: populate separate cache for require(esm) in imported CJS (Joyee Cheung) [#59679](https://github.com/nodejs/node/pull/59679) +* \[[`dbe6e63baf`](https://github.com/nodejs/node/commit/dbe6e63baf)] - **esm**: fix missed renaming in ModuleJob.runSync (Joyee Cheung) [#59724](https://github.com/nodejs/node/pull/59724) +* \[[`8eb0d9d834`](https://github.com/nodejs/node/commit/8eb0d9d834)] - **fs**: fix wrong order of file names in cpSync error message (Nicholas Paun) [#59775](https://github.com/nodejs/node/pull/59775) +* \[[`e69be5611f`](https://github.com/nodejs/node/commit/e69be5611f)] - **fs**: fix dereference: false on cpSync (Nicholas Paun) [#59681](https://github.com/nodejs/node/pull/59681) +* \[[`2865d2ac20`](https://github.com/nodejs/node/commit/2865d2ac20)] - **http**: unbreak keepAliveTimeoutBuffer (Robert Nagy) [#59784](https://github.com/nodejs/node/pull/59784) +* \[[`ade1175475`](https://github.com/nodejs/node/commit/ade1175475)] - **http**: use cached '1.1' http version string (Robert Nagy) [#59717](https://github.com/nodejs/node/pull/59717) +* \[[`74a09482de`](https://github.com/nodejs/node/commit/74a09482de)] - **inspector**: undici as shared-library should pass tests (Aras Abbasi) [#59837](https://github.com/nodejs/node/pull/59837) +* \[[`772f8f415a`](https://github.com/nodejs/node/commit/772f8f415a)] - **inspector**: add http2 tracking support (Darshan Sen) [#59611](https://github.com/nodejs/node/pull/59611) +* \[[`3d225572d7`](https://github.com/nodejs/node/commit/3d225572d7)] - _**Revert**_ "**lib**: optimize writable stream buffer clearing" (Yoo) [#59743](https://github.com/nodejs/node/pull/59743) +* \[[`4fd213ce73`](https://github.com/nodejs/node/commit/4fd213ce73)] - **lib**: fix isReadable and isWritable return type value (Gabriel Quaresma) [#59089](https://github.com/nodejs/node/pull/59089) +* \[[`39befddb87`](https://github.com/nodejs/node/commit/39befddb87)] - **lib**: prefer TypedArrayPrototype primordials (Filip Skokan) [#59766](https://github.com/nodejs/node/pull/59766) +* \[[`0748160d2e`](https://github.com/nodejs/node/commit/0748160d2e)] - **lib**: fix DOMException subclass support (Chengzhong Wu) [#59680](https://github.com/nodejs/node/pull/59680) +* \[[`1a93df808c`](https://github.com/nodejs/node/commit/1a93df808c)] - **lib**: revert to using default derived class constructors (René) [#59650](https://github.com/nodejs/node/pull/59650) +* \[[`bb0755df37`](https://github.com/nodejs/node/commit/bb0755df37)] - **meta**: bump `codecov/codecov-action` (dependabot\[bot]) [#59726](https://github.com/nodejs/node/pull/59726) +* \[[`45d148d9be`](https://github.com/nodejs/node/commit/45d148d9be)] - **meta**: bump actions/download-artifact from 4.3.0 to 5.0.0 (dependabot\[bot]) [#59729](https://github.com/nodejs/node/pull/59729) +* \[[`01b66b122e`](https://github.com/nodejs/node/commit/01b66b122e)] - **meta**: bump github/codeql-action from 3.29.2 to 3.30.0 (dependabot\[bot]) [#59728](https://github.com/nodejs/node/pull/59728) +* \[[`34f7ab5502`](https://github.com/nodejs/node/commit/34f7ab5502)] - **meta**: bump actions/cache from 4.2.3 to 4.2.4 (dependabot\[bot]) [#59727](https://github.com/nodejs/node/pull/59727) +* \[[`5806ea02af`](https://github.com/nodejs/node/commit/5806ea02af)] - **meta**: bump actions/checkout from 4.2.2 to 5.0.0 (dependabot\[bot]) [#59725](https://github.com/nodejs/node/pull/59725) +* \[[`f667215583`](https://github.com/nodejs/node/commit/f667215583)] - **path**: refactor path joining logic for clarity and performance (Lee Jiho) [#59781](https://github.com/nodejs/node/pull/59781) +* \[[`0340fe92a6`](https://github.com/nodejs/node/commit/0340fe92a6)] - **repl**: do not cause side effects in tab completion (Anna Henningsen) [#59774](https://github.com/nodejs/node/pull/59774) +* \[[`a414c1eb51`](https://github.com/nodejs/node/commit/a414c1eb51)] - **repl**: fix REPL completion under unary expressions (Kingsword) [#59744](https://github.com/nodejs/node/pull/59744) +* \[[`c206f8dd87`](https://github.com/nodejs/node/commit/c206f8dd87)] - **repl**: add isValidParentheses check before wrap input (Xuguang Mei) [#59607](https://github.com/nodejs/node/pull/59607) +* \[[`0bf9775ee2`](https://github.com/nodejs/node/commit/0bf9775ee2)] - **sea**: implement sea.getAssetKeys() (Joyee Cheung) [#59661](https://github.com/nodejs/node/pull/59661) +* \[[`bf26b478d8`](https://github.com/nodejs/node/commit/bf26b478d8)] - **sea**: allow using inspector command line flags with SEA (Joyee Cheung) [#59568](https://github.com/nodejs/node/pull/59568) +* \[[`92128a8fe2`](https://github.com/nodejs/node/commit/92128a8fe2)] - **src**: use DictionaryTemplate for node\_url\_pattern (James M Snell) [#59802](https://github.com/nodejs/node/pull/59802) +* \[[`bcb29fb84f`](https://github.com/nodejs/node/commit/bcb29fb84f)] - **src**: correctly report memory changes to V8 (Yaksh Bariya) [#59623](https://github.com/nodejs/node/pull/59623) +* \[[`44c24657d3`](https://github.com/nodejs/node/commit/44c24657d3)] - **src**: fixup node\_messaging error handling (James M Snell) [#59792](https://github.com/nodejs/node/pull/59792) +* \[[`2cd6a3b7ec`](https://github.com/nodejs/node/commit/2cd6a3b7ec)] - **src**: track async resources via pointers to stack-allocated handles (Anna Henningsen) [#59704](https://github.com/nodejs/node/pull/59704) +* \[[`34d752586f`](https://github.com/nodejs/node/commit/34d752586f)] - **src**: fix build on NetBSD (Thomas Klausner) [#59718](https://github.com/nodejs/node/pull/59718) +* \[[`15fa779ac5`](https://github.com/nodejs/node/commit/15fa779ac5)] - **src**: fix race on process exit and off thread CA loading (Chengzhong Wu) [#59632](https://github.com/nodejs/node/pull/59632) +* \[[`15cbd3966a`](https://github.com/nodejs/node/commit/15cbd3966a)] - **src**: separate module.hasAsyncGraph and module.hasTopLevelAwait (Joyee Cheung) [#59675](https://github.com/nodejs/node/pull/59675) +* \[[`88d1ca8990`](https://github.com/nodejs/node/commit/88d1ca8990)] - **src**: use non-deprecated Get/SetPrototype methods (Michaël Zasso) [#59671](https://github.com/nodejs/node/pull/59671) +* \[[`56ac9a2d46`](https://github.com/nodejs/node/commit/56ac9a2d46)] - **src**: migrate WriteOneByte to WriteOneByteV2 (Chengzhong Wu) [#59634](https://github.com/nodejs/node/pull/59634) +* \[[`3d88aa9f2f`](https://github.com/nodejs/node/commit/3d88aa9f2f)] - **src**: remove duplicate code (theanarkh) [#59649](https://github.com/nodejs/node/pull/59649) +* \[[`0718a70b2a`](https://github.com/nodejs/node/commit/0718a70b2a)] - **src**: add name for more threads (theanarkh) [#59601](https://github.com/nodejs/node/pull/59601) +* \[[`0379a8b254`](https://github.com/nodejs/node/commit/0379a8b254)] - **src**: remove JSONParser (Joyee Cheung) [#59619](https://github.com/nodejs/node/pull/59619) +* \[[`90d0a1b2e9`](https://github.com/nodejs/node/commit/90d0a1b2e9)] - **src,sqlite**: refactor value conversion (Edy Silva) [#59659](https://github.com/nodejs/node/pull/59659) +* \[[`5e025c7ca7`](https://github.com/nodejs/node/commit/5e025c7ca7)] - **stream**: replace manual function validation with validateFunction (방진혁) [#59529](https://github.com/nodejs/node/pull/59529) +* \[[`155a999bed`](https://github.com/nodejs/node/commit/155a999bed)] - **test**: skip tests failing when run under root (Livia Medeiros) [#59779](https://github.com/nodejs/node/pull/59779) +* \[[`6313706c69`](https://github.com/nodejs/node/commit/6313706c69)] - **test**: update WPT for urlpattern to cff1ac1123 (Node.js GitHub Bot) [#59602](https://github.com/nodejs/node/pull/59602) +* \[[`41245ad4c7`](https://github.com/nodejs/node/commit/41245ad4c7)] - **test**: skip more sea tests on Linux ppc64le (Richard Lau) [#59755](https://github.com/nodejs/node/pull/59755) +* \[[`df63d37ec4`](https://github.com/nodejs/node/commit/df63d37ec4)] - **test**: fix internet/test-dns (Michaël Zasso) [#59660](https://github.com/nodejs/node/pull/59660) +* \[[`1f6c335e82`](https://github.com/nodejs/node/commit/1f6c335e82)] - **test**: mark test-inspector-network-fetch as flaky again (Joyee Cheung) [#59640](https://github.com/nodejs/node/pull/59640) +* \[[`1798683df1`](https://github.com/nodejs/node/commit/1798683df1)] - **test**: skip test-fs-cp\* tests that are constantly failing on Windows (Joyee Cheung) [#59637](https://github.com/nodejs/node/pull/59637) +* \[[`4c48ec09e5`](https://github.com/nodejs/node/commit/4c48ec09e5)] - **test**: deflake test-http-keep-alive-empty-line (Luigi Pinca) [#59595](https://github.com/nodejs/node/pull/59595) +* \[[`dcdb259e85`](https://github.com/nodejs/node/commit/dcdb259e85)] - **test\_runner**: fix todo inheritance (Moshe Atlow) [#59721](https://github.com/nodejs/node/pull/59721) +* \[[`24177973a2`](https://github.com/nodejs/node/commit/24177973a2)] - **test\_runner**: set mock timer's interval undefined (hotpineapple) [#59479](https://github.com/nodejs/node/pull/59479) +* \[[`83d11f8a7a`](https://github.com/nodejs/node/commit/83d11f8a7a)] - **tools**: print appropriate output when test aborted (hotpineapple) [#59794](https://github.com/nodejs/node/pull/59794) +* \[[`1eca2cc548`](https://github.com/nodejs/node/commit/1eca2cc548)] - **tools**: use sparse checkout in `build-tarball.yml` (Antoine du Hamel) [#59788](https://github.com/nodejs/node/pull/59788) +* \[[`89fa1a929d`](https://github.com/nodejs/node/commit/89fa1a929d)] - **tools**: remove unused actions from `build-tarball.yml` (Antoine du Hamel) [#59787](https://github.com/nodejs/node/pull/59787) +* \[[`794ca3511d`](https://github.com/nodejs/node/commit/794ca3511d)] - **tools**: do not attempt to compress tgz archive (Antoine du Hamel) [#59785](https://github.com/nodejs/node/pull/59785) +* \[[`377bdb9b7e`](https://github.com/nodejs/node/commit/377bdb9b7e)] - **tools**: add v8windbg target (Chengzhong Wu) [#59767](https://github.com/nodejs/node/pull/59767) +* \[[`6696d1d6c9`](https://github.com/nodejs/node/commit/6696d1d6c9)] - **tools**: improve error handling in node\_mksnapshot (James M Snell) [#59437](https://github.com/nodejs/node/pull/59437) +* \[[`8dbd0f13e8`](https://github.com/nodejs/node/commit/8dbd0f13e8)] - **tools**: add sccache to `test-internet` workflow (Antoine du Hamel) [#59720](https://github.com/nodejs/node/pull/59720) +* \[[`6523c2d7d9`](https://github.com/nodejs/node/commit/6523c2d7d9)] - **tools**: update gyp-next to 0.20.4 (Node.js GitHub Bot) [#59690](https://github.com/nodejs/node/pull/59690) +* \[[`19d633f40c`](https://github.com/nodejs/node/commit/19d633f40c)] - **tools**: add script to make reviewing backport PRs easier (Antoine du Hamel) [#59161](https://github.com/nodejs/node/pull/59161) +* \[[`15e547b3a4`](https://github.com/nodejs/node/commit/15e547b3a4)] - **typings**: add typing for 'uv' (방진혁) [#59606](https://github.com/nodejs/node/pull/59606) +* \[[`ad5cfcc901`](https://github.com/nodejs/node/commit/ad5cfcc901)] - **typings**: add missing properties in ConfigBinding (Lee Jiho) [#59585](https://github.com/nodejs/node/pull/59585) +* \[[`70d2d6d479`](https://github.com/nodejs/node/commit/70d2d6d479)] - **url**: add err.input to ERR\_INVALID\_FILE\_URL\_PATH (Joyee Cheung) [#59730](https://github.com/nodejs/node/pull/59730) +* \[[`e476e43c17`](https://github.com/nodejs/node/commit/e476e43c17)] - **util**: fix numericSeparator with negative fractional numbers (sangwook) [#59379](https://github.com/nodejs/node/pull/59379) +* \[[`b2e8f40d15`](https://github.com/nodejs/node/commit/b2e8f40d15)] - **util**: remove unnecessary template strings (btea) [#59201](https://github.com/nodejs/node/pull/59201) +* \[[`6f79450ea2`](https://github.com/nodejs/node/commit/6f79450ea2)] - **util**: remove outdated TODO comment (haramjeong) [#59760](https://github.com/nodejs/node/pull/59760) +* \[[`32731432ef`](https://github.com/nodejs/node/commit/32731432ef)] - **util**: use getOptionValue('--no-deprecation') in deprecated() (haramjeong) [#59760](https://github.com/nodejs/node/pull/59760) +* \[[`65e4e68c90`](https://github.com/nodejs/node/commit/65e4e68c90)] - **util**: hide duplicated stack frames when using util.inspect (Ruben Bridgewater) [#59447](https://github.com/nodejs/node/pull/59447) +* \[[`2086f3365f`](https://github.com/nodejs/node/commit/2086f3365f)] - **vm**: sync-ify SourceTextModule linkage (Chengzhong Wu) [#59000](https://github.com/nodejs/node/pull/59000) +* \[[`c16163511d`](https://github.com/nodejs/node/commit/c16163511d)] - **wasi**: fix `clean` target in `test/wasi/Makefile` (Antoine du Hamel) [#59576](https://github.com/nodejs/node/pull/59576) +* \[[`2e54411cb6`](https://github.com/nodejs/node/commit/2e54411cb6)] - **worker**: optimize cpu profile implement (theanarkh) [#59683](https://github.com/nodejs/node/pull/59683) +* \[[`d6d05ba397`](https://github.com/nodejs/node/commit/d6d05ba397)] - **(SEMVER-MINOR)** **worker**: add cpu profile APIs for worker (theanarkh) [#59428](https://github.com/nodejs/node/pull/59428) + + + +## 2025-08-27, Version 24.7.0 (Current), @targos + +### Notable Changes + +#### Post-Quantum Cryptography in `node:crypto` + +OpenSSL 3.5 on 24.x kicked off post-quantum cryptography efforts in Node.js by +allowing use of NIST's post-quantum cryptography standards for future-proofing +applications against quantum computing threats. The following post-quantum +algorithms are now available in `node:crypto`: + +* ML-KEM (FIPS 203, Module-Lattice-Based Key-Encapsulation Mechanism Standard) through new `crypto.encapsulate()` and `crypto.decapsulate()` methods. +* ML-DSA (FIPS 204, Module-Lattice-Based Digital Signature Standard) in the existing `crypto.sign()` and `crypto.verify()` methods. + +Contributed by Filip Skokan in [#59259](https://github.com/nodejs/node/pull/59259) and [#59491](https://github.com/nodejs/node/pull/59491). + +### Modern Algorithms in Web Cryptography API + +The second substantial [extension to the Web Cryptography API](https://wicg.github.io/webcrypto-modern-algos/) +(`globalThis.crypto.subtle`) was recently accepted for incubation by WICG. +The following algorithms and methods from this extension are now available in +the Node.js Web Cryptography API implementation: + +* AES-OCB +* ChaCha20-Poly1305 +* ML-DSA +* ML-KEM +* SHA-3 +* SHAKE +* `subtle.getPublicKey()` +* `SubtleCrypto.supports()` +* ... with more coming in future releases. + +Contributed by Filip Skokan in [#59365](https://github.com/nodejs/node/pull/59365), [#59569](https://github.com/nodejs/node/pull/59569), [#59461](https://github.com/nodejs/node/pull/59461), and [#59539](https://github.com/nodejs/node/pull/59539). + +#### Node.js execution argument support in single executable applications + +The single executable application configuration now supports additional fields +to specify Node.js execution arguments and control how they can be extended when +the application is run. + +* `execArgv` takes an array of strings for the execution arguments to be used. +* `execArgvExtension` takes one of the following values: + * `"none"`: No additional execution arguments are allowed. + * `"cli"`: Additional execution arguments can be provided via a special command-line flag `--node-options="--flag1 --flag2=value"` at run time. + * `"env"` (default): Additional execution arguments can be provided via the `NODE_OPTIONS` environment variable at run time. + +For example, with the following configuration: + +```json +{ + "main": "/path/to/bundled/script.js", + "output": "/path/to/write/the/generated/blob.blob", + "execArgv": ["--no-warnings"], + "execArgvExtension": "cli", +} +``` + +If the generated single executable application is named `sea`, then running: + +```console +sea --node-options="--max-old-space-size=4096" user-arg1 user-arg2 +``` + +Would be equivalent to running: + +```console +node --no-warnings --max-old-space-size=4096 /path/to/bundled/script.js user-arg1 user-arg2 +``` + +Contributed by Joyee Cheung in [#59314](https://github.com/nodejs/node/pull/59314) and [#59560](https://github.com/nodejs/node/pull/59560). + +#### Root certificates updated to NSS 3.114 + +Certificates added: + +* TrustAsia TLS ECC Root CA +* TrustAsia TLS RSA Root CA +* SwissSign RSA TLS Root CA 2022 - 1 + +Certificates removed: + +* GlobalSign Root CA +* Entrust.net Premium 2048 Secure Server CA +* Baltimore CyberTrust Root +* Comodo AAA Services root +* XRamp Global CA Root +* Go Daddy Class 2 CA +* Starfield Class 2 CA + +#### Other Notable Changes + +* \[[`d3afc63c44`](https://github.com/nodejs/node/commit/d3afc63c44)] - **(SEMVER-MINOR)** **crypto**: add argon2() and argon2Sync() methods (Ranieri Althoff) [#50353](https://github.com/nodejs/node/pull/50353) +* \[[`6ae202fcdf`](https://github.com/nodejs/node/commit/6ae202fcdf)] - **(SEMVER-MINOR)** **http**: add Agent.agentKeepAliveTimeoutBuffer option (Haram Jeong) [#59315](https://github.com/nodejs/node/pull/59315) +* \[[`dafee05358`](https://github.com/nodejs/node/commit/dafee05358)] - **(SEMVER-MINOR)** **http2**: add support for raw header arrays in h2Stream.respond() (Tim Perry) [#59455](https://github.com/nodejs/node/pull/59455) +* \[[`8dc6f5b696`](https://github.com/nodejs/node/commit/8dc6f5b696)] - **(SEMVER-MINOR)** **stream**: add brotli support to CompressionStream and DecompressionStream (Matthew Aitken) [#59464](https://github.com/nodejs/node/pull/59464) + +### Commits + +* \[[`0fa22cbf7c`](https://github.com/nodejs/node/commit/0fa22cbf7c)] - **benchmark**: calibrate config v8/serialize.js (Rafael Gonzaga) [#59586](https://github.com/nodejs/node/pull/59586) +* \[[`f5ece45b45`](https://github.com/nodejs/node/commit/f5ece45b45)] - **benchmark**: reduce readfile-permission-enabled config (Rafael Gonzaga) [#59589](https://github.com/nodejs/node/pull/59589) +* \[[`8ebd4f4434`](https://github.com/nodejs/node/commit/8ebd4f4434)] - **benchmark**: calibrate length of util.diff (Rafael Gonzaga) [#59588](https://github.com/nodejs/node/pull/59588) +* \[[`7dee3ffd14`](https://github.com/nodejs/node/commit/7dee3ffd14)] - **benchmark**: reflect current OpenSSL in crypto key benchmarks (Filip Skokan) [#59459](https://github.com/nodejs/node/pull/59459) +* \[[`027b861ca1`](https://github.com/nodejs/node/commit/027b861ca1)] - **benchmark, test**: replace CRLF variable with string literal (Lee Jiho) [#59466](https://github.com/nodejs/node/pull/59466) +* \[[`89dd770889`](https://github.com/nodejs/node/commit/89dd770889)] - **build**: do not set `-mminimal-toc` with `clang` (Richard Lau) [#59484](https://github.com/nodejs/node/pull/59484) +* \[[`e13de4542f`](https://github.com/nodejs/node/commit/e13de4542f)] - **child\_process**: remove unsafe array iteration (hotpineapple) [#59347](https://github.com/nodejs/node/pull/59347) +* \[[`89fe63551e`](https://github.com/nodejs/node/commit/89fe63551e)] - **crypto**: load system CA certificates off thread (Joyee Cheung) [#59550](https://github.com/nodejs/node/pull/59550) +* \[[`152c5ef518`](https://github.com/nodejs/node/commit/152c5ef518)] - **(SEMVER-MINOR)** **crypto**: add AES-OCB Web Cryptography algorithm (Filip Skokan) [#59539](https://github.com/nodejs/node/pull/59539) +* \[[`c6c418343d`](https://github.com/nodejs/node/commit/c6c418343d)] - **crypto**: update root certificates to NSS 3.114 (Node.js GitHub Bot) [#59571](https://github.com/nodejs/node/pull/59571) +* \[[`18a2ee5b6c`](https://github.com/nodejs/node/commit/18a2ee5b6c)] - **(SEMVER-MINOR)** **crypto**: support ML-KEM in Web Cryptography (Filip Skokan) [#59569](https://github.com/nodejs/node/pull/59569) +* \[[`72937e5144`](https://github.com/nodejs/node/commit/72937e5144)] - **crypto**: require HMAC key length with SHA-3 hashes in Web Cryptography (Filip Skokan) [#59567](https://github.com/nodejs/node/pull/59567) +* \[[`b7383186c7`](https://github.com/nodejs/node/commit/b7383186c7)] - **crypto**: fix subtle.getPublicKey error for secret type key inputs (Filip Skokan) [#59558](https://github.com/nodejs/node/pull/59558) +* \[[`2d05c046db`](https://github.com/nodejs/node/commit/2d05c046db)] - **crypto**: return cached copies from CryptoKey algorithm and usages getters (Filip Skokan) [#59538](https://github.com/nodejs/node/pull/59538) +* \[[`207ffbeb07`](https://github.com/nodejs/node/commit/207ffbeb07)] - **crypto**: use CryptoKey internal slots in Web Cryptography (Filip Skokan) [#59538](https://github.com/nodejs/node/pull/59538) +* \[[`4276516781`](https://github.com/nodejs/node/commit/4276516781)] - **crypto**: normalize RsaHashedKeyParams publicExponent (Filip Skokan) [#59538](https://github.com/nodejs/node/pull/59538) +* \[[`14741539a7`](https://github.com/nodejs/node/commit/14741539a7)] - **(SEMVER-MINOR)** **crypto**: support ML-KEM, DHKEM, and RSASVE key encapsulation mechanisms (Filip Skokan) [#59491](https://github.com/nodejs/node/pull/59491) +* \[[`d3afc63c44`](https://github.com/nodejs/node/commit/d3afc63c44)] - **(SEMVER-MINOR)** **crypto**: add argon2() and argon2Sync() methods (Ranieri Althoff) [#50353](https://github.com/nodejs/node/pull/50353) +* \[[`4fe383e45a`](https://github.com/nodejs/node/commit/4fe383e45a)] - **(SEMVER-MINOR)** **crypto**: support ML-DSA spki/pkcs8 key formats in Web Cryptography (Filip Skokan) [#59365](https://github.com/nodejs/node/pull/59365) +* \[[`a95386fbf9`](https://github.com/nodejs/node/commit/a95386fbf9)] - **(SEMVER-MINOR)** **crypto**: subject some algorithms in Web Cryptography on BoringSSL absence (Filip Skokan) [#59365](https://github.com/nodejs/node/pull/59365) +* \[[`3f47a2fb63`](https://github.com/nodejs/node/commit/3f47a2fb63)] - **(SEMVER-MINOR)** **crypto**: add ChaCha20-Poly1305 Web Cryptography algorithm (Filip Skokan) [#59365](https://github.com/nodejs/node/pull/59365) +* \[[`6fcce9058a`](https://github.com/nodejs/node/commit/6fcce9058a)] - **(SEMVER-MINOR)** **crypto**: add subtle.getPublicKey() utility function in Web Cryptography (Filip Skokan) [#59365](https://github.com/nodejs/node/pull/59365) +* \[[`76cde76429`](https://github.com/nodejs/node/commit/76cde76429)] - **(SEMVER-MINOR)** **crypto**: add SHA-3 Web Cryptography digest algorithms (Filip Skokan) [#59365](https://github.com/nodejs/node/pull/59365) +* \[[`247d017501`](https://github.com/nodejs/node/commit/247d017501)] - **(SEMVER-MINOR)** **crypto**: add SHAKE Web Cryptography digest algorithms (Filip Skokan) [#59365](https://github.com/nodejs/node/pull/59365) +* \[[`f4fbcca5ce`](https://github.com/nodejs/node/commit/f4fbcca5ce)] - **(SEMVER-MINOR)** **crypto**: add SubtleCrypto.supports feature detection in Web Cryptography (Filip Skokan) [#59365](https://github.com/nodejs/node/pull/59365) +* \[[`a55382214f`](https://github.com/nodejs/node/commit/a55382214f)] - **(SEMVER-MINOR)** **crypto**: support ML-DSA in Web Cryptography (Filip Skokan) [#59365](https://github.com/nodejs/node/pull/59365) +* \[[`c38988c860`](https://github.com/nodejs/node/commit/c38988c860)] - **crypto**: fix EVPKeyCtxPointer::publicCheck() (Tobias Nießen) [#59471](https://github.com/nodejs/node/pull/59471) +* \[[`61c3bcdc56`](https://github.com/nodejs/node/commit/61c3bcdc56)] - **(SEMVER-MINOR)** **crypto**: support ML-KEM KeyObject (Filip Skokan) [#59461](https://github.com/nodejs/node/pull/59461) +* \[[`0821b446fb`](https://github.com/nodejs/node/commit/0821b446fb)] - **deps**: update undici to 7.14.0 (Node.js GitHub Bot) [#59507](https://github.com/nodejs/node/pull/59507) +* \[[`b3af17c065`](https://github.com/nodejs/node/commit/b3af17c065)] - **deps**: V8: cherry-pick 7b91e3e2cbaf (Milad Fa) [#59485](https://github.com/nodejs/node/pull/59485) +* \[[`9b69baf146`](https://github.com/nodejs/node/commit/9b69baf146)] - **deps**: V8: cherry-pick 59d52e311bb1 (Milad Fa) [#59485](https://github.com/nodejs/node/pull/59485) +* \[[`b4f202c2f1`](https://github.com/nodejs/node/commit/b4f202c2f1)] - **doc**: improve `sqlite.backup()` progress/fulfillment documentation (René) [#59598](https://github.com/nodejs/node/pull/59598) +* \[[`40b217a2f9`](https://github.com/nodejs/node/commit/40b217a2f9)] - **doc**: clarify experimental platform vulnerability policy (Matteo Collina) [#59591](https://github.com/nodejs/node/pull/59591) +* \[[`cf84fffea5`](https://github.com/nodejs/node/commit/cf84fffea5)] - **doc**: link to `TypedArray.from()` in signature (Aviv Keller) [#59226](https://github.com/nodejs/node/pull/59226) +* \[[`4bf6ed0bf5`](https://github.com/nodejs/node/commit/4bf6ed0bf5)] - **doc**: fix typos in `environment_variables.md` (PhistucK) [#59536](https://github.com/nodejs/node/pull/59536) +* \[[`1784c35a49`](https://github.com/nodejs/node/commit/1784c35a49)] - **doc**: add security incident reponse plan (Rafael Gonzaga) [#59470](https://github.com/nodejs/node/pull/59470) +* \[[`b962560240`](https://github.com/nodejs/node/commit/b962560240)] - **doc**: clarify maxRSS unit in `process.resourceUsage()` (Alex Yang) [#59511](https://github.com/nodejs/node/pull/59511) +* \[[`e6a6cdb9df`](https://github.com/nodejs/node/commit/e6a6cdb9df)] - **doc**: add missing Zstd strategy constants (RANDRIAMANANTENA Narindra Tiana Annaick) [#59312](https://github.com/nodejs/node/pull/59312) +* \[[`a6a31cb467`](https://github.com/nodejs/node/commit/a6a31cb467)] - **(SEMVER-MINOR)** **doc**: compress Web Cryptography Algorithm matrix (Filip Skokan) [#59365](https://github.com/nodejs/node/pull/59365) +* \[[`8f8960cfcb`](https://github.com/nodejs/node/commit/8f8960cfcb)] - **doc**: fix the version tls.DEFAULT\_CIPHERS was added (Allon Murienik) [#59247](https://github.com/nodejs/node/pull/59247) +* \[[`9e76089f1a`](https://github.com/nodejs/node/commit/9e76089f1a)] - **doc**: clarify glob's exclude option behavior (hotpineapple) [#59245](https://github.com/nodejs/node/pull/59245) +* \[[`dd5f835af7`](https://github.com/nodejs/node/commit/dd5f835af7)] - **doc**: add RafaelGSS as performance strategic lead (Rafael Gonzaga) [#59445](https://github.com/nodejs/node/pull/59445) +* \[[`2b7a7a525e`](https://github.com/nodejs/node/commit/2b7a7a525e)] - **doc,crypto**: add supported asymmetric key types section (Filip Skokan) [#59492](https://github.com/nodejs/node/pull/59492) +* \[[`2fafe4c3bb`](https://github.com/nodejs/node/commit/2fafe4c3bb)] - **esm**: link modules synchronously when no async loader hooks are used (Joyee Cheung) [#59519](https://github.com/nodejs/node/pull/59519) +* \[[`5347c4997a`](https://github.com/nodejs/node/commit/5347c4997a)] - **esm**: show race error message for inner module job race (Joyee Cheung) [#59519](https://github.com/nodejs/node/pull/59519) +* \[[`b56d8af2fe`](https://github.com/nodejs/node/commit/b56d8af2fe)] - **esm**: sync-ify module translation (Joyee Cheung) [#59453](https://github.com/nodejs/node/pull/59453) +* \[[`b4a23d6a69`](https://github.com/nodejs/node/commit/b4a23d6a69)] - **http**: trim off brackets from IPv6 addresses with string operations (Krishnadas PC) [#59420](https://github.com/nodejs/node/pull/59420) +* \[[`6ae202fcdf`](https://github.com/nodejs/node/commit/6ae202fcdf)] - **(SEMVER-MINOR)** **http**: add Agent.agentKeepAliveTimeoutBuffer option (Haram Jeong) [#59315](https://github.com/nodejs/node/pull/59315) +* \[[`dafee05358`](https://github.com/nodejs/node/commit/dafee05358)] - **(SEMVER-MINOR)** **http2**: add support for raw header arrays in h2Stream.respond() (Tim Perry) [#59455](https://github.com/nodejs/node/pull/59455) +* \[[`b7ea39d860`](https://github.com/nodejs/node/commit/b7ea39d860)] - **http2**: report sent headers object in client stream dcs (Darshan Sen) [#59419](https://github.com/nodejs/node/pull/59419) +* \[[`ebe9272dae`](https://github.com/nodejs/node/commit/ebe9272dae)] - **inspector**: initial support websocket inspection (Shima Ryuhei) [#59404](https://github.com/nodejs/node/pull/59404) +* \[[`b35041c7dc`](https://github.com/nodejs/node/commit/b35041c7dc)] - **inspector**: prevent propagation of promise hooks to noPromise hooks (Shima Ryuhei) [#58841](https://github.com/nodejs/node/pull/58841) +* \[[`fe7176d7c6`](https://github.com/nodejs/node/commit/fe7176d7c6)] - **lib**: do not modify prototype deprecated asyncResource (encore) (Szymon Łągiewka) [#59518](https://github.com/nodejs/node/pull/59518) +* \[[`93fc80a1e2`](https://github.com/nodejs/node/commit/93fc80a1e2)] - **(SEMVER-MINOR)** **lib**: refactor kSupportedAlgorithms (Filip Skokan) [#59365](https://github.com/nodejs/node/pull/59365) +* \[[`9a12f71ad9`](https://github.com/nodejs/node/commit/9a12f71ad9)] - **lib**: simplify IPv6 checks in isLoopback() (Krishnadas) [#59375](https://github.com/nodejs/node/pull/59375) +* \[[`566fb04c82`](https://github.com/nodejs/node/commit/566fb04c82)] - **meta**: update devcontainer to the latest schema (Aviv Keller) [#54347](https://github.com/nodejs/node/pull/54347) +* \[[`389a24bbff`](https://github.com/nodejs/node/commit/389a24bbff)] - **module**: allow overriding linked requests for a ModuleWrap (Chengzhong Wu) [#59527](https://github.com/nodejs/node/pull/59527) +* \[[`7880978fe3`](https://github.com/nodejs/node/commit/7880978fe3)] - **module**: correctly detect top-level await in ambiguous contexts (Shima Ryuhei) [#58646](https://github.com/nodejs/node/pull/58646) +* \[[`99128d9244`](https://github.com/nodejs/node/commit/99128d9244)] - **node-api**: link to other programming language bindings (Chengzhong Wu) [#59516](https://github.com/nodejs/node/pull/59516) +* \[[`65c870e6cb`](https://github.com/nodejs/node/commit/65c870e6cb)] - **node-api**: clarify enum value ABI stability (Chengzhong Wu) [#59085](https://github.com/nodejs/node/pull/59085) +* \[[`352d63541a`](https://github.com/nodejs/node/commit/352d63541a)] - **sea**: implement execArgvExtension (Joyee Cheung) [#59560](https://github.com/nodejs/node/pull/59560) +* \[[`c6e3d5d98d`](https://github.com/nodejs/node/commit/c6e3d5d98d)] - **(SEMVER-MINOR)** **sea**: support execArgv in sea config (Joyee Cheung) [#59314](https://github.com/nodejs/node/pull/59314) +* \[[`e7084df4db`](https://github.com/nodejs/node/commit/e7084df4db)] - **sqlite**: add sqlite-type symbol for DatabaseSync (Alex Yang) [#59405](https://github.com/nodejs/node/pull/59405) +* \[[`e2b6bdc640`](https://github.com/nodejs/node/commit/e2b6bdc640)] - **sqlite**: handle ?NNN parameters as positional (Edy Silva) [#59350](https://github.com/nodejs/node/pull/59350) +* \[[`99e4a12731`](https://github.com/nodejs/node/commit/99e4a12731)] - **sqlite**: avoid useless call to FromMaybe() (Tobias Nießen) [#59490](https://github.com/nodejs/node/pull/59490) +* \[[`dfd4962e5f`](https://github.com/nodejs/node/commit/dfd4962e5f)] - **src**: enforce assumptions in FIXED\_ONE\_BYTE\_STRING (Tobias Nießen) [#58155](https://github.com/nodejs/node/pull/58155) +* \[[`93a368df04`](https://github.com/nodejs/node/commit/93a368df04)] - **src**: use simdjson to parse --snapshot-config (Joyee Cheung) [#59473](https://github.com/nodejs/node/pull/59473) +* \[[`716750fcf8`](https://github.com/nodejs/node/commit/716750fcf8)] - **src**: fix order of CHECK\_NOT\_NULL/dereference (Tobias Nießen) [#59487](https://github.com/nodejs/node/pull/59487) +* \[[`44a8ecf8d4`](https://github.com/nodejs/node/commit/44a8ecf8d4)] - **src**: assert memory calc for max-old-space-size-percentage (Asaf Federman) [#59460](https://github.com/nodejs/node/pull/59460) +* \[[`3462b46fca`](https://github.com/nodejs/node/commit/3462b46fca)] - **src**: use simdjson::pad (0hm☘️) [#59391](https://github.com/nodejs/node/pull/59391) +* \[[`3e1551d845`](https://github.com/nodejs/node/commit/3e1551d845)] - **src**: move shared\_ptr objects in KeyObjectData (Tobias Nießen) [#59472](https://github.com/nodejs/node/pull/59472) +* \[[`c022c1f85a`](https://github.com/nodejs/node/commit/c022c1f85a)] - **src**: add internal GetOptionsAsFlags (Pietro Marchini) [#59138](https://github.com/nodejs/node/pull/59138) +* \[[`c0f08454a3`](https://github.com/nodejs/node/commit/c0f08454a3)] - **src**: iterate metadata version entries with std::array (Chengzhong Wu) [#57866](https://github.com/nodejs/node/pull/57866) +* \[[`f87836f3ae`](https://github.com/nodejs/node/commit/f87836f3ae)] - **src**: internalize `v8::ConvertableToTraceFormat` in traces (Chengzhong Wu) [#57866](https://github.com/nodejs/node/pull/57866) +* \[[`852b8e46d8`](https://github.com/nodejs/node/commit/852b8e46d8)] - **src**: remove duplicate assignment of `O_EXCL` in node\_constants.cc (Daniel Osvaldo R) [#59049](https://github.com/nodejs/node/pull/59049) +* \[[`64ffde608f`](https://github.com/nodejs/node/commit/64ffde608f)] - **src**: add Intel CET properties to large\_pages.S (tjuhaszrh) [#59363](https://github.com/nodejs/node/pull/59363) +* \[[`823dce32ec`](https://github.com/nodejs/node/commit/823dce32ec)] - **src**: update OpenSSL pqc checks (Filip Skokan) [#59436](https://github.com/nodejs/node/pull/59436) +* \[[`8dc6f5b696`](https://github.com/nodejs/node/commit/8dc6f5b696)] - **(SEMVER-MINOR)** **stream**: add brotli support to CompressionStream and DecompressionStream (Matthew Aitken) [#59464](https://github.com/nodejs/node/pull/59464) +* \[[`b2b8383755`](https://github.com/nodejs/node/commit/b2b8383755)] - **test**: use mustSucceed in test-repl-tab-complete-import (Sohyeon Kim) [#59368](https://github.com/nodejs/node/pull/59368) +* \[[`e3ad5cc2c6`](https://github.com/nodejs/node/commit/e3ad5cc2c6)] - **test**: skip sea tests on Linux ppc64le (Richard Lau) [#59563](https://github.com/nodejs/node/pull/59563) +* \[[`f78f47ca5a`](https://github.com/nodejs/node/commit/f78f47ca5a)] - **test**: support standalone env comment in tests (Pietro Marchini) [#59546](https://github.com/nodejs/node/pull/59546) +* \[[`0e8bc2c7ac`](https://github.com/nodejs/node/commit/0e8bc2c7ac)] - **test**: rename test-net-server-drop-connections-in-cluster.js to -http- (Meghan Denny) [#59532](https://github.com/nodejs/node/pull/59532) +* \[[`ed339580af`](https://github.com/nodejs/node/commit/ed339580af)] - **test**: lazy-load internalTTy (Pietro Marchini) [#59517](https://github.com/nodejs/node/pull/59517) +* \[[`fe86bc6da8`](https://github.com/nodejs/node/commit/fe86bc6da8)] - **test**: fix `test-setproctitle` status when `ps` is not available (Antoine du Hamel) [#59523](https://github.com/nodejs/node/pull/59523) +* \[[`e517792973`](https://github.com/nodejs/node/commit/e517792973)] - **test**: add parseTestMetadata support (Pietro Marchini) [#59503](https://github.com/nodejs/node/pull/59503) +* \[[`31092972d6`](https://github.com/nodejs/node/commit/31092972d6)] - **test**: update WPT for WebCryptoAPI to ff26d9b307 (Node.js GitHub Bot) [#59497](https://github.com/nodejs/node/pull/59497) +* \[[`16afd103cc`](https://github.com/nodejs/node/commit/16afd103cc)] - **(SEMVER-MINOR)** **test**: add Web Cryptography wrap/unwrap vectors (Filip Skokan) [#59365](https://github.com/nodejs/node/pull/59365) +* \[[`5598baf34e`](https://github.com/nodejs/node/commit/5598baf34e)] - **(SEMVER-MINOR)** **test**: cleanup test-webcrypto-supports (Filip Skokan) [#59365](https://github.com/nodejs/node/pull/59365) +* \[[`e7809d6ddb`](https://github.com/nodejs/node/commit/e7809d6ddb)] - **test**: make test-debug-process locale-independent (BCD1me) [#59254](https://github.com/nodejs/node/pull/59254) +* \[[`ca7856e73c`](https://github.com/nodejs/node/commit/ca7856e73c)] - **test**: mark test-wasi-pthread as flaky (Joyee Cheung) [#59488](https://github.com/nodejs/node/pull/59488) +* \[[`0ecd82197f`](https://github.com/nodejs/node/commit/0ecd82197f)] - **test**: split test-wasi.js (Joyee Cheung) [#59488](https://github.com/nodejs/node/pull/59488) +* \[[`0930c218d6`](https://github.com/nodejs/node/commit/0930c218d6)] - **test**: deflake connection refused proxy tests (Joyee Cheung) [#59476](https://github.com/nodejs/node/pull/59476) +* \[[`7f457f886a`](https://github.com/nodejs/node/commit/7f457f886a)] - **test**: use case-insensitive path checking on Windows in fs.cpSync tests (Joyee Cheung) [#59475](https://github.com/nodejs/node/pull/59475) +* \[[`37809115f9`](https://github.com/nodejs/node/commit/37809115f9)] - **test**: add missing hasPostData in test-inspector-emit-protocol-event (Shima Ryuhei) [#59412](https://github.com/nodejs/node/pull/59412) +* \[[`f4722b1672`](https://github.com/nodejs/node/commit/f4722b1672)] - **test**: refactor error checks to use assert.ifError/mustSucceed (Sohyeon Kim) [#59424](https://github.com/nodejs/node/pull/59424) +* \[[`9ff71a672d`](https://github.com/nodejs/node/commit/9ff71a672d)] - **test**: fix typos (Lee Jiho) [#59330](https://github.com/nodejs/node/pull/59330) +* \[[`9a7700da62`](https://github.com/nodejs/node/commit/9a7700da62)] - **test**: skip test-watch-mode inspect when no inspector (James M Snell) [#59440](https://github.com/nodejs/node/pull/59440) +* \[[`e964c4334e`](https://github.com/nodejs/node/commit/e964c4334e)] - **test\_runner**: do not error when getting `fullName` of root context (René) [#59377](https://github.com/nodejs/node/pull/59377) +* \[[`e076f7857c`](https://github.com/nodejs/node/commit/e076f7857c)] - **test\_runner**: add option to rerun only failed tests (Moshe Atlow) [#59443](https://github.com/nodejs/node/pull/59443) +* \[[`eb8b1939a4`](https://github.com/nodejs/node/commit/eb8b1939a4)] - **test\_runner**: fix isSkipped check in junit (Sungwon) [#59414](https://github.com/nodejs/node/pull/59414) +* \[[`4e02ea1c52`](https://github.com/nodejs/node/commit/4e02ea1c52)] - **tools**: update gyp-next to 0.20.3 (Node.js GitHub Bot) [#59603](https://github.com/nodejs/node/pull/59603) +* \[[`99da7fbe11`](https://github.com/nodejs/node/commit/99da7fbe11)] - **tools**: avoid parsing test files twice (Pietro Marchini) [#59526](https://github.com/nodejs/node/pull/59526) +* \[[`9a6a8e319b`](https://github.com/nodejs/node/commit/9a6a8e319b)] - **tools**: update coverage GitHub Actions to fixed version (Rich Trott) [#59512](https://github.com/nodejs/node/pull/59512) +* \[[`8d28236aff`](https://github.com/nodejs/node/commit/8d28236aff)] - **tools**: fix return value of try\_check\_compiler (theanarkh) [#59434](https://github.com/nodejs/node/pull/59434) +* \[[`52ab64ec3a`](https://github.com/nodejs/node/commit/52ab64ec3a)] - **tools**: bump @eslint/plugin-kit from 0.3.3 to 0.3.4 in /tools/eslint (dependabot\[bot]) [#59271](https://github.com/nodejs/node/pull/59271) +* \[[`baa22893bb`](https://github.com/nodejs/node/commit/baa22893bb)] - **typings**: add missing URLBinding methods (성우현 | Woohyun Sung) [#59468](https://github.com/nodejs/node/pull/59468) +* \[[`b68e0d1eca`](https://github.com/nodejs/node/commit/b68e0d1eca)] - **util**: fix error's namespaced node\_modules highlighting using inspect (Ruben Bridgewater) [#59446](https://github.com/nodejs/node/pull/59446) +* \[[`15ae21b88a`](https://github.com/nodejs/node/commit/15ae21b88a)] - **util**: add some additional error classes to `wellKnownPrototypes` (Mark S. Miller) [#59456](https://github.com/nodejs/node/pull/59456) +* \[[`c38b7cfa35`](https://github.com/nodejs/node/commit/c38b7cfa35)] - **worker**: fix worker name with \0 (theanarkh) [#59214](https://github.com/nodejs/node/pull/59214) +* \[[`f54ace694a`](https://github.com/nodejs/node/commit/f54ace694a)] - **worker**: add worker name to report (theanarkh) [#58935](https://github.com/nodejs/node/pull/58935) + + + +## 2025-08-14, Version 24.6.0 (Current), @RafaelGSS + +### Notable Changes + +* \[[`471fe712b3`](https://github.com/nodejs/node/commit/471fe712b3)] - **(SEMVER-MINOR)** **cli**: add NODE\_USE\_SYSTEM\_CA=1 (Joyee Cheung) [#59276](https://github.com/nodejs/node/pull/59276) +* \[[`38aedfbf73`](https://github.com/nodejs/node/commit/38aedfbf73)] - **(SEMVER-MINOR)** **crypto**: support ML-DSA KeyObject, sign, and verify (Filip Skokan) [#59259](https://github.com/nodejs/node/pull/59259) +* \[[`201304537e`](https://github.com/nodejs/node/commit/201304537e)] - **(SEMVER-MINOR)** **zlib**: add dictionary support to zstdCompress and zstdDecompress (lluisemper) [#59240](https://github.com/nodejs/node/pull/59240) +* \[[`e79c93a5d0`](https://github.com/nodejs/node/commit/e79c93a5d0)] - **(SEMVER-MINOR)** **http**: add server.keepAliveTimeoutBuffer option (Haram Jeong) [#59243](https://github.com/nodejs/node/pull/59243) +* \[[`c144d69efc`](https://github.com/nodejs/node/commit/c144d69efc)] - **lib**: docs deprecate \_http\_\* (Sebastian Beltran) [#59293](https://github.com/nodejs/node/pull/59293) +* \[[`aeb4de55a7`](https://github.com/nodejs/node/commit/aeb4de55a7)] - **(SEMVER-MINOR)** **fs**: port SonicBoom module to fs module as Utf8Stream (James M Snell) [#58897](https://github.com/nodejs/node/pull/58897) + +### Commits + +* \[[`f7484575ff`](https://github.com/nodejs/node/commit/f7484575ff)] - **assert**: change utils to use index instead of for...of (방진혁) [#59278](https://github.com/nodejs/node/pull/59278) +* \[[`269cd16185`](https://github.com/nodejs/node/commit/269cd16185)] - **benchmark**: remove deprecated \_extend from benchmark (Rafael Gonzaga) [#59228](https://github.com/nodejs/node/pull/59228) +* \[[`848e49c20b`](https://github.com/nodejs/node/commit/848e49c20b)] - **benchmark**: add fs warmup to writefile-promises (Bruno Rodrigues) [#59215](https://github.com/nodejs/node/pull/59215) +* \[[`8c609be1b1`](https://github.com/nodejs/node/commit/8c609be1b1)] - **benchmark**: add calibrate-n script (Rafael Gonzaga) [#59186](https://github.com/nodejs/node/pull/59186) +* \[[`6a3bf772d8`](https://github.com/nodejs/node/commit/6a3bf772d8)] - **build**: fix node\_use\_sqlite for GN builds (Shelley Vohr) [#59017](https://github.com/nodejs/node/pull/59017) +* \[[`471fe712b3`](https://github.com/nodejs/node/commit/471fe712b3)] - **(SEMVER-MINOR)** **cli**: add NODE\_USE\_SYSTEM\_CA=1 (Joyee Cheung) [#59276](https://github.com/nodejs/node/pull/59276) +* \[[`38aedfbf73`](https://github.com/nodejs/node/commit/38aedfbf73)] - **(SEMVER-MINOR)** **crypto**: support ML-DSA KeyObject, sign, and verify (Filip Skokan) [#59259](https://github.com/nodejs/node/pull/59259) +* \[[`a312e706cf`](https://github.com/nodejs/node/commit/a312e706cf)] - **crypto**: prepare webcrypto key import/export for modern algorithms (Filip Skokan) [#59284](https://github.com/nodejs/node/pull/59284) +* \[[`3a7c2c3a47`](https://github.com/nodejs/node/commit/3a7c2c3a47)] - **deps**: update ada to 3.2.7 (Node.js GitHub Bot) [#59336](https://github.com/nodejs/node/pull/59336) +* \[[`8d9ceeaf6a`](https://github.com/nodejs/node/commit/8d9ceeaf6a)] - **deps**: update archs files for openssl-3.5.2 (Node.js GitHub Bot) [#59371](https://github.com/nodejs/node/pull/59371) +* \[[`33b06df354`](https://github.com/nodejs/node/commit/33b06df354)] - **deps**: upgrade openssl sources to openssl-3.5.2 (Node.js GitHub Bot) [#59371](https://github.com/nodejs/node/pull/59371) +* \[[`fa70f1af77`](https://github.com/nodejs/node/commit/fa70f1af77)] - **deps**: support madvise(3C) across ALL illumos revisions (Dan McDonald) [#58237](https://github.com/nodejs/node/pull/58237) +* \[[`f834a6be59`](https://github.com/nodejs/node/commit/f834a6be59)] - **deps**: update undici to 7.13.0 (Node.js GitHub Bot) [#59338](https://github.com/nodejs/node/pull/59338) +* \[[`db2417487e`](https://github.com/nodejs/node/commit/db2417487e)] - **deps**: update sqlite to 3.50.4 (Node.js GitHub Bot) [#59337](https://github.com/nodejs/node/pull/59337) +* \[[`41978adb08`](https://github.com/nodejs/node/commit/41978adb08)] - **deps**: V8: backport 493cb53691be (Chengzhong Wu) [#59238](https://github.com/nodejs/node/pull/59238) +* \[[`05667991ca`](https://github.com/nodejs/node/commit/05667991ca)] - **deps**: V8: backport 1c3e018e7d48 (Renegade334) [#58818](https://github.com/nodejs/node/pull/58818) +* \[[`fd61588bb4`](https://github.com/nodejs/node/commit/fd61588bb4)] - **doc**: rename x509.extKeyUsage to x509.keyUsage (Filip Skokan) [#59332](https://github.com/nodejs/node/pull/59332) +* \[[`a271ae4360`](https://github.com/nodejs/node/commit/a271ae4360)] - **doc**: fix Pbkdf2Params hash attribute heading (Filip Skokan) [#59395](https://github.com/nodejs/node/pull/59395) +* \[[`72cfff165b`](https://github.com/nodejs/node/commit/72cfff165b)] - **doc**: fix missing reference links for server.keepAliveTimeoutBuffer (Lee Jiho) [#59356](https://github.com/nodejs/node/pull/59356) +* \[[`8341916772`](https://github.com/nodejs/node/commit/8341916772)] - **doc**: fix grammar in global dispatcher usage (Eng Zer Jun) [#59344](https://github.com/nodejs/node/pull/59344) +* \[[`e3e489706b`](https://github.com/nodejs/node/commit/e3e489706b)] - **doc**: run license-builder (github-actions\[bot]) [#59343](https://github.com/nodejs/node/pull/59343) +* \[[`46527e8cea`](https://github.com/nodejs/node/commit/46527e8cea)] - **doc**: correct orthography `eg.` → `e.g.` (Jacob Smith) [#59329](https://github.com/nodejs/node/pull/59329) +* \[[`d140c3713e`](https://github.com/nodejs/node/commit/d140c3713e)] - **doc**: clarify the need of compiler compatible with c++20 (Rafael Gonzaga) [#59297](https://github.com/nodejs/node/pull/59297) +* \[[`95e9cabf9d`](https://github.com/nodejs/node/commit/95e9cabf9d)] - **doc**: clarify release candidate stability index (Filip Skokan) [#59295](https://github.com/nodejs/node/pull/59295) +* \[[`a056dd36d2`](https://github.com/nodejs/node/commit/a056dd36d2)] - **doc**: add WDYT to glossary (btea) [#59280](https://github.com/nodejs/node/pull/59280) +* \[[`1e2c52f5c4`](https://github.com/nodejs/node/commit/1e2c52f5c4)] - **doc**: add manpage entry for --use-system-ca (Joyee Cheung) [#59273](https://github.com/nodejs/node/pull/59273) +* \[[`31a46fdeb4`](https://github.com/nodejs/node/commit/31a46fdeb4)] - **doc**: add path.join and path.normalize clarification (Rafael Gonzaga) [#59262](https://github.com/nodejs/node/pull/59262) +* \[[`cff3725ff9`](https://github.com/nodejs/node/commit/cff3725ff9)] - **doc**: fix typo in `test/common/README.md` (Yoo) [#59180](https://github.com/nodejs/node/pull/59180) +* \[[`31a9283591`](https://github.com/nodejs/node/commit/31a9283591)] - **doc**: add note on process memoryUsage (fengmk2) [#59026](https://github.com/nodejs/node/pull/59026) +* \[[`5a98bff6b8`](https://github.com/nodejs/node/commit/5a98bff6b8)] - **doc**: format safely for `doc-kit` (Aviv Keller) [#59229](https://github.com/nodejs/node/pull/59229) +* \[[`95b8b7ea5c`](https://github.com/nodejs/node/commit/95b8b7ea5c)] - **domain**: remove deprecated API call (Alex Yang) [#59339](https://github.com/nodejs/node/pull/59339) +* \[[`2990f178bd`](https://github.com/nodejs/node/commit/2990f178bd)] - **fs**: fix glob TypeError on restricted dirs (Sylphy-0xd3ac) [#58674](https://github.com/nodejs/node/pull/58674) +* \[[`e2fb4caf9c`](https://github.com/nodejs/node/commit/e2fb4caf9c)] - **fs**: correct error message when FileHandle is transferred (Alex Yang) [#59156](https://github.com/nodejs/node/pull/59156) +* \[[`aeb4de55a7`](https://github.com/nodejs/node/commit/aeb4de55a7)] - **(SEMVER-MINOR)** **fs**: port SonicBoom module to fs module as Utf8Stream (James M Snell) [#58897](https://github.com/nodejs/node/pull/58897) +* \[[`e79c93a5d0`](https://github.com/nodejs/node/commit/e79c93a5d0)] - **(SEMVER-MINOR)** **http**: add server.keepAliveTimeoutBuffer option (Haram Jeong) [#59243](https://github.com/nodejs/node/pull/59243) +* \[[`0fb005a53f`](https://github.com/nodejs/node/commit/0fb005a53f)] - **http2**: set Http2Stream#sentHeaders for raw headers (Darshan Sen) [#59244](https://github.com/nodejs/node/pull/59244) +* \[[`e055539604`](https://github.com/nodejs/node/commit/e055539604)] - **lib**: add trace-sigint APIs (theanarkh) [#59040](https://github.com/nodejs/node/pull/59040) +* \[[`d2183d860a`](https://github.com/nodejs/node/commit/d2183d860a)] - **lib**: optimize writable stream buffer clearing (Yoo) [#59406](https://github.com/nodejs/node/pull/59406) +* \[[`47543a7e17`](https://github.com/nodejs/node/commit/47543a7e17)] - **lib**: handle windows reserved device names on UNC (Rafael Gonzaga) [#59286](https://github.com/nodejs/node/pull/59286) +* \[[`c6911f0717`](https://github.com/nodejs/node/commit/c6911f0717)] - **lib**: do not modify prototype deprecated asyncResource (RafaelGSS) [#59195](https://github.com/nodejs/node/pull/59195) +* \[[`3c88b769bb`](https://github.com/nodejs/node/commit/3c88b769bb)] - **lib**: restructure assert to become a class (Miguel Marcondes Filho) [#58253](https://github.com/nodejs/node/pull/58253) +* \[[`e91b54df59`](https://github.com/nodejs/node/commit/e91b54df59)] - **lib**: handle superscript variants on windows device (Rafael Gonzaga) [#59261](https://github.com/nodejs/node/pull/59261) +* \[[`4ee467905d`](https://github.com/nodejs/node/commit/4ee467905d)] - **lib**: use validateString (hotpineapple) [#59296](https://github.com/nodejs/node/pull/59296) +* \[[`c144d69efc`](https://github.com/nodejs/node/commit/c144d69efc)] - **lib**: docs deprecate \_http\_\* (Sebastian Beltran) [#59293](https://github.com/nodejs/node/pull/59293) +* \[[`c89b67e681`](https://github.com/nodejs/node/commit/c89b67e681)] - **lib**: add type names in source mapped stack traces (Chengzhong Wu) [#58976](https://github.com/nodejs/node/pull/58976) +* \[[`5b2363be8d`](https://github.com/nodejs/node/commit/5b2363be8d)] - **lib**: prefer AsyncIteratorPrototype primordial (René) [#59097](https://github.com/nodejs/node/pull/59097) +* \[[`41b4f4d694`](https://github.com/nodejs/node/commit/41b4f4d694)] - **meta**: clarify pr objection process further (James M Snell) [#59096](https://github.com/nodejs/node/pull/59096) +* \[[`0eb5962f1e`](https://github.com/nodejs/node/commit/0eb5962f1e)] - **meta**: add mailmap entry for aditi-1400 (Aditi) [#59316](https://github.com/nodejs/node/pull/59316) +* \[[`a2b72c2304`](https://github.com/nodejs/node/commit/a2b72c2304)] - **meta**: add tsc and build team as codeowners building.md (Rafael Gonzaga) [#59298](https://github.com/nodejs/node/pull/59298) +* \[[`d69f3ee1e0`](https://github.com/nodejs/node/commit/d69f3ee1e0)] - **meta**: add nodejs/path to path files (Rafael Gonzaga) [#59289](https://github.com/nodejs/node/pull/59289) +* \[[`1e37eab865`](https://github.com/nodejs/node/commit/1e37eab865)] - **node-api**: reword "implementation in an alternative VM" as implementable (Chengzhong Wu) [#59036](https://github.com/nodejs/node/pull/59036) +* \[[`64add6302a`](https://github.com/nodejs/node/commit/64add6302a)] - **src**: use simdjson to parse SEA configuration (Joyee Cheung) [#59323](https://github.com/nodejs/node/pull/59323) +* \[[`e9c6636585`](https://github.com/nodejs/node/commit/e9c6636585)] - **src**: mark realm leaf classes final (Anna Henningsen) [#59355](https://github.com/nodejs/node/pull/59355) +* \[[`42ef8147d1`](https://github.com/nodejs/node/commit/42ef8147d1)] - **src**: warn about FastOneByteString invalidation (James M Snell) [#59275](https://github.com/nodejs/node/pull/59275) +* \[[`8686b8037a`](https://github.com/nodejs/node/commit/8686b8037a)] - **src**: remove unused DSAKeyExportJob (Filip Skokan) [#59291](https://github.com/nodejs/node/pull/59291) +* \[[`1e5f632666`](https://github.com/nodejs/node/commit/1e5f632666)] - **src**: use C++20 `contains()` method (iknoom) [#59304](https://github.com/nodejs/node/pull/59304) +* \[[`22d4683cfe`](https://github.com/nodejs/node/commit/22d4683cfe)] - **src**: added CHECK\_NOT\_NULL check for multiple eq\_wrap\_async (F3lixTheCat) [#59267](https://github.com/nodejs/node/pull/59267) +* \[[`6a47ff4943`](https://github.com/nodejs/node/commit/6a47ff4943)] - **src**: clear all linked module caches once instantiated (Chengzhong Wu) [#59117](https://github.com/nodejs/node/pull/59117) +* \[[`33728cb4ca`](https://github.com/nodejs/node/commit/33728cb4ca)] - **src**: add nullptr checks in `StreamPipe::New` (Burkov Egor) [#57613](https://github.com/nodejs/node/pull/57613) +* \[[`4a907bdad1`](https://github.com/nodejs/node/commit/4a907bdad1)] - **src**: add percentage support to --max-old-space-size (Asaf Federman) [#59082](https://github.com/nodejs/node/pull/59082) +* \[[`7c189d4f55`](https://github.com/nodejs/node/commit/7c189d4f55)] - **test**: deflake sequential/test-tls-session-timeout (Joyee Cheung) [#59423](https://github.com/nodejs/node/pull/59423) +* \[[`fb0a6fb57f`](https://github.com/nodejs/node/commit/fb0a6fb57f)] - **test**: exclude mock from coverage (Shima Ryuhei) [#59348](https://github.com/nodejs/node/pull/59348) +* \[[`7e10f95f13`](https://github.com/nodejs/node/commit/7e10f95f13)] - **test**: split test-fs-cp.js (Joyee Cheung) [#59408](https://github.com/nodejs/node/pull/59408) +* \[[`41bcf5f659`](https://github.com/nodejs/node/commit/41bcf5f659)] - **test**: update WPT resources,WebCryptoAPI,webstorage (Filip Skokan) [#59311](https://github.com/nodejs/node/pull/59311) +* \[[`f9f3dc94cb`](https://github.com/nodejs/node/commit/f9f3dc94cb)] - **test**: add known issue test for fs.cpSync dereference bug (James M Snell) [#58941](https://github.com/nodejs/node/pull/58941) +* \[[`244d0c38a8`](https://github.com/nodejs/node/commit/244d0c38a8)] - **test**: deflake stream-readable-to-web test (Ethan Arrowood) [#58948](https://github.com/nodejs/node/pull/58948) +* \[[`564e604a1a`](https://github.com/nodejs/node/commit/564e604a1a)] - **test**: make test-inspector-network-resource sequential (Shima Ryuhei) [#59104](https://github.com/nodejs/node/pull/59104) +* \[[`7ab13b7477`](https://github.com/nodejs/node/commit/7ab13b7477)] - **test**: don't use expose internals in test-http-outgoing-buffer.js (Meghan Denny) [#59219](https://github.com/nodejs/node/pull/59219) +* \[[`319df3859a`](https://github.com/nodejs/node/commit/319df3859a)] - **test,crypto**: skip unsupported ciphers (Shelley Vohr) [#59388](https://github.com/nodejs/node/pull/59388) +* \[[`713c70c32a`](https://github.com/nodejs/node/commit/713c70c32a)] - **test\_runner**: remove unused callee convertion (Alex Yang) [#59221](https://github.com/nodejs/node/pull/59221) +* \[[`e4ca30e115`](https://github.com/nodejs/node/commit/e4ca30e115)] - **tools**: disable nullability-completeness warnings (Michaël Zasso) [#59392](https://github.com/nodejs/node/pull/59392) +* \[[`dab7f6b542`](https://github.com/nodejs/node/commit/dab7f6b542)] - **tools**: check for std::vector\ in lint (Aditi) [#58497](https://github.com/nodejs/node/pull/58497) +* \[[`7b94982eb0`](https://github.com/nodejs/node/commit/7b94982eb0)] - **tools**: allow selecting test subsystems with numbers in their names (Darshan Sen) [#59242](https://github.com/nodejs/node/pull/59242) +* \[[`16bbcd8881`](https://github.com/nodejs/node/commit/16bbcd8881)] - **typings**: improve internal binding types (Nam Yooseong) [#59351](https://github.com/nodejs/node/pull/59351) +* \[[`76bc4d659b`](https://github.com/nodejs/node/commit/76bc4d659b)] - **typings**: improve internal binding types (Michaël Zasso) [#59176](https://github.com/nodejs/node/pull/59176) +* \[[`eecd3272a6`](https://github.com/nodejs/node/commit/eecd3272a6)] - **worker**: add name for worker (theanarkh) [#59213](https://github.com/nodejs/node/pull/59213) +* \[[`84c3513ce2`](https://github.com/nodejs/node/commit/84c3513ce2)] - **worker**: implements nits in Web Locks code (Antoine du Hamel) [#59270](https://github.com/nodejs/node/pull/59270) +* \[[`bd68fbd753`](https://github.com/nodejs/node/commit/bd68fbd753)] - **worker**: add cpuUsage for worker (theanarkh) [#59177](https://github.com/nodejs/node/pull/59177) +* \[[`201304537e`](https://github.com/nodejs/node/commit/201304537e)] - **(SEMVER-MINOR)** **zlib**: add dictionary support to zstdCompress and zstdDecompress (lluisemper) [#59240](https://github.com/nodejs/node/pull/59240) + + + +## 2025-07-31, Version 24.5.0 (Current), @aduh95 + +### Notable Changes + +#### Upgrade to OpenSSL 3.5 + +This release is distributed with OpenSSL 3.5.1, following the announcement that +OpenSSL 3.5 will be supported until April 2030, while Node.js 24 will be +supported until April 2028. Read more about OpenSSL support in their blog post: +. + +Contributed by Richard Lau in [#58100](https://github.com/nodejs/node/pull/58100). + +#### Unflag `--experimental-wasm-modules` + +Node.js supports both source phase imports and instance phase imports to WebAssembly +modules and for WASM imports to JavaScript, in line with the current Phase 3 +WebAssembly [ESM Integration](https://github.com/webassembly/esm-integration) proposal. +The implementation and the specification are still subject to change. + +Contributed by Guy Bedford in [#57038](https://github.com/nodejs/node/pull/57038). + +#### Built-in proxy support in `request()` and `Agent` + +`node:http` and `node:https` now support proxies. When `NODE_USE_ENV_PROXY` +is set to `1`, the default global agent would parse the `http_proxy`/`HTTP_PROXY`, +`https_proxy`/`HTTPS_PROXY`, `no_proxy`/`NO_PROXY` settings from the +environment variables, and proxy the requests sent through the built-in http/https +client accordingly. + +To use global proxy support from the command line: + +```bash +NODE_USE_ENV_PROXY=1 HTTP_PROXY=http://proxy.example.com:8080 HTTPS_PROXY=http://proxy.example.com:8080 NO_PROXY=localhost,127.0.0.1 node client.js +``` + +In addition, `http.Agent` and `https.Agent` now support the custom `proxyEnv` options. + +```js +const agent = new https.Agent({ proxyEnv: { HTTPS_PROXY: 'http://proxy.example.com:8080' } }); +``` + +For reference, `fetch()` already supports `NODE_USE_ENV_PROXY` as of Node.js 24.0.0. + +Contributed by Joyee Cheung in . + +#### Add `setDefaultCACertificates()` to `node:tls` + +This API allows dynamically configuring CA certificates that will be used by the +Node.js TLS clients by default. + +Once called, the provided certificates will become the default CA certificate list +returned by `tls.getCACertificates('default')` and used by TLS connections that +don't specify their own CA certificates. + +To add system CA certificates to the default bundle (which includes the Mozilla +CA certificates): + +```js +tls.setDefaultCACertificates(tls.getCACertificates('default').concat(tls.getCACertificates('system'))); +``` + +Contributed by Joyee Cheung in . + +#### Other notable changes + +* \[[`d5640ca58a`](https://github.com/nodejs/node/commit/d5640ca58a)] - **(SEMVER-MINOR)** **cli**: support `${pid}` placeholder in `--cpu-prof-name` (Haram Jeong) [#59072](https://github.com/nodejs/node/pull/59072) +* \[[`c52aaacfc5`](https://github.com/nodejs/node/commit/c52aaacfc5)] - **(SEMVER-MINOR)** **dns**: support max timeout (theanarkh) [#58440](https://github.com/nodejs/node/pull/58440) +* \[[`927742b342`](https://github.com/nodejs/node/commit/927742b342)] - **doc**: update the instruction on how to verify releases (Antoine du Hamel) [#59113](https://github.com/nodejs/node/pull/59113) +* \[[`f753645cd8`](https://github.com/nodejs/node/commit/f753645cd8)] - **(SEMVER-MINOR)** **net**: update net.blocklist to allow file save and file management (alphaleadership) [#58087](https://github.com/nodejs/node/pull/58087) +* \[[`9791ff3480`](https://github.com/nodejs/node/commit/9791ff3480)] - **(SEMVER-MINOR)** **worker**: add web locks api (ishabi) [#58666](https://github.com/nodejs/node/pull/58666) + +### Commits + +* \[[`5457c7a8a1`](https://github.com/nodejs/node/commit/5457c7a8a1)] - **benchmark**: adjust configuration for string-decoder bench (Rafael Gonzaga) [#59187](https://github.com/nodejs/node/pull/59187) +* \[[`28538f2255`](https://github.com/nodejs/node/commit/28538f2255)] - **benchmark**: add --track to benchmark (Rafael Gonzaga) [#59174](https://github.com/nodejs/node/pull/59174) +* \[[`a28d804497`](https://github.com/nodejs/node/commit/a28d804497)] - **benchmark**: small lint fix on \_cli.js (Rafael Gonzaga) [#59172](https://github.com/nodejs/node/pull/59172) +* \[[`09717eb68e`](https://github.com/nodejs/node/commit/09717eb68e)] - **benchmark**: drop misc/punycode benchmark (Rafael Gonzaga) [#59171](https://github.com/nodejs/node/pull/59171) +* \[[`ad6757ef02`](https://github.com/nodejs/node/commit/ad6757ef02)] - **benchmark**: fix sqlite-is-transaction (Rafael Gonzaga) [#59170](https://github.com/nodejs/node/pull/59170) +* \[[`7fc3143f61`](https://github.com/nodejs/node/commit/7fc3143f61)] - **benchmark**: reduce N for diagnostics\_channel subscribe benchmark (Arthur Angelo) [#59116](https://github.com/nodejs/node/pull/59116) +* \[[`f2812723a0`](https://github.com/nodejs/node/commit/f2812723a0)] - **buffer**: cache Environment::GetCurrent to avoid repeated calls (Mert Can Altin) [#59043](https://github.com/nodejs/node/pull/59043) +* \[[`e3e729ca60`](https://github.com/nodejs/node/commit/e3e729ca60)] - **build**: remove suppressions.supp (Rafael Gonzaga) [#59079](https://github.com/nodejs/node/pull/59079) +* \[[`dc66422768`](https://github.com/nodejs/node/commit/dc66422768)] - **build,deps,tools**: prepare to update to OpenSSL 3.5 (Richard Lau) [#58100](https://github.com/nodejs/node/pull/58100) +* \[[`f5da4947d9`](https://github.com/nodejs/node/commit/f5da4947d9)] - **cli**: add --use-env-proxy (Joyee Cheung) [#59151](https://github.com/nodejs/node/pull/59151) +* \[[`d5640ca58a`](https://github.com/nodejs/node/commit/d5640ca58a)] - **(SEMVER-MINOR)** **cli**: support `${pid}` placeholder in --cpu-prof-name (Haram Jeong) [#59072](https://github.com/nodejs/node/pull/59072) +* \[[`eeeb40e95b`](https://github.com/nodejs/node/commit/eeeb40e95b)] - **(SEMVER-MINOR)** **crypto**: add tls.setDefaultCACertificates() (Joyee Cheung) [#58822](https://github.com/nodejs/node/pull/58822) +* \[[`135fca5b72`](https://github.com/nodejs/node/commit/135fca5b72)] - **crypto**: avoid copying buffers to UTF-8 strings in `crypto.hash()` (Renegade334) [#59067](https://github.com/nodejs/node/pull/59067) +* \[[`998cef10e3`](https://github.com/nodejs/node/commit/998cef10e3)] - **deps**: update archs files for openssl-3.5.1 (Node.js GitHub Bot) [#59234](https://github.com/nodejs/node/pull/59234) +* \[[`1f06ca956a`](https://github.com/nodejs/node/commit/1f06ca956a)] - **deps**: upgrade openssl sources to openssl-3.5.1 (Node.js GitHub Bot) [#59234](https://github.com/nodejs/node/pull/59234) +* \[[`55a90eed8d`](https://github.com/nodejs/node/commit/55a90eed8d)] - **deps**: upgrade npm to 11.5.1 (npm team) [#59199](https://github.com/nodejs/node/pull/59199) +* \[[`2b5d451ae0`](https://github.com/nodejs/node/commit/2b5d451ae0)] - **deps**: update amaro to 1.1.1 (Node.js GitHub Bot) [#59141](https://github.com/nodejs/node/pull/59141) +* \[[`af789d9b5c`](https://github.com/nodejs/node/commit/af789d9b5c)] - **deps**: update undici to 7.12.0 (Node.js GitHub Bot) [#59135](https://github.com/nodejs/node/pull/59135) +* \[[`a34e44545e`](https://github.com/nodejs/node/commit/a34e44545e)] - **deps**: update sqlite to 3.50.3 (Node.js GitHub Bot) [#59132](https://github.com/nodejs/node/pull/59132) +* \[[`bfe4781c7d`](https://github.com/nodejs/node/commit/bfe4781c7d)] - **deps**: update googletest to 7e17b15 (Node.js GitHub Bot) [#59131](https://github.com/nodejs/node/pull/59131) +* \[[`72adf52e51`](https://github.com/nodejs/node/commit/72adf52e51)] - **deps**: update ada to 3.2.6 (Node.js GitHub Bot) [#58966](https://github.com/nodejs/node/pull/58966) +* \[[`2a5f35b589`](https://github.com/nodejs/node/commit/2a5f35b589)] - **deps**: V8: cherry-pick 3d750c2aa9ef (Michaël Zasso) [#58750](https://github.com/nodejs/node/pull/58750) +* \[[`3f813eaba7`](https://github.com/nodejs/node/commit/3f813eaba7)] - **deps**: update archs files for openssl-3.0.17 (Node.js GitHub Bot) [#59134](https://github.com/nodejs/node/pull/59134) +* \[[`fb52d0d8df`](https://github.com/nodejs/node/commit/fb52d0d8df)] - **deps**: upgrade openssl sources to openssl-3.0.17 (Node.js GitHub Bot) [#59134](https://github.com/nodejs/node/pull/59134) +* \[[`f122602f9d`](https://github.com/nodejs/node/commit/f122602f9d)] - **deps**: update corepack to 0.34.0 (Node.js GitHub Bot) [#59133](https://github.com/nodejs/node/pull/59133) +* \[[`c52aaacfc5`](https://github.com/nodejs/node/commit/c52aaacfc5)] - **(SEMVER-MINOR)** **dns**: support max timeout (theanarkh) [#58440](https://github.com/nodejs/node/pull/58440) +* \[[`927742b342`](https://github.com/nodejs/node/commit/927742b342)] - **doc**: update the instruction on how to verify releases (Antoine du Hamel) [#59113](https://github.com/nodejs/node/pull/59113) +* \[[`9a8d2020ad`](https://github.com/nodejs/node/commit/9a8d2020ad)] - **doc**: copyedit SECURITY.md (Rich Trott) [#59190](https://github.com/nodejs/node/pull/59190) +* \[[`3da5bc0668`](https://github.com/nodejs/node/commit/3da5bc0668)] - **doc**: fix broken sentence in `URL.parse` (Superchupu) [#59164](https://github.com/nodejs/node/pull/59164) +* \[[`06cd7461e0`](https://github.com/nodejs/node/commit/06cd7461e0)] - **doc**: improve onboarding instructions (Joyee Cheung) [#59159](https://github.com/nodejs/node/pull/59159) +* \[[`dfb72d158b`](https://github.com/nodejs/node/commit/dfb72d158b)] - **doc**: add constraints for mem leak to threat model (Rafael Gonzaga) [#58917](https://github.com/nodejs/node/pull/58917) +* \[[`51b8dfd5c6`](https://github.com/nodejs/node/commit/51b8dfd5c6)] - **doc**: add Aditi-1400 to collaborators (Aditi) [#59157](https://github.com/nodejs/node/pull/59157) +* \[[`4ffa756ce3`](https://github.com/nodejs/node/commit/4ffa756ce3)] - **doc**: avoid suggesting testing fast api with intense loop (Chengzhong Wu) [#59111](https://github.com/nodejs/node/pull/59111) +* \[[`6f81b274f7`](https://github.com/nodejs/node/commit/6f81b274f7)] - **doc**: fix typo in writing-test.md (SeokHun) [#59123](https://github.com/nodejs/node/pull/59123) +* \[[`88e434e687`](https://github.com/nodejs/node/commit/88e434e687)] - **doc**: add new environment variables doc page (Dario Piotrowicz) [#59052](https://github.com/nodejs/node/pull/59052) +* \[[`b1a318d706`](https://github.com/nodejs/node/commit/b1a318d706)] - **doc**: update release key for aduh95 (Antoine du Hamel) [#58877](https://github.com/nodejs/node/pull/58877) +* \[[`34c49000c9`](https://github.com/nodejs/node/commit/34c49000c9)] - **doc**: add missing section for `setReturnArrays` in `sqlite.md` (Edy Silva) [#59074](https://github.com/nodejs/node/pull/59074) +* \[[`9b2e965aff`](https://github.com/nodejs/node/commit/9b2e965aff)] - **doc**: add RafaelGSS as steward July 25 (Rafael Gonzaga) [#59078](https://github.com/nodejs/node/pull/59078) +* \[[`2d1dcb87e6`](https://github.com/nodejs/node/commit/2d1dcb87e6)] - **doc**: clarify ERR\_FS\_FILE\_TOO\_LARGE to reflect fs.readFile() I/O limit (Haram Jeong) [#59050](https://github.com/nodejs/node/pull/59050) +* \[[`999b5e51e7`](https://github.com/nodejs/node/commit/999b5e51e7)] - **doc**: run license-builder (github-actions\[bot]) [#59056](https://github.com/nodejs/node/pull/59056) +* \[[`1940a2cb46`](https://github.com/nodejs/node/commit/1940a2cb46)] - **doc**: fix typed list formatting (Aviv Keller) [#59019](https://github.com/nodejs/node/pull/59019) +* \[[`6cb5e0d22f`](https://github.com/nodejs/node/commit/6cb5e0d22f)] - **doc**: refine `util.parseArgs` `default` definition (Slayer95) [#58958](https://github.com/nodejs/node/pull/58958) +* \[[`d2e7f8e13a`](https://github.com/nodejs/node/commit/d2e7f8e13a)] - **doc**: remove unused import in `zlib.md` (coderaiser) [#59041](https://github.com/nodejs/node/pull/59041) +* \[[`9d02960149`](https://github.com/nodejs/node/commit/9d02960149)] - **doc**: add missing environment variables to manpage (amir lavasani) [#58963](https://github.com/nodejs/node/pull/58963) +* \[[`45ffdb34fb`](https://github.com/nodejs/node/commit/45ffdb34fb)] - **doc**: add stability index to the `--watch-kill-signal` flag (Dario Piotrowicz) [#58997](https://github.com/nodejs/node/pull/58997) +* \[[`3924c43600`](https://github.com/nodejs/node/commit/3924c43600)] - **doc**: add missing `` blocks (Antoine du Hamel) [#58995](https://github.com/nodejs/node/pull/58995) +* \[[`cb95e183f3`](https://github.com/nodejs/node/commit/cb95e183f3)] - **doc**: add scroll margin to links (Roman Reiss) [#58982](https://github.com/nodejs/node/pull/58982) +* \[[`c9ded6ba15`](https://github.com/nodejs/node/commit/c9ded6ba15)] - **doc**: add sponsorship link to RafaelGSS (Rafael Gonzaga) [#58983](https://github.com/nodejs/node/pull/58983) +* \[[`b919fe0447`](https://github.com/nodejs/node/commit/b919fe0447)] - **(SEMVER-MINOR)** **esm**: unflag --experimental-wasm-modules (Guy Bedford) [#57038](https://github.com/nodejs/node/pull/57038) +* \[[`71bb6cd077`](https://github.com/nodejs/node/commit/71bb6cd077)] - **esm**: js-string Wasm builtins in ESM Integration (Guy Bedford) [#59020](https://github.com/nodejs/node/pull/59020) +* \[[`8d869e6d62`](https://github.com/nodejs/node/commit/8d869e6d62)] - **fs**: fix return value of fs APIs (theanarkh) [#58996](https://github.com/nodejs/node/pull/58996) +* \[[`7f654cee9e`](https://github.com/nodejs/node/commit/7f654cee9e)] - **(SEMVER-MINOR)** **http,https**: add built-in proxy support in http/https.request and Agent (Joyee Cheung) [#58980](https://github.com/nodejs/node/pull/58980) +* \[[`85d6a28f4f`](https://github.com/nodejs/node/commit/85d6a28f4f)] - **inspector**: initial support for Network.loadNetworkResource (Shima Ryuhei) [#58077](https://github.com/nodejs/node/pull/58077) +* \[[`cfaa299f2e`](https://github.com/nodejs/node/commit/cfaa299f2e)] - **lib**: fix incorrect `ArrayBufferPrototypeGetDetached` primordial type (Dario Piotrowicz) [#58978](https://github.com/nodejs/node/pull/58978) +* \[[`d555db22ad`](https://github.com/nodejs/node/commit/d555db22ad)] - **lib**: flag to conditionally modify proto on deprecate (Rafael Gonzaga) [#58928](https://github.com/nodejs/node/pull/58928) +* \[[`96c9dd79e6`](https://github.com/nodejs/node/commit/96c9dd79e6)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#59140](https://github.com/nodejs/node/pull/59140) +* \[[`324d9fc9d4`](https://github.com/nodejs/node/commit/324d9fc9d4)] - **meta**: enable jsdoc/check-tag-names rule (Yagiz Nizipli) [#58521](https://github.com/nodejs/node/pull/58521) +* \[[`04c751463b`](https://github.com/nodejs/node/commit/04c751463b)] - **meta**: add marco-ippolito to security release stewards (Marco Ippolito) [#58944](https://github.com/nodejs/node/pull/58944) +* \[[`fe0195fdcc`](https://github.com/nodejs/node/commit/fe0195fdcc)] - **module**: fix conditions override in synchronous resolve hooks (Joyee Cheung) [#59011](https://github.com/nodejs/node/pull/59011) +* \[[`515b581d47`](https://github.com/nodejs/node/commit/515b581d47)] - **module**: throw error when re-runing errored module jobs (Joyee Cheung) [#58957](https://github.com/nodejs/node/pull/58957) +* \[[`f753645cd8`](https://github.com/nodejs/node/commit/f753645cd8)] - **(SEMVER-MINOR)** **net**: update net.blocklist to allow file save and file management (alphaleadership) [#58087](https://github.com/nodejs/node/pull/58087) +* \[[`15e6c28d82`](https://github.com/nodejs/node/commit/15e6c28d82)] - **node-api,doc**: update links to ecma262 with section names (Chengzhong Wu) [#59087](https://github.com/nodejs/node/pull/59087) +* \[[`f67b686551`](https://github.com/nodejs/node/commit/f67b686551)] - **perf\_hooks**: do not expose SafeMap via Histogram wrapper (René) [#59094](https://github.com/nodejs/node/pull/59094) +* \[[`3d2f919f7c`](https://github.com/nodejs/node/commit/3d2f919f7c)] - **process**: make execve's args argument optional (Allon Murienik) [#58412](https://github.com/nodejs/node/pull/58412) +* \[[`1a44265810`](https://github.com/nodejs/node/commit/1a44265810)] - **repl**: handle errors from getters during completion (Shima Ryuhei) [#59044](https://github.com/nodejs/node/pull/59044) +* \[[`467dbd31e6`](https://github.com/nodejs/node/commit/467dbd31e6)] - **repl**: fix repl crashing on variable declarations without init (Dario Piotrowicz) [#59032](https://github.com/nodejs/node/pull/59032) +* \[[`3a3eb6852d`](https://github.com/nodejs/node/commit/3a3eb6852d)] - **repl**: improve REPL disabling completion on proxies and getters (Dario Piotrowicz) [#58891](https://github.com/nodejs/node/pull/58891) +* \[[`55838e79b8`](https://github.com/nodejs/node/commit/55838e79b8)] - **src**: call unmask after install signal handler (theanarkh) [#59059](https://github.com/nodejs/node/pull/59059) +* \[[`77649ad93b`](https://github.com/nodejs/node/commit/77649ad93b)] - **src**: use `FastStringKey` for `TrackV8FastApiCall` (Anna Henningsen) [#59148](https://github.com/nodejs/node/pull/59148) +* \[[`86babf9c4b`](https://github.com/nodejs/node/commit/86babf9c4b)] - **src**: use C++20 `consteval` for `FastStringKey` (Anna Henningsen) [#59148](https://github.com/nodejs/node/pull/59148) +* \[[`88b99eeae1`](https://github.com/nodejs/node/commit/88b99eeae1)] - **src**: remove declarations of removed BaseObject static fns (Anna Henningsen) [#59093](https://github.com/nodejs/node/pull/59093) +* \[[`d89390fc8f`](https://github.com/nodejs/node/commit/d89390fc8f)] - **src**: add cache to nearest parent package json (Ilyas Shabi) [#59086](https://github.com/nodejs/node/pull/59086) +* \[[`21780075e4`](https://github.com/nodejs/node/commit/21780075e4)] - **src**: check import attributes value types as strings (Chengzhong Wu) [#58986](https://github.com/nodejs/node/pull/58986) +* \[[`ef89c2fac9`](https://github.com/nodejs/node/commit/ef89c2fac9)] - **src,test**: fix config file parsing for flags defaulted to true (Edy Silva) [#59110](https://github.com/nodejs/node/pull/59110) +* \[[`1e990866e0`](https://github.com/nodejs/node/commit/1e990866e0)] - **test**: mark web lock held test as flaky (Ilyas Shabi) [#59144](https://github.com/nodejs/node/pull/59144) +* \[[`ba8e95a785`](https://github.com/nodejs/node/commit/ba8e95a785)] - **test**: use mustSucceed in test-fs-read (Sungwon) [#59204](https://github.com/nodejs/node/pull/59204) +* \[[`39978f507f`](https://github.com/nodejs/node/commit/39978f507f)] - **test**: prepare test-crypto-rsa-dsa for newer OpenSSL (Richard Lau) [#58100](https://github.com/nodejs/node/pull/58100) +* \[[`1c3aadb9d6`](https://github.com/nodejs/node/commit/1c3aadb9d6)] - **test**: fix flaky test-worker-message-port-transfer-filehandle test (Alex Yang) [#59158](https://github.com/nodejs/node/pull/59158) +* \[[`a0d22e9c51`](https://github.com/nodejs/node/commit/a0d22e9c51)] - **test**: remove timeout in test-https-proxy-request-handshake-failure (Joyee Cheung) [#59165](https://github.com/nodejs/node/pull/59165) +* \[[`7e0a0fccc1`](https://github.com/nodejs/node/commit/7e0a0fccc1)] - **test**: expand linting rules around `assert` w literal messages (Anna Henningsen) [#59147](https://github.com/nodejs/node/pull/59147) +* \[[`c6070046c3`](https://github.com/nodejs/node/commit/c6070046c3)] - **test**: update WPT for WebCryptoAPI to ab08796857 (Node.js GitHub Bot) [#59129](https://github.com/nodejs/node/pull/59129) +* \[[`15d8cc908e`](https://github.com/nodejs/node/commit/15d8cc908e)] - **test**: update WPT for WebCryptoAPI to 19d82c57ab (Node.js GitHub Bot) [#59129](https://github.com/nodejs/node/pull/59129) +* \[[`83023e5144`](https://github.com/nodejs/node/commit/83023e5144)] - **test**: skip tests that cause timeouts on IBM i (Abdirahim Musse) [#59014](https://github.com/nodejs/node/pull/59014) +* \[[`82d4175ec3`](https://github.com/nodejs/node/commit/82d4175ec3)] - **test**: update `startCLI` to set `--port=0` by default (Dario Piotrowicz) [#59042](https://github.com/nodejs/node/pull/59042) +* \[[`16dc53c143`](https://github.com/nodejs/node/commit/16dc53c143)] - **(SEMVER-MINOR)** **test**: move http proxy tests to test/client-proxy (Joyee Cheung) [#58980](https://github.com/nodejs/node/pull/58980) +* \[[`a9511a6066`](https://github.com/nodejs/node/commit/a9511a6066)] - **test**: mark test-inspector-network-fetch as flaky on Windows (Joyee Cheung) [#59091](https://github.com/nodejs/node/pull/59091) +* \[[`1cffcc02a3`](https://github.com/nodejs/node/commit/1cffcc02a3)] - **test**: add missing port=0 arg in test-debugger-extract-function-name (Dario Piotrowicz) [#58977](https://github.com/nodejs/node/pull/58977) +* \[[`83cdf1701b`](https://github.com/nodejs/node/commit/83cdf1701b)] - **test\_runner**: clean up promisified interval generation (René) [#58824](https://github.com/nodejs/node/pull/58824) +* \[[`195d6038dc`](https://github.com/nodejs/node/commit/195d6038dc)] - **tools**: clarify README linter error message (Joyee Cheung) [#59160](https://github.com/nodejs/node/pull/59160) +* \[[`51f578a3bf`](https://github.com/nodejs/node/commit/51f578a3bf)] - **tools**: add support for URLs to PR commits in `merge.sh` (Antoine du Hamel) [#59162](https://github.com/nodejs/node/pull/59162) +* \[[`20be9012eb`](https://github.com/nodejs/node/commit/20be9012eb)] - **tools**: bump @eslint/plugin-kit from 0.3.1 to 0.3.3 in /tools/eslint (dependabot\[bot]) [#59119](https://github.com/nodejs/node/pull/59119) +* \[[`623e264e93`](https://github.com/nodejs/node/commit/623e264e93)] - **tools**: ignore CVE mention when linting release proposals (Antoine du Hamel) [#59037](https://github.com/nodejs/node/pull/59037) +* \[[`0e547e09ab`](https://github.com/nodejs/node/commit/0e547e09ab)] - **tools,test**: enforce best practices to detect never settling promises (Antoine du Hamel) [#58992](https://github.com/nodejs/node/pull/58992) +* \[[`075d1968db`](https://github.com/nodejs/node/commit/075d1968db)] - **util**: respect nested formats in styleText (Alex Yang) [#59098](https://github.com/nodejs/node/pull/59098) +* \[[`9791ff3480`](https://github.com/nodejs/node/commit/9791ff3480)] - **(SEMVER-MINOR)** **worker**: add web locks api (ishabi) [#58666](https://github.com/nodejs/node/pull/58666) + + + +## 2025-07-15, Version 24.4.1 (Current), @RafaelGSS + +This is a security release. + +### Notable Changes + +* (CVE-2025-27209) HashDoS in V8 with new RapidHash algorithm +* (CVE-2025-27210) Windows Device Names (CON, PRN, AUX) Bypass Path Traversal Protection in path.normalize() + +### Commits + +* \[[`c33223f1a5`](https://github.com/nodejs/node/commit/c33223f1a5)] - **(CVE-2025-27209)** **deps**: V8: revert rapidhash commits (Michaël Zasso) [nodejs-private/node-private#713](https://github.com/nodejs-private/node-private/pull/713) +* \[[`56f9db2aaa`](https://github.com/nodejs/node/commit/56f9db2aaa)] - **(CVE-2025-27210)** **lib**: handle all windows reserved driver name (RafaelGSS) [nodejs-private/node-private#721](https://github.com/nodejs-private/node-private/pull/721) + + + +## 2025-07-09, Version 24.4.0 (Current), @RafaelGSS + +### Notable Changes + +* \[[`22b60e8a57`](https://github.com/nodejs/node/commit/22b60e8a57)] - **(SEMVER-MINOR)** **crypto**: support outputLength option in crypto.hash for XOF functions (Aditi) [#58121](https://github.com/nodejs/node/pull/58121) +* \[[`80dec9849d`](https://github.com/nodejs/node/commit/80dec9849d)] - **(SEMVER-MINOR)** **doc**: add all watch-mode related flags to node.1 (Dario Piotrowicz) [#58719](https://github.com/nodejs/node/pull/58719) +* \[[`87f4d078b3`](https://github.com/nodejs/node/commit/87f4d078b3)] - **(SEMVER-MINOR)** **fs**: add disposable mkdtempSync (Kevin Gibbons) [#58516](https://github.com/nodejs/node/pull/58516) +* \[[`9623c50b53`](https://github.com/nodejs/node/commit/9623c50b53)] - **(SEMVER-MINOR)** **permission**: propagate permission model flags on spawn (Rafael Gonzaga) [#58853](https://github.com/nodejs/node/pull/58853) +* \[[`797ec4da04`](https://github.com/nodejs/node/commit/797ec4da04)] - **(SEMVER-MINOR)** **sqlite**: add support for readBigInts option in db connection level (Miguel Marcondes Filho) [#58697](https://github.com/nodejs/node/pull/58697) +* \[[`ed966a0215`](https://github.com/nodejs/node/commit/ed966a0215)] - **(SEMVER-MINOR)** **src,permission**: add support to permission.has(addon) (Rafael Gonzaga) [#58951](https://github.com/nodejs/node/pull/58951) +* \[[`fe17f5d285`](https://github.com/nodejs/node/commit/fe17f5d285)] - **(SEMVER-MINOR)** **watch**: add `--watch-kill-signal` flag (Dario Piotrowicz) [#58719](https://github.com/nodejs/node/pull/58719) + +### Commits + +* \[[`a118bfc536`](https://github.com/nodejs/node/commit/a118bfc536)] - **assert**: remove dead code (Yoshiya Hinosawa) [#58760](https://github.com/nodejs/node/pull/58760) +* \[[`31252b9af1`](https://github.com/nodejs/node/commit/31252b9af1)] - **benchmark**: add source map and source map cache (Miguel Marcondes Filho) [#58125](https://github.com/nodejs/node/pull/58125) +* \[[`4170359bcd`](https://github.com/nodejs/node/commit/4170359bcd)] - **bootstrap**: initialize http proxy after user module loader setup (Joyee Cheung) [#58938](https://github.com/nodejs/node/pull/58938) +* \[[`c76585d10e`](https://github.com/nodejs/node/commit/c76585d10e)] - **build**: disable v8\_enable\_pointer\_compression\_shared\_cage on non-64bit (Shelley Vohr) [#58867](https://github.com/nodejs/node/pull/58867) +* \[[`049c838609`](https://github.com/nodejs/node/commit/049c838609)] - **build**: option to use custom inspector\_protocol path (Shelley Vohr) [#58839](https://github.com/nodejs/node/pull/58839) +* \[[`22b60e8a57`](https://github.com/nodejs/node/commit/22b60e8a57)] - **(SEMVER-MINOR)** **crypto**: support outputLength option in crypto.hash for XOF functions (Aditi) [#58121](https://github.com/nodejs/node/pull/58121) +* \[[`77712ae2a1`](https://github.com/nodejs/node/commit/77712ae2a1)] - **crypto**: fix SHAKE128/256 breaking change introduced with OpenSSL 3.4 (Filip Skokan) [#58942](https://github.com/nodejs/node/pull/58942) +* \[[`93e1a33b81`](https://github.com/nodejs/node/commit/93e1a33b81)] - **crypto**: fix inclusion of OPENSSL\_IS\_BORINGSSL define (Shelley Vohr) [#58845](https://github.com/nodejs/node/pull/58845) +* \[[`573171deb0`](https://github.com/nodejs/node/commit/573171deb0)] - **deps**: V8: cherry-pick 0ce2edb7adfd (Levi Zim) [#58773](https://github.com/nodejs/node/pull/58773) +* \[[`bf66291382`](https://github.com/nodejs/node/commit/bf66291382)] - **deps**: V8: cherry-pick 1d7159580156 (Michaël Zasso) [#58749](https://github.com/nodejs/node/pull/58749) +* \[[`f735b8b8d0`](https://github.com/nodejs/node/commit/f735b8b8d0)] - **deps**: update sqlite to 3.50.2 (Node.js GitHub Bot) [#58882](https://github.com/nodejs/node/pull/58882) +* \[[`8e9622e494`](https://github.com/nodejs/node/commit/8e9622e494)] - **deps**: update undici to 7.11.0 (Node.js GitHub Bot) [#58859](https://github.com/nodejs/node/pull/58859) +* \[[`8741da81c7`](https://github.com/nodejs/node/commit/8741da81c7)] - **deps**: update googletest to 35b75a2 (Node.js GitHub Bot) [#58710](https://github.com/nodejs/node/pull/58710) +* \[[`028ce40e25`](https://github.com/nodejs/node/commit/028ce40e25)] - **deps**: update minimatch to 10.0.3 (Node.js GitHub Bot) [#58712](https://github.com/nodejs/node/pull/58712) +* \[[`3afb15b715`](https://github.com/nodejs/node/commit/3afb15b715)] - **dns**: fix parse memory leaky (theanarkh) [#58973](https://github.com/nodejs/node/pull/58973) +* \[[`f40ac32f3e`](https://github.com/nodejs/node/commit/f40ac32f3e)] - **dns**: set timeout to 1000ms when timeout < 0 (theanarkh) [#58441](https://github.com/nodejs/node/pull/58441) +* \[[`921b563999`](https://github.com/nodejs/node/commit/921b563999)] - **doc**: remove broken link to permission model source code (Juan José) [#58972](https://github.com/nodejs/node/pull/58972) +* \[[`78628d6158`](https://github.com/nodejs/node/commit/78628d6158)] - **doc**: clarify details of TSC public and private meetings (James M Snell) [#58925](https://github.com/nodejs/node/pull/58925) +* \[[`ab834a8b94`](https://github.com/nodejs/node/commit/ab834a8b94)] - **doc**: mark stability markers consistent in `globals.md` (Antoine du Hamel) [#58932](https://github.com/nodejs/node/pull/58932) +* \[[`8d4f6a0016`](https://github.com/nodejs/node/commit/8d4f6a0016)] - **doc**: move "Core Promise APIs" to "Completed initiatives" (Antoine du Hamel) [#58934](https://github.com/nodejs/node/pull/58934) +* \[[`94725fced5`](https://github.com/nodejs/node/commit/94725fced5)] - **doc**: fix `fetch` subsections in `globals.md` (Antoine du Hamel) [#58933](https://github.com/nodejs/node/pull/58933) +* \[[`a7a4870014`](https://github.com/nodejs/node/commit/a7a4870014)] - **doc**: add missing `Class:` mentions (Antoine du Hamel) [#58931](https://github.com/nodejs/node/pull/58931) +* \[[`98f29fa2fd`](https://github.com/nodejs/node/commit/98f29fa2fd)] - **doc**: remove myself from security steward rotation (Michael Dawson) [#58927](https://github.com/nodejs/node/pull/58927) +* \[[`710e13d436`](https://github.com/nodejs/node/commit/710e13d436)] - **doc**: add ovflowd back to core collaborators (Claudio W.) [#58911](https://github.com/nodejs/node/pull/58911) +* \[[`8b93008dc0`](https://github.com/nodejs/node/commit/8b93008dc0)] - **doc**: update email address for Richard Lau (Richard Lau) [#58910](https://github.com/nodejs/node/pull/58910) +* \[[`9ff81d21ed`](https://github.com/nodejs/node/commit/9ff81d21ed)] - **doc**: update vm doc links (Chengzhong Wu) [#58885](https://github.com/nodejs/node/pull/58885) +* \[[`ff2efd266d`](https://github.com/nodejs/node/commit/ff2efd266d)] - **doc**: fix links in test.md (Vas Sudanagunta) [#58876](https://github.com/nodejs/node/pull/58876) +* \[[`5e854e1f61`](https://github.com/nodejs/node/commit/5e854e1f61)] - **doc**: add missing comma in `child_process.md` (ronijames008) [#58862](https://github.com/nodejs/node/pull/58862) +* \[[`48f5d6d686`](https://github.com/nodejs/node/commit/48f5d6d686)] - **doc**: add guidelines for introduction of ERM support (James M Snell) [#58526](https://github.com/nodejs/node/pull/58526) +* \[[`80dec9849d`](https://github.com/nodejs/node/commit/80dec9849d)] - **(SEMVER-MINOR)** **doc**: add all watch-mode related flags to node.1 (Dario Piotrowicz) [#58719](https://github.com/nodejs/node/pull/58719) +* \[[`b36fa0fda1`](https://github.com/nodejs/node/commit/b36fa0fda1)] - **doc**: fix jsdoc definition of assert.ifError() fn in lib/assert.js (jesh) [#58573](https://github.com/nodejs/node/pull/58573) +* \[[`cebb93ea12`](https://github.com/nodejs/node/commit/cebb93ea12)] - **doc**: add array type in http request headers (Michael Henrique) [#58049](https://github.com/nodejs/node/pull/58049) +* \[[`6e6b373da1`](https://github.com/nodejs/node/commit/6e6b373da1)] - **doc**: add missing colon to headers in `globals.md` (Aviv Keller) [#58825](https://github.com/nodejs/node/pull/58825) +* \[[`1519b75191`](https://github.com/nodejs/node/commit/1519b75191)] - **doc**: fix `stream.md` section order (Antoine du Hamel) [#58811](https://github.com/nodejs/node/pull/58811) +* \[[`87f4d078b3`](https://github.com/nodejs/node/commit/87f4d078b3)] - **(SEMVER-MINOR)** **fs**: add disposable mkdtempSync (Kevin Gibbons) [#58516](https://github.com/nodejs/node/pull/58516) +* \[[`b378fc3ac0`](https://github.com/nodejs/node/commit/b378fc3ac0)] - **fs**: close dir before throwing if `options.bufferSize` is invalid (Livia Medeiros) [#58856](https://github.com/nodejs/node/pull/58856) +* \[[`23bd4d1867`](https://github.com/nodejs/node/commit/23bd4d1867)] - **fs**: special input `-1` on `chown`, `lchown` and `fchown` (Alex Yang) [#58836](https://github.com/nodejs/node/pull/58836) +* \[[`d07ce8e90c`](https://github.com/nodejs/node/commit/d07ce8e90c)] - **fs**: throw `ERR_INVALID_THIS` on illegal invocations (Livia Medeiros) [#58848](https://github.com/nodejs/node/pull/58848) +* \[[`0d969a66dc`](https://github.com/nodejs/node/commit/0d969a66dc)] - **inspector**: support undici traffic data inspection (Chengzhong Wu) [#58953](https://github.com/nodejs/node/pull/58953) +* \[[`839b25e371`](https://github.com/nodejs/node/commit/839b25e371)] - **lib**: expose `setupInstance` method on WASI class (toyobayashi) [#57214](https://github.com/nodejs/node/pull/57214) +* \[[`d8f3f649c2`](https://github.com/nodejs/node/commit/d8f3f649c2)] - **lib**: fix `getTypeScriptParsingMode` jsdoc (沈鸿飞) [#58681](https://github.com/nodejs/node/pull/58681) +* \[[`d534706211`](https://github.com/nodejs/node/commit/d534706211)] - **meta**: bump step-security/harden-runner from 2.12.0 to 2.12.2 (dependabot\[bot]) [#58923](https://github.com/nodejs/node/pull/58923) +* \[[`3ec5fe04d0`](https://github.com/nodejs/node/commit/3ec5fe04d0)] - **meta**: bump github/codeql-action from 3.28.18 to 3.29.2 (dependabot\[bot]) [#58922](https://github.com/nodejs/node/pull/58922) +* \[[`bd4a1a5b06`](https://github.com/nodejs/node/commit/bd4a1a5b06)] - **meta**: add IlyasShabi to collaborators (Ilyas Shabi) [#58916](https://github.com/nodejs/node/pull/58916) +* \[[`d29b195b51`](https://github.com/nodejs/node/commit/d29b195b51)] - **module**: link module with a module request record (Chengzhong Wu) [#58886](https://github.com/nodejs/node/pull/58886) +* \[[`a78385c4bd`](https://github.com/nodejs/node/commit/a78385c4bd)] - **module**: convert schema-only core module on `convertCJSFilenameToURL` (Alex Yang) [#58612](https://github.com/nodejs/node/pull/58612) +* \[[`e0de362319`](https://github.com/nodejs/node/commit/e0de362319)] - **module**: update tests for combined ambiguous module syntax error (Mert Can Altin) [#55874](https://github.com/nodejs/node/pull/55874) +* \[[`7f7a833e82`](https://github.com/nodejs/node/commit/7f7a833e82)] - **os**: fix GetInterfaceAddresses memory lieaky (theanarkh) [#58940](https://github.com/nodejs/node/pull/58940) +* \[[`9623c50b53`](https://github.com/nodejs/node/commit/9623c50b53)] - **(SEMVER-MINOR)** **permission**: propagate permission model flags on spawn (Rafael Gonzaga) [#58853](https://github.com/nodejs/node/pull/58853) +* \[[`efe19b50b6`](https://github.com/nodejs/node/commit/efe19b50b6)] - **repl**: fix eval errors thrown after close throwing `ERR_USE_AFTER_CLOSE` (Dario Piotrowicz) [#58791](https://github.com/nodejs/node/pull/58791) +* \[[`c891db1c05`](https://github.com/nodejs/node/commit/c891db1c05)] - **repl**: improve tab completion on computed properties (Dario Piotrowicz) [#58775](https://github.com/nodejs/node/pull/58775) +* \[[`797ec4da04`](https://github.com/nodejs/node/commit/797ec4da04)] - **(SEMVER-MINOR)** **sqlite**: add support for readBigInts option in db connection level (Miguel Marcondes Filho) [#58697](https://github.com/nodejs/node/pull/58697) +* \[[`8eecaa264d`](https://github.com/nodejs/node/commit/8eecaa264d)] - **src**: -Wunreachable-code-break in node\_config\_file.cc (Shelley Vohr) [#58901](https://github.com/nodejs/node/pull/58901) +* \[[`143379df56`](https://github.com/nodejs/node/commit/143379df56)] - **src**: -Wunreachable-code error in crypto\_context.cc (Shelley Vohr) [#58901](https://github.com/nodejs/node/pull/58901) +* \[[`056a1af197`](https://github.com/nodejs/node/commit/056a1af197)] - **src**: fix -Wunreachable-code-return in src/node\_contextify.cc (Shelley Vohr) [#58901](https://github.com/nodejs/node/pull/58901) +* \[[`ba661459f5`](https://github.com/nodejs/node/commit/ba661459f5)] - **src**: fix -Wunreachable-code in src/node\_api.cc (Shelley Vohr) [#58901](https://github.com/nodejs/node/pull/58901) +* \[[`6af0163dda`](https://github.com/nodejs/node/commit/6af0163dda)] - **src**: simplify adding fast APIs to ExternalReferenceRegistry (René) [#58896](https://github.com/nodejs/node/pull/58896) +* \[[`210e608938`](https://github.com/nodejs/node/commit/210e608938)] - **src**: cleanup uv\_fs\_req before uv\_fs\_stat on existSync (RafaelGSS) [#58915](https://github.com/nodejs/node/pull/58915) +* \[[`2445f86dc9`](https://github.com/nodejs/node/commit/2445f86dc9)] - **src**: -Wmismatched-new-delete in debug\_utils.cc (Shelley Vohr) [#58844](https://github.com/nodejs/node/pull/58844) +* \[[`12286c9f64`](https://github.com/nodejs/node/commit/12286c9f64)] - **src**: use ranges library (C++20) more systematically (Daniel Lemire) [#58028](https://github.com/nodejs/node/pull/58028) +* \[[`ed966a0215`](https://github.com/nodejs/node/commit/ed966a0215)] - **(SEMVER-MINOR)** **src,permission**: add support to permission.has(addon) (Rafael Gonzaga) [#58951](https://github.com/nodejs/node/pull/58951) +* \[[`dd54910ab1`](https://github.com/nodejs/node/commit/dd54910ab1)] - **src,permission**: enhance permission model debug (Rafael Gonzaga) [#58898](https://github.com/nodejs/node/pull/58898) +* \[[`94f9424d78`](https://github.com/nodejs/node/commit/94f9424d78)] - **test**: deflake test-runner-watch-mode-kill-signal (Dario Piotrowicz) [#58952](https://github.com/nodejs/node/pull/58952) +* \[[`b6ff6c8d20`](https://github.com/nodejs/node/commit/b6ff6c8d20)] - **test**: add known issue tests for recursive readdir calls with Buffer path (Dario Piotrowicz) [#58893](https://github.com/nodejs/node/pull/58893) +* \[[`c300f107ac`](https://github.com/nodejs/node/commit/c300f107ac)] - **test**: add known issue tests for fs.cp (James M Snell) [#58883](https://github.com/nodejs/node/pull/58883) +* \[[`d8a86a622e`](https://github.com/nodejs/node/commit/d8a86a622e)] - **test**: add tests to ensure that node.1 is kept in sync with cli.md (Dario Piotrowicz) [#58878](https://github.com/nodejs/node/pull/58878) +* \[[`57c69acb78`](https://github.com/nodejs/node/commit/57c69acb78)] - **test**: replace `.filter()[0]` with `.find()` (Livia Medeiros) [#58872](https://github.com/nodejs/node/pull/58872) +* \[[`67b3f4fbee`](https://github.com/nodejs/node/commit/67b3f4fbee)] - **test**: remove reliance on in-tree `deps/undici` (Richard Lau) [#58866](https://github.com/nodejs/node/pull/58866) +* \[[`df85b02a00`](https://github.com/nodejs/node/commit/df85b02a00)] - **test**: close dirs in `fs-opendir` test (Livia Medeiros) [#58855](https://github.com/nodejs/node/pull/58855) +* \[[`692f1aebf0`](https://github.com/nodejs/node/commit/692f1aebf0)] - **test**: update WPT for urlpattern to 84b75f0880 (Node.js GitHub Bot) [#58785](https://github.com/nodejs/node/pull/58785) +* \[[`3a119be362`](https://github.com/nodejs/node/commit/3a119be362)] - **test**: save the config file in a temporary directory (Luigi Pinca) [#58799](https://github.com/nodejs/node/pull/58799) +* \[[`924cf1ef25`](https://github.com/nodejs/node/commit/924cf1ef25)] - **test**: deflake test-config-file (Luigi Pinca) [#58799](https://github.com/nodejs/node/pull/58799) +* \[[`b5c7e645c9`](https://github.com/nodejs/node/commit/b5c7e645c9)] - **test\_runner**: correctly filter --experimental-config-file (Pietro Marchini) [#58833](https://github.com/nodejs/node/pull/58833) +* \[[`d0faf723c7`](https://github.com/nodejs/node/commit/d0faf723c7)] - **test\_runner**: fix timeout not propagated to the child process in run (jakecastelli) [#58831](https://github.com/nodejs/node/pull/58831) +* \[[`6052d8c1ac`](https://github.com/nodejs/node/commit/6052d8c1ac)] - **test\_runner**: correct "already mocked" error punctuation placement (Jacob Smith) [#58840](https://github.com/nodejs/node/pull/58840) +* \[[`e8dd1897d5`](https://github.com/nodejs/node/commit/e8dd1897d5)] - **tools**: compile maglev files into v8\_compiler if maglev is disabled (Yao Zi) [#58861](https://github.com/nodejs/node/pull/58861) +* \[[`191396260c`](https://github.com/nodejs/node/commit/191396260c)] - **tools**: bump the eslint group in /tools/eslint with 6 updates (dependabot\[bot]) [#58921](https://github.com/nodejs/node/pull/58921) +* \[[`1e423e0680`](https://github.com/nodejs/node/commit/1e423e0680)] - **tools**: update inspector\_protocol to 69d69dd (Shelley Vohr) [#58900](https://github.com/nodejs/node/pull/58900) +* \[[`0def4e23b1`](https://github.com/nodejs/node/commit/0def4e23b1)] - **tools**: update gyp-next to 0.20.2 (Node.js GitHub Bot) [#58788](https://github.com/nodejs/node/pull/58788) +* \[[`adb950cde2`](https://github.com/nodejs/node/commit/adb950cde2)] - **tools,doc**: move more MDN links to types (Antoine du Hamel) [#58930](https://github.com/nodejs/node/pull/58930) +* \[[`1ee539a3aa`](https://github.com/nodejs/node/commit/1ee539a3aa)] - **tty**: treat empty `NO_COLOR` same as absent `NO_COLOR` (Antoine du Hamel) [#58074](https://github.com/nodejs/node/pull/58074) +* \[[`2b34867ba9`](https://github.com/nodejs/node/commit/2b34867ba9)] - **v8**: fix missing callback in heap utils destroy (Ruben Bridgewater) [#58846](https://github.com/nodejs/node/pull/58846) +* \[[`a1f4333695`](https://github.com/nodejs/node/commit/a1f4333695)] - **vm**: expose import phase on SourceTextModule.moduleRequests (Chengzhong Wu) [#58829](https://github.com/nodejs/node/pull/58829) +* \[[`fe17f5d285`](https://github.com/nodejs/node/commit/fe17f5d285)] - **(SEMVER-MINOR)** **watch**: add `--watch-kill-signal` flag (Dario Piotrowicz) [#58719](https://github.com/nodejs/node/pull/58719) + + + +## 2025-06-24, Version 24.3.0 (Current), @RafaelGSS + +### Notable Changes + +* \[[`841609ac1c`](https://github.com/nodejs/node/commit/841609ac1c)] - **doc**: add islandryu to collaborators (Shima Ryuhei) [#58714](https://github.com/nodejs/node/pull/58714) +* \[[`839964ece8`](https://github.com/nodejs/node/commit/839964ece8)] - **(SEMVER-MINOR)** **fs**: allow correct handling of burst in fs-events with AsyncIterator (Philipp Dunkel) [#58490](https://github.com/nodejs/node/pull/58490) +* \[[`9b28f40834`](https://github.com/nodejs/node/commit/9b28f40834)] - **(SEMVER-MINOR)** **module**: remove experimental warning from type stripping (Marco Ippolito) [#58643](https://github.com/nodejs/node/pull/58643) +* \[[`7cdda927fa`](https://github.com/nodejs/node/commit/7cdda927fa)] - **test**: fix test-timeout-flag after revert of auto subtest wait (Pietro Marchini) [#58282](https://github.com/nodejs/node/pull/58282) +* \[[`713fbad7b6`](https://github.com/nodejs/node/commit/713fbad7b6)] - **(SEMVER-MINOR)** **test\_runner**: support object property mocking (Idan Goshen) [#58438](https://github.com/nodejs/node/pull/58438) +* \[[`ef0230abaf`](https://github.com/nodejs/node/commit/ef0230abaf)] - **(SEMVER-MINOR)** **url**: add fileURLToPathBuffer API (James M Snell) [#58700](https://github.com/nodejs/node/pull/58700) + +### Commits + +* \[[`2ba2c93dee`](https://github.com/nodejs/node/commit/2ba2c93dee)] - **build**: fix typo 'Stoage' to 'Storage' in help text (ganglike) [#58777](https://github.com/nodejs/node/pull/58777) +* \[[`11811c15da`](https://github.com/nodejs/node/commit/11811c15da)] - **deps**: update nghttp2 to 1.66.0 (Node.js GitHub Bot) [#58786](https://github.com/nodejs/node/pull/58786) +* \[[`7643ce9322`](https://github.com/nodejs/node/commit/7643ce9322)] - **deps**: update acorn to 8.15.0 (Node.js GitHub Bot) [#58711](https://github.com/nodejs/node/pull/58711) +* \[[`4b61f10eb6`](https://github.com/nodejs/node/commit/4b61f10eb6)] - **deps**: V8: cherry-pick e3df60f3f5ab (Chengzhong Wu) [#58691](https://github.com/nodejs/node/pull/58691) +* \[[`fa6854f083`](https://github.com/nodejs/node/commit/fa6854f083)] - **deps**: update amaro to 1.1.0 (Node.js GitHub Bot) [#58754](https://github.com/nodejs/node/pull/58754) +* \[[`68671f4314`](https://github.com/nodejs/node/commit/68671f4314)] - **deps**: upgrade npm to 11.4.2 (npm team) [#58696](https://github.com/nodejs/node/pull/58696) +* \[[`450f4815b3`](https://github.com/nodejs/node/commit/450f4815b3)] - **deps**: update amaro to 1.0.0 (Node.js GitHub Bot) [#58639](https://github.com/nodejs/node/pull/58639) +* \[[`3aa2762e96`](https://github.com/nodejs/node/commit/3aa2762e96)] - **deps**: update sqlite to 3.50.1 (Node.js GitHub Bot) [#58630](https://github.com/nodejs/node/pull/58630) +* \[[`80eac147e6`](https://github.com/nodejs/node/commit/80eac147e6)] - **deps**: update simdjson to 3.13.0 (Node.js GitHub Bot) [#58629](https://github.com/nodejs/node/pull/58629) +* \[[`dc1023878c`](https://github.com/nodejs/node/commit/dc1023878c)] - **deps**: update zlib to 1.3.1-470d3a2 (Node.js GitHub Bot) [#58628](https://github.com/nodejs/node/pull/58628) +* \[[`97fbfd82af`](https://github.com/nodejs/node/commit/97fbfd82af)] - **doc**: fix stability 1.x links excluding the decimal digit (Dario Piotrowicz) [#58783](https://github.com/nodejs/node/pull/58783) +* \[[`e2e88d4971`](https://github.com/nodejs/node/commit/e2e88d4971)] - **doc**: fix wrong RFC number in http2 (Deokjin Kim) [#58753](https://github.com/nodejs/node/pull/58753) +* \[[`7bb1246c8f`](https://github.com/nodejs/node/commit/7bb1246c8f)] - **doc**: add history entry for TS support in hooks (Antoine du Hamel) [#58732](https://github.com/nodejs/node/pull/58732) +* \[[`f125310d3a`](https://github.com/nodejs/node/commit/f125310d3a)] - **doc**: run license-builder (github-actions\[bot]) [#58722](https://github.com/nodejs/node/pull/58722) +* \[[`841609ac1c`](https://github.com/nodejs/node/commit/841609ac1c)] - **doc**: add islandryu to collaborators (Shima Ryuhei) [#58714](https://github.com/nodejs/node/pull/58714) +* \[[`1cc77c7ee6`](https://github.com/nodejs/node/commit/1cc77c7ee6)] - **doc**: punctuation fix for Node-API versioning clarification (Jiacai Liu) [#58599](https://github.com/nodejs/node/pull/58599) +* \[[`d59680348e`](https://github.com/nodejs/node/commit/d59680348e)] - **doc**: add path rules and validation for export targets in package.json (0hm☘️) [#58604](https://github.com/nodejs/node/pull/58604) +* \[[`b6760b3379`](https://github.com/nodejs/node/commit/b6760b3379)] - **esm**: syncify default path of `ModuleLoader.load` (Jacob Smith) [#57419](https://github.com/nodejs/node/pull/57419) +* \[[`96c78d726c`](https://github.com/nodejs/node/commit/96c78d726c)] - **fs**: make `Dir` disposers idempotent (René) [#58692](https://github.com/nodejs/node/pull/58692) +* \[[`62b5879d88`](https://github.com/nodejs/node/commit/62b5879d88)] - **fs**: avoid computing time coefficient constants in runtime (Livia Medeiros) [#58728](https://github.com/nodejs/node/pull/58728) +* \[[`af18c0e81a`](https://github.com/nodejs/node/commit/af18c0e81a)] - **fs**: remove IIFE in glob (LiviaMedeiros) [#58418](https://github.com/nodejs/node/pull/58418) +* \[[`fb4378b72e`](https://github.com/nodejs/node/commit/fb4378b72e)] - **fs**: add UV\_ENOSPC to list of things to pass to err directly (Jacky Zhao) [#56918](https://github.com/nodejs/node/pull/56918) +* \[[`839964ece8`](https://github.com/nodejs/node/commit/839964ece8)] - **(SEMVER-MINOR)** **fs**: allow correct handling of burst in fs-events with AsyncIterator (Philipp Dunkel) [#58490](https://github.com/nodejs/node/pull/58490) +* \[[`c9dc0a8903`](https://github.com/nodejs/node/commit/c9dc0a8903)] - **http**: fix keep-alive not timing out after post-request empty line (Shima Ryuhei) [#58178](https://github.com/nodejs/node/pull/58178) +* \[[`b11da1115e`](https://github.com/nodejs/node/commit/b11da1115e)] - **http2**: fix DEP0194 message (KaKa) [#58669](https://github.com/nodejs/node/pull/58669) +* \[[`b1f60d2f18`](https://github.com/nodejs/node/commit/b1f60d2f18)] - **http2**: add diagnostics channel 'http2.server.stream.close' (Darshan Sen) [#58602](https://github.com/nodejs/node/pull/58602) +* \[[`be93091694`](https://github.com/nodejs/node/commit/be93091694)] - **inspector**: add protocol methods retrieving sent/received data (Chengzhong Wu) [#58645](https://github.com/nodejs/node/pull/58645) +* \[[`20089e2a2e`](https://github.com/nodejs/node/commit/20089e2a2e)] - **lib**: rename `validateInternalField` into `validateThisInternalField` (LiviaMedeiros) [#58765](https://github.com/nodejs/node/pull/58765) +* \[[`74983832f9`](https://github.com/nodejs/node/commit/74983832f9)] - **lib**: make `validateInternalField()` throw `ERR_INVALID_THIS` (LiviaMedeiros) [#58765](https://github.com/nodejs/node/pull/58765) +* \[[`081c70878f`](https://github.com/nodejs/node/commit/081c70878f)] - **lib**: make domexception a native error (Chengzhong Wu) [#58691](https://github.com/nodejs/node/pull/58691) +* \[[`6390f70da2`](https://github.com/nodejs/node/commit/6390f70da2)] - **lib,src**: support DOMException ser-des (Chengzhong Wu) [#58649](https://github.com/nodejs/node/pull/58649) +* \[[`4c2c100f63`](https://github.com/nodejs/node/commit/4c2c100f63)] - **meta**: add @nodejs/inspector as codeowner (Chengzhong Wu) [#58790](https://github.com/nodejs/node/pull/58790) +* \[[`ff8a3691c4`](https://github.com/nodejs/node/commit/ff8a3691c4)] - **module**: fix typescript import.meta.main (Marco Ippolito) [#58661](https://github.com/nodejs/node/pull/58661) +* \[[`45f7d160ed`](https://github.com/nodejs/node/commit/45f7d160ed)] - **module**: refactor commonjs typescript loader (Marco Ippolito) [#58657](https://github.com/nodejs/node/pull/58657) +* \[[`9b28f40834`](https://github.com/nodejs/node/commit/9b28f40834)] - **(SEMVER-MINOR)** **module**: remove experimental warning from type stripping (Marco Ippolito) [#58643](https://github.com/nodejs/node/pull/58643) +* \[[`a3c7a63c73`](https://github.com/nodejs/node/commit/a3c7a63c73)] - **module**: allow cycles in require() in the CJS handling in ESM loader (Joyee Cheung) [#58598](https://github.com/nodejs/node/pull/58598) +* \[[`d0e42ffa58`](https://github.com/nodejs/node/commit/d0e42ffa58)] - **repl**: avoid deprecated `require.extensions` in tab completion (baki gul) [#58653](https://github.com/nodejs/node/pull/58653) +* \[[`82b18ba890`](https://github.com/nodejs/node/commit/82b18ba890)] - **repl**: fix tab completion not working with computer string properties (Dario Piotrowicz) [#58709](https://github.com/nodejs/node/pull/58709) +* \[[`8c2089683e`](https://github.com/nodejs/node/commit/8c2089683e)] - **src**: add FromV8Value\() for integral and enum types (Aditi) [#57931](https://github.com/nodejs/node/pull/57931) +* \[[`a0b1378a20`](https://github.com/nodejs/node/commit/a0b1378a20)] - **src**: pass resource on permission checks for spawn (Rafael Gonzaga) [#58758](https://github.com/nodejs/node/pull/58758) +* \[[`dfb0144490`](https://github.com/nodejs/node/commit/dfb0144490)] - **src**: enhance error messages for unknown options (Pietro Marchini) [#58677](https://github.com/nodejs/node/pull/58677) +* \[[`e9c6fa514c`](https://github.com/nodejs/node/commit/e9c6fa514c)] - **src**: replace std::array with static arrays in contextify (Mert Can Altin) [#58580](https://github.com/nodejs/node/pull/58580) +* \[[`4347ce3dba`](https://github.com/nodejs/node/commit/4347ce3dba)] - **src**: add new CopyUtimes function to reduce code duplication (Dario Piotrowicz) [#58625](https://github.com/nodejs/node/pull/58625) +* \[[`893999e0ee`](https://github.com/nodejs/node/commit/893999e0ee)] - **src**: replace V8 Fast API todo comment with note comment (Dario Piotrowicz) [#58614](https://github.com/nodejs/node/pull/58614) +* \[[`7cdda927fa`](https://github.com/nodejs/node/commit/7cdda927fa)] - **test**: fix test-timeout-flag after revert of auto subtest wait (Pietro Marchini) [#58282](https://github.com/nodejs/node/pull/58282) +* \[[`d9c2b7054b`](https://github.com/nodejs/node/commit/d9c2b7054b)] - **test**: refactor repl save-load tests (Dario Piotrowicz) [#58715](https://github.com/nodejs/node/pull/58715) +* \[[`3faa4e8b56`](https://github.com/nodejs/node/commit/3faa4e8b56)] - **test**: deflake test-buffer-large-size-buffer-alloc-unsafe (Luigi Pinca) [#58771](https://github.com/nodejs/node/pull/58771) +* \[[`8eec789888`](https://github.com/nodejs/node/commit/8eec789888)] - **test**: correct SIMD support comment (Richard Lau) [#58767](https://github.com/nodejs/node/pull/58767) +* \[[`6e0ee39b6d`](https://github.com/nodejs/node/commit/6e0ee39b6d)] - **test**: skip the test if the buffer allocation fails (Luigi Pinca) [#58738](https://github.com/nodejs/node/pull/58738) +* \[[`d94b184700`](https://github.com/nodejs/node/commit/d94b184700)] - **test**: deflake test-buffer-large-size-buffer-alloc (Luigi Pinca) [#58734](https://github.com/nodejs/node/pull/58734) +* \[[`704b1fa075`](https://github.com/nodejs/node/commit/704b1fa075)] - **test**: add tests for REPL custom evals (Dario Piotrowicz) [#57850](https://github.com/nodejs/node/pull/57850) +* \[[`c39d570871`](https://github.com/nodejs/node/commit/c39d570871)] - **test**: reduce the use of private symbols in test-events-once.js (Yoshiya Hinosawa) [#58685](https://github.com/nodejs/node/pull/58685) +* \[[`b7e488c77f`](https://github.com/nodejs/node/commit/b7e488c77f)] - **test**: refactor repl tab complete tests (Dario Piotrowicz) [#58636](https://github.com/nodejs/node/pull/58636) +* \[[`ec808b3e06`](https://github.com/nodejs/node/commit/ec808b3e06)] - **test**: use `common.skipIfInspectorDisabled()` to skip tests (Dario Piotrowicz) [#58675](https://github.com/nodejs/node/pull/58675) +* \[[`94e53d4f6c`](https://github.com/nodejs/node/commit/94e53d4f6c)] - **test**: update WPT for urlpattern to 3ffda23e5a (Node.js GitHub Bot) [#58537](https://github.com/nodejs/node/pull/58537) +* \[[`fa089d610f`](https://github.com/nodejs/node/commit/fa089d610f)] - **test**: update WPT for dom/abort to dc928169ee (Node.js GitHub Bot) [#58644](https://github.com/nodejs/node/pull/58644) +* \[[`aa657f0fc4`](https://github.com/nodejs/node/commit/aa657f0fc4)] - **test**: split indirect eval import tests (Chengzhong Wu) [#58637](https://github.com/nodejs/node/pull/58637) +* \[[`76e3c8aaf2`](https://github.com/nodejs/node/commit/76e3c8aaf2)] - **test**: update WPT for es-exceptions to 2f96fa1996 (Node.js GitHub Bot) [#58640](https://github.com/nodejs/node/pull/58640) +* \[[`7e34aa4eaa`](https://github.com/nodejs/node/commit/7e34aa4eaa)] - **test**: skip tests failing when run under root (Livia Medeiros) [#58610](https://github.com/nodejs/node/pull/58610) +* \[[`85f062c22e`](https://github.com/nodejs/node/commit/85f062c22e)] - **test**: deflake async-hooks/test-improper-order on AIX (Baki Gul) [#58567](https://github.com/nodejs/node/pull/58567) +* \[[`181014a8fe`](https://github.com/nodejs/node/commit/181014a8fe)] - **test**: cleanup status files (Filip Skokan) [#58633](https://github.com/nodejs/node/pull/58633) +* \[[`a4d756068d`](https://github.com/nodejs/node/commit/a4d756068d)] - **test**: close FileHandle objects in tests explicitly (James M Snell) [#58615](https://github.com/nodejs/node/pull/58615) +* \[[`a1529d5d99`](https://github.com/nodejs/node/commit/a1529d5d99)] - **test\_runner**: automatically wait for subtests to finish (Colin Ihrig) [#58800](https://github.com/nodejs/node/pull/58800) +* \[[`dce1995c55`](https://github.com/nodejs/node/commit/dce1995c55)] - _**Revert**_ "**test\_runner**: remove promises returned by t.test()" (Romain Menke) [#58282](https://github.com/nodejs/node/pull/58282) +* \[[`8b0c5edbb6`](https://github.com/nodejs/node/commit/8b0c5edbb6)] - _**Revert**_ "**test\_runner**: remove promises returned by test()" (Romain Menke) [#58282](https://github.com/nodejs/node/pull/58282) +* \[[`6ef7329c8c`](https://github.com/nodejs/node/commit/6ef7329c8c)] - _**Revert**_ "**test\_runner**: automatically wait for subtests to finish" (Romain Menke) [#58282](https://github.com/nodejs/node/pull/58282) +* \[[`c9e7b5e43a`](https://github.com/nodejs/node/commit/c9e7b5e43a)] - **test\_runner**: prefer `Atomics` primordials (Renegade334) [#58716](https://github.com/nodejs/node/pull/58716) +* \[[`713fbad7b6`](https://github.com/nodejs/node/commit/713fbad7b6)] - **(SEMVER-MINOR)** **test\_runner**: support object property mocking (Idan Goshen) [#58438](https://github.com/nodejs/node/pull/58438) +* \[[`9df1cfe402`](https://github.com/nodejs/node/commit/9df1cfe402)] - **tools**: make nodedownload module compatible with Python 3.14 (Lumír 'Frenzy' Balhar) [#58752](https://github.com/nodejs/node/pull/58752) +* \[[`b5ff3f42b8`](https://github.com/nodejs/node/commit/b5ff3f42b8)] - **tools**: include toolchain.gypi in abseil.gyp (Chengzhong Wu) [#58678](https://github.com/nodejs/node/pull/58678) +* \[[`dc2f23e986`](https://github.com/nodejs/node/commit/dc2f23e986)] - **tools**: bump `brace-expansion` in `/tools/clang-format` (dependabot\[bot]) [#58699](https://github.com/nodejs/node/pull/58699) +* \[[`e6a1787140`](https://github.com/nodejs/node/commit/e6a1787140)] - **tools**: bump brace-expansion from 1.1.11 to 1.1.12 in /tools/eslint (dependabot\[bot]) [#58698](https://github.com/nodejs/node/pull/58698) +* \[[`b22e970774`](https://github.com/nodejs/node/commit/b22e970774)] - **tools**: switch to `@stylistic/eslint-plugin` (Michaël Zasso) [#58623](https://github.com/nodejs/node/pull/58623) +* \[[`268c8c1799`](https://github.com/nodejs/node/commit/268c8c1799)] - **tools**: remove config.status under `make distclean` (René) [#58603](https://github.com/nodejs/node/pull/58603) +* \[[`c1f9791844`](https://github.com/nodejs/node/commit/c1f9791844)] - **tools**: edit commit-queue workflow file (Antoine du Hamel) [#58667](https://github.com/nodejs/node/pull/58667) +* \[[`afbaf9277b`](https://github.com/nodejs/node/commit/afbaf9277b)] - **tools**: improve release proposal linter (Antoine du Hamel) [#58647](https://github.com/nodejs/node/pull/58647) +* \[[`17df800b90`](https://github.com/nodejs/node/commit/17df800b90)] - **typings**: add Atomics primordials (Renegade334) [#58577](https://github.com/nodejs/node/pull/58577) +* \[[`ffff8ce3a4`](https://github.com/nodejs/node/commit/ffff8ce3a4)] - **typings**: add ZSTD\_COMPRESS, ZSTD\_DECOMPRESS to internalBinding (Meghan Denny) [#58655](https://github.com/nodejs/node/pull/58655) +* \[[`ef0230abaf`](https://github.com/nodejs/node/commit/ef0230abaf)] - **(SEMVER-MINOR)** **url**: add fileURLToPathBuffer API (James M Snell) [#58700](https://github.com/nodejs/node/pull/58700) +* \[[`6f7b89516f`](https://github.com/nodejs/node/commit/6f7b89516f)] - **util**: inspect: do not crash on an Error stack pointing to itself (Sam Verschueren) [#58196](https://github.com/nodejs/node/pull/58196) + + + +## 2025-06-09, Version 24.2.0 (Current), @aduh95 + +### Notable Changes + +#### Remove support for HTTP/2 priority signaling + +The support for priority signaling has been removed in nghttp2, following its +deprecation in the [RFC 9113](https://datatracker.ietf.org/doc/html/rfc9113#section-5.3.1). +As a consequence of this, priority signaling is deprecated on all release lines of Node.js, +and removed from Node.js 24 so we can include latest updates from nghttp2. + +Contributed by Matteo Collina and Antoine du Hamel in +[#58293](https://github.com/nodejs/node/pull/58293). + +#### `import.meta.main` is now available + +Boolean value available in ECMAScript modules, which can be used to detect +whether the current module was the entry point of the current process. + +```mjs +export function foo() { + return 'Hello, world'; +} + +function main() { + const message = foo(); + console.log(message); +} + +if (import.meta.main) main(); +// `foo` can be imported from another module without possible side-effects from `main` +``` + +Contributed by Joe and Antoine du Hamel in +[#57804](https://github.com/nodejs/node/pull/57804). + +#### Other Notable Changes + +* \[[`e13930bbe0`](https://github.com/nodejs/node/commit/e13930bbe0)] - **doc**: add Filip Skokan to TSC (Rafael Gonzaga) [#58499](https://github.com/nodejs/node/pull/58499) +* \[[`984894b38c`](https://github.com/nodejs/node/commit/984894b38c)] - **doc**: deprecate `util.isNativeError` in favor of `Error.isError` (Miguel Marcondes Filho) [#58262](https://github.com/nodejs/node/pull/58262) +* \[[`d261274b0f`](https://github.com/nodejs/node/commit/d261274b0f)] - **doc**: deprecate passing an empty string to `options.shell` (Antoine du Hamel) [#58564](https://github.com/nodejs/node/pull/58564) +* \[[`510872a522`](https://github.com/nodejs/node/commit/510872a522)] - **(SEMVER-MINOR)** **doc**: graduate `Symbol.dispose`/`asyncDispose` from experimental (James M Snell) [#58467](https://github.com/nodejs/node/pull/58467) +* \[[`6f4c9dd423`](https://github.com/nodejs/node/commit/6f4c9dd423)] - **(SEMVER-MINOR)** **fs**: add `autoClose` option to `FileHandle` readableWebStream (James M Snell) [#58548](https://github.com/nodejs/node/pull/58548) +* \[[`32efb63242`](https://github.com/nodejs/node/commit/32efb63242)] - **http**: deprecate instantiating classes without new (Yagiz Nizipli) [#58518](https://github.com/nodejs/node/pull/58518) +* \[[`0234a8ef53`](https://github.com/nodejs/node/commit/0234a8ef53)] - **(SEMVER-MINOR)** **http2**: add diagnostics channel `http2.server.stream.finish` (Darshan Sen) [#58560](https://github.com/nodejs/node/pull/58560) +* \[[`0f1e94f731`](https://github.com/nodejs/node/commit/0f1e94f731)] - **(SEMVER-MINOR)** **lib**: graduate error codes that have been around for years (James M Snell) [#58541](https://github.com/nodejs/node/pull/58541) +* \[[`13abca3c26`](https://github.com/nodejs/node/commit/13abca3c26)] - **(SEMVER-MINOR)** **perf\_hooks**: make event loop delay histogram disposable (James M Snell) [#58384](https://github.com/nodejs/node/pull/58384) +* \[[`8ea1fc5f3b`](https://github.com/nodejs/node/commit/8ea1fc5f3b)] - **(SEMVER-MINOR)** **src**: support namespace options in configuration file (Pietro Marchini) [#58073](https://github.com/nodejs/node/pull/58073) +* \[[`d6ea36ad6c`](https://github.com/nodejs/node/commit/d6ea36ad6c)] - **src,permission**: implicit allow-fs-read to app entrypoint (Rafael Gonzaga) [#58579](https://github.com/nodejs/node/pull/58579) +* \[[`5936cef60a`](https://github.com/nodejs/node/commit/5936cef60a)] - **(SEMVER-MINOR)** **test**: add disposable histogram test (James M Snell) [#58384](https://github.com/nodejs/node/pull/58384) +* \[[`7a91f4aaa1`](https://github.com/nodejs/node/commit/7a91f4aaa1)] - **(SEMVER-MINOR)** **test**: add test for async disposable worker thread (James M Snell) [#58385](https://github.com/nodejs/node/pull/58385) +* \[[`532c173cf2`](https://github.com/nodejs/node/commit/532c173cf2)] - **(SEMVER-MINOR)** **util**: add `none` style to styleText (James M Snell) [#58437](https://github.com/nodejs/node/pull/58437) +* \[[`aeb9ab4c4c`](https://github.com/nodejs/node/commit/aeb9ab4c4c)] - **(SEMVER-MINOR)** **worker**: make Worker async disposable (James M Snell) [#58385](https://github.com/nodejs/node/pull/58385) + +### Commits + +* \[[`6c92329b1b`](https://github.com/nodejs/node/commit/6c92329b1b)] - _**Revert**_ "**benchmark**: fix broken fs.cpSync benchmark" (Yuesong Jake Li) [#58476](https://github.com/nodejs/node/pull/58476) +* \[[`8bc045264e`](https://github.com/nodejs/node/commit/8bc045264e)] - **benchmark**: fix broken fs.cpSync benchmark (Dario Piotrowicz) [#58472](https://github.com/nodejs/node/pull/58472) +* \[[`46aa079cce`](https://github.com/nodejs/node/commit/46aa079cce)] - **benchmark**: add callback-based `fs.glob` to glob benchmark (Livia Medeiros) [#58417](https://github.com/nodejs/node/pull/58417) +* \[[`a57b05e105`](https://github.com/nodejs/node/commit/a57b05e105)] - **benchmark**: add more options to cp-sync (Sonny) [#58278](https://github.com/nodejs/node/pull/58278) +* \[[`8b5ada4b31`](https://github.com/nodejs/node/commit/8b5ada4b31)] - **buffer**: use Utf8LengthV2() instead of Utf8Length() (Tobias Nießen) [#58156](https://github.com/nodejs/node/pull/58156) +* \[[`22e97362f3`](https://github.com/nodejs/node/commit/22e97362f3)] - **build**: search for libnode.so in multiple places (Jan Staněk) [#58213](https://github.com/nodejs/node/pull/58213) +* \[[`0b4056c573`](https://github.com/nodejs/node/commit/0b4056c573)] - **build**: add support for OpenHarmony operating system (hqzing) [#58350](https://github.com/nodejs/node/pull/58350) +* \[[`db7f413dd3`](https://github.com/nodejs/node/commit/db7f413dd3)] - **build**: fix pointer compression builds (Joyee Cheung) [#58171](https://github.com/nodejs/node/pull/58171) +* \[[`7ff37183e5`](https://github.com/nodejs/node/commit/7ff37183e5)] - **build**: fix defaults for shared llhttp (Antoine du Hamel) [#58269](https://github.com/nodejs/node/pull/58269) +* \[[`b8c33190fe`](https://github.com/nodejs/node/commit/b8c33190fe)] - **build,win**: fix dll build (Stefan Stojanovic) [#58357](https://github.com/nodejs/node/pull/58357) +* \[[`ef9ecbe8a6`](https://github.com/nodejs/node/commit/ef9ecbe8a6)] - **child\_process**: give names to `ChildProcess` functions (Livia Medeiros) [#58370](https://github.com/nodejs/node/pull/58370) +* \[[`cec9d9d016`](https://github.com/nodejs/node/commit/cec9d9d016)] - **crypto**: forward auth tag to OpenSSL immediately (Tobias Nießen) [#58547](https://github.com/nodejs/node/pull/58547) +* \[[`9fccb0609f`](https://github.com/nodejs/node/commit/9fccb0609f)] - **crypto**: expose crypto.constants.OPENSSL\_IS\_BORINGSSL (Shelley Vohr) [#58387](https://github.com/nodejs/node/pull/58387) +* \[[`e7c69b9345`](https://github.com/nodejs/node/commit/e7c69b9345)] - **deps**: update nghttp2 to 1.65.0 (Node.js GitHub Bot) [#57269](https://github.com/nodejs/node/pull/57269) +* \[[`d0b89598a3`](https://github.com/nodejs/node/commit/d0b89598a3)] - **deps**: use proper C standard when building libuv (Yaksh Bariya) [#58587](https://github.com/nodejs/node/pull/58587) +* \[[`8a1fe7bc6a`](https://github.com/nodejs/node/commit/8a1fe7bc6a)] - **deps**: update simdjson to 3.12.3 (Node.js GitHub Bot) [#57682](https://github.com/nodejs/node/pull/57682) +* \[[`36b639b1eb`](https://github.com/nodejs/node/commit/36b639b1eb)] - **deps**: update googletest to e9092b1 (Node.js GitHub Bot) [#58565](https://github.com/nodejs/node/pull/58565) +* \[[`f8a2a1ef52`](https://github.com/nodejs/node/commit/f8a2a1ef52)] - **deps**: update corepack to 0.33.0 (Node.js GitHub Bot) [#58566](https://github.com/nodejs/node/pull/58566) +* \[[`efb28f7895`](https://github.com/nodejs/node/commit/efb28f7895)] - **deps**: V8: cherry-pick 249de887a8d3 (Michaël Zasso) [#58561](https://github.com/nodejs/node/pull/58561) +* \[[`88e621ea97`](https://github.com/nodejs/node/commit/88e621ea97)] - **deps**: update sqlite to 3.50.0 (Node.js GitHub Bot) [#58272](https://github.com/nodejs/node/pull/58272) +* \[[`8d2ba386f1`](https://github.com/nodejs/node/commit/8d2ba386f1)] - **deps**: update OpenSSL gen container to Ubuntu 22.04 (Michaël Zasso) [#58432](https://github.com/nodejs/node/pull/58432) +* \[[`7e62a77a7f`](https://github.com/nodejs/node/commit/7e62a77a7f)] - **deps**: update undici to 7.10.0 (Node.js GitHub Bot) [#58445](https://github.com/nodejs/node/pull/58445) +* \[[`87eebd7bad`](https://github.com/nodejs/node/commit/87eebd7bad)] - **deps**: keep required OpenSSL doc files (Michaël Zasso) [#58431](https://github.com/nodejs/node/pull/58431) +* \[[`10910660f6`](https://github.com/nodejs/node/commit/10910660f6)] - **deps**: update undici to 7.9.0 (Node.js GitHub Bot) [#58268](https://github.com/nodejs/node/pull/58268) +* \[[`5e27078ca2`](https://github.com/nodejs/node/commit/5e27078ca2)] - **deps**: update ada to 3.2.4 (Node.js GitHub Bot) [#58152](https://github.com/nodejs/node/pull/58152) +* \[[`3b1e4bdbbb`](https://github.com/nodejs/node/commit/3b1e4bdbbb)] - **deps**: update libuv to 1.51.0 (Node.js GitHub Bot) [#58124](https://github.com/nodejs/node/pull/58124) +* \[[`6bddf587ae`](https://github.com/nodejs/node/commit/6bddf587ae)] - **dns**: fix dns query cache implementation (Ethan Arrowood) [#58404](https://github.com/nodejs/node/pull/58404) +* \[[`984894b38c`](https://github.com/nodejs/node/commit/984894b38c)] - **doc**: deprecate utilisNativeError in favor of ErrorisError (Miguel Marcondes Filho) [#58262](https://github.com/nodejs/node/pull/58262) +* \[[`377ef3ce3a`](https://github.com/nodejs/node/commit/377ef3ce3a)] - **doc**: add support link for panva (Filip Skokan) [#58591](https://github.com/nodejs/node/pull/58591) +* \[[`33a69ff9e4`](https://github.com/nodejs/node/commit/33a69ff9e4)] - **doc**: update metadata for \_transformState deprecation (James M Snell) [#58530](https://github.com/nodejs/node/pull/58530) +* \[[`d261274b0f`](https://github.com/nodejs/node/commit/d261274b0f)] - **doc**: deprecate passing an empty string to `options.shell` (Antoine du Hamel) [#58564](https://github.com/nodejs/node/pull/58564) +* \[[`447ca11010`](https://github.com/nodejs/node/commit/447ca11010)] - **doc**: correct formatting of example definitions for `--test-shard` (Jacob Smith) [#58571](https://github.com/nodejs/node/pull/58571) +* \[[`2f555e0e19`](https://github.com/nodejs/node/commit/2f555e0e19)] - **doc**: clarify DEP0194 scope (Antoine du Hamel) [#58504](https://github.com/nodejs/node/pull/58504) +* \[[`af0446edcb`](https://github.com/nodejs/node/commit/af0446edcb)] - **doc**: deprecate HTTP/2 priority signaling (Matteo Collina) [#58313](https://github.com/nodejs/node/pull/58313) +* \[[`80cc17f1ec`](https://github.com/nodejs/node/commit/80cc17f1ec)] - **doc**: explain child\_process code and signal null values everywhere (Darshan Sen) [#58479](https://github.com/nodejs/node/pull/58479) +* \[[`e13930bbe0`](https://github.com/nodejs/node/commit/e13930bbe0)] - **doc**: add Filip Skokan to TSC (Rafael Gonzaga) [#58499](https://github.com/nodejs/node/pull/58499) +* \[[`5f3f045ecc`](https://github.com/nodejs/node/commit/5f3f045ecc)] - **doc**: update `git node release` example (Antoine du Hamel) [#58475](https://github.com/nodejs/node/pull/58475) +* \[[`4bbd026cde`](https://github.com/nodejs/node/commit/4bbd026cde)] - **doc**: add missing options.info for ZstdOptions (Jimmy Leung) [#58360](https://github.com/nodejs/node/pull/58360) +* \[[`a6d0d2a0d7`](https://github.com/nodejs/node/commit/a6d0d2a0d7)] - **doc**: add missing options.info for BrotliOptions (Jimmy Leung) [#58359](https://github.com/nodejs/node/pull/58359) +* \[[`510872a522`](https://github.com/nodejs/node/commit/510872a522)] - **(SEMVER-MINOR)** **doc**: graduate Symbol.dispose/asyncDispose from experimental (James M Snell) [#58467](https://github.com/nodejs/node/pull/58467) +* \[[`08685256cd`](https://github.com/nodejs/node/commit/08685256cd)] - **doc**: clarify x509.checkIssued only checks metadata (Filip Skokan) [#58457](https://github.com/nodejs/node/pull/58457) +* \[[`095794fc24`](https://github.com/nodejs/node/commit/095794fc24)] - **doc**: add links to parent class for `node:zlib` classes (Antoine du Hamel) [#58433](https://github.com/nodejs/node/pull/58433) +* \[[`7acac70bce`](https://github.com/nodejs/node/commit/7acac70bce)] - **doc**: remove remaining uses of `@@wellknown` syntax (René) [#58413](https://github.com/nodejs/node/pull/58413) +* \[[`62056d40c7`](https://github.com/nodejs/node/commit/62056d40c7)] - **doc**: clarify behavior of --watch-path and --watch flags (Juan Ignacio Benito) [#58136](https://github.com/nodejs/node/pull/58136) +* \[[`e6e6ae887d`](https://github.com/nodejs/node/commit/e6e6ae887d)] - **doc**: fix the order of `process.md` sections (Allon Murienik) [#58403](https://github.com/nodejs/node/pull/58403) +* \[[`d2f6c82c0f`](https://github.com/nodejs/node/commit/d2f6c82c0f)] - **doc,lib**: update source map links to ECMA426 (Chengzhong Wu) [#58597](https://github.com/nodejs/node/pull/58597) +* \[[`a994d3d51a`](https://github.com/nodejs/node/commit/a994d3d51a)] - **doc,src,test**: fix typos (Noritaka Kobayashi) [#58477](https://github.com/nodejs/node/pull/58477) +* \[[`252acc1e89`](https://github.com/nodejs/node/commit/252acc1e89)] - **errors**: show url of unsupported attributes in the error message (Aditi) [#58303](https://github.com/nodejs/node/pull/58303) +* \[[`767e88cbc3`](https://github.com/nodejs/node/commit/767e88cbc3)] - **esm**: unwrap WebAssembly.Global on Wasm Namespaces (Guy Bedford) [#57525](https://github.com/nodejs/node/pull/57525) +* \[[`adef9af3ae`](https://github.com/nodejs/node/commit/adef9af3ae)] - **(SEMVER-MINOR)** **esm**: implement import.meta.main (Joe) [#57804](https://github.com/nodejs/node/pull/57804) +* \[[`308f4cac4b`](https://github.com/nodejs/node/commit/308f4cac4b)] - **esm**: add support for dynamic source phase hook (Guy Bedford) [#58147](https://github.com/nodejs/node/pull/58147) +* \[[`fcef56cb05`](https://github.com/nodejs/node/commit/fcef56cb05)] - **fs**: improve cpSync no-filter copyDir performance (Dario Piotrowicz) [#58461](https://github.com/nodejs/node/pull/58461) +* \[[`996fdb05ab`](https://github.com/nodejs/node/commit/996fdb05ab)] - **fs**: fix cp handle existing symlinks (Yuesong Jake Li) [#58476](https://github.com/nodejs/node/pull/58476) +* \[[`d2931e50e3`](https://github.com/nodejs/node/commit/d2931e50e3)] - **fs**: fix cpSync handle existing symlinks (Yuesong Jake Li) [#58476](https://github.com/nodejs/node/pull/58476) +* \[[`6f4c9dd423`](https://github.com/nodejs/node/commit/6f4c9dd423)] - **(SEMVER-MINOR)** **fs**: add autoClose option to FileHandle readableWebStream (James M Snell) [#58548](https://github.com/nodejs/node/pull/58548) +* \[[`8870bb8677`](https://github.com/nodejs/node/commit/8870bb8677)] - **fs**: improve `cpSync` dest overriding performance (Dario Piotrowicz) [#58160](https://github.com/nodejs/node/pull/58160) +* \[[`f2e2301559`](https://github.com/nodejs/node/commit/f2e2301559)] - **fs**: unexpose internal constants (Chengzhong Wu) [#58327](https://github.com/nodejs/node/pull/58327) +* \[[`32efb63242`](https://github.com/nodejs/node/commit/32efb63242)] - **http**: deprecate instantiating classes without new (Yagiz Nizipli) [#58518](https://github.com/nodejs/node/pull/58518) +* \[[`0b987e5741`](https://github.com/nodejs/node/commit/0b987e5741)] - **(SEMVER-MAJOR)** **http2**: remove support for priority signaling (Matteo Collina) [#58293](https://github.com/nodejs/node/pull/58293) +* \[[`44ca874b2c`](https://github.com/nodejs/node/commit/44ca874b2c)] - **http2**: add lenient flag for RFC-9113 (Carlos Fuentes) [#58116](https://github.com/nodejs/node/pull/58116) +* \[[`0234a8ef53`](https://github.com/nodejs/node/commit/0234a8ef53)] - **(SEMVER-MINOR)** **http2**: add diagnostics channel 'http2.server.stream.finish' (Darshan Sen) [#58560](https://github.com/nodejs/node/pull/58560) +* \[[`2b868e8aa7`](https://github.com/nodejs/node/commit/2b868e8aa7)] - **http2**: add diagnostics channel 'http2.server.stream.error' (Darshan Sen) [#58512](https://github.com/nodejs/node/pull/58512) +* \[[`b4df8d38cd`](https://github.com/nodejs/node/commit/b4df8d38cd)] - **http2**: add diagnostics channel 'http2.server.stream.start' (Darshan Sen) [#58449](https://github.com/nodejs/node/pull/58449) +* \[[`d86ff608bb`](https://github.com/nodejs/node/commit/d86ff608bb)] - **http2**: remove no longer userful options.selectPadding (Jimmy Leung) [#58373](https://github.com/nodejs/node/pull/58373) +* \[[`13dbbdc8a8`](https://github.com/nodejs/node/commit/13dbbdc8a8)] - **http2**: add diagnostics channel 'http2.server.stream.created' (Darshan Sen) [#58390](https://github.com/nodejs/node/pull/58390) +* \[[`08855464ec`](https://github.com/nodejs/node/commit/08855464ec)] - **http2**: add diagnostics channel 'http2.client.stream.close' (Darshan Sen) [#58329](https://github.com/nodejs/node/pull/58329) +* \[[`566fc567b8`](https://github.com/nodejs/node/commit/566fc567b8)] - **http2**: add diagnostics channel 'http2.client.stream.finish' (Darshan Sen) [#58317](https://github.com/nodejs/node/pull/58317) +* \[[`f30b9117d4`](https://github.com/nodejs/node/commit/f30b9117d4)] - **http2**: add diagnostics channel 'http2.client.stream.error' (Darshan Sen) [#58306](https://github.com/nodejs/node/pull/58306) +* \[[`79b852a692`](https://github.com/nodejs/node/commit/79b852a692)] - **inspector**: add mimeType and charset support to Network.Response (Shima Ryuhei) [#58192](https://github.com/nodejs/node/pull/58192) +* \[[`402ac8b1d8`](https://github.com/nodejs/node/commit/402ac8b1d8)] - **inspector**: add protocol method Network.dataReceived (Chengzhong Wu) [#58001](https://github.com/nodejs/node/pull/58001) +* \[[`29f34a7f86`](https://github.com/nodejs/node/commit/29f34a7f86)] - **lib**: disable REPL completion on proxies and getters (Dario Piotrowicz) [#57909](https://github.com/nodejs/node/pull/57909) +* \[[`0f1e94f731`](https://github.com/nodejs/node/commit/0f1e94f731)] - **(SEMVER-MINOR)** **lib**: graduate error codes that have been around for years (James M Snell) [#58541](https://github.com/nodejs/node/pull/58541) +* \[[`cc1aacabb0`](https://github.com/nodejs/node/commit/cc1aacabb0)] - **lib**: make ERM functions into wrappers returning undefined (Livia Medeiros) [#58400](https://github.com/nodejs/node/pull/58400) +* \[[`8df4dee38c`](https://github.com/nodejs/node/commit/8df4dee38c)] - **lib**: remove no-mixed-operators eslint rule (Ruben Bridgewater) [#58375](https://github.com/nodejs/node/pull/58375) +* \[[`104d173f58`](https://github.com/nodejs/node/commit/104d173f58)] - **meta**: bump github/codeql-action from 3.28.16 to 3.28.18 (dependabot\[bot]) [#58552](https://github.com/nodejs/node/pull/58552) +* \[[`b454e8386c`](https://github.com/nodejs/node/commit/b454e8386c)] - **meta**: bump codecov/codecov-action from 5.4.2 to 5.4.3 (dependabot\[bot]) [#58551](https://github.com/nodejs/node/pull/58551) +* \[[`f31e014b81`](https://github.com/nodejs/node/commit/f31e014b81)] - **meta**: bump step-security/harden-runner from 2.11.0 to 2.12.0 (dependabot\[bot]) [#58109](https://github.com/nodejs/node/pull/58109) +* \[[`4da920cc13`](https://github.com/nodejs/node/commit/4da920cc13)] - **meta**: bump ossf/scorecard-action from 2.4.1 to 2.4.2 (dependabot\[bot]) [#58550](https://github.com/nodejs/node/pull/58550) +* \[[`eb9bb95fe2`](https://github.com/nodejs/node/commit/eb9bb95fe2)] - **meta**: bump rtCamp/action-slack-notify from 2.3.2 to 2.3.3 (dependabot\[bot]) [#58108](https://github.com/nodejs/node/pull/58108) +* \[[`27ada1f18c`](https://github.com/nodejs/node/commit/27ada1f18c)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#58456](https://github.com/nodejs/node/pull/58456) +* \[[`4606a6792b`](https://github.com/nodejs/node/commit/4606a6792b)] - **meta**: bump github/codeql-action from 3.28.11 to 3.28.16 (dependabot\[bot]) [#58112](https://github.com/nodejs/node/pull/58112) +* \[[`7dfe448b7f`](https://github.com/nodejs/node/commit/7dfe448b7f)] - **meta**: bump codecov/codecov-action from 5.4.0 to 5.4.2 (dependabot\[bot]) [#58110](https://github.com/nodejs/node/pull/58110) +* \[[`18bb5f7e7e`](https://github.com/nodejs/node/commit/18bb5f7e7e)] - **meta**: bump actions/download-artifact from 4.2.1 to 4.3.0 (dependabot\[bot]) [#58106](https://github.com/nodejs/node/pull/58106) +* \[[`72f2a22889`](https://github.com/nodejs/node/commit/72f2a22889)] - **module**: clarify cjs global-like error on ModuleJobSync (Carlos Espa) [#56491](https://github.com/nodejs/node/pull/56491) +* \[[`b0e0b1afae`](https://github.com/nodejs/node/commit/b0e0b1afae)] - **net**: always publish to 'net.client.socket' diagnostics channel (Darshan Sen) [#58349](https://github.com/nodejs/node/pull/58349) +* \[[`f373d6a540`](https://github.com/nodejs/node/commit/f373d6a540)] - **node-api**: use WriteOneByteV2 in napi\_get\_value\_string\_latin1 (Chengzhong Wu) [#58325](https://github.com/nodejs/node/pull/58325) +* \[[`429c38db1b`](https://github.com/nodejs/node/commit/429c38db1b)] - **node-api**: use WriteV2 in napi\_get\_value\_string\_utf16 (Tobias Nießen) [#58165](https://github.com/nodejs/node/pull/58165) +* \[[`b882148999`](https://github.com/nodejs/node/commit/b882148999)] - **path**: improve path.resolve() performance when used as process.cwd() (Ruben Bridgewater) [#58362](https://github.com/nodejs/node/pull/58362) +* \[[`13abca3c26`](https://github.com/nodejs/node/commit/13abca3c26)] - **(SEMVER-MINOR)** **perf\_hooks**: make event loop delay histogram disposable (James M Snell) [#58384](https://github.com/nodejs/node/pull/58384) +* \[[`1cd417d823`](https://github.com/nodejs/node/commit/1cd417d823)] - **permission**: remove useless conditional (Juan José) [#58514](https://github.com/nodejs/node/pull/58514) +* \[[`462c4b0c24`](https://github.com/nodejs/node/commit/462c4b0c24)] - **readline**: add stricter validation for functions called after closed (Dario Piotrowicz) [#58283](https://github.com/nodejs/node/pull/58283) +* \[[`e3e36f902c`](https://github.com/nodejs/node/commit/e3e36f902c)] - **repl**: extract and standardize history from both repl and interface (Giovanni Bucci) [#58225](https://github.com/nodejs/node/pull/58225) +* \[[`cbb2a0172f`](https://github.com/nodejs/node/commit/cbb2a0172f)] - **report**: use uv\_getrusage\_thread in report (theanarkh) [#58405](https://github.com/nodejs/node/pull/58405) +* \[[`3a6bd9c4c4`](https://github.com/nodejs/node/commit/3a6bd9c4c4)] - **sqlite**: handle thrown errors in result callback (Colin Ihrig) [#58426](https://github.com/nodejs/node/pull/58426) +* \[[`0d761bbccd`](https://github.com/nodejs/node/commit/0d761bbccd)] - **src**: env\_vars caching and local variable scope optimization (Mert Can Altin) [#57624](https://github.com/nodejs/node/pull/57624) +* \[[`8ea1fc5f3b`](https://github.com/nodejs/node/commit/8ea1fc5f3b)] - **(SEMVER-MINOR)** **src**: support namespace options in configuration file (Pietro Marchini) [#58073](https://github.com/nodejs/node/pull/58073) +* \[[`f72ce2ef75`](https://github.com/nodejs/node/commit/f72ce2ef75)] - **src**: remove fast API for InternalModuleStat (Joyee Cheung) [#58489](https://github.com/nodejs/node/pull/58489) +* \[[`8a1eaea151`](https://github.com/nodejs/node/commit/8a1eaea151)] - **src**: update std::vector\> to use v8::LocalVector\ (Aditi) [#58500](https://github.com/nodejs/node/pull/58500) +* \[[`d99d657842`](https://github.com/nodejs/node/commit/d99d657842)] - **src**: fix FIPS init error handling (Tobias Nießen) [#58379](https://github.com/nodejs/node/pull/58379) +* \[[`11e4cd698b`](https://github.com/nodejs/node/commit/11e4cd698b)] - **src**: fix possible dereference of null pointer (Eusgor) [#58459](https://github.com/nodejs/node/pull/58459) +* \[[`ca0f5a0188`](https://github.com/nodejs/node/commit/ca0f5a0188)] - **src**: add env->cppgc\_allocation\_handle() convenience method (James M Snell) [#58483](https://github.com/nodejs/node/pull/58483) +* \[[`440d4f42bd`](https://github.com/nodejs/node/commit/440d4f42bd)] - **src**: fix -Wreturn-stack-address error (Shelley Vohr) [#58439](https://github.com/nodejs/node/pull/58439) +* \[[`08615b1020`](https://github.com/nodejs/node/commit/08615b1020)] - **src**: prepare for v8 sandboxing (James M Snell) [#58376](https://github.com/nodejs/node/pull/58376) +* \[[`63f643e844`](https://github.com/nodejs/node/commit/63f643e844)] - **src**: reorganize ContextifyFunction methods (Chengzhong Wu) [#58434](https://github.com/nodejs/node/pull/58434) +* \[[`3b6895a506`](https://github.com/nodejs/node/commit/3b6895a506)] - **src**: improve CompileFunctionAndCacheResult error handling (Chengzhong Wu) [#58434](https://github.com/nodejs/node/pull/58434) +* \[[`7f1c95aee8`](https://github.com/nodejs/node/commit/7f1c95aee8)] - **src**: make a number of minor improvements to buffer (James M Snell) [#58377](https://github.com/nodejs/node/pull/58377) +* \[[`ce081bcb9a`](https://github.com/nodejs/node/commit/ce081bcb9a)] - **src**: fix build when using shared simdutf (Antoine du Hamel) [#58407](https://github.com/nodejs/node/pull/58407) +* \[[`a35cc216e5`](https://github.com/nodejs/node/commit/a35cc216e5)] - **src**: track cppgc wrappers with a list in Realm (Joyee Cheung) [#56534](https://github.com/nodejs/node/pull/56534) +* \[[`947c1c2cd5`](https://github.com/nodejs/node/commit/947c1c2cd5)] - **src,lib**: obtain sourceURL in magic comments from V8 (Chengzhong Wu) [#58389](https://github.com/nodejs/node/pull/58389) +* \[[`d6ea36ad6c`](https://github.com/nodejs/node/commit/d6ea36ad6c)] - **src,permission**: implicit allow-fs-read to app entrypoint (Rafael Gonzaga) [#58579](https://github.com/nodejs/node/pull/58579) +* \[[`e8a07f2198`](https://github.com/nodejs/node/commit/e8a07f2198)] - **stream**: making DecompressionStream spec compilent for trailing junk (0hm☘️) [#58316](https://github.com/nodejs/node/pull/58316) +* \[[`3caa2f71c1`](https://github.com/nodejs/node/commit/3caa2f71c1)] - **stream**: test explicit resource management implicitly (LiviaMedeiros) [#58296](https://github.com/nodejs/node/pull/58296) +* \[[`9ccdf4fdb4`](https://github.com/nodejs/node/commit/9ccdf4fdb4)] - **test**: improve flakiness detection on stack corruption tests (Darshan Sen) [#58601](https://github.com/nodejs/node/pull/58601) +* \[[`d3fea003df`](https://github.com/nodejs/node/commit/d3fea003df)] - **test**: mark timeouts & flaky test as flaky on IBM i (Abdirahim Musse) [#58583](https://github.com/nodejs/node/pull/58583) +* \[[`8347ef6b53`](https://github.com/nodejs/node/commit/8347ef6b53)] - **test**: dispose of filehandles in filehandle.read tests (Livia Medeiros) [#58543](https://github.com/nodejs/node/pull/58543) +* \[[`34e86f91aa`](https://github.com/nodejs/node/commit/34e86f91aa)] - **test**: rewrite test-child-process-spawn-args (Michaël Zasso) [#58546](https://github.com/nodejs/node/pull/58546) +* \[[`d7a2458a58`](https://github.com/nodejs/node/commit/d7a2458a58)] - **test**: make sqlite-database-sync tests work with system sqlite (Jelle Licht) [#58507](https://github.com/nodejs/node/pull/58507) +* \[[`4d9d6830e0`](https://github.com/nodejs/node/commit/4d9d6830e0)] - **test**: force slow JSON.stringify path for overflow (Shelley Vohr) [#58181](https://github.com/nodejs/node/pull/58181) +* \[[`bef67e45e3`](https://github.com/nodejs/node/commit/bef67e45e3)] - **test**: account for truthy signal in flaky async\_hooks tests (Darshan Sen) [#58478](https://github.com/nodejs/node/pull/58478) +* \[[`007c82f206`](https://github.com/nodejs/node/commit/007c82f206)] - **test**: mark `test-http2-debug` as flaky on LinuxONE (Richard Lau) [#58494](https://github.com/nodejs/node/pull/58494) +* \[[`21f6400098`](https://github.com/nodejs/node/commit/21f6400098)] - **test**: update WPT for WebCryptoAPI to 591c95ce61 (Node.js GitHub Bot) [#58176](https://github.com/nodejs/node/pull/58176) +* \[[`1deb5f06a5`](https://github.com/nodejs/node/commit/1deb5f06a5)] - **test**: remove --no-warnings flag (Tobias Nießen) [#58424](https://github.com/nodejs/node/pull/58424) +* \[[`beba631a10`](https://github.com/nodejs/node/commit/beba631a10)] - **test**: add tests ensuring worker threads cannot access internals (Joe) [#58332](https://github.com/nodejs/node/pull/58332) +* \[[`5936cef60a`](https://github.com/nodejs/node/commit/5936cef60a)] - **(SEMVER-MINOR)** **test**: add disposable histogram test (James M Snell) [#58384](https://github.com/nodejs/node/pull/58384) +* \[[`7a91f4aaa1`](https://github.com/nodejs/node/commit/7a91f4aaa1)] - **(SEMVER-MINOR)** **test**: add test for async disposable worker thread (James M Snell) [#58385](https://github.com/nodejs/node/pull/58385) +* \[[`5fc4706280`](https://github.com/nodejs/node/commit/5fc4706280)] - **test**: leverage process.features.openssl\_is\_boringssl in test (Shelley Vohr) [#58421](https://github.com/nodejs/node/pull/58421) +* \[[`4629b18397`](https://github.com/nodejs/node/commit/4629b18397)] - **test**: fix test-buffer-tostring-range on allocation failure (Joyee Cheung) [#58416](https://github.com/nodejs/node/pull/58416) +* \[[`4c445a8c85`](https://github.com/nodejs/node/commit/4c445a8c85)] - **test**: skip in test-buffer-tostring-rangeerror on allocation failure (Joyee Cheung) [#58415](https://github.com/nodejs/node/pull/58415) +* \[[`53cb29898b`](https://github.com/nodejs/node/commit/53cb29898b)] - **test**: fix missing edge case in test-blob-slice-with-large-size (Joyee Cheung) [#58414](https://github.com/nodejs/node/pull/58414) +* \[[`89fdfdedc1`](https://github.com/nodejs/node/commit/89fdfdedc1)] - **test**: make crypto tests work with BoringSSL (Shelley Vohr) [#58117](https://github.com/nodejs/node/pull/58117) +* \[[`3b5d0e62b1`](https://github.com/nodejs/node/commit/3b5d0e62b1)] - **test**: test reordering of setAAD and setAuthTag (Tobias Nießen) [#58396](https://github.com/nodejs/node/pull/58396) +* \[[`029440bec5`](https://github.com/nodejs/node/commit/029440bec5)] - **test**: switch from deprecated `optparse` to `argparse` (Aviv Keller) [#58224](https://github.com/nodejs/node/pull/58224) +* \[[`d05263edcc`](https://github.com/nodejs/node/commit/d05263edcc)] - **test**: do not skip OCB decryption in FIPS mode (Tobias Nießen) [#58382](https://github.com/nodejs/node/pull/58382) +* \[[`23474cb257`](https://github.com/nodejs/node/commit/23474cb257)] - **test**: show more information in test-http2-debug upon failure (Joyee Cheung) [#58391](https://github.com/nodejs/node/pull/58391) +* \[[`d0302e7b3d`](https://github.com/nodejs/node/commit/d0302e7b3d)] - **test**: remove loop over single element (Tobias Nießen) [#58368](https://github.com/nodejs/node/pull/58368) +* \[[`33f615897d`](https://github.com/nodejs/node/commit/33f615897d)] - **test**: add chacha20-poly1305 to auth tag order test (Tobias Nießen) [#58367](https://github.com/nodejs/node/pull/58367) +* \[[`8f09a1f502`](https://github.com/nodejs/node/commit/8f09a1f502)] - **test**: skip wasm-allocation tests for pointer compression builds (Joyee Cheung) [#58171](https://github.com/nodejs/node/pull/58171) +* \[[`4ae6a1a5ed`](https://github.com/nodejs/node/commit/4ae6a1a5ed)] - **test**: remove references to create(De|C)ipher (Tobias Nießen) [#58363](https://github.com/nodejs/node/pull/58363) +* \[[`4d647271b2`](https://github.com/nodejs/node/commit/4d647271b2)] - **test\_runner**: emit event when file changes in watch mode (Jacopo Martinelli) [#57903](https://github.com/nodejs/node/pull/57903) +* \[[`1eda87c365`](https://github.com/nodejs/node/commit/1eda87c365)] - **test\_runner**: add level parameter to reporter.diagnostic (Jacopo Martinelli) [#57923](https://github.com/nodejs/node/pull/57923) +* \[[`13377512be`](https://github.com/nodejs/node/commit/13377512be)] - **tools**: bump the eslint group in `/tools/eslint` with 6 updates (dependabot\[bot]) [#58549](https://github.com/nodejs/node/pull/58549) +* \[[`fcc881de0d`](https://github.com/nodejs/node/commit/fcc881de0d)] - **tools**: support `DisposableStack` and `AsyncDisposableStack` in linter (LiviaMedeiros) [#58454](https://github.com/nodejs/node/pull/58454) +* \[[`208d6a5754`](https://github.com/nodejs/node/commit/208d6a5754)] - **tools**: support explicit resource management in eslint (LiviaMedeiros) [#58296](https://github.com/nodejs/node/pull/58296) +* \[[`32070f304a`](https://github.com/nodejs/node/commit/32070f304a)] - **tools**: add missing highway defines for IBM i (Abdirahim Musse) [#58335](https://github.com/nodejs/node/pull/58335) +* \[[`ddab63a323`](https://github.com/nodejs/node/commit/ddab63a323)] - **tty**: improve color terminal color detection (Ruben Bridgewater) [#58146](https://github.com/nodejs/node/pull/58146) +* \[[`c094bea8d9`](https://github.com/nodejs/node/commit/c094bea8d9)] - **tty**: use terminal VT mode on Windows (Anna Henningsen) [#58358](https://github.com/nodejs/node/pull/58358) +* \[[`dc21054a1e`](https://github.com/nodejs/node/commit/dc21054a1e)] - **typings**: add inspector internalBinding typing (Shima Ryuhei) [#58492](https://github.com/nodejs/node/pull/58492) +* \[[`3499285904`](https://github.com/nodejs/node/commit/3499285904)] - **typings**: remove no longer valid `FixedSizeBlobCopyJob` type (Dario Piotrowicz) [#58305](https://github.com/nodejs/node/pull/58305) +* \[[`1ed2deb2c8`](https://github.com/nodejs/node/commit/1ed2deb2c8)] - **typings**: remove no longer valid `revokeDataObject` type (Dario Piotrowicz) [#58305](https://github.com/nodejs/node/pull/58305) +* \[[`532c173cf2`](https://github.com/nodejs/node/commit/532c173cf2)] - **(SEMVER-MINOR)** **util**: add 'none' style to styleText (James M Snell) [#58437](https://github.com/nodejs/node/pull/58437) +* \[[`2d5a1ef528`](https://github.com/nodejs/node/commit/2d5a1ef528)] - **vm**: import call should return a promise in the current context (Chengzhong Wu) [#58309](https://github.com/nodejs/node/pull/58309) +* \[[`588c2449f2`](https://github.com/nodejs/node/commit/588c2449f2)] - **win,tools**: use Azure Trusted Signing (Stefan Stojanovic) [#58502](https://github.com/nodejs/node/pull/58502) +* \[[`aeb9ab4c4c`](https://github.com/nodejs/node/commit/aeb9ab4c4c)] - **(SEMVER-MINOR)** **worker**: make Worker async disposable (James M Snell) [#58385](https://github.com/nodejs/node/pull/58385) +* \[[`23416cce0a`](https://github.com/nodejs/node/commit/23416cce0a)] - **worker**: give names to `MessagePort` functions (Livia Medeiros) [#58307](https://github.com/nodejs/node/pull/58307) +* \[[`44df21b7fb`](https://github.com/nodejs/node/commit/44df21b7fb)] - **zlib**: remove mentions of unexposed Z\_TREES constant (Jimmy Leung) [#58371](https://github.com/nodejs/node/pull/58371) + + + +## 2025-05-21, Version 24.1.0 (Current), @aduh95 + +### Notable Changes + +* \[[`9d35b4ce95`](https://github.com/nodejs/node/commit/9d35b4ce95)] - **doc**: add JonasBa to collaborators (Jonas Badalic) [#58355](https://github.com/nodejs/node/pull/58355) +* \[[`b7d1bfa7b4`](https://github.com/nodejs/node/commit/b7d1bfa7b4)] - **doc**: add puskin to collaborators (Giovanni Bucci) [#58308](https://github.com/nodejs/node/pull/58308) +* \[[`fcead7c28e`](https://github.com/nodejs/node/commit/fcead7c28e)] - **(SEMVER-MINOR)** **fs**: add to `Dir` support for explicit resource management (Antoine du Hamel) [#58206](https://github.com/nodejs/node/pull/58206) +* \[[`f7041b9369`](https://github.com/nodejs/node/commit/f7041b9369)] - _**Revert**_ "**test\_runner**: change ts default glob" (Théo LUDWIG) [#58202](https://github.com/nodejs/node/pull/58202) + +### Commits + +* \[[`b33e8d2a71`](https://github.com/nodejs/node/commit/b33e8d2a71)] - **async\_hooks**: ensure AsyncLocalStore instances work isolated (Gerhard Stöbich) [#58149](https://github.com/nodejs/node/pull/58149) +* \[[`a1b078b18c`](https://github.com/nodejs/node/commit/a1b078b18c)] - **buffer**: give names to `Buffer.prototype.*Write()` functions (Livia Medeiros) [#58258](https://github.com/nodejs/node/pull/58258) +* \[[`4c967b73c3`](https://github.com/nodejs/node/commit/4c967b73c3)] - **buffer**: use constexpr where possible (Yagiz Nizipli) [#58141](https://github.com/nodejs/node/pull/58141) +* \[[`327095a928`](https://github.com/nodejs/node/commit/327095a928)] - **build**: fix uvwasi pkgname (Antoine du Hamel) [#58270](https://github.com/nodejs/node/pull/58270) +* \[[`2e54653d3d`](https://github.com/nodejs/node/commit/2e54653d3d)] - **build**: use FILE\_OFFSET\_BITS=64 esp. on 32-bit arch (RafaelGSS) [#58090](https://github.com/nodejs/node/pull/58090) +* \[[`7e4453fe93`](https://github.com/nodejs/node/commit/7e4453fe93)] - **build**: escape > metachar in vcbuild (Gerhard Stöbich) [#58157](https://github.com/nodejs/node/pull/58157) +* \[[`7dabf079b1`](https://github.com/nodejs/node/commit/7dabf079b1)] - **child\_process**: give names to promisified `exec()` and `execFile()` (LiviaMedeiros) [#57916](https://github.com/nodejs/node/pull/57916) +* \[[`a896eff1f2`](https://github.com/nodejs/node/commit/a896eff1f2)] - **crypto**: handle missing OPENSSL\_TLS\_SECURITY\_LEVEL (Shelley Vohr) [#58103](https://github.com/nodejs/node/pull/58103) +* \[[`6403aa458f`](https://github.com/nodejs/node/commit/6403aa458f)] - **crypto**: merge CipherBase.initiv into constructor (Tobias Nießen) [#58166](https://github.com/nodejs/node/pull/58166) +* \[[`30897d915c`](https://github.com/nodejs/node/commit/30897d915c)] - **deps**: V8: backport 1d3362c55396 (Shu-yu Guo) [#58230](https://github.com/nodejs/node/pull/58230) +* \[[`63f5d69d2b`](https://github.com/nodejs/node/commit/63f5d69d2b)] - **deps**: V8: cherry-pick 4f38995c8295 (Shu-yu Guo) [#58230](https://github.com/nodejs/node/pull/58230) +* \[[`5a5f6bb1d4`](https://github.com/nodejs/node/commit/5a5f6bb1d4)] - **deps**: V8: cherry-pick 044b9b6f589d (Rezvan Mahdavi Hezaveh) [#58230](https://github.com/nodejs/node/pull/58230) +* \[[`db57f0a4c0`](https://github.com/nodejs/node/commit/db57f0a4c0)] - **deps**: patch V8 to 13.6.233.10 (Michaël Zasso) [#58230](https://github.com/nodejs/node/pull/58230) +* \[[`f54a7a44ab`](https://github.com/nodejs/node/commit/f54a7a44ab)] - _**Revert**_ "**deps**: patch V8 to support compilation with MSVC" (Michaël Zasso) [#58187](https://github.com/nodejs/node/pull/58187) +* \[[`e3193eeca4`](https://github.com/nodejs/node/commit/e3193eeca4)] - _**Revert**_ "**deps**: always define V8\_EXPORT\_PRIVATE as no-op" (Michaël Zasso) [#58187](https://github.com/nodejs/node/pull/58187) +* \[[`e75ecf8ad1`](https://github.com/nodejs/node/commit/e75ecf8ad1)] - _**Revert**_ "**deps**: disable V8 concurrent sparkplug compilation" (Michaël Zasso) [#58187](https://github.com/nodejs/node/pull/58187) +* \[[`a0ca15558d`](https://github.com/nodejs/node/commit/a0ca15558d)] - **deps**: update llhttp to 9.3.0 (Fedor Indutny) [#58144](https://github.com/nodejs/node/pull/58144) +* \[[`90d4c11992`](https://github.com/nodejs/node/commit/90d4c11992)] - **deps**: update amaro to 0.5.3 (Node.js GitHub Bot) [#58174](https://github.com/nodejs/node/pull/58174) +* \[[`9d35b4ce95`](https://github.com/nodejs/node/commit/9d35b4ce95)] - **doc**: add JonasBa to collaborators (Jonas Badalic) [#58355](https://github.com/nodejs/node/pull/58355) +* \[[`2676ca0cf5`](https://github.com/nodejs/node/commit/2676ca0cf5)] - **doc**: add latest security release steward (Rafael Gonzaga) [#58339](https://github.com/nodejs/node/pull/58339) +* \[[`c35cc1bdd9`](https://github.com/nodejs/node/commit/c35cc1bdd9)] - **doc**: document default test-reporter change (Nico Jansen) [#58302](https://github.com/nodejs/node/pull/58302) +* \[[`2bb433d4a5`](https://github.com/nodejs/node/commit/2bb433d4a5)] - **doc**: fix CryptoKey.algorithm type and other interfaces in webcrypto.md (Filip Skokan) [#58294](https://github.com/nodejs/node/pull/58294) +* \[[`f04f09d783`](https://github.com/nodejs/node/commit/f04f09d783)] - **doc**: mark the callback argument of crypto.generatePrime as mandatory (Allon Murienik) [#58299](https://github.com/nodejs/node/pull/58299) +* \[[`3b9b010844`](https://github.com/nodejs/node/commit/3b9b010844)] - **doc**: remove comma delimiter mention on permissions doc (Rafael Gonzaga) [#58297](https://github.com/nodejs/node/pull/58297) +* \[[`f0cf1a028d`](https://github.com/nodejs/node/commit/f0cf1a028d)] - **doc**: make Stability labels not sticky in Stability index (Livia Medeiros) [#58291](https://github.com/nodejs/node/pull/58291) +* \[[`a1b937bdee`](https://github.com/nodejs/node/commit/a1b937bdee)] - **doc**: update commit-queue documentation (Dario Piotrowicz) [#58275](https://github.com/nodejs/node/pull/58275) +* \[[`b7d1bfa7b4`](https://github.com/nodejs/node/commit/b7d1bfa7b4)] - **doc**: add puskin to collaborators (Giovanni Bucci) [#58308](https://github.com/nodejs/node/pull/58308) +* \[[`fc30cdd8d2`](https://github.com/nodejs/node/commit/fc30cdd8d2)] - **doc**: update stability status for diagnostics\_channel to experimental (Idan Goshen) [#58261](https://github.com/nodejs/node/pull/58261) +* \[[`290a5ab8ca`](https://github.com/nodejs/node/commit/290a5ab8ca)] - **doc**: clarify napi\_get\_value\_string\_\* for bufsize 0 (Tobias Nießen) [#58158](https://github.com/nodejs/node/pull/58158) +* \[[`c26863a683`](https://github.com/nodejs/node/commit/c26863a683)] - **doc**: fix typo of file `http.md`, `outgoingMessage.setTimeout` section (yusheng chen) [#58188](https://github.com/nodejs/node/pull/58188) +* \[[`62dbd36dcb`](https://github.com/nodejs/node/commit/62dbd36dcb)] - **doc**: update return types for eventNames method in EventEmitter (Yukihiro Hasegawa) [#58083](https://github.com/nodejs/node/pull/58083) +* \[[`130c135f38`](https://github.com/nodejs/node/commit/130c135f38)] - **fs**: add support for `URL` for `fs.glob`'s `cwd` option (Antoine du Hamel) [#58182](https://github.com/nodejs/node/pull/58182) +* \[[`fcead7c28e`](https://github.com/nodejs/node/commit/fcead7c28e)] - **(SEMVER-MINOR)** **fs**: add to `Dir` support for explicit resource management (Antoine du Hamel) [#58206](https://github.com/nodejs/node/pull/58206) +* \[[`655326ba9f`](https://github.com/nodejs/node/commit/655326ba9f)] - **fs**: glob is stable, so should not emit experimental warnings (Théo LUDWIG) [#58236](https://github.com/nodejs/node/pull/58236) +* \[[`6ebcce7625`](https://github.com/nodejs/node/commit/6ebcce7625)] - **fs**: ensure `dir.read()` does not throw synchronously (Antoine du Hamel) [#58228](https://github.com/nodejs/node/pull/58228) +* \[[`7715722323`](https://github.com/nodejs/node/commit/7715722323)] - **http**: remove unused functions and add todos (Yagiz Nizipli) [#58143](https://github.com/nodejs/node/pull/58143) +* \[[`74a807e31f`](https://github.com/nodejs/node/commit/74a807e31f)] - **http,https**: give names to anonymous or misnamed functions (Livia Medeiros) [#58180](https://github.com/nodejs/node/pull/58180) +* \[[`24a9aefb08`](https://github.com/nodejs/node/commit/24a9aefb08)] - **http2**: add diagnostics channel 'http2.client.stream.start' (Darshan Sen) [#58292](https://github.com/nodejs/node/pull/58292) +* \[[`2cb86a3cd6`](https://github.com/nodejs/node/commit/2cb86a3cd6)] - **http2**: add diagnostics channel 'http2.client.stream.created' (Darshan Sen) [#58246](https://github.com/nodejs/node/pull/58246) +* \[[`8f1aee90d9`](https://github.com/nodejs/node/commit/8f1aee90d9)] - **http2**: give name to promisified `connect()` (LiviaMedeiros) [#57916](https://github.com/nodejs/node/pull/57916) +* \[[`b66f1b0be6`](https://github.com/nodejs/node/commit/b66f1b0be6)] - **inspector**: support for worker inspection in chrome devtools (Shima Ryuhei) [#56759](https://github.com/nodejs/node/pull/56759) +* \[[`868e72e367`](https://github.com/nodejs/node/commit/868e72e367)] - **lib**: fix sourcemaps with ts module mocking (Marco Ippolito) [#58193](https://github.com/nodejs/node/pull/58193) +* \[[`570cb6f6b6`](https://github.com/nodejs/node/commit/570cb6f6b6)] - **meta**: ignore mailmap changes in linux ci (Jonas Badalic) [#58356](https://github.com/nodejs/node/pull/58356) +* \[[`b94f63b865`](https://github.com/nodejs/node/commit/b94f63b865)] - **module**: handle instantiated async module jobs in require(esm) (Joyee Cheung) [#58067](https://github.com/nodejs/node/pull/58067) +* \[[`714b706f2e`](https://github.com/nodejs/node/commit/714b706f2e)] - **repl**: add proper vertical cursor movements (Giovanni Bucci) [#58003](https://github.com/nodejs/node/pull/58003) +* \[[`629a954477`](https://github.com/nodejs/node/commit/629a954477)] - **repl**: add possibility to edit multiline commands while adding them (Giovanni Bucci) [#58003](https://github.com/nodejs/node/pull/58003) +* \[[`17746129f3`](https://github.com/nodejs/node/commit/17746129f3)] - **sqlite**: set `name` and `length` on `sqlite.backup()` (Livia Medeiros) [#58251](https://github.com/nodejs/node/pull/58251) +* \[[`908782b1c0`](https://github.com/nodejs/node/commit/908782b1c0)] - **sqlite**: add build option to build without sqlite (Michael Dawson) [#58122](https://github.com/nodejs/node/pull/58122) +* \[[`a92a4074e4`](https://github.com/nodejs/node/commit/a92a4074e4)] - **src**: remove unused `internalVerifyIntegrity` internal binding (Dario Piotrowicz) [#58285](https://github.com/nodejs/node/pull/58285) +* \[[`e0355b71ba`](https://github.com/nodejs/node/commit/e0355b71ba)] - **src**: add a variant of ToV8Value() for primitive arrays (Aditi) [#57576](https://github.com/nodejs/node/pull/57576) +* \[[`cb24fc71c4`](https://github.com/nodejs/node/commit/cb24fc71c4)] - **src**: remove unused `checkMessagePort` internal binding (Dario Piotrowicz) [#58267](https://github.com/nodejs/node/pull/58267) +* \[[`4db5d0bc49`](https://github.com/nodejs/node/commit/4db5d0bc49)] - **src**: remove unused `shouldRetryAsESM` internal binding (Dario Piotrowicz) [#58265](https://github.com/nodejs/node/pull/58265) +* \[[`3b8d4e32ca`](https://github.com/nodejs/node/commit/3b8d4e32ca)] - **src**: add a couple fast apis in node\_os (James M Snell) [#58210](https://github.com/nodejs/node/pull/58210) +* \[[`a135c0aea3`](https://github.com/nodejs/node/commit/a135c0aea3)] - **src**: remove unneeded explicit V8 flags (Michaël Zasso) [#58230](https://github.com/nodejs/node/pull/58230) +* \[[`abeb5c4cdc`](https://github.com/nodejs/node/commit/abeb5c4cdc)] - **src**: fix module buffer allocation (X-BW) [#57738](https://github.com/nodejs/node/pull/57738) +* \[[`9ca4b46eb3`](https://github.com/nodejs/node/commit/9ca4b46eb3)] - **src**: use String::WriteV2() in TwoByteValue (Tobias Nießen) [#58164](https://github.com/nodejs/node/pull/58164) +* \[[`bb28e2bfd7`](https://github.com/nodejs/node/commit/bb28e2bfd7)] - **src**: remove overzealous tcsetattr error check (Ben Noordhuis) [#58200](https://github.com/nodejs/node/pull/58200) +* \[[`329e008e73`](https://github.com/nodejs/node/commit/329e008e73)] - **src**: refactor WriteUCS2 and remove flags argument (Tobias Nießen) [#58163](https://github.com/nodejs/node/pull/58163) +* \[[`c815f29d61`](https://github.com/nodejs/node/commit/c815f29d61)] - **src**: remove NonCopyableMaybe (Tobias Nießen) [#58168](https://github.com/nodejs/node/pull/58168) +* \[[`685d137dec`](https://github.com/nodejs/node/commit/685d137dec)] - **test**: reduce iteration count in test-child-process-stdout-flush-exit (Antoine du Hamel) [#58273](https://github.com/nodejs/node/pull/58273) +* \[[`40dc092e25`](https://github.com/nodejs/node/commit/40dc092e25)] - **test**: remove unnecessary `console.log` from test-repl-null-thrown (Dario Piotrowicz) [#58281](https://github.com/nodejs/node/pull/58281) +* \[[`a3af644dda`](https://github.com/nodejs/node/commit/a3af644dda)] - **test**: allow `tmpDir.path` to be modified (Aviv Keller) [#58173](https://github.com/nodejs/node/pull/58173) +* \[[`97f80374a6`](https://github.com/nodejs/node/commit/97f80374a6)] - **test**: add `Float16Array` to `common.getArrayBufferViews()` (Livia Medeiros) [#58233](https://github.com/nodejs/node/pull/58233) +* \[[`65683735ab`](https://github.com/nodejs/node/commit/65683735ab)] - **test**: fix executable flags (Livia Medeiros) [#58250](https://github.com/nodejs/node/pull/58250) +* \[[`ebb82aa1c3`](https://github.com/nodejs/node/commit/ebb82aa1c3)] - **test**: deflake test-http2-client-socket-destroy (Luigi Pinca) [#58212](https://github.com/nodejs/node/pull/58212) +* \[[`eb4f130b17`](https://github.com/nodejs/node/commit/eb4f130b17)] - **test**: remove Float16Array flag (Livia Medeiros) [#58184](https://github.com/nodejs/node/pull/58184) +* \[[`09a85fdeb1`](https://github.com/nodejs/node/commit/09a85fdeb1)] - **test**: skip test-buffer-tostring-rangeerror when low on memory (Ruben Bridgewater) [#58142](https://github.com/nodejs/node/pull/58142) +* \[[`65446632b1`](https://github.com/nodejs/node/commit/65446632b1)] - **test**: reduce flakiness in test-heapdump-http2 (Joyee Cheung) [#58148](https://github.com/nodejs/node/pull/58148) +* \[[`f7041b9369`](https://github.com/nodejs/node/commit/f7041b9369)] - _**Revert**_ "**test\_runner**: change ts default glob" (Théo LUDWIG) [#58202](https://github.com/nodejs/node/pull/58202) +* \[[`287454298d`](https://github.com/nodejs/node/commit/287454298d)] - **test\_runner**: unify --require and --import behavior when isolation none (Pietro Marchini) [#57924](https://github.com/nodejs/node/pull/57924) +* \[[`6301b003f7`](https://github.com/nodejs/node/commit/6301b003f7)] - **tools**: ignore `deps/` and `benchmark/` for CodeQL (Rafael Gonzaga) [#58254](https://github.com/nodejs/node/pull/58254) +* \[[`2d5de7e309`](https://github.com/nodejs/node/commit/2d5de7e309)] - **tools**: add read permission to workflows that read contents (Antoine du Hamel) [#58255](https://github.com/nodejs/node/pull/58255) +* \[[`b8d4715527`](https://github.com/nodejs/node/commit/b8d4715527)] - **tools**: support environment variables via comments (Pietro Marchini) [#58186](https://github.com/nodejs/node/pull/58186) +* \[[`d8e88f2c17`](https://github.com/nodejs/node/commit/d8e88f2c17)] - **typings**: add missing typings for `TypedArray` (Jason Zhang) [#58248](https://github.com/nodejs/node/pull/58248) +* \[[`4c6f73c5d5`](https://github.com/nodejs/node/commit/4c6f73c5d5)] - **url**: improve performance of the format function (Giovanni Bucci) [#57099](https://github.com/nodejs/node/pull/57099) +* \[[`94c720c4ee`](https://github.com/nodejs/node/commit/94c720c4ee)] - **util**: add internal `assignFunctionName()` function (LiviaMedeiros) [#57916](https://github.com/nodejs/node/pull/57916) +* \[[`3ed159afd1`](https://github.com/nodejs/node/commit/3ed159afd1)] - **watch**: fix watch args not being properly filtered (Dario Piotrowicz) [#58279](https://github.com/nodejs/node/pull/58279) + + + +## 2025-05-14, Version 24.0.2 (Current), @RafaelGSS + +This is a security release. + +### Notable Changes + +* (CVE-2025-23166) fix error handling on async crypto operation + +### Commits + +* \[[`7d0c17b2ad`](https://github.com/nodejs/node/commit/7d0c17b2ad)] - **(CVE-2025-23166)** **src**: fix error handling on async crypto operations (RafaelGSS) [nodejs-private/node-private#688](https://github.com/nodejs-private/node-private/pull/688) + + + +## 2025-05-08, Version 24.0.1 (Current), @aduh95 + +### Notable Changes + +* \[[`2e1d9581e0`](https://github.com/nodejs/node/commit/2e1d9581e0)] - _**Revert**_ "**buffer**: move SlowBuffer to EOL" (Filip Skokan) [#58211](https://github.com/nodejs/node/pull/58211) + +### Commits + +* \[[`d38e811c5b`](https://github.com/nodejs/node/commit/d38e811c5b)] - **benchmark**: fix typo in method name for error-stack (Miguel Marcondes Filho) [#58128](https://github.com/nodejs/node/pull/58128) +* \[[`2e1d9581e0`](https://github.com/nodejs/node/commit/2e1d9581e0)] - _**Revert**_ "**buffer**: move SlowBuffer to EOL" (Filip Skokan) [#58211](https://github.com/nodejs/node/pull/58211) +* \[[`a883b0c979`](https://github.com/nodejs/node/commit/a883b0c979)] - **build**: use //third\_party/simdutf by default in GN (Shelley Vohr) [#58115](https://github.com/nodejs/node/pull/58115) +* \[[`3d84b5c7a4`](https://github.com/nodejs/node/commit/3d84b5c7a4)] - **doc**: add HBSPS as triager (Wiyeong Seo) [#57980](https://github.com/nodejs/node/pull/57980) +* \[[`1e57cb686e`](https://github.com/nodejs/node/commit/1e57cb686e)] - **doc**: add history entries to `--input-type` section (Antoine du Hamel) [#58175](https://github.com/nodejs/node/pull/58175) +* \[[`0b54f06b6f`](https://github.com/nodejs/node/commit/0b54f06b6f)] - **doc**: add ambassaor message (Brian Muenzenmeyer) [#57600](https://github.com/nodejs/node/pull/57600) +* \[[`46bee52d57`](https://github.com/nodejs/node/commit/46bee52d57)] - **doc**: fix misaligned options in vm.compileFunction() (Jimmy Leung) [#58145](https://github.com/nodejs/node/pull/58145) +* \[[`e732a8bfdd`](https://github.com/nodejs/node/commit/e732a8bfdd)] - **doc**: fix typo in benchmark script path (Miguel Marcondes Filho) [#58129](https://github.com/nodejs/node/pull/58129) +* \[[`d49ff34adb`](https://github.com/nodejs/node/commit/d49ff34adb)] - **doc**: add missing options.signal to readlinePromises.createInterface() (Jimmy Leung) [#55456](https://github.com/nodejs/node/pull/55456) +* \[[`bc9f5a2e79`](https://github.com/nodejs/node/commit/bc9f5a2e79)] - **doc**: fix typo of file `zlib.md` (yusheng chen) [#58093](https://github.com/nodejs/node/pull/58093) +* \[[`c8e8558958`](https://github.com/nodejs/node/commit/c8e8558958)] - **doc**: clarify future Corepack removal in v25+ (Trivikram Kamat) [#57825](https://github.com/nodejs/node/pull/57825) +* \[[`b13d5d14bd`](https://github.com/nodejs/node/commit/b13d5d14bd)] - **meta**: bump actions/setup-node from 4.3.0 to 4.4.0 (dependabot\[bot]) [#58111](https://github.com/nodejs/node/pull/58111) +* \[[`0ebb17a300`](https://github.com/nodejs/node/commit/0ebb17a300)] - **meta**: bump actions/setup-python from 5.5.0 to 5.6.0 (dependabot\[bot]) [#58107](https://github.com/nodejs/node/pull/58107) +* \[[`5946785bf4`](https://github.com/nodejs/node/commit/5946785bf4)] - **tools**: exclude deps/v8/tools from CodeQL scans (Rich Trott) [#58132](https://github.com/nodejs/node/pull/58132) +* \[[`0708497c7f`](https://github.com/nodejs/node/commit/0708497c7f)] - **tools**: bump the eslint group in /tools/eslint with 6 updates (dependabot\[bot]) [#58105](https://github.com/nodejs/node/pull/58105) + + + +## 2025-05-06, Version 24.0.0 (Current), @RafaelGSS and @juanarbol + +We’re excited to announce the release of Node.js 24! This release brings +several significant updates, including the upgrade of the V8 JavaScript +engine to version 13.6 and npm to version 11. Starting with +Node.js 24, support for MSVC has been removed, and ClangCL is now required +to compile Node.js on Windows. The `AsyncLocalStorage` API now uses +`AsyncContextFrame` by default, and `URLPattern` is available globally. +These changes, along with many other improvements, continue to push the +platform forward. + +As a reminder, Node.js 24 will enter long-term support (LTS) in October, +but until then, it will be the "Current" release for the next six months. +We encourage you to explore the new features and benefits offered by this +latest release and evaluate their potential impact on your applications. + +## Notable Changes + +### V8 13.6 + +The V8 engine is updated to version 13.6, which includes several new +JavaScript features: + +* [`Float16Array`](https://chromestatus.com/feature/5164400693215232) +* [Explicit resource management](https://tc39.es/proposal-explicit-resource-management/) +* [`RegExp.escape`](https://github.com/tc39/proposal-regex-escaping) +* [WebAssembly Memory64](https://github.com/WebAssembly/memory64) +* [`Error.isError`](https://github.com/tc39/proposal-is-error) + +The V8 update was a contribution by Michaël Zasso in [#58070](https://github.com/nodejs/node/pull/58070). + +### npm 11 + +Node.js 24 comes with npm 11, which includes several improvements and new +features. This update brings enhanced performance, improved security features, +and better compatibility with modern JavaScript packages. + +The npm update was a contribution by the npm team in [#56274](https://github.com/nodejs/node/pull/56274). + +### `AsyncLocalStorage` defaults to `AsyncContextFrame` + +`AsyncLocalStorage` now uses `AsyncContextFrame` by default, which provides a +more efficient implementation of asynchronous context tracking. +This change improves performance and makes the API more robust for advanced +use cases. + +This change was a contribution by Stephen Belanger in [#55552](https://github.com/nodejs/node/pull/55552). + +### `URLPattern` as a global + +The [`URLPattern`](https://developer.mozilla.org/en-US/docs/Web/API/URLPattern) +API is now exposed on the global object, making it easier to use without +explicit imports. This API provides a powerful pattern matching system for URLs, +similar to how regular expressions work for strings. + +This feature was a contribution by Jonas Badalič in [#56950](https://github.com/nodejs/node/pull/56950). + +### Permission Model Improvements + +The experimental Permission Model introduced in Node.js 20 has been improved, +and the flag has been changed from `--experimental-permission` to simply +`--permission`, indicating its increasing stability and readiness for broader +adoption. + +This change was a contribution by Rafael Gonzaga in [#56240](https://github.com/nodejs/node/pull/56240). + +### Test Runner Enhancements + +The test runner module now automatically waits for subtests to finish, +eliminating the need to manually await test promises. This makes writing tests +more intuitive and reduces common errors related to unhandled promises. + +The test runner improvements were contributions by Colin Ihrig in [#56664](https://github.com/nodejs/node/pull/56664). + +### Undici 7 + +Node.js 24 includes Undici 7, which brings numerous improvements to the +HTTP client capabilities, including better performance and support for newer +HTTP features. + +### Deprecations and Removals + +Several APIs have been deprecated or removed in this release: + +* Runtime deprecation of `url.parse()` - use the WHATWG URL API instead ([#55017](https://github.com/nodejs/node/pull/55017)) +* Removal of deprecated `tls.createSecurePair` ([#57361](https://github.com/nodejs/node/pull/57361)) +* Runtime deprecation of `SlowBuffer` ([#55175](https://github.com/nodejs/node/pull/55175)) +* Runtime deprecation of instantiating REPL without new ([#54869](https://github.com/nodejs/node/pull/54869)) +* Deprecation of using Zlib classes without `new` ([#55718](https://github.com/nodejs/node/pull/55718)) +* Deprecation of passing `args` to `spawn` and `execFile` in child\_process ([#57199](https://github.com/nodejs/node/pull/57199)) + +### Semver-Major Commits + +* \[[`c6b934380a`](https://github.com/nodejs/node/commit/c6b934380a)] - **(SEMVER-MAJOR)** **src**: enable `Float16Array` on global object (Michaël Zasso) [#58154](https://github.com/nodejs/node/pull/58154) +* \[[`69efb81a73`](https://github.com/nodejs/node/commit/69efb81a73)] - **(SEMVER-MAJOR)** **src**: enable explicit resource management (Michaël Zasso) [#58154](https://github.com/nodejs/node/pull/58154) +* \[[`b00ff4270e`](https://github.com/nodejs/node/commit/b00ff4270e)] - **(SEMVER-MAJOR)** **src,test**: unregister the isolate after disposal and before freeing (Joyee Cheung) [#58070](https://github.com/nodejs/node/pull/58070) +* \[[`b81697d860`](https://github.com/nodejs/node/commit/b81697d860)] - **(SEMVER-MAJOR)** **src**: use non-deprecated WriteUtf8V2() method (Yagiz Nizipli) [#58070](https://github.com/nodejs/node/pull/58070) +* \[[`1f06169b87`](https://github.com/nodejs/node/commit/1f06169b87)] - **(SEMVER-MAJOR)** **src**: use non-deprecated Utf8LengthV2() method (Yagiz Nizipli) [#58070](https://github.com/nodejs/node/pull/58070) +* \[[`eae9a296f0`](https://github.com/nodejs/node/commit/eae9a296f0)] - **(SEMVER-MAJOR)** **src**: use V8-owned CppHeap (Joyee Cheung) [#58070](https://github.com/nodejs/node/pull/58070) +* \[[`087c254a11`](https://github.com/nodejs/node/commit/087c254a11)] - **(SEMVER-MAJOR)** **test**: fix test-fs-write for V8 13.6 (Michaël Zasso) [#58070](https://github.com/nodejs/node/pull/58070) +* \[[`9e49bedd8e`](https://github.com/nodejs/node/commit/9e49bedd8e)] - **(SEMVER-MAJOR)** **build**: update list of installed cppgc headers (Michaël Zasso) [#58070](https://github.com/nodejs/node/pull/58070) +* \[[`93cca8a43e`](https://github.com/nodejs/node/commit/93cca8a43e)] - **(SEMVER-MAJOR)** **tools**: update V8 gypfiles for 13.6 (Michaël Zasso) [#58070](https://github.com/nodejs/node/pull/58070) +* \[[`347daa07be`](https://github.com/nodejs/node/commit/347daa07be)] - **(SEMVER-MAJOR)** **tools**: update V8 gypfiles for 13.5 (Michaël Zasso) [#58070](https://github.com/nodejs/node/pull/58070) +* \[[`2a35d5a86c`](https://github.com/nodejs/node/commit/2a35d5a86c)] - **(SEMVER-MAJOR)** **build**: fix V8 TLS config for shared lib builds (Michaël Zasso) [#58070](https://github.com/nodejs/node/pull/58070) +* \[[`b0fb5a09cf`](https://github.com/nodejs/node/commit/b0fb5a09cf)] - **(SEMVER-MAJOR)** **build**: pass `-fPIC` to linker as well for shared builds (Michaël Zasso) [#58070](https://github.com/nodejs/node/pull/58070) +* \[[`dd4c5d6c73`](https://github.com/nodejs/node/commit/dd4c5d6c73)] - **(SEMVER-MAJOR)** **src,test**: add V8 API to test the hash seed (Michaël Zasso) [#58070](https://github.com/nodejs/node/pull/58070) +* \[[`1d5d7b6eed`](https://github.com/nodejs/node/commit/1d5d7b6eed)] - **(SEMVER-MAJOR)** **src**: use `v8::ExternalMemoryAccounter` (Michaël Zasso) [#58070](https://github.com/nodejs/node/pull/58070) +* \[[`3779e43cce`](https://github.com/nodejs/node/commit/3779e43cce)] - **(SEMVER-MAJOR)** **tools**: update license-builder and LICENSE for V8 deps (Michaël Zasso) [#58070](https://github.com/nodejs/node/pull/58070) +* \[[`82c2255206`](https://github.com/nodejs/node/commit/82c2255206)] - **(SEMVER-MAJOR)** **deps**: remove deps/simdutf (Michaël Zasso) [#58070](https://github.com/nodejs/node/pull/58070) +* \[[`8a258eb7b1`](https://github.com/nodejs/node/commit/8a258eb7b1)] - **(SEMVER-MAJOR)** **test**: handle explicit resource management globals (Michaël Zasso) [#58070](https://github.com/nodejs/node/pull/58070) +* \[[`9e0d9b6024`](https://github.com/nodejs/node/commit/9e0d9b6024)] - **(SEMVER-MAJOR)** **test**: adapt assert tests to stack trace changes (Michaël Zasso) [#58070](https://github.com/nodejs/node/pull/58070) +* \[[`f7406aa56d`](https://github.com/nodejs/node/commit/f7406aa56d)] - **(SEMVER-MAJOR)** **test**: update test-linux-perf-logger (Michaël Zasso) [#58070](https://github.com/nodejs/node/pull/58070) +* \[[`c7493fac5e`](https://github.com/nodejs/node/commit/c7493fac5e)] - **(SEMVER-MAJOR)** _**Revert**_ "**test**: disable fast API call count checks" (Michaël Zasso) [#58070](https://github.com/nodejs/node/pull/58070) +* \[[`50a8527867`](https://github.com/nodejs/node/commit/50a8527867)] - **(SEMVER-MAJOR)** **src**: replace uses of FastApiTypedArray (Michaël Zasso) [#58070](https://github.com/nodejs/node/pull/58070) +* \[[`9c1ebb713c`](https://github.com/nodejs/node/commit/9c1ebb713c)] - **(SEMVER-MAJOR)** **build**: add `/bigobj` to compile V8 on Windows (Michaël Zasso) [#58070](https://github.com/nodejs/node/pull/58070) +* \[[`fb3d5ea45d`](https://github.com/nodejs/node/commit/fb3d5ea45d)] - **(SEMVER-MAJOR)** **tools**: update V8 gypfiles for 13.4 (Michaël Zasso) [#58070](https://github.com/nodejs/node/pull/58070) +* \[[`756abacf73`](https://github.com/nodejs/node/commit/756abacf73)] - **(SEMVER-MAJOR)** **build,src,tools**: adapt build config for V8 13.3 (Michaël Zasso) [#58070](https://github.com/nodejs/node/pull/58070) +* \[[`f8953e54b0`](https://github.com/nodejs/node/commit/f8953e54b0)] - **(SEMVER-MAJOR)** **tools**: update V8 gypfiles for 13.2 (Michaël Zasso) [#58070](https://github.com/nodejs/node/pull/58070) +* \[[`c8a0e205e1`](https://github.com/nodejs/node/commit/c8a0e205e1)] - **(SEMVER-MAJOR)** **tools**: update V8 gypfiles for 13.1 (Michaël Zasso) [#58070](https://github.com/nodejs/node/pull/58070) +* \[[`1689ee84ce`](https://github.com/nodejs/node/commit/1689ee84ce)] - **(SEMVER-MAJOR)** **build**: enable shared RO heap with ptr compression (Michaël Zasso) [#58070](https://github.com/nodejs/node/pull/58070) +* \[[`15f2fb9467`](https://github.com/nodejs/node/commit/15f2fb9467)] - **(SEMVER-MAJOR)** **build**: remove support for s390 32-bit (Richard Lau) [#58070](https://github.com/nodejs/node/pull/58070) +* \[[`4ab254c9f2`](https://github.com/nodejs/node/commit/4ab254c9f2)] - **(SEMVER-MAJOR)** **deps**: V8: backport 954187bb1b87 (Joyee Cheung) [#58070](https://github.com/nodejs/node/pull/58070) +* \[[`732923b927`](https://github.com/nodejs/node/commit/732923b927)] - **(SEMVER-MAJOR)** **deps**: patch V8 to support compilation with MSVC (StefanStojanovic) [#58070](https://github.com/nodejs/node/pull/58070) +* \[[`972834d7c0`](https://github.com/nodejs/node/commit/972834d7c0)] - **(SEMVER-MAJOR)** **deps**: always define V8\_EXPORT\_PRIVATE as no-op (Michaël Zasso) [#58070](https://github.com/nodejs/node/pull/58070) +* \[[`7098bff3a9`](https://github.com/nodejs/node/commit/7098bff3a9)] - **(SEMVER-MAJOR)** **deps**: disable V8 concurrent sparkplug compilation (Michaël Zasso) [#58070](https://github.com/nodejs/node/pull/58070) +* \[[`dc82c40d4a`](https://github.com/nodejs/node/commit/dc82c40d4a)] - **(SEMVER-MAJOR)** **deps**: use std::map in MSVC STL for EphemeronRememberedSet (Joyee Cheung) [#58070](https://github.com/nodejs/node/pull/58070) +* \[[`42f5130ee2`](https://github.com/nodejs/node/commit/42f5130ee2)] - **(SEMVER-MAJOR)** **deps**: patch V8 for illumos (Dan McDonald) [#58070](https://github.com/nodejs/node/pull/58070) +* \[[`23b17dbd9e`](https://github.com/nodejs/node/commit/23b17dbd9e)] - **(SEMVER-MAJOR)** **deps**: remove problematic comment from v8-internal (Michaël Zasso) [#58070](https://github.com/nodejs/node/pull/58070) +* \[[`c5d71fcdab`](https://github.com/nodejs/node/commit/c5d71fcdab)] - **(SEMVER-MAJOR)** **deps**: define V8\_PRESERVE\_MOST as no-op on Windows (Stefan Stojanovic) [#58070](https://github.com/nodejs/node/pull/58070) +* \[[`fbc2005b15`](https://github.com/nodejs/node/commit/fbc2005b15)] - **(SEMVER-MAJOR)** **deps**: fix FP16 bitcasts.h (Stefan Stojanovic) [#58070](https://github.com/nodejs/node/pull/58070) +* \[[`57f9430503`](https://github.com/nodejs/node/commit/57f9430503)] - **(SEMVER-MAJOR)** **deps**: patch V8 to avoid duplicated zlib symbol (Michaël Zasso) [#58070](https://github.com/nodejs/node/pull/58070) +* \[[`f26cab1b85`](https://github.com/nodejs/node/commit/f26cab1b85)] - **(SEMVER-MAJOR)** **src**: update NODE\_MODULE\_VERSION to 137 (Michaël Zasso) [#58070](https://github.com/nodejs/node/pull/58070) +* \[[`f8923a4f17`](https://github.com/nodejs/node/commit/f8923a4f17)] - **(SEMVER-MAJOR)** **build**: reset embedder string to "-node.0" (Michaël Zasso) [#58070](https://github.com/nodejs/node/pull/58070) +* \[[`c7964bc02b`](https://github.com/nodejs/node/commit/c7964bc02b)] - **(SEMVER-MAJOR)** **deps**: update V8 to 13.6.233.8 (Michaël Zasso) [#58070](https://github.com/nodejs/node/pull/58070) +* \[[`6682861d6f`](https://github.com/nodejs/node/commit/6682861d6f)] - **(SEMVER-MAJOR)** **build**: downgrade armv7 support to experimental (Michaël Zasso) [#58071](https://github.com/nodejs/node/pull/58071) +* \[[`0579e0ec93`](https://github.com/nodejs/node/commit/0579e0ec93)] - **(SEMVER-MAJOR)** **buffer**: move SlowBuffer to EOL (James M Snell) [#58008](https://github.com/nodejs/node/pull/58008) +* \[[`a55f5d5e63`](https://github.com/nodejs/node/commit/a55f5d5e63)] - **(SEMVER-MAJOR)** **readline**: add stricter validation for functions called after closed (Dario Piotrowicz) [#57680](https://github.com/nodejs/node/pull/57680) +* \[[`d16b0bae55`](https://github.com/nodejs/node/commit/d16b0bae55)] - **(SEMVER-MAJOR)** **http2**: session tracking and graceful server close (Kushagra Pandey) [#57586](https://github.com/nodejs/node/pull/57586) +* \[[`e2b94dc3f9`](https://github.com/nodejs/node/commit/e2b94dc3f9)] - **(SEMVER-MAJOR)** **readline**: fix unicode line separators being ignored (Dario Piotrowicz) [#57591](https://github.com/nodejs/node/pull/57591) +* \[[`4a47ce5ff9`](https://github.com/nodejs/node/commit/4a47ce5ff9)] - **(SEMVER-MAJOR)** _**Revert**_ "**assert,util**: revert recursive breaking change" (Ruben Bridgewater) [#57622](https://github.com/nodejs/node/pull/57622) +* \[[`7d4db69049`](https://github.com/nodejs/node/commit/7d4db69049)] - **(SEMVER-MAJOR)** **http**: remove outgoingmessage \_headers and \_headersList (Yagiz Nizipli) [#57551](https://github.com/nodejs/node/pull/57551) +* \[[`fabf9384e0`](https://github.com/nodejs/node/commit/fabf9384e0)] - **(SEMVER-MAJOR)** **fs**: remove ability to call truncate with fd (Yagiz Nizipli) [#57567](https://github.com/nodejs/node/pull/57567) +* \[[`a587bd2ee2`](https://github.com/nodejs/node/commit/a587bd2ee2)] - **(SEMVER-MAJOR)** **net**: make \_setSimultaneousAccepts() end-of-life deprecated (Yagiz Nizipli) [#57550](https://github.com/nodejs/node/pull/57550) +* \[[`c6bca3fd34`](https://github.com/nodejs/node/commit/c6bca3fd34)] - **(SEMVER-MAJOR)** **child\_process**: deprecate passing `args` to `spawn` and `execFile` (Daniel Venable) [#57199](https://github.com/nodejs/node/pull/57199) +* \[[`e42c01b56d`](https://github.com/nodejs/node/commit/e42c01b56d)] - **(SEMVER-MAJOR)** **buffer**: make `buflen` in integer range (zhenweijin) [#51821](https://github.com/nodejs/node/pull/51821) +* \[[`cc08ad56b8`](https://github.com/nodejs/node/commit/cc08ad56b8)] - **(SEMVER-MAJOR)** **tls**: remove deprecated tls.createSecurePair (Jonas) [#57361](https://github.com/nodejs/node/pull/57361) +* \[[`6f2a6b262b`](https://github.com/nodejs/node/commit/6f2a6b262b)] - **(SEMVER-MAJOR)** **tls**: make server.prototype.setOptions end-of-life (Yagiz Nizipli) [#57339](https://github.com/nodejs/node/pull/57339) +* \[[`0c371d919e`](https://github.com/nodejs/node/commit/0c371d919e)] - **(SEMVER-MAJOR)** **lib**: remove obsolete Cipher export (James M Snell) [#57266](https://github.com/nodejs/node/pull/57266) +* \[[`2cbf3c38db`](https://github.com/nodejs/node/commit/2cbf3c38db)] - **(SEMVER-MAJOR)** **timers**: check for immediate instance in clearImmediate (Gürgün Dayıoğlu) [#57069](https://github.com/nodejs/node/pull/57069) +* \[[`4f512faf4a`](https://github.com/nodejs/node/commit/4f512faf4a)] - **(SEMVER-MAJOR)** **lib**: unexpose six process bindings (Michaël Zasso) [#57149](https://github.com/nodejs/node/pull/57149) +* \[[`8b40221777`](https://github.com/nodejs/node/commit/8b40221777)] - **(SEMVER-MAJOR)** **build**: bump supported macOS version to 13.5 (Michaël Zasso) [#57115](https://github.com/nodejs/node/pull/57115) +* \[[`5d7091f1bc`](https://github.com/nodejs/node/commit/5d7091f1bc)] - **(SEMVER-MAJOR)** **timers**: set several methods EOL (Yagiz Nizipli) [#56966](https://github.com/nodejs/node/pull/56966) +* \[[`d1f8ccb10d`](https://github.com/nodejs/node/commit/d1f8ccb10d)] - **(SEMVER-MAJOR)** **url**: expose urlpattern as global (Jonas) [#56950](https://github.com/nodejs/node/pull/56950) +* \[[`ed52ab913b`](https://github.com/nodejs/node/commit/ed52ab913b)] - **(SEMVER-MAJOR)** **build**: increase minimum Xcode version to 16.1 (Michaël Zasso) [#56824](https://github.com/nodejs/node/pull/56824) +* \[[`1a2eb15bc6`](https://github.com/nodejs/node/commit/1a2eb15bc6)] - **(SEMVER-MAJOR)** **test\_runner**: remove promises returned by t.test() (Colin Ihrig) [#56664](https://github.com/nodejs/node/pull/56664) +* \[[`96718268fe`](https://github.com/nodejs/node/commit/96718268fe)] - **(SEMVER-MAJOR)** **test\_runner**: remove promises returned by test() (Colin Ihrig) [#56664](https://github.com/nodejs/node/pull/56664) +* \[[`aa3523ec22`](https://github.com/nodejs/node/commit/aa3523ec22)] - **(SEMVER-MAJOR)** **test\_runner**: automatically wait for subtests to finish (Colin Ihrig) [#56664](https://github.com/nodejs/node/pull/56664) +* \[[`6857dbc018`](https://github.com/nodejs/node/commit/6857dbc018)] - **(SEMVER-MAJOR)** **test**: disable fast API call count checks (Michaël Zasso) [#55014](https://github.com/nodejs/node/pull/55014) +* \[[`89f661dd66`](https://github.com/nodejs/node/commit/89f661dd66)] - **(SEMVER-MAJOR)** **build**: link V8 with atomic library (Michaël Zasso) [#55014](https://github.com/nodejs/node/pull/55014) +* \[[`7e8752006a`](https://github.com/nodejs/node/commit/7e8752006a)] - **(SEMVER-MAJOR)** **src**: update GetForegroundTaskRunner override (Etienne Pierre-doray) [#55014](https://github.com/nodejs/node/pull/55014) +* \[[`44b0e423dc`](https://github.com/nodejs/node/commit/44b0e423dc)] - **(SEMVER-MAJOR)** **build**: remove support for ppc 32-bit (Michaël Zasso) [#55014](https://github.com/nodejs/node/pull/55014) +* \[[`6f965260dd`](https://github.com/nodejs/node/commit/6f965260dd)] - **(SEMVER-MAJOR)** **tools**: update V8 gypfiles for 13.0 (Michaël Zasso) [#55014](https://github.com/nodejs/node/pull/55014) +* \[[`52d39441d0`](https://github.com/nodejs/node/commit/52d39441d0)] - **(SEMVER-MAJOR)** **deps**: V8: cherry-pick f915fa4c9f41 (Olivier Flückiger) [#55014](https://github.com/nodejs/node/pull/55014) +* \[[`99ffe3555a`](https://github.com/nodejs/node/commit/99ffe3555a)] - **(SEMVER-MAJOR)** **deps**: V8: cherry-pick 0d5d6e71bbb0 (Yagiz Nizipli) [#55014](https://github.com/nodejs/node/pull/55014) +* \[[`5d8011d91c`](https://github.com/nodejs/node/commit/5d8011d91c)] - **(SEMVER-MAJOR)** **deps**: V8: cherry-pick 0c11feeeca4a (Michaël Zasso) [#55014](https://github.com/nodejs/node/pull/55014) +* \[[`d85d2f8350`](https://github.com/nodejs/node/commit/d85d2f8350)] - **(SEMVER-MAJOR)** **deps**: define V8\_PRESERVE\_MOST as no-op on Windows (Stefan Stojanovic) [#55014](https://github.com/nodejs/node/pull/55014) +* \[[`e8f55f7b7a`](https://github.com/nodejs/node/commit/e8f55f7b7a)] - **(SEMVER-MAJOR)** **deps**: always define V8\_NODISCARD as no-op (Michaël Zasso) [#55014](https://github.com/nodejs/node/pull/55014) +* \[[`b3c1b63a5d`](https://github.com/nodejs/node/commit/b3c1b63a5d)] - **(SEMVER-MAJOR)** **deps**: fix FP16 bitcasts.h (Stefan Stojanovic) [#55014](https://github.com/nodejs/node/pull/55014) +* \[[`d0361f0bba`](https://github.com/nodejs/node/commit/d0361f0bba)] - **(SEMVER-MAJOR)** **deps**: patch V8 to support compilation with MSVC (StefanStojanovic) [#55014](https://github.com/nodejs/node/pull/55014) +* \[[`a4e0fce896`](https://github.com/nodejs/node/commit/a4e0fce896)] - **(SEMVER-MAJOR)** **deps**: patch V8 to avoid duplicated zlib symbol (Michaël Zasso) [#55014](https://github.com/nodejs/node/pull/55014) +* \[[`4f8fd566cc`](https://github.com/nodejs/node/commit/4f8fd566cc)] - **(SEMVER-MAJOR)** **deps**: disable V8 concurrent sparkplug compilation (Michaël Zasso) [#55014](https://github.com/nodejs/node/pull/55014) +* \[[`1142f78f1d`](https://github.com/nodejs/node/commit/1142f78f1d)] - **(SEMVER-MAJOR)** **deps**: always define V8\_EXPORT\_PRIVATE as no-op (Michaël Zasso) [#55014](https://github.com/nodejs/node/pull/55014) +* \[[`7917b67313`](https://github.com/nodejs/node/commit/7917b67313)] - **(SEMVER-MAJOR)** **src**: update NODE\_MODULE\_VERSION to 134 (Michaël Zasso) [#55014](https://github.com/nodejs/node/pull/55014) +* \[[`1f654e655c`](https://github.com/nodejs/node/commit/1f654e655c)] - **(SEMVER-MAJOR)** **build**: reset embedder string to "-node.0" (Michaël Zasso) [#55014](https://github.com/nodejs/node/pull/55014) +* \[[`5edec0e39a`](https://github.com/nodejs/node/commit/5edec0e39a)] - **(SEMVER-MAJOR)** **deps**: update V8 to 13.0.245.25 (Michaël Zasso) [#55014](https://github.com/nodejs/node/pull/55014) +* \[[`25b22e4754`](https://github.com/nodejs/node/commit/25b22e4754)] - **(SEMVER-MAJOR)** **deps**: upgrade npm to 11.0.0 (npm team) [#56274](https://github.com/nodejs/node/pull/56274) +* \[[`529b56ef9d`](https://github.com/nodejs/node/commit/529b56ef9d)] - **(SEMVER-MAJOR)** **fs**: deprecate passing invalid types in `fs.existsSync` (Carlos Espa) [#55753](https://github.com/nodejs/node/pull/55753) +* \[[`bf3bc4ec2f`](https://github.com/nodejs/node/commit/bf3bc4ec2f)] - **(SEMVER-MAJOR)** **src**: drop --experimental-permission in favour of --permission (Rafael Gonzaga) [#56240](https://github.com/nodejs/node/pull/56240) +* \[[`fd8de670da`](https://github.com/nodejs/node/commit/fd8de670da)] - **(SEMVER-MAJOR)** **stream**: catch and forward error from dest.write (jakecastelli) [#55270](https://github.com/nodejs/node/pull/55270) +* \[[`47b80c293d`](https://github.com/nodejs/node/commit/47b80c293d)] - **(SEMVER-MAJOR)** **deps**: update undici to 7.0.0 (Node.js GitHub Bot) [#56070](https://github.com/nodejs/node/pull/56070) +* \[[`58982d712b`](https://github.com/nodejs/node/commit/58982d712b)] - **(SEMVER-MAJOR)** **src**: add async context frame to AsyncResource (Gerhard Stöbich) [#56082](https://github.com/nodejs/node/pull/56082) +* \[[`4ee87b8bc3`](https://github.com/nodejs/node/commit/4ee87b8bc3)] - **(SEMVER-MAJOR)** **zlib**: deprecate classes usage without `new` (Yagiz Nizipli) [#55718](https://github.com/nodejs/node/pull/55718) +* \[[`b02cd411c2`](https://github.com/nodejs/node/commit/b02cd411c2)] - **(SEMVER-MAJOR)** **fs**: runtime deprecate `fs.F_OK`, `fs.R_OK`, `fs.W_OK`, `fs.X_OK` (Livia Medeiros) [#49686](https://github.com/nodejs/node/pull/49686) +* \[[`d9540b51eb`](https://github.com/nodejs/node/commit/d9540b51eb)] - **(SEMVER-MAJOR)** **fs**: remove `dirent.path` (Antoine du Hamel) [#55548](https://github.com/nodejs/node/pull/55548) +* \[[`0368f2f662`](https://github.com/nodejs/node/commit/0368f2f662)] - **(SEMVER-MAJOR)** **repl**: runtime deprecate instantiating without new (Aviv Keller) [#54869](https://github.com/nodejs/node/pull/54869) +* \[[`03dcd7077a`](https://github.com/nodejs/node/commit/03dcd7077a)] - **(SEMVER-MAJOR)** **src**: nuke deprecated and un-used enum members in `OptionEnvvarSettings` (Juan José) [#53079](https://github.com/nodejs/node/pull/53079) +* \[[`51ae57673d`](https://github.com/nodejs/node/commit/51ae57673d)] - **(SEMVER-MAJOR)** **lib**: make ALS default to AsyncContextFrame (Stephen Belanger) [#55552](https://github.com/nodejs/node/pull/55552) +* \[[`11fbdd8c9d`](https://github.com/nodejs/node/commit/11fbdd8c9d)] - **(SEMVER-MAJOR)** **url**: runtime deprecate url.parse (Yagiz Nizipli) [#55017](https://github.com/nodejs/node/pull/55017) +* \[[`019efe1453`](https://github.com/nodejs/node/commit/019efe1453)] - **(SEMVER-MAJOR)** **lib**: runtime deprecate SlowBuffer (Rafael Gonzaga) [#55175](https://github.com/nodejs/node/pull/55175) + +### Semver-Minor Commits + +* \[[`bf9f25719a`](https://github.com/nodejs/node/commit/bf9f25719a)] - **(SEMVER-MINOR)** **esm**: graduate import.meta properties (James M Snell) [#58011](https://github.com/nodejs/node/pull/58011) +* \[[`947c6a4405`](https://github.com/nodejs/node/commit/947c6a4405)] - **(SEMVER-MINOR)** **src**: add ExecutionAsyncId getter for any Context (Attila Szegedi) [#57820](https://github.com/nodejs/node/pull/57820) +* \[[`ea04184328`](https://github.com/nodejs/node/commit/ea04184328)] - **(SEMVER-MINOR)** **worker**: add worker.getHeapStatistics() (Matteo Collina) [#57888](https://github.com/nodejs/node/pull/57888) +* \[[`ec79f7686d`](https://github.com/nodejs/node/commit/ec79f7686d)] - **(SEMVER-MINOR)** **util**: add `types.isFloat16Array()` (Livia Medeiros) [#57879](https://github.com/nodejs/node/pull/57879) +* \[[`13dee58d0e`](https://github.com/nodejs/node/commit/13dee58d0e)] - **(SEMVER-MINOR)** **test\_runner**: add global setup and teardown functionality (Pietro Marchini) [#57438](https://github.com/nodejs/node/pull/57438) +* \[[`932c2d9c70`](https://github.com/nodejs/node/commit/932c2d9c70)] - **(SEMVER-MINOR)** **stream**: preserve AsyncLocalStorage context in finished() (Gürgün Dayıoğlu) [#57865](https://github.com/nodejs/node/pull/57865) +* \[[`18d6249580`](https://github.com/nodejs/node/commit/18d6249580)] - **(SEMVER-MINOR)** **repl**: add support for multiline history (Giovanni Bucci) [#57400](https://github.com/nodejs/node/pull/57400) +* \[[`c3e44342d9`](https://github.com/nodejs/node/commit/c3e44342d9)] - **(SEMVER-MINOR)** **lib**: add defaultValue and name options to AsyncLocalStorage (James M Snell) [#57766](https://github.com/nodejs/node/pull/57766) +* \[[`f99f815641`](https://github.com/nodejs/node/commit/f99f815641)] - **(SEMVER-MINOR)** **doc**: graduate multiple experimental apis (James M Snell) [#57765](https://github.com/nodejs/node/pull/57765) +* \[[`21f3c96199`](https://github.com/nodejs/node/commit/21f3c96199)] - **(SEMVER-MINOR)** **esm**: support top-level Wasm without package type (Guy Bedford) [#57610](https://github.com/nodejs/node/pull/57610) +* \[[`ada34bd0ea`](https://github.com/nodejs/node/commit/ada34bd0ea)] - **(SEMVER-MINOR)** **http**: support http proxy for fetch under NODE\_USE\_ENV\_PROXY (Joyee Cheung) [#57165](https://github.com/nodejs/node/pull/57165) +* \[[`05cf1410b1`](https://github.com/nodejs/node/commit/05cf1410b1)] - **(SEMVER-MINOR)** **assert**: mark partialDeepStrictEqual() as stable (Ruben Bridgewater) [#57370](https://github.com/nodejs/node/pull/57370) +* \[[`57e49ee777`](https://github.com/nodejs/node/commit/57e49ee777)] - **(SEMVER-MINOR)** **esm**: support source phase imports for WebAssembly (Guy Bedford) [#56919](https://github.com/nodejs/node/pull/56919) +* \[[`55413004c8`](https://github.com/nodejs/node/commit/55413004c8)] - **(SEMVER-MINOR)** **stream**: handle generator destruction from Duplex.from() (Matthieu Sieben) [#55096](https://github.com/nodejs/node/pull/55096) + +### Semver-Patch Commits + +* \[[`7df9558efc`](https://github.com/nodejs/node/commit/7df9558efc)] - **assert**: support `Float16Array` in loose deep equality checks (Livia Medeiros) [#57881](https://github.com/nodejs/node/pull/57881) +* \[[`d9e78c00c1`](https://github.com/nodejs/node/commit/d9e78c00c1)] - **assert,util**: fix constructor lookup in deep equal comparison (Ruben Bridgewater) [#57876](https://github.com/nodejs/node/pull/57876) +* \[[`f4572f0826`](https://github.com/nodejs/node/commit/f4572f0826)] - **assert,util**: improve deep object comparison performance (Ruben Bridgewater) [#57648](https://github.com/nodejs/node/pull/57648) +* \[[`2e9fb6e1e0`](https://github.com/nodejs/node/commit/2e9fb6e1e0)] - **assert,util**: improve unequal number comparison performance (Ruben Bridgewater) [#57619](https://github.com/nodejs/node/pull/57619) +* \[[`5f9cc5ecbb`](https://github.com/nodejs/node/commit/5f9cc5ecbb)] - **assert,util**: improve array comparison (Ruben Bridgewater) [#57619](https://github.com/nodejs/node/pull/57619) +* \[[`b5b192314c`](https://github.com/nodejs/node/commit/b5b192314c)] - **async\_hooks**: enable AsyncLocalStorage once constructed (Chengzhong Wu) [#58029](https://github.com/nodejs/node/pull/58029) +* \[[`442b4162fb`](https://github.com/nodejs/node/commit/442b4162fb)] - **benchmark**: add sqlite prepare select get (Vinícius Lourenço) [#58040](https://github.com/nodejs/node/pull/58040) +* \[[`2d894eacae`](https://github.com/nodejs/node/commit/2d894eacae)] - **benchmark**: add sqlite prepare select all (Vinícius Lourenço) [#58040](https://github.com/nodejs/node/pull/58040) +* \[[`4d47f3afef`](https://github.com/nodejs/node/commit/4d47f3afef)] - **benchmark**: add sqlite is transaction (Vinícius Lourenço) [#58040](https://github.com/nodejs/node/pull/58040) +* \[[`85f2bbc02b`](https://github.com/nodejs/node/commit/85f2bbc02b)] - **benchmark**: add sqlite prepare insert (Vinícius Lourenço) [#58040](https://github.com/nodejs/node/pull/58040) +* \[[`e61b38e47d`](https://github.com/nodejs/node/commit/e61b38e47d)] - **benchmark**: disambiguate `filename` and `dirname` read perf (Antoine du Hamel) [#58056](https://github.com/nodejs/node/pull/58056) +* \[[`ca86c93390`](https://github.com/nodejs/node/commit/ca86c93390)] - **buffer**: avoid creating unnecessary environment (Yagiz Nizipli) [#58053](https://github.com/nodejs/node/pull/58053) +* \[[`dc22890dd8`](https://github.com/nodejs/node/commit/dc22890dd8)] - **buffer**: improve byteLength performance (Yagiz Nizipli) [#58048](https://github.com/nodejs/node/pull/58048) +* \[[`619bf86fe9`](https://github.com/nodejs/node/commit/619bf86fe9)] - **buffer**: define global v8::CFunction objects as const (Mert Can Altin) [#57676](https://github.com/nodejs/node/pull/57676) +* \[[`d24414ceec`](https://github.com/nodejs/node/commit/d24414ceec)] - **build**: use `$(BUILDTYPE)` when cleaning coverage files (Aviv Keller) [#57995](https://github.com/nodejs/node/pull/57995) +* \[[`004913992c`](https://github.com/nodejs/node/commit/004913992c)] - **build**: define python when generating `out/Makefile` (Aviv Keller) [#57970](https://github.com/nodejs/node/pull/57970) +* \[[`77d11f9c7c`](https://github.com/nodejs/node/commit/77d11f9c7c)] - **build**: fix zstd libname (Antoine du Hamel) [#57999](https://github.com/nodejs/node/pull/57999) +* \[[`74473af8ee`](https://github.com/nodejs/node/commit/74473af8ee)] - **build**: use clang-cl in coverage-windows workflow (Michaël Zasso) [#57919](https://github.com/nodejs/node/pull/57919) +* \[[`46fc497e7b`](https://github.com/nodejs/node/commit/46fc497e7b)] - **build**: fix missing files warning (Luigi Pinca) [#57870](https://github.com/nodejs/node/pull/57870) +* \[[`403264c02e`](https://github.com/nodejs/node/commit/403264c02e)] - **build**: remove redundant `-mXX` flags for V8 (Michaël Zasso) [#57907](https://github.com/nodejs/node/pull/57907) +* \[[`e55b02b368`](https://github.com/nodejs/node/commit/e55b02b368)] - **build**: drop support for python 3.8 (Aviv Keller) [#55239](https://github.com/nodejs/node/pull/55239) +* \[[`234c71077b`](https://github.com/nodejs/node/commit/234c71077b)] - **crypto**: fix cross-realm `SharedArrayBuffer` validation (Antoine du Hamel) [#57974](https://github.com/nodejs/node/pull/57974) +* \[[`14367588d8`](https://github.com/nodejs/node/commit/14367588d8)] - **crypto**: fix cross-realm check of `ArrayBuffer` (Felipe Forbeck) [#57828](https://github.com/nodejs/node/pull/57828) +* \[[`0f55a96e9c`](https://github.com/nodejs/node/commit/0f55a96e9c)] - **crypto**: forbid passing `Float16Array` to `getRandomValues()` (Livia Medeiros) [#57880](https://github.com/nodejs/node/pull/57880) +* \[[`dce6f43a4f`](https://github.com/nodejs/node/commit/dce6f43a4f)] - **crypto**: revert dangerous uses of std::string\_view (Tobias Nießen) [#57816](https://github.com/nodejs/node/pull/57816) +* \[[`fd3fb0c347`](https://github.com/nodejs/node/commit/fd3fb0c347)] - **crypto**: fix misleading positional argument (Tobias Nießen) [#57843](https://github.com/nodejs/node/pull/57843) +* \[[`92aae40dce`](https://github.com/nodejs/node/commit/92aae40dce)] - **crypto**: make auth tag size assumption explicit (Tobias Nießen) [#57803](https://github.com/nodejs/node/pull/57803) +* \[[`4793bb2fdc`](https://github.com/nodejs/node/commit/4793bb2fdc)] - **crypto**: remove CipherBase::Init (Tobias Nießen) [#57787](https://github.com/nodejs/node/pull/57787) +* \[[`e567952388`](https://github.com/nodejs/node/commit/e567952388)] - **crypto**: remove BoringSSL dh-primes addition (Shelley Vohr) [#57023](https://github.com/nodejs/node/pull/57023) +* \[[`270ab65ee4`](https://github.com/nodejs/node/commit/270ab65ee4)] - **deps**: update ada to 3.2.3 (Node.js GitHub Bot) [#58045](https://github.com/nodejs/node/pull/58045) +* \[[`f725127c19`](https://github.com/nodejs/node/commit/f725127c19)] - **deps**: update zstd to 1.5.7 (Node.js GitHub Bot) [#57940](https://github.com/nodejs/node/pull/57940) +* \[[`fd6adb7de6`](https://github.com/nodejs/node/commit/fd6adb7de6)] - **deps**: update simdutf to 6.5.0 (Node.js GitHub Bot) [#57939](https://github.com/nodejs/node/pull/57939) +* \[[`cdedec7e29`](https://github.com/nodejs/node/commit/cdedec7e29)] - **deps**: update undici to 7.8.0 (Node.js GitHub Bot) [#57770](https://github.com/nodejs/node/pull/57770) +* \[[`878dc9337e`](https://github.com/nodejs/node/commit/878dc9337e)] - **deps**: update zlib to 1.3.0.1-motley-780819f (Node.js GitHub Bot) [#57768](https://github.com/nodejs/node/pull/57768) +* \[[`3e885e1441`](https://github.com/nodejs/node/commit/3e885e1441)] - **deps**: update timezone to 2025b (Node.js GitHub Bot) [#57857](https://github.com/nodejs/node/pull/57857) +* \[[`e92e100c9d`](https://github.com/nodejs/node/commit/e92e100c9d)] - **deps**: update amaro to 0.5.2 (Node.js GitHub Bot) [#57871](https://github.com/nodejs/node/pull/57871) +* \[[`afc49db038`](https://github.com/nodejs/node/commit/afc49db038)] - **deps**: update simdutf to 6.4.2 (Node.js GitHub Bot) [#57855](https://github.com/nodejs/node/pull/57855) +* \[[`70bd8bc174`](https://github.com/nodejs/node/commit/70bd8bc174)] - **deps**: delete OpenSSL demos, doc and test folders (Michaël Zasso) [#57835](https://github.com/nodejs/node/pull/57835) +* \[[`40dcd4a3d1`](https://github.com/nodejs/node/commit/40dcd4a3d1)] - **deps**: upgrade npm to 11.3.0 (npm team) [#57801](https://github.com/nodejs/node/pull/57801) +* \[[`678d82b9be`](https://github.com/nodejs/node/commit/678d82b9be)] - **deps**: update c-ares to v1.34.5 (Node.js GitHub Bot) [#57792](https://github.com/nodejs/node/pull/57792) +* \[[`f079c4aa37`](https://github.com/nodejs/node/commit/f079c4aa37)] - **deps**: update simdutf to 6.4.0 (Node.js GitHub Bot) [#56764](https://github.com/nodejs/node/pull/56764) +* \[[`ec29f563a9`](https://github.com/nodejs/node/commit/ec29f563a9)] - **deps**: update ada to 3.2.2 (Yagiz Nizipli) [#57693](https://github.com/nodejs/node/pull/57693) +* \[[`95296d0d84`](https://github.com/nodejs/node/commit/95296d0d84)] - **deps**: update amaro to 0.5.1 (Marco Ippolito) [#57704](https://github.com/nodejs/node/pull/57704) +* \[[`c377394657`](https://github.com/nodejs/node/commit/c377394657)] - **deps**: update undici to 7.6.0 (nodejs-github-bot) [#57685](https://github.com/nodejs/node/pull/57685) +* \[[`a56175561a`](https://github.com/nodejs/node/commit/a56175561a)] - **deps**: update amaro to 0.5.0 (nodejs-github-bot) [#57687](https://github.com/nodejs/node/pull/57687) +* \[[`a86912a462`](https://github.com/nodejs/node/commit/a86912a462)] - **deps**: update icu to 77.1 (Node.js GitHub Bot) [#57455](https://github.com/nodejs/node/pull/57455) +* \[[`0b2cf1b642`](https://github.com/nodejs/node/commit/0b2cf1b642)] - **deps**: update undici to 7.5.0 (Node.js GitHub Bot) [#57427](https://github.com/nodejs/node/pull/57427) +* \[[`c3927aa558`](https://github.com/nodejs/node/commit/c3927aa558)] - **deps**: upgrade npm to 11.2.0 (npm team) [#57334](https://github.com/nodejs/node/pull/57334) +* \[[`9c7bc95f56`](https://github.com/nodejs/node/commit/9c7bc95f56)] - **deps**: update undici to 7.4.0 (Node.js GitHub Bot) [#57236](https://github.com/nodejs/node/pull/57236) +* \[[`9dee7b94bf`](https://github.com/nodejs/node/commit/9dee7b94bf)] - **deps**: update undici to 7.3.0 (Node.js GitHub Bot) [#56624](https://github.com/nodejs/node/pull/56624) +* \[[`cadc4ed067`](https://github.com/nodejs/node/commit/cadc4ed067)] - **deps**: upgrade npm to 11.1.0 (npm team) [#56818](https://github.com/nodejs/node/pull/56818) +* \[[`5770972dc6`](https://github.com/nodejs/node/commit/5770972dc6)] - **deps**: update undici to 7.2.1 (Node.js GitHub Bot) [#56569](https://github.com/nodejs/node/pull/56569) +* \[[`67b647edc7`](https://github.com/nodejs/node/commit/67b647edc7)] - **deps**: update undici to 7.2.0 (Node.js GitHub Bot) [#56335](https://github.com/nodejs/node/pull/56335) +* \[[`6c03beba46`](https://github.com/nodejs/node/commit/6c03beba46)] - **deps**: update undici to 7.1.0 (Node.js GitHub Bot) [#56179](https://github.com/nodejs/node/pull/56179) +* \[[`8b4bacdf1a`](https://github.com/nodejs/node/commit/8b4bacdf1a)] - **dns**: restore dns query cache ttl (Ethan Arrowood) [#57640](https://github.com/nodejs/node/pull/57640) +* \[[`f6a085da3f`](https://github.com/nodejs/node/commit/f6a085da3f)] - **doc**: mark Node.js 18 as End-of-Life (Richard Lau) [#58084](https://github.com/nodejs/node/pull/58084) +* \[[`ca67c002d6`](https://github.com/nodejs/node/commit/ca67c002d6)] - **doc**: add dario-piotrowicz to collaborators (Dario Piotrowicz) [#58102](https://github.com/nodejs/node/pull/58102) +* \[[`cdb3d01194`](https://github.com/nodejs/node/commit/cdb3d01194)] - **doc**: fix formatting of `import.meta.filename` section (Antoine du Hamel) [#58079](https://github.com/nodejs/node/pull/58079) +* \[[`0557d60f41`](https://github.com/nodejs/node/commit/0557d60f41)] - **doc**: fix env variable name in `util.styleText` (Antoine du Hamel) [#58072](https://github.com/nodejs/node/pull/58072) +* \[[`d5783af1fe`](https://github.com/nodejs/node/commit/d5783af1fe)] - **doc**: add returns for https.get (Eng Zer Jun) [#58025](https://github.com/nodejs/node/pull/58025) +* \[[`a2260a4a18`](https://github.com/nodejs/node/commit/a2260a4a18)] - **doc**: fix typo in `buffer.md` (chocolateboy) [#58052](https://github.com/nodejs/node/pull/58052) +* \[[`352df168da`](https://github.com/nodejs/node/commit/352df168da)] - **doc**: reserve module version 136 for Electron 37 (Calvin) [#57979](https://github.com/nodejs/node/pull/57979) +* \[[`ebbbdd15a1`](https://github.com/nodejs/node/commit/ebbbdd15a1)] - **doc**: correct deprecation type of `assert.CallTracker` (René) [#57997](https://github.com/nodejs/node/pull/57997) +* \[[`36b0a296db`](https://github.com/nodejs/node/commit/36b0a296db)] - **doc**: fix `AsyncLocalStorage` example response changes after node v18 (Naor Tedgi (Abu Emma)) [#57969](https://github.com/nodejs/node/pull/57969) +* \[[`8b4adfb439`](https://github.com/nodejs/node/commit/8b4adfb439)] - **doc**: fix linter errors (Antoine du Hamel) [#57987](https://github.com/nodejs/node/pull/57987) +* \[[`626b26d888`](https://github.com/nodejs/node/commit/626b26d888)] - **doc**: mark devtools integration section as active development (Chengzhong Wu) [#57886](https://github.com/nodejs/node/pull/57886) +* \[[`56a808d20b`](https://github.com/nodejs/node/commit/56a808d20b)] - **doc**: fix typo in `module.md` (Alex Schwartz) [#57889](https://github.com/nodejs/node/pull/57889) +* \[[`df90bd9656`](https://github.com/nodejs/node/commit/df90bd9656)] - **doc**: increase z-index of header element (Dario Piotrowicz) [#57851](https://github.com/nodejs/node/pull/57851) +* \[[`74c415d46a`](https://github.com/nodejs/node/commit/74c415d46a)] - **doc**: add missing TS formats for `load` hooks (Antoine du Hamel) [#57837](https://github.com/nodejs/node/pull/57837) +* \[[`ce1b5aabd4`](https://github.com/nodejs/node/commit/ce1b5aabd4)] - **doc**: clarify the multi REPL example (Dario Piotrowicz) [#57759](https://github.com/nodejs/node/pull/57759) +* \[[`deb434e61f`](https://github.com/nodejs/node/commit/deb434e61f)] - **doc**: fix deprecation type for `DEP0148` (Livia Medeiros) [#57785](https://github.com/nodejs/node/pull/57785) +* \[[`a5ef2e8858`](https://github.com/nodejs/node/commit/a5ef2e8858)] - **doc**: list DOMException as a potential error raised by Node.js (Chengzhong Wu) [#57783](https://github.com/nodejs/node/pull/57783) +* \[[`f66a2717ee`](https://github.com/nodejs/node/commit/f66a2717ee)] - **doc**: add missing v0.x changelog entries (Antoine du Hamel) [#57779](https://github.com/nodejs/node/pull/57779) +* \[[`05098668ba`](https://github.com/nodejs/node/commit/05098668ba)] - **doc**: fix typo in writing-docs (Sebastian Beltran) [#57776](https://github.com/nodejs/node/pull/57776) +* \[[`379718e26e`](https://github.com/nodejs/node/commit/379718e26e)] - **doc**: clarify examples section in REPL doc (Dario Piotrowicz) [#57762](https://github.com/nodejs/node/pull/57762) +* \[[`952a212377`](https://github.com/nodejs/node/commit/952a212377)] - **doc**: explicitly state that corepack will be removed in v25+ (Trivikram Kamat) [#57747](https://github.com/nodejs/node/pull/57747) +* \[[`81066717d0`](https://github.com/nodejs/node/commit/81066717d0)] - **doc**: update position type to integer | null in fs (Yukihiro Hasegawa) [#57745](https://github.com/nodejs/node/pull/57745) +* \[[`a00fec62f9`](https://github.com/nodejs/node/commit/a00fec62f9)] - **doc**: allow the $schema property in node.config.json (Remco Haszing) [#57560](https://github.com/nodejs/node/pull/57560) +* \[[`cc848986ad`](https://github.com/nodejs/node/commit/cc848986ad)] - **doc**: update CI instructions (Antoine du Hamel) [#57743](https://github.com/nodejs/node/pull/57743) +* \[[`576a6df5bb`](https://github.com/nodejs/node/commit/576a6df5bb)] - **doc**: update example of using `await` in REPL (Dario Piotrowicz) [#57653](https://github.com/nodejs/node/pull/57653) +* \[[`0a15b00d34`](https://github.com/nodejs/node/commit/0a15b00d34)] - **doc**: add back mention of visa fees to onboarding doc (Darshan Sen) [#57730](https://github.com/nodejs/node/pull/57730) +* \[[`766d9a8eac`](https://github.com/nodejs/node/commit/766d9a8eac)] - **doc**: remove link to `QUIC.md` (Antoine du Hamel) [#57729](https://github.com/nodejs/node/pull/57729) +* \[[`a8da209796`](https://github.com/nodejs/node/commit/a8da209796)] - **doc**: process.execve is only unavailable for Windows (Yaksh Bariya) [#57726](https://github.com/nodejs/node/pull/57726) +* \[[`d066d1fcec`](https://github.com/nodejs/node/commit/d066d1fcec)] - **doc**: mark type stripping as release candidate (Marco Ippolito) [#57705](https://github.com/nodejs/node/pull/57705) +* \[[`35096b7353`](https://github.com/nodejs/node/commit/35096b7353)] - **doc**: clarify `unhandledRejection` events behaviors in process doc (Dario Piotrowicz) [#57654](https://github.com/nodejs/node/pull/57654) +* \[[`27b113dced`](https://github.com/nodejs/node/commit/27b113dced)] - **doc**: improved fetch docs (Alessandro Miliucci) [#57296](https://github.com/nodejs/node/pull/57296) +* \[[`310ccb5b7d`](https://github.com/nodejs/node/commit/310ccb5b7d)] - **doc**: document REPL custom eval arguments (Dario Piotrowicz) [#57690](https://github.com/nodejs/node/pull/57690) +* \[[`44dfbeca23`](https://github.com/nodejs/node/commit/44dfbeca23)] - **doc**: classify Chrome DevTools Protocol as tier 2 (Chengzhong Wu) [#57634](https://github.com/nodejs/node/pull/57634) +* \[[`1e920a06c7`](https://github.com/nodejs/node/commit/1e920a06c7)] - **doc**: mark multiple vm module APIS stable (James M Snell) [#57513](https://github.com/nodejs/node/pull/57513) +* \[[`db770a0b3b`](https://github.com/nodejs/node/commit/db770a0b3b)] - **doc**: correct status of require(esm) warning in v20 changelog (Joyee Cheung) [#57529](https://github.com/nodejs/node/pull/57529) +* \[[`24c460dc0c`](https://github.com/nodejs/node/commit/24c460dc0c)] - **doc**: reserve NMV 135 for Electron 36 (David Sanders) [#57151](https://github.com/nodejs/node/pull/57151) +* \[[`5119049ca6`](https://github.com/nodejs/node/commit/5119049ca6)] - **doc**: fix faulty YAML metadata (Antoine du Hamel) [#56508](https://github.com/nodejs/node/pull/56508) +* \[[`7bedcfd4a2`](https://github.com/nodejs/node/commit/7bedcfd4a2)] - **doc**: fix typo (Alex Yang) [#56125](https://github.com/nodejs/node/pull/56125) +* \[[`069ec1b983`](https://github.com/nodejs/node/commit/069ec1b983)] - **doc**: consolidate history table of CustomEvent (Edigleysson Silva (Edy)) [#55758](https://github.com/nodejs/node/pull/55758) +* \[[`304f164f52`](https://github.com/nodejs/node/commit/304f164f52)] - **doc,build,win**: update docs with clang (Stefan Stojanovic) [#57991](https://github.com/nodejs/node/pull/57991) +* \[[`c4ca0d7ab1`](https://github.com/nodejs/node/commit/c4ca0d7ab1)] - **esm**: avoid `import.meta` setup costs for unused properties (Antoine du Hamel) [#57286](https://github.com/nodejs/node/pull/57286) +* \[[`073d40be42`](https://github.com/nodejs/node/commit/073d40be42)] - **fs**: added test for missing call to uv\_fs\_req\_cleanup (Justin Nietzel) [#57811](https://github.com/nodejs/node/pull/57811) +* \[[`52e4967f45`](https://github.com/nodejs/node/commit/52e4967f45)] - **fs**: add missing call to uv\_fs\_req\_cleanup (Justin Nietzel) [#57811](https://github.com/nodejs/node/pull/57811) +* \[[`3edea66431`](https://github.com/nodejs/node/commit/3edea66431)] - **fs**: improve globSync performance (Rich Trott) [#57725](https://github.com/nodejs/node/pull/57725) +* \[[`b8865dfda5`](https://github.com/nodejs/node/commit/b8865dfda5)] - **fs**: only show deprecation warning when error code matches (Antoine du Hamel) [#56549](https://github.com/nodejs/node/pull/56549) +* \[[`c91ce2120c`](https://github.com/nodejs/node/commit/c91ce2120c)] - **fs**: fix `getDirent().parentPath` when type is `UV_DIRENT_UNKNOWN` (Livia Medeiros) [#55553](https://github.com/nodejs/node/pull/55553) +* \[[`5e9cac2714`](https://github.com/nodejs/node/commit/5e9cac2714)] - **http2**: add raw header array support to h2Session.request() (Tim Perry) [#57917](https://github.com/nodejs/node/pull/57917) +* \[[`924ebcd7f7`](https://github.com/nodejs/node/commit/924ebcd7f7)] - **http2**: use args.This() instead of args.Holder() (Joyee Cheung) [#58004](https://github.com/nodejs/node/pull/58004) +* \[[`a3655645d9`](https://github.com/nodejs/node/commit/a3655645d9)] - **http2**: fix graceful session close (Kushagra Pandey) [#57808](https://github.com/nodejs/node/pull/57808) +* \[[`406b06b046`](https://github.com/nodejs/node/commit/406b06b046)] - **http2**: fix check for `frame->hd.type` (hanguanqiang) [#57644](https://github.com/nodejs/node/pull/57644) +* \[[`8f3aeea613`](https://github.com/nodejs/node/commit/8f3aeea613)] - **http2**: skip writeHead if stream is closed (Shima Ryuhei) [#57686](https://github.com/nodejs/node/pull/57686) +* \[[`398674a25a`](https://github.com/nodejs/node/commit/398674a25a)] - **lib**: avoid StackOverflow on `serializeError` (Chengzhong Wu) [#58075](https://github.com/nodejs/node/pull/58075) +* \[[`4ef6376cff`](https://github.com/nodejs/node/commit/4ef6376cff)] - **lib**: resolve the issue of not adhering to the specified buffer size (0hm☘️🏳️‍⚧️) [#55896](https://github.com/nodejs/node/pull/55896) +* \[[`5edcb28583`](https://github.com/nodejs/node/commit/5edcb28583)] - **lib**: fix AbortSignal.any() with timeout signals (Gürgün Dayıoğlu) [#57867](https://github.com/nodejs/node/pull/57867) +* \[[`68c5954d59`](https://github.com/nodejs/node/commit/68c5954d59)] - **lib**: use Map primordial for ActiveAsyncContextFrame (Gürgün Dayıoğlu) [#57670](https://github.com/nodejs/node/pull/57670) +* \[[`62640750fd`](https://github.com/nodejs/node/commit/62640750fd)] - **meta**: allow penetration testing on live system with prior authorization (Matteo Collina) [#57966](https://github.com/nodejs/node/pull/57966) +* \[[`33803a5fbb`](https://github.com/nodejs/node/commit/33803a5fbb)] - **meta**: fix subsystem in commit title (Luigi Pinca) [#57945](https://github.com/nodejs/node/pull/57945) +* \[[`7e195ec8f8`](https://github.com/nodejs/node/commit/7e195ec8f8)] - **meta**: bump Mozilla-Actions/sccache-action from 0.0.8 to 0.0.9 (dependabot\[bot]) [#57720](https://github.com/nodejs/node/pull/57720) +* \[[`6ab9db9552`](https://github.com/nodejs/node/commit/6ab9db9552)] - **meta**: bump actions/download-artifact from 4.1.9 to 4.2.1 (dependabot\[bot]) [#57719](https://github.com/nodejs/node/pull/57719) +* \[[`f0c84a6aab`](https://github.com/nodejs/node/commit/f0c84a6aab)] - **meta**: bump actions/setup-python from 5.4.0 to 5.5.0 (dependabot\[bot]) [#57718](https://github.com/nodejs/node/pull/57718) +* \[[`eb1a515c99`](https://github.com/nodejs/node/commit/eb1a515c99)] - **meta**: bump peter-evans/create-pull-request from 7.0.7 to 7.0.8 (dependabot\[bot]) [#57717](https://github.com/nodejs/node/pull/57717) +* \[[`89c156d715`](https://github.com/nodejs/node/commit/89c156d715)] - **meta**: bump github/codeql-action from 3.28.10 to 3.28.13 (dependabot\[bot]) [#57716](https://github.com/nodejs/node/pull/57716) +* \[[`8e27c827fa`](https://github.com/nodejs/node/commit/8e27c827fa)] - **meta**: bump actions/cache from 4.2.2 to 4.2.3 (dependabot\[bot]) [#57715](https://github.com/nodejs/node/pull/57715) +* \[[`dd5e580acd`](https://github.com/nodejs/node/commit/dd5e580acd)] - **meta**: bump actions/setup-node from 4.2.0 to 4.3.0 (dependabot\[bot]) [#57714](https://github.com/nodejs/node/pull/57714) +* \[[`4876e1658f`](https://github.com/nodejs/node/commit/4876e1658f)] - **meta**: bump actions/upload-artifact from 4.6.1 to 4.6.2 (dependabot\[bot]) [#57713](https://github.com/nodejs/node/pull/57713) +* \[[`004914722f`](https://github.com/nodejs/node/commit/004914722f)] - **module**: fix incorrect formatting in require(esm) cycle error message (haykam821) [#57453](https://github.com/nodejs/node/pull/57453) +* \[[`a5406899db`](https://github.com/nodejs/node/commit/a5406899db)] - **module**: improve `getPackageType` performance (Dario Piotrowicz) [#57599](https://github.com/nodejs/node/pull/57599) +* \[[`6adbbe2887`](https://github.com/nodejs/node/commit/6adbbe2887)] - **module**: remove unnecessary `readPackage` function (Dario Piotrowicz) [#57596](https://github.com/nodejs/node/pull/57596) +* \[[`1e490aa570`](https://github.com/nodejs/node/commit/1e490aa570)] - **module**: improve typescript error message format (Marco Ippolito) [#57687](https://github.com/nodejs/node/pull/57687) +* \[[`ecd081df82`](https://github.com/nodejs/node/commit/ecd081df82)] - **node-api**: add nested object wrap and napi\_ref test (Chengzhong Wu) [#57981](https://github.com/nodejs/node/pull/57981) +* \[[`b4f6aa8a87`](https://github.com/nodejs/node/commit/b4f6aa8a87)] - **node-api**: convert NewEnv to node\_napi\_env\_\_::New (Vladimir Morozov) [#57834](https://github.com/nodejs/node/pull/57834) +* \[[`8cd98220af`](https://github.com/nodejs/node/commit/8cd98220af)] - **os**: fix netmask format check condition in getCIDR function (Wiyeong Seo) [#57324](https://github.com/nodejs/node/pull/57324) +* \[[`8b83ab39e3`](https://github.com/nodejs/node/commit/8b83ab39e3)] - **process**: disable building execve on IBM i (Abdirahim Musse) [#57883](https://github.com/nodejs/node/pull/57883) +* \[[`9230f22029`](https://github.com/nodejs/node/commit/9230f22029)] - **process**: remove support for undocumented symbol (Antoine du Hamel) [#56552](https://github.com/nodejs/node/pull/56552) +* \[[`5835de65ee`](https://github.com/nodejs/node/commit/5835de65ee)] - **quic**: fix debug log (jakecastelli) [#57689](https://github.com/nodejs/node/pull/57689) +* \[[`14b357940c`](https://github.com/nodejs/node/commit/14b357940c)] - _**Revert**_ "**readline**: add stricter validation for functions called after closed" (Dario Piotrowicz) [#58024](https://github.com/nodejs/node/pull/58024) +* \[[`ab99ee6f4c`](https://github.com/nodejs/node/commit/ab99ee6f4c)] - **repl**: fix multiline history editing string order (Giovanni Bucci) [#57874](https://github.com/nodejs/node/pull/57874) +* \[[`160da87484`](https://github.com/nodejs/node/commit/160da87484)] - **repl**: deprecate `repl.builtinModules` (Dario Piotrowicz) [#57508](https://github.com/nodejs/node/pull/57508) +* \[[`10eb2b079e`](https://github.com/nodejs/node/commit/10eb2b079e)] - **sqlite**: add location method (Edy Silva) [#57860](https://github.com/nodejs/node/pull/57860) +* \[[`da05addc5e`](https://github.com/nodejs/node/commit/da05addc5e)] - **sqlite**: add getter to detect transactions (Colin Ihrig) [#57925](https://github.com/nodejs/node/pull/57925) +* \[[`0df87e07a0`](https://github.com/nodejs/node/commit/0df87e07a0)] - **sqlite**: add timeout options to DatabaseSync (Edy Silva) [#57752](https://github.com/nodejs/node/pull/57752) +* \[[`2b2a0bf96b`](https://github.com/nodejs/node/commit/2b2a0bf96b)] - **sqlite**: add setReturnArrays method to StatementSync (Gürgün Dayıoğlu) [#57542](https://github.com/nodejs/node/pull/57542) +* \[[`064e0ebc90`](https://github.com/nodejs/node/commit/064e0ebc90)] - **sqlite**: enable common flags (Edy Silva) [#57621](https://github.com/nodejs/node/pull/57621) +* \[[`26fa594454`](https://github.com/nodejs/node/commit/26fa594454)] - **sqlite**: refactor prepared statement iterator (Colin Ihrig) [#57569](https://github.com/nodejs/node/pull/57569) +* \[[`0bf2c2827c`](https://github.com/nodejs/node/commit/0bf2c2827c)] - **sqlite,doc,test**: add aggregate function (Edy Silva) [#56600](https://github.com/nodejs/node/pull/56600) +* \[[`da281d7651`](https://github.com/nodejs/node/commit/da281d7651)] - **sqlite,src**: refactor sqlite value conversion (Edy Silva) [#57571](https://github.com/nodejs/node/pull/57571) +* \[[`413e93ce7d`](https://github.com/nodejs/node/commit/413e93ce7d)] - **src**: only block on user blocking worker tasks (Joyee Cheung) [#58047](https://github.com/nodejs/node/pull/58047) +* \[[`a5d01667e1`](https://github.com/nodejs/node/commit/a5d01667e1)] - **src**: use priority queue to run worker tasks (Joyee Cheung) [#58047](https://github.com/nodejs/node/pull/58047) +* \[[`d2f5ceb757`](https://github.com/nodejs/node/commit/d2f5ceb757)] - **src**: add more debug logs and comments in NodePlatform (Joyee Cheung) [#58047](https://github.com/nodejs/node/pull/58047) +* \[[`130eaa20a4`](https://github.com/nodejs/node/commit/130eaa20a4)] - **src**: improve parsing of boolean options (Edy Silva) [#58039](https://github.com/nodejs/node/pull/58039) +* \[[`f7ab6300de`](https://github.com/nodejs/node/commit/f7ab6300de)] - **src**: remove unused detachArrayBuffer method (Yagiz Nizipli) [#58055](https://github.com/nodejs/node/pull/58055) +* \[[`d712aa4cc0`](https://github.com/nodejs/node/commit/d712aa4cc0)] - **src**: fix internalModuleStat v8 fast path (Yagiz Nizipli) [#58054](https://github.com/nodejs/node/pull/58054) +* \[[`902cbe66a2`](https://github.com/nodejs/node/commit/902cbe66a2)] - **src**: fix EnvironmentOptions.async\_context\_frame default value (Chengzhong Wu) [#58030](https://github.com/nodejs/node/pull/58030) +* \[[`cfb39b9adb`](https://github.com/nodejs/node/commit/cfb39b9adb)] - **src**: annotate BaseObjects in the heap snapshots correctly (Joyee Cheung) [#57417](https://github.com/nodejs/node/pull/57417) +* \[[`4e02f239e4`](https://github.com/nodejs/node/commit/4e02f239e4)] - **src**: use macros to reduce code duplication is cares\_wrap (James M Snell) [#57937](https://github.com/nodejs/node/pull/57937) +* \[[`f36d30043a`](https://github.com/nodejs/node/commit/f36d30043a)] - **src**: improve error handling in cares\_wrap (James M Snell) [#57937](https://github.com/nodejs/node/pull/57937) +* \[[`88f047b828`](https://github.com/nodejs/node/commit/88f047b828)] - **src**: use ranges library (C++20) to simplify code (Daniel Lemire) [#57975](https://github.com/nodejs/node/pull/57975) +* \[[`09206e9731`](https://github.com/nodejs/node/commit/09206e9731)] - **src**: fix -Wunreachable-code-return in node\_sea (Shelley Vohr) [#57664](https://github.com/nodejs/node/pull/57664) +* \[[`87fd838a73`](https://github.com/nodejs/node/commit/87fd838a73)] - **src**: add dcheck\_eq for Object::New constructor calls (Jonas) [#57943](https://github.com/nodejs/node/pull/57943) +* \[[`2877207e19`](https://github.com/nodejs/node/commit/2877207e19)] - **src**: move windows specific fns to `_WIN32` (Yagiz Nizipli) [#57951](https://github.com/nodejs/node/pull/57951) +* \[[`b4055150bd`](https://github.com/nodejs/node/commit/b4055150bd)] - **src**: avoid calling SetPrototypeV2() (Yagiz Nizipli) [#57949](https://github.com/nodejs/node/pull/57949) +* \[[`46062f14e7`](https://github.com/nodejs/node/commit/46062f14e7)] - **src**: change DCHECK to CHECK (Wuli Zuo) [#57948](https://github.com/nodejs/node/pull/57948) +* \[[`a1106cc878`](https://github.com/nodejs/node/commit/a1106cc878)] - **src**: improve thread safety of TaskQueue (Shelley Vohr) [#57910](https://github.com/nodejs/node/pull/57910) +* \[[`99ed5034ea`](https://github.com/nodejs/node/commit/99ed5034ea)] - **src**: fixup errorhandling more in various places (James M Snell) [#57852](https://github.com/nodejs/node/pull/57852) +* \[[`227f2cb9a8`](https://github.com/nodejs/node/commit/227f2cb9a8)] - **src**: fix typo in comments (Edy Silva) [#57868](https://github.com/nodejs/node/pull/57868) +* \[[`a7d614a930`](https://github.com/nodejs/node/commit/a7d614a930)] - **src**: update std::vector\> to use v8::LocalVector\ (Aditi) [#57646](https://github.com/nodejs/node/pull/57646) +* \[[`4e7ae97dce`](https://github.com/nodejs/node/commit/4e7ae97dce)] - **src**: update std::vector\> to use v8::LocalVector\ (Aditi) [#57642](https://github.com/nodejs/node/pull/57642) +* \[[`aab4adb34e`](https://github.com/nodejs/node/commit/aab4adb34e)] - **src**: update std::vector\> to use v8::LocalVector\ (Aditi) [#57578](https://github.com/nodejs/node/pull/57578) +* \[[`fded233676`](https://github.com/nodejs/node/commit/fded233676)] - **src**: migrate from deprecated SnapshotCreator constructor (Joyee Cheung) [#55337](https://github.com/nodejs/node/pull/55337) +* \[[`8c5f9b4708`](https://github.com/nodejs/node/commit/8c5f9b4708)] - **src**: improve error message for invalid child stdio type in spawn\_sync (Dario Piotrowicz) [#57589](https://github.com/nodejs/node/pull/57589) +* \[[`14d751a736`](https://github.com/nodejs/node/commit/14d751a736)] - **src**: implement util.types fast API calls (Ruben Bridgewater) [#57819](https://github.com/nodejs/node/pull/57819) +* \[[`5e14fd13aa`](https://github.com/nodejs/node/commit/5e14fd13aa)] - **src**: enter and lock isolate properly in json parser (Joyee Cheung) [#57823](https://github.com/nodejs/node/pull/57823) +* \[[`34350019f8`](https://github.com/nodejs/node/commit/34350019f8)] - **src**: add BaseObjectPtr nullptr operations (Chengzhong Wu) [#56585](https://github.com/nodejs/node/pull/56585) +* \[[`d50b8a8815`](https://github.com/nodejs/node/commit/d50b8a8815)] - **src**: remove `void*` -> `char*` -> `void*` casts (Tobias Nießen) [#57791](https://github.com/nodejs/node/pull/57791) +* \[[`2b0f65ed5f`](https://github.com/nodejs/node/commit/2b0f65ed5f)] - **src**: improve error handling in `node_env_var.cc` (Antoine du Hamel) [#57767](https://github.com/nodejs/node/pull/57767) +* \[[`fc5295521a`](https://github.com/nodejs/node/commit/fc5295521a)] - **src**: improve error handling in node\_http2 (James M Snell) [#57764](https://github.com/nodejs/node/pull/57764) +* \[[`c707633f45`](https://github.com/nodejs/node/commit/c707633f45)] - **src**: improve error handing in node\_messaging (James M Snell) [#57760](https://github.com/nodejs/node/pull/57760) +* \[[`4093de6ff5`](https://github.com/nodejs/node/commit/4093de6ff5)] - **src**: improve error handling in crypto\_x509 (James M Snell) [#57757](https://github.com/nodejs/node/pull/57757) +* \[[`d309712820`](https://github.com/nodejs/node/commit/d309712820)] - **src**: improve error handling in callback.cc (James M Snell) [#57758](https://github.com/nodejs/node/pull/57758) +* \[[`6d39c47ee8`](https://github.com/nodejs/node/commit/6d39c47ee8)] - **src**: improve StringBytes error handling (James M Snell) [#57706](https://github.com/nodejs/node/pull/57706) +* \[[`3ff37a844f`](https://github.com/nodejs/node/commit/3ff37a844f)] - **src**: initialize privateSymbols for per\_context (Jason Zhang) [#57479](https://github.com/nodejs/node/pull/57479) +* \[[`56380df40c`](https://github.com/nodejs/node/commit/56380df40c)] - **src**: improve error handling in process.env handling (James M Snell) [#57707](https://github.com/nodejs/node/pull/57707) +* \[[`db8b29d282`](https://github.com/nodejs/node/commit/db8b29d282)] - **src**: remove unused variable in crypto\_x509.cc (Michaël Zasso) [#57754](https://github.com/nodejs/node/pull/57754) +* \[[`ed72044cca`](https://github.com/nodejs/node/commit/ed72044cca)] - **src**: update std::vector\> to use v8::LocalVector\ (Aditi) [#57733](https://github.com/nodejs/node/pull/57733) +* \[[`50f57073d8`](https://github.com/nodejs/node/commit/50f57073d8)] - **src**: fix kill signal 0 on Windows (Stefan Stojanovic) [#57695](https://github.com/nodejs/node/pull/57695) +* \[[`e144b69044`](https://github.com/nodejs/node/commit/e144b69044)] - **src**: fixup fs SyncCall to propagate errors correctly (James M Snell) [#57711](https://github.com/nodejs/node/pull/57711) +* \[[`f58c12078b`](https://github.com/nodejs/node/commit/f58c12078b)] - **src**: fix inefficient usage of v8\_inspector::StringView (Simon Zünd) [#52372](https://github.com/nodejs/node/pull/52372) +* \[[`a3ad331ce5`](https://github.com/nodejs/node/commit/a3ad331ce5)] - **src**: disable abseil deadlock detection (Chengzhong Wu) [#57582](https://github.com/nodejs/node/pull/57582) +* \[[`e4ff2b6fad`](https://github.com/nodejs/node/commit/e4ff2b6fad)] - **src**: remove deleted tls file (Shelley Vohr) [#57481](https://github.com/nodejs/node/pull/57481) +* \[[`d5db63a1a8`](https://github.com/nodejs/node/commit/d5db63a1a8)] - _**Revert**_ "**src**: do not expose simdjson.h in node\_config\_file.h" (James M Snell) [#57197](https://github.com/nodejs/node/pull/57197) +* \[[`076a99f11d`](https://github.com/nodejs/node/commit/076a99f11d)] - **src**: do not expose simdjson.h in node\_config\_file.h (Cheng) [#57173](https://github.com/nodejs/node/pull/57173) +* \[[`ad845588d0`](https://github.com/nodejs/node/commit/ad845588d0)] - _**Revert**_ "**src**: modernize cleanup queue to use c++20" (Richard Lau) [#56846](https://github.com/nodejs/node/pull/56846) +* \[[`581b44421a`](https://github.com/nodejs/node/commit/581b44421a)] - **src**: modernize cleanup queue to use c++20 (Yagiz Nizipli) [#56063](https://github.com/nodejs/node/pull/56063) +* \[[`a154352215`](https://github.com/nodejs/node/commit/a154352215)] - **src,permission**: make ERR\_ACCESS\_DENIED more descriptive (Rafael Gonzaga) [#57585](https://github.com/nodejs/node/pull/57585) +* \[[`6156f8a6d5`](https://github.com/nodejs/node/commit/6156f8a6d5)] - _**Revert**_ "**stream**: handle generator destruction from Duplex.from()" (jakecastelli) [#56278](https://github.com/nodejs/node/pull/56278) +* \[[`a0077c9b8b`](https://github.com/nodejs/node/commit/a0077c9b8b)] - **test**: remove deadlock workaround (Joyee Cheung) [#58047](https://github.com/nodejs/node/pull/58047) +* \[[`1f2b26172a`](https://github.com/nodejs/node/commit/1f2b26172a)] - **test**: prevent extraneous HOSTNAME substitution in test-runner-output (René) [#58076](https://github.com/nodejs/node/pull/58076) +* \[[`9ba16469c3`](https://github.com/nodejs/node/commit/9ba16469c3)] - **test**: update WPT for WebCryptoAPI to b48efd681e (Node.js GitHub Bot) [#58044](https://github.com/nodejs/node/pull/58044) +* \[[`3d708e0132`](https://github.com/nodejs/node/commit/3d708e0132)] - **test**: add missing newlines to repl .exit writes (Dario Piotrowicz) [#58041](https://github.com/nodejs/node/pull/58041) +* \[[`3457aee009`](https://github.com/nodejs/node/commit/3457aee009)] - **test**: use validateByRetainingPath in heapdump tests (Joyee Cheung) [#57417](https://github.com/nodejs/node/pull/57417) +* \[[`3d34c5f5e3`](https://github.com/nodejs/node/commit/3d34c5f5e3)] - **test**: add fast api tests for getLibuvNow() (Yagiz Nizipli) [#58022](https://github.com/nodejs/node/pull/58022) +* \[[`b8b019245b`](https://github.com/nodejs/node/commit/b8b019245b)] - **test**: add ALS test using http agent keep alive (Gerhard Stöbich) [#58017](https://github.com/nodejs/node/pull/58017) +* \[[`cbd2abeb8d`](https://github.com/nodejs/node/commit/cbd2abeb8d)] - **test**: deflake test-http2-options-max-headers-block-length (Luigi Pinca) [#57959](https://github.com/nodejs/node/pull/57959) +* \[[`21d052a578`](https://github.com/nodejs/node/commit/21d052a578)] - **test**: rename to getCallSites (Wuli Zuo) [#57948](https://github.com/nodejs/node/pull/57948) +* \[[`f2fd19e641`](https://github.com/nodejs/node/commit/f2fd19e641)] - **test**: force GC in test-file-write-stream4 (Luigi Pinca) [#57930](https://github.com/nodejs/node/pull/57930) +* \[[`7039173398`](https://github.com/nodejs/node/commit/7039173398)] - **test**: enable skipped colorize test (Shima Ryuhei) [#57887](https://github.com/nodejs/node/pull/57887) +* \[[`baa6968f95`](https://github.com/nodejs/node/commit/baa6968f95)] - **test**: update WPT for WebCryptoAPI to 164426ace2 (Node.js GitHub Bot) [#57854](https://github.com/nodejs/node/pull/57854) +* \[[`660d238798`](https://github.com/nodejs/node/commit/660d238798)] - **test**: deflake test-buffer-large-size (jakecastelli) [#57789](https://github.com/nodejs/node/pull/57789) +* \[[`ce2274d52f`](https://github.com/nodejs/node/commit/ce2274d52f)] - **test**: add test for frame count being 0.5 (Jake Yuesong Li) [#57732](https://github.com/nodejs/node/pull/57732) +* \[[`9d2a09db00`](https://github.com/nodejs/node/commit/9d2a09db00)] - **test**: fix the decimal fractions explaination (Jake Yuesong Li) [#57732](https://github.com/nodejs/node/pull/57732) +* \[[`12f4124af8`](https://github.com/nodejs/node/commit/12f4124af8)] - _**Revert**_ "**test**: add tests for REPL custom evals" (Tobias Nießen) [#57793](https://github.com/nodejs/node/pull/57793) +* \[[`3cdf8ec7c7`](https://github.com/nodejs/node/commit/3cdf8ec7c7)] - **test**: add tests for REPL custom evals (Dario Piotrowicz) [#57691](https://github.com/nodejs/node/pull/57691) +* \[[`9af8b92fb4`](https://github.com/nodejs/node/commit/9af8b92fb4)] - **test**: update expected error message for macOS (Antoine du Hamel) [#57742](https://github.com/nodejs/node/pull/57742) +* \[[`eaec2b5169`](https://github.com/nodejs/node/commit/eaec2b5169)] - **test**: fix dangling promise in test\_runner no isolation test setup (Jacob Smith) [#57595](https://github.com/nodejs/node/pull/57595) +* \[[`51ded6eaeb`](https://github.com/nodejs/node/commit/51ded6eaeb)] - **test**: improve test description (jakecastelli) [#56943](https://github.com/nodejs/node/pull/56943) +* \[[`75b9c1cdd8`](https://github.com/nodejs/node/commit/75b9c1cdd8)] - **test**: remove test-macos-app-sandbox flaky designation (Luigi Pinca) [#56471](https://github.com/nodejs/node/pull/56471) +* \[[`72537f5631`](https://github.com/nodejs/node/commit/72537f5631)] - **test**: remove flaky test-pipe-file-to-http designation (Luigi Pinca) [#56472](https://github.com/nodejs/node/pull/56472) +* \[[`984a472137`](https://github.com/nodejs/node/commit/984a472137)] - **test**: remove test-runner-watch-mode-complex flaky designation (Luigi Pinca) [#56470](https://github.com/nodejs/node/pull/56470) +* \[[`23275cc7bc`](https://github.com/nodejs/node/commit/23275cc7bc)] - **test**: add test case for `util.inspect` (Jordan Harband) [#55778](https://github.com/nodejs/node/pull/55778) +* \[[`99e4685636`](https://github.com/nodejs/node/commit/99e4685636)] - **test\_runner**: support mocking json modules (Jacob Smith) [#58007](https://github.com/nodejs/node/pull/58007) +* \[[`8207828aad`](https://github.com/nodejs/node/commit/8207828aad)] - **test\_runner**: recalculate run duration on watch restart (Pietro Marchini) [#57786](https://github.com/nodejs/node/pull/57786) +* \[[`7416a7f35a`](https://github.com/nodejs/node/commit/7416a7f35a)] - **test\_runner**: match minimum file column to 'all files' (Shima Ryuhei) [#57848](https://github.com/nodejs/node/pull/57848) +* \[[`87ac6cfed7`](https://github.com/nodejs/node/commit/87ac6cfed7)] - **test\_runner**: improve --test-timeout to be per test (jakecastelli) [#57672](https://github.com/nodejs/node/pull/57672) +* \[[`ae08210e37`](https://github.com/nodejs/node/commit/ae08210e37)] - **tools**: ignore V8 tests in CodeQL scans (Rich Trott) [#58081](https://github.com/nodejs/node/pull/58081) +* \[[`25c17ab365`](https://github.com/nodejs/node/commit/25c17ab365)] - **tools**: enable CodeQL config file (Rich Trott) [#58036](https://github.com/nodejs/node/pull/58036) +* \[[`c3d2a1c723`](https://github.com/nodejs/node/commit/c3d2a1c723)] - **tools**: ignore test directory in CodeQL scans (Rich Trott) [#57978](https://github.com/nodejs/node/pull/57978) +* \[[`d31e630462`](https://github.com/nodejs/node/commit/d31e630462)] - **tools**: add semver-major release support to release-lint (Antoine du Hamel) [#57892](https://github.com/nodejs/node/pull/57892) +* \[[`3a99975a88`](https://github.com/nodejs/node/commit/3a99975a88)] - **tools**: add codeql nightly (Rafael Gonzaga) [#57788](https://github.com/nodejs/node/pull/57788) +* \[[`77dee41a5d`](https://github.com/nodejs/node/commit/77dee41a5d)] - **tools**: edit create-release-proposal workflow to handle pr body length (Elves Vieira) [#57841](https://github.com/nodejs/node/pull/57841) +* \[[`6592803bd0`](https://github.com/nodejs/node/commit/6592803bd0)] - **tools**: add zstd updater to workflow (KASEYA\yahor.siarheyenka) [#57831](https://github.com/nodejs/node/pull/57831) +* \[[`c08349393b`](https://github.com/nodejs/node/commit/c08349393b)] - **tools**: remove unused `osx-pkg-postinstall.sh` (Antoine du Hamel) [#57667](https://github.com/nodejs/node/pull/57667) +* \[[`82bb228796`](https://github.com/nodejs/node/commit/82bb228796)] - **tools**: do not use temp files when merging PRs (Antoine du Hamel) [#57790](https://github.com/nodejs/node/pull/57790) +* \[[`f2cdc98e75`](https://github.com/nodejs/node/commit/f2cdc98e75)] - **tools**: update gyp-next to 0.20.0 (Node.js GitHub Bot) [#57683](https://github.com/nodejs/node/pull/57683) +* \[[`02d36cd61d`](https://github.com/nodejs/node/commit/02d36cd61d)] - **tools**: update doc to new version (Node.js GitHub Bot) [#57769](https://github.com/nodejs/node/pull/57769) +* \[[`74ac98c78e`](https://github.com/nodejs/node/commit/74ac98c78e)] - **tools**: bump the eslint group in /tools/eslint with 4 updates (dependabot\[bot]) [#57721](https://github.com/nodejs/node/pull/57721) +* \[[`dcba975031`](https://github.com/nodejs/node/commit/dcba975031)] - **tools**: enable linter in `test/fixtures/source-map/output` (Antoine du Hamel) [#57700](https://github.com/nodejs/node/pull/57700) +* \[[`b9043c9e9b`](https://github.com/nodejs/node/commit/b9043c9e9b)] - **tools**: enable linter in `test/fixtures/errors` (Antoine du Hamel) [#57701](https://github.com/nodejs/node/pull/57701) +* \[[`bbbf49812e`](https://github.com/nodejs/node/commit/bbbf49812e)] - **tools**: enable linter in `test/fixtures/test-runner/output` (Antoine du Hamel) [#57698](https://github.com/nodejs/node/pull/57698) +* \[[`9f1ad3c6da`](https://github.com/nodejs/node/commit/9f1ad3c6da)] - **tools**: enable linter in `test/fixtures/eval` (Antoine du Hamel) [#57699](https://github.com/nodejs/node/pull/57699) +* \[[`98df74464f`](https://github.com/nodejs/node/commit/98df74464f)] - **tools**: enable linter on some fixtures file (Antoine du Hamel) [#57674](https://github.com/nodejs/node/pull/57674) +* \[[`cf02cdb799`](https://github.com/nodejs/node/commit/cf02cdb799)] - **tools**: update ESLint to 9.23 (Antoine du Hamel) [#57673](https://github.com/nodejs/node/pull/57673) +* \[[`8790348303`](https://github.com/nodejs/node/commit/8790348303)] - **tools**: update doc to new version (Node.js GitHub Bot) [#57085](https://github.com/nodejs/node/pull/57085) +* \[[`b1ee186a62`](https://github.com/nodejs/node/commit/b1ee186a62)] - **tools**: update doc to new version (Node.js GitHub Bot) [#51192](https://github.com/nodejs/node/pull/51192) +* \[[`be34b5e7fc`](https://github.com/nodejs/node/commit/be34b5e7fc)] - **tools**: disable doc building when ICU is not available (Antoine du Hamel) [#51192](https://github.com/nodejs/node/pull/51192) +* \[[`6a486347fb`](https://github.com/nodejs/node/commit/6a486347fb)] - **url**: improve canParse() performance for non-onebyte strings (Yagiz Nizipli) [#58023](https://github.com/nodejs/node/pull/58023) +* \[[`7e3503fff1`](https://github.com/nodejs/node/commit/7e3503fff1)] - **util**: fix parseEnv handling of invalid lines (Augustin Mauroy) [#57798](https://github.com/nodejs/node/pull/57798) +* \[[`594269fcca`](https://github.com/nodejs/node/commit/594269fcca)] - **util**: fix formatting of objects with built-in Symbol.toPrimitive (Shima Ryuhei) [#57832](https://github.com/nodejs/node/pull/57832) +* \[[`8ca56a8db8`](https://github.com/nodejs/node/commit/8ca56a8db8)] - **util**: preserve `length` of deprecated functions (Livia Medeiros) [#57806](https://github.com/nodejs/node/pull/57806) +* \[[`6add4c56aa`](https://github.com/nodejs/node/commit/6add4c56aa)] - **util**: fix parseEnv incorrectly splitting multiple ‘=‘ in value (HEESEUNG) [#57421](https://github.com/nodejs/node/pull/57421) +* \[[`e577618227`](https://github.com/nodejs/node/commit/e577618227)] - **util**: inspect: enumerable Symbols no longer have square brackets (Jordan Harband) [#55778](https://github.com/nodejs/node/pull/55778) +* \[[`cb7eb15161`](https://github.com/nodejs/node/commit/cb7eb15161)] - **watch**: clarify completion/failure watch mode messages (Dario Piotrowicz) [#57926](https://github.com/nodejs/node/pull/57926) +* \[[`65562127bd`](https://github.com/nodejs/node/commit/65562127bd)] - **watch**: check parent and child path properly (Jason Zhang) [#57425](https://github.com/nodejs/node/pull/57425) +* \[[`b39fb9aa7f`](https://github.com/nodejs/node/commit/b39fb9aa7f)] - **win**: fix SIGQUIT on ClangCL (Stefan Stojanovic) [#57659](https://github.com/nodejs/node/pull/57659) +* \[[`76c5ea669d`](https://github.com/nodejs/node/commit/76c5ea669d)] - **worker**: add ESM version examples to worker docs (fisker Cheung) [#57645](https://github.com/nodejs/node/pull/57645) +* \[[`17965eb33d`](https://github.com/nodejs/node/commit/17965eb33d)] - **zlib**: fix pointer alignment (jhofstee) [#57727](https://github.com/nodejs/node/pull/57727) diff --git a/data_prepare/node-v24.12.0-linux-x64/LICENSE b/data_prepare/node-v24.12.0-linux-x64/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..4b18b2e40ac6066e2247a5222ea7539dc569b22d --- /dev/null +++ b/data_prepare/node-v24.12.0-linux-x64/LICENSE @@ -0,0 +1,2666 @@ +Node.js is licensed for use as follows: + +""" +Copyright Node.js contributors. All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to +deal in the Software without restriction, including without limitation the +rights to use, copy, modify, merge, publish, distribute, sublicense, and/or +sell copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS +IN THE SOFTWARE. +""" + +This license applies to parts of Node.js originating from the +https://github.com/joyent/node repository: + +""" +Copyright Joyent, Inc. and other Node contributors. All rights reserved. +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to +deal in the Software without restriction, including without limitation the +rights to use, copy, modify, merge, publish, distribute, sublicense, and/or +sell copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS +IN THE SOFTWARE. +""" + +The Node.js license applies to all parts of Node.js that are not externally +maintained libraries. + +The externally maintained libraries used by Node.js are: + +- Acorn, located at deps/acorn, is licensed as follows: + """ + MIT License + + Copyright (C) 2012-2022 by various contributors (see AUTHORS) + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. + """ + +- c-ares, located at deps/cares, is licensed as follows: + """ + MIT License + + Copyright (c) 1998 Massachusetts Institute of Technology + Copyright (c) 2007 - 2023 Daniel Stenberg with many contributors, see AUTHORS + file. + + Permission is hereby granted, free of charge, to any person obtaining a copy of + this software and associated documentation files (the "Software"), to deal in + the Software without restriction, including without limitation the rights to + use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + the Software, and to permit persons to whom the Software is furnished to do so, + subject to the following conditions: + + The above copyright notice and this permission notice (including the next + paragraph) shall be included in all copies or substantial portions of the + Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. + """ + +- cjs-module-lexer, located at deps/cjs-module-lexer, is licensed as follows: + """ + MIT License + ----------- + + Copyright (C) 2018-2020 Guy Bedford + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + """ + +- ittapi, located at deps/v8/third_party/ittapi, is licensed as follows: + """ + Copyright (c) 2019 Intel Corporation. All rights reserved. + + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: + + 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. + 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. + 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + """ + +- amaro, located at deps/amaro, is licensed as follows: + """ + MIT License + + Copyright (c) Marco Ippolito and Amaro contributors + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. + """ + +- swc, located at deps/amaro/dist, is licensed as follows: + """ + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright 2024 SWC contributors. + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + """ + +- ICU, located at deps/icu-small, is licensed as follows: + """ + UNICODE LICENSE V3 + + COPYRIGHT AND PERMISSION NOTICE + + Copyright © 2016-2025 Unicode, Inc. + + NOTICE TO USER: Carefully read the following legal agreement. BY + DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING DATA FILES, AND/OR + SOFTWARE, YOU UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE + TERMS AND CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE, DO NOT + DOWNLOAD, INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE. + + Permission is hereby granted, free of charge, to any person obtaining a + copy of data files and any associated documentation (the "Data Files") or + software and any associated documentation (the "Software") to deal in the + Data Files or Software without restriction, including without limitation + the rights to use, copy, modify, merge, publish, distribute, and/or sell + copies of the Data Files or Software, and to permit persons to whom the + Data Files or Software are furnished to do so, provided that either (a) + this copyright and permission notice appear with all copies of the Data + Files or Software, or (b) this copyright and permission notice appear in + associated Documentation. + + THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY + KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF + THIRD PARTY RIGHTS. + + IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE + BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, + OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, + WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, + ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THE DATA + FILES OR SOFTWARE. + + Except as contained in this notice, the name of a copyright holder shall + not be used in advertising or otherwise to promote the sale, use or other + dealings in these Data Files or Software without prior written + authorization of the copyright holder. + + SPDX-License-Identifier: Unicode-3.0 + + ---------------------------------------------------------------------- + + Third-Party Software Licenses + + This section contains third-party software notices and/or additional + terms for licensed third-party software components included within ICU + libraries. + + ---------------------------------------------------------------------- + + ICU License - ICU 1.8.1 to ICU 57.1 + + COPYRIGHT AND PERMISSION NOTICE + + Copyright (c) 1995-2016 International Business Machines Corporation and others + All rights reserved. + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + "Software"), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, and/or sell copies of the Software, and to permit persons + to whom the Software is furnished to do so, provided that the above + copyright notice(s) and this permission notice appear in all copies of + the Software and that both the above copyright notice(s) and this + permission notice appear in supporting documentation. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT + OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR + HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY + SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER + RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF + CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN + CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + Except as contained in this notice, the name of a copyright holder + shall not be used in advertising or otherwise to promote the sale, use + or other dealings in this Software without prior written authorization + of the copyright holder. + + All trademarks and registered trademarks mentioned herein are the + property of their respective owners. + + ---------------------------------------------------------------------- + + Chinese/Japanese Word Break Dictionary Data (cjdict.txt) + + # The Google Chrome software developed by Google is licensed under + # the BSD license. Other software included in this distribution is + # provided under other licenses, as set forth below. + # + # The BSD License + # http://opensource.org/licenses/bsd-license.php + # Copyright (C) 2006-2008, Google Inc. + # + # All rights reserved. + # + # Redistribution and use in source and binary forms, with or without + # modification, are permitted provided that the following conditions are met: + # + # Redistributions of source code must retain the above copyright notice, + # this list of conditions and the following disclaimer. + # Redistributions in binary form must reproduce the above + # copyright notice, this list of conditions and the following + # disclaimer in the documentation and/or other materials provided with + # the distribution. + # Neither the name of Google Inc. nor the names of its + # contributors may be used to endorse or promote products derived from + # this software without specific prior written permission. + # + # + # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND + # CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, + # INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF + # MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + # DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE + # LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + # CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + # SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR + # BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + # LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + # NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + # + # + # The word list in cjdict.txt are generated by combining three word lists + # listed below with further processing for compound word breaking. The + # frequency is generated with an iterative training against Google web + # corpora. + # + # * Libtabe (Chinese) + # - https://sourceforge.net/project/?group_id=1519 + # - Its license terms and conditions are shown below. + # + # * IPADIC (Japanese) + # - http://chasen.aist-nara.ac.jp/chasen/distribution.html + # - Its license terms and conditions are shown below. + # + # ---------COPYING.libtabe ---- BEGIN-------------------- + # + # /* + # * Copyright (c) 1999 TaBE Project. + # * Copyright (c) 1999 Pai-Hsiang Hsiao. + # * All rights reserved. + # * + # * Redistribution and use in source and binary forms, with or without + # * modification, are permitted provided that the following conditions + # * are met: + # * + # * . Redistributions of source code must retain the above copyright + # * notice, this list of conditions and the following disclaimer. + # * . Redistributions in binary form must reproduce the above copyright + # * notice, this list of conditions and the following disclaimer in + # * the documentation and/or other materials provided with the + # * distribution. + # * . Neither the name of the TaBE Project nor the names of its + # * contributors may be used to endorse or promote products derived + # * from this software without specific prior written permission. + # * + # * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + # * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + # * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + # * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + # * REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + # * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + # * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + # * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + # * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, + # * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + # * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED + # * OF THE POSSIBILITY OF SUCH DAMAGE. + # */ + # + # /* + # * Copyright (c) 1999 Computer Systems and Communication Lab, + # * Institute of Information Science, Academia + # * Sinica. All rights reserved. + # * + # * Redistribution and use in source and binary forms, with or without + # * modification, are permitted provided that the following conditions + # * are met: + # * + # * . Redistributions of source code must retain the above copyright + # * notice, this list of conditions and the following disclaimer. + # * . Redistributions in binary form must reproduce the above copyright + # * notice, this list of conditions and the following disclaimer in + # * the documentation and/or other materials provided with the + # * distribution. + # * . Neither the name of the Computer Systems and Communication Lab + # * nor the names of its contributors may be used to endorse or + # * promote products derived from this software without specific + # * prior written permission. + # * + # * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + # * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + # * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + # * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + # * REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + # * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + # * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + # * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + # * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, + # * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + # * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED + # * OF THE POSSIBILITY OF SUCH DAMAGE. + # */ + # + # Copyright 1996 Chih-Hao Tsai @ Beckman Institute, + # University of Illinois + # c-tsai4@uiuc.edu http://casper.beckman.uiuc.edu/~c-tsai4 + # + # ---------------COPYING.libtabe-----END-------------------------------- + # + # + # ---------------COPYING.ipadic-----BEGIN------------------------------- + # + # Copyright 2000, 2001, 2002, 2003 Nara Institute of Science + # and Technology. All Rights Reserved. + # + # Use, reproduction, and distribution of this software is permitted. + # Any copy of this software, whether in its original form or modified, + # must include both the above copyright notice and the following + # paragraphs. + # + # Nara Institute of Science and Technology (NAIST), + # the copyright holders, disclaims all warranties with regard to this + # software, including all implied warranties of merchantability and + # fitness, in no event shall NAIST be liable for + # any special, indirect or consequential damages or any damages + # whatsoever resulting from loss of use, data or profits, whether in an + # action of contract, negligence or other tortuous action, arising out + # of or in connection with the use or performance of this software. + # + # A large portion of the dictionary entries + # originate from ICOT Free Software. The following conditions for ICOT + # Free Software applies to the current dictionary as well. + # + # Each User may also freely distribute the Program, whether in its + # original form or modified, to any third party or parties, PROVIDED + # that the provisions of Section 3 ("NO WARRANTY") will ALWAYS appear + # on, or be attached to, the Program, which is distributed substantially + # in the same form as set out herein and that such intended + # distribution, if actually made, will neither violate or otherwise + # contravene any of the laws and regulations of the countries having + # jurisdiction over the User or the intended distribution itself. + # + # NO WARRANTY + # + # The program was produced on an experimental basis in the course of the + # research and development conducted during the project and is provided + # to users as so produced on an experimental basis. Accordingly, the + # program is provided without any warranty whatsoever, whether express, + # implied, statutory or otherwise. The term "warranty" used herein + # includes, but is not limited to, any warranty of the quality, + # performance, merchantability and fitness for a particular purpose of + # the program and the nonexistence of any infringement or violation of + # any right of any third party. + # + # Each user of the program will agree and understand, and be deemed to + # have agreed and understood, that there is no warranty whatsoever for + # the program and, accordingly, the entire risk arising from or + # otherwise connected with the program is assumed by the user. + # + # Therefore, neither ICOT, the copyright holder, or any other + # organization that participated in or was otherwise related to the + # development of the program and their respective officials, directors, + # officers and other employees shall be held liable for any and all + # damages, including, without limitation, general, special, incidental + # and consequential damages, arising out of or otherwise in connection + # with the use or inability to use the program or any product, material + # or result produced or otherwise obtained by using the program, + # regardless of whether they have been advised of, or otherwise had + # knowledge of, the possibility of such damages at any time during the + # project or thereafter. Each user will be deemed to have agreed to the + # foregoing by his or her commencement of use of the program. The term + # "use" as used herein includes, but is not limited to, the use, + # modification, copying and distribution of the program and the + # production of secondary products from the program. + # + # In the case where the program, whether in its original form or + # modified, was distributed or delivered to or received by a user from + # any person, organization or entity other than ICOT, unless it makes or + # grants independently of ICOT any specific warranty to the user in + # writing, such person, organization or entity, will also be exempted + # from and not be held liable to the user for any such damages as noted + # above as far as the program is concerned. + # + # ---------------COPYING.ipadic-----END---------------------------------- + + ---------------------------------------------------------------------- + + Lao Word Break Dictionary Data (laodict.txt) + + # Copyright (C) 2016 and later: Unicode, Inc. and others. + # License & terms of use: http://www.unicode.org/copyright.html + # Copyright (c) 2015 International Business Machines Corporation + # and others. All Rights Reserved. + # + # Project: https://github.com/rober42539/lao-dictionary + # Dictionary: https://github.com/rober42539/lao-dictionary/laodict.txt + # License: https://github.com/rober42539/lao-dictionary/LICENSE.txt + # (copied below) + # + # This file is derived from the above dictionary version of Nov 22, 2020 + # ---------------------------------------------------------------------- + # Copyright (C) 2013 Brian Eugene Wilson, Robert Martin Campbell. + # All rights reserved. + # + # Redistribution and use in source and binary forms, with or without + # modification, are permitted provided that the following conditions are met: + # + # Redistributions of source code must retain the above copyright notice, this + # list of conditions and the following disclaimer. Redistributions in binary + # form must reproduce the above copyright notice, this list of conditions and + # the following disclaimer in the documentation and/or other materials + # provided with the distribution. + # + # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + # FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + # COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + # INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + # (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + # SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + # HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, + # STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + # ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED + # OF THE POSSIBILITY OF SUCH DAMAGE. + # -------------------------------------------------------------------------- + + ---------------------------------------------------------------------- + + Burmese Word Break Dictionary Data (burmesedict.txt) + + # Copyright (c) 2014 International Business Machines Corporation + # and others. All Rights Reserved. + # + # This list is part of a project hosted at: + # github.com/kanyawtech/myanmar-karen-word-lists + # + # -------------------------------------------------------------------------- + # Copyright (c) 2013, LeRoy Benjamin Sharon + # All rights reserved. + # + # Redistribution and use in source and binary forms, with or without + # modification, are permitted provided that the following conditions + # are met: Redistributions of source code must retain the above + # copyright notice, this list of conditions and the following + # disclaimer. Redistributions in binary form must reproduce the + # above copyright notice, this list of conditions and the following + # disclaimer in the documentation and/or other materials provided + # with the distribution. + # + # Neither the name Myanmar Karen Word Lists, nor the names of its + # contributors may be used to endorse or promote products derived + # from this software without specific prior written permission. + # + # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND + # CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, + # INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF + # MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + # DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS + # BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + # EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED + # TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON + # ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR + # TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF + # THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + # SUCH DAMAGE. + # -------------------------------------------------------------------------- + + ---------------------------------------------------------------------- + + Time Zone Database + + ICU uses the public domain data and code derived from Time Zone + Database for its time zone support. The ownership of the TZ database + is explained in BCP 175: Procedure for Maintaining the Time Zone + Database section 7. + + # 7. Database Ownership + # + # The TZ database itself is not an IETF Contribution or an IETF + # document. Rather it is a pre-existing and regularly updated work + # that is in the public domain, and is intended to remain in the + # public domain. Therefore, BCPs 78 [RFC5378] and 79 [RFC3979] do + # not apply to the TZ Database or contributions that individuals make + # to it. Should any claims be made and substantiated against the TZ + # Database, the organization that is providing the IANA + # Considerations defined in this RFC, under the memorandum of + # understanding with the IETF, currently ICANN, may act in accordance + # with all competent court orders. No ownership claims will be made + # by ICANN or the IETF Trust on the database or the code. Any person + # making a contribution to the database or code waives all rights to + # future claims in that contribution or in the TZ Database. + + ---------------------------------------------------------------------- + + Google double-conversion + + Copyright 2006-2011, the V8 project authors. All rights reserved. + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are + met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + ---------------------------------------------------------------------- + + JSON parsing library (nlohmann/json) + + File: vendor/json/upstream/single_include/nlohmann/json.hpp (only for ICU4C) + + MIT License + + Copyright (c) 2013-2022 Niels Lohmann + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. + + ---------------------------------------------------------------------- + + File: aclocal.m4 (only for ICU4C) + Section: pkg.m4 - Macros to locate and utilise pkg-config. + + Copyright © 2004 Scott James Remnant . + Copyright © 2012-2015 Dan Nicholson + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, but + WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA + 02111-1307, USA. + + As a special exception to the GNU General Public License, if you + distribute this file as part of a program that contains a + configuration script generated by Autoconf, you may include it under + the same distribution terms that you use for the rest of that + program. + + (The condition for the exception is fulfilled because + ICU4C includes a configuration script generated by Autoconf, + namely the `configure` script.) + + ---------------------------------------------------------------------- + + File: config.guess (only for ICU4C) + + This file is free software; you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, but + WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, see . + + As a special exception to the GNU General Public License, if you + distribute this file as part of a program that contains a + configuration script generated by Autoconf, you may include it under + the same distribution terms that you use for the rest of that + program. This Exception is an additional permission under section 7 + of the GNU General Public License, version 3 ("GPLv3"). + + (The condition for the exception is fulfilled because + ICU4C includes a configuration script generated by Autoconf, + namely the `configure` script.) + + ---------------------------------------------------------------------- + + File: install-sh (only for ICU4C) + + Copyright 1991 by the Massachusetts Institute of Technology + + Permission to use, copy, modify, distribute, and sell this software and its + documentation for any purpose is hereby granted without fee, provided that + the above copyright notice appear in all copies and that both that + copyright notice and this permission notice appear in supporting + documentation, and that the name of M.I.T. not be used in advertising or + publicity pertaining to distribution of the software without specific, + written prior permission. M.I.T. makes no representations about the + suitability of this software for any purpose. It is provided "as is" + without express or implied warranty. + """ + +- libuv, located at deps/uv, is licensed as follows: + """ + Copyright (c) 2015-present libuv project contributors. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to + deal in the Software without restriction, including without limitation the + rights to use, copy, modify, merge, publish, distribute, sublicense, and/or + sell copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS + IN THE SOFTWARE. + This license applies to parts of libuv originating from the + https://github.com/joyent/libuv repository: + + ==== + + Copyright Joyent, Inc. and other Node contributors. All rights reserved. + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to + deal in the Software without restriction, including without limitation the + rights to use, copy, modify, merge, publish, distribute, sublicense, and/or + sell copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS + IN THE SOFTWARE. + + ==== + + This license applies to all parts of libuv that are not externally + maintained libraries. + + The externally maintained libraries used by libuv are: + + - tree.h (from FreeBSD), copyright Niels Provos. Two clause BSD license. + + - inet_pton and inet_ntop implementations, contained in src/inet.c, are + copyright the Internet Systems Consortium, Inc., and licensed under the ISC + license. + """ + +- llhttp, located at deps/llhttp, is licensed as follows: + """ + This software is licensed under the MIT License. + + Copyright Fedor Indutny, 2018. + + Permission is hereby granted, free of charge, to any person obtaining a + copy of this software and associated documentation files (the + "Software"), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to permit + persons to whom the Software is furnished to do so, subject to the + following conditions: + + The above copyright notice and this permission notice shall be included + in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS + OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN + NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, + DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR + OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE + USE OR OTHER DEALINGS IN THE SOFTWARE. + """ + +- corepack, located at deps/corepack, is licensed as follows: + """ + **Copyright © Corepack contributors** + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + """ + +- undici, located at deps/undici, is licensed as follows: + """ + MIT License + + Copyright (c) Matteo Collina and Undici contributors + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. + """ + +- postject, located at test/fixtures/postject-copy, is licensed as follows: + """ + Postject is licensed for use as follows: + + """ + MIT License + + Copyright (c) 2022 Postman, Inc + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. + """ + + The Postject license applies to all parts of Postject that are not externally + maintained libraries. + + The externally maintained libraries used by Postject are: + + - LIEF, located at vendor/LIEF, is licensed as follows: + """ + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "{}" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright 2017 - 2022 R. Thomas + Copyright 2017 - 2022 Quarkslab + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + """ + """ + +- OpenSSL, located at deps/openssl, is licensed as follows: + """ + Apache License + Version 2.0, January 2004 + https://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + """ + +- Punycode.js, located at lib/punycode.js, is licensed as follows: + """ + Copyright Mathias Bynens + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + "Software"), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE + LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION + OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION + WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + """ + +- V8, located at deps/v8, is licensed as follows: + """ + This license applies to all parts of V8 that are not externally + maintained libraries. The externally maintained libraries used by V8 + are: + + - PCRE test suite, located in + test/mjsunit/third_party/regexp-pcre/regexp-pcre.js. This is based on the + test suite from PCRE-7.3, which is copyrighted by the University + of Cambridge and Google, Inc. The copyright notice and license + are embedded in regexp-pcre.js. + + - Layout tests, located in test/mjsunit/third_party/object-keys. These are + based on layout tests from webkit.org which are copyrighted by + Apple Computer, Inc. and released under a 3-clause BSD license. + + - Strongtalk assembler, the basis of the files assembler-arm-inl.h, + assembler-arm.cc, assembler-arm.h, assembler-ia32-inl.h, + assembler-ia32.cc, assembler-ia32.h, assembler-x64-inl.h, + assembler-x64.cc, assembler-x64.h, assembler.cc and assembler.h. + This code is copyrighted by Sun Microsystems Inc. and released + under a 3-clause BSD license. + + - Valgrind client API header, located at third_party/valgrind/valgrind.h + This is released under the BSD license. + + - The Wasm C/C++ API headers, located at third_party/wasm-api/wasm.{h,hh} + This is released under the Apache license. The API's upstream prototype + implementation also formed the basis of V8's implementation in + src/wasm/c-api.cc. + + These libraries have their own licenses; we recommend you read them, + as their terms may differ from the terms below. + + Further license information can be found in LICENSE files located in + sub-directories. + + Copyright 2014, the V8 project authors. All rights reserved. + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are + met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + """ + +- SipHash, located at deps/v8/src/third_party/siphash, is licensed as follows: + """ + SipHash reference C implementation + + Copyright (c) 2016 Jean-Philippe Aumasson + + To the extent possible under law, the author(s) have dedicated all + copyright and related and neighboring rights to this software to the public + domain worldwide. This software is distributed without any warranty. + """ + +- zlib, located at deps/zlib, is licensed as follows: + """ + zlib.h -- interface of the 'zlib' general purpose compression library + version 1.3.1, January 22nd, 2024 + + Copyright (C) 1995-2024 Jean-loup Gailly and Mark Adler + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. + + Jean-loup Gailly Mark Adler + jloup@gzip.org madler@alumni.caltech.edu + """ + +- simdjson, located at deps/simdjson, is licensed as follows: + """ + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "{}" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright 2018-2025 The simdjson authors + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + """ + +- simdutf, located at deps/v8/third_party/simdutf, is licensed as follows: + """ + Copyright 2021 The simdutf authors + + Permission is hereby granted, free of charge, to any person obtaining a copy of + this software and associated documentation files (the "Software"), to deal in + the Software without restriction, including without limitation the rights to + use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + the Software, and to permit persons to whom the Software is furnished to do so, + subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + """ + +- ada, located at deps/ada, is licensed as follows: + """ + Copyright 2023 Yagiz Nizipli and Daniel Lemire + + Permission is hereby granted, free of charge, to any person obtaining a copy of + this software and associated documentation files (the "Software"), to deal in + the Software without restriction, including without limitation the rights to + use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + the Software, and to permit persons to whom the Software is furnished to do so, + subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + """ + +- minimatch, located at deps/minimatch, is licensed as follows: + """ + The ISC License + + Copyright (c) 2011-2023 Isaac Z. Schlueter and Contributors + + Permission to use, copy, modify, and/or distribute this software for any + purpose with or without fee is hereby granted, provided that the above + copyright notice and this permission notice appear in all copies. + + THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR + IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + """ + +- npm, located at deps/npm, is licensed as follows: + """ + The npm application + Copyright (c) npm, Inc. and Contributors + Licensed on the terms of The Artistic License 2.0 + + Node package dependencies of the npm application + Copyright (c) their respective copyright owners + Licensed on their respective license terms + + The npm public registry at https://registry.npmjs.org + and the npm website at https://www.npmjs.com + Operated by npm, Inc. + Use governed by terms published on https://www.npmjs.com + + "Node.js" + Trademark Joyent, Inc., https://joyent.com + Neither npm nor npm, Inc. are affiliated with Joyent, Inc. + + The Node.js application + Project of Node Foundation, https://nodejs.org + + The npm Logo + Copyright (c) Mathias Pettersson and Brian Hammond + + "Gubblebum Blocky" typeface + Copyright (c) Tjarda Koster, https://jelloween.deviantart.com + Used with permission + + -------- + + The Artistic License 2.0 + + Copyright (c) 2000-2006, The Perl Foundation. + + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + This license establishes the terms under which a given free software + Package may be copied, modified, distributed, and/or redistributed. + The intent is that the Copyright Holder maintains some artistic + control over the development of that Package while still keeping the + Package available as open source and free software. + + You are always permitted to make arrangements wholly outside of this + license directly with the Copyright Holder of a given Package. If the + terms of this license do not permit the full use that you propose to + make of the Package, you should contact the Copyright Holder and seek + a different licensing arrangement. + + Definitions + + "Copyright Holder" means the individual(s) or organization(s) + named in the copyright notice for the entire Package. + + "Contributor" means any party that has contributed code or other + material to the Package, in accordance with the Copyright Holder's + procedures. + + "You" and "your" means any person who would like to copy, + distribute, or modify the Package. + + "Package" means the collection of files distributed by the + Copyright Holder, and derivatives of that collection and/or of + those files. A given Package may consist of either the Standard + Version, or a Modified Version. + + "Distribute" means providing a copy of the Package or making it + accessible to anyone else, or in the case of a company or + organization, to others outside of your company or organization. + + "Distributor Fee" means any fee that you charge for Distributing + this Package or providing support for this Package to another + party. It does not mean licensing fees. + + "Standard Version" refers to the Package if it has not been + modified, or has been modified only in ways explicitly requested + by the Copyright Holder. + + "Modified Version" means the Package, if it has been changed, and + such changes were not explicitly requested by the Copyright + Holder. + + "Original License" means this Artistic License as Distributed with + the Standard Version of the Package, in its current version or as + it may be modified by The Perl Foundation in the future. + + "Source" form means the source code, documentation source, and + configuration files for the Package. + + "Compiled" form means the compiled bytecode, object code, binary, + or any other form resulting from mechanical transformation or + translation of the Source form. + + Permission for Use and Modification Without Distribution + + (1) You are permitted to use the Standard Version and create and use + Modified Versions for any purpose without restriction, provided that + you do not Distribute the Modified Version. + + Permissions for Redistribution of the Standard Version + + (2) You may Distribute verbatim copies of the Source form of the + Standard Version of this Package in any medium without restriction, + either gratis or for a Distributor Fee, provided that you duplicate + all of the original copyright notices and associated disclaimers. At + your discretion, such verbatim copies may or may not include a + Compiled form of the Package. + + (3) You may apply any bug fixes, portability changes, and other + modifications made available from the Copyright Holder. The resulting + Package will still be considered the Standard Version, and as such + will be subject to the Original License. + + Distribution of Modified Versions of the Package as Source + + (4) You may Distribute your Modified Version as Source (either gratis + or for a Distributor Fee, and with or without a Compiled form of the + Modified Version) provided that you clearly document how it differs + from the Standard Version, including, but not limited to, documenting + any non-standard features, executables, or modules, and provided that + you do at least ONE of the following: + + (a) make the Modified Version available to the Copyright Holder + of the Standard Version, under the Original License, so that the + Copyright Holder may include your modifications in the Standard + Version. + + (b) ensure that installation of your Modified Version does not + prevent the user installing or running the Standard Version. In + addition, the Modified Version must bear a name that is different + from the name of the Standard Version. + + (c) allow anyone who receives a copy of the Modified Version to + make the Source form of the Modified Version available to others + under + + (i) the Original License or + + (ii) a license that permits the licensee to freely copy, + modify and redistribute the Modified Version using the same + licensing terms that apply to the copy that the licensee + received, and requires that the Source form of the Modified + Version, and of any works derived from it, be made freely + available in that license fees are prohibited but Distributor + Fees are allowed. + + Distribution of Compiled Forms of the Standard Version + or Modified Versions without the Source + + (5) You may Distribute Compiled forms of the Standard Version without + the Source, provided that you include complete instructions on how to + get the Source of the Standard Version. Such instructions must be + valid at the time of your distribution. If these instructions, at any + time while you are carrying out such distribution, become invalid, you + must provide new instructions on demand or cease further distribution. + If you provide valid instructions or cease distribution within thirty + days after you become aware that the instructions are invalid, then + you do not forfeit any of your rights under this license. + + (6) You may Distribute a Modified Version in Compiled form without + the Source, provided that you comply with Section 4 with respect to + the Source of the Modified Version. + + Aggregating or Linking the Package + + (7) You may aggregate the Package (either the Standard Version or + Modified Version) with other packages and Distribute the resulting + aggregation provided that you do not charge a licensing fee for the + Package. Distributor Fees are permitted, and licensing fees for other + components in the aggregation are permitted. The terms of this license + apply to the use and Distribution of the Standard or Modified Versions + as included in the aggregation. + + (8) You are permitted to link Modified and Standard Versions with + other works, to embed the Package in a larger work of your own, or to + build stand-alone binary or bytecode versions of applications that + include the Package, and Distribute the result without restriction, + provided the result does not expose a direct interface to the Package. + + Items That are Not Considered Part of a Modified Version + + (9) Works (including, but not limited to, modules and scripts) that + merely extend or make use of the Package, do not, by themselves, cause + the Package to be a Modified Version. In addition, such works are not + considered parts of the Package itself, and are not subject to the + terms of this license. + + General Provisions + + (10) Any use, modification, and distribution of the Standard or + Modified Versions is governed by this Artistic License. By using, + modifying or distributing the Package, you accept this license. Do not + use, modify, or distribute the Package, if you do not accept this + license. + + (11) If your Modified Version has been derived from a Modified + Version made by someone other than you, you are nevertheless required + to ensure that your Modified Version complies with the requirements of + this license. + + (12) This license does not grant you the right to use any trademark, + service mark, tradename, or logo of the Copyright Holder. + + (13) This license includes the non-exclusive, worldwide, + free-of-charge patent license to make, have made, use, offer to sell, + sell, import and otherwise transfer the Package with respect to any + patent claims licensable by the Copyright Holder that are necessarily + infringed by the Package. If you institute patent litigation + (including a cross-claim or counterclaim) against any party alleging + that the Package constitutes direct or contributory patent + infringement, then this Artistic License to you shall terminate on the + date that such litigation is filed. + + (14) Disclaimer of Warranty: + THE PACKAGE IS PROVIDED BY THE COPYRIGHT HOLDER AND CONTRIBUTORS "AS + IS' AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES. THE IMPLIED + WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR + NON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT PERMITTED BY YOUR LOCAL + LAW. UNLESS REQUIRED BY LAW, NO COPYRIGHT HOLDER OR CONTRIBUTOR WILL + BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL + DAMAGES ARISING IN ANY WAY OUT OF THE USE OF THE PACKAGE, EVEN IF + ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + -------- + """ + +- GYP, located at tools/gyp, is licensed as follows: + """ + Copyright (c) 2020 Node.js contributors. All rights reserved. + Copyright (c) 2009 Google Inc. All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are + met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following disclaimer + in the documentation and/or other materials provided with the + distribution. + * Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + """ + +- inspector_protocol, located at deps/inspector_protocol, is licensed as follows: + """ + // Copyright 2016 The Chromium Authors. + // + // Redistribution and use in source and binary forms, with or without + // modification, are permitted provided that the following conditions are + // met: + // + // * Redistributions of source code must retain the above copyright + // notice, this list of conditions and the following disclaimer. + // * Redistributions in binary form must reproduce the above + // copyright notice, this list of conditions and the following disclaimer + // in the documentation and/or other materials provided with the + // distribution. + // * Neither the name of Google Inc. nor the names of its + // contributors may be used to endorse or promote products derived from + // this software without specific prior written permission. + // + // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + """ + +- jinja2, located at tools/inspector_protocol/jinja2, is licensed as follows: + """ + Copyright (c) 2009 by the Jinja Team, see AUTHORS for more details. + + Some rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are + met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + * The names of the contributors may not be used to endorse or + promote products derived from this software without specific + prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + """ + +- markupsafe, located at tools/inspector_protocol/markupsafe, is licensed as follows: + """ + Copyright (c) 2010 by Armin Ronacher and contributors. See AUTHORS + for more details. + + Some rights reserved. + + Redistribution and use in source and binary forms of the software as well + as documentation, with or without modification, are permitted provided + that the following conditions are met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + * The names of the contributors may not be used to endorse or + promote products derived from this software without specific + prior written permission. + + THIS SOFTWARE AND DOCUMENTATION IS PROVIDED BY THE COPYRIGHT HOLDERS AND + CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT + NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER + OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE AND DOCUMENTATION, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + """ + +- cpplint.py, located at tools/cpplint.py, is licensed as follows: + """ + Copyright (c) 2009 Google Inc. All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are + met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following disclaimer + in the documentation and/or other materials provided with the + distribution. + * Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + """ + +- gypi_to_gn.py, located at tools/gypi_to_gn.py, is licensed as follows: + """ + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are + met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following disclaimer + in the documentation and/or other materials provided with the + distribution. + * Neither the name of Google LLC nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + """ + +- gtest, located at deps/googletest, is licensed as follows: + """ + Copyright 2008, Google Inc. + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are + met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following disclaimer + in the documentation and/or other materials provided with the + distribution. + * Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + """ + +- nghttp2, located at deps/nghttp2, is licensed as follows: + """ + The MIT License + + Copyright (c) 2012, 2014, 2015, 2016 Tatsuhiro Tsujikawa + Copyright (c) 2012, 2014, 2015, 2016 nghttp2 contributors + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + "Software"), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE + LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION + OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION + WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + """ + +- large_pages, located at src/large_pages, is licensed as follows: + """ + Copyright (C) 2018 Intel Corporation + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), + to deal in the Software without restriction, including without limitation + the rights to use, copy, modify, merge, publish, distribute, sublicense, + and/or sell copies of the Software, and to permit persons to whom + the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included + in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS + OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL + THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES + OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, + ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE + OR OTHER DEALINGS IN THE SOFTWARE. + """ + +- caja, located at lib/internal/freeze_intrinsics.js, is licensed as follows: + """ + Adapted from SES/Caja - Copyright (C) 2011 Google Inc. + Copyright (C) 2018 Agoric + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + """ + +- brotli, located at deps/brotli, is licensed as follows: + """ + Copyright (c) 2009, 2010, 2013-2016 by the Brotli Authors. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. + """ + +- zstd, located at deps/zstd, is licensed as follows: + """ + BSD License + + For Zstandard software + + Copyright (c) Meta Platforms, Inc. and affiliates. All rights reserved. + + Redistribution and use in source and binary forms, with or without modification, + are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + + * Neither the name Facebook, nor Meta, nor the names of its contributors may + be used to endorse or promote products derived from this software without + specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND + ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR + ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON + ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + """ + +- HdrHistogram, located at deps/histogram, is licensed as follows: + """ + The code in this repository code was Written by Gil Tene, Michael Barker, + and Matt Warren, and released to the public domain, as explained at + http://creativecommons.org/publicdomain/zero/1.0/ + + For users of this code who wish to consume it under the "BSD" license + rather than under the public domain or CC0 contribution text mentioned + above, the code found under this directory is *also* provided under the + following license (commonly referred to as the BSD 2-Clause License). This + license does not detract from the above stated release of the code into + the public domain, and simply represents an additional license granted by + the Author. + + ----------------------------------------------------------------------------- + ** Beginning of "BSD 2-Clause License" text. ** + + Copyright (c) 2012, 2013, 2014 Gil Tene + Copyright (c) 2014 Michael Barker + Copyright (c) 2014 Matt Warren + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + + 1. Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + + 2. Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE + LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF + THE POSSIBILITY OF SUCH DAMAGE. + """ + +- node-heapdump, located at src/heap_utils.cc, is licensed as follows: + """ + ISC License + + Copyright (c) 2012, Ben Noordhuis + + Permission to use, copy, modify, and/or distribute this software for any + purpose with or without fee is hereby granted, provided that the above + copyright notice and this permission notice appear in all copies. + + THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF + OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + === src/compat.h src/compat-inl.h === + + ISC License + + Copyright (c) 2014, StrongLoop Inc. + + Permission to use, copy, modify, and/or distribute this software for any + purpose with or without fee is hereby granted, provided that the above + copyright notice and this permission notice appear in all copies. + + THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF + OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + """ + +- rimraf, located at lib/internal/fs/rimraf.js, is licensed as follows: + """ + The ISC License + + Copyright (c) Isaac Z. Schlueter and Contributors + + Permission to use, copy, modify, and/or distribute this software for any + purpose with or without fee is hereby granted, provided that the above + copyright notice and this permission notice appear in all copies. + + THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR + IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + """ + +- uvwasi, located at deps/uvwasi, is licensed as follows: + """ + MIT License + + Copyright (c) 2019 Colin Ihrig and Contributors + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. + """ + +- ngtcp2, located at deps/ngtcp2/ngtcp2/, is licensed as follows: + """ + The MIT License + + Copyright (c) 2016 ngtcp2 contributors + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + "Software"), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE + LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION + OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION + WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + """ + +- nghttp3, located at deps/ngtcp2/nghttp3/, is licensed as follows: + """ + The MIT License + + Copyright (c) 2019 nghttp3 contributors + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + "Software"), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE + LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION + OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION + WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + """ + +- node-fs-extra, located at lib/internal/fs/cp, is licensed as follows: + """ + (The MIT License) + + Copyright (c) 2011-2017 JP Richardson + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files + (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, + merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE + WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS + OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, + ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + """ + +- on-exit-leak-free, located at lib/internal/process/finalization, is licensed as follows: + """ + MIT License + + Copyright (c) 2021 Matteo Collina + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. + """ + +- sonic-boom, located at lib/internal/streams/fast-utf8-stream.js, is licensed as follows: + """ + MIT License + + Copyright (c) 2017 Matteo Collina + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. + """ diff --git a/data_prepare/node-v24.12.0-linux-x64/README.md b/data_prepare/node-v24.12.0-linux-x64/README.md new file mode 100644 index 0000000000000000000000000000000000000000..46df21a18457aa20616426d9f8457ddff355576d --- /dev/null +++ b/data_prepare/node-v24.12.0-linux-x64/README.md @@ -0,0 +1,916 @@ +# Node.js + +Node.js is an open-source, cross-platform JavaScript runtime environment. + +For information on using Node.js, see the [Node.js website][]. + +The Node.js project uses an [open governance model](./GOVERNANCE.md). The +[OpenJS Foundation][] provides support for the project. + +Contributors are expected to act in a collaborative manner to move +the project forward. We encourage the constructive exchange of contrary +opinions and compromise. The [TSC](./GOVERNANCE.md#technical-steering-committee) +reserves the right to limit or block contributors who repeatedly act in ways +that discourage, exhaust, or otherwise negatively affect other participants. + +**This project has a [Code of Conduct][].** + +## Table of contents + +* [Support](#support) +* [Release types](#release-types) + * [Download](#download) + * [Current and LTS releases](#current-and-lts-releases) + * [Nightly releases](#nightly-releases) + * [API documentation](#api-documentation) + * [Verifying binaries](#verifying-binaries) +* [Building Node.js](#building-nodejs) +* [Security](#security) +* [Contributing to Node.js](#contributing-to-nodejs) +* [Current project team members](#current-project-team-members) + * [TSC (Technical Steering Committee)](#tsc-technical-steering-committee) + * [Collaborators](#collaborators) + * [Triagers](#triagers) + * [Release keys](#release-keys) +* [License](#license) + +## Support + +Looking for help? Check out the +[instructions for getting support](.github/SUPPORT.md). + +## Release types + +* **Current**: Under active development. Code for the Current release is in the + branch for its major version number (for example, + [v22.x](https://github.com/nodejs/node/tree/v22.x)). Node.js releases a new + major version every 6 months, allowing for breaking changes. This happens in + April and October every year. Releases appearing each October have a support + life of 8 months. Releases appearing each April convert to LTS (see below) + each October. +* **LTS**: Releases that receive Long Term Support, with a focus on stability + and security. Every even-numbered major version will become an LTS release. + LTS releases receive 12 months of _Active LTS_ support and a further 18 months + of _Maintenance_. LTS release lines have alphabetically-ordered code names, + beginning with v4 Argon. There are no breaking changes or feature additions, + except in some special circumstances. +* **Nightly**: Code from the Current branch built every 24-hours when there are + changes. Use with caution. + +Current and LTS releases follow [semantic versioning](https://semver.org). A +member of the Release Team [signs](#release-keys) each Current and LTS release. +For more information, see the +[Release README](https://github.com/nodejs/Release#readme). + +### Download + +Binaries, installers, and source tarballs are available at +. + +#### Current and LTS releases + + + +The [latest](https://nodejs.org/download/release/latest/) directory is an +alias for the latest Current release. The latest-_codename_ directory is an +alias for the latest release from an LTS line. For example, the +[latest-hydrogen](https://nodejs.org/download/release/latest-hydrogen/) +directory contains the latest Hydrogen (Node.js 18) release. + +#### Nightly releases + + + +Each directory and filename includes the version (e.g., `v22.0.0`), +followed by the UTC date (e.g., `20240424` for April 24, 2024), +and the short commit SHA of the HEAD of the release (e.g., `ddd0a9e494`). +For instance, a full directory name might look like `v22.0.0-nightly20240424ddd0a9e494`. + +#### API documentation + +Documentation for the latest Current release is at . +Version-specific documentation is available in each release directory in the +_docs_ subdirectory. Version-specific documentation is also at +. + +### Verifying binaries + +Download directories contain a `SHASUMS256.txt.asc` file with SHA checksums for the +files and the releaser PGP signature. + +You can get a trusted keyring from nodejs/release-keys, e.g. using `curl`: + +```bash +curl -fsLo "/path/to/nodejs-keyring.kbx" "https://github.com/nodejs/release-keys/raw/HEAD/gpg/pubring.kbx" +``` + +Alternatively, you can import the releaser keys in your default keyring, see +[Release keys](#release-keys) for commands to how to do that. + +Then, you can verify the files you've downloaded locally +(if you're using your default keyring, pass `--keyring="${GNUPGHOME:-~/.gnupg}/pubring.kbx"`): + +```bash +curl -fsO "https://nodejs.org/dist/${VERSION}/SHASUMS256.txt.asc" \ +&& gpgv --keyring="/path/to/nodejs-keyring.kbx" --output SHASUMS256.txt < SHASUMS256.txt.asc \ +&& shasum --check SHASUMS256.txt --ignore-missing +``` + +## Building Node.js + +See [BUILDING.md](BUILDING.md) for instructions on how to build Node.js from +source and a list of supported platforms. + +## Security + +For information on reporting security vulnerabilities in Node.js, see +[SECURITY.md](./SECURITY.md). + +## Contributing to Node.js + +* [Contributing to the project][] +* [Working Groups][] +* [Strategic initiatives][] +* [Technical values and prioritization][] + +## Current project team members + +For information about the governance of the Node.js project, see +[GOVERNANCE.md](./GOVERNANCE.md). + + + +### TSC (Technical Steering Committee) + +#### TSC voting members + + + +* [aduh95](https://github.com/aduh95) - + **Antoine du Hamel** <> (he/him) +* [anonrig](https://github.com/anonrig) - + **Yagiz Nizipli** <> (he/him) +* [benjamingr](https://github.com/benjamingr) - + **Benjamin Gruenbaum** <> +* [BridgeAR](https://github.com/BridgeAR) - + **Ruben Bridgewater** <> (he/him) +* [gireeshpunathil](https://github.com/gireeshpunathil) - + **Gireesh Punathil** <> (he/him) +* [jasnell](https://github.com/jasnell) - + **James M Snell** <> (he/him) +* [joyeecheung](https://github.com/joyeecheung) - + **Joyee Cheung** <> (she/her) +* [legendecas](https://github.com/legendecas) - + **Chengzhong Wu** <> (he/him) +* [marco-ippolito](https://github.com/marco-ippolito) - + **Marco Ippolito** <> (he/him) +* [mcollina](https://github.com/mcollina) - + **Matteo Collina** <> (he/him) +* [panva](https://github.com/panva) - + **Filip Skokan** <> (he/him) +* [RafaelGSS](https://github.com/RafaelGSS) - + **Rafael Gonzaga** <> (he/him) +* [RaisinTen](https://github.com/RaisinTen) - + **Darshan Sen** <> (he/him) +* [richardlau](https://github.com/richardlau) - + **Richard Lau** <> +* [ronag](https://github.com/ronag) - + **Robert Nagy** <> +* [ruyadorno](https://github.com/ruyadorno) - + **Ruy Adorno** <> (he/him) +* [ShogunPanda](https://github.com/ShogunPanda) - + **Paolo Insogna** <> (he/him) +* [targos](https://github.com/targos) - + **Michaël Zasso** <> (he/him) +* [tniessen](https://github.com/tniessen) - + **Tobias Nießen** <> (he/him) + +#### TSC regular members + +* [BethGriggs](https://github.com/BethGriggs) - + **Beth Griggs** <> (she/her) +* [bnoordhuis](https://github.com/bnoordhuis) - + **Ben Noordhuis** <> +* [cjihrig](https://github.com/cjihrig) - + **Colin Ihrig** <> (he/him) +* [codebytere](https://github.com/codebytere) - + **Shelley Vohr** <> (she/her) +* [GeoffreyBooth](https://github.com/GeoffreyBooth) - + **Geoffrey Booth** <> (he/him) +* [MoLow](https://github.com/MoLow) - + **Moshe Atlow** <> (he/him) +* [Trott](https://github.com/Trott) - + **Rich Trott** <> (he/him) + +
+ +TSC emeriti members + +#### TSC emeriti members + +* [addaleax](https://github.com/addaleax) - + **Anna Henningsen** <> (she/her) +* [apapirovski](https://github.com/apapirovski) - + **Anatoli Papirovski** <> (he/him) +* [ChALkeR](https://github.com/ChALkeR) - + **Сковорода Никита Андреевич** <> (he/him) +* [chrisdickinson](https://github.com/chrisdickinson) - + **Chris Dickinson** <> +* [danbev](https://github.com/danbev) - + **Daniel Bevenius** <> (he/him) +* [danielleadams](https://github.com/danielleadams) - + **Danielle Adams** <> (she/her) +* [evanlucas](https://github.com/evanlucas) - + **Evan Lucas** <> (he/him) +* [fhinkel](https://github.com/fhinkel) - + **Franziska Hinkelmann** <> (she/her) +* [Fishrock123](https://github.com/Fishrock123) - + **Jeremiah Senkpiel** <> (he/they) +* [gabrielschulhof](https://github.com/gabrielschulhof) - + **Gabriel Schulhof** <> +* [gibfahn](https://github.com/gibfahn) - + **Gibson Fahnestock** <> (he/him) +* [indutny](https://github.com/indutny) - + **Fedor Indutny** <> +* [isaacs](https://github.com/isaacs) - + **Isaac Z. Schlueter** <> +* [joshgav](https://github.com/joshgav) - + **Josh Gavant** <> +* [mhdawson](https://github.com/mhdawson) - + **Michael Dawson** <> (he/him) +* [mmarchini](https://github.com/mmarchini) - + **Mary Marchini** <> (she/her) +* [mscdex](https://github.com/mscdex) - + **Brian White** <> +* [MylesBorins](https://github.com/MylesBorins) - + **Myles Borins** <> (he/him) +* [nebrius](https://github.com/nebrius) - + **Bryan Hughes** <> +* [ofrobots](https://github.com/ofrobots) - + **Ali Ijaz Sheikh** <> (he/him) +* [orangemocha](https://github.com/orangemocha) - + **Alexis Campailla** <> +* [piscisaureus](https://github.com/piscisaureus) - + **Bert Belder** <> +* [rvagg](https://github.com/rvagg) - + **Rod Vagg** <> +* [sam-github](https://github.com/sam-github) - + **Sam Roberts** <> +* [shigeki](https://github.com/shigeki) - + **Shigeki Ohtsu** <> (he/him) +* [thefourtheye](https://github.com/thefourtheye) - + **Sakthipriyan Vairamani** <> (he/him) +* [TimothyGu](https://github.com/TimothyGu) - + **Tiancheng "Timothy" Gu** <> (he/him) +* [trevnorris](https://github.com/trevnorris) - + **Trevor Norris** <> + +
+ + + +### Collaborators + +* [abmusse](https://github.com/abmusse) - + **Abdirahim Musse** <> +* [addaleax](https://github.com/addaleax) - + **Anna Henningsen** <> (she/her) +* [Aditi-1400](https://github.com/Aditi-1400) - + **Aditi Singh** <> (she/her) +* [aduh95](https://github.com/aduh95) - + **Antoine du Hamel** <> (he/him) - [Support me](https://github.com/sponsors/aduh95) +* [anonrig](https://github.com/anonrig) - + **Yagiz Nizipli** <> (he/him) - [Support me](https://github.com/sponsors/anonrig) +* [atlowChemi](https://github.com/atlowChemi) - + **Chemi Atlow** <> (he/him) +* [Ayase-252](https://github.com/Ayase-252) - + **Qingyu Deng** <> +* [bengl](https://github.com/bengl) - + **Bryan English** <> (he/him) +* [benjamingr](https://github.com/benjamingr) - + **Benjamin Gruenbaum** <> +* [BethGriggs](https://github.com/BethGriggs) - + **Beth Griggs** <> (she/her) +* [bnb](https://github.com/bnb) - + **Tierney Cyren** <> (they/them) +* [bnoordhuis](https://github.com/bnoordhuis) - + **Ben Noordhuis** <> +* [BridgeAR](https://github.com/BridgeAR) - + **Ruben Bridgewater** <> (he/him) +* [cclauss](https://github.com/cclauss) - + **Christian Clauss** <> (he/him) +* [cjihrig](https://github.com/cjihrig) - + **Colin Ihrig** <> (he/him) +* [codebytere](https://github.com/codebytere) - + **Shelley Vohr** <> (she/her) +* [cola119](https://github.com/cola119) - + **Kohei Ueno** <> (he/him) +* [daeyeon](https://github.com/daeyeon) - + **Daeyeon Jeong** <> (he/him) +* [dario-piotrowicz](https://github.com/dario-piotrowicz) - + **Dario Piotrowicz** <> (he/him) +* [debadree25](https://github.com/debadree25) - + **Debadree Chatterjee** <> (he/him) +* [deokjinkim](https://github.com/deokjinkim) - + **Deokjin Kim** <> (he/him) +* [edsadr](https://github.com/edsadr) - + **Adrian Estrada** <> (he/him) +* [ErickWendel](https://github.com/ErickWendel) - + **Erick Wendel** <> (he/him) +* [Ethan-Arrowood](https://github.com/Ethan-Arrowood) - + **Ethan Arrowood** <> (he/him) +* [fhinkel](https://github.com/fhinkel) - + **Franziska Hinkelmann** <> (she/her) +* [Flarna](https://github.com/Flarna) - + **Gerhard Stöbich** <> (he/they) +* [gabrielschulhof](https://github.com/gabrielschulhof) - + **Gabriel Schulhof** <> +* [geeksilva97](https://github.com/geeksilva97) - + **Edy Silva** <> (he/him) +* [gengjiawen](https://github.com/gengjiawen) - + **Jiawen Geng** <> +* [GeoffreyBooth](https://github.com/GeoffreyBooth) - + **Geoffrey Booth** <> (he/him) +* [gireeshpunathil](https://github.com/gireeshpunathil) - + **Gireesh Punathil** <> (he/him) +* [guybedford](https://github.com/guybedford) - + **Guy Bedford** <> (he/him) +* [H4ad](https://github.com/H4ad) - + **Vinícius Lourenço Claro Cardoso** <> (he/him) +* [HarshithaKP](https://github.com/HarshithaKP) - + **Harshitha K P** <> (she/her) +* [himself65](https://github.com/himself65) - + **Zeyu "Alex" Yang** <> (he/him) +* [hybrist](https://github.com/hybrist) - + **Jan Martin** <> (he/him) +* [IlyasShabi](https://github.com/IlyasShabi) - + **Ilyas Shabi** <> (he/him) +* [islandryu](https://github.com/islandryu) - + **Ryuhei Shima** <> (he/him) +* [jakecastelli](https://github.com/jakecastelli) - + **Jake Yuesong Li** <> (he/him) +* [JakobJingleheimer](https://github.com/JakobJingleheimer) - + **Jacob Smith** <> (he/him) +* [jasnell](https://github.com/jasnell) - + **James M Snell** <> (he/him) +* [jazelly](https://github.com/jazelly) - + **Jason Zhang** <> (he/him) +* [JonasBa](https://github.com/JonasBa) - + **Jonas Badalic** <> (he/him) +* [joyeecheung](https://github.com/joyeecheung) - + **Joyee Cheung** <> (she/her) +* [juanarbol](https://github.com/juanarbol) - + **Juan José Arboleda** <> (he/him) +* [JungMinu](https://github.com/JungMinu) - + **Minwoo Jung** <> (he/him) +* [KhafraDev](https://github.com/KhafraDev) - + **Matthew Aitken** <> (he/him) +* [legendecas](https://github.com/legendecas) - + **Chengzhong Wu** <> (he/him) +* [lemire](https://github.com/lemire) - + **Daniel Lemire** <> +* [LiviaMedeiros](https://github.com/LiviaMedeiros) - + **LiviaMedeiros** <> +* [ljharb](https://github.com/ljharb) - + **Jordan Harband** <> +* [lpinca](https://github.com/lpinca) - + **Luigi Pinca** <> (he/him) +* [lukekarrys](https://github.com/lukekarrys) - + **Luke Karrys** <> (he/him) +* [Lxxyx](https://github.com/Lxxyx) - + **Zijian Liu** <> (he/him) +* [marco-ippolito](https://github.com/marco-ippolito) - + **Marco Ippolito** <> (he/him) - [Support me](https://github.com/sponsors/marco-ippolito) +* [marsonya](https://github.com/marsonya) - + **Akhil Marsonya** <> (he/him) +* [MattiasBuelens](https://github.com/MattiasBuelens) - + **Mattias Buelens** <> (he/him) +* [mcollina](https://github.com/mcollina) - + **Matteo Collina** <> (he/him) - [Support me](https://github.com/sponsors/mcollina) +* [meixg](https://github.com/meixg) - + **Xuguang Mei** <> (he/him) +* [mhdawson](https://github.com/mhdawson) - + **Michael Dawson** <> (he/him) +* [MoLow](https://github.com/MoLow) - + **Moshe Atlow** <> (he/him) +* [MrJithil](https://github.com/MrJithil) - + **Jithil P Ponnan** <> (he/him) +* [ovflowd](https://github.com/ovflowd) - + **Claudio Wunder** <> (he/they) +* [panva](https://github.com/panva) - + **Filip Skokan** <> (he/him) - [Support me](https://github.com/sponsors/panva) +* [pimterry](https://github.com/pimterry) - + **Tim Perry** <> (he/him) +* [pmarchini](https://github.com/pmarchini) - + **Pietro Marchini** <> (he/him) +* [puskin](https://github.com/puskin) - + **Giovanni Bucci** <> (he/him) +* [Qard](https://github.com/Qard) - + **Stephen Belanger** <> (he/him) +* [RafaelGSS](https://github.com/RafaelGSS) - + **Rafael Gonzaga** <> (he/him) - [Support me](https://github.com/sponsors/RafaelGSS) +* [RaisinTen](https://github.com/RaisinTen) - + **Darshan Sen** <> (he/him) - [Support me](https://github.com/sponsors/RaisinTen) +* [richardlau](https://github.com/richardlau) - + **Richard Lau** <> +* [rluvaton](https://github.com/rluvaton) - + **Raz Luvaton** <> (he/him) +* [ronag](https://github.com/ronag) - + **Robert Nagy** <> +* [ruyadorno](https://github.com/ruyadorno) - + **Ruy Adorno** <> (he/him) +* [santigimeno](https://github.com/santigimeno) - + **Santiago Gimeno** <> +* [ShogunPanda](https://github.com/ShogunPanda) - + **Paolo Insogna** <> (he/him) +* [srl295](https://github.com/srl295) - + **Steven R Loomis** <> +* [StefanStojanovic](https://github.com/StefanStojanovic) - + **Stefan Stojanovic** <> (he/him) +* [sxa](https://github.com/sxa) - + **Stewart X Addison** <> (he/him) +* [targos](https://github.com/targos) - + **Michaël Zasso** <> (he/him) +* [theanarkh](https://github.com/theanarkh) - + **theanarkh** <> (he/him) +* [tniessen](https://github.com/tniessen) - + **Tobias Nießen** <> (he/him) +* [trivikr](https://github.com/trivikr) - + **Trivikram Kamat** <> +* [Trott](https://github.com/Trott) - + **Rich Trott** <> (he/him) +* [UlisesGascon](https://github.com/UlisesGascon) - + **Ulises Gascón** <> (he/him) +* [vmoroz](https://github.com/vmoroz) - + **Vladimir Morozov** <> (he/him) +* [VoltrexKeyva](https://github.com/VoltrexKeyva) - + **Mohammed Keyvanzadeh** <> (he/him) +* [zcbenz](https://github.com/zcbenz) - + **Cheng Zhao** <> (he/him) +* [ZYSzys](https://github.com/ZYSzys) - + **Yongsheng Zhang** <> (he/him) + +
+ +Emeriti + + + +### Collaborator emeriti + +* [ak239](https://github.com/ak239) - + **Aleksei Koziatinskii** <> +* [andrasq](https://github.com/andrasq) - + **Andras** <> +* [AndreasMadsen](https://github.com/AndreasMadsen) - + **Andreas Madsen** <> (he/him) +* [AnnaMag](https://github.com/AnnaMag) - + **Anna M. Kedzierska** <> +* [antsmartian](https://github.com/antsmartian) - + **Anto Aravinth** <> (he/him) +* [apapirovski](https://github.com/apapirovski) - + **Anatoli Papirovski** <> (he/him) +* [aqrln](https://github.com/aqrln) - + **Alexey Orlenko** <> (he/him) +* [AshCripps](https://github.com/AshCripps) - + **Ash Cripps** <> +* [bcoe](https://github.com/bcoe) - + **Ben Coe** <> (he/him) +* [bmeck](https://github.com/bmeck) - + **Bradley Farias** <> +* [bmeurer](https://github.com/bmeurer) - + **Benedikt Meurer** <> +* [boneskull](https://github.com/boneskull) - + **Christopher Hiller** <> (he/him) +* [brendanashworth](https://github.com/brendanashworth) - + **Brendan Ashworth** <> +* [bzoz](https://github.com/bzoz) - + **Bartosz Sosnowski** <> +* [calvinmetcalf](https://github.com/calvinmetcalf) - + **Calvin Metcalf** <> +* [ChALkeR](https://github.com/ChALkeR) - + **Сковорода Никита Андреевич** <> (he/him) +* [chrisdickinson](https://github.com/chrisdickinson) - + **Chris Dickinson** <> +* [claudiorodriguez](https://github.com/claudiorodriguez) - + **Claudio Rodriguez** <> +* [danbev](https://github.com/danbev) - + **Daniel Bevenius** <> (he/him) +* [danielleadams](https://github.com/danielleadams) - + **Danielle Adams** <> (she/her) +* [DavidCai1993](https://github.com/DavidCai1993) - + **David Cai** <> (he/him) +* [davisjam](https://github.com/davisjam) - + **Jamie Davis** <> (he/him) +* [devnexen](https://github.com/devnexen) - + **David Carlier** <> +* [devsnek](https://github.com/devsnek) - + **Gus Caplan** <> (they/them) +* [digitalinfinity](https://github.com/digitalinfinity) - + **Hitesh Kanwathirtha** <> (he/him) +* [dmabupt](https://github.com/dmabupt) - + **Xu Meng** <> (he/him) +* [dnlup](https://github.com/dnlup) - + **dnlup** <> +* [eljefedelrodeodeljefe](https://github.com/eljefedelrodeodeljefe) - + **Robert Jefe Lindstaedt** <> +* [estliberitas](https://github.com/estliberitas) - + **Alexander Makarenko** <> +* [eugeneo](https://github.com/eugeneo) - + **Eugene Ostroukhov** <> +* [evanlucas](https://github.com/evanlucas) - + **Evan Lucas** <> (he/him) +* [F3n67u](https://github.com/F3n67u) - + **Feng Yu** <> (he/him) +* [firedfox](https://github.com/firedfox) - + **Daniel Wang** <> +* [Fishrock123](https://github.com/Fishrock123) - + **Jeremiah Senkpiel** <> (he/they) +* [gdams](https://github.com/gdams) - + **George Adams** <> (he/him) +* [geek](https://github.com/geek) - + **Wyatt Preul** <> +* [gibfahn](https://github.com/gibfahn) - + **Gibson Fahnestock** <> (he/him) +* [glentiki](https://github.com/glentiki) - + **Glen Keane** <> (he/him) +* [hashseed](https://github.com/hashseed) - + **Yang Guo** <> (he/him) +* [hiroppy](https://github.com/hiroppy) - + **Yuta Hiroto** <> (he/him) +* [iansu](https://github.com/iansu) - + **Ian Sutherland** <> +* [iarna](https://github.com/iarna) - + **Rebecca Turner** <> +* [imran-iq](https://github.com/imran-iq) - + **Imran Iqbal** <> +* [imyller](https://github.com/imyller) - + **Ilkka Myller** <> +* [indutny](https://github.com/indutny) - + **Fedor Indutny** <> +* [isaacs](https://github.com/isaacs) - + **Isaac Z. Schlueter** <> +* [italoacasas](https://github.com/italoacasas) - + **Italo A. Casas** <> (he/him) +* [JacksonTian](https://github.com/JacksonTian) - + **Jackson Tian** <> +* [jasongin](https://github.com/jasongin) - + **Jason Ginchereau** <> +* [jbergstroem](https://github.com/jbergstroem) - + **Johan Bergström** <> +* [jdalton](https://github.com/jdalton) - + **John-David Dalton** <> +* [jhamhader](https://github.com/jhamhader) - + **Yuval Brik** <> +* [joaocgreis](https://github.com/joaocgreis) - + **João Reis** <> +* [joesepi](https://github.com/joesepi) - + **Joe Sepi** <> (he/him) +* [joshgav](https://github.com/joshgav) - + **Josh Gavant** <> +* [julianduque](https://github.com/julianduque) - + **Julian Duque** <> (he/him) +* [kfarnung](https://github.com/kfarnung) - + **Kyle Farnung** <> (he/him) +* [kunalspathak](https://github.com/kunalspathak) - + **Kunal Pathak** <> +* [kuriyosh](https://github.com/kuriyosh) - + **Yoshiki Kurihara** <> (he/him) +* [kvakil](https://github.com/kvakil) - + **Keyhan Vakil** <> +* [lance](https://github.com/lance) - + **Lance Ball** <> (he/him) +* [Leko](https://github.com/Leko) - + **Shingo Inoue** <> (he/him) +* [Linkgoron](https://github.com/Linkgoron) - + **Nitzan Uziely** <> +* [lucamaraschi](https://github.com/lucamaraschi) - + **Luca Maraschi** <> (he/him) +* [lundibundi](https://github.com/lundibundi) - + **Denys Otrishko** <> (he/him) +* [lxe](https://github.com/lxe) - + **Aleksey Smolenchuk** <> +* [maclover7](https://github.com/maclover7) - + **Jon Moss** <> (he/him) +* [mafintosh](https://github.com/mafintosh) - + **Mathias Buus** <> (he/him) +* [matthewloring](https://github.com/matthewloring) - + **Matthew Loring** <> +* [Mesteery](https://github.com/Mesteery) - + **Mestery** <> (he/him) +* [micnic](https://github.com/micnic) - + **Nicu Micleușanu** <> (he/him) +* [mikeal](https://github.com/mikeal) - + **Mikeal Rogers** <> +* [miladfarca](https://github.com/miladfarca) - + **Milad Fa** <> (he/him) +* [mildsunrise](https://github.com/mildsunrise) - + **Alba Mendez** <> (she/her) +* [misterdjules](https://github.com/misterdjules) - + **Julien Gilli** <> +* [mmarchini](https://github.com/mmarchini) - + **Mary Marchini** <> (she/her) +* [monsanto](https://github.com/monsanto) - + **Christopher Monsanto** <> +* [MoonBall](https://github.com/MoonBall) - + **Chen Gang** <> +* [mscdex](https://github.com/mscdex) - + **Brian White** <> +* [MylesBorins](https://github.com/MylesBorins) - + **Myles Borins** <> (he/him) +* [not-an-aardvark](https://github.com/not-an-aardvark) - + **Teddy Katz** <> (he/him) +* [ofrobots](https://github.com/ofrobots) - + **Ali Ijaz Sheikh** <> (he/him) +* [Olegas](https://github.com/Olegas) - + **Oleg Elifantiev** <> +* [orangemocha](https://github.com/orangemocha) - + **Alexis Campailla** <> +* [othiym23](https://github.com/othiym23) - + **Forrest L Norvell** <> (they/them/themself) +* [oyyd](https://github.com/oyyd) - + **Ouyang Yadong** <> (he/him) +* [petkaantonov](https://github.com/petkaantonov) - + **Petka Antonov** <> +* [phillipj](https://github.com/phillipj) - + **Phillip Johnsen** <> +* [piscisaureus](https://github.com/piscisaureus) - + **Bert Belder** <> +* [pmq20](https://github.com/pmq20) - + **Minqi Pan** <> +* [PoojaDurgad](https://github.com/PoojaDurgad) - + **Pooja D P** <> (she/her) +* [princejwesley](https://github.com/princejwesley) - + **Prince John Wesley** <> +* [psmarshall](https://github.com/psmarshall) - + **Peter Marshall** <> (he/him) +* [puzpuzpuz](https://github.com/puzpuzpuz) - + **Andrey Pechkurov** <> (he/him) +* [refack](https://github.com/refack) - + **Refael Ackermann (רפאל פלחי)** <> (he/him/הוא/אתה) +* [rexagod](https://github.com/rexagod) - + **Pranshu Srivastava** <> (he/him) +* [rickyes](https://github.com/rickyes) - + **Ricky Zhou** <<0x19951125@gmail.com>> (he/him) +* [rlidwka](https://github.com/rlidwka) - + **Alex Kocharin** <> +* [rmg](https://github.com/rmg) - + **Ryan Graham** <> +* [robertkowalski](https://github.com/robertkowalski) - + **Robert Kowalski** <> +* [romankl](https://github.com/romankl) - + **Roman Klauke** <> +* [ronkorving](https://github.com/ronkorving) - + **Ron Korving** <> +* [RReverser](https://github.com/RReverser) - + **Ingvar Stepanyan** <> +* [rubys](https://github.com/rubys) - + **Sam Ruby** <> +* [rvagg](https://github.com/rvagg) - + **Rod Vagg** <> +* [ryzokuken](https://github.com/ryzokuken) - + **Ujjwal Sharma** <> (he/him) +* [saghul](https://github.com/saghul) - + **Saúl Ibarra Corretgé** <> +* [sam-github](https://github.com/sam-github) - + **Sam Roberts** <> +* [sebdeckers](https://github.com/sebdeckers) - + **Sebastiaan Deckers** <> +* [seishun](https://github.com/seishun) - + **Nikolai Vavilov** <> +* [shigeki](https://github.com/shigeki) - + **Shigeki Ohtsu** <> (he/him) +* [shisama](https://github.com/shisama) - + **Masashi Hirano** <> (he/him) +* [silverwind](https://github.com/silverwind) - + **Roman Reiss** <> +* [starkwang](https://github.com/starkwang) - + **Weijia Wang** <> +* [stefanmb](https://github.com/stefanmb) - + **Stefan Budeanu** <> +* [tellnes](https://github.com/tellnes) - + **Christian Tellnes** <> +* [thefourtheye](https://github.com/thefourtheye) - + **Sakthipriyan Vairamani** <> (he/him) +* [thlorenz](https://github.com/thlorenz) - + **Thorsten Lorenz** <> +* [TimothyGu](https://github.com/TimothyGu) - + **Tiancheng "Timothy" Gu** <> (he/him) +* [trevnorris](https://github.com/trevnorris) - + **Trevor Norris** <> +* [tunniclm](https://github.com/tunniclm) - + **Mike Tunnicliffe** <> +* [vdeturckheim](https://github.com/vdeturckheim) - + **Vladimir de Turckheim** <> (he/him) +* [vkurchatkin](https://github.com/vkurchatkin) - + **Vladimir Kurchatkin** <> +* [vsemozhetbyt](https://github.com/vsemozhetbyt) - + **Vse Mozhet Byt** <> (he/him) +* [watilde](https://github.com/watilde) - + **Daijiro Wachi** <> (he/him) +* [watson](https://github.com/watson) - + **Thomas Watson** <> +* [whitlockjc](https://github.com/whitlockjc) - + **Jeremy Whitlock** <> +* [XadillaX](https://github.com/XadillaX) - + **Khaidi Chu** <> (he/him) +* [yashLadha](https://github.com/yashLadha) - + **Yash Ladha** <> (he/him) +* [yhwang](https://github.com/yhwang) - + **Yihong Wang** <> +* [yorkie](https://github.com/yorkie) - + **Yorkie Liu** <> +* [yosuke-furukawa](https://github.com/yosuke-furukawa) - + **Yosuke Furukawa** <> + +
+ + + +Collaborators follow the [Collaborator Guide](./doc/contributing/collaborator-guide.md) in +maintaining the Node.js project. + +### Triagers + +* [1ilsang](https://github.com/1ilsang) - + **Sangchul Lee** <<1ilsang.dev@gmail.com>> (he/him) +* [atlowChemi](https://github.com/atlowChemi) - + **Chemi Atlow** <> (he/him) +* [Ayase-252](https://github.com/Ayase-252) - + **Qingyu Deng** <> +* [bjohansebas](https://github.com/bjohansebas) - + **Sebastian Beltran** <> +* [bmuenzenmeyer](https://github.com/bmuenzenmeyer) - + **Brian Muenzenmeyer** <> (he/him) +* [CanadaHonk](https://github.com/CanadaHonk) - + **Oliver Medhurst** <> (they/them) +* [daeyeon](https://github.com/daeyeon) - + **Daeyeon Jeong** <> (he/him) +* [gireeshpunathil](https://github.com/gireeshpunathil) - + **Gireesh Punathil** <> (he/him) +* [gurgunday](https://github.com/gurgunday) - + **Gürgün Dayıoğlu** <> +* [haramj](https://github.com/haramj) - + **Haram Jeong** <> +* [HBSPS](https://github.com/HBSPS) - + **Wiyeong Seo** <> +* [iam-frankqiu](https://github.com/iam-frankqiu) - + **Frank Qiu** <> (he/him) +* [KevinEady](https://github.com/KevinEady) - + **Kevin Eady** <> (he/him) +* [marsonya](https://github.com/marsonya) - + **Akhil Marsonya** <> (he/him) +* [meixg](https://github.com/meixg) - + **Xuguang Mei** <> (he/him) +* [milesguicent](https://github.com/milesguicent) - + **Miles Guicent** <> (he/him) +* [preveen-stack](https://github.com/preveen-stack) - + **Preveen Padmanabhan** <> (he/him) +* [RaisinTen](https://github.com/RaisinTen) - + **Darshan Sen** <> (he/him) +* [VoltrexKeyva](https://github.com/VoltrexKeyva) - + **Mohammed Keyvanzadeh** <> (he/him) + +Triagers follow the [Triage Guide](./doc/contributing/issues.md#triaging-a-bug-report) when +responding to new issues. + +### Release keys + +Primary GPG keys for Node.js Releasers (some Releasers sign with subkeys): + +* **Antoine du Hamel** <> + `5BE8A3F6C8A5C01D106C0AD820B1A390B168D356` +* **Juan José Arboleda** <> + `DD792F5973C6DE52C432CBDAC77ABFA00DDBF2B7` +* **Marco Ippolito** <> + `CC68F5A3106FF448322E48ED27F5E38D5B0A215F` +* **Michaël Zasso** <> + `8FCCA13FEF1D0C2E91008E09770F7A9A5AE15600` +* **Rafael Gonzaga** <> + `890C08DB8579162FEE0DF9DB8BEAB4DFCF555EF4` +* **Richard Lau** <> + `C82FA3AE1CBEDC6BE46B9360C43CEC45C17AB93C` +* **Ruy Adorno** <> + `108F52B48DB57BB0CC439B2997B01419BD92F80A` +* **Ulises Gascón** <> + `A363A499291CBBC940DD62E41F10027AF002F8B0` + +You can use the keyring the project maintains at +. +Alternatively, you can import them from a public key server. Have in mind that +the project cannot guarantee the availability of the server nor the keys on +that server. + +```bash +gpg --keyserver hkps://keys.openpgp.org --recv-keys 5BE8A3F6C8A5C01D106C0AD820B1A390B168D356 # Antoine du Hamel +gpg --keyserver hkps://keys.openpgp.org --recv-keys DD792F5973C6DE52C432CBDAC77ABFA00DDBF2B7 # Juan José Arboleda +gpg --keyserver hkps://keys.openpgp.org --recv-keys CC68F5A3106FF448322E48ED27F5E38D5B0A215F # Marco Ippolito +gpg --keyserver hkps://keys.openpgp.org --recv-keys 8FCCA13FEF1D0C2E91008E09770F7A9A5AE15600 # Michaël Zasso +gpg --keyserver hkps://keys.openpgp.org --recv-keys 890C08DB8579162FEE0DF9DB8BEAB4DFCF555EF4 # Rafael Gonzaga +gpg --keyserver hkps://keys.openpgp.org --recv-keys C82FA3AE1CBEDC6BE46B9360C43CEC45C17AB93C # Richard Lau +gpg --keyserver hkps://keys.openpgp.org --recv-keys 108F52B48DB57BB0CC439B2997B01419BD92F80A # Ruy Adorno +gpg --keyserver hkps://keys.openpgp.org --recv-keys A363A499291CBBC940DD62E41F10027AF002F8B0 # Ulises Gascón +``` + +See [Verifying binaries](#verifying-binaries) for how to use these keys to +verify a downloaded file. + +
+ +Other keys used to sign some previous releases + +* **Antoine du Hamel** <> + `C0D6248439F1D5604AAFFB4021D900FFDB233756` +* **Beth Griggs** <> + `4ED778F539E3634C779C87C6D7062848A1AB005C` +* **Bryan English** <> + `141F07595B7B3FFE74309A937405533BE57C7D57` +* **Chris Dickinson** <> + `9554F04D7259F04124DE6B476D5A82AC7E37093B` +* **Colin Ihrig** <> + `94AE36675C464D64BAFA68DD7434390BDBE9B9C5` +* **Danielle Adams** <> + `1C050899334244A8AF75E53792EF661D867B9DFA` + `74F12602B6F1C4E913FAA37AD3A89613643B6201` +* **Evan Lucas** <> + `B9AE9905FFD7803F25714661B63B535A4C206CA9` +* **Gibson Fahnestock** <> + `77984A986EBC2AA786BC0F66B01FBB92821C587A` +* **Isaac Z. Schlueter** <> + `93C7E9E91B49E432C2F75674B0A78B0A6C481CF6` +* **Italo A. Casas** <> + `56730D5401028683275BD23C23EFEFE93C4CFFFE` +* **James M Snell** <> + `71DCFD284A79C3B38668286BC97EC7A07EDE3FC1` +* **Jeremiah Senkpiel** <> + `FD3A5288F042B6850C66B31F09FE44734EB7990E` +* **Juan José Arboleda** <> + `61FC681DFB92A079F1685E77973F295594EC4689` +* **Julien Gilli** <> + `114F43EE0176B71C7BC219DD50A3051F888C628D` +* **Myles Borins** <> + `C4F0DFFF4E8C1A8236409D08E73BC641CC11F4C8` +* **Rod Vagg** <> + `DD8F2338BAE7501E3DD5AC78C273792F7D83545D` +* **Ruben Bridgewater** <> + `A48C2BEE680E841632CD4E44F07496B3EB3C1762` +* **Shelley Vohr** <> + `B9E2F5981AA6E0CD28160D9FF13993A75599653C` +* **Timothy J Fontaine** <> + `7937DFD2AB06298B2293C3187D33FF9D0246406D` + +The project maintains a keyring able to verify all past releases of Node.js at +. + +
+ +### Security release stewards + +When possible, the commitment to take slots in the +security release steward rotation is made by companies in order +to ensure individuals who act as security stewards have the +support and recognition from their employer to be able to +prioritize security releases. Security release stewards manage security +releases on a rotation basis as outlined in the +[security release process](./doc/contributing/security-release-process.md). + +* [Datadog](https://www.datadoghq.com/) + * [bengl](https://github.com/bengl) - + **Bryan English** <> (he/him) +* [HeroDevs](https://www.herodevs.com/) + * [marco-ippolito](https://github.com/marco-ippolito) - + **Marco Ippolito** <> (he/him) +* [NodeSource](https://nodesource.com/) + * [juanarbol](https://github.com/juanarbol) - + **Juan José Arboleda** <> (he/him) + * [RafaelGSS](https://github.com/RafaelGSS) - + **Rafael Gonzaga** <> (he/him) +* [Platformatic](https://platformatic.dev/) + * [mcollina](https://github.com/mcollina) - + **Matteo Collina** <> (he/him) +* [Red Hat](https://redhat.com) / [IBM](https://ibm.com) + * [joesepi](https://github.com/joesepi) - + **Joe Sepi** <> (he/him) + * [mhdawson](https://github.com/mhdawson) - + **Michael Dawson** <> (he/him) + +## License + +Node.js is available under the +[MIT License](https://opensource.org/licenses/MIT). Node.js also includes +external libraries that are available under a variety of licenses. See +[LICENSE](https://github.com/nodejs/node/blob/HEAD/LICENSE) for the full +license text. + +[Code of Conduct]: https://github.com/nodejs/admin/blob/HEAD/CODE_OF_CONDUCT.md +[Contributing to the project]: CONTRIBUTING.md +[Node.js website]: https://nodejs.org/ +[OpenJS Foundation]: https://openjsf.org/ +[Strategic initiatives]: doc/contributing/strategic-initiatives.md +[Technical values and prioritization]: doc/contributing/technical-values.md +[Working Groups]: https://github.com/nodejs/TSC/blob/HEAD/WORKING_GROUPS.md diff --git a/data_prepare/node-v24.12.0-linux-x64/bin/corepack b/data_prepare/node-v24.12.0-linux-x64/bin/corepack new file mode 100644 index 0000000000000000000000000000000000000000..6179b11c083cb581356de6381a71144b2d530c8a --- /dev/null +++ b/data_prepare/node-v24.12.0-linux-x64/bin/corepack @@ -0,0 +1,4 @@ +#!/usr/bin/env node +process.env.COREPACK_ENABLE_DOWNLOAD_PROMPT??='0'; +require('module').enableCompileCache?.(); +require('./lib/corepack.cjs').runMain(process.argv.slice(2)); \ No newline at end of file diff --git a/data_prepare/node-v24.12.0-linux-x64/bin/npm b/data_prepare/node-v24.12.0-linux-x64/bin/npm new file mode 100644 index 0000000000000000000000000000000000000000..577abe03e7b8e9099840c1f17ba8875804f1e74b --- /dev/null +++ b/data_prepare/node-v24.12.0-linux-x64/bin/npm @@ -0,0 +1,2 @@ +#!/usr/bin/env node +require('../lib/cli.js')(process) diff --git a/data_prepare/node-v24.12.0-linux-x64/bin/npx b/data_prepare/node-v24.12.0-linux-x64/bin/npx new file mode 100644 index 0000000000000000000000000000000000000000..e2e1b87906abe0c2e5806c05c1eb724dd904cdb8 --- /dev/null +++ b/data_prepare/node-v24.12.0-linux-x64/bin/npx @@ -0,0 +1,130 @@ +#!/usr/bin/env node + +const cli = require('../lib/cli.js') + +// run the resulting command as `npm exec ...args` +process.argv[1] = require.resolve('./npm-cli.js') +process.argv.splice(2, 0, 'exec') + +// TODO: remove the affordances for removed items in npm v9 +const removedSwitches = new Set([ + 'always-spawn', + 'ignore-existing', + 'shell-auto-fallback', +]) + +const removedOpts = new Set([ + 'npm', + 'node-arg', + 'n', +]) + +const removed = new Set([ + ...removedSwitches, + ...removedOpts, +]) + +const { definitions, shorthands } = require('@npmcli/config/lib/definitions') +const npmSwitches = Object.entries(definitions) + .filter(([, { type }]) => type === Boolean || + (Array.isArray(type) && type.includes(Boolean))) + .map(([key]) => key) + +// things that don't take a value +const switches = new Set([ + ...removedSwitches, + ...npmSwitches, + 'no-install', + 'quiet', + 'q', + 'version', + 'v', + 'help', + 'h', +]) + +// things that do take a value +const opts = new Set([ + ...removedOpts, + 'package', + 'p', + 'cache', + 'userconfig', + 'call', + 'c', + 'shell', + 'npm', + 'node-arg', + 'n', +]) + +// break out of loop when we find a positional argument or -- +// If we find a positional arg, we shove -- in front of it, and +// let the normal npm cli handle the rest. +let i +let sawRemovedFlags = false +for (i = 3; i < process.argv.length; i++) { + const arg = process.argv[i] + if (arg === '--') { + break + } else if (/^-/.test(arg)) { + const [key, ...v] = arg.replace(/^-+/, '').split('=') + + switch (key) { + case 'p': + process.argv[i] = ['--package', ...v].join('=') + break + + case 'shell': + process.argv[i] = ['--script-shell', ...v].join('=') + break + + case 'no-install': + process.argv[i] = '--yes=false' + break + + default: + // resolve shorthands and run again + if (shorthands[key] && !removed.has(key)) { + const a = [...shorthands[key]] + if (v.length) { + a.push(v.join('=')) + } + process.argv.splice(i, 1, ...a) + i-- + continue + } + break + } + + if (removed.has(key)) { + // eslint-disable-next-line no-console + console.error(`npx: the --${key} argument has been removed.`) + sawRemovedFlags = true + process.argv.splice(i, 1) + i-- + } + + if (v.length === 0 && !switches.has(key) && + (opts.has(key) || !/^-/.test(process.argv[i + 1]))) { + // value will be next argument, skip over it. + if (removed.has(key)) { + // also remove the value for the cut key. + process.argv.splice(i + 1, 1) + } else { + i++ + } + } + } else { + // found a positional arg, put -- in front of it, and we're done + process.argv.splice(i, 0, '--') + break + } +} + +if (sawRemovedFlags) { + // eslint-disable-next-line no-console + console.error('See `npm help exec` for more information') +} + +cli(process) diff --git a/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/asn1.h b/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/asn1.h new file mode 100644 index 0000000000000000000000000000000000000000..4139d322630878e4621b27d888531546d0581eb2 --- /dev/null +++ b/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/asn1.h @@ -0,0 +1,5 @@ +#if defined(OPENSSL_NO_ASM) +# include "./asn1_no-asm.h" +#else +# include "./asn1_asm.h" +#endif diff --git a/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/asn1t.h b/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/asn1t.h new file mode 100644 index 0000000000000000000000000000000000000000..a5dc658efc7c1283d4339dd2d93297b837308b3e --- /dev/null +++ b/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/asn1t.h @@ -0,0 +1,5 @@ +#if defined(OPENSSL_NO_ASM) +# include "./asn1t_no-asm.h" +#else +# include "./asn1t_asm.h" +#endif diff --git a/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/asn1t_no-asm.h b/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/asn1t_no-asm.h new file mode 100644 index 0000000000000000000000000000000000000000..24e297b71f24c2fabf5cecb0f078f91d7670104b --- /dev/null +++ b/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/asn1t_no-asm.h @@ -0,0 +1,57 @@ +#undef OPENSSL_LINUX +#if defined(__linux) && !defined(__ANDROID__) +# define OPENSSL_LINUX 1 +#endif + +#if defined(OPENSSL_LINUX) && defined(__i386__) +# include "./archs/linux-elf/no-asm/include/openssl/asn1t.h" +#elif defined(OPENSSL_LINUX) && defined(__ILP32__) +# include "./archs/linux-x32/no-asm/include/openssl/asn1t.h" +#elif defined(OPENSSL_LINUX) && defined(__x86_64__) +# include "./archs/linux-x86_64/no-asm/include/openssl/asn1t.h" +#elif defined(OPENSSL_LINUX) && defined(__arm__) +# include "./archs/linux-armv4/no-asm/include/openssl/asn1t.h" +#elif defined(OPENSSL_LINUX) && defined(__aarch64__) +# include "./archs/linux-aarch64/no-asm/include/openssl/asn1t.h" +#elif defined(OPENSSL_LINUX) && defined(__loongarch64) +# include "./archs/linux64-loongarch64/no-asm/include/openssl/asn1t.h" +#elif defined(__APPLE__) && defined(__MACH__) && defined(__i386__) +# include "./archs/darwin-i386-cc/no-asm/include/openssl/asn1t.h" +#elif defined(__APPLE__) && defined(__MACH__) && defined(__x86_64__) +# include "./archs/darwin64-x86_64-cc/no-asm/include/openssl/asn1t.h" +#elif defined(__APPLE__) && defined(__MACH__) && defined(__arm64__) +# include "./archs/darwin64-arm64-cc/no-asm/include/openssl/asn1t.h" +#elif defined(_WIN32) && defined(_M_IX86) +# include "./archs/VC-WIN32/no-asm/include/openssl/asn1t.h" +#elif defined(_WIN32) && defined(_M_X64) +# include "./archs/VC-WIN64A/no-asm/include/openssl/asn1t.h" +#elif defined(_WIN32) && defined(_M_ARM64) +# include "./archs/VC-WIN64-ARM/no-asm/include/openssl/asn1t.h" +#elif (defined(__FreeBSD__) || defined(__OpenBSD__)) && defined(__i386__) +# include "./archs/BSD-x86/no-asm/include/openssl/asn1t.h" +#elif (defined(__FreeBSD__) || defined(__OpenBSD__)) && defined(__x86_64__) +# include "./archs/BSD-x86_64/no-asm/include/openssl/asn1t.h" +#elif defined(__sun) && defined(__i386__) +# include "./archs/solaris-x86-gcc/no-asm/include/openssl/asn1t.h" +#elif defined(__sun) && defined(__x86_64__) +# include "./archs/solaris64-x86_64-gcc/no-asm/include/openssl/asn1t.h" +#elif defined(OPENSSL_LINUX) && defined(__PPC64__) && defined(L_ENDIAN) +# include "./archs/linux-ppc64le/no-asm/include/openssl/asn1t.h" +#elif defined(_AIX) && defined(_ARCH_PPC64) +# include "./archs/aix64-gcc-as/no-asm/include/openssl/asn1t.h" +#elif defined(OPENSSL_LINUX) && defined(__s390x__) +# include "./archs/linux64-s390x/no-asm/include/openssl/asn1t.h" +#elif defined(OPENSSL_LINUX) && defined(__s390__) +# include "./archs/linux32-s390x/no-asm/include/openssl/asn1t.h" +#else +# include "./archs/linux-elf/no-asm/include/openssl/asn1t.h" +#endif + +/* GOST is not included in all platform */ +#ifndef OPENSSL_NO_GOST +# define OPENSSL_NO_GOST +#endif +/* HW_PADLOCK is not included in all platform */ +#ifndef OPENSSL_NO_HW_PADLOCK +# define OPENSSL_NO_HW_PADLOCK +#endif diff --git a/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/bioerr.h b/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/bioerr.h new file mode 100644 index 0000000000000000000000000000000000000000..e4fdb64974fc064e7486d67c61212f364b3c507b --- /dev/null +++ b/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/bioerr.h @@ -0,0 +1,72 @@ +/* + * Generated by util/mkerr.pl DO NOT EDIT + * Copyright 1995-2022 The OpenSSL Project Authors. All Rights Reserved. + * + * Licensed under the Apache License 2.0 (the "License"). You may not use + * this file except in compliance with the License. You can obtain a copy + * in the file LICENSE in the source distribution or at + * https://www.openssl.org/source/license.html + */ + +#ifndef OPENSSL_BIOERR_H +# define OPENSSL_BIOERR_H +# pragma once + +# include +# include +# include + + + +/* + * BIO reason codes. + */ +# define BIO_R_ACCEPT_ERROR 100 +# define BIO_R_ADDRINFO_ADDR_IS_NOT_AF_INET 141 +# define BIO_R_AMBIGUOUS_HOST_OR_SERVICE 129 +# define BIO_R_BAD_FOPEN_MODE 101 +# define BIO_R_BROKEN_PIPE 124 +# define BIO_R_CONNECT_ERROR 103 +# define BIO_R_CONNECT_TIMEOUT 147 +# define BIO_R_GETHOSTBYNAME_ADDR_IS_NOT_AF_INET 107 +# define BIO_R_GETSOCKNAME_ERROR 132 +# define BIO_R_GETSOCKNAME_TRUNCATED_ADDRESS 133 +# define BIO_R_GETTING_SOCKTYPE 134 +# define BIO_R_INVALID_ARGUMENT 125 +# define BIO_R_INVALID_SOCKET 135 +# define BIO_R_IN_USE 123 +# define BIO_R_LENGTH_TOO_LONG 102 +# define BIO_R_LISTEN_V6_ONLY 136 +# define BIO_R_LOCAL_ADDR_NOT_AVAILABLE 111 +# define BIO_R_LOOKUP_RETURNED_NOTHING 142 +# define BIO_R_MALFORMED_HOST_OR_SERVICE 130 +# define BIO_R_NBIO_CONNECT_ERROR 110 +# define BIO_R_NON_FATAL 112 +# define BIO_R_NO_ACCEPT_ADDR_OR_SERVICE_SPECIFIED 143 +# define BIO_R_NO_HOSTNAME_OR_SERVICE_SPECIFIED 144 +# define BIO_R_NO_PORT_DEFINED 113 +# define BIO_R_NO_SUCH_FILE 128 +# define BIO_R_NULL_PARAMETER 115 /* unused */ +# define BIO_R_TFO_DISABLED 106 +# define BIO_R_TFO_NO_KERNEL_SUPPORT 108 +# define BIO_R_TRANSFER_ERROR 104 +# define BIO_R_TRANSFER_TIMEOUT 105 +# define BIO_R_UNABLE_TO_BIND_SOCKET 117 +# define BIO_R_UNABLE_TO_CREATE_SOCKET 118 +# define BIO_R_UNABLE_TO_KEEPALIVE 137 +# define BIO_R_UNABLE_TO_LISTEN_SOCKET 119 +# define BIO_R_UNABLE_TO_NODELAY 138 +# define BIO_R_UNABLE_TO_REUSEADDR 139 +# define BIO_R_UNABLE_TO_TFO 109 +# define BIO_R_UNAVAILABLE_IP_FAMILY 145 +# define BIO_R_UNINITIALIZED 120 +# define BIO_R_UNKNOWN_INFO_TYPE 140 +# define BIO_R_UNSUPPORTED_IP_FAMILY 146 +# define BIO_R_UNSUPPORTED_METHOD 121 +# define BIO_R_UNSUPPORTED_PROTOCOL_FAMILY 131 +# define BIO_R_WRITE_TO_READ_ONLY_BIO 126 +# define BIO_R_WSASTARTUP 122 +# define BIO_R_PORT_MISMATCH 150 +# define BIO_R_PEER_ADDR_NOT_AVAILABLE 151 + +#endif diff --git a/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/bn_conf_asm.h b/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/bn_conf_asm.h new file mode 100644 index 0000000000000000000000000000000000000000..e9c74868ef7299b214a195927d212a79cfb9d70c --- /dev/null +++ b/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/bn_conf_asm.h @@ -0,0 +1,53 @@ +#undef OPENSSL_LINUX +#if defined(__linux) && !defined(__ANDROID__) +# define OPENSSL_LINUX 1 +#endif + +#if defined(OPENSSL_LINUX) && defined(__i386__) +# include "./archs/linux-elf/asm/include/crypto/bn_conf.h" +#elif defined(OPENSSL_LINUX) && defined(__ILP32__) +# include "./archs/linux-x32/asm/include/crypto/bn_conf.h" +#elif defined(OPENSSL_LINUX) && defined(__x86_64__) +# include "./archs/linux-x86_64/asm/include/crypto/bn_conf.h" +#elif defined(OPENSSL_LINUX) && defined(__arm__) +# include "./archs/linux-armv4/asm/include/crypto/bn_conf.h" +#elif defined(OPENSSL_LINUX) && defined(__aarch64__) +# include "./archs/linux-aarch64/asm/include/crypto/bn_conf.h" +#elif defined(__APPLE__) && defined(__MACH__) && defined(__i386__) +# include "./archs/darwin-i386-cc/asm/include/crypto/bn_conf.h" +#elif defined(__APPLE__) && defined(__MACH__) && defined(__x86_64__) +# include "./archs/darwin64-x86_64-cc/asm/include/crypto/bn_conf.h" +#elif defined(__APPLE__) && defined(__MACH__) && defined(__arm64__) +# include "./archs/darwin64-arm64-cc/asm/include/crypto/bn_conf.h" +#elif defined(_WIN32) && defined(_M_IX86) +# include "./archs/VC-WIN32/asm/include/crypto/bn_conf.h" +#elif defined(_WIN32) && defined(_M_X64) +# include "./archs/VC-WIN64A/asm/include/crypto/bn_conf.h" +#elif (defined(__FreeBSD__) || defined(__OpenBSD__)) && defined(__i386__) +# include "./archs/BSD-x86/asm/include/crypto/bn_conf.h" +#elif (defined(__FreeBSD__) || defined(__OpenBSD__)) && defined(__x86_64__) +# include "./archs/BSD-x86_64/asm/include/crypto/bn_conf.h" +#elif defined(__sun) && defined(__i386__) +# include "./archs/solaris-x86-gcc/asm/include/crypto/bn_conf.h" +#elif defined(__sun) && defined(__x86_64__) +# include "./archs/solaris64-x86_64-gcc/asm/include/crypto/bn_conf.h" +#elif defined(OPENSSL_LINUX) && defined(__PPC64__) && defined(L_ENDIAN) +# include "./archs/linux-ppc64le/asm/include/crypto/bn_conf.h" +#elif defined(_AIX) && defined(_ARCH_PPC64) +# include "./archs/aix64-gcc-as/asm/include/crypto/bn_conf.h" +#elif defined(OPENSSL_LINUX) && defined(__s390x__) +# include "./archs/linux64-s390x/asm/include/crypto/bn_conf.h" +#elif defined(OPENSSL_LINUX) && defined(__s390__) +# include "./archs/linux32-s390x/asm/include/crypto/bn_conf.h" +#else +# include "./archs/linux-elf/asm/include/crypto/bn_conf.h" +#endif + +/* GOST is not included in all platform */ +#ifndef OPENSSL_NO_GOST +# define OPENSSL_NO_GOST +#endif +/* HW_PADLOCK is not included in all platform */ +#ifndef OPENSSL_NO_HW_PADLOCK +# define OPENSSL_NO_HW_PADLOCK +#endif diff --git a/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/bnerr.h b/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/bnerr.h new file mode 100644 index 0000000000000000000000000000000000000000..7c3f6ef3d4ba50ba60a18028cf929e3409bc5369 --- /dev/null +++ b/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/bnerr.h @@ -0,0 +1,47 @@ +/* + * Generated by util/mkerr.pl DO NOT EDIT + * Copyright 1995-2022 The OpenSSL Project Authors. All Rights Reserved. + * + * Licensed under the Apache License 2.0 (the "License"). You may not use + * this file except in compliance with the License. You can obtain a copy + * in the file LICENSE in the source distribution or at + * https://www.openssl.org/source/license.html + */ + +#ifndef OPENSSL_BNERR_H +# define OPENSSL_BNERR_H +# pragma once + +# include +# include +# include + + + +/* + * BN reason codes. + */ +# define BN_R_ARG2_LT_ARG3 100 +# define BN_R_BAD_RECIPROCAL 101 +# define BN_R_BIGNUM_TOO_LONG 114 +# define BN_R_BITS_TOO_SMALL 118 +# define BN_R_CALLED_WITH_EVEN_MODULUS 102 +# define BN_R_DIV_BY_ZERO 103 +# define BN_R_ENCODING_ERROR 104 +# define BN_R_EXPAND_ON_STATIC_BIGNUM_DATA 105 +# define BN_R_INPUT_NOT_REDUCED 110 +# define BN_R_INVALID_LENGTH 106 +# define BN_R_INVALID_RANGE 115 +# define BN_R_INVALID_SHIFT 119 +# define BN_R_NOT_A_SQUARE 111 +# define BN_R_NOT_INITIALIZED 107 +# define BN_R_NO_INVERSE 108 +# define BN_R_NO_PRIME_CANDIDATE 121 +# define BN_R_NO_SOLUTION 116 +# define BN_R_NO_SUITABLE_DIGEST 120 +# define BN_R_PRIVATE_KEY_TOO_LARGE 117 +# define BN_R_P_IS_NOT_PRIME 112 +# define BN_R_TOO_MANY_ITERATIONS 113 +# define BN_R_TOO_MANY_TEMPORARY_VARIABLES 109 + +#endif diff --git a/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/cmac.h b/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/cmac.h new file mode 100644 index 0000000000000000000000000000000000000000..f50861836f48f54dfe9abc849ed7ff05b65af60c --- /dev/null +++ b/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/cmac.h @@ -0,0 +1,52 @@ +/* + * Copyright 2010-2020 The OpenSSL Project Authors. All Rights Reserved. + * + * Licensed under the Apache License 2.0 (the "License"). You may not use + * this file except in compliance with the License. You can obtain a copy + * in the file LICENSE in the source distribution or at + * https://www.openssl.org/source/license.html + */ + +#ifndef OPENSSL_CMAC_H +# define OPENSSL_CMAC_H +# pragma once + +# include +# ifndef OPENSSL_NO_DEPRECATED_3_0 +# define HEADER_CMAC_H +# endif + +# ifndef OPENSSL_NO_CMAC + +# ifdef __cplusplus +extern "C" { +# endif + +# include + +# ifndef OPENSSL_NO_DEPRECATED_3_0 +/* Opaque */ +typedef struct CMAC_CTX_st CMAC_CTX; +# endif +# ifndef OPENSSL_NO_DEPRECATED_3_0 +OSSL_DEPRECATEDIN_3_0 CMAC_CTX *CMAC_CTX_new(void); +OSSL_DEPRECATEDIN_3_0 void CMAC_CTX_cleanup(CMAC_CTX *ctx); +OSSL_DEPRECATEDIN_3_0 void CMAC_CTX_free(CMAC_CTX *ctx); +OSSL_DEPRECATEDIN_3_0 EVP_CIPHER_CTX *CMAC_CTX_get0_cipher_ctx(CMAC_CTX *ctx); +OSSL_DEPRECATEDIN_3_0 int CMAC_CTX_copy(CMAC_CTX *out, const CMAC_CTX *in); +OSSL_DEPRECATEDIN_3_0 int CMAC_Init(CMAC_CTX *ctx, + const void *key, size_t keylen, + const EVP_CIPHER *cipher, ENGINE *impl); +OSSL_DEPRECATEDIN_3_0 int CMAC_Update(CMAC_CTX *ctx, + const void *data, size_t dlen); +OSSL_DEPRECATEDIN_3_0 int CMAC_Final(CMAC_CTX *ctx, + unsigned char *out, size_t *poutlen); +OSSL_DEPRECATEDIN_3_0 int CMAC_resume(CMAC_CTX *ctx); +# endif + +# ifdef __cplusplus +} +# endif + +# endif +#endif diff --git a/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/cmp_asm.h b/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/cmp_asm.h new file mode 100644 index 0000000000000000000000000000000000000000..3078a2012464c47487a91f1413965812245fdd97 --- /dev/null +++ b/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/cmp_asm.h @@ -0,0 +1,53 @@ +#undef OPENSSL_LINUX +#if defined(__linux) && !defined(__ANDROID__) +# define OPENSSL_LINUX 1 +#endif + +#if defined(OPENSSL_LINUX) && defined(__i386__) +# include "./archs/linux-elf/asm/include/openssl/cmp.h" +#elif defined(OPENSSL_LINUX) && defined(__ILP32__) +# include "./archs/linux-x32/asm/include/openssl/cmp.h" +#elif defined(OPENSSL_LINUX) && defined(__x86_64__) +# include "./archs/linux-x86_64/asm/include/openssl/cmp.h" +#elif defined(OPENSSL_LINUX) && defined(__arm__) +# include "./archs/linux-armv4/asm/include/openssl/cmp.h" +#elif defined(OPENSSL_LINUX) && defined(__aarch64__) +# include "./archs/linux-aarch64/asm/include/openssl/cmp.h" +#elif defined(__APPLE__) && defined(__MACH__) && defined(__i386__) +# include "./archs/darwin-i386-cc/asm/include/openssl/cmp.h" +#elif defined(__APPLE__) && defined(__MACH__) && defined(__x86_64__) +# include "./archs/darwin64-x86_64-cc/asm/include/openssl/cmp.h" +#elif defined(__APPLE__) && defined(__MACH__) && defined(__arm64__) +# include "./archs/darwin64-arm64-cc/asm/include/openssl/cmp.h" +#elif defined(_WIN32) && defined(_M_IX86) +# include "./archs/VC-WIN32/asm/include/openssl/cmp.h" +#elif defined(_WIN32) && defined(_M_X64) +# include "./archs/VC-WIN64A/asm/include/openssl/cmp.h" +#elif (defined(__FreeBSD__) || defined(__OpenBSD__)) && defined(__i386__) +# include "./archs/BSD-x86/asm/include/openssl/cmp.h" +#elif (defined(__FreeBSD__) || defined(__OpenBSD__)) && defined(__x86_64__) +# include "./archs/BSD-x86_64/asm/include/openssl/cmp.h" +#elif defined(__sun) && defined(__i386__) +# include "./archs/solaris-x86-gcc/asm/include/openssl/cmp.h" +#elif defined(__sun) && defined(__x86_64__) +# include "./archs/solaris64-x86_64-gcc/asm/include/openssl/cmp.h" +#elif defined(OPENSSL_LINUX) && defined(__PPC64__) && defined(L_ENDIAN) +# include "./archs/linux-ppc64le/asm/include/openssl/cmp.h" +#elif defined(_AIX) && defined(_ARCH_PPC64) +# include "./archs/aix64-gcc-as/asm/include/openssl/cmp.h" +#elif defined(OPENSSL_LINUX) && defined(__s390x__) +# include "./archs/linux64-s390x/asm/include/openssl/cmp.h" +#elif defined(OPENSSL_LINUX) && defined(__s390__) +# include "./archs/linux32-s390x/asm/include/openssl/cmp.h" +#else +# include "./archs/linux-elf/asm/include/openssl/cmp.h" +#endif + +/* GOST is not included in all platform */ +#ifndef OPENSSL_NO_GOST +# define OPENSSL_NO_GOST +#endif +/* HW_PADLOCK is not included in all platform */ +#ifndef OPENSSL_NO_HW_PADLOCK +# define OPENSSL_NO_HW_PADLOCK +#endif diff --git a/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/cmp_no-asm.h b/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/cmp_no-asm.h new file mode 100644 index 0000000000000000000000000000000000000000..7899dd1427ea4e9735dfefd9432d93e3ed7b5a96 --- /dev/null +++ b/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/cmp_no-asm.h @@ -0,0 +1,57 @@ +#undef OPENSSL_LINUX +#if defined(__linux) && !defined(__ANDROID__) +# define OPENSSL_LINUX 1 +#endif + +#if defined(OPENSSL_LINUX) && defined(__i386__) +# include "./archs/linux-elf/no-asm/include/openssl/cmp.h" +#elif defined(OPENSSL_LINUX) && defined(__ILP32__) +# include "./archs/linux-x32/no-asm/include/openssl/cmp.h" +#elif defined(OPENSSL_LINUX) && defined(__x86_64__) +# include "./archs/linux-x86_64/no-asm/include/openssl/cmp.h" +#elif defined(OPENSSL_LINUX) && defined(__arm__) +# include "./archs/linux-armv4/no-asm/include/openssl/cmp.h" +#elif defined(OPENSSL_LINUX) && defined(__aarch64__) +# include "./archs/linux-aarch64/no-asm/include/openssl/cmp.h" +#elif defined(OPENSSL_LINUX) && defined(__loongarch64) +# include "./archs/linux64-loongarch64/no-asm/include/openssl/cmp.h" +#elif defined(__APPLE__) && defined(__MACH__) && defined(__i386__) +# include "./archs/darwin-i386-cc/no-asm/include/openssl/cmp.h" +#elif defined(__APPLE__) && defined(__MACH__) && defined(__x86_64__) +# include "./archs/darwin64-x86_64-cc/no-asm/include/openssl/cmp.h" +#elif defined(__APPLE__) && defined(__MACH__) && defined(__arm64__) +# include "./archs/darwin64-arm64-cc/no-asm/include/openssl/cmp.h" +#elif defined(_WIN32) && defined(_M_IX86) +# include "./archs/VC-WIN32/no-asm/include/openssl/cmp.h" +#elif defined(_WIN32) && defined(_M_X64) +# include "./archs/VC-WIN64A/no-asm/include/openssl/cmp.h" +#elif defined(_WIN32) && defined(_M_ARM64) +# include "./archs/VC-WIN64-ARM/no-asm/include/openssl/cmp.h" +#elif (defined(__FreeBSD__) || defined(__OpenBSD__)) && defined(__i386__) +# include "./archs/BSD-x86/no-asm/include/openssl/cmp.h" +#elif (defined(__FreeBSD__) || defined(__OpenBSD__)) && defined(__x86_64__) +# include "./archs/BSD-x86_64/no-asm/include/openssl/cmp.h" +#elif defined(__sun) && defined(__i386__) +# include "./archs/solaris-x86-gcc/no-asm/include/openssl/cmp.h" +#elif defined(__sun) && defined(__x86_64__) +# include "./archs/solaris64-x86_64-gcc/no-asm/include/openssl/cmp.h" +#elif defined(OPENSSL_LINUX) && defined(__PPC64__) && defined(L_ENDIAN) +# include "./archs/linux-ppc64le/no-asm/include/openssl/cmp.h" +#elif defined(_AIX) && defined(_ARCH_PPC64) +# include "./archs/aix64-gcc-as/no-asm/include/openssl/cmp.h" +#elif defined(OPENSSL_LINUX) && defined(__s390x__) +# include "./archs/linux64-s390x/no-asm/include/openssl/cmp.h" +#elif defined(OPENSSL_LINUX) && defined(__s390__) +# include "./archs/linux32-s390x/no-asm/include/openssl/cmp.h" +#else +# include "./archs/linux-elf/no-asm/include/openssl/cmp.h" +#endif + +/* GOST is not included in all platform */ +#ifndef OPENSSL_NO_GOST +# define OPENSSL_NO_GOST +#endif +/* HW_PADLOCK is not included in all platform */ +#ifndef OPENSSL_NO_HW_PADLOCK +# define OPENSSL_NO_HW_PADLOCK +#endif diff --git a/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/cms_no-asm.h b/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/cms_no-asm.h new file mode 100644 index 0000000000000000000000000000000000000000..7a6a8e6c3556f2fa811c22112f027c8d3b389b55 --- /dev/null +++ b/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/cms_no-asm.h @@ -0,0 +1,57 @@ +#undef OPENSSL_LINUX +#if defined(__linux) && !defined(__ANDROID__) +# define OPENSSL_LINUX 1 +#endif + +#if defined(OPENSSL_LINUX) && defined(__i386__) +# include "./archs/linux-elf/no-asm/include/openssl/cms.h" +#elif defined(OPENSSL_LINUX) && defined(__ILP32__) +# include "./archs/linux-x32/no-asm/include/openssl/cms.h" +#elif defined(OPENSSL_LINUX) && defined(__x86_64__) +# include "./archs/linux-x86_64/no-asm/include/openssl/cms.h" +#elif defined(OPENSSL_LINUX) && defined(__arm__) +# include "./archs/linux-armv4/no-asm/include/openssl/cms.h" +#elif defined(OPENSSL_LINUX) && defined(__aarch64__) +# include "./archs/linux-aarch64/no-asm/include/openssl/cms.h" +#elif defined(OPENSSL_LINUX) && defined(__loongarch64) +# include "./archs/linux64-loongarch64/no-asm/include/openssl/cms.h" +#elif defined(__APPLE__) && defined(__MACH__) && defined(__i386__) +# include "./archs/darwin-i386-cc/no-asm/include/openssl/cms.h" +#elif defined(__APPLE__) && defined(__MACH__) && defined(__x86_64__) +# include "./archs/darwin64-x86_64-cc/no-asm/include/openssl/cms.h" +#elif defined(__APPLE__) && defined(__MACH__) && defined(__arm64__) +# include "./archs/darwin64-arm64-cc/no-asm/include/openssl/cms.h" +#elif defined(_WIN32) && defined(_M_IX86) +# include "./archs/VC-WIN32/no-asm/include/openssl/cms.h" +#elif defined(_WIN32) && defined(_M_X64) +# include "./archs/VC-WIN64A/no-asm/include/openssl/cms.h" +#elif defined(_WIN32) && defined(_M_ARM64) +# include "./archs/VC-WIN64-ARM/no-asm/include/openssl/cms.h" +#elif (defined(__FreeBSD__) || defined(__OpenBSD__)) && defined(__i386__) +# include "./archs/BSD-x86/no-asm/include/openssl/cms.h" +#elif (defined(__FreeBSD__) || defined(__OpenBSD__)) && defined(__x86_64__) +# include "./archs/BSD-x86_64/no-asm/include/openssl/cms.h" +#elif defined(__sun) && defined(__i386__) +# include "./archs/solaris-x86-gcc/no-asm/include/openssl/cms.h" +#elif defined(__sun) && defined(__x86_64__) +# include "./archs/solaris64-x86_64-gcc/no-asm/include/openssl/cms.h" +#elif defined(OPENSSL_LINUX) && defined(__PPC64__) && defined(L_ENDIAN) +# include "./archs/linux-ppc64le/no-asm/include/openssl/cms.h" +#elif defined(_AIX) && defined(_ARCH_PPC64) +# include "./archs/aix64-gcc-as/no-asm/include/openssl/cms.h" +#elif defined(OPENSSL_LINUX) && defined(__s390x__) +# include "./archs/linux64-s390x/no-asm/include/openssl/cms.h" +#elif defined(OPENSSL_LINUX) && defined(__s390__) +# include "./archs/linux32-s390x/no-asm/include/openssl/cms.h" +#else +# include "./archs/linux-elf/no-asm/include/openssl/cms.h" +#endif + +/* GOST is not included in all platform */ +#ifndef OPENSSL_NO_GOST +# define OPENSSL_NO_GOST +#endif +/* HW_PADLOCK is not included in all platform */ +#ifndef OPENSSL_NO_HW_PADLOCK +# define OPENSSL_NO_HW_PADLOCK +#endif diff --git a/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/comp.h b/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/comp.h new file mode 100644 index 0000000000000000000000000000000000000000..7f7da2b9257c5956efcf2fa938a43961676e52b3 --- /dev/null +++ b/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/comp.h @@ -0,0 +1,5 @@ +#if defined(OPENSSL_NO_ASM) +# include "./comp_no-asm.h" +#else +# include "./comp_asm.h" +#endif diff --git a/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/comp_no-asm.h b/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/comp_no-asm.h new file mode 100644 index 0000000000000000000000000000000000000000..3d19d09b04b8dfd6b2cf6d08508811cfb964643f --- /dev/null +++ b/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/comp_no-asm.h @@ -0,0 +1,57 @@ +#undef OPENSSL_LINUX +#if defined(__linux) && !defined(__ANDROID__) +# define OPENSSL_LINUX 1 +#endif + +#if defined(OPENSSL_LINUX) && defined(__i386__) +# include "./archs/linux-elf/no-asm/include/openssl/comp.h" +#elif defined(OPENSSL_LINUX) && defined(__ILP32__) +# include "./archs/linux-x32/no-asm/include/openssl/comp.h" +#elif defined(OPENSSL_LINUX) && defined(__x86_64__) +# include "./archs/linux-x86_64/no-asm/include/openssl/comp.h" +#elif defined(OPENSSL_LINUX) && defined(__arm__) +# include "./archs/linux-armv4/no-asm/include/openssl/comp.h" +#elif defined(OPENSSL_LINUX) && defined(__aarch64__) +# include "./archs/linux-aarch64/no-asm/include/openssl/comp.h" +#elif defined(OPENSSL_LINUX) && defined(__loongarch64) +# include "./archs/linux64-loongarch64/no-asm/include/openssl/comp.h" +#elif defined(__APPLE__) && defined(__MACH__) && defined(__i386__) +# include "./archs/darwin-i386-cc/no-asm/include/openssl/comp.h" +#elif defined(__APPLE__) && defined(__MACH__) && defined(__x86_64__) +# include "./archs/darwin64-x86_64-cc/no-asm/include/openssl/comp.h" +#elif defined(__APPLE__) && defined(__MACH__) && defined(__arm64__) +# include "./archs/darwin64-arm64-cc/no-asm/include/openssl/comp.h" +#elif defined(_WIN32) && defined(_M_IX86) +# include "./archs/VC-WIN32/no-asm/include/openssl/comp.h" +#elif defined(_WIN32) && defined(_M_X64) +# include "./archs/VC-WIN64A/no-asm/include/openssl/comp.h" +#elif defined(_WIN32) && defined(_M_ARM64) +# include "./archs/VC-WIN64-ARM/no-asm/include/openssl/comp.h" +#elif (defined(__FreeBSD__) || defined(__OpenBSD__)) && defined(__i386__) +# include "./archs/BSD-x86/no-asm/include/openssl/comp.h" +#elif (defined(__FreeBSD__) || defined(__OpenBSD__)) && defined(__x86_64__) +# include "./archs/BSD-x86_64/no-asm/include/openssl/comp.h" +#elif defined(__sun) && defined(__i386__) +# include "./archs/solaris-x86-gcc/no-asm/include/openssl/comp.h" +#elif defined(__sun) && defined(__x86_64__) +# include "./archs/solaris64-x86_64-gcc/no-asm/include/openssl/comp.h" +#elif defined(OPENSSL_LINUX) && defined(__PPC64__) && defined(L_ENDIAN) +# include "./archs/linux-ppc64le/no-asm/include/openssl/comp.h" +#elif defined(_AIX) && defined(_ARCH_PPC64) +# include "./archs/aix64-gcc-as/no-asm/include/openssl/comp.h" +#elif defined(OPENSSL_LINUX) && defined(__s390x__) +# include "./archs/linux64-s390x/no-asm/include/openssl/comp.h" +#elif defined(OPENSSL_LINUX) && defined(__s390__) +# include "./archs/linux32-s390x/no-asm/include/openssl/comp.h" +#else +# include "./archs/linux-elf/no-asm/include/openssl/comp.h" +#endif + +/* GOST is not included in all platform */ +#ifndef OPENSSL_NO_GOST +# define OPENSSL_NO_GOST +#endif +/* HW_PADLOCK is not included in all platform */ +#ifndef OPENSSL_NO_HW_PADLOCK +# define OPENSSL_NO_HW_PADLOCK +#endif diff --git a/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/comperr.h b/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/comperr.h new file mode 100644 index 0000000000000000000000000000000000000000..1948d37f1a0096ab96292417db45951eca40d307 --- /dev/null +++ b/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/comperr.h @@ -0,0 +1,38 @@ +/* + * Generated by util/mkerr.pl DO NOT EDIT + * Copyright 1995-2021 The OpenSSL Project Authors. All Rights Reserved. + * + * Licensed under the Apache License 2.0 (the "License"). You may not use + * this file except in compliance with the License. You can obtain a copy + * in the file LICENSE in the source distribution or at + * https://www.openssl.org/source/license.html + */ + +#ifndef OPENSSL_COMPERR_H +# define OPENSSL_COMPERR_H +# pragma once + +# include +# include +# include + + +# ifndef OPENSSL_NO_COMP + + +/* + * COMP reason codes. + */ +# define COMP_R_BROTLI_DECODE_ERROR 102 +# define COMP_R_BROTLI_ENCODE_ERROR 103 +# define COMP_R_BROTLI_NOT_SUPPORTED 104 +# define COMP_R_ZLIB_DEFLATE_ERROR 99 +# define COMP_R_ZLIB_INFLATE_ERROR 100 +# define COMP_R_ZLIB_NOT_SUPPORTED 101 +# define COMP_R_ZSTD_COMPRESS_ERROR 105 +# define COMP_R_ZSTD_DECODE_ERROR 106 +# define COMP_R_ZSTD_DECOMPRESS_ERROR 107 +# define COMP_R_ZSTD_NOT_SUPPORTED 108 + +# endif +#endif diff --git a/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/conf_api.h b/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/conf_api.h new file mode 100644 index 0000000000000000000000000000000000000000..ed67d5778f1d3e5d7be3fae3537586d0394c9d54 --- /dev/null +++ b/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/conf_api.h @@ -0,0 +1,46 @@ +/* + * Copyright 1995-2016 The OpenSSL Project Authors. All Rights Reserved. + * + * Licensed under the Apache License 2.0 (the "License"). You may not use + * this file except in compliance with the License. You can obtain a copy + * in the file LICENSE in the source distribution or at + * https://www.openssl.org/source/license.html + */ + +#ifndef OPENSSL_CONF_API_H +# define OPENSSL_CONF_API_H +# pragma once + +# include +# ifndef OPENSSL_NO_DEPRECATED_3_0 +# define HEADER_CONF_API_H +# endif + +# include +# include + +#ifdef __cplusplus +extern "C" { +#endif + +/* Up until OpenSSL 0.9.5a, this was new_section */ +CONF_VALUE *_CONF_new_section(CONF *conf, const char *section); +/* Up until OpenSSL 0.9.5a, this was get_section */ +CONF_VALUE *_CONF_get_section(const CONF *conf, const char *section); +/* Up until OpenSSL 0.9.5a, this was CONF_get_section */ +STACK_OF(CONF_VALUE) *_CONF_get_section_values(const CONF *conf, + const char *section); + +int _CONF_add_string(CONF *conf, CONF_VALUE *section, CONF_VALUE *value); +char *_CONF_get_string(const CONF *conf, const char *section, + const char *name); +long _CONF_get_number(const CONF *conf, const char *section, + const char *name); + +int _CONF_new_data(CONF *conf); +void _CONF_free_data(CONF *conf); + +#ifdef __cplusplus +} +#endif +#endif diff --git a/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/configuration_asm.h b/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/configuration_asm.h new file mode 100644 index 0000000000000000000000000000000000000000..b712fdfc651e4731d5fcb1025d62f87a85c53b7e --- /dev/null +++ b/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/configuration_asm.h @@ -0,0 +1,53 @@ +#undef OPENSSL_LINUX +#if defined(__linux) && !defined(__ANDROID__) +# define OPENSSL_LINUX 1 +#endif + +#if defined(OPENSSL_LINUX) && defined(__i386__) +# include "./archs/linux-elf/asm/include/openssl/configuration.h" +#elif defined(OPENSSL_LINUX) && defined(__ILP32__) +# include "./archs/linux-x32/asm/include/openssl/configuration.h" +#elif defined(OPENSSL_LINUX) && defined(__x86_64__) +# include "./archs/linux-x86_64/asm/include/openssl/configuration.h" +#elif defined(OPENSSL_LINUX) && defined(__arm__) +# include "./archs/linux-armv4/asm/include/openssl/configuration.h" +#elif defined(OPENSSL_LINUX) && defined(__aarch64__) +# include "./archs/linux-aarch64/asm/include/openssl/configuration.h" +#elif defined(__APPLE__) && defined(__MACH__) && defined(__i386__) +# include "./archs/darwin-i386-cc/asm/include/openssl/configuration.h" +#elif defined(__APPLE__) && defined(__MACH__) && defined(__x86_64__) +# include "./archs/darwin64-x86_64-cc/asm/include/openssl/configuration.h" +#elif defined(__APPLE__) && defined(__MACH__) && defined(__arm64__) +# include "./archs/darwin64-arm64-cc/asm/include/openssl/configuration.h" +#elif defined(_WIN32) && defined(_M_IX86) +# include "./archs/VC-WIN32/asm/include/openssl/configuration.h" +#elif defined(_WIN32) && defined(_M_X64) +# include "./archs/VC-WIN64A/asm/include/openssl/configuration.h" +#elif (defined(__FreeBSD__) || defined(__OpenBSD__)) && defined(__i386__) +# include "./archs/BSD-x86/asm/include/openssl/configuration.h" +#elif (defined(__FreeBSD__) || defined(__OpenBSD__)) && defined(__x86_64__) +# include "./archs/BSD-x86_64/asm/include/openssl/configuration.h" +#elif defined(__sun) && defined(__i386__) +# include "./archs/solaris-x86-gcc/asm/include/openssl/configuration.h" +#elif defined(__sun) && defined(__x86_64__) +# include "./archs/solaris64-x86_64-gcc/asm/include/openssl/configuration.h" +#elif defined(OPENSSL_LINUX) && defined(__PPC64__) && defined(L_ENDIAN) +# include "./archs/linux-ppc64le/asm/include/openssl/configuration.h" +#elif defined(_AIX) && defined(_ARCH_PPC64) +# include "./archs/aix64-gcc-as/asm/include/openssl/configuration.h" +#elif defined(OPENSSL_LINUX) && defined(__s390x__) +# include "./archs/linux64-s390x/asm/include/openssl/configuration.h" +#elif defined(OPENSSL_LINUX) && defined(__s390__) +# include "./archs/linux32-s390x/asm/include/openssl/configuration.h" +#else +# include "./archs/linux-elf/asm/include/openssl/configuration.h" +#endif + +/* GOST is not included in all platform */ +#ifndef OPENSSL_NO_GOST +# define OPENSSL_NO_GOST +#endif +/* HW_PADLOCK is not included in all platform */ +#ifndef OPENSSL_NO_HW_PADLOCK +# define OPENSSL_NO_HW_PADLOCK +#endif diff --git a/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/configuration_no-asm.h b/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/configuration_no-asm.h new file mode 100644 index 0000000000000000000000000000000000000000..1f601c5489b8e161a71a8eaddd19dd1b19bd99ec --- /dev/null +++ b/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/configuration_no-asm.h @@ -0,0 +1,57 @@ +#undef OPENSSL_LINUX +#if defined(__linux) && !defined(__ANDROID__) +# define OPENSSL_LINUX 1 +#endif + +#if defined(OPENSSL_LINUX) && defined(__i386__) +# include "./archs/linux-elf/no-asm/include/openssl/configuration.h" +#elif defined(OPENSSL_LINUX) && defined(__ILP32__) +# include "./archs/linux-x32/no-asm/include/openssl/configuration.h" +#elif defined(OPENSSL_LINUX) && defined(__x86_64__) +# include "./archs/linux-x86_64/no-asm/include/openssl/configuration.h" +#elif defined(OPENSSL_LINUX) && defined(__arm__) +# include "./archs/linux-armv4/no-asm/include/openssl/configuration.h" +#elif defined(OPENSSL_LINUX) && defined(__aarch64__) +# include "./archs/linux-aarch64/no-asm/include/openssl/configuration.h" +#elif defined(OPENSSL_LINUX) && defined(__loongarch64) +# include "./archs/linux64-loongarch64/no-asm/include/openssl/configuration.h" +#elif defined(__APPLE__) && defined(__MACH__) && defined(__i386__) +# include "./archs/darwin-i386-cc/no-asm/include/openssl/configuration.h" +#elif defined(__APPLE__) && defined(__MACH__) && defined(__x86_64__) +# include "./archs/darwin64-x86_64-cc/no-asm/include/openssl/configuration.h" +#elif defined(__APPLE__) && defined(__MACH__) && defined(__arm64__) +# include "./archs/darwin64-arm64-cc/no-asm/include/openssl/configuration.h" +#elif defined(_WIN32) && defined(_M_IX86) +# include "./archs/VC-WIN32/no-asm/include/openssl/configuration.h" +#elif defined(_WIN32) && defined(_M_X64) +# include "./archs/VC-WIN64A/no-asm/include/openssl/configuration.h" +#elif defined(_WIN32) && defined(_M_ARM64) +# include "./archs/VC-WIN64-ARM/no-asm/include/openssl/configuration.h" +#elif (defined(__FreeBSD__) || defined(__OpenBSD__)) && defined(__i386__) +# include "./archs/BSD-x86/no-asm/include/openssl/configuration.h" +#elif (defined(__FreeBSD__) || defined(__OpenBSD__)) && defined(__x86_64__) +# include "./archs/BSD-x86_64/no-asm/include/openssl/configuration.h" +#elif defined(__sun) && defined(__i386__) +# include "./archs/solaris-x86-gcc/no-asm/include/openssl/configuration.h" +#elif defined(__sun) && defined(__x86_64__) +# include "./archs/solaris64-x86_64-gcc/no-asm/include/openssl/configuration.h" +#elif defined(OPENSSL_LINUX) && defined(__PPC64__) && defined(L_ENDIAN) +# include "./archs/linux-ppc64le/no-asm/include/openssl/configuration.h" +#elif defined(_AIX) && defined(_ARCH_PPC64) +# include "./archs/aix64-gcc-as/no-asm/include/openssl/configuration.h" +#elif defined(OPENSSL_LINUX) && defined(__s390x__) +# include "./archs/linux64-s390x/no-asm/include/openssl/configuration.h" +#elif defined(OPENSSL_LINUX) && defined(__s390__) +# include "./archs/linux32-s390x/no-asm/include/openssl/configuration.h" +#else +# include "./archs/linux-elf/no-asm/include/openssl/configuration.h" +#endif + +/* GOST is not included in all platform */ +#ifndef OPENSSL_NO_GOST +# define OPENSSL_NO_GOST +#endif +/* HW_PADLOCK is not included in all platform */ +#ifndef OPENSSL_NO_HW_PADLOCK +# define OPENSSL_NO_HW_PADLOCK +#endif diff --git a/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/core.h b/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/core.h new file mode 100644 index 0000000000000000000000000000000000000000..18c199182e34ada576358d4b49eeffc90a12c3c8 --- /dev/null +++ b/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/core.h @@ -0,0 +1,236 @@ +/* + * Copyright 2019-2023 The OpenSSL Project Authors. All Rights Reserved. + * + * Licensed under the Apache License 2.0 (the "License"). You may not use + * this file except in compliance with the License. You can obtain a copy + * in the file LICENSE in the source distribution or at + * https://www.openssl.org/source/license.html + */ + +#ifndef OPENSSL_CORE_H +# define OPENSSL_CORE_H +# pragma once + +# include +# include + +# ifdef __cplusplus +extern "C" { +# endif + +/*- + * Base types + * ---------- + * + * These are the types that the OpenSSL core and providers have in common + * to communicate data between them. + */ + +/* Opaque handles to be used with core upcall functions from providers */ +typedef struct ossl_core_handle_st OSSL_CORE_HANDLE; +typedef struct openssl_core_ctx_st OPENSSL_CORE_CTX; +typedef struct ossl_core_bio_st OSSL_CORE_BIO; + +/* + * Dispatch table element. function_id numbers and the functions are defined + * in core_dispatch.h, see macros with 'OSSL_CORE_MAKE_FUNC' in their names. + * + * An array of these is always terminated by function_id == 0 + */ +struct ossl_dispatch_st { + int function_id; + void (*function)(void); +}; + +# define OSSL_DISPATCH_END \ + { 0, NULL } + +/* + * Other items, essentially an int<->pointer map element. + * + * We make this type distinct from OSSL_DISPATCH to ensure that dispatch + * tables remain tables with function pointers only. + * + * This is used whenever we need to pass things like a table of error reason + * codes <-> reason string maps, ... + * + * Usage determines which field works as key if any, rather than field order. + * + * An array of these is always terminated by id == 0 && ptr == NULL + */ +struct ossl_item_st { + unsigned int id; + void *ptr; +}; + +/* + * Type to tie together algorithm names, property definition string and + * the algorithm implementation in the form of a dispatch table. + * + * An array of these is always terminated by algorithm_names == NULL + */ +struct ossl_algorithm_st { + const char *algorithm_names; /* key */ + const char *property_definition; /* key */ + const OSSL_DISPATCH *implementation; + const char *algorithm_description; +}; + +/* + * Type to pass object data in a uniform way, without exposing the object + * structure. + * + * An array of these is always terminated by key == NULL + */ +struct ossl_param_st { + const char *key; /* the name of the parameter */ + unsigned int data_type; /* declare what kind of content is in buffer */ + void *data; /* value being passed in or out */ + size_t data_size; /* data size */ + size_t return_size; /* returned content size */ +}; + +/* Currently supported OSSL_PARAM data types */ +/* + * OSSL_PARAM_INTEGER and OSSL_PARAM_UNSIGNED_INTEGER + * are arbitrary length and therefore require an arbitrarily sized buffer, + * since they may be used to pass numbers larger than what is natively + * available. + * + * The number must be buffered in native form, i.e. MSB first on B_ENDIAN + * systems and LSB first on L_ENDIAN systems. This means that arbitrary + * native integers can be stored in the buffer, just make sure that the + * buffer size is correct and the buffer itself is properly aligned (for + * example by having the buffer field point at a C integer). + */ +# define OSSL_PARAM_INTEGER 1 +# define OSSL_PARAM_UNSIGNED_INTEGER 2 +/*- + * OSSL_PARAM_REAL + * is a C binary floating point values in native form and alignment. + */ +# define OSSL_PARAM_REAL 3 +/*- + * OSSL_PARAM_UTF8_STRING + * is a printable string. It is expected to be printed as it is. + */ +# define OSSL_PARAM_UTF8_STRING 4 +/*- + * OSSL_PARAM_OCTET_STRING + * is a string of bytes with no further specification. It is expected to be + * printed as a hexdump. + */ +# define OSSL_PARAM_OCTET_STRING 5 +/*- + * OSSL_PARAM_UTF8_PTR + * is a pointer to a printable string. It is expected to be printed as it is. + * + * The difference between this and OSSL_PARAM_UTF8_STRING is that only pointers + * are manipulated for this type. + * + * This is more relevant for parameter requests, where the responding + * function doesn't need to copy the data to the provided buffer, but + * sets the provided buffer to point at the actual data instead. + * + * WARNING! Using these is FRAGILE, as it assumes that the actual + * data and its location are constant. + * + * EXTRA WARNING! If you are not completely sure you most likely want + * to use the OSSL_PARAM_UTF8_STRING type. + */ +# define OSSL_PARAM_UTF8_PTR 6 +/*- + * OSSL_PARAM_OCTET_PTR + * is a pointer to a string of bytes with no further specification. It is + * expected to be printed as a hexdump. + * + * The difference between this and OSSL_PARAM_OCTET_STRING is that only pointers + * are manipulated for this type. + * + * This is more relevant for parameter requests, where the responding + * function doesn't need to copy the data to the provided buffer, but + * sets the provided buffer to point at the actual data instead. + * + * WARNING! Using these is FRAGILE, as it assumes that the actual + * data and its location are constant. + * + * EXTRA WARNING! If you are not completely sure you most likely want + * to use the OSSL_PARAM_OCTET_STRING type. + */ +# define OSSL_PARAM_OCTET_PTR 7 + +/* + * Typedef for the thread stop handling callback. Used both internally and by + * providers. + * + * Providers may register for notifications about threads stopping by + * registering a callback to hear about such events. Providers register the + * callback using the OSSL_FUNC_CORE_THREAD_START function in the |in| dispatch + * table passed to OSSL_provider_init(). The arg passed back to a provider will + * be the provider side context object. + */ +typedef void (*OSSL_thread_stop_handler_fn)(void *arg); + + +/*- + * Provider entry point + * -------------------- + * + * This function is expected to be present in any dynamically loadable + * provider module. By definition, if this function doesn't exist in a + * module, that module is not an OpenSSL provider module. + */ +/*- + * |handle| pointer to opaque type OSSL_CORE_HANDLE. This can be used + * together with some functions passed via |in| to query data. + * |in| is the array of functions that the Core passes to the provider. + * |out| will be the array of base functions that the provider passes + * back to the Core. + * |provctx| a provider side context object, optionally created if the + * provider needs it. This value is passed to other provider + * functions, notably other context constructors. + */ +typedef int (OSSL_provider_init_fn)(const OSSL_CORE_HANDLE *handle, + const OSSL_DISPATCH *in, + const OSSL_DISPATCH **out, + void **provctx); +# ifdef __VMS +# pragma names save +# pragma names uppercase,truncated +# endif +OPENSSL_EXPORT OSSL_provider_init_fn OSSL_provider_init; +# ifdef __VMS +# pragma names restore +# endif + +/* + * Generic callback function signature. + * + * The expectation is that any provider function that wants to offer + * a callback / hook can do so by taking an argument with this type, + * as well as a pointer to caller-specific data. When calling the + * callback, the provider function can populate an OSSL_PARAM array + * with data of its choice and pass that in the callback call, along + * with the caller data argument. + * + * libcrypto may use the OSSL_PARAM array to create arguments for an + * application callback it knows about. + */ +typedef int (OSSL_CALLBACK)(const OSSL_PARAM params[], void *arg); +typedef int (OSSL_INOUT_CALLBACK)(const OSSL_PARAM in_params[], + OSSL_PARAM out_params[], void *arg); +/* + * Passphrase callback function signature + * + * This is similar to the generic callback function above, but adds a + * result parameter. + */ +typedef int (OSSL_PASSPHRASE_CALLBACK)(char *pass, size_t pass_size, + size_t *pass_len, + const OSSL_PARAM params[], void *arg); + +# ifdef __cplusplus +} +# endif + +#endif diff --git a/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/crmf_no-asm.h b/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/crmf_no-asm.h new file mode 100644 index 0000000000000000000000000000000000000000..099485314d332a513920efbbf0f65028ad7c655e --- /dev/null +++ b/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/crmf_no-asm.h @@ -0,0 +1,57 @@ +#undef OPENSSL_LINUX +#if defined(__linux) && !defined(__ANDROID__) +# define OPENSSL_LINUX 1 +#endif + +#if defined(OPENSSL_LINUX) && defined(__i386__) +# include "./archs/linux-elf/no-asm/include/openssl/crmf.h" +#elif defined(OPENSSL_LINUX) && defined(__ILP32__) +# include "./archs/linux-x32/no-asm/include/openssl/crmf.h" +#elif defined(OPENSSL_LINUX) && defined(__x86_64__) +# include "./archs/linux-x86_64/no-asm/include/openssl/crmf.h" +#elif defined(OPENSSL_LINUX) && defined(__arm__) +# include "./archs/linux-armv4/no-asm/include/openssl/crmf.h" +#elif defined(OPENSSL_LINUX) && defined(__aarch64__) +# include "./archs/linux-aarch64/no-asm/include/openssl/crmf.h" +#elif defined(OPENSSL_LINUX) && defined(__loongarch64) +# include "./archs/linux64-loongarch64/no-asm/include/openssl/crmf.h" +#elif defined(__APPLE__) && defined(__MACH__) && defined(__i386__) +# include "./archs/darwin-i386-cc/no-asm/include/openssl/crmf.h" +#elif defined(__APPLE__) && defined(__MACH__) && defined(__x86_64__) +# include "./archs/darwin64-x86_64-cc/no-asm/include/openssl/crmf.h" +#elif defined(__APPLE__) && defined(__MACH__) && defined(__arm64__) +# include "./archs/darwin64-arm64-cc/no-asm/include/openssl/crmf.h" +#elif defined(_WIN32) && defined(_M_IX86) +# include "./archs/VC-WIN32/no-asm/include/openssl/crmf.h" +#elif defined(_WIN32) && defined(_M_X64) +# include "./archs/VC-WIN64A/no-asm/include/openssl/crmf.h" +#elif defined(_WIN32) && defined(_M_ARM64) +# include "./archs/VC-WIN64-ARM/no-asm/include/openssl/crmf.h" +#elif (defined(__FreeBSD__) || defined(__OpenBSD__)) && defined(__i386__) +# include "./archs/BSD-x86/no-asm/include/openssl/crmf.h" +#elif (defined(__FreeBSD__) || defined(__OpenBSD__)) && defined(__x86_64__) +# include "./archs/BSD-x86_64/no-asm/include/openssl/crmf.h" +#elif defined(__sun) && defined(__i386__) +# include "./archs/solaris-x86-gcc/no-asm/include/openssl/crmf.h" +#elif defined(__sun) && defined(__x86_64__) +# include "./archs/solaris64-x86_64-gcc/no-asm/include/openssl/crmf.h" +#elif defined(OPENSSL_LINUX) && defined(__PPC64__) && defined(L_ENDIAN) +# include "./archs/linux-ppc64le/no-asm/include/openssl/crmf.h" +#elif defined(_AIX) && defined(_ARCH_PPC64) +# include "./archs/aix64-gcc-as/no-asm/include/openssl/crmf.h" +#elif defined(OPENSSL_LINUX) && defined(__s390x__) +# include "./archs/linux64-s390x/no-asm/include/openssl/crmf.h" +#elif defined(OPENSSL_LINUX) && defined(__s390__) +# include "./archs/linux32-s390x/no-asm/include/openssl/crmf.h" +#else +# include "./archs/linux-elf/no-asm/include/openssl/crmf.h" +#endif + +/* GOST is not included in all platform */ +#ifndef OPENSSL_NO_GOST +# define OPENSSL_NO_GOST +#endif +/* HW_PADLOCK is not included in all platform */ +#ifndef OPENSSL_NO_HW_PADLOCK +# define OPENSSL_NO_HW_PADLOCK +#endif diff --git a/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/crypto_asm.h b/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/crypto_asm.h new file mode 100644 index 0000000000000000000000000000000000000000..92b9295d376e9f9cd0ecd316efb067324e91f225 --- /dev/null +++ b/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/crypto_asm.h @@ -0,0 +1,53 @@ +#undef OPENSSL_LINUX +#if defined(__linux) && !defined(__ANDROID__) +# define OPENSSL_LINUX 1 +#endif + +#if defined(OPENSSL_LINUX) && defined(__i386__) +# include "./archs/linux-elf/asm/include/openssl/crypto.h" +#elif defined(OPENSSL_LINUX) && defined(__ILP32__) +# include "./archs/linux-x32/asm/include/openssl/crypto.h" +#elif defined(OPENSSL_LINUX) && defined(__x86_64__) +# include "./archs/linux-x86_64/asm/include/openssl/crypto.h" +#elif defined(OPENSSL_LINUX) && defined(__arm__) +# include "./archs/linux-armv4/asm/include/openssl/crypto.h" +#elif defined(OPENSSL_LINUX) && defined(__aarch64__) +# include "./archs/linux-aarch64/asm/include/openssl/crypto.h" +#elif defined(__APPLE__) && defined(__MACH__) && defined(__i386__) +# include "./archs/darwin-i386-cc/asm/include/openssl/crypto.h" +#elif defined(__APPLE__) && defined(__MACH__) && defined(__x86_64__) +# include "./archs/darwin64-x86_64-cc/asm/include/openssl/crypto.h" +#elif defined(__APPLE__) && defined(__MACH__) && defined(__arm64__) +# include "./archs/darwin64-arm64-cc/asm/include/openssl/crypto.h" +#elif defined(_WIN32) && defined(_M_IX86) +# include "./archs/VC-WIN32/asm/include/openssl/crypto.h" +#elif defined(_WIN32) && defined(_M_X64) +# include "./archs/VC-WIN64A/asm/include/openssl/crypto.h" +#elif (defined(__FreeBSD__) || defined(__OpenBSD__)) && defined(__i386__) +# include "./archs/BSD-x86/asm/include/openssl/crypto.h" +#elif (defined(__FreeBSD__) || defined(__OpenBSD__)) && defined(__x86_64__) +# include "./archs/BSD-x86_64/asm/include/openssl/crypto.h" +#elif defined(__sun) && defined(__i386__) +# include "./archs/solaris-x86-gcc/asm/include/openssl/crypto.h" +#elif defined(__sun) && defined(__x86_64__) +# include "./archs/solaris64-x86_64-gcc/asm/include/openssl/crypto.h" +#elif defined(OPENSSL_LINUX) && defined(__PPC64__) && defined(L_ENDIAN) +# include "./archs/linux-ppc64le/asm/include/openssl/crypto.h" +#elif defined(_AIX) && defined(_ARCH_PPC64) +# include "./archs/aix64-gcc-as/asm/include/openssl/crypto.h" +#elif defined(OPENSSL_LINUX) && defined(__s390x__) +# include "./archs/linux64-s390x/asm/include/openssl/crypto.h" +#elif defined(OPENSSL_LINUX) && defined(__s390__) +# include "./archs/linux32-s390x/asm/include/openssl/crypto.h" +#else +# include "./archs/linux-elf/asm/include/openssl/crypto.h" +#endif + +/* GOST is not included in all platform */ +#ifndef OPENSSL_NO_GOST +# define OPENSSL_NO_GOST +#endif +/* HW_PADLOCK is not included in all platform */ +#ifndef OPENSSL_NO_HW_PADLOCK +# define OPENSSL_NO_HW_PADLOCK +#endif diff --git a/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/decoder.h b/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/decoder.h new file mode 100644 index 0000000000000000000000000000000000000000..d4ee2cf41340c92c381e58cd997eb3076e19ec73 --- /dev/null +++ b/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/decoder.h @@ -0,0 +1,133 @@ +/* + * Copyright 2020-2021 The OpenSSL Project Authors. All Rights Reserved. + * + * Licensed under the Apache License 2.0 (the "License"). You may not use + * this file except in compliance with the License. You can obtain a copy + * in the file LICENSE in the source distribution or at + * https://www.openssl.org/source/license.html + */ + +#ifndef OPENSSL_DECODER_H +# define OPENSSL_DECODER_H +# pragma once + +# include + +# ifndef OPENSSL_NO_STDIO +# include +# endif +# include +# include +# include +# include +# include + +# ifdef __cplusplus +extern "C" { +# endif + +OSSL_DECODER *OSSL_DECODER_fetch(OSSL_LIB_CTX *libctx, const char *name, + const char *properties); +int OSSL_DECODER_up_ref(OSSL_DECODER *encoder); +void OSSL_DECODER_free(OSSL_DECODER *encoder); + +const OSSL_PROVIDER *OSSL_DECODER_get0_provider(const OSSL_DECODER *encoder); +const char *OSSL_DECODER_get0_properties(const OSSL_DECODER *encoder); +const char *OSSL_DECODER_get0_name(const OSSL_DECODER *decoder); +const char *OSSL_DECODER_get0_description(const OSSL_DECODER *decoder); +int OSSL_DECODER_is_a(const OSSL_DECODER *encoder, const char *name); + +void OSSL_DECODER_do_all_provided(OSSL_LIB_CTX *libctx, + void (*fn)(OSSL_DECODER *encoder, void *arg), + void *arg); +int OSSL_DECODER_names_do_all(const OSSL_DECODER *encoder, + void (*fn)(const char *name, void *data), + void *data); +const OSSL_PARAM *OSSL_DECODER_gettable_params(OSSL_DECODER *decoder); +int OSSL_DECODER_get_params(OSSL_DECODER *decoder, OSSL_PARAM params[]); + +const OSSL_PARAM *OSSL_DECODER_settable_ctx_params(OSSL_DECODER *encoder); +OSSL_DECODER_CTX *OSSL_DECODER_CTX_new(void); +int OSSL_DECODER_CTX_set_params(OSSL_DECODER_CTX *ctx, + const OSSL_PARAM params[]); +void OSSL_DECODER_CTX_free(OSSL_DECODER_CTX *ctx); + +/* Utilities that help set specific parameters */ +int OSSL_DECODER_CTX_set_passphrase(OSSL_DECODER_CTX *ctx, + const unsigned char *kstr, size_t klen); +int OSSL_DECODER_CTX_set_pem_password_cb(OSSL_DECODER_CTX *ctx, + pem_password_cb *cb, void *cbarg); +int OSSL_DECODER_CTX_set_passphrase_cb(OSSL_DECODER_CTX *ctx, + OSSL_PASSPHRASE_CALLBACK *cb, + void *cbarg); +int OSSL_DECODER_CTX_set_passphrase_ui(OSSL_DECODER_CTX *ctx, + const UI_METHOD *ui_method, + void *ui_data); + +/* + * Utilities to read the object to decode, with the result sent to cb. + * These will discover all provided methods + */ + +int OSSL_DECODER_CTX_set_selection(OSSL_DECODER_CTX *ctx, int selection); +int OSSL_DECODER_CTX_set_input_type(OSSL_DECODER_CTX *ctx, + const char *input_type); +int OSSL_DECODER_CTX_set_input_structure(OSSL_DECODER_CTX *ctx, + const char *input_structure); +int OSSL_DECODER_CTX_add_decoder(OSSL_DECODER_CTX *ctx, OSSL_DECODER *decoder); +int OSSL_DECODER_CTX_add_extra(OSSL_DECODER_CTX *ctx, + OSSL_LIB_CTX *libctx, const char *propq); +int OSSL_DECODER_CTX_get_num_decoders(OSSL_DECODER_CTX *ctx); + +typedef struct ossl_decoder_instance_st OSSL_DECODER_INSTANCE; +OSSL_DECODER * +OSSL_DECODER_INSTANCE_get_decoder(OSSL_DECODER_INSTANCE *decoder_inst); +void * +OSSL_DECODER_INSTANCE_get_decoder_ctx(OSSL_DECODER_INSTANCE *decoder_inst); +const char * +OSSL_DECODER_INSTANCE_get_input_type(OSSL_DECODER_INSTANCE *decoder_inst); +const char * +OSSL_DECODER_INSTANCE_get_input_structure(OSSL_DECODER_INSTANCE *decoder_inst, + int *was_set); + +typedef int OSSL_DECODER_CONSTRUCT(OSSL_DECODER_INSTANCE *decoder_inst, + const OSSL_PARAM *params, + void *construct_data); +typedef void OSSL_DECODER_CLEANUP(void *construct_data); + +int OSSL_DECODER_CTX_set_construct(OSSL_DECODER_CTX *ctx, + OSSL_DECODER_CONSTRUCT *construct); +int OSSL_DECODER_CTX_set_construct_data(OSSL_DECODER_CTX *ctx, + void *construct_data); +int OSSL_DECODER_CTX_set_cleanup(OSSL_DECODER_CTX *ctx, + OSSL_DECODER_CLEANUP *cleanup); +OSSL_DECODER_CONSTRUCT *OSSL_DECODER_CTX_get_construct(OSSL_DECODER_CTX *ctx); +void *OSSL_DECODER_CTX_get_construct_data(OSSL_DECODER_CTX *ctx); +OSSL_DECODER_CLEANUP *OSSL_DECODER_CTX_get_cleanup(OSSL_DECODER_CTX *ctx); + +int OSSL_DECODER_export(OSSL_DECODER_INSTANCE *decoder_inst, + void *reference, size_t reference_sz, + OSSL_CALLBACK *export_cb, void *export_cbarg); + +int OSSL_DECODER_from_bio(OSSL_DECODER_CTX *ctx, BIO *in); +#ifndef OPENSSL_NO_STDIO +int OSSL_DECODER_from_fp(OSSL_DECODER_CTX *ctx, FILE *in); +#endif +int OSSL_DECODER_from_data(OSSL_DECODER_CTX *ctx, const unsigned char **pdata, + size_t *pdata_len); + +/* + * Create the OSSL_DECODER_CTX with an associated type. This will perform + * an implicit OSSL_DECODER_fetch(), suitable for the object of that type. + */ +OSSL_DECODER_CTX * +OSSL_DECODER_CTX_new_for_pkey(EVP_PKEY **pkey, + const char *input_type, + const char *input_struct, + const char *keytype, int selection, + OSSL_LIB_CTX *libctx, const char *propquery); + +# ifdef __cplusplus +} +# endif +#endif diff --git a/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/decodererr.h b/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/decodererr.h new file mode 100644 index 0000000000000000000000000000000000000000..4212a38bca2adcfa030f51148aa401e2198f7d43 --- /dev/null +++ b/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/decodererr.h @@ -0,0 +1,28 @@ +/* + * Generated by util/mkerr.pl DO NOT EDIT + * Copyright 1995-2021 The OpenSSL Project Authors. All Rights Reserved. + * + * Licensed under the Apache License 2.0 (the "License"). You may not use + * this file except in compliance with the License. You can obtain a copy + * in the file LICENSE in the source distribution or at + * https://www.openssl.org/source/license.html + */ + +#ifndef OPENSSL_DECODERERR_H +# define OPENSSL_DECODERERR_H +# pragma once + +# include +# include +# include + + + +/* + * OSSL_DECODER reason codes. + */ +# define OSSL_DECODER_R_COULD_NOT_DECODE_OBJECT 101 +# define OSSL_DECODER_R_DECODER_NOT_FOUND 102 +# define OSSL_DECODER_R_MISSING_GET_PARAMS 100 + +#endif diff --git a/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/dso_conf.h b/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/dso_conf.h new file mode 100644 index 0000000000000000000000000000000000000000..55e48784d3154e2edb01303c150cd279f2cbd779 --- /dev/null +++ b/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/dso_conf.h @@ -0,0 +1,5 @@ +#if defined(OPENSSL_NO_ASM) +# include "./dso_conf_no-asm.h" +#else +# include "./dso_conf_asm.h" +#endif diff --git a/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/dso_conf_asm.h b/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/dso_conf_asm.h new file mode 100644 index 0000000000000000000000000000000000000000..1e4325557d393d33f45002a61a3a5787368923c6 --- /dev/null +++ b/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/dso_conf_asm.h @@ -0,0 +1,53 @@ +#undef OPENSSL_LINUX +#if defined(__linux) && !defined(__ANDROID__) +# define OPENSSL_LINUX 1 +#endif + +#if defined(OPENSSL_LINUX) && defined(__i386__) +# include "./archs/linux-elf/asm/include/crypto/dso_conf.h" +#elif defined(OPENSSL_LINUX) && defined(__ILP32__) +# include "./archs/linux-x32/asm/include/crypto/dso_conf.h" +#elif defined(OPENSSL_LINUX) && defined(__x86_64__) +# include "./archs/linux-x86_64/asm/include/crypto/dso_conf.h" +#elif defined(OPENSSL_LINUX) && defined(__arm__) +# include "./archs/linux-armv4/asm/include/crypto/dso_conf.h" +#elif defined(OPENSSL_LINUX) && defined(__aarch64__) +# include "./archs/linux-aarch64/asm/include/crypto/dso_conf.h" +#elif defined(__APPLE__) && defined(__MACH__) && defined(__i386__) +# include "./archs/darwin-i386-cc/asm/include/crypto/dso_conf.h" +#elif defined(__APPLE__) && defined(__MACH__) && defined(__x86_64__) +# include "./archs/darwin64-x86_64-cc/asm/include/crypto/dso_conf.h" +#elif defined(__APPLE__) && defined(__MACH__) && defined(__arm64__) +# include "./archs/darwin64-arm64-cc/asm/include/crypto/dso_conf.h" +#elif defined(_WIN32) && defined(_M_IX86) +# include "./archs/VC-WIN32/asm/include/crypto/dso_conf.h" +#elif defined(_WIN32) && defined(_M_X64) +# include "./archs/VC-WIN64A/asm/include/crypto/dso_conf.h" +#elif (defined(__FreeBSD__) || defined(__OpenBSD__)) && defined(__i386__) +# include "./archs/BSD-x86/asm/include/crypto/dso_conf.h" +#elif (defined(__FreeBSD__) || defined(__OpenBSD__)) && defined(__x86_64__) +# include "./archs/BSD-x86_64/asm/include/crypto/dso_conf.h" +#elif defined(__sun) && defined(__i386__) +# include "./archs/solaris-x86-gcc/asm/include/crypto/dso_conf.h" +#elif defined(__sun) && defined(__x86_64__) +# include "./archs/solaris64-x86_64-gcc/asm/include/crypto/dso_conf.h" +#elif defined(OPENSSL_LINUX) && defined(__PPC64__) && defined(L_ENDIAN) +# include "./archs/linux-ppc64le/asm/include/crypto/dso_conf.h" +#elif defined(_AIX) && defined(_ARCH_PPC64) +# include "./archs/aix64-gcc-as/asm/include/crypto/dso_conf.h" +#elif defined(OPENSSL_LINUX) && defined(__s390x__) +# include "./archs/linux64-s390x/asm/include/crypto/dso_conf.h" +#elif defined(OPENSSL_LINUX) && defined(__s390__) +# include "./archs/linux32-s390x/asm/include/crypto/dso_conf.h" +#else +# include "./archs/linux-elf/asm/include/crypto/dso_conf.h" +#endif + +/* GOST is not included in all platform */ +#ifndef OPENSSL_NO_GOST +# define OPENSSL_NO_GOST +#endif +/* HW_PADLOCK is not included in all platform */ +#ifndef OPENSSL_NO_HW_PADLOCK +# define OPENSSL_NO_HW_PADLOCK +#endif diff --git a/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/dso_conf_no-asm.h b/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/dso_conf_no-asm.h new file mode 100644 index 0000000000000000000000000000000000000000..4f1674e2caab8c836df022c8cfef5fc06b4afe26 --- /dev/null +++ b/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/dso_conf_no-asm.h @@ -0,0 +1,57 @@ +#undef OPENSSL_LINUX +#if defined(__linux) && !defined(__ANDROID__) +# define OPENSSL_LINUX 1 +#endif + +#if defined(OPENSSL_LINUX) && defined(__i386__) +# include "./archs/linux-elf/no-asm/include/crypto/dso_conf.h" +#elif defined(OPENSSL_LINUX) && defined(__ILP32__) +# include "./archs/linux-x32/no-asm/include/crypto/dso_conf.h" +#elif defined(OPENSSL_LINUX) && defined(__x86_64__) +# include "./archs/linux-x86_64/no-asm/include/crypto/dso_conf.h" +#elif defined(OPENSSL_LINUX) && defined(__arm__) +# include "./archs/linux-armv4/no-asm/include/crypto/dso_conf.h" +#elif defined(OPENSSL_LINUX) && defined(__aarch64__) +# include "./archs/linux-aarch64/no-asm/include/crypto/dso_conf.h" +#elif defined(OPENSSL_LINUX) && defined(__loongarch64) +# include "./archs/linux64-loongarch64/no-asm/include/crypto/dso_conf.h" +#elif defined(__APPLE__) && defined(__MACH__) && defined(__i386__) +# include "./archs/darwin-i386-cc/no-asm/include/crypto/dso_conf.h" +#elif defined(__APPLE__) && defined(__MACH__) && defined(__x86_64__) +# include "./archs/darwin64-x86_64-cc/no-asm/include/crypto/dso_conf.h" +#elif defined(__APPLE__) && defined(__MACH__) && defined(__arm64__) +# include "./archs/darwin64-arm64-cc/no-asm/include/crypto/dso_conf.h" +#elif defined(_WIN32) && defined(_M_IX86) +# include "./archs/VC-WIN32/no-asm/include/crypto/dso_conf.h" +#elif defined(_WIN32) && defined(_M_X64) +# include "./archs/VC-WIN64A/no-asm/include/crypto/dso_conf.h" +#elif defined(_WIN32) && defined(_M_ARM64) +# include "./archs/VC-WIN64-ARM/no-asm/include/crypto/dso_conf.h" +#elif (defined(__FreeBSD__) || defined(__OpenBSD__)) && defined(__i386__) +# include "./archs/BSD-x86/no-asm/include/crypto/dso_conf.h" +#elif (defined(__FreeBSD__) || defined(__OpenBSD__)) && defined(__x86_64__) +# include "./archs/BSD-x86_64/no-asm/include/crypto/dso_conf.h" +#elif defined(__sun) && defined(__i386__) +# include "./archs/solaris-x86-gcc/no-asm/include/crypto/dso_conf.h" +#elif defined(__sun) && defined(__x86_64__) +# include "./archs/solaris64-x86_64-gcc/no-asm/include/crypto/dso_conf.h" +#elif defined(OPENSSL_LINUX) && defined(__PPC64__) && defined(L_ENDIAN) +# include "./archs/linux-ppc64le/no-asm/include/crypto/dso_conf.h" +#elif defined(_AIX) && defined(_ARCH_PPC64) +# include "./archs/aix64-gcc-as/no-asm/include/crypto/dso_conf.h" +#elif defined(OPENSSL_LINUX) && defined(__s390x__) +# include "./archs/linux64-s390x/no-asm/include/crypto/dso_conf.h" +#elif defined(OPENSSL_LINUX) && defined(__s390__) +# include "./archs/linux32-s390x/no-asm/include/crypto/dso_conf.h" +#else +# include "./archs/linux-elf/no-asm/include/crypto/dso_conf.h" +#endif + +/* GOST is not included in all platform */ +#ifndef OPENSSL_NO_GOST +# define OPENSSL_NO_GOST +#endif +/* HW_PADLOCK is not included in all platform */ +#ifndef OPENSSL_NO_HW_PADLOCK +# define OPENSSL_NO_HW_PADLOCK +#endif diff --git a/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/e_os2.h b/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/e_os2.h new file mode 100644 index 0000000000000000000000000000000000000000..b8c61079159fa3f7d4cca198d832fc5443e3bd8c --- /dev/null +++ b/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/e_os2.h @@ -0,0 +1,310 @@ +/* + * Copyright 1995-2024 The OpenSSL Project Authors. All Rights Reserved. + * + * Licensed under the Apache License 2.0 (the "License"). You may not use + * this file except in compliance with the License. You can obtain a copy + * in the file LICENSE in the source distribution or at + * https://www.openssl.org/source/license.html + */ + +#ifndef OPENSSL_E_OS2_H +# define OPENSSL_E_OS2_H +# pragma once + +# include +# ifndef OPENSSL_NO_DEPRECATED_3_0 +# define HEADER_E_OS2_H +# endif + +# include + +#ifdef __cplusplus +extern "C" { +#endif + +/****************************************************************************** + * Detect operating systems. This probably needs completing. + * The result is that at least one OPENSSL_SYS_os macro should be defined. + * However, if none is defined, Unix is assumed. + **/ + +# define OPENSSL_SYS_UNIX + +/* --------------------- Microsoft operating systems ---------------------- */ + +/* + * Note that MSDOS actually denotes 32-bit environments running on top of + * MS-DOS, such as DJGPP one. + */ +# if defined(OPENSSL_SYS_MSDOS) +# undef OPENSSL_SYS_UNIX +# endif + +/* + * For 32 bit environment, there seems to be the CygWin environment and then + * all the others that try to do the same thing Microsoft does... + */ +/* + * UEFI lives here because it might be built with a Microsoft toolchain and + * we need to avoid the false positive match on Windows. + */ +# if defined(OPENSSL_SYS_UEFI) +# undef OPENSSL_SYS_UNIX +# elif defined(OPENSSL_SYS_UWIN) +# undef OPENSSL_SYS_UNIX +# define OPENSSL_SYS_WIN32_UWIN +# else +# if defined(__CYGWIN__) || defined(OPENSSL_SYS_CYGWIN) +# define OPENSSL_SYS_WIN32_CYGWIN +# else +# if defined(_WIN32) || defined(OPENSSL_SYS_WIN32) +# undef OPENSSL_SYS_UNIX +# if !defined(OPENSSL_SYS_WIN32) +# define OPENSSL_SYS_WIN32 +# endif +# endif +# if defined(_WIN64) || defined(OPENSSL_SYS_WIN64) +# undef OPENSSL_SYS_UNIX +# if !defined(OPENSSL_SYS_WIN64) +# define OPENSSL_SYS_WIN64 +# endif +# endif +# if defined(OPENSSL_SYS_WINNT) +# undef OPENSSL_SYS_UNIX +# endif +# if defined(OPENSSL_SYS_WINCE) +# undef OPENSSL_SYS_UNIX +# endif +# endif +# endif + +/* Anything that tries to look like Microsoft is "Windows" */ +# if defined(OPENSSL_SYS_WIN32) || defined(OPENSSL_SYS_WIN64) || defined(OPENSSL_SYS_WINNT) || defined(OPENSSL_SYS_WINCE) +# undef OPENSSL_SYS_UNIX +# define OPENSSL_SYS_WINDOWS +# ifndef OPENSSL_SYS_MSDOS +# define OPENSSL_SYS_MSDOS +# endif +# endif + +/* + * DLL settings. This part is a bit tough, because it's up to the + * application implementer how he or she will link the application, so it + * requires some macro to be used. + */ +# ifdef OPENSSL_SYS_WINDOWS +# ifndef OPENSSL_OPT_WINDLL +# if defined(_WINDLL) /* This is used when building OpenSSL to + * indicate that DLL linkage should be used */ +# define OPENSSL_OPT_WINDLL +# endif +# endif +# endif + +/* ------------------------------- OpenVMS -------------------------------- */ +# if defined(__VMS) || defined(VMS) +# if !defined(OPENSSL_SYS_VMS) +# undef OPENSSL_SYS_UNIX +# define OPENSSL_SYS_VMS +# endif +# if defined(__DECC) +# define OPENSSL_SYS_VMS_DECC +# elif defined(__DECCXX) +# define OPENSSL_SYS_VMS_DECC +# define OPENSSL_SYS_VMS_DECCXX +# else +# define OPENSSL_SYS_VMS_NODECC +# endif +# endif + +/* -------------------------------- Unix ---------------------------------- */ +# ifdef OPENSSL_SYS_UNIX +# if defined(linux) || defined(__linux__) && !defined(OPENSSL_SYS_LINUX) +# define OPENSSL_SYS_LINUX +# endif +# if defined(_AIX) && !defined(OPENSSL_SYS_AIX) +# define OPENSSL_SYS_AIX +# endif +# endif + +/* -------------------------------- VOS ----------------------------------- */ +# if defined(__VOS__) && !defined(OPENSSL_SYS_VOS) +# define OPENSSL_SYS_VOS +# ifdef __HPPA__ +# define OPENSSL_SYS_VOS_HPPA +# endif +# ifdef __IA32__ +# define OPENSSL_SYS_VOS_IA32 +# endif +# endif + +/* ---------------------------- HP NonStop -------------------------------- */ +# ifdef __TANDEM +# ifdef _STRING +# include +# endif +# define OPENSSL_USE_BUILD_DATE +# if defined(OPENSSL_THREADS) && defined(_SPT_MODEL_) +# define SPT_THREAD_SIGNAL 1 +# define SPT_THREAD_AWARE 1 +# include +# elif defined(OPENSSL_THREADS) && defined(_PUT_MODEL_) +# include +# endif +# endif + +/** + * That's it for OS-specific stuff + *****************************************************************************/ + +/*- + * OPENSSL_EXTERN is normally used to declare a symbol with possible extra + * attributes to handle its presence in a shared library. + * OPENSSL_EXPORT is used to define a symbol with extra possible attributes + * to make it visible in a shared library. + * Care needs to be taken when a header file is used both to declare and + * define symbols. Basically, for any library that exports some global + * variables, the following code must be present in the header file that + * declares them, before OPENSSL_EXTERN is used: + * + * #ifdef SOME_BUILD_FLAG_MACRO + * # undef OPENSSL_EXTERN + * # define OPENSSL_EXTERN OPENSSL_EXPORT + * #endif + * + * The default is to have OPENSSL_EXPORT and OPENSSL_EXTERN + * have some generally sensible values. + */ + +# if defined(OPENSSL_SYS_WINDOWS) && defined(OPENSSL_OPT_WINDLL) +# define OPENSSL_EXPORT extern __declspec(dllexport) +# define OPENSSL_EXTERN extern __declspec(dllimport) +# else +# define OPENSSL_EXPORT extern +# define OPENSSL_EXTERN extern +# endif + +# ifdef _WIN32 +# ifdef _WIN64 +# define ossl_ssize_t __int64 +# define OSSL_SSIZE_MAX _I64_MAX +# else +# define ossl_ssize_t int +# define OSSL_SSIZE_MAX INT_MAX +# endif +# endif + +# if defined(OPENSSL_SYS_UEFI) && !defined(ossl_ssize_t) +# define ossl_ssize_t INTN +# define OSSL_SSIZE_MAX MAX_INTN +# endif + +# ifndef ossl_ssize_t +# include +# define ossl_ssize_t ssize_t +# if defined(SSIZE_MAX) +# define OSSL_SSIZE_MAX SSIZE_MAX +# elif defined(_POSIX_SSIZE_MAX) +# define OSSL_SSIZE_MAX _POSIX_SSIZE_MAX +# else +# define OSSL_SSIZE_MAX ((ssize_t)(SIZE_MAX>>1)) +# endif +# endif + +# if defined(UNUSEDRESULT_DEBUG) +# define __owur __attribute__((__warn_unused_result__)) +# else +# define __owur +# endif + +/* Standard integer types */ +# define OPENSSL_NO_INTTYPES_H +# define OPENSSL_NO_STDINT_H +# if defined(OPENSSL_SYS_UEFI) +typedef INT8 int8_t; +typedef UINT8 uint8_t; +typedef INT16 int16_t; +typedef UINT16 uint16_t; +typedef INT32 int32_t; +typedef UINT32 uint32_t; +typedef INT64 int64_t; +typedef UINT64 uint64_t; +typedef UINTN uintptr_t; +# elif (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L) || \ + defined(__osf__) || defined(__sgi) || defined(__hpux) || \ + defined(OPENSSL_SYS_VMS) || defined (__OpenBSD__) +# include +# undef OPENSSL_NO_INTTYPES_H +/* Because the specs say that inttypes.h includes stdint.h if present */ +# undef OPENSSL_NO_STDINT_H +# elif defined(_MSC_VER) && _MSC_VER<1600 +/* + * minimally required typdefs for systems not supporting inttypes.h or + * stdint.h: currently just older VC++ + */ +typedef signed char int8_t; +typedef unsigned char uint8_t; +typedef short int16_t; +typedef unsigned short uint16_t; +typedef int int32_t; +typedef unsigned int uint32_t; +typedef __int64 int64_t; +typedef unsigned __int64 uint64_t; +# elif defined(OPENSSL_SYS_TANDEM) +# include +# include +# else +# include +# undef OPENSSL_NO_STDINT_H +# endif +# if defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L && \ + defined(INTMAX_MAX) && defined(UINTMAX_MAX) +typedef intmax_t ossl_intmax_t; +typedef uintmax_t ossl_uintmax_t; +# else +/* Fall back to the largest we know we require and can handle */ +typedef int64_t ossl_intmax_t; +typedef uint64_t ossl_uintmax_t; +# endif + +/* ossl_inline: portable inline definition usable in public headers */ +# if !defined(inline) && !defined(__cplusplus) +# if defined(__STDC_VERSION__) && __STDC_VERSION__>=199901L + /* just use inline */ +# define ossl_inline inline +# elif defined(__GNUC__) && __GNUC__>=2 +# define ossl_inline __inline__ +# elif defined(_MSC_VER) + /* + * Visual Studio: inline is available in C++ only, however + * __inline is available for C, see + * http://msdn.microsoft.com/en-us/library/z8y1yy88.aspx + */ +# define ossl_inline __inline +# else +# define ossl_inline +# endif +# else +# define ossl_inline inline +# endif + +# if defined(__STDC_VERSION__) && __STDC_VERSION__ >= 201112L && \ + !defined(__cplusplus) +# define ossl_noreturn _Noreturn +# elif defined(__GNUC__) && __GNUC__ >= 2 +# define ossl_noreturn __attribute__((noreturn)) +# else +# define ossl_noreturn +# endif + +/* ossl_unused: portable unused attribute for use in public headers */ +# if defined(__GNUC__) +# define ossl_unused __attribute__((unused)) +# else +# define ossl_unused +# endif + +#ifdef __cplusplus +} +#endif +#endif diff --git a/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/ec.h b/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/ec.h new file mode 100644 index 0000000000000000000000000000000000000000..e1cbe982287b6de3a5d520248eb2eef3e5fdd7a1 --- /dev/null +++ b/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/ec.h @@ -0,0 +1,1588 @@ +/* + * Copyright 2002-2023 The OpenSSL Project Authors. All Rights Reserved. + * Copyright (c) 2002, Oracle and/or its affiliates. All rights reserved + * + * Licensed under the Apache License 2.0 (the "License"). You may not use + * this file except in compliance with the License. You can obtain a copy + * in the file LICENSE in the source distribution or at + * https://www.openssl.org/source/license.html + */ + +#ifndef OPENSSL_EC_H +# define OPENSSL_EC_H +# pragma once + +# include +# ifndef OPENSSL_NO_DEPRECATED_3_0 +# define HEADER_EC_H +# endif + +# include +# include + +# include + +# ifdef __cplusplus +extern "C" { +# endif + +/* Values for EVP_PKEY_CTX_set_ec_param_enc() */ +# define OPENSSL_EC_EXPLICIT_CURVE 0x000 +# define OPENSSL_EC_NAMED_CURVE 0x001 + +int EVP_PKEY_CTX_set_ec_paramgen_curve_nid(EVP_PKEY_CTX *ctx, int nid); +int EVP_PKEY_CTX_set_ec_param_enc(EVP_PKEY_CTX *ctx, int param_enc); +int EVP_PKEY_CTX_set_ecdh_cofactor_mode(EVP_PKEY_CTX *ctx, int cofactor_mode); +int EVP_PKEY_CTX_get_ecdh_cofactor_mode(EVP_PKEY_CTX *ctx); + +int EVP_PKEY_CTX_set_ecdh_kdf_type(EVP_PKEY_CTX *ctx, int kdf); +int EVP_PKEY_CTX_get_ecdh_kdf_type(EVP_PKEY_CTX *ctx); + +int EVP_PKEY_CTX_set_ecdh_kdf_md(EVP_PKEY_CTX *ctx, const EVP_MD *md); +int EVP_PKEY_CTX_get_ecdh_kdf_md(EVP_PKEY_CTX *ctx, const EVP_MD **md); + +int EVP_PKEY_CTX_set_ecdh_kdf_outlen(EVP_PKEY_CTX *ctx, int len); +int EVP_PKEY_CTX_get_ecdh_kdf_outlen(EVP_PKEY_CTX *ctx, int *len); + +int EVP_PKEY_CTX_set0_ecdh_kdf_ukm(EVP_PKEY_CTX *ctx, unsigned char *ukm, + int len); +# ifndef OPENSSL_NO_DEPRECATED_3_0 +OSSL_DEPRECATEDIN_3_0 +int EVP_PKEY_CTX_get0_ecdh_kdf_ukm(EVP_PKEY_CTX *ctx, unsigned char **ukm); +# endif + +# define EVP_PKEY_CTRL_EC_PARAMGEN_CURVE_NID (EVP_PKEY_ALG_CTRL + 1) +# define EVP_PKEY_CTRL_EC_PARAM_ENC (EVP_PKEY_ALG_CTRL + 2) +# define EVP_PKEY_CTRL_EC_ECDH_COFACTOR (EVP_PKEY_ALG_CTRL + 3) +# define EVP_PKEY_CTRL_EC_KDF_TYPE (EVP_PKEY_ALG_CTRL + 4) +# define EVP_PKEY_CTRL_EC_KDF_MD (EVP_PKEY_ALG_CTRL + 5) +# define EVP_PKEY_CTRL_GET_EC_KDF_MD (EVP_PKEY_ALG_CTRL + 6) +# define EVP_PKEY_CTRL_EC_KDF_OUTLEN (EVP_PKEY_ALG_CTRL + 7) +# define EVP_PKEY_CTRL_GET_EC_KDF_OUTLEN (EVP_PKEY_ALG_CTRL + 8) +# define EVP_PKEY_CTRL_EC_KDF_UKM (EVP_PKEY_ALG_CTRL + 9) +# define EVP_PKEY_CTRL_GET_EC_KDF_UKM (EVP_PKEY_ALG_CTRL + 10) + +/* KDF types */ +# define EVP_PKEY_ECDH_KDF_NONE 1 +# define EVP_PKEY_ECDH_KDF_X9_63 2 +/* + * The old name for EVP_PKEY_ECDH_KDF_X9_63 + * The ECDH KDF specification has been mistakenly attributed to ANSI X9.62, + * it is actually specified in ANSI X9.63. + * This identifier is retained for backwards compatibility + */ +# define EVP_PKEY_ECDH_KDF_X9_62 EVP_PKEY_ECDH_KDF_X9_63 + +/** Enum for the point conversion form as defined in X9.62 (ECDSA) + * for the encoding of a elliptic curve point (x,y) */ +typedef enum { + /** the point is encoded as z||x, where the octet z specifies + * which solution of the quadratic equation y is */ + POINT_CONVERSION_COMPRESSED = 2, + /** the point is encoded as z||x||y, where z is the octet 0x04 */ + POINT_CONVERSION_UNCOMPRESSED = 4, + /** the point is encoded as z||x||y, where the octet z specifies + * which solution of the quadratic equation y is */ + POINT_CONVERSION_HYBRID = 6 +} point_conversion_form_t; + +const char *OSSL_EC_curve_nid2name(int nid); + +# ifndef OPENSSL_NO_STDIO +# include +# endif +# ifndef OPENSSL_NO_EC +# include +# include +# ifndef OPENSSL_NO_DEPRECATED_1_1_0 +# include +# endif +# include + +# ifndef OPENSSL_ECC_MAX_FIELD_BITS +# define OPENSSL_ECC_MAX_FIELD_BITS 661 +# endif + +# include +# ifndef OPENSSL_NO_DEPRECATED_3_0 +typedef struct ec_method_st EC_METHOD; +# endif +typedef struct ec_group_st EC_GROUP; +typedef struct ec_point_st EC_POINT; +typedef struct ecpk_parameters_st ECPKPARAMETERS; +typedef struct ec_parameters_st ECPARAMETERS; + +/********************************************************************/ +/* EC_METHODs for curves over GF(p) */ +/********************************************************************/ + +# ifndef OPENSSL_NO_DEPRECATED_3_0 +/** Returns the basic GFp ec methods which provides the basis for the + * optimized methods. + * \return EC_METHOD object + */ +OSSL_DEPRECATEDIN_3_0 const EC_METHOD *EC_GFp_simple_method(void); + +/** Returns GFp methods using montgomery multiplication. + * \return EC_METHOD object + */ +OSSL_DEPRECATEDIN_3_0 const EC_METHOD *EC_GFp_mont_method(void); + +/** Returns GFp methods using optimized methods for NIST recommended curves + * \return EC_METHOD object + */ +OSSL_DEPRECATEDIN_3_0 const EC_METHOD *EC_GFp_nist_method(void); + +# ifndef OPENSSL_NO_EC_NISTP_64_GCC_128 +/** Returns 64-bit optimized methods for nistp224 + * \return EC_METHOD object + */ +OSSL_DEPRECATEDIN_3_0 const EC_METHOD *EC_GFp_nistp224_method(void); + +/** Returns 64-bit optimized methods for nistp256 + * \return EC_METHOD object + */ +OSSL_DEPRECATEDIN_3_0 const EC_METHOD *EC_GFp_nistp256_method(void); + +/** Returns 64-bit optimized methods for nistp521 + * \return EC_METHOD object + */ +OSSL_DEPRECATEDIN_3_0 const EC_METHOD *EC_GFp_nistp521_method(void); +# endif /* OPENSSL_NO_EC_NISTP_64_GCC_128 */ + +# ifndef OPENSSL_NO_EC2M +/********************************************************************/ +/* EC_METHOD for curves over GF(2^m) */ +/********************************************************************/ + +/** Returns the basic GF2m ec method + * \return EC_METHOD object + */ +OSSL_DEPRECATEDIN_3_0 const EC_METHOD *EC_GF2m_simple_method(void); + +# endif + +/********************************************************************/ +/* EC_GROUP functions */ +/********************************************************************/ + +/** + * Creates a new EC_GROUP object + * \param meth EC_METHOD to use + * \return newly created EC_GROUP object or NULL in case of an error. + */ +OSSL_DEPRECATEDIN_3_0 EC_GROUP *EC_GROUP_new(const EC_METHOD *meth); + +/** Clears and frees a EC_GROUP object + * \param group EC_GROUP object to be cleared and freed. + */ +OSSL_DEPRECATEDIN_3_0 void EC_GROUP_clear_free(EC_GROUP *group); + +/** Returns the EC_METHOD of the EC_GROUP object. + * \param group EC_GROUP object + * \return EC_METHOD used in this EC_GROUP object. + */ +OSSL_DEPRECATEDIN_3_0 const EC_METHOD *EC_GROUP_method_of(const EC_GROUP *group); + +/** Returns the field type of the EC_METHOD. + * \param meth EC_METHOD object + * \return NID of the underlying field type OID. + */ +OSSL_DEPRECATEDIN_3_0 int EC_METHOD_get_field_type(const EC_METHOD *meth); +# endif /* OPENSSL_NO_DEPRECATED_3_0 */ + +/** Frees a EC_GROUP object + * \param group EC_GROUP object to be freed. + */ +void EC_GROUP_free(EC_GROUP *group); + +/** Copies EC_GROUP objects. Note: both EC_GROUPs must use the same EC_METHOD. + * \param dst destination EC_GROUP object + * \param src source EC_GROUP object + * \return 1 on success and 0 if an error occurred. + */ +int EC_GROUP_copy(EC_GROUP *dst, const EC_GROUP *src); + +/** Creates a new EC_GROUP object and copies the content + * form src to the newly created EC_KEY object + * \param src source EC_GROUP object + * \return newly created EC_GROUP object or NULL in case of an error. + */ +EC_GROUP *EC_GROUP_dup(const EC_GROUP *src); + +/** Sets the generator and its order/cofactor of a EC_GROUP object. + * \param group EC_GROUP object + * \param generator EC_POINT object with the generator. + * \param order the order of the group generated by the generator. + * \param cofactor the index of the sub-group generated by the generator + * in the group of all points on the elliptic curve. + * \return 1 on success and 0 if an error occurred + */ +int EC_GROUP_set_generator(EC_GROUP *group, const EC_POINT *generator, + const BIGNUM *order, const BIGNUM *cofactor); + +/** Returns the generator of a EC_GROUP object. + * \param group EC_GROUP object + * \return the currently used generator (possibly NULL). + */ +const EC_POINT *EC_GROUP_get0_generator(const EC_GROUP *group); + +/** Returns the montgomery data for order(Generator) + * \param group EC_GROUP object + * \return the currently used montgomery data (possibly NULL). +*/ +BN_MONT_CTX *EC_GROUP_get_mont_data(const EC_GROUP *group); + +/** Gets the order of a EC_GROUP + * \param group EC_GROUP object + * \param order BIGNUM to which the order is copied + * \param ctx unused + * \return 1 on success and 0 if an error occurred + */ +int EC_GROUP_get_order(const EC_GROUP *group, BIGNUM *order, BN_CTX *ctx); + +/** Gets the order of an EC_GROUP + * \param group EC_GROUP object + * \return the group order + */ +const BIGNUM *EC_GROUP_get0_order(const EC_GROUP *group); + +/** Gets the number of bits of the order of an EC_GROUP + * \param group EC_GROUP object + * \return number of bits of group order. + */ +int EC_GROUP_order_bits(const EC_GROUP *group); + +/** Gets the cofactor of a EC_GROUP + * \param group EC_GROUP object + * \param cofactor BIGNUM to which the cofactor is copied + * \param ctx unused + * \return 1 on success and 0 if an error occurred + */ +int EC_GROUP_get_cofactor(const EC_GROUP *group, BIGNUM *cofactor, + BN_CTX *ctx); + +/** Gets the cofactor of an EC_GROUP + * \param group EC_GROUP object + * \return the group cofactor + */ +const BIGNUM *EC_GROUP_get0_cofactor(const EC_GROUP *group); + +/** Sets the name of a EC_GROUP object + * \param group EC_GROUP object + * \param nid NID of the curve name OID + */ +void EC_GROUP_set_curve_name(EC_GROUP *group, int nid); + +/** Returns the curve name of a EC_GROUP object + * \param group EC_GROUP object + * \return NID of the curve name OID or 0 if not set. + */ +int EC_GROUP_get_curve_name(const EC_GROUP *group); + +/** Gets the field of an EC_GROUP + * \param group EC_GROUP object + * \return the group field + */ +const BIGNUM *EC_GROUP_get0_field(const EC_GROUP *group); + +/** Returns the field type of the EC_GROUP. + * \param group EC_GROUP object + * \return NID of the underlying field type OID. + */ +int EC_GROUP_get_field_type(const EC_GROUP *group); + +void EC_GROUP_set_asn1_flag(EC_GROUP *group, int flag); +int EC_GROUP_get_asn1_flag(const EC_GROUP *group); + +void EC_GROUP_set_point_conversion_form(EC_GROUP *group, + point_conversion_form_t form); +point_conversion_form_t EC_GROUP_get_point_conversion_form(const EC_GROUP *); + +unsigned char *EC_GROUP_get0_seed(const EC_GROUP *x); +size_t EC_GROUP_get_seed_len(const EC_GROUP *); +size_t EC_GROUP_set_seed(EC_GROUP *, const unsigned char *, size_t len); + +/** Sets the parameters of an ec curve defined by y^2 = x^3 + a*x + b (for GFp) + * or y^2 + x*y = x^3 + a*x^2 + b (for GF2m) + * \param group EC_GROUP object + * \param p BIGNUM with the prime number (GFp) or the polynomial + * defining the underlying field (GF2m) + * \param a BIGNUM with parameter a of the equation + * \param b BIGNUM with parameter b of the equation + * \param ctx BN_CTX object (optional) + * \return 1 on success and 0 if an error occurred + */ +int EC_GROUP_set_curve(EC_GROUP *group, const BIGNUM *p, const BIGNUM *a, + const BIGNUM *b, BN_CTX *ctx); + +/** Gets the parameters of the ec curve defined by y^2 = x^3 + a*x + b (for GFp) + * or y^2 + x*y = x^3 + a*x^2 + b (for GF2m) + * \param group EC_GROUP object + * \param p BIGNUM with the prime number (GFp) or the polynomial + * defining the underlying field (GF2m) + * \param a BIGNUM for parameter a of the equation + * \param b BIGNUM for parameter b of the equation + * \param ctx BN_CTX object (optional) + * \return 1 on success and 0 if an error occurred + */ +int EC_GROUP_get_curve(const EC_GROUP *group, BIGNUM *p, BIGNUM *a, BIGNUM *b, + BN_CTX *ctx); + +# ifndef OPENSSL_NO_DEPRECATED_3_0 +/** Sets the parameters of an ec curve. Synonym for EC_GROUP_set_curve + * \param group EC_GROUP object + * \param p BIGNUM with the prime number (GFp) or the polynomial + * defining the underlying field (GF2m) + * \param a BIGNUM with parameter a of the equation + * \param b BIGNUM with parameter b of the equation + * \param ctx BN_CTX object (optional) + * \return 1 on success and 0 if an error occurred + */ +OSSL_DEPRECATEDIN_3_0 int EC_GROUP_set_curve_GFp(EC_GROUP *group, + const BIGNUM *p, + const BIGNUM *a, + const BIGNUM *b, + BN_CTX *ctx); + +/** Gets the parameters of an ec curve. Synonym for EC_GROUP_get_curve + * \param group EC_GROUP object + * \param p BIGNUM with the prime number (GFp) or the polynomial + * defining the underlying field (GF2m) + * \param a BIGNUM for parameter a of the equation + * \param b BIGNUM for parameter b of the equation + * \param ctx BN_CTX object (optional) + * \return 1 on success and 0 if an error occurred + */ +OSSL_DEPRECATEDIN_3_0 int EC_GROUP_get_curve_GFp(const EC_GROUP *group, + BIGNUM *p, + BIGNUM *a, BIGNUM *b, + BN_CTX *ctx); + +# ifndef OPENSSL_NO_EC2M +/** Sets the parameter of an ec curve. Synonym for EC_GROUP_set_curve + * \param group EC_GROUP object + * \param p BIGNUM with the prime number (GFp) or the polynomial + * defining the underlying field (GF2m) + * \param a BIGNUM with parameter a of the equation + * \param b BIGNUM with parameter b of the equation + * \param ctx BN_CTX object (optional) + * \return 1 on success and 0 if an error occurred + */ +OSSL_DEPRECATEDIN_3_0 int EC_GROUP_set_curve_GF2m(EC_GROUP *group, + const BIGNUM *p, + const BIGNUM *a, + const BIGNUM *b, + BN_CTX *ctx); + +/** Gets the parameters of an ec curve. Synonym for EC_GROUP_get_curve + * \param group EC_GROUP object + * \param p BIGNUM with the prime number (GFp) or the polynomial + * defining the underlying field (GF2m) + * \param a BIGNUM for parameter a of the equation + * \param b BIGNUM for parameter b of the equation + * \param ctx BN_CTX object (optional) + * \return 1 on success and 0 if an error occurred + */ +OSSL_DEPRECATEDIN_3_0 int EC_GROUP_get_curve_GF2m(const EC_GROUP *group, + BIGNUM *p, + BIGNUM *a, BIGNUM *b, + BN_CTX *ctx); +# endif /* OPENSSL_NO_EC2M */ +# endif /* OPENSSL_NO_DEPRECATED_3_0 */ + +/** Returns the number of bits needed to represent a field element + * \param group EC_GROUP object + * \return number of bits needed to represent a field element + */ +int EC_GROUP_get_degree(const EC_GROUP *group); + +/** Checks whether the parameter in the EC_GROUP define a valid ec group + * \param group EC_GROUP object + * \param ctx BN_CTX object (optional) + * \return 1 if group is a valid ec group and 0 otherwise + */ +int EC_GROUP_check(const EC_GROUP *group, BN_CTX *ctx); + +/** Checks whether the discriminant of the elliptic curve is zero or not + * \param group EC_GROUP object + * \param ctx BN_CTX object (optional) + * \return 1 if the discriminant is not zero and 0 otherwise + */ +int EC_GROUP_check_discriminant(const EC_GROUP *group, BN_CTX *ctx); + +/** Compares two EC_GROUP objects + * \param a first EC_GROUP object + * \param b second EC_GROUP object + * \param ctx BN_CTX object (optional) + * \return 0 if the groups are equal, 1 if not, or -1 on error + */ +int EC_GROUP_cmp(const EC_GROUP *a, const EC_GROUP *b, BN_CTX *ctx); + +/* + * EC_GROUP_new_GF*() calls EC_GROUP_new() and EC_GROUP_set_GF*() after + * choosing an appropriate EC_METHOD + */ + +/** Creates a new EC_GROUP object with the specified parameters defined + * over GFp (defined by the equation y^2 = x^3 + a*x + b) + * \param p BIGNUM with the prime number + * \param a BIGNUM with the parameter a of the equation + * \param b BIGNUM with the parameter b of the equation + * \param ctx BN_CTX object (optional) + * \return newly created EC_GROUP object with the specified parameters + */ +EC_GROUP *EC_GROUP_new_curve_GFp(const BIGNUM *p, const BIGNUM *a, + const BIGNUM *b, BN_CTX *ctx); +# ifndef OPENSSL_NO_EC2M +/** Creates a new EC_GROUP object with the specified parameters defined + * over GF2m (defined by the equation y^2 + x*y = x^3 + a*x^2 + b) + * \param p BIGNUM with the polynomial defining the underlying field + * \param a BIGNUM with the parameter a of the equation + * \param b BIGNUM with the parameter b of the equation + * \param ctx BN_CTX object (optional) + * \return newly created EC_GROUP object with the specified parameters + */ +EC_GROUP *EC_GROUP_new_curve_GF2m(const BIGNUM *p, const BIGNUM *a, + const BIGNUM *b, BN_CTX *ctx); +# endif + +/** + * Creates a EC_GROUP object with a curve specified by parameters. + * The parameters may be explicit or a named curve, + * \param params A list of parameters describing the group. + * \param libctx The associated library context or NULL for the default + * context + * \param propq A property query string + * \return newly created EC_GROUP object with specified parameters or NULL + * if an error occurred + */ +EC_GROUP *EC_GROUP_new_from_params(const OSSL_PARAM params[], + OSSL_LIB_CTX *libctx, const char *propq); + +/** + * Creates an OSSL_PARAM array with the parameters describing the given + * EC_GROUP. + * The resulting parameters may contain an explicit or a named curve depending + * on the EC_GROUP. + * \param group pointer to the EC_GROUP object + * \param libctx The associated library context or NULL for the default + * context + * \param propq A property query string + * \param bnctx BN_CTX object (optional) + * \return newly created OSSL_PARAM array with the parameters + * describing the given EC_GROUP or NULL if an error occurred + */ +OSSL_PARAM *EC_GROUP_to_params(const EC_GROUP *group, OSSL_LIB_CTX *libctx, + const char *propq, BN_CTX *bnctx); + +/** + * Creates a EC_GROUP object with a curve specified by a NID + * \param libctx The associated library context or NULL for the default + * context + * \param propq A property query string + * \param nid NID of the OID of the curve name + * \return newly created EC_GROUP object with specified curve or NULL + * if an error occurred + */ +EC_GROUP *EC_GROUP_new_by_curve_name_ex(OSSL_LIB_CTX *libctx, const char *propq, + int nid); + +/** + * Creates a EC_GROUP object with a curve specified by a NID. Same as + * EC_GROUP_new_by_curve_name_ex but the libctx and propq are always + * NULL. + * \param nid NID of the OID of the curve name + * \return newly created EC_GROUP object with specified curve or NULL + * if an error occurred + */ +EC_GROUP *EC_GROUP_new_by_curve_name(int nid); + +/** Creates a new EC_GROUP object from an ECPARAMETERS object + * \param params pointer to the ECPARAMETERS object + * \return newly created EC_GROUP object with specified curve or NULL + * if an error occurred + */ +EC_GROUP *EC_GROUP_new_from_ecparameters(const ECPARAMETERS *params); + +/** Creates an ECPARAMETERS object for the given EC_GROUP object. + * \param group pointer to the EC_GROUP object + * \param params pointer to an existing ECPARAMETERS object or NULL + * \return pointer to the new ECPARAMETERS object or NULL + * if an error occurred. + */ +ECPARAMETERS *EC_GROUP_get_ecparameters(const EC_GROUP *group, + ECPARAMETERS *params); + +/** Creates a new EC_GROUP object from an ECPKPARAMETERS object + * \param params pointer to an existing ECPKPARAMETERS object, or NULL + * \return newly created EC_GROUP object with specified curve, or NULL + * if an error occurred + */ +EC_GROUP *EC_GROUP_new_from_ecpkparameters(const ECPKPARAMETERS *params); + +/** Creates an ECPKPARAMETERS object for the given EC_GROUP object. + * \param group pointer to the EC_GROUP object + * \param params pointer to an existing ECPKPARAMETERS object or NULL + * \return pointer to the new ECPKPARAMETERS object or NULL + * if an error occurred. + */ +ECPKPARAMETERS *EC_GROUP_get_ecpkparameters(const EC_GROUP *group, + ECPKPARAMETERS *params); + +/********************************************************************/ +/* handling of internal curves */ +/********************************************************************/ + +typedef struct { + int nid; + const char *comment; +} EC_builtin_curve; + +/* + * EC_builtin_curves(EC_builtin_curve *r, size_t size) returns number of all + * available curves or zero if a error occurred. In case r is not zero, + * nitems EC_builtin_curve structures are filled with the data of the first + * nitems internal groups + */ +size_t EC_get_builtin_curves(EC_builtin_curve *r, size_t nitems); + +const char *EC_curve_nid2nist(int nid); +int EC_curve_nist2nid(const char *name); +int EC_GROUP_check_named_curve(const EC_GROUP *group, int nist_only, + BN_CTX *ctx); + +/********************************************************************/ +/* EC_POINT functions */ +/********************************************************************/ + +/** Creates a new EC_POINT object for the specified EC_GROUP + * \param group EC_GROUP the underlying EC_GROUP object + * \return newly created EC_POINT object or NULL if an error occurred + */ +EC_POINT *EC_POINT_new(const EC_GROUP *group); + +/** Frees a EC_POINT object + * \param point EC_POINT object to be freed + */ +void EC_POINT_free(EC_POINT *point); + +/** Clears and frees a EC_POINT object + * \param point EC_POINT object to be cleared and freed + */ +void EC_POINT_clear_free(EC_POINT *point); + +/** Copies EC_POINT object + * \param dst destination EC_POINT object + * \param src source EC_POINT object + * \return 1 on success and 0 if an error occurred + */ +int EC_POINT_copy(EC_POINT *dst, const EC_POINT *src); + +/** Creates a new EC_POINT object and copies the content of the supplied + * EC_POINT + * \param src source EC_POINT object + * \param group underlying the EC_GROUP object + * \return newly created EC_POINT object or NULL if an error occurred + */ +EC_POINT *EC_POINT_dup(const EC_POINT *src, const EC_GROUP *group); + +/** Sets a point to infinity (neutral element) + * \param group underlying EC_GROUP object + * \param point EC_POINT to set to infinity + * \return 1 on success and 0 if an error occurred + */ +int EC_POINT_set_to_infinity(const EC_GROUP *group, EC_POINT *point); + +# ifndef OPENSSL_NO_DEPRECATED_3_0 +/** Returns the EC_METHOD used in EC_POINT object + * \param point EC_POINT object + * \return the EC_METHOD used + */ +OSSL_DEPRECATEDIN_3_0 const EC_METHOD *EC_POINT_method_of(const EC_POINT *point); + +/** Sets the jacobian projective coordinates of a EC_POINT over GFp + * \param group underlying EC_GROUP object + * \param p EC_POINT object + * \param x BIGNUM with the x-coordinate + * \param y BIGNUM with the y-coordinate + * \param z BIGNUM with the z-coordinate + * \param ctx BN_CTX object (optional) + * \return 1 on success and 0 if an error occurred + */ +OSSL_DEPRECATEDIN_3_0 int EC_POINT_set_Jprojective_coordinates_GFp + (const EC_GROUP *group, EC_POINT *p, + const BIGNUM *x, const BIGNUM *y, const BIGNUM *z, + BN_CTX *ctx); + +/** Gets the jacobian projective coordinates of a EC_POINT over GFp + * \param group underlying EC_GROUP object + * \param p EC_POINT object + * \param x BIGNUM for the x-coordinate + * \param y BIGNUM for the y-coordinate + * \param z BIGNUM for the z-coordinate + * \param ctx BN_CTX object (optional) + * \return 1 on success and 0 if an error occurred + */ +OSSL_DEPRECATEDIN_3_0 int EC_POINT_get_Jprojective_coordinates_GFp + (const EC_GROUP *group, const EC_POINT *p, + BIGNUM *x, BIGNUM *y, BIGNUM *z, BN_CTX *ctx); +# endif /* OPENSSL_NO_DEPRECATED_3_0 */ + +/** Sets the affine coordinates of an EC_POINT + * \param group underlying EC_GROUP object + * \param p EC_POINT object + * \param x BIGNUM with the x-coordinate + * \param y BIGNUM with the y-coordinate + * \param ctx BN_CTX object (optional) + * \return 1 on success and 0 if an error occurred + */ +int EC_POINT_set_affine_coordinates(const EC_GROUP *group, EC_POINT *p, + const BIGNUM *x, const BIGNUM *y, + BN_CTX *ctx); + +/** Gets the affine coordinates of an EC_POINT. + * \param group underlying EC_GROUP object + * \param p EC_POINT object + * \param x BIGNUM for the x-coordinate + * \param y BIGNUM for the y-coordinate + * \param ctx BN_CTX object (optional) + * \return 1 on success and 0 if an error occurred + */ +int EC_POINT_get_affine_coordinates(const EC_GROUP *group, const EC_POINT *p, + BIGNUM *x, BIGNUM *y, BN_CTX *ctx); + +# ifndef OPENSSL_NO_DEPRECATED_3_0 +/** Sets the affine coordinates of an EC_POINT. A synonym of + * EC_POINT_set_affine_coordinates + * \param group underlying EC_GROUP object + * \param p EC_POINT object + * \param x BIGNUM with the x-coordinate + * \param y BIGNUM with the y-coordinate + * \param ctx BN_CTX object (optional) + * \return 1 on success and 0 if an error occurred + */ +OSSL_DEPRECATEDIN_3_0 int EC_POINT_set_affine_coordinates_GFp + (const EC_GROUP *group, EC_POINT *p, + const BIGNUM *x, const BIGNUM *y, BN_CTX *ctx); + +/** Gets the affine coordinates of an EC_POINT. A synonym of + * EC_POINT_get_affine_coordinates + * \param group underlying EC_GROUP object + * \param p EC_POINT object + * \param x BIGNUM for the x-coordinate + * \param y BIGNUM for the y-coordinate + * \param ctx BN_CTX object (optional) + * \return 1 on success and 0 if an error occurred + */ +OSSL_DEPRECATEDIN_3_0 int EC_POINT_get_affine_coordinates_GFp + (const EC_GROUP *group, const EC_POINT *p, + BIGNUM *x, BIGNUM *y, BN_CTX *ctx); +# endif /* OPENSSL_NO_DEPRECATED_3_0 */ + +/** Sets the x9.62 compressed coordinates of a EC_POINT + * \param group underlying EC_GROUP object + * \param p EC_POINT object + * \param x BIGNUM with x-coordinate + * \param y_bit integer with the y-Bit (either 0 or 1) + * \param ctx BN_CTX object (optional) + * \return 1 on success and 0 if an error occurred + */ +int EC_POINT_set_compressed_coordinates(const EC_GROUP *group, EC_POINT *p, + const BIGNUM *x, int y_bit, + BN_CTX *ctx); + +# ifndef OPENSSL_NO_DEPRECATED_3_0 +/** Sets the x9.62 compressed coordinates of a EC_POINT. A synonym of + * EC_POINT_set_compressed_coordinates + * \param group underlying EC_GROUP object + * \param p EC_POINT object + * \param x BIGNUM with x-coordinate + * \param y_bit integer with the y-Bit (either 0 or 1) + * \param ctx BN_CTX object (optional) + * \return 1 on success and 0 if an error occurred + */ +OSSL_DEPRECATEDIN_3_0 int EC_POINT_set_compressed_coordinates_GFp + (const EC_GROUP *group, EC_POINT *p, + const BIGNUM *x, int y_bit, BN_CTX *ctx); +# ifndef OPENSSL_NO_EC2M +/** Sets the affine coordinates of an EC_POINT. A synonym of + * EC_POINT_set_affine_coordinates + * \param group underlying EC_GROUP object + * \param p EC_POINT object + * \param x BIGNUM with the x-coordinate + * \param y BIGNUM with the y-coordinate + * \param ctx BN_CTX object (optional) + * \return 1 on success and 0 if an error occurred + */ +OSSL_DEPRECATEDIN_3_0 int EC_POINT_set_affine_coordinates_GF2m + (const EC_GROUP *group, EC_POINT *p, + const BIGNUM *x, const BIGNUM *y, BN_CTX *ctx); + +/** Gets the affine coordinates of an EC_POINT. A synonym of + * EC_POINT_get_affine_coordinates + * \param group underlying EC_GROUP object + * \param p EC_POINT object + * \param x BIGNUM for the x-coordinate + * \param y BIGNUM for the y-coordinate + * \param ctx BN_CTX object (optional) + * \return 1 on success and 0 if an error occurred + */ +OSSL_DEPRECATEDIN_3_0 int EC_POINT_get_affine_coordinates_GF2m + (const EC_GROUP *group, const EC_POINT *p, + BIGNUM *x, BIGNUM *y, BN_CTX *ctx); + +/** Sets the x9.62 compressed coordinates of a EC_POINT. A synonym of + * EC_POINT_set_compressed_coordinates + * \param group underlying EC_GROUP object + * \param p EC_POINT object + * \param x BIGNUM with x-coordinate + * \param y_bit integer with the y-Bit (either 0 or 1) + * \param ctx BN_CTX object (optional) + * \return 1 on success and 0 if an error occurred + */ +OSSL_DEPRECATEDIN_3_0 int EC_POINT_set_compressed_coordinates_GF2m + (const EC_GROUP *group, EC_POINT *p, + const BIGNUM *x, int y_bit, BN_CTX *ctx); +# endif +# endif /* OPENSSL_NO_DEPRECATED_3_0 */ + +/** Encodes a EC_POINT object to a octet string + * \param group underlying EC_GROUP object + * \param p EC_POINT object + * \param form point conversion form + * \param buf memory buffer for the result. If NULL the function returns + * required buffer size. + * \param len length of the memory buffer + * \param ctx BN_CTX object (optional) + * \return the length of the encoded octet string or 0 if an error occurred + */ +size_t EC_POINT_point2oct(const EC_GROUP *group, const EC_POINT *p, + point_conversion_form_t form, + unsigned char *buf, size_t len, BN_CTX *ctx); + +/** Decodes a EC_POINT from a octet string + * \param group underlying EC_GROUP object + * \param p EC_POINT object + * \param buf memory buffer with the encoded ec point + * \param len length of the encoded ec point + * \param ctx BN_CTX object (optional) + * \return 1 on success and 0 if an error occurred + */ +int EC_POINT_oct2point(const EC_GROUP *group, EC_POINT *p, + const unsigned char *buf, size_t len, BN_CTX *ctx); + +/** Encodes an EC_POINT object to an allocated octet string + * \param group underlying EC_GROUP object + * \param point EC_POINT object + * \param form point conversion form + * \param pbuf returns pointer to allocated buffer + * \param ctx BN_CTX object (optional) + * \return the length of the encoded octet string or 0 if an error occurred + */ +size_t EC_POINT_point2buf(const EC_GROUP *group, const EC_POINT *point, + point_conversion_form_t form, + unsigned char **pbuf, BN_CTX *ctx); + +/* other interfaces to point2oct/oct2point: */ +# ifndef OPENSSL_NO_DEPRECATED_3_0 +OSSL_DEPRECATEDIN_3_0 BIGNUM *EC_POINT_point2bn(const EC_GROUP *, + const EC_POINT *, + point_conversion_form_t form, + BIGNUM *, BN_CTX *); +OSSL_DEPRECATEDIN_3_0 EC_POINT *EC_POINT_bn2point(const EC_GROUP *, + const BIGNUM *, + EC_POINT *, BN_CTX *); +# endif /* OPENSSL_NO_DEPRECATED_3_0 */ + +char *EC_POINT_point2hex(const EC_GROUP *, const EC_POINT *, + point_conversion_form_t form, BN_CTX *); +EC_POINT *EC_POINT_hex2point(const EC_GROUP *, const char *, + EC_POINT *, BN_CTX *); + +/********************************************************************/ +/* functions for doing EC_POINT arithmetic */ +/********************************************************************/ + +/** Computes the sum of two EC_POINT + * \param group underlying EC_GROUP object + * \param r EC_POINT object for the result (r = a + b) + * \param a EC_POINT object with the first summand + * \param b EC_POINT object with the second summand + * \param ctx BN_CTX object (optional) + * \return 1 on success and 0 if an error occurred + */ +int EC_POINT_add(const EC_GROUP *group, EC_POINT *r, const EC_POINT *a, + const EC_POINT *b, BN_CTX *ctx); + +/** Computes the double of a EC_POINT + * \param group underlying EC_GROUP object + * \param r EC_POINT object for the result (r = 2 * a) + * \param a EC_POINT object + * \param ctx BN_CTX object (optional) + * \return 1 on success and 0 if an error occurred + */ +int EC_POINT_dbl(const EC_GROUP *group, EC_POINT *r, const EC_POINT *a, + BN_CTX *ctx); + +/** Computes the inverse of a EC_POINT + * \param group underlying EC_GROUP object + * \param a EC_POINT object to be inverted (it's used for the result as well) + * \param ctx BN_CTX object (optional) + * \return 1 on success and 0 if an error occurred + */ +int EC_POINT_invert(const EC_GROUP *group, EC_POINT *a, BN_CTX *ctx); + +/** Checks whether the point is the neutral element of the group + * \param group the underlying EC_GROUP object + * \param p EC_POINT object + * \return 1 if the point is the neutral element and 0 otherwise + */ +int EC_POINT_is_at_infinity(const EC_GROUP *group, const EC_POINT *p); + +/** Checks whether the point is on the curve + * \param group underlying EC_GROUP object + * \param point EC_POINT object to check + * \param ctx BN_CTX object (optional) + * \return 1 if the point is on the curve, 0 if not, or -1 on error + */ +int EC_POINT_is_on_curve(const EC_GROUP *group, const EC_POINT *point, + BN_CTX *ctx); + +/** Compares two EC_POINTs + * \param group underlying EC_GROUP object + * \param a first EC_POINT object + * \param b second EC_POINT object + * \param ctx BN_CTX object (optional) + * \return 1 if the points are not equal, 0 if they are, or -1 on error + */ +int EC_POINT_cmp(const EC_GROUP *group, const EC_POINT *a, const EC_POINT *b, + BN_CTX *ctx); + +# ifndef OPENSSL_NO_DEPRECATED_3_0 +OSSL_DEPRECATEDIN_3_0 int EC_POINT_make_affine(const EC_GROUP *group, + EC_POINT *point, BN_CTX *ctx); +OSSL_DEPRECATEDIN_3_0 int EC_POINTs_make_affine(const EC_GROUP *group, size_t num, + EC_POINT *points[], BN_CTX *ctx); + +/** Computes r = generator * n + sum_{i=0}^{num-1} p[i] * m[i] + * \param group underlying EC_GROUP object + * \param r EC_POINT object for the result + * \param n BIGNUM with the multiplier for the group generator (optional) + * \param num number further summands + * \param p array of size num of EC_POINT objects + * \param m array of size num of BIGNUM objects + * \param ctx BN_CTX object (optional) + * \return 1 on success and 0 if an error occurred + */ +OSSL_DEPRECATEDIN_3_0 int EC_POINTs_mul(const EC_GROUP *group, EC_POINT *r, + const BIGNUM *n, size_t num, + const EC_POINT *p[], const BIGNUM *m[], + BN_CTX *ctx); +# endif /* OPENSSL_NO_DEPRECATED_3_0 */ + +/** Computes r = generator * n + q * m + * \param group underlying EC_GROUP object + * \param r EC_POINT object for the result + * \param n BIGNUM with the multiplier for the group generator (optional) + * \param q EC_POINT object with the first factor of the second summand + * \param m BIGNUM with the second factor of the second summand + * \param ctx BN_CTX object (optional) + * \return 1 on success and 0 if an error occurred + */ +int EC_POINT_mul(const EC_GROUP *group, EC_POINT *r, const BIGNUM *n, + const EC_POINT *q, const BIGNUM *m, BN_CTX *ctx); + +# ifndef OPENSSL_NO_DEPRECATED_3_0 +/** Stores multiples of generator for faster point multiplication + * \param group EC_GROUP object + * \param ctx BN_CTX object (optional) + * \return 1 on success and 0 if an error occurred + */ +OSSL_DEPRECATEDIN_3_0 int EC_GROUP_precompute_mult(EC_GROUP *group, BN_CTX *ctx); + +/** Reports whether a precomputation has been done + * \param group EC_GROUP object + * \return 1 if a pre-computation has been done and 0 otherwise + */ +OSSL_DEPRECATEDIN_3_0 int EC_GROUP_have_precompute_mult(const EC_GROUP *group); +# endif /* OPENSSL_NO_DEPRECATED_3_0 */ + +/********************************************************************/ +/* ASN1 stuff */ +/********************************************************************/ + +DECLARE_ASN1_ITEM(ECPKPARAMETERS) +DECLARE_ASN1_ALLOC_FUNCTIONS(ECPKPARAMETERS) +DECLARE_ASN1_ITEM(ECPARAMETERS) +DECLARE_ASN1_ALLOC_FUNCTIONS(ECPARAMETERS) + +/* + * EC_GROUP_get_basis_type() returns the NID of the basis type used to + * represent the field elements + */ +int EC_GROUP_get_basis_type(const EC_GROUP *); +# ifndef OPENSSL_NO_EC2M +int EC_GROUP_get_trinomial_basis(const EC_GROUP *, unsigned int *k); +int EC_GROUP_get_pentanomial_basis(const EC_GROUP *, unsigned int *k1, + unsigned int *k2, unsigned int *k3); +# endif + +EC_GROUP *d2i_ECPKParameters(EC_GROUP **, const unsigned char **in, long len); +int i2d_ECPKParameters(const EC_GROUP *, unsigned char **out); + +# define d2i_ECPKParameters_bio(bp,x) \ + ASN1_d2i_bio_of(EC_GROUP, NULL, d2i_ECPKParameters, bp, x) +# define i2d_ECPKParameters_bio(bp,x) \ + ASN1_i2d_bio_of(EC_GROUP, i2d_ECPKParameters, bp, x) +# define d2i_ECPKParameters_fp(fp,x) \ + (EC_GROUP *)ASN1_d2i_fp(NULL, (d2i_of_void *)d2i_ECPKParameters, (fp), \ + (void **)(x)) +# define i2d_ECPKParameters_fp(fp,x) \ + ASN1_i2d_fp((i2d_of_void *)i2d_ECPKParameters, (fp), (void *)(x)) + +# ifndef OPENSSL_NO_DEPRECATED_3_0 +OSSL_DEPRECATEDIN_3_0 int ECPKParameters_print(BIO *bp, const EC_GROUP *x, + int off); +# ifndef OPENSSL_NO_STDIO +OSSL_DEPRECATEDIN_3_0 int ECPKParameters_print_fp(FILE *fp, const EC_GROUP *x, + int off); +# endif +# endif /* OPENSSL_NO_DEPRECATED_3_0 */ + +/********************************************************************/ +/* EC_KEY functions */ +/********************************************************************/ + +/* some values for the encoding_flag */ +# define EC_PKEY_NO_PARAMETERS 0x001 +# define EC_PKEY_NO_PUBKEY 0x002 + +/* some values for the flags field */ +# define EC_FLAG_SM2_RANGE 0x0004 +# define EC_FLAG_COFACTOR_ECDH 0x1000 +# define EC_FLAG_CHECK_NAMED_GROUP 0x2000 +# define EC_FLAG_CHECK_NAMED_GROUP_NIST 0x4000 +# define EC_FLAG_CHECK_NAMED_GROUP_MASK \ + (EC_FLAG_CHECK_NAMED_GROUP | EC_FLAG_CHECK_NAMED_GROUP_NIST) + +/* Deprecated flags - it was using 0x01..0x02 */ +# define EC_FLAG_NON_FIPS_ALLOW 0x0000 +# define EC_FLAG_FIPS_CHECKED 0x0000 + +# ifndef OPENSSL_NO_DEPRECATED_3_0 +/** + * Creates a new EC_KEY object. + * \param ctx The library context for to use for this EC_KEY. May be NULL in + * which case the default library context is used. + * \return EC_KEY object or NULL if an error occurred. + */ +OSSL_DEPRECATEDIN_3_0 EC_KEY *EC_KEY_new_ex(OSSL_LIB_CTX *ctx, const char *propq); + +/** + * Creates a new EC_KEY object. Same as calling EC_KEY_new_ex with a + * NULL library context + * \return EC_KEY object or NULL if an error occurred. + */ +OSSL_DEPRECATEDIN_3_0 EC_KEY *EC_KEY_new(void); + +OSSL_DEPRECATEDIN_3_0 int EC_KEY_get_flags(const EC_KEY *key); + +OSSL_DEPRECATEDIN_3_0 void EC_KEY_set_flags(EC_KEY *key, int flags); + +OSSL_DEPRECATEDIN_3_0 void EC_KEY_clear_flags(EC_KEY *key, int flags); + +OSSL_DEPRECATEDIN_3_0 int EC_KEY_decoded_from_explicit_params(const EC_KEY *key); + +/** + * Creates a new EC_KEY object using a named curve as underlying + * EC_GROUP object. + * \param ctx The library context for to use for this EC_KEY. May be NULL in + * which case the default library context is used. + * \param propq Any property query string + * \param nid NID of the named curve. + * \return EC_KEY object or NULL if an error occurred. + */ +OSSL_DEPRECATEDIN_3_0 EC_KEY *EC_KEY_new_by_curve_name_ex(OSSL_LIB_CTX *ctx, + const char *propq, + int nid); + +/** + * Creates a new EC_KEY object using a named curve as underlying + * EC_GROUP object. Same as calling EC_KEY_new_by_curve_name_ex with a NULL + * library context and property query string. + * \param nid NID of the named curve. + * \return EC_KEY object or NULL if an error occurred. + */ +OSSL_DEPRECATEDIN_3_0 EC_KEY *EC_KEY_new_by_curve_name(int nid); + +/** Frees a EC_KEY object. + * \param key EC_KEY object to be freed. + */ +OSSL_DEPRECATEDIN_3_0 void EC_KEY_free(EC_KEY *key); + +/** Copies a EC_KEY object. + * \param dst destination EC_KEY object + * \param src src EC_KEY object + * \return dst or NULL if an error occurred. + */ +OSSL_DEPRECATEDIN_3_0 EC_KEY *EC_KEY_copy(EC_KEY *dst, const EC_KEY *src); + +/** Creates a new EC_KEY object and copies the content from src to it. + * \param src the source EC_KEY object + * \return newly created EC_KEY object or NULL if an error occurred. + */ +OSSL_DEPRECATEDIN_3_0 EC_KEY *EC_KEY_dup(const EC_KEY *src); + +/** Increases the internal reference count of a EC_KEY object. + * \param key EC_KEY object + * \return 1 on success and 0 if an error occurred. + */ +OSSL_DEPRECATEDIN_3_0 int EC_KEY_up_ref(EC_KEY *key); + +/** Returns the ENGINE object of a EC_KEY object + * \param eckey EC_KEY object + * \return the ENGINE object (possibly NULL). + */ +OSSL_DEPRECATEDIN_3_0 ENGINE *EC_KEY_get0_engine(const EC_KEY *eckey); + +/** Returns the EC_GROUP object of a EC_KEY object + * \param key EC_KEY object + * \return the EC_GROUP object (possibly NULL). + */ +OSSL_DEPRECATEDIN_3_0 const EC_GROUP *EC_KEY_get0_group(const EC_KEY *key); + +/** Sets the EC_GROUP of a EC_KEY object. + * \param key EC_KEY object + * \param group EC_GROUP to use in the EC_KEY object (note: the EC_KEY + * object will use an own copy of the EC_GROUP). + * \return 1 on success and 0 if an error occurred. + */ +OSSL_DEPRECATEDIN_3_0 int EC_KEY_set_group(EC_KEY *key, const EC_GROUP *group); + +/** Returns the private key of a EC_KEY object. + * \param key EC_KEY object + * \return a BIGNUM with the private key (possibly NULL). + */ +OSSL_DEPRECATEDIN_3_0 const BIGNUM *EC_KEY_get0_private_key(const EC_KEY *key); + +/** Sets the private key of a EC_KEY object. + * \param key EC_KEY object + * \param prv BIGNUM with the private key (note: the EC_KEY object + * will use an own copy of the BIGNUM). + * \return 1 on success and 0 if an error occurred. + */ +OSSL_DEPRECATEDIN_3_0 int EC_KEY_set_private_key(EC_KEY *key, const BIGNUM *prv); + +/** Returns the public key of a EC_KEY object. + * \param key the EC_KEY object + * \return a EC_POINT object with the public key (possibly NULL) + */ +OSSL_DEPRECATEDIN_3_0 const EC_POINT *EC_KEY_get0_public_key(const EC_KEY *key); + +/** Sets the public key of a EC_KEY object. + * \param key EC_KEY object + * \param pub EC_POINT object with the public key (note: the EC_KEY object + * will use an own copy of the EC_POINT object). + * \return 1 on success and 0 if an error occurred. + */ +OSSL_DEPRECATEDIN_3_0 int EC_KEY_set_public_key(EC_KEY *key, const EC_POINT *pub); + +OSSL_DEPRECATEDIN_3_0 unsigned EC_KEY_get_enc_flags(const EC_KEY *key); +OSSL_DEPRECATEDIN_3_0 void EC_KEY_set_enc_flags(EC_KEY *eckey, unsigned int flags); +OSSL_DEPRECATEDIN_3_0 point_conversion_form_t EC_KEY_get_conv_form(const EC_KEY *key); +OSSL_DEPRECATEDIN_3_0 void EC_KEY_set_conv_form(EC_KEY *eckey, + point_conversion_form_t cform); +# endif /*OPENSSL_NO_DEPRECATED_3_0 */ + +# define EC_KEY_get_ex_new_index(l, p, newf, dupf, freef) \ + CRYPTO_get_ex_new_index(CRYPTO_EX_INDEX_EC_KEY, l, p, newf, dupf, freef) + +# ifndef OPENSSL_NO_DEPRECATED_3_0 +OSSL_DEPRECATEDIN_3_0 int EC_KEY_set_ex_data(EC_KEY *key, int idx, void *arg); +OSSL_DEPRECATEDIN_3_0 void *EC_KEY_get_ex_data(const EC_KEY *key, int idx); + +/* wrapper functions for the underlying EC_GROUP object */ +OSSL_DEPRECATEDIN_3_0 void EC_KEY_set_asn1_flag(EC_KEY *eckey, int asn1_flag); + +/** Creates a table of pre-computed multiples of the generator to + * accelerate further EC_KEY operations. + * \param key EC_KEY object + * \param ctx BN_CTX object (optional) + * \return 1 on success and 0 if an error occurred. + */ +OSSL_DEPRECATEDIN_3_0 int EC_KEY_precompute_mult(EC_KEY *key, BN_CTX *ctx); + +/** Creates a new ec private (and optional a new public) key. + * \param key EC_KEY object + * \return 1 on success and 0 if an error occurred. + */ +OSSL_DEPRECATEDIN_3_0 int EC_KEY_generate_key(EC_KEY *key); + +/** Verifies that a private and/or public key is valid. + * \param key the EC_KEY object + * \return 1 on success and 0 otherwise. + */ +OSSL_DEPRECATEDIN_3_0 int EC_KEY_check_key(const EC_KEY *key); + +/** Indicates if an EC_KEY can be used for signing. + * \param eckey the EC_KEY object + * \return 1 if can sign and 0 otherwise. + */ +OSSL_DEPRECATEDIN_3_0 int EC_KEY_can_sign(const EC_KEY *eckey); + +/** Sets a public key from affine coordinates performing + * necessary NIST PKV tests. + * \param key the EC_KEY object + * \param x public key x coordinate + * \param y public key y coordinate + * \return 1 on success and 0 otherwise. + */ +OSSL_DEPRECATEDIN_3_0 int EC_KEY_set_public_key_affine_coordinates(EC_KEY *key, + BIGNUM *x, + BIGNUM *y); + +/** Encodes an EC_KEY public key to an allocated octet string + * \param key key to encode + * \param form point conversion form + * \param pbuf returns pointer to allocated buffer + * \param ctx BN_CTX object (optional) + * \return the length of the encoded octet string or 0 if an error occurred + */ +OSSL_DEPRECATEDIN_3_0 size_t EC_KEY_key2buf(const EC_KEY *key, + point_conversion_form_t form, + unsigned char **pbuf, BN_CTX *ctx); + +/** Decodes a EC_KEY public key from a octet string + * \param key key to decode + * \param buf memory buffer with the encoded ec point + * \param len length of the encoded ec point + * \param ctx BN_CTX object (optional) + * \return 1 on success and 0 if an error occurred + */ + +OSSL_DEPRECATEDIN_3_0 int EC_KEY_oct2key(EC_KEY *key, const unsigned char *buf, + size_t len, BN_CTX *ctx); + +/** Decodes an EC_KEY private key from an octet string + * \param key key to decode + * \param buf memory buffer with the encoded private key + * \param len length of the encoded key + * \return 1 on success and 0 if an error occurred + */ + +OSSL_DEPRECATEDIN_3_0 int EC_KEY_oct2priv(EC_KEY *key, const unsigned char *buf, + size_t len); + +/** Encodes a EC_KEY private key to an octet string + * \param key key to encode + * \param buf memory buffer for the result. If NULL the function returns + * required buffer size. + * \param len length of the memory buffer + * \return the length of the encoded octet string or 0 if an error occurred + */ + +OSSL_DEPRECATEDIN_3_0 size_t EC_KEY_priv2oct(const EC_KEY *key, + unsigned char *buf, size_t len); + +/** Encodes an EC_KEY private key to an allocated octet string + * \param eckey key to encode + * \param pbuf returns pointer to allocated buffer + * \return the length of the encoded octet string or 0 if an error occurred + */ +OSSL_DEPRECATEDIN_3_0 size_t EC_KEY_priv2buf(const EC_KEY *eckey, + unsigned char **pbuf); + +/********************************************************************/ +/* de- and encoding functions for SEC1 ECPrivateKey */ +/********************************************************************/ + +/** Decodes a private key from a memory buffer. + * \param key a pointer to a EC_KEY object which should be used (or NULL) + * \param in pointer to memory with the DER encoded private key + * \param len length of the DER encoded private key + * \return the decoded private key or NULL if an error occurred. + */ +OSSL_DEPRECATEDIN_3_0 EC_KEY *d2i_ECPrivateKey(EC_KEY **key, + const unsigned char **in, + long len); + +/** Encodes a private key object and stores the result in a buffer. + * \param key the EC_KEY object to encode + * \param out the buffer for the result (if NULL the function returns number + * of bytes needed). + * \return 1 on success and 0 if an error occurred. + */ +OSSL_DEPRECATEDIN_3_0 int i2d_ECPrivateKey(const EC_KEY *key, + unsigned char **out); + +/********************************************************************/ +/* de- and encoding functions for EC parameters */ +/********************************************************************/ + +/** Decodes ec parameter from a memory buffer. + * \param key a pointer to a EC_KEY object which should be used (or NULL) + * \param in pointer to memory with the DER encoded ec parameters + * \param len length of the DER encoded ec parameters + * \return a EC_KEY object with the decoded parameters or NULL if an error + * occurred. + */ +OSSL_DEPRECATEDIN_3_0 EC_KEY *d2i_ECParameters(EC_KEY **key, + const unsigned char **in, + long len); + +/** Encodes ec parameter and stores the result in a buffer. + * \param key the EC_KEY object with ec parameters to encode + * \param out the buffer for the result (if NULL the function returns number + * of bytes needed). + * \return 1 on success and 0 if an error occurred. + */ +OSSL_DEPRECATEDIN_3_0 int i2d_ECParameters(const EC_KEY *key, + unsigned char **out); + +/********************************************************************/ +/* de- and encoding functions for EC public key */ +/* (octet string, not DER -- hence 'o2i' and 'i2o') */ +/********************************************************************/ + +/** Decodes an ec public key from a octet string. + * \param key a pointer to a EC_KEY object which should be used + * \param in memory buffer with the encoded public key + * \param len length of the encoded public key + * \return EC_KEY object with decoded public key or NULL if an error + * occurred. + */ +OSSL_DEPRECATEDIN_3_0 EC_KEY *o2i_ECPublicKey(EC_KEY **key, + const unsigned char **in, long len); + +/** Encodes an ec public key in an octet string. + * \param key the EC_KEY object with the public key + * \param out the buffer for the result (if NULL the function returns number + * of bytes needed). + * \return 1 on success and 0 if an error occurred + */ +OSSL_DEPRECATEDIN_3_0 int i2o_ECPublicKey(const EC_KEY *key, unsigned char **out); + +/** Prints out the ec parameters on human readable form. + * \param bp BIO object to which the information is printed + * \param key EC_KEY object + * \return 1 on success and 0 if an error occurred + */ +OSSL_DEPRECATEDIN_3_0 int ECParameters_print(BIO *bp, const EC_KEY *key); + +/** Prints out the contents of a EC_KEY object + * \param bp BIO object to which the information is printed + * \param key EC_KEY object + * \param off line offset + * \return 1 on success and 0 if an error occurred + */ +OSSL_DEPRECATEDIN_3_0 int EC_KEY_print(BIO *bp, const EC_KEY *key, int off); + +# ifndef OPENSSL_NO_STDIO +/** Prints out the ec parameters on human readable form. + * \param fp file descriptor to which the information is printed + * \param key EC_KEY object + * \return 1 on success and 0 if an error occurred + */ +OSSL_DEPRECATEDIN_3_0 int ECParameters_print_fp(FILE *fp, const EC_KEY *key); + +/** Prints out the contents of a EC_KEY object + * \param fp file descriptor to which the information is printed + * \param key EC_KEY object + * \param off line offset + * \return 1 on success and 0 if an error occurred + */ +OSSL_DEPRECATEDIN_3_0 int EC_KEY_print_fp(FILE *fp, const EC_KEY *key, int off); +# endif /* OPENSSL_NO_STDIO */ + +OSSL_DEPRECATEDIN_3_0 const EC_KEY_METHOD *EC_KEY_OpenSSL(void); +OSSL_DEPRECATEDIN_3_0 const EC_KEY_METHOD *EC_KEY_get_default_method(void); +OSSL_DEPRECATEDIN_3_0 void EC_KEY_set_default_method(const EC_KEY_METHOD *meth); +OSSL_DEPRECATEDIN_3_0 const EC_KEY_METHOD *EC_KEY_get_method(const EC_KEY *key); +OSSL_DEPRECATEDIN_3_0 int EC_KEY_set_method(EC_KEY *key, const EC_KEY_METHOD *meth); +OSSL_DEPRECATEDIN_3_0 EC_KEY *EC_KEY_new_method(ENGINE *engine); + +/** The old name for ecdh_KDF_X9_63 + * The ECDH KDF specification has been mistakenly attributed to ANSI X9.62, + * it is actually specified in ANSI X9.63. + * This identifier is retained for backwards compatibility + */ +OSSL_DEPRECATEDIN_3_0 int ECDH_KDF_X9_62(unsigned char *out, size_t outlen, + const unsigned char *Z, size_t Zlen, + const unsigned char *sinfo, + size_t sinfolen, const EVP_MD *md); + +OSSL_DEPRECATEDIN_3_0 int ECDH_compute_key(void *out, size_t outlen, + const EC_POINT *pub_key, + const EC_KEY *ecdh, + void *(*KDF)(const void *in, + size_t inlen, void *out, + size_t *outlen)); +# endif /* OPENSSL_NO_DEPRECATED_3_0 */ + +typedef struct ECDSA_SIG_st ECDSA_SIG; + +/** Allocates and initialize a ECDSA_SIG structure + * \return pointer to a ECDSA_SIG structure or NULL if an error occurred + */ +ECDSA_SIG *ECDSA_SIG_new(void); + +/** frees a ECDSA_SIG structure + * \param sig pointer to the ECDSA_SIG structure + */ +void ECDSA_SIG_free(ECDSA_SIG *sig); + +/** i2d_ECDSA_SIG encodes content of ECDSA_SIG (note: this function modifies *pp + * (*pp += length of the DER encoded signature)). + * \param sig pointer to the ECDSA_SIG object + * \param pp pointer to a unsigned char pointer for the output or NULL + * \return the length of the DER encoded ECDSA_SIG object or a negative value + * on error + */ +DECLARE_ASN1_ENCODE_FUNCTIONS_only(ECDSA_SIG, ECDSA_SIG) + +/** d2i_ECDSA_SIG decodes an ECDSA signature (note: this function modifies *pp + * (*pp += len)). + * \param sig pointer to ECDSA_SIG pointer (may be NULL) + * \param pp memory buffer with the DER encoded signature + * \param len length of the buffer + * \return pointer to the decoded ECDSA_SIG structure (or NULL) + */ + +/** Accessor for r and s fields of ECDSA_SIG + * \param sig pointer to ECDSA_SIG structure + * \param pr pointer to BIGNUM pointer for r (may be NULL) + * \param ps pointer to BIGNUM pointer for s (may be NULL) + */ +void ECDSA_SIG_get0(const ECDSA_SIG *sig, const BIGNUM **pr, const BIGNUM **ps); + +/** Accessor for r field of ECDSA_SIG + * \param sig pointer to ECDSA_SIG structure + */ +const BIGNUM *ECDSA_SIG_get0_r(const ECDSA_SIG *sig); + +/** Accessor for s field of ECDSA_SIG + * \param sig pointer to ECDSA_SIG structure + */ +const BIGNUM *ECDSA_SIG_get0_s(const ECDSA_SIG *sig); + +/** Setter for r and s fields of ECDSA_SIG + * \param sig pointer to ECDSA_SIG structure + * \param r pointer to BIGNUM for r + * \param s pointer to BIGNUM for s + */ +int ECDSA_SIG_set0(ECDSA_SIG *sig, BIGNUM *r, BIGNUM *s); + +# ifndef OPENSSL_NO_DEPRECATED_3_0 +/** Computes the ECDSA signature of the given hash value using + * the supplied private key and returns the created signature. + * \param dgst pointer to the hash value + * \param dgst_len length of the hash value + * \param eckey EC_KEY object containing a private EC key + * \return pointer to a ECDSA_SIG structure or NULL if an error occurred + */ +OSSL_DEPRECATEDIN_3_0 ECDSA_SIG *ECDSA_do_sign(const unsigned char *dgst, + int dgst_len, EC_KEY *eckey); + +/** Computes ECDSA signature of a given hash value using the supplied + * private key (note: sig must point to ECDSA_size(eckey) bytes of memory). + * \param dgst pointer to the hash value to sign + * \param dgstlen length of the hash value + * \param kinv BIGNUM with a pre-computed inverse k (optional) + * \param rp BIGNUM with a pre-computed rp value (optional), + * see ECDSA_sign_setup + * \param eckey EC_KEY object containing a private EC key + * \return pointer to a ECDSA_SIG structure or NULL if an error occurred + */ +OSSL_DEPRECATEDIN_3_0 ECDSA_SIG *ECDSA_do_sign_ex(const unsigned char *dgst, + int dgstlen, const BIGNUM *kinv, + const BIGNUM *rp, EC_KEY *eckey); + +/** Verifies that the supplied signature is a valid ECDSA + * signature of the supplied hash value using the supplied public key. + * \param dgst pointer to the hash value + * \param dgst_len length of the hash value + * \param sig ECDSA_SIG structure + * \param eckey EC_KEY object containing a public EC key + * \return 1 if the signature is valid, 0 if the signature is invalid + * and -1 on error + */ +OSSL_DEPRECATEDIN_3_0 int ECDSA_do_verify(const unsigned char *dgst, int dgst_len, + const ECDSA_SIG *sig, EC_KEY *eckey); + +/** Precompute parts of the signing operation + * \param eckey EC_KEY object containing a private EC key + * \param ctx BN_CTX object (optional) + * \param kinv BIGNUM pointer for the inverse of k + * \param rp BIGNUM pointer for x coordinate of k * generator + * \return 1 on success and 0 otherwise + */ +OSSL_DEPRECATEDIN_3_0 int ECDSA_sign_setup(EC_KEY *eckey, BN_CTX *ctx, + BIGNUM **kinv, BIGNUM **rp); + +/** Computes ECDSA signature of a given hash value using the supplied + * private key (note: sig must point to ECDSA_size(eckey) bytes of memory). + * \param type this parameter is ignored + * \param dgst pointer to the hash value to sign + * \param dgstlen length of the hash value + * \param sig memory for the DER encoded created signature + * \param siglen pointer to the length of the returned signature + * \param eckey EC_KEY object containing a private EC key + * \return 1 on success and 0 otherwise + */ +OSSL_DEPRECATEDIN_3_0 int ECDSA_sign(int type, const unsigned char *dgst, + int dgstlen, unsigned char *sig, + unsigned int *siglen, EC_KEY *eckey); + +/** Computes ECDSA signature of a given hash value using the supplied + * private key (note: sig must point to ECDSA_size(eckey) bytes of memory). + * \param type this parameter is ignored + * \param dgst pointer to the hash value to sign + * \param dgstlen length of the hash value + * \param sig buffer to hold the DER encoded signature + * \param siglen pointer to the length of the returned signature + * \param kinv BIGNUM with a pre-computed inverse k (optional) + * \param rp BIGNUM with a pre-computed rp value (optional), + * see ECDSA_sign_setup + * \param eckey EC_KEY object containing a private EC key + * \return 1 on success and 0 otherwise + */ +OSSL_DEPRECATEDIN_3_0 int ECDSA_sign_ex(int type, const unsigned char *dgst, + int dgstlen, unsigned char *sig, + unsigned int *siglen, const BIGNUM *kinv, + const BIGNUM *rp, EC_KEY *eckey); + +/** Verifies that the given signature is valid ECDSA signature + * of the supplied hash value using the specified public key. + * \param type this parameter is ignored + * \param dgst pointer to the hash value + * \param dgstlen length of the hash value + * \param sig pointer to the DER encoded signature + * \param siglen length of the DER encoded signature + * \param eckey EC_KEY object containing a public EC key + * \return 1 if the signature is valid, 0 if the signature is invalid + * and -1 on error + */ +OSSL_DEPRECATEDIN_3_0 int ECDSA_verify(int type, const unsigned char *dgst, + int dgstlen, const unsigned char *sig, + int siglen, EC_KEY *eckey); + +/** Returns the maximum length of the DER encoded signature + * \param eckey EC_KEY object + * \return numbers of bytes required for the DER encoded signature + */ +OSSL_DEPRECATEDIN_3_0 int ECDSA_size(const EC_KEY *eckey); + +/********************************************************************/ +/* EC_KEY_METHOD constructors, destructors, writers and accessors */ +/********************************************************************/ + +OSSL_DEPRECATEDIN_3_0 EC_KEY_METHOD *EC_KEY_METHOD_new(const EC_KEY_METHOD *meth); +OSSL_DEPRECATEDIN_3_0 void EC_KEY_METHOD_free(EC_KEY_METHOD *meth); +OSSL_DEPRECATEDIN_3_0 void EC_KEY_METHOD_set_init + (EC_KEY_METHOD *meth, + int (*init)(EC_KEY *key), + void (*finish)(EC_KEY *key), + int (*copy)(EC_KEY *dest, const EC_KEY *src), + int (*set_group)(EC_KEY *key, const EC_GROUP *grp), + int (*set_private)(EC_KEY *key, const BIGNUM *priv_key), + int (*set_public)(EC_KEY *key, const EC_POINT *pub_key)); + +OSSL_DEPRECATEDIN_3_0 void EC_KEY_METHOD_set_keygen(EC_KEY_METHOD *meth, + int (*keygen)(EC_KEY *key)); + +OSSL_DEPRECATEDIN_3_0 void EC_KEY_METHOD_set_compute_key + (EC_KEY_METHOD *meth, + int (*ckey)(unsigned char **psec, size_t *pseclen, + const EC_POINT *pub_key, const EC_KEY *ecdh)); + +OSSL_DEPRECATEDIN_3_0 void EC_KEY_METHOD_set_sign + (EC_KEY_METHOD *meth, + int (*sign)(int type, const unsigned char *dgst, + int dlen, unsigned char *sig, + unsigned int *siglen, + const BIGNUM *kinv, const BIGNUM *r, + EC_KEY *eckey), + int (*sign_setup)(EC_KEY *eckey, BN_CTX *ctx_in, + BIGNUM **kinvp, BIGNUM **rp), + ECDSA_SIG *(*sign_sig)(const unsigned char *dgst, + int dgst_len, + const BIGNUM *in_kinv, + const BIGNUM *in_r, + EC_KEY *eckey)); + +OSSL_DEPRECATEDIN_3_0 void EC_KEY_METHOD_set_verify + (EC_KEY_METHOD *meth, + int (*verify)(int type, const unsigned + char *dgst, int dgst_len, + const unsigned char *sigbuf, + int sig_len, EC_KEY *eckey), + int (*verify_sig)(const unsigned char *dgst, + int dgst_len, const ECDSA_SIG *sig, + EC_KEY *eckey)); + +OSSL_DEPRECATEDIN_3_0 void EC_KEY_METHOD_get_init + (const EC_KEY_METHOD *meth, + int (**pinit)(EC_KEY *key), + void (**pfinish)(EC_KEY *key), + int (**pcopy)(EC_KEY *dest, const EC_KEY *src), + int (**pset_group)(EC_KEY *key, const EC_GROUP *grp), + int (**pset_private)(EC_KEY *key, const BIGNUM *priv_key), + int (**pset_public)(EC_KEY *key, const EC_POINT *pub_key)); + +OSSL_DEPRECATEDIN_3_0 void EC_KEY_METHOD_get_keygen + (const EC_KEY_METHOD *meth, int (**pkeygen)(EC_KEY *key)); + +OSSL_DEPRECATEDIN_3_0 void EC_KEY_METHOD_get_compute_key + (const EC_KEY_METHOD *meth, + int (**pck)(unsigned char **psec, + size_t *pseclen, + const EC_POINT *pub_key, + const EC_KEY *ecdh)); + +OSSL_DEPRECATEDIN_3_0 void EC_KEY_METHOD_get_sign + (const EC_KEY_METHOD *meth, + int (**psign)(int type, const unsigned char *dgst, + int dlen, unsigned char *sig, + unsigned int *siglen, + const BIGNUM *kinv, const BIGNUM *r, + EC_KEY *eckey), + int (**psign_setup)(EC_KEY *eckey, BN_CTX *ctx_in, + BIGNUM **kinvp, BIGNUM **rp), + ECDSA_SIG *(**psign_sig)(const unsigned char *dgst, + int dgst_len, + const BIGNUM *in_kinv, + const BIGNUM *in_r, + EC_KEY *eckey)); + +OSSL_DEPRECATEDIN_3_0 void EC_KEY_METHOD_get_verify + (const EC_KEY_METHOD *meth, + int (**pverify)(int type, const unsigned + char *dgst, int dgst_len, + const unsigned char *sigbuf, + int sig_len, EC_KEY *eckey), + int (**pverify_sig)(const unsigned char *dgst, + int dgst_len, + const ECDSA_SIG *sig, + EC_KEY *eckey)); +# endif /* OPENSSL_NO_DEPRECATED_3_0 */ + +# define EVP_EC_gen(curve) \ + EVP_PKEY_Q_keygen(NULL, NULL, "EC", (char *)(strstr(curve, ""))) + /* strstr is used to enable type checking for the variadic string arg */ +# define ECParameters_dup(x) ASN1_dup_of(EC_KEY, i2d_ECParameters, \ + d2i_ECParameters, x) + +# ifndef __cplusplus +# if defined(__SUNPRO_C) +# if __SUNPRO_C >= 0x520 +# pragma error_messages (default,E_ARRAY_OF_INCOMPLETE_NONAME,E_ARRAY_OF_INCOMPLETE) +# endif +# endif +# endif + +# endif +# ifdef __cplusplus +} +# endif +#endif diff --git a/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/encoder.h b/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/encoder.h new file mode 100644 index 0000000000000000000000000000000000000000..c37a6f16f23cc47f92a176b54ed7382780a41f9e --- /dev/null +++ b/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/encoder.h @@ -0,0 +1,124 @@ +/* + * Copyright 2019-2021 The OpenSSL Project Authors. All Rights Reserved. + * + * Licensed under the Apache License 2.0 (the "License"). You may not use + * this file except in compliance with the License. You can obtain a copy + * in the file LICENSE in the source distribution or at + * https://www.openssl.org/source/license.html + */ + +#ifndef OPENSSL_ENCODER_H +# define OPENSSL_ENCODER_H +# pragma once + +# include + +# ifndef OPENSSL_NO_STDIO +# include +# endif +# include +# include +# include +# include +# include + +# ifdef __cplusplus +extern "C" { +# endif + +OSSL_ENCODER *OSSL_ENCODER_fetch(OSSL_LIB_CTX *libctx, const char *name, + const char *properties); +int OSSL_ENCODER_up_ref(OSSL_ENCODER *encoder); +void OSSL_ENCODER_free(OSSL_ENCODER *encoder); + +const OSSL_PROVIDER *OSSL_ENCODER_get0_provider(const OSSL_ENCODER *encoder); +const char *OSSL_ENCODER_get0_properties(const OSSL_ENCODER *encoder); +const char *OSSL_ENCODER_get0_name(const OSSL_ENCODER *kdf); +const char *OSSL_ENCODER_get0_description(const OSSL_ENCODER *kdf); +int OSSL_ENCODER_is_a(const OSSL_ENCODER *encoder, const char *name); + +void OSSL_ENCODER_do_all_provided(OSSL_LIB_CTX *libctx, + void (*fn)(OSSL_ENCODER *encoder, void *arg), + void *arg); +int OSSL_ENCODER_names_do_all(const OSSL_ENCODER *encoder, + void (*fn)(const char *name, void *data), + void *data); +const OSSL_PARAM *OSSL_ENCODER_gettable_params(OSSL_ENCODER *encoder); +int OSSL_ENCODER_get_params(OSSL_ENCODER *encoder, OSSL_PARAM params[]); + +const OSSL_PARAM *OSSL_ENCODER_settable_ctx_params(OSSL_ENCODER *encoder); +OSSL_ENCODER_CTX *OSSL_ENCODER_CTX_new(void); +int OSSL_ENCODER_CTX_set_params(OSSL_ENCODER_CTX *ctx, + const OSSL_PARAM params[]); +void OSSL_ENCODER_CTX_free(OSSL_ENCODER_CTX *ctx); + +/* Utilities that help set specific parameters */ +int OSSL_ENCODER_CTX_set_passphrase(OSSL_ENCODER_CTX *ctx, + const unsigned char *kstr, size_t klen); +int OSSL_ENCODER_CTX_set_pem_password_cb(OSSL_ENCODER_CTX *ctx, + pem_password_cb *cb, void *cbarg); +int OSSL_ENCODER_CTX_set_passphrase_cb(OSSL_ENCODER_CTX *ctx, + OSSL_PASSPHRASE_CALLBACK *cb, + void *cbarg); +int OSSL_ENCODER_CTX_set_passphrase_ui(OSSL_ENCODER_CTX *ctx, + const UI_METHOD *ui_method, + void *ui_data); +int OSSL_ENCODER_CTX_set_cipher(OSSL_ENCODER_CTX *ctx, + const char *cipher_name, + const char *propquery); +int OSSL_ENCODER_CTX_set_selection(OSSL_ENCODER_CTX *ctx, int selection); +int OSSL_ENCODER_CTX_set_output_type(OSSL_ENCODER_CTX *ctx, + const char *output_type); +int OSSL_ENCODER_CTX_set_output_structure(OSSL_ENCODER_CTX *ctx, + const char *output_structure); + +/* Utilities to add encoders */ +int OSSL_ENCODER_CTX_add_encoder(OSSL_ENCODER_CTX *ctx, OSSL_ENCODER *encoder); +int OSSL_ENCODER_CTX_add_extra(OSSL_ENCODER_CTX *ctx, + OSSL_LIB_CTX *libctx, const char *propq); +int OSSL_ENCODER_CTX_get_num_encoders(OSSL_ENCODER_CTX *ctx); + +typedef struct ossl_encoder_instance_st OSSL_ENCODER_INSTANCE; +OSSL_ENCODER * +OSSL_ENCODER_INSTANCE_get_encoder(OSSL_ENCODER_INSTANCE *encoder_inst); +void * +OSSL_ENCODER_INSTANCE_get_encoder_ctx(OSSL_ENCODER_INSTANCE *encoder_inst); +const char * +OSSL_ENCODER_INSTANCE_get_output_type(OSSL_ENCODER_INSTANCE *encoder_inst); +const char * +OSSL_ENCODER_INSTANCE_get_output_structure(OSSL_ENCODER_INSTANCE *encoder_inst); + +typedef const void *OSSL_ENCODER_CONSTRUCT(OSSL_ENCODER_INSTANCE *encoder_inst, + void *construct_data); +typedef void OSSL_ENCODER_CLEANUP(void *construct_data); + +int OSSL_ENCODER_CTX_set_construct(OSSL_ENCODER_CTX *ctx, + OSSL_ENCODER_CONSTRUCT *construct); +int OSSL_ENCODER_CTX_set_construct_data(OSSL_ENCODER_CTX *ctx, + void *construct_data); +int OSSL_ENCODER_CTX_set_cleanup(OSSL_ENCODER_CTX *ctx, + OSSL_ENCODER_CLEANUP *cleanup); + +/* Utilities to output the object to encode */ +int OSSL_ENCODER_to_bio(OSSL_ENCODER_CTX *ctx, BIO *out); +#ifndef OPENSSL_NO_STDIO +int OSSL_ENCODER_to_fp(OSSL_ENCODER_CTX *ctx, FILE *fp); +#endif +int OSSL_ENCODER_to_data(OSSL_ENCODER_CTX *ctx, unsigned char **pdata, + size_t *pdata_len); + +/* + * Create the OSSL_ENCODER_CTX with an associated type. This will perform + * an implicit OSSL_ENCODER_fetch(), suitable for the object of that type. + * This is more useful than calling OSSL_ENCODER_CTX_new(). + */ +OSSL_ENCODER_CTX *OSSL_ENCODER_CTX_new_for_pkey(const EVP_PKEY *pkey, + int selection, + const char *output_type, + const char *output_struct, + const char *propquery); + +# ifdef __cplusplus +} +# endif +#endif diff --git a/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/engine.h b/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/engine.h new file mode 100644 index 0000000000000000000000000000000000000000..5b4b504be7db3672a699142f2e089e33ae8a1abb --- /dev/null +++ b/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/engine.h @@ -0,0 +1,833 @@ +/* + * Copyright 2000-2022 The OpenSSL Project Authors. All Rights Reserved. + * Copyright (c) 2002, Oracle and/or its affiliates. All rights reserved + * + * Licensed under the Apache License 2.0 (the "License"). You may not use + * this file except in compliance with the License. You can obtain a copy + * in the file LICENSE in the source distribution or at + * https://www.openssl.org/source/license.html + */ + +#ifndef OPENSSL_ENGINE_H +# define OPENSSL_ENGINE_H +# pragma once + +# include +# ifndef OPENSSL_NO_DEPRECATED_3_0 +# define HEADER_ENGINE_H +# endif + +# include + +# ifndef OPENSSL_NO_ENGINE +# ifndef OPENSSL_NO_DEPRECATED_1_1_0 +# include +# include +# include +# include +# include +# include +# include +# include +# endif +# include +# include +# include +# include +# ifdef __cplusplus +extern "C" { +# endif + +/* + * These flags are used to control combinations of algorithm (methods) by + * bitwise "OR"ing. + */ +# define ENGINE_METHOD_RSA (unsigned int)0x0001 +# define ENGINE_METHOD_DSA (unsigned int)0x0002 +# define ENGINE_METHOD_DH (unsigned int)0x0004 +# define ENGINE_METHOD_RAND (unsigned int)0x0008 +# define ENGINE_METHOD_CIPHERS (unsigned int)0x0040 +# define ENGINE_METHOD_DIGESTS (unsigned int)0x0080 +# define ENGINE_METHOD_PKEY_METHS (unsigned int)0x0200 +# define ENGINE_METHOD_PKEY_ASN1_METHS (unsigned int)0x0400 +# define ENGINE_METHOD_EC (unsigned int)0x0800 +/* Obvious all-or-nothing cases. */ +# define ENGINE_METHOD_ALL (unsigned int)0xFFFF +# define ENGINE_METHOD_NONE (unsigned int)0x0000 + +/* + * This(ese) flag(s) controls behaviour of the ENGINE_TABLE mechanism used + * internally to control registration of ENGINE implementations, and can be + * set by ENGINE_set_table_flags(). The "NOINIT" flag prevents attempts to + * initialise registered ENGINEs if they are not already initialised. + */ +# define ENGINE_TABLE_FLAG_NOINIT (unsigned int)0x0001 + +/* ENGINE flags that can be set by ENGINE_set_flags(). */ +/* Not used */ +/* #define ENGINE_FLAGS_MALLOCED 0x0001 */ + +/* + * This flag is for ENGINEs that wish to handle the various 'CMD'-related + * control commands on their own. Without this flag, ENGINE_ctrl() handles + * these control commands on behalf of the ENGINE using their "cmd_defns" + * data. + */ +# define ENGINE_FLAGS_MANUAL_CMD_CTRL (int)0x0002 + +/* + * This flag is for ENGINEs who return new duplicate structures when found + * via "ENGINE_by_id()". When an ENGINE must store state (eg. if + * ENGINE_ctrl() commands are called in sequence as part of some stateful + * process like key-generation setup and execution), it can set this flag - + * then each attempt to obtain the ENGINE will result in it being copied into + * a new structure. Normally, ENGINEs don't declare this flag so + * ENGINE_by_id() just increments the existing ENGINE's structural reference + * count. + */ +# define ENGINE_FLAGS_BY_ID_COPY (int)0x0004 + +/* + * This flag is for an ENGINE that does not want its methods registered as + * part of ENGINE_register_all_complete() for example if the methods are not + * usable as default methods. + */ + +# define ENGINE_FLAGS_NO_REGISTER_ALL (int)0x0008 + +/* + * ENGINEs can support their own command types, and these flags are used in + * ENGINE_CTRL_GET_CMD_FLAGS to indicate to the caller what kind of input + * each command expects. Currently only numeric and string input is + * supported. If a control command supports none of the _NUMERIC, _STRING, or + * _NO_INPUT options, then it is regarded as an "internal" control command - + * and not for use in config setting situations. As such, they're not + * available to the ENGINE_ctrl_cmd_string() function, only raw ENGINE_ctrl() + * access. Changes to this list of 'command types' should be reflected + * carefully in ENGINE_cmd_is_executable() and ENGINE_ctrl_cmd_string(). + */ + +/* accepts a 'long' input value (3rd parameter to ENGINE_ctrl) */ +# define ENGINE_CMD_FLAG_NUMERIC (unsigned int)0x0001 +/* + * accepts string input (cast from 'void*' to 'const char *', 4th parameter + * to ENGINE_ctrl) + */ +# define ENGINE_CMD_FLAG_STRING (unsigned int)0x0002 +/* + * Indicates that the control command takes *no* input. Ie. the control + * command is unparameterised. + */ +# define ENGINE_CMD_FLAG_NO_INPUT (unsigned int)0x0004 +/* + * Indicates that the control command is internal. This control command won't + * be shown in any output, and is only usable through the ENGINE_ctrl_cmd() + * function. + */ +# define ENGINE_CMD_FLAG_INTERNAL (unsigned int)0x0008 + +/* + * NB: These 3 control commands are deprecated and should not be used. + * ENGINEs relying on these commands should compile conditional support for + * compatibility (eg. if these symbols are defined) but should also migrate + * the same functionality to their own ENGINE-specific control functions that + * can be "discovered" by calling applications. The fact these control + * commands wouldn't be "executable" (ie. usable by text-based config) + * doesn't change the fact that application code can find and use them + * without requiring per-ENGINE hacking. + */ + +/* + * These flags are used to tell the ctrl function what should be done. All + * command numbers are shared between all engines, even if some don't make + * sense to some engines. In such a case, they do nothing but return the + * error ENGINE_R_CTRL_COMMAND_NOT_IMPLEMENTED. + */ +# define ENGINE_CTRL_SET_LOGSTREAM 1 +# define ENGINE_CTRL_SET_PASSWORD_CALLBACK 2 +# define ENGINE_CTRL_HUP 3/* Close and reinitialise + * any handles/connections + * etc. */ +# define ENGINE_CTRL_SET_USER_INTERFACE 4/* Alternative to callback */ +# define ENGINE_CTRL_SET_CALLBACK_DATA 5/* User-specific data, used + * when calling the password + * callback and the user + * interface */ +# define ENGINE_CTRL_LOAD_CONFIGURATION 6/* Load a configuration, + * given a string that + * represents a file name + * or so */ +# define ENGINE_CTRL_LOAD_SECTION 7/* Load data from a given + * section in the already + * loaded configuration */ + +/* + * These control commands allow an application to deal with an arbitrary + * engine in a dynamic way. Warn: Negative return values indicate errors FOR + * THESE COMMANDS because zero is used to indicate 'end-of-list'. Other + * commands, including ENGINE-specific command types, return zero for an + * error. An ENGINE can choose to implement these ctrl functions, and can + * internally manage things however it chooses - it does so by setting the + * ENGINE_FLAGS_MANUAL_CMD_CTRL flag (using ENGINE_set_flags()). Otherwise + * the ENGINE_ctrl() code handles this on the ENGINE's behalf using the + * cmd_defns data (set using ENGINE_set_cmd_defns()). This means an ENGINE's + * ctrl() handler need only implement its own commands - the above "meta" + * commands will be taken care of. + */ + +/* + * Returns non-zero if the supplied ENGINE has a ctrl() handler. If "not", + * then all the remaining control commands will return failure, so it is + * worth checking this first if the caller is trying to "discover" the + * engine's capabilities and doesn't want errors generated unnecessarily. + */ +# define ENGINE_CTRL_HAS_CTRL_FUNCTION 10 +/* + * Returns a positive command number for the first command supported by the + * engine. Returns zero if no ctrl commands are supported. + */ +# define ENGINE_CTRL_GET_FIRST_CMD_TYPE 11 +/* + * The 'long' argument specifies a command implemented by the engine, and the + * return value is the next command supported, or zero if there are no more. + */ +# define ENGINE_CTRL_GET_NEXT_CMD_TYPE 12 +/* + * The 'void*' argument is a command name (cast from 'const char *'), and the + * return value is the command that corresponds to it. + */ +# define ENGINE_CTRL_GET_CMD_FROM_NAME 13 +/* + * The next two allow a command to be converted into its corresponding string + * form. In each case, the 'long' argument supplies the command. In the + * NAME_LEN case, the return value is the length of the command name (not + * counting a trailing EOL). In the NAME case, the 'void*' argument must be a + * string buffer large enough, and it will be populated with the name of the + * command (WITH a trailing EOL). + */ +# define ENGINE_CTRL_GET_NAME_LEN_FROM_CMD 14 +# define ENGINE_CTRL_GET_NAME_FROM_CMD 15 +/* The next two are similar but give a "short description" of a command. */ +# define ENGINE_CTRL_GET_DESC_LEN_FROM_CMD 16 +# define ENGINE_CTRL_GET_DESC_FROM_CMD 17 +/* + * With this command, the return value is the OR'd combination of + * ENGINE_CMD_FLAG_*** values that indicate what kind of input a given + * engine-specific ctrl command expects. + */ +# define ENGINE_CTRL_GET_CMD_FLAGS 18 + +/* + * ENGINE implementations should start the numbering of their own control + * commands from this value. (ie. ENGINE_CMD_BASE, ENGINE_CMD_BASE + 1, etc). + */ +# define ENGINE_CMD_BASE 200 + +/* + * NB: These 2 nCipher "chil" control commands are deprecated, and their + * functionality is now available through ENGINE-specific control commands + * (exposed through the above-mentioned 'CMD'-handling). Code using these 2 + * commands should be migrated to the more general command handling before + * these are removed. + */ + +/* Flags specific to the nCipher "chil" engine */ +# define ENGINE_CTRL_CHIL_SET_FORKCHECK 100 + /* + * Depending on the value of the (long)i argument, this sets or + * unsets the SimpleForkCheck flag in the CHIL API to enable or + * disable checking and workarounds for applications that fork(). + */ +# define ENGINE_CTRL_CHIL_NO_LOCKING 101 + /* + * This prevents the initialisation function from providing mutex + * callbacks to the nCipher library. + */ + +/* + * If an ENGINE supports its own specific control commands and wishes the + * framework to handle the above 'ENGINE_CMD_***'-manipulation commands on + * its behalf, it should supply a null-terminated array of ENGINE_CMD_DEFN + * entries to ENGINE_set_cmd_defns(). It should also implement a ctrl() + * handler that supports the stated commands (ie. the "cmd_num" entries as + * described by the array). NB: The array must be ordered in increasing order + * of cmd_num. "null-terminated" means that the last ENGINE_CMD_DEFN element + * has cmd_num set to zero and/or cmd_name set to NULL. + */ +typedef struct ENGINE_CMD_DEFN_st { + unsigned int cmd_num; /* The command number */ + const char *cmd_name; /* The command name itself */ + const char *cmd_desc; /* A short description of the command */ + unsigned int cmd_flags; /* The input the command expects */ +} ENGINE_CMD_DEFN; + +/* Generic function pointer */ +typedef int (*ENGINE_GEN_FUNC_PTR) (void); +/* Generic function pointer taking no arguments */ +typedef int (*ENGINE_GEN_INT_FUNC_PTR) (ENGINE *); +/* Specific control function pointer */ +typedef int (*ENGINE_CTRL_FUNC_PTR) (ENGINE *, int, long, void *, + void (*f) (void)); +/* Generic load_key function pointer */ +typedef EVP_PKEY *(*ENGINE_LOAD_KEY_PTR)(ENGINE *, const char *, + UI_METHOD *ui_method, + void *callback_data); +typedef int (*ENGINE_SSL_CLIENT_CERT_PTR) (ENGINE *, SSL *ssl, + STACK_OF(X509_NAME) *ca_dn, + X509 **pcert, EVP_PKEY **pkey, + STACK_OF(X509) **pother, + UI_METHOD *ui_method, + void *callback_data); +/*- + * These callback types are for an ENGINE's handler for cipher and digest logic. + * These handlers have these prototypes; + * int foo(ENGINE *e, const EVP_CIPHER **cipher, const int **nids, int nid); + * int foo(ENGINE *e, const EVP_MD **digest, const int **nids, int nid); + * Looking at how to implement these handlers in the case of cipher support, if + * the framework wants the EVP_CIPHER for 'nid', it will call; + * foo(e, &p_evp_cipher, NULL, nid); (return zero for failure) + * If the framework wants a list of supported 'nid's, it will call; + * foo(e, NULL, &p_nids, 0); (returns number of 'nids' or -1 for error) + */ +/* + * Returns to a pointer to the array of supported cipher 'nid's. If the + * second parameter is non-NULL it is set to the size of the returned array. + */ +typedef int (*ENGINE_CIPHERS_PTR) (ENGINE *, const EVP_CIPHER **, + const int **, int); +typedef int (*ENGINE_DIGESTS_PTR) (ENGINE *, const EVP_MD **, const int **, + int); +typedef int (*ENGINE_PKEY_METHS_PTR) (ENGINE *, EVP_PKEY_METHOD **, + const int **, int); +typedef int (*ENGINE_PKEY_ASN1_METHS_PTR) (ENGINE *, EVP_PKEY_ASN1_METHOD **, + const int **, int); +/* + * STRUCTURE functions ... all of these functions deal with pointers to + * ENGINE structures where the pointers have a "structural reference". This + * means that their reference is to allowed access to the structure but it + * does not imply that the structure is functional. To simply increment or + * decrement the structural reference count, use ENGINE_by_id and + * ENGINE_free. NB: This is not required when iterating using ENGINE_get_next + * as it will automatically decrement the structural reference count of the + * "current" ENGINE and increment the structural reference count of the + * ENGINE it returns (unless it is NULL). + */ + +/* Get the first/last "ENGINE" type available. */ +# ifndef OPENSSL_NO_DEPRECATED_3_0 +OSSL_DEPRECATEDIN_3_0 ENGINE *ENGINE_get_first(void); +OSSL_DEPRECATEDIN_3_0 ENGINE *ENGINE_get_last(void); +# endif +/* Iterate to the next/previous "ENGINE" type (NULL = end of the list). */ +# ifndef OPENSSL_NO_DEPRECATED_3_0 +OSSL_DEPRECATEDIN_3_0 ENGINE *ENGINE_get_next(ENGINE *e); +OSSL_DEPRECATEDIN_3_0 ENGINE *ENGINE_get_prev(ENGINE *e); +# endif +/* Add another "ENGINE" type into the array. */ +# ifndef OPENSSL_NO_DEPRECATED_3_0 +OSSL_DEPRECATEDIN_3_0 int ENGINE_add(ENGINE *e); +# endif +/* Remove an existing "ENGINE" type from the array. */ +# ifndef OPENSSL_NO_DEPRECATED_3_0 +OSSL_DEPRECATEDIN_3_0 int ENGINE_remove(ENGINE *e); +# endif +/* Retrieve an engine from the list by its unique "id" value. */ +# ifndef OPENSSL_NO_DEPRECATED_3_0 +OSSL_DEPRECATEDIN_3_0 ENGINE *ENGINE_by_id(const char *id); +# endif + +# ifndef OPENSSL_NO_DEPRECATED_1_1_0 +# define ENGINE_load_openssl() \ + OPENSSL_init_crypto(OPENSSL_INIT_ENGINE_OPENSSL, NULL) +# define ENGINE_load_dynamic() \ + OPENSSL_init_crypto(OPENSSL_INIT_ENGINE_DYNAMIC, NULL) +# ifndef OPENSSL_NO_STATIC_ENGINE +# define ENGINE_load_padlock() \ + OPENSSL_init_crypto(OPENSSL_INIT_ENGINE_PADLOCK, NULL) +# define ENGINE_load_capi() \ + OPENSSL_init_crypto(OPENSSL_INIT_ENGINE_CAPI, NULL) +# define ENGINE_load_afalg() \ + OPENSSL_init_crypto(OPENSSL_INIT_ENGINE_AFALG, NULL) +# endif +# define ENGINE_load_cryptodev() \ + OPENSSL_init_crypto(OPENSSL_INIT_ENGINE_CRYPTODEV, NULL) +# define ENGINE_load_rdrand() \ + OPENSSL_init_crypto(OPENSSL_INIT_ENGINE_RDRAND, NULL) +# endif +# ifndef OPENSSL_NO_DEPRECATED_3_0 +OSSL_DEPRECATEDIN_3_0 void ENGINE_load_builtin_engines(void); +# endif + +/* + * Get and set global flags (ENGINE_TABLE_FLAG_***) for the implementation + * "registry" handling. + */ +# ifndef OPENSSL_NO_DEPRECATED_3_0 +OSSL_DEPRECATEDIN_3_0 unsigned int ENGINE_get_table_flags(void); +OSSL_DEPRECATEDIN_3_0 void ENGINE_set_table_flags(unsigned int flags); +# endif + +/*- Manage registration of ENGINEs per "table". For each type, there are 3 + * functions; + * ENGINE_register_***(e) - registers the implementation from 'e' (if it has one) + * ENGINE_unregister_***(e) - unregister the implementation from 'e' + * ENGINE_register_all_***() - call ENGINE_register_***() for each 'e' in the list + * Cleanup is automatically registered from each table when required. + */ +# ifndef OPENSSL_NO_DEPRECATED_3_0 +OSSL_DEPRECATEDIN_3_0 int ENGINE_register_RSA(ENGINE *e); +OSSL_DEPRECATEDIN_3_0 void ENGINE_unregister_RSA(ENGINE *e); +OSSL_DEPRECATEDIN_3_0 void ENGINE_register_all_RSA(void); +OSSL_DEPRECATEDIN_3_0 int ENGINE_register_DSA(ENGINE *e); +OSSL_DEPRECATEDIN_3_0 void ENGINE_unregister_DSA(ENGINE *e); +OSSL_DEPRECATEDIN_3_0 void ENGINE_register_all_DSA(void); +OSSL_DEPRECATEDIN_3_0 int ENGINE_register_EC(ENGINE *e); +OSSL_DEPRECATEDIN_3_0 void ENGINE_unregister_EC(ENGINE *e); +OSSL_DEPRECATEDIN_3_0 void ENGINE_register_all_EC(void); +OSSL_DEPRECATEDIN_3_0 int ENGINE_register_DH(ENGINE *e); +OSSL_DEPRECATEDIN_3_0 void ENGINE_unregister_DH(ENGINE *e); +OSSL_DEPRECATEDIN_3_0 void ENGINE_register_all_DH(void); +OSSL_DEPRECATEDIN_3_0 int ENGINE_register_RAND(ENGINE *e); +OSSL_DEPRECATEDIN_3_0 void ENGINE_unregister_RAND(ENGINE *e); +OSSL_DEPRECATEDIN_3_0 void ENGINE_register_all_RAND(void); +OSSL_DEPRECATEDIN_3_0 int ENGINE_register_ciphers(ENGINE *e); +OSSL_DEPRECATEDIN_3_0 void ENGINE_unregister_ciphers(ENGINE *e); +OSSL_DEPRECATEDIN_3_0 void ENGINE_register_all_ciphers(void); +OSSL_DEPRECATEDIN_3_0 int ENGINE_register_digests(ENGINE *e); +OSSL_DEPRECATEDIN_3_0 void ENGINE_unregister_digests(ENGINE *e); +OSSL_DEPRECATEDIN_3_0 void ENGINE_register_all_digests(void); +OSSL_DEPRECATEDIN_3_0 int ENGINE_register_pkey_meths(ENGINE *e); +OSSL_DEPRECATEDIN_3_0 void ENGINE_unregister_pkey_meths(ENGINE *e); +OSSL_DEPRECATEDIN_3_0 void ENGINE_register_all_pkey_meths(void); +OSSL_DEPRECATEDIN_3_0 int ENGINE_register_pkey_asn1_meths(ENGINE *e); +OSSL_DEPRECATEDIN_3_0 void ENGINE_unregister_pkey_asn1_meths(ENGINE *e); +OSSL_DEPRECATEDIN_3_0 void ENGINE_register_all_pkey_asn1_meths(void); +# endif + +/* + * These functions register all support from the above categories. Note, use + * of these functions can result in static linkage of code your application + * may not need. If you only need a subset of functionality, consider using + * more selective initialisation. + */ +# ifndef OPENSSL_NO_DEPRECATED_3_0 +OSSL_DEPRECATEDIN_3_0 int ENGINE_register_complete(ENGINE *e); +OSSL_DEPRECATEDIN_3_0 int ENGINE_register_all_complete(void); +# endif + +/* + * Send parameterised control commands to the engine. The possibilities to + * send down an integer, a pointer to data or a function pointer are + * provided. Any of the parameters may or may not be NULL, depending on the + * command number. In actuality, this function only requires a structural + * (rather than functional) reference to an engine, but many control commands + * may require the engine be functional. The caller should be aware of trying + * commands that require an operational ENGINE, and only use functional + * references in such situations. + */ +# ifndef OPENSSL_NO_DEPRECATED_3_0 +OSSL_DEPRECATEDIN_3_0 int ENGINE_ctrl(ENGINE *e, int cmd, long i, void *p, + void (*f) (void)); +# endif + +/* + * This function tests if an ENGINE-specific command is usable as a + * "setting". Eg. in an application's config file that gets processed through + * ENGINE_ctrl_cmd_string(). If this returns zero, it is not available to + * ENGINE_ctrl_cmd_string(), only ENGINE_ctrl(). + */ +# ifndef OPENSSL_NO_DEPRECATED_3_0 +OSSL_DEPRECATEDIN_3_0 int ENGINE_cmd_is_executable(ENGINE *e, int cmd); +# endif + +/* + * This function works like ENGINE_ctrl() with the exception of taking a + * command name instead of a command number, and can handle optional + * commands. See the comment on ENGINE_ctrl_cmd_string() for an explanation + * on how to use the cmd_name and cmd_optional. + */ +# ifndef OPENSSL_NO_DEPRECATED_3_0 +OSSL_DEPRECATEDIN_3_0 int ENGINE_ctrl_cmd(ENGINE *e, const char *cmd_name, + long i, void *p, void (*f) (void), + int cmd_optional); +# endif + +/* + * This function passes a command-name and argument to an ENGINE. The + * cmd_name is converted to a command number and the control command is + * called using 'arg' as an argument (unless the ENGINE doesn't support such + * a command, in which case no control command is called). The command is + * checked for input flags, and if necessary the argument will be converted + * to a numeric value. If cmd_optional is non-zero, then if the ENGINE + * doesn't support the given cmd_name the return value will be success + * anyway. This function is intended for applications to use so that users + * (or config files) can supply engine-specific config data to the ENGINE at + * run-time to control behaviour of specific engines. As such, it shouldn't + * be used for calling ENGINE_ctrl() functions that return data, deal with + * binary data, or that are otherwise supposed to be used directly through + * ENGINE_ctrl() in application code. Any "return" data from an ENGINE_ctrl() + * operation in this function will be lost - the return value is interpreted + * as failure if the return value is zero, success otherwise, and this + * function returns a boolean value as a result. In other words, vendors of + * 'ENGINE'-enabled devices should write ENGINE implementations with + * parameterisations that work in this scheme, so that compliant ENGINE-based + * applications can work consistently with the same configuration for the + * same ENGINE-enabled devices, across applications. + */ +# ifndef OPENSSL_NO_DEPRECATED_3_0 +OSSL_DEPRECATEDIN_3_0 +int ENGINE_ctrl_cmd_string(ENGINE *e, const char *cmd_name, const char *arg, + int cmd_optional); +# endif + +/* + * These functions are useful for manufacturing new ENGINE structures. They + * don't address reference counting at all - one uses them to populate an + * ENGINE structure with personalised implementations of things prior to + * using it directly or adding it to the builtin ENGINE list in OpenSSL. + * These are also here so that the ENGINE structure doesn't have to be + * exposed and break binary compatibility! + */ +# ifndef OPENSSL_NO_DEPRECATED_3_0 +OSSL_DEPRECATEDIN_3_0 ENGINE *ENGINE_new(void); +OSSL_DEPRECATEDIN_3_0 int ENGINE_free(ENGINE *e); +OSSL_DEPRECATEDIN_3_0 int ENGINE_up_ref(ENGINE *e); +OSSL_DEPRECATEDIN_3_0 int ENGINE_set_id(ENGINE *e, const char *id); +OSSL_DEPRECATEDIN_3_0 int ENGINE_set_name(ENGINE *e, const char *name); +OSSL_DEPRECATEDIN_3_0 int ENGINE_set_RSA(ENGINE *e, const RSA_METHOD *rsa_meth); +OSSL_DEPRECATEDIN_3_0 int ENGINE_set_DSA(ENGINE *e, const DSA_METHOD *dsa_meth); +OSSL_DEPRECATEDIN_3_0 int ENGINE_set_EC(ENGINE *e, const EC_KEY_METHOD *ecdsa_meth); +OSSL_DEPRECATEDIN_3_0 int ENGINE_set_DH(ENGINE *e, const DH_METHOD *dh_meth); +OSSL_DEPRECATEDIN_3_0 int ENGINE_set_RAND(ENGINE *e, const RAND_METHOD *rand_meth); +OSSL_DEPRECATEDIN_3_0 +int ENGINE_set_destroy_function(ENGINE *e,ENGINE_GEN_INT_FUNC_PTR destroy_f); +OSSL_DEPRECATEDIN_3_0 +int ENGINE_set_init_function(ENGINE *e, ENGINE_GEN_INT_FUNC_PTR init_f); +OSSL_DEPRECATEDIN_3_0 +int ENGINE_set_finish_function(ENGINE *e, ENGINE_GEN_INT_FUNC_PTR finish_f); +OSSL_DEPRECATEDIN_3_0 +int ENGINE_set_ctrl_function(ENGINE *e, ENGINE_CTRL_FUNC_PTR ctrl_f); +OSSL_DEPRECATEDIN_3_0 +int ENGINE_set_load_privkey_function(ENGINE *e, ENGINE_LOAD_KEY_PTR loadpriv_f); +OSSL_DEPRECATEDIN_3_0 +int ENGINE_set_load_pubkey_function(ENGINE *e, ENGINE_LOAD_KEY_PTR loadpub_f); +OSSL_DEPRECATEDIN_3_0 +int ENGINE_set_load_ssl_client_cert_function(ENGINE *e, + ENGINE_SSL_CLIENT_CERT_PTR loadssl_f); +OSSL_DEPRECATEDIN_3_0 +int ENGINE_set_ciphers(ENGINE *e, ENGINE_CIPHERS_PTR f); +OSSL_DEPRECATEDIN_3_0 +int ENGINE_set_digests(ENGINE *e, ENGINE_DIGESTS_PTR f); +OSSL_DEPRECATEDIN_3_0 +int ENGINE_set_pkey_meths(ENGINE *e, ENGINE_PKEY_METHS_PTR f); +OSSL_DEPRECATEDIN_3_0 +int ENGINE_set_pkey_asn1_meths(ENGINE *e, ENGINE_PKEY_ASN1_METHS_PTR f); +OSSL_DEPRECATEDIN_3_0 int ENGINE_set_flags(ENGINE *e, int flags); +OSSL_DEPRECATEDIN_3_0 int ENGINE_set_cmd_defns(ENGINE *e, + const ENGINE_CMD_DEFN *defns); +# endif +/* These functions allow control over any per-structure ENGINE data. */ +# define ENGINE_get_ex_new_index(l, p, newf, dupf, freef) \ + CRYPTO_get_ex_new_index(CRYPTO_EX_INDEX_ENGINE, l, p, newf, dupf, freef) +# ifndef OPENSSL_NO_DEPRECATED_3_0 +OSSL_DEPRECATEDIN_3_0 int ENGINE_set_ex_data(ENGINE *e, int idx, void *arg); +OSSL_DEPRECATEDIN_3_0 void *ENGINE_get_ex_data(const ENGINE *e, int idx); +# endif + +# ifndef OPENSSL_NO_DEPRECATED_1_1_0 +/* + * This function previously cleaned up anything that needs it. Auto-deinit will + * now take care of it so it is no longer required to call this function. + */ +# define ENGINE_cleanup() while(0) continue +# endif + +/* + * These return values from within the ENGINE structure. These can be useful + * with functional references as well as structural references - it depends + * which you obtained. Using the result for functional purposes if you only + * obtained a structural reference may be problematic! + */ +# ifndef OPENSSL_NO_DEPRECATED_3_0 +OSSL_DEPRECATEDIN_3_0 const char *ENGINE_get_id(const ENGINE *e); +OSSL_DEPRECATEDIN_3_0 const char *ENGINE_get_name(const ENGINE *e); +OSSL_DEPRECATEDIN_3_0 const RSA_METHOD *ENGINE_get_RSA(const ENGINE *e); +OSSL_DEPRECATEDIN_3_0 const DSA_METHOD *ENGINE_get_DSA(const ENGINE *e); +OSSL_DEPRECATEDIN_3_0 const EC_KEY_METHOD *ENGINE_get_EC(const ENGINE *e); +OSSL_DEPRECATEDIN_3_0 const DH_METHOD *ENGINE_get_DH(const ENGINE *e); +OSSL_DEPRECATEDIN_3_0 const RAND_METHOD *ENGINE_get_RAND(const ENGINE *e); +OSSL_DEPRECATEDIN_3_0 +ENGINE_GEN_INT_FUNC_PTR ENGINE_get_destroy_function(const ENGINE *e); +OSSL_DEPRECATEDIN_3_0 +ENGINE_GEN_INT_FUNC_PTR ENGINE_get_init_function(const ENGINE *e); +OSSL_DEPRECATEDIN_3_0 +ENGINE_GEN_INT_FUNC_PTR ENGINE_get_finish_function(const ENGINE *e); +OSSL_DEPRECATEDIN_3_0 +ENGINE_CTRL_FUNC_PTR ENGINE_get_ctrl_function(const ENGINE *e); +OSSL_DEPRECATEDIN_3_0 +ENGINE_LOAD_KEY_PTR ENGINE_get_load_privkey_function(const ENGINE *e); +OSSL_DEPRECATEDIN_3_0 +ENGINE_LOAD_KEY_PTR ENGINE_get_load_pubkey_function(const ENGINE *e); +OSSL_DEPRECATEDIN_3_0 +ENGINE_SSL_CLIENT_CERT_PTR ENGINE_get_ssl_client_cert_function(const ENGINE *e); +OSSL_DEPRECATEDIN_3_0 +ENGINE_CIPHERS_PTR ENGINE_get_ciphers(const ENGINE *e); +OSSL_DEPRECATEDIN_3_0 +ENGINE_DIGESTS_PTR ENGINE_get_digests(const ENGINE *e); +OSSL_DEPRECATEDIN_3_0 +ENGINE_PKEY_METHS_PTR ENGINE_get_pkey_meths(const ENGINE *e); +OSSL_DEPRECATEDIN_3_0 +ENGINE_PKEY_ASN1_METHS_PTR ENGINE_get_pkey_asn1_meths(const ENGINE *e); +OSSL_DEPRECATEDIN_3_0 +const EVP_CIPHER *ENGINE_get_cipher(ENGINE *e, int nid); +OSSL_DEPRECATEDIN_3_0 +const EVP_MD *ENGINE_get_digest(ENGINE *e, int nid); +OSSL_DEPRECATEDIN_3_0 +const EVP_PKEY_METHOD *ENGINE_get_pkey_meth(ENGINE *e, int nid); +OSSL_DEPRECATEDIN_3_0 +const EVP_PKEY_ASN1_METHOD *ENGINE_get_pkey_asn1_meth(ENGINE *e, int nid); +OSSL_DEPRECATEDIN_3_0 +const EVP_PKEY_ASN1_METHOD *ENGINE_get_pkey_asn1_meth_str(ENGINE *e, + const char *str, + int len); +OSSL_DEPRECATEDIN_3_0 +const EVP_PKEY_ASN1_METHOD *ENGINE_pkey_asn1_find_str(ENGINE **pe, + const char *str, int len); +OSSL_DEPRECATEDIN_3_0 +const ENGINE_CMD_DEFN *ENGINE_get_cmd_defns(const ENGINE *e); +OSSL_DEPRECATEDIN_3_0 int ENGINE_get_flags(const ENGINE *e); +# endif + +/* + * FUNCTIONAL functions. These functions deal with ENGINE structures that + * have (or will) be initialised for use. Broadly speaking, the structural + * functions are useful for iterating the list of available engine types, + * creating new engine types, and other "list" operations. These functions + * actually deal with ENGINEs that are to be used. As such these functions + * can fail (if applicable) when particular engines are unavailable - eg. if + * a hardware accelerator is not attached or not functioning correctly. Each + * ENGINE has 2 reference counts; structural and functional. Every time a + * functional reference is obtained or released, a corresponding structural + * reference is automatically obtained or released too. + */ + +/* + * Initialise an engine type for use (or up its reference count if it's + * already in use). This will fail if the engine is not currently operational + * and cannot initialise. + */ +# ifndef OPENSSL_NO_DEPRECATED_3_0 +OSSL_DEPRECATEDIN_3_0 int ENGINE_init(ENGINE *e); +# endif +/* + * Free a functional reference to an engine type. This does not require a + * corresponding call to ENGINE_free as it also releases a structural + * reference. + */ +# ifndef OPENSSL_NO_DEPRECATED_3_0 +OSSL_DEPRECATEDIN_3_0 int ENGINE_finish(ENGINE *e); +# endif + +/* + * The following functions handle keys that are stored in some secondary + * location, handled by the engine. The storage may be on a card or + * whatever. + */ +# ifndef OPENSSL_NO_DEPRECATED_3_0 +OSSL_DEPRECATEDIN_3_0 +EVP_PKEY *ENGINE_load_private_key(ENGINE *e, const char *key_id, + UI_METHOD *ui_method, void *callback_data); +OSSL_DEPRECATEDIN_3_0 +EVP_PKEY *ENGINE_load_public_key(ENGINE *e, const char *key_id, + UI_METHOD *ui_method, void *callback_data); +OSSL_DEPRECATEDIN_3_0 +int ENGINE_load_ssl_client_cert(ENGINE *e, SSL *s, STACK_OF(X509_NAME) *ca_dn, + X509 **pcert, EVP_PKEY **ppkey, + STACK_OF(X509) **pother, + UI_METHOD *ui_method, void *callback_data); +# endif + +/* + * This returns a pointer for the current ENGINE structure that is (by + * default) performing any RSA operations. The value returned is an + * incremented reference, so it should be free'd (ENGINE_finish) before it is + * discarded. + */ +# ifndef OPENSSL_NO_DEPRECATED_3_0 +OSSL_DEPRECATEDIN_3_0 ENGINE *ENGINE_get_default_RSA(void); +# endif +/* Same for the other "methods" */ +# ifndef OPENSSL_NO_DEPRECATED_3_0 +OSSL_DEPRECATEDIN_3_0 ENGINE *ENGINE_get_default_DSA(void); +OSSL_DEPRECATEDIN_3_0 ENGINE *ENGINE_get_default_EC(void); +OSSL_DEPRECATEDIN_3_0 ENGINE *ENGINE_get_default_DH(void); +OSSL_DEPRECATEDIN_3_0 ENGINE *ENGINE_get_default_RAND(void); +# endif +/* + * These functions can be used to get a functional reference to perform + * ciphering or digesting corresponding to "nid". + */ +# ifndef OPENSSL_NO_DEPRECATED_3_0 +OSSL_DEPRECATEDIN_3_0 ENGINE *ENGINE_get_cipher_engine(int nid); +OSSL_DEPRECATEDIN_3_0 ENGINE *ENGINE_get_digest_engine(int nid); +OSSL_DEPRECATEDIN_3_0 ENGINE *ENGINE_get_pkey_meth_engine(int nid); +OSSL_DEPRECATEDIN_3_0 ENGINE *ENGINE_get_pkey_asn1_meth_engine(int nid); +# endif + +/* + * This sets a new default ENGINE structure for performing RSA operations. If + * the result is non-zero (success) then the ENGINE structure will have had + * its reference count up'd so the caller should still free their own + * reference 'e'. + */ +# ifndef OPENSSL_NO_DEPRECATED_3_0 +OSSL_DEPRECATEDIN_3_0 int ENGINE_set_default_RSA(ENGINE *e); +OSSL_DEPRECATEDIN_3_0 int ENGINE_set_default_string(ENGINE *e, + const char *def_list); +# endif +/* Same for the other "methods" */ +# ifndef OPENSSL_NO_DEPRECATED_3_0 +OSSL_DEPRECATEDIN_3_0 int ENGINE_set_default_DSA(ENGINE *e); +OSSL_DEPRECATEDIN_3_0 int ENGINE_set_default_EC(ENGINE *e); +OSSL_DEPRECATEDIN_3_0 int ENGINE_set_default_DH(ENGINE *e); +OSSL_DEPRECATEDIN_3_0 int ENGINE_set_default_RAND(ENGINE *e); +OSSL_DEPRECATEDIN_3_0 int ENGINE_set_default_ciphers(ENGINE *e); +OSSL_DEPRECATEDIN_3_0 int ENGINE_set_default_digests(ENGINE *e); +OSSL_DEPRECATEDIN_3_0 int ENGINE_set_default_pkey_meths(ENGINE *e); +OSSL_DEPRECATEDIN_3_0 int ENGINE_set_default_pkey_asn1_meths(ENGINE *e); +# endif + +/* + * The combination "set" - the flags are bitwise "OR"d from the + * ENGINE_METHOD_*** defines above. As with the "ENGINE_register_complete()" + * function, this function can result in unnecessary static linkage. If your + * application requires only specific functionality, consider using more + * selective functions. + */ +# ifndef OPENSSL_NO_DEPRECATED_3_0 +OSSL_DEPRECATEDIN_3_0 int ENGINE_set_default(ENGINE *e, unsigned int flags); +OSSL_DEPRECATEDIN_3_0 void ENGINE_add_conf_module(void); +# endif + +/* Deprecated functions ... */ +/* int ENGINE_clear_defaults(void); */ + +/**************************/ +/* DYNAMIC ENGINE SUPPORT */ +/**************************/ + +/* Binary/behaviour compatibility levels */ +# define OSSL_DYNAMIC_VERSION (unsigned long)0x00030000 +/* + * Binary versions older than this are too old for us (whether we're a loader + * or a loadee) + */ +# define OSSL_DYNAMIC_OLDEST (unsigned long)0x00030000 + +/* + * When compiling an ENGINE entirely as an external shared library, loadable + * by the "dynamic" ENGINE, these types are needed. The 'dynamic_fns' + * structure type provides the calling application's (or library's) error + * functionality and memory management function pointers to the loaded + * library. These should be used/set in the loaded library code so that the + * loading application's 'state' will be used/changed in all operations. The + * 'static_state' pointer allows the loaded library to know if it shares the + * same static data as the calling application (or library), and thus whether + * these callbacks need to be set or not. + */ +typedef void *(*dyn_MEM_malloc_fn) (size_t, const char *, int); +typedef void *(*dyn_MEM_realloc_fn) (void *, size_t, const char *, int); +typedef void (*dyn_MEM_free_fn) (void *, const char *, int); +typedef struct st_dynamic_MEM_fns { + dyn_MEM_malloc_fn malloc_fn; + dyn_MEM_realloc_fn realloc_fn; + dyn_MEM_free_fn free_fn; +} dynamic_MEM_fns; +/* + * FIXME: Perhaps the memory and locking code (crypto.h) should declare and + * use these types so we (and any other dependent code) can simplify a bit?? + */ +/* The top-level structure */ +typedef struct st_dynamic_fns { + void *static_state; + dynamic_MEM_fns mem_fns; +} dynamic_fns; + +/* + * The version checking function should be of this prototype. NB: The + * ossl_version value passed in is the OSSL_DYNAMIC_VERSION of the loading + * code. If this function returns zero, it indicates a (potential) version + * incompatibility and the loaded library doesn't believe it can proceed. + * Otherwise, the returned value is the (latest) version supported by the + * loading library. The loader may still decide that the loaded code's + * version is unsatisfactory and could veto the load. The function is + * expected to be implemented with the symbol name "v_check", and a default + * implementation can be fully instantiated with + * IMPLEMENT_DYNAMIC_CHECK_FN(). + */ +typedef unsigned long (*dynamic_v_check_fn) (unsigned long ossl_version); +# define IMPLEMENT_DYNAMIC_CHECK_FN() \ + OPENSSL_EXPORT unsigned long v_check(unsigned long v); \ + OPENSSL_EXPORT unsigned long v_check(unsigned long v) { \ + if (v >= OSSL_DYNAMIC_OLDEST) return OSSL_DYNAMIC_VERSION; \ + return 0; } + +/* + * This function is passed the ENGINE structure to initialise with its own + * function and command settings. It should not adjust the structural or + * functional reference counts. If this function returns zero, (a) the load + * will be aborted, (b) the previous ENGINE state will be memcpy'd back onto + * the structure, and (c) the shared library will be unloaded. So + * implementations should do their own internal cleanup in failure + * circumstances otherwise they could leak. The 'id' parameter, if non-NULL, + * represents the ENGINE id that the loader is looking for. If this is NULL, + * the shared library can choose to return failure or to initialise a + * 'default' ENGINE. If non-NULL, the shared library must initialise only an + * ENGINE matching the passed 'id'. The function is expected to be + * implemented with the symbol name "bind_engine". A standard implementation + * can be instantiated with IMPLEMENT_DYNAMIC_BIND_FN(fn) where the parameter + * 'fn' is a callback function that populates the ENGINE structure and + * returns an int value (zero for failure). 'fn' should have prototype; + * [static] int fn(ENGINE *e, const char *id); + */ +typedef int (*dynamic_bind_engine) (ENGINE *e, const char *id, + const dynamic_fns *fns); +# define IMPLEMENT_DYNAMIC_BIND_FN(fn) \ + OPENSSL_EXPORT \ + int bind_engine(ENGINE *e, const char *id, const dynamic_fns *fns); \ + OPENSSL_EXPORT \ + int bind_engine(ENGINE *e, const char *id, const dynamic_fns *fns) { \ + if (ENGINE_get_static_state() == fns->static_state) goto skip_cbs; \ + CRYPTO_set_mem_functions(fns->mem_fns.malloc_fn, \ + fns->mem_fns.realloc_fn, \ + fns->mem_fns.free_fn); \ + OPENSSL_init_crypto(OPENSSL_INIT_NO_ATEXIT, NULL); \ + skip_cbs: \ + if (!fn(e, id)) return 0; \ + return 1; } + +/* + * If the loading application (or library) and the loaded ENGINE library + * share the same static data (eg. they're both dynamically linked to the + * same libcrypto.so) we need a way to avoid trying to set system callbacks - + * this would fail, and for the same reason that it's unnecessary to try. If + * the loaded ENGINE has (or gets from through the loader) its own copy of + * the libcrypto static data, we will need to set the callbacks. The easiest + * way to detect this is to have a function that returns a pointer to some + * static data and let the loading application and loaded ENGINE compare + * their respective values. + */ +void *ENGINE_get_static_state(void); + +# if defined(__OpenBSD__) || defined(__FreeBSD__) || defined(__DragonFly__) +# ifndef OPENSSL_NO_DEPRECATED_1_1_0 +OSSL_DEPRECATEDIN_1_1_0 void ENGINE_setup_bsd_cryptodev(void); +# endif +# endif + + +# ifdef __cplusplus +} +# endif +# endif /* OPENSSL_NO_ENGINE */ +#endif /* OPENSSL_ENGINE_H */ diff --git a/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/err_asm.h b/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/err_asm.h new file mode 100644 index 0000000000000000000000000000000000000000..7f92d845da4c655f101fc6f407454961140ffcd5 --- /dev/null +++ b/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/err_asm.h @@ -0,0 +1,53 @@ +#undef OPENSSL_LINUX +#if defined(__linux) && !defined(__ANDROID__) +# define OPENSSL_LINUX 1 +#endif + +#if defined(OPENSSL_LINUX) && defined(__i386__) +# include "./archs/linux-elf/asm/include/openssl/err.h" +#elif defined(OPENSSL_LINUX) && defined(__ILP32__) +# include "./archs/linux-x32/asm/include/openssl/err.h" +#elif defined(OPENSSL_LINUX) && defined(__x86_64__) +# include "./archs/linux-x86_64/asm/include/openssl/err.h" +#elif defined(OPENSSL_LINUX) && defined(__arm__) +# include "./archs/linux-armv4/asm/include/openssl/err.h" +#elif defined(OPENSSL_LINUX) && defined(__aarch64__) +# include "./archs/linux-aarch64/asm/include/openssl/err.h" +#elif defined(__APPLE__) && defined(__MACH__) && defined(__i386__) +# include "./archs/darwin-i386-cc/asm/include/openssl/err.h" +#elif defined(__APPLE__) && defined(__MACH__) && defined(__x86_64__) +# include "./archs/darwin64-x86_64-cc/asm/include/openssl/err.h" +#elif defined(__APPLE__) && defined(__MACH__) && defined(__arm64__) +# include "./archs/darwin64-arm64-cc/asm/include/openssl/err.h" +#elif defined(_WIN32) && defined(_M_IX86) +# include "./archs/VC-WIN32/asm/include/openssl/err.h" +#elif defined(_WIN32) && defined(_M_X64) +# include "./archs/VC-WIN64A/asm/include/openssl/err.h" +#elif (defined(__FreeBSD__) || defined(__OpenBSD__)) && defined(__i386__) +# include "./archs/BSD-x86/asm/include/openssl/err.h" +#elif (defined(__FreeBSD__) || defined(__OpenBSD__)) && defined(__x86_64__) +# include "./archs/BSD-x86_64/asm/include/openssl/err.h" +#elif defined(__sun) && defined(__i386__) +# include "./archs/solaris-x86-gcc/asm/include/openssl/err.h" +#elif defined(__sun) && defined(__x86_64__) +# include "./archs/solaris64-x86_64-gcc/asm/include/openssl/err.h" +#elif defined(OPENSSL_LINUX) && defined(__PPC64__) && defined(L_ENDIAN) +# include "./archs/linux-ppc64le/asm/include/openssl/err.h" +#elif defined(_AIX) && defined(_ARCH_PPC64) +# include "./archs/aix64-gcc-as/asm/include/openssl/err.h" +#elif defined(OPENSSL_LINUX) && defined(__s390x__) +# include "./archs/linux64-s390x/asm/include/openssl/err.h" +#elif defined(OPENSSL_LINUX) && defined(__s390__) +# include "./archs/linux32-s390x/asm/include/openssl/err.h" +#else +# include "./archs/linux-elf/asm/include/openssl/err.h" +#endif + +/* GOST is not included in all platform */ +#ifndef OPENSSL_NO_GOST +# define OPENSSL_NO_GOST +#endif +/* HW_PADLOCK is not included in all platform */ +#ifndef OPENSSL_NO_HW_PADLOCK +# define OPENSSL_NO_HW_PADLOCK +#endif diff --git a/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/evp.h b/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/evp.h new file mode 100644 index 0000000000000000000000000000000000000000..e5da1e64151bdff9f222f560acb6e49766d36306 --- /dev/null +++ b/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/evp.h @@ -0,0 +1,2310 @@ +/* + * Copyright 1995-2025 The OpenSSL Project Authors. All Rights Reserved. + * + * Licensed under the Apache License 2.0 (the "License"). You may not use + * this file except in compliance with the License. You can obtain a copy + * in the file LICENSE in the source distribution or at + * https://www.openssl.org/source/license.html + */ + +#ifndef OPENSSL_EVP_H +# define OPENSSL_EVP_H +# pragma once + +# include +# ifndef OPENSSL_NO_DEPRECATED_3_0 +# define HEADER_ENVELOPE_H +# endif + +# include + +# ifndef OPENSSL_NO_STDIO +# include +# endif + +# include +# include +# include +# include +# include +# include +# include +# include + +# define EVP_MAX_MD_SIZE 64/* longest known is SHA512 */ +# define EVP_MAX_KEY_LENGTH 64 +# define EVP_MAX_IV_LENGTH 16 +# define EVP_MAX_BLOCK_LENGTH 32 +# define EVP_MAX_AEAD_TAG_LENGTH 16 + +/* Maximum pipes in cipher pipelining */ +# define EVP_MAX_PIPES 32 + +# define PKCS5_SALT_LEN 8 +/* Default PKCS#5 iteration count */ +# define PKCS5_DEFAULT_ITER 2048 + +# include + +# ifndef OPENSSL_NO_DEPRECATED_3_0 +# define EVP_PK_RSA 0x0001 +# define EVP_PK_DSA 0x0002 +# define EVP_PK_DH 0x0004 +# define EVP_PK_EC 0x0008 +# define EVP_PKT_SIGN 0x0010 +# define EVP_PKT_ENC 0x0020 +# define EVP_PKT_EXCH 0x0040 +# define EVP_PKS_RSA 0x0100 +# define EVP_PKS_DSA 0x0200 +# define EVP_PKS_EC 0x0400 +# endif + +# define EVP_PKEY_NONE NID_undef +# define EVP_PKEY_RSA NID_rsaEncryption +# define EVP_PKEY_RSA2 NID_rsa +# define EVP_PKEY_RSA_PSS NID_rsassaPss +# define EVP_PKEY_DSA NID_dsa +# define EVP_PKEY_DSA1 NID_dsa_2 +# define EVP_PKEY_DSA2 NID_dsaWithSHA +# define EVP_PKEY_DSA3 NID_dsaWithSHA1 +# define EVP_PKEY_DSA4 NID_dsaWithSHA1_2 +# define EVP_PKEY_DH NID_dhKeyAgreement +# define EVP_PKEY_DHX NID_dhpublicnumber +# define EVP_PKEY_EC NID_X9_62_id_ecPublicKey +# define EVP_PKEY_SM2 NID_sm2 +# define EVP_PKEY_HMAC NID_hmac +# define EVP_PKEY_CMAC NID_cmac +# define EVP_PKEY_SCRYPT NID_id_scrypt +# define EVP_PKEY_TLS1_PRF NID_tls1_prf +# define EVP_PKEY_HKDF NID_hkdf +# define EVP_PKEY_POLY1305 NID_poly1305 +# define EVP_PKEY_SIPHASH NID_siphash +# define EVP_PKEY_X25519 NID_X25519 +# define EVP_PKEY_ED25519 NID_ED25519 +# define EVP_PKEY_X448 NID_X448 +# define EVP_PKEY_ED448 NID_ED448 +# define EVP_PKEY_ML_DSA_44 NID_ML_DSA_44 +# define EVP_PKEY_ML_DSA_65 NID_ML_DSA_65 +# define EVP_PKEY_ML_DSA_87 NID_ML_DSA_87 +# define EVP_PKEY_SLH_DSA_SHA2_128S NID_SLH_DSA_SHA2_128s +# define EVP_PKEY_SLH_DSA_SHA2_128F NID_SLH_DSA_SHA2_128f +# define EVP_PKEY_SLH_DSA_SHA2_192S NID_SLH_DSA_SHA2_192s +# define EVP_PKEY_SLH_DSA_SHA2_192F NID_SLH_DSA_SHA2_192f +# define EVP_PKEY_SLH_DSA_SHA2_256S NID_SLH_DSA_SHA2_256s +# define EVP_PKEY_SLH_DSA_SHA2_256F NID_SLH_DSA_SHA2_256f +# define EVP_PKEY_SLH_DSA_SHAKE_128S NID_SLH_DSA_SHAKE_128s +# define EVP_PKEY_SLH_DSA_SHAKE_128F NID_SLH_DSA_SHAKE_128f +# define EVP_PKEY_SLH_DSA_SHAKE_192S NID_SLH_DSA_SHAKE_192s +# define EVP_PKEY_SLH_DSA_SHAKE_192F NID_SLH_DSA_SHAKE_192f +# define EVP_PKEY_SLH_DSA_SHAKE_256S NID_SLH_DSA_SHAKE_256s +# define EVP_PKEY_SLH_DSA_SHAKE_256F NID_SLH_DSA_SHAKE_256f + +/* Special indicator that the object is uniquely provider side */ +# define EVP_PKEY_KEYMGMT -1 + +/* Easy to use macros for EVP_PKEY related selections */ +# define EVP_PKEY_KEY_PARAMETERS \ + ( OSSL_KEYMGMT_SELECT_ALL_PARAMETERS ) +# define EVP_PKEY_PRIVATE_KEY \ + ( EVP_PKEY_KEY_PARAMETERS | OSSL_KEYMGMT_SELECT_PRIVATE_KEY ) +# define EVP_PKEY_PUBLIC_KEY \ + ( EVP_PKEY_KEY_PARAMETERS | OSSL_KEYMGMT_SELECT_PUBLIC_KEY ) +# define EVP_PKEY_KEYPAIR \ + ( EVP_PKEY_PUBLIC_KEY | OSSL_KEYMGMT_SELECT_PRIVATE_KEY ) + +#ifdef __cplusplus +extern "C" { +#endif + +int EVP_set_default_properties(OSSL_LIB_CTX *libctx, const char *propq); +char *EVP_get1_default_properties(OSSL_LIB_CTX *libctx); +int EVP_default_properties_is_fips_enabled(OSSL_LIB_CTX *libctx); +int EVP_default_properties_enable_fips(OSSL_LIB_CTX *libctx, int enable); + +# define EVP_PKEY_MO_SIGN 0x0001 +# define EVP_PKEY_MO_VERIFY 0x0002 +# define EVP_PKEY_MO_ENCRYPT 0x0004 +# define EVP_PKEY_MO_DECRYPT 0x0008 + +# ifndef EVP_MD +# ifndef OPENSSL_NO_DEPRECATED_3_0 +OSSL_DEPRECATEDIN_3_0 EVP_MD *EVP_MD_meth_new(int md_type, int pkey_type); +OSSL_DEPRECATEDIN_3_0 EVP_MD *EVP_MD_meth_dup(const EVP_MD *md); +OSSL_DEPRECATEDIN_3_0 void EVP_MD_meth_free(EVP_MD *md); +OSSL_DEPRECATEDIN_3_0 +int EVP_MD_meth_set_input_blocksize(EVP_MD *md, int blocksize); +OSSL_DEPRECATEDIN_3_0 +int EVP_MD_meth_set_result_size(EVP_MD *md, int resultsize); +OSSL_DEPRECATEDIN_3_0 +int EVP_MD_meth_set_app_datasize(EVP_MD *md, int datasize); +OSSL_DEPRECATEDIN_3_0 +int EVP_MD_meth_set_flags(EVP_MD *md, unsigned long flags); +OSSL_DEPRECATEDIN_3_0 +int EVP_MD_meth_set_init(EVP_MD *md, int (*init)(EVP_MD_CTX *ctx)); +OSSL_DEPRECATEDIN_3_0 +int EVP_MD_meth_set_update(EVP_MD *md, int (*update)(EVP_MD_CTX *ctx, + const void *data, + size_t count)); +OSSL_DEPRECATEDIN_3_0 +int EVP_MD_meth_set_final(EVP_MD *md, int (*final)(EVP_MD_CTX *ctx, + unsigned char *md)); +OSSL_DEPRECATEDIN_3_0 +int EVP_MD_meth_set_copy(EVP_MD *md, int (*copy)(EVP_MD_CTX *to, + const EVP_MD_CTX *from)); +OSSL_DEPRECATEDIN_3_0 +int EVP_MD_meth_set_cleanup(EVP_MD *md, int (*cleanup)(EVP_MD_CTX *ctx)); +OSSL_DEPRECATEDIN_3_0 +int EVP_MD_meth_set_ctrl(EVP_MD *md, int (*ctrl)(EVP_MD_CTX *ctx, int cmd, + int p1, void *p2)); +OSSL_DEPRECATEDIN_3_0 int EVP_MD_meth_get_input_blocksize(const EVP_MD *md); +OSSL_DEPRECATEDIN_3_0 int EVP_MD_meth_get_result_size(const EVP_MD *md); +OSSL_DEPRECATEDIN_3_0 int EVP_MD_meth_get_app_datasize(const EVP_MD *md); +OSSL_DEPRECATEDIN_3_0 unsigned long EVP_MD_meth_get_flags(const EVP_MD *md); +OSSL_DEPRECATEDIN_3_0 +int (*EVP_MD_meth_get_init(const EVP_MD *md))(EVP_MD_CTX *ctx); +OSSL_DEPRECATEDIN_3_0 +int (*EVP_MD_meth_get_update(const EVP_MD *md))(EVP_MD_CTX *ctx, + const void *data, size_t count); +OSSL_DEPRECATEDIN_3_0 +int (*EVP_MD_meth_get_final(const EVP_MD *md))(EVP_MD_CTX *ctx, + unsigned char *md); +OSSL_DEPRECATEDIN_3_0 +int (*EVP_MD_meth_get_copy(const EVP_MD *md))(EVP_MD_CTX *to, + const EVP_MD_CTX *from); +OSSL_DEPRECATEDIN_3_0 +int (*EVP_MD_meth_get_cleanup(const EVP_MD *md))(EVP_MD_CTX *ctx); +OSSL_DEPRECATEDIN_3_0 +int (*EVP_MD_meth_get_ctrl(const EVP_MD *md))(EVP_MD_CTX *ctx, int cmd, + int p1, void *p2); +# endif +/* digest can only handle a single block */ +# define EVP_MD_FLAG_ONESHOT 0x0001 + +/* digest is extensible-output function, XOF */ +# define EVP_MD_FLAG_XOF 0x0002 + +/* DigestAlgorithmIdentifier flags... */ + +# define EVP_MD_FLAG_DIGALGID_MASK 0x0018 + +/* NULL or absent parameter accepted. Use NULL */ + +# define EVP_MD_FLAG_DIGALGID_NULL 0x0000 + +/* NULL or absent parameter accepted. Use NULL for PKCS#1 otherwise absent */ + +# define EVP_MD_FLAG_DIGALGID_ABSENT 0x0008 + +/* Custom handling via ctrl */ + +# define EVP_MD_FLAG_DIGALGID_CUSTOM 0x0018 + +/* Note if suitable for use in FIPS mode */ +# define EVP_MD_FLAG_FIPS 0x0400 + +/* Digest ctrls */ + +# define EVP_MD_CTRL_DIGALGID 0x1 +# define EVP_MD_CTRL_MICALG 0x2 +# define EVP_MD_CTRL_XOF_LEN 0x3 +# define EVP_MD_CTRL_TLSTREE 0x4 + +/* Minimum Algorithm specific ctrl value */ + +# define EVP_MD_CTRL_ALG_CTRL 0x1000 + +# endif /* !EVP_MD */ + +/* values for EVP_MD_CTX flags */ + +# define EVP_MD_CTX_FLAG_ONESHOT 0x0001/* digest update will be + * called once only */ +# define EVP_MD_CTX_FLAG_CLEANED 0x0002/* context has already been + * cleaned */ +# define EVP_MD_CTX_FLAG_REUSE 0x0004/* Don't free up ctx->md_data + * in EVP_MD_CTX_reset */ +/* + * FIPS and pad options are ignored in 1.0.0, definitions are here so we + * don't accidentally reuse the values for other purposes. + */ + +/* This flag has no effect from openssl-3.0 onwards */ +# define EVP_MD_CTX_FLAG_NON_FIPS_ALLOW 0x0008 + +/* + * The following PAD options are also currently ignored in 1.0.0, digest + * parameters are handled through EVP_DigestSign*() and EVP_DigestVerify*() + * instead. + */ +# define EVP_MD_CTX_FLAG_PAD_MASK 0xF0/* RSA mode to use */ +# define EVP_MD_CTX_FLAG_PAD_PKCS1 0x00/* PKCS#1 v1.5 mode */ +# define EVP_MD_CTX_FLAG_PAD_X931 0x10/* X9.31 mode */ +# define EVP_MD_CTX_FLAG_PAD_PSS 0x20/* PSS mode */ + +# define EVP_MD_CTX_FLAG_NO_INIT 0x0100/* Don't initialize md_data */ +/* + * Some functions such as EVP_DigestSign only finalise copies of internal + * contexts so additional data can be included after the finalisation call. + * This is inefficient if this functionality is not required: it is disabled + * if the following flag is set. + */ +# define EVP_MD_CTX_FLAG_FINALISE 0x0200 +/* NOTE: 0x0400 and 0x0800 are reserved for internal usage */ + +# ifndef OPENSSL_NO_DEPRECATED_3_0 +OSSL_DEPRECATEDIN_3_0 +EVP_CIPHER *EVP_CIPHER_meth_new(int cipher_type, int block_size, int key_len); +OSSL_DEPRECATEDIN_3_0 +EVP_CIPHER *EVP_CIPHER_meth_dup(const EVP_CIPHER *cipher); +OSSL_DEPRECATEDIN_3_0 +void EVP_CIPHER_meth_free(EVP_CIPHER *cipher); +OSSL_DEPRECATEDIN_3_0 +int EVP_CIPHER_meth_set_iv_length(EVP_CIPHER *cipher, int iv_len); +OSSL_DEPRECATEDIN_3_0 +int EVP_CIPHER_meth_set_flags(EVP_CIPHER *cipher, unsigned long flags); +OSSL_DEPRECATEDIN_3_0 +int EVP_CIPHER_meth_set_impl_ctx_size(EVP_CIPHER *cipher, int ctx_size); +OSSL_DEPRECATEDIN_3_0 +int EVP_CIPHER_meth_set_init(EVP_CIPHER *cipher, + int (*init) (EVP_CIPHER_CTX *ctx, + const unsigned char *key, + const unsigned char *iv, + int enc)); +OSSL_DEPRECATEDIN_3_0 +int EVP_CIPHER_meth_set_do_cipher(EVP_CIPHER *cipher, + int (*do_cipher) (EVP_CIPHER_CTX *ctx, + unsigned char *out, + const unsigned char *in, + size_t inl)); +OSSL_DEPRECATEDIN_3_0 +int EVP_CIPHER_meth_set_cleanup(EVP_CIPHER *cipher, + int (*cleanup) (EVP_CIPHER_CTX *)); +OSSL_DEPRECATEDIN_3_0 +int EVP_CIPHER_meth_set_set_asn1_params(EVP_CIPHER *cipher, + int (*set_asn1_parameters) (EVP_CIPHER_CTX *, + ASN1_TYPE *)); +OSSL_DEPRECATEDIN_3_0 +int EVP_CIPHER_meth_set_get_asn1_params(EVP_CIPHER *cipher, + int (*get_asn1_parameters) (EVP_CIPHER_CTX *, + ASN1_TYPE *)); +OSSL_DEPRECATEDIN_3_0 +int EVP_CIPHER_meth_set_ctrl(EVP_CIPHER *cipher, + int (*ctrl) (EVP_CIPHER_CTX *, int type, + int arg, void *ptr)); +OSSL_DEPRECATEDIN_3_0 int +(*EVP_CIPHER_meth_get_init(const EVP_CIPHER *cipher))(EVP_CIPHER_CTX *ctx, + const unsigned char *key, + const unsigned char *iv, + int enc); +OSSL_DEPRECATEDIN_3_0 int +(*EVP_CIPHER_meth_get_do_cipher(const EVP_CIPHER *cipher))(EVP_CIPHER_CTX *ctx, + unsigned char *out, + const unsigned char *in, + size_t inl); +OSSL_DEPRECATEDIN_3_0 int +(*EVP_CIPHER_meth_get_cleanup(const EVP_CIPHER *cipher))(EVP_CIPHER_CTX *); +OSSL_DEPRECATEDIN_3_0 int +(*EVP_CIPHER_meth_get_set_asn1_params(const EVP_CIPHER *cipher))(EVP_CIPHER_CTX *, + ASN1_TYPE *); +OSSL_DEPRECATEDIN_3_0 int +(*EVP_CIPHER_meth_get_get_asn1_params(const EVP_CIPHER *cipher))(EVP_CIPHER_CTX *, + ASN1_TYPE *); +OSSL_DEPRECATEDIN_3_0 int +(*EVP_CIPHER_meth_get_ctrl(const EVP_CIPHER *cipher))(EVP_CIPHER_CTX *, int type, + int arg, void *ptr); +# endif + +/* Values for cipher flags */ + +/* Modes for ciphers */ + +# define EVP_CIPH_STREAM_CIPHER 0x0 +# define EVP_CIPH_ECB_MODE 0x1 +# define EVP_CIPH_CBC_MODE 0x2 +# define EVP_CIPH_CFB_MODE 0x3 +# define EVP_CIPH_OFB_MODE 0x4 +# define EVP_CIPH_CTR_MODE 0x5 +# define EVP_CIPH_GCM_MODE 0x6 +# define EVP_CIPH_CCM_MODE 0x7 +# define EVP_CIPH_XTS_MODE 0x10001 +# define EVP_CIPH_WRAP_MODE 0x10002 +# define EVP_CIPH_OCB_MODE 0x10003 +# define EVP_CIPH_SIV_MODE 0x10004 +# define EVP_CIPH_GCM_SIV_MODE 0x10005 +# define EVP_CIPH_MODE 0xF0007 +/* Set if variable length cipher */ +# define EVP_CIPH_VARIABLE_LENGTH 0x8 +/* Set if the iv handling should be done by the cipher itself */ +# define EVP_CIPH_CUSTOM_IV 0x10 +/* Set if the cipher's init() function should be called if key is NULL */ +# define EVP_CIPH_ALWAYS_CALL_INIT 0x20 +/* Call ctrl() to init cipher parameters */ +# define EVP_CIPH_CTRL_INIT 0x40 +/* Don't use standard key length function */ +# define EVP_CIPH_CUSTOM_KEY_LENGTH 0x80 +/* Don't use standard block padding */ +# define EVP_CIPH_NO_PADDING 0x100 +/* cipher handles random key generation */ +# define EVP_CIPH_RAND_KEY 0x200 +/* cipher has its own additional copying logic */ +# define EVP_CIPH_CUSTOM_COPY 0x400 +/* Don't use standard iv length function */ +# define EVP_CIPH_CUSTOM_IV_LENGTH 0x800 +/* Legacy and no longer relevant: Allow use default ASN1 get/set iv */ +# define EVP_CIPH_FLAG_DEFAULT_ASN1 0 +/* Free: 0x1000 */ +/* Buffer length in bits not bytes: CFB1 mode only */ +# define EVP_CIPH_FLAG_LENGTH_BITS 0x2000 +/* Deprecated FIPS flag: was 0x4000 */ +# define EVP_CIPH_FLAG_FIPS 0 +/* Deprecated FIPS flag: was 0x8000 */ +# define EVP_CIPH_FLAG_NON_FIPS_ALLOW 0 + +/* + * Cipher handles any and all padding logic as well as finalisation. + */ +# define EVP_CIPH_FLAG_CTS 0x4000 +# define EVP_CIPH_FLAG_CUSTOM_CIPHER 0x100000 +# define EVP_CIPH_FLAG_AEAD_CIPHER 0x200000 +# define EVP_CIPH_FLAG_TLS1_1_MULTIBLOCK 0x400000 +/* Cipher can handle pipeline operations */ +# define EVP_CIPH_FLAG_PIPELINE 0X800000 +/* For provider implementations that handle ASN1 get/set param themselves */ +# define EVP_CIPH_FLAG_CUSTOM_ASN1 0x1000000 +/* For ciphers generating unprotected CMS attributes */ +# define EVP_CIPH_FLAG_CIPHER_WITH_MAC 0x2000000 +/* For supplementary wrap cipher support */ +# define EVP_CIPH_FLAG_GET_WRAP_CIPHER 0x4000000 +# define EVP_CIPH_FLAG_INVERSE_CIPHER 0x8000000 + +/* + * Cipher context flag to indicate we can handle wrap mode: if allowed in + * older applications it could overflow buffers. + */ + +# define EVP_CIPHER_CTX_FLAG_WRAP_ALLOW 0x1 + +/* ctrl() values */ + +# define EVP_CTRL_INIT 0x0 +# define EVP_CTRL_SET_KEY_LENGTH 0x1 +# define EVP_CTRL_GET_RC2_KEY_BITS 0x2 +# define EVP_CTRL_SET_RC2_KEY_BITS 0x3 +# define EVP_CTRL_GET_RC5_ROUNDS 0x4 +# define EVP_CTRL_SET_RC5_ROUNDS 0x5 +# define EVP_CTRL_RAND_KEY 0x6 +# define EVP_CTRL_PBE_PRF_NID 0x7 +# define EVP_CTRL_COPY 0x8 +# define EVP_CTRL_AEAD_SET_IVLEN 0x9 +# define EVP_CTRL_AEAD_GET_TAG 0x10 +# define EVP_CTRL_AEAD_SET_TAG 0x11 +# define EVP_CTRL_AEAD_SET_IV_FIXED 0x12 +# define EVP_CTRL_GCM_SET_IVLEN EVP_CTRL_AEAD_SET_IVLEN +# define EVP_CTRL_GCM_GET_TAG EVP_CTRL_AEAD_GET_TAG +# define EVP_CTRL_GCM_SET_TAG EVP_CTRL_AEAD_SET_TAG +# define EVP_CTRL_GCM_SET_IV_FIXED EVP_CTRL_AEAD_SET_IV_FIXED +# define EVP_CTRL_GCM_IV_GEN 0x13 +# define EVP_CTRL_CCM_SET_IVLEN EVP_CTRL_AEAD_SET_IVLEN +# define EVP_CTRL_CCM_GET_TAG EVP_CTRL_AEAD_GET_TAG +# define EVP_CTRL_CCM_SET_TAG EVP_CTRL_AEAD_SET_TAG +# define EVP_CTRL_CCM_SET_IV_FIXED EVP_CTRL_AEAD_SET_IV_FIXED +# define EVP_CTRL_CCM_SET_L 0x14 +# define EVP_CTRL_CCM_SET_MSGLEN 0x15 +/* + * AEAD cipher deduces payload length and returns number of bytes required to + * store MAC and eventual padding. Subsequent call to EVP_Cipher even + * appends/verifies MAC. + */ +# define EVP_CTRL_AEAD_TLS1_AAD 0x16 +/* Used by composite AEAD ciphers, no-op in GCM, CCM... */ +# define EVP_CTRL_AEAD_SET_MAC_KEY 0x17 +/* Set the GCM invocation field, decrypt only */ +# define EVP_CTRL_GCM_SET_IV_INV 0x18 + +# define EVP_CTRL_TLS1_1_MULTIBLOCK_AAD 0x19 +# define EVP_CTRL_TLS1_1_MULTIBLOCK_ENCRYPT 0x1a +# define EVP_CTRL_TLS1_1_MULTIBLOCK_DECRYPT 0x1b +# define EVP_CTRL_TLS1_1_MULTIBLOCK_MAX_BUFSIZE 0x1c + +# define EVP_CTRL_SSL3_MASTER_SECRET 0x1d + +/* EVP_CTRL_SET_SBOX takes the char * specifying S-boxes */ +# define EVP_CTRL_SET_SBOX 0x1e +/* + * EVP_CTRL_SBOX_USED takes a 'size_t' and 'char *', pointing at a + * pre-allocated buffer with specified size + */ +# define EVP_CTRL_SBOX_USED 0x1f +/* EVP_CTRL_KEY_MESH takes 'size_t' number of bytes to mesh the key after, + * 0 switches meshing off + */ +# define EVP_CTRL_KEY_MESH 0x20 +/* EVP_CTRL_BLOCK_PADDING_MODE takes the padding mode */ +# define EVP_CTRL_BLOCK_PADDING_MODE 0x21 + +/* Set the output buffers to use for a pipelined operation */ +# define EVP_CTRL_SET_PIPELINE_OUTPUT_BUFS 0x22 +/* Set the input buffers to use for a pipelined operation */ +# define EVP_CTRL_SET_PIPELINE_INPUT_BUFS 0x23 +/* Set the input buffer lengths to use for a pipelined operation */ +# define EVP_CTRL_SET_PIPELINE_INPUT_LENS 0x24 +/* Get the IV length used by the cipher */ +# define EVP_CTRL_GET_IVLEN 0x25 +/* 0x26 is unused */ +/* Tell the cipher it's doing a speed test (SIV disallows multiple ops) */ +# define EVP_CTRL_SET_SPEED 0x27 +/* Get the unprotectedAttrs from cipher ctx */ +# define EVP_CTRL_PROCESS_UNPROTECTED 0x28 +/* Get the supplementary wrap cipher */ +#define EVP_CTRL_GET_WRAP_CIPHER 0x29 +/* TLSTREE key diversification */ +#define EVP_CTRL_TLSTREE 0x2A + +/* Padding modes */ +#define EVP_PADDING_PKCS7 1 +#define EVP_PADDING_ISO7816_4 2 +#define EVP_PADDING_ANSI923 3 +#define EVP_PADDING_ISO10126 4 +#define EVP_PADDING_ZERO 5 + +/* RFC 5246 defines additional data to be 13 bytes in length */ +# define EVP_AEAD_TLS1_AAD_LEN 13 + +typedef struct { + unsigned char *out; + const unsigned char *inp; + size_t len; + unsigned int interleave; +} EVP_CTRL_TLS1_1_MULTIBLOCK_PARAM; + +/* GCM TLS constants */ +/* Length of fixed part of IV derived from PRF */ +# define EVP_GCM_TLS_FIXED_IV_LEN 4 +/* Length of explicit part of IV part of TLS records */ +# define EVP_GCM_TLS_EXPLICIT_IV_LEN 8 +/* Length of tag for TLS */ +# define EVP_GCM_TLS_TAG_LEN 16 + +/* CCM TLS constants */ +/* Length of fixed part of IV derived from PRF */ +# define EVP_CCM_TLS_FIXED_IV_LEN 4 +/* Length of explicit part of IV part of TLS records */ +# define EVP_CCM_TLS_EXPLICIT_IV_LEN 8 +/* Total length of CCM IV length for TLS */ +# define EVP_CCM_TLS_IV_LEN 12 +/* Length of tag for TLS */ +# define EVP_CCM_TLS_TAG_LEN 16 +/* Length of CCM8 tag for TLS */ +# define EVP_CCM8_TLS_TAG_LEN 8 + +/* Length of tag for TLS */ +# define EVP_CHACHAPOLY_TLS_TAG_LEN 16 + +typedef struct evp_cipher_info_st { + const EVP_CIPHER *cipher; + unsigned char iv[EVP_MAX_IV_LENGTH]; +} EVP_CIPHER_INFO; + + +/* Password based encryption function */ +typedef int (EVP_PBE_KEYGEN) (EVP_CIPHER_CTX *ctx, const char *pass, + int passlen, ASN1_TYPE *param, + const EVP_CIPHER *cipher, const EVP_MD *md, + int en_de); + +typedef int (EVP_PBE_KEYGEN_EX) (EVP_CIPHER_CTX *ctx, const char *pass, + int passlen, ASN1_TYPE *param, + const EVP_CIPHER *cipher, const EVP_MD *md, + int en_de, OSSL_LIB_CTX *libctx, const char *propq); + +# ifndef OPENSSL_NO_DEPRECATED_3_0 +# define EVP_PKEY_assign_RSA(pkey,rsa) EVP_PKEY_assign((pkey),EVP_PKEY_RSA,\ + (rsa)) +# endif + +# ifndef OPENSSL_NO_DSA +# define EVP_PKEY_assign_DSA(pkey,dsa) EVP_PKEY_assign((pkey),EVP_PKEY_DSA,\ + (dsa)) +# endif + +# if !defined(OPENSSL_NO_DH) && !defined(OPENSSL_NO_DEPRECATED_3_0) +# define EVP_PKEY_assign_DH(pkey,dh) EVP_PKEY_assign((pkey),EVP_PKEY_DH,(dh)) +# endif + +# ifndef OPENSSL_NO_DEPRECATED_3_0 +# ifndef OPENSSL_NO_EC +# define EVP_PKEY_assign_EC_KEY(pkey,eckey) \ + EVP_PKEY_assign((pkey), EVP_PKEY_EC, (eckey)) +# endif +# endif +# ifndef OPENSSL_NO_SIPHASH +# define EVP_PKEY_assign_SIPHASH(pkey,shkey) EVP_PKEY_assign((pkey),\ + EVP_PKEY_SIPHASH,(shkey)) +# endif + +# ifndef OPENSSL_NO_POLY1305 +# define EVP_PKEY_assign_POLY1305(pkey,polykey) EVP_PKEY_assign((pkey),\ + EVP_PKEY_POLY1305,(polykey)) +# endif + +/* Add some extra combinations */ +# define EVP_get_digestbynid(a) EVP_get_digestbyname(OBJ_nid2sn(a)) +# define EVP_get_digestbyobj(a) EVP_get_digestbynid(OBJ_obj2nid(a)) +# define EVP_get_cipherbynid(a) EVP_get_cipherbyname(OBJ_nid2sn(a)) +# define EVP_get_cipherbyobj(a) EVP_get_cipherbynid(OBJ_obj2nid(a)) + +int EVP_MD_get_type(const EVP_MD *md); +# define EVP_MD_type EVP_MD_get_type +# define EVP_MD_nid EVP_MD_get_type +const char *EVP_MD_get0_name(const EVP_MD *md); +# define EVP_MD_name EVP_MD_get0_name +const char *EVP_MD_get0_description(const EVP_MD *md); +int EVP_MD_is_a(const EVP_MD *md, const char *name); +int EVP_MD_names_do_all(const EVP_MD *md, + void (*fn)(const char *name, void *data), + void *data); +const OSSL_PROVIDER *EVP_MD_get0_provider(const EVP_MD *md); +int EVP_MD_get_pkey_type(const EVP_MD *md); +# define EVP_MD_pkey_type EVP_MD_get_pkey_type +int EVP_MD_get_size(const EVP_MD *md); +# define EVP_MD_size EVP_MD_get_size +int EVP_MD_get_block_size(const EVP_MD *md); +# define EVP_MD_block_size EVP_MD_get_block_size +unsigned long EVP_MD_get_flags(const EVP_MD *md); +# define EVP_MD_flags EVP_MD_get_flags +int EVP_MD_xof(const EVP_MD *md); + +const EVP_MD *EVP_MD_CTX_get0_md(const EVP_MD_CTX *ctx); +EVP_MD *EVP_MD_CTX_get1_md(EVP_MD_CTX *ctx); +# ifndef OPENSSL_NO_DEPRECATED_3_0 +OSSL_DEPRECATEDIN_3_0 +const EVP_MD *EVP_MD_CTX_md(const EVP_MD_CTX *ctx); +OSSL_DEPRECATEDIN_3_0 +int (*EVP_MD_CTX_update_fn(EVP_MD_CTX *ctx))(EVP_MD_CTX *ctx, + const void *data, size_t count); +OSSL_DEPRECATEDIN_3_0 +void EVP_MD_CTX_set_update_fn(EVP_MD_CTX *ctx, + int (*update) (EVP_MD_CTX *ctx, + const void *data, size_t count)); +# endif +int EVP_MD_CTX_get_size_ex(const EVP_MD_CTX *ctx); + +# define EVP_MD_CTX_get0_name(e) EVP_MD_get0_name(EVP_MD_CTX_get0_md(e)) +# define EVP_MD_CTX_get_size(e) EVP_MD_CTX_get_size_ex(e) +# define EVP_MD_CTX_size EVP_MD_CTX_get_size_ex +# define EVP_MD_CTX_get_block_size(e) EVP_MD_get_block_size(EVP_MD_CTX_get0_md(e)) +# define EVP_MD_CTX_block_size EVP_MD_CTX_get_block_size +# define EVP_MD_CTX_get_type(e) EVP_MD_get_type(EVP_MD_CTX_get0_md(e)) +# define EVP_MD_CTX_type EVP_MD_CTX_get_type +EVP_PKEY_CTX *EVP_MD_CTX_get_pkey_ctx(const EVP_MD_CTX *ctx); +# define EVP_MD_CTX_pkey_ctx EVP_MD_CTX_get_pkey_ctx +void EVP_MD_CTX_set_pkey_ctx(EVP_MD_CTX *ctx, EVP_PKEY_CTX *pctx); +void *EVP_MD_CTX_get0_md_data(const EVP_MD_CTX *ctx); +# define EVP_MD_CTX_md_data EVP_MD_CTX_get0_md_data + +int EVP_CIPHER_get_nid(const EVP_CIPHER *cipher); +# define EVP_CIPHER_nid EVP_CIPHER_get_nid +const char *EVP_CIPHER_get0_name(const EVP_CIPHER *cipher); +# define EVP_CIPHER_name EVP_CIPHER_get0_name +const char *EVP_CIPHER_get0_description(const EVP_CIPHER *cipher); +int EVP_CIPHER_is_a(const EVP_CIPHER *cipher, const char *name); +int EVP_CIPHER_names_do_all(const EVP_CIPHER *cipher, + void (*fn)(const char *name, void *data), + void *data); +const OSSL_PROVIDER *EVP_CIPHER_get0_provider(const EVP_CIPHER *cipher); +int EVP_CIPHER_get_block_size(const EVP_CIPHER *cipher); +# define EVP_CIPHER_block_size EVP_CIPHER_get_block_size +# ifndef OPENSSL_NO_DEPRECATED_3_0 +OSSL_DEPRECATEDIN_3_0 +int EVP_CIPHER_impl_ctx_size(const EVP_CIPHER *cipher); +# endif +int EVP_CIPHER_get_key_length(const EVP_CIPHER *cipher); +# define EVP_CIPHER_key_length EVP_CIPHER_get_key_length +int EVP_CIPHER_get_iv_length(const EVP_CIPHER *cipher); +# define EVP_CIPHER_iv_length EVP_CIPHER_get_iv_length +unsigned long EVP_CIPHER_get_flags(const EVP_CIPHER *cipher); +# define EVP_CIPHER_flags EVP_CIPHER_get_flags +int EVP_CIPHER_get_mode(const EVP_CIPHER *cipher); +# define EVP_CIPHER_mode EVP_CIPHER_get_mode +int EVP_CIPHER_get_type(const EVP_CIPHER *cipher); +# define EVP_CIPHER_type EVP_CIPHER_get_type +EVP_CIPHER *EVP_CIPHER_fetch(OSSL_LIB_CTX *ctx, const char *algorithm, + const char *properties); +int EVP_CIPHER_can_pipeline(const EVP_CIPHER *cipher, int enc); +int EVP_CIPHER_up_ref(EVP_CIPHER *cipher); +void EVP_CIPHER_free(EVP_CIPHER *cipher); + +const EVP_CIPHER *EVP_CIPHER_CTX_get0_cipher(const EVP_CIPHER_CTX *ctx); +EVP_CIPHER *EVP_CIPHER_CTX_get1_cipher(EVP_CIPHER_CTX *ctx); +int EVP_CIPHER_CTX_is_encrypting(const EVP_CIPHER_CTX *ctx); +# define EVP_CIPHER_CTX_encrypting EVP_CIPHER_CTX_is_encrypting +int EVP_CIPHER_CTX_get_nid(const EVP_CIPHER_CTX *ctx); +# define EVP_CIPHER_CTX_nid EVP_CIPHER_CTX_get_nid +int EVP_CIPHER_CTX_get_block_size(const EVP_CIPHER_CTX *ctx); +# define EVP_CIPHER_CTX_block_size EVP_CIPHER_CTX_get_block_size +int EVP_CIPHER_CTX_get_key_length(const EVP_CIPHER_CTX *ctx); +# define EVP_CIPHER_CTX_key_length EVP_CIPHER_CTX_get_key_length +int EVP_CIPHER_CTX_get_iv_length(const EVP_CIPHER_CTX *ctx); +# define EVP_CIPHER_CTX_iv_length EVP_CIPHER_CTX_get_iv_length +int EVP_CIPHER_CTX_get_tag_length(const EVP_CIPHER_CTX *ctx); +# define EVP_CIPHER_CTX_tag_length EVP_CIPHER_CTX_get_tag_length +# ifndef OPENSSL_NO_DEPRECATED_3_0 +const EVP_CIPHER *EVP_CIPHER_CTX_cipher(const EVP_CIPHER_CTX *ctx); +OSSL_DEPRECATEDIN_3_0 const unsigned char *EVP_CIPHER_CTX_iv(const EVP_CIPHER_CTX *ctx); +OSSL_DEPRECATEDIN_3_0 const unsigned char *EVP_CIPHER_CTX_original_iv(const EVP_CIPHER_CTX *ctx); +OSSL_DEPRECATEDIN_3_0 unsigned char *EVP_CIPHER_CTX_iv_noconst(EVP_CIPHER_CTX *ctx); +# endif +int EVP_CIPHER_CTX_get_updated_iv(EVP_CIPHER_CTX *ctx, void *buf, size_t len); +int EVP_CIPHER_CTX_get_original_iv(EVP_CIPHER_CTX *ctx, void *buf, size_t len); +# ifndef OPENSSL_NO_DEPRECATED_3_0 +OSSL_DEPRECATEDIN_3_0 +unsigned char *EVP_CIPHER_CTX_buf_noconst(EVP_CIPHER_CTX *ctx); +# endif +int EVP_CIPHER_CTX_get_num(const EVP_CIPHER_CTX *ctx); +# define EVP_CIPHER_CTX_num EVP_CIPHER_CTX_get_num +int EVP_CIPHER_CTX_set_num(EVP_CIPHER_CTX *ctx, int num); +EVP_CIPHER_CTX *EVP_CIPHER_CTX_dup(const EVP_CIPHER_CTX *in); +int EVP_CIPHER_CTX_copy(EVP_CIPHER_CTX *out, const EVP_CIPHER_CTX *in); +void *EVP_CIPHER_CTX_get_app_data(const EVP_CIPHER_CTX *ctx); +void EVP_CIPHER_CTX_set_app_data(EVP_CIPHER_CTX *ctx, void *data); +void *EVP_CIPHER_CTX_get_cipher_data(const EVP_CIPHER_CTX *ctx); +void *EVP_CIPHER_CTX_set_cipher_data(EVP_CIPHER_CTX *ctx, void *cipher_data); +# define EVP_CIPHER_CTX_get0_name(c) EVP_CIPHER_get0_name(EVP_CIPHER_CTX_get0_cipher(c)) +# define EVP_CIPHER_CTX_get_type(c) EVP_CIPHER_get_type(EVP_CIPHER_CTX_get0_cipher(c)) +# define EVP_CIPHER_CTX_type EVP_CIPHER_CTX_get_type +# ifndef OPENSSL_NO_DEPRECATED_1_1_0 +# define EVP_CIPHER_CTX_flags(c) EVP_CIPHER_get_flags(EVP_CIPHER_CTX_get0_cipher(c)) +# endif +# define EVP_CIPHER_CTX_get_mode(c) EVP_CIPHER_get_mode(EVP_CIPHER_CTX_get0_cipher(c)) +# define EVP_CIPHER_CTX_mode EVP_CIPHER_CTX_get_mode + +# define EVP_ENCODE_LENGTH(l) ((((l)+2)/3*4)+((l)/48+1)*2+80) +# define EVP_DECODE_LENGTH(l) (((l)+3)/4*3+80) + +# define EVP_SignInit_ex(a,b,c) EVP_DigestInit_ex(a,b,c) +# define EVP_SignInit(a,b) EVP_DigestInit(a,b) +# define EVP_SignUpdate(a,b,c) EVP_DigestUpdate(a,b,c) +# define EVP_VerifyInit_ex(a,b,c) EVP_DigestInit_ex(a,b,c) +# define EVP_VerifyInit(a,b) EVP_DigestInit(a,b) +# define EVP_VerifyUpdate(a,b,c) EVP_DigestUpdate(a,b,c) +# define EVP_OpenUpdate(a,b,c,d,e) EVP_DecryptUpdate(a,b,c,d,e) +# define EVP_SealUpdate(a,b,c,d,e) EVP_EncryptUpdate(a,b,c,d,e) + +# ifdef CONST_STRICT +void BIO_set_md(BIO *, const EVP_MD *md); +# else +# define BIO_set_md(b,md) BIO_ctrl(b,BIO_C_SET_MD,0,(void *)(md)) +# endif +# define BIO_get_md(b,mdp) BIO_ctrl(b,BIO_C_GET_MD,0,(mdp)) +# define BIO_get_md_ctx(b,mdcp) BIO_ctrl(b,BIO_C_GET_MD_CTX,0,(mdcp)) +# define BIO_set_md_ctx(b,mdcp) BIO_ctrl(b,BIO_C_SET_MD_CTX,0,(mdcp)) +# define BIO_get_cipher_status(b) BIO_ctrl(b,BIO_C_GET_CIPHER_STATUS,0,NULL) +# define BIO_get_cipher_ctx(b,c_pp) BIO_ctrl(b,BIO_C_GET_CIPHER_CTX,0,(c_pp)) + +__owur int EVP_Cipher(EVP_CIPHER_CTX *c, + unsigned char *out, + const unsigned char *in, unsigned int inl); + +# define EVP_add_cipher_alias(n,alias) \ + OBJ_NAME_add((alias),OBJ_NAME_TYPE_CIPHER_METH|OBJ_NAME_ALIAS,(n)) +# define EVP_add_digest_alias(n,alias) \ + OBJ_NAME_add((alias),OBJ_NAME_TYPE_MD_METH|OBJ_NAME_ALIAS,(n)) +# define EVP_delete_cipher_alias(alias) \ + OBJ_NAME_remove(alias,OBJ_NAME_TYPE_CIPHER_METH|OBJ_NAME_ALIAS); +# define EVP_delete_digest_alias(alias) \ + OBJ_NAME_remove(alias,OBJ_NAME_TYPE_MD_METH|OBJ_NAME_ALIAS); + +int EVP_MD_get_params(const EVP_MD *digest, OSSL_PARAM params[]); +int EVP_MD_CTX_set_params(EVP_MD_CTX *ctx, const OSSL_PARAM params[]); +int EVP_MD_CTX_get_params(EVP_MD_CTX *ctx, OSSL_PARAM params[]); +const OSSL_PARAM *EVP_MD_gettable_params(const EVP_MD *digest); +const OSSL_PARAM *EVP_MD_settable_ctx_params(const EVP_MD *md); +const OSSL_PARAM *EVP_MD_gettable_ctx_params(const EVP_MD *md); +const OSSL_PARAM *EVP_MD_CTX_settable_params(EVP_MD_CTX *ctx); +const OSSL_PARAM *EVP_MD_CTX_gettable_params(EVP_MD_CTX *ctx); +int EVP_MD_CTX_ctrl(EVP_MD_CTX *ctx, int cmd, int p1, void *p2); +EVP_MD_CTX *EVP_MD_CTX_new(void); +int EVP_MD_CTX_reset(EVP_MD_CTX *ctx); +void EVP_MD_CTX_free(EVP_MD_CTX *ctx); +# define EVP_MD_CTX_create() EVP_MD_CTX_new() +# define EVP_MD_CTX_init(ctx) EVP_MD_CTX_reset((ctx)) +# define EVP_MD_CTX_destroy(ctx) EVP_MD_CTX_free((ctx)) +__owur EVP_MD_CTX *EVP_MD_CTX_dup(const EVP_MD_CTX *in); +__owur int EVP_MD_CTX_copy_ex(EVP_MD_CTX *out, const EVP_MD_CTX *in); +void EVP_MD_CTX_set_flags(EVP_MD_CTX *ctx, int flags); +void EVP_MD_CTX_clear_flags(EVP_MD_CTX *ctx, int flags); +int EVP_MD_CTX_test_flags(const EVP_MD_CTX *ctx, int flags); +__owur int EVP_DigestInit_ex2(EVP_MD_CTX *ctx, const EVP_MD *type, + const OSSL_PARAM params[]); +__owur int EVP_DigestInit_ex(EVP_MD_CTX *ctx, const EVP_MD *type, + ENGINE *impl); +__owur int EVP_DigestUpdate(EVP_MD_CTX *ctx, const void *d, + size_t cnt); +__owur int EVP_DigestFinal_ex(EVP_MD_CTX *ctx, unsigned char *md, + unsigned int *s); +__owur int EVP_Digest(const void *data, size_t count, + unsigned char *md, unsigned int *size, + const EVP_MD *type, ENGINE *impl); +__owur int EVP_Q_digest(OSSL_LIB_CTX *libctx, const char *name, + const char *propq, const void *data, size_t datalen, + unsigned char *md, size_t *mdlen); + +__owur int EVP_MD_CTX_copy(EVP_MD_CTX *out, const EVP_MD_CTX *in); +__owur int EVP_DigestInit(EVP_MD_CTX *ctx, const EVP_MD *type); +__owur int EVP_DigestFinal(EVP_MD_CTX *ctx, unsigned char *md, + unsigned int *s); +__owur int EVP_DigestFinalXOF(EVP_MD_CTX *ctx, unsigned char *out, + size_t outlen); +__owur int EVP_DigestSqueeze(EVP_MD_CTX *ctx, unsigned char *out, + size_t outlen); + +__owur EVP_MD *EVP_MD_fetch(OSSL_LIB_CTX *ctx, const char *algorithm, + const char *properties); + +int EVP_MD_up_ref(EVP_MD *md); +void EVP_MD_free(EVP_MD *md); + +int EVP_read_pw_string(char *buf, int length, const char *prompt, int verify); +int EVP_read_pw_string_min(char *buf, int minlen, int maxlen, + const char *prompt, int verify); +void EVP_set_pw_prompt(const char *prompt); +char *EVP_get_pw_prompt(void); + +__owur int EVP_BytesToKey(const EVP_CIPHER *type, const EVP_MD *md, + const unsigned char *salt, + const unsigned char *data, int datal, int count, + unsigned char *key, unsigned char *iv); + +void EVP_CIPHER_CTX_set_flags(EVP_CIPHER_CTX *ctx, int flags); +void EVP_CIPHER_CTX_clear_flags(EVP_CIPHER_CTX *ctx, int flags); +int EVP_CIPHER_CTX_test_flags(const EVP_CIPHER_CTX *ctx, int flags); + +__owur int EVP_EncryptInit(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher, + const unsigned char *key, const unsigned char *iv); +__owur int EVP_EncryptInit_ex(EVP_CIPHER_CTX *ctx, + const EVP_CIPHER *cipher, ENGINE *impl, + const unsigned char *key, + const unsigned char *iv); +__owur int EVP_EncryptInit_ex2(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher, + const unsigned char *key, + const unsigned char *iv, + const OSSL_PARAM params[]); +__owur int EVP_EncryptUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out, + int *outl, const unsigned char *in, int inl); +__owur int EVP_EncryptFinal_ex(EVP_CIPHER_CTX *ctx, unsigned char *out, + int *outl); +__owur int EVP_EncryptFinal(EVP_CIPHER_CTX *ctx, unsigned char *out, + int *outl); + +__owur int EVP_DecryptInit(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher, + const unsigned char *key, const unsigned char *iv); +__owur int EVP_DecryptInit_ex(EVP_CIPHER_CTX *ctx, + const EVP_CIPHER *cipher, ENGINE *impl, + const unsigned char *key, + const unsigned char *iv); +__owur int EVP_DecryptInit_ex2(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher, + const unsigned char *key, + const unsigned char *iv, + const OSSL_PARAM params[]); +__owur int EVP_DecryptUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out, + int *outl, const unsigned char *in, int inl); +__owur int EVP_DecryptFinal(EVP_CIPHER_CTX *ctx, unsigned char *outm, + int *outl); +__owur int EVP_DecryptFinal_ex(EVP_CIPHER_CTX *ctx, unsigned char *outm, + int *outl); + +__owur int EVP_CipherInit(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher, + const unsigned char *key, const unsigned char *iv, + int enc); +__owur int EVP_CipherInit_ex(EVP_CIPHER_CTX *ctx, + const EVP_CIPHER *cipher, ENGINE *impl, + const unsigned char *key, + const unsigned char *iv, int enc); +__owur int EVP_CipherInit_SKEY(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher, + EVP_SKEY *skey, const unsigned char *iv, size_t iv_len, + int enc, const OSSL_PARAM params[]); +__owur int EVP_CipherInit_ex2(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher, + const unsigned char *key, const unsigned char *iv, + int enc, const OSSL_PARAM params[]); +__owur int EVP_CipherUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out, + int *outl, const unsigned char *in, int inl); +__owur int EVP_CipherFinal(EVP_CIPHER_CTX *ctx, unsigned char *outm, + int *outl); +__owur int EVP_CipherPipelineEncryptInit(EVP_CIPHER_CTX *ctx, + const EVP_CIPHER *cipher, + const unsigned char *key, size_t keylen, + size_t numpipes, + const unsigned char **iv, size_t ivlen); +__owur int EVP_CipherPipelineDecryptInit(EVP_CIPHER_CTX *ctx, + const EVP_CIPHER *cipher, + const unsigned char *key, size_t keylen, + size_t numpipes, + const unsigned char **iv, size_t ivlen); +__owur int EVP_CipherPipelineUpdate(EVP_CIPHER_CTX *ctx, + unsigned char **out, size_t *outl, + const size_t *outsize, + const unsigned char **in, const size_t *inl); +__owur int EVP_CipherPipelineFinal(EVP_CIPHER_CTX *ctx, + unsigned char **outm, size_t *outl, + const size_t *outsize); +__owur int EVP_CipherFinal_ex(EVP_CIPHER_CTX *ctx, unsigned char *outm, + int *outl); + +__owur int EVP_SignFinal(EVP_MD_CTX *ctx, unsigned char *md, unsigned int *s, + EVP_PKEY *pkey); +__owur int EVP_SignFinal_ex(EVP_MD_CTX *ctx, unsigned char *md, unsigned int *s, + EVP_PKEY *pkey, OSSL_LIB_CTX *libctx, + const char *propq); + +__owur int EVP_DigestSign(EVP_MD_CTX *ctx, unsigned char *sigret, + size_t *siglen, const unsigned char *tbs, + size_t tbslen); + +__owur int EVP_VerifyFinal(EVP_MD_CTX *ctx, const unsigned char *sigbuf, + unsigned int siglen, EVP_PKEY *pkey); +__owur int EVP_VerifyFinal_ex(EVP_MD_CTX *ctx, const unsigned char *sigbuf, + unsigned int siglen, EVP_PKEY *pkey, + OSSL_LIB_CTX *libctx, const char *propq); + +__owur int EVP_DigestVerify(EVP_MD_CTX *ctx, const unsigned char *sigret, + size_t siglen, const unsigned char *tbs, + size_t tbslen); + +__owur int EVP_DigestSignInit_ex(EVP_MD_CTX *ctx, EVP_PKEY_CTX **pctx, + const char *mdname, OSSL_LIB_CTX *libctx, + const char *props, EVP_PKEY *pkey, + const OSSL_PARAM params[]); +__owur int EVP_DigestSignInit(EVP_MD_CTX *ctx, EVP_PKEY_CTX **pctx, + const EVP_MD *type, ENGINE *e, + EVP_PKEY *pkey); +__owur int EVP_DigestSignUpdate(EVP_MD_CTX *ctx, const void *data, size_t dsize); +__owur int EVP_DigestSignFinal(EVP_MD_CTX *ctx, unsigned char *sigret, + size_t *siglen); + +__owur int EVP_DigestVerifyInit_ex(EVP_MD_CTX *ctx, EVP_PKEY_CTX **pctx, + const char *mdname, OSSL_LIB_CTX *libctx, + const char *props, EVP_PKEY *pkey, + const OSSL_PARAM params[]); +__owur int EVP_DigestVerifyInit(EVP_MD_CTX *ctx, EVP_PKEY_CTX **pctx, + const EVP_MD *type, ENGINE *e, + EVP_PKEY *pkey); +int EVP_DigestVerifyUpdate(EVP_MD_CTX *ctx, const void *data, size_t dsize); +__owur int EVP_DigestVerifyFinal(EVP_MD_CTX *ctx, const unsigned char *sig, + size_t siglen); + +__owur int EVP_OpenInit(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *type, + const unsigned char *ek, int ekl, + const unsigned char *iv, EVP_PKEY *priv); +__owur int EVP_OpenFinal(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl); + +__owur int EVP_SealInit(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *type, + unsigned char **ek, int *ekl, unsigned char *iv, + EVP_PKEY **pubk, int npubk); +__owur int EVP_SealFinal(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl); + +EVP_ENCODE_CTX *EVP_ENCODE_CTX_new(void); +void EVP_ENCODE_CTX_free(EVP_ENCODE_CTX *ctx); +int EVP_ENCODE_CTX_copy(EVP_ENCODE_CTX *dctx, const EVP_ENCODE_CTX *sctx); +int EVP_ENCODE_CTX_num(EVP_ENCODE_CTX *ctx); +void EVP_EncodeInit(EVP_ENCODE_CTX *ctx); +int EVP_EncodeUpdate(EVP_ENCODE_CTX *ctx, unsigned char *out, int *outl, + const unsigned char *in, int inl); +void EVP_EncodeFinal(EVP_ENCODE_CTX *ctx, unsigned char *out, int *outl); +int EVP_EncodeBlock(unsigned char *t, const unsigned char *f, int n); + +void EVP_DecodeInit(EVP_ENCODE_CTX *ctx); +int EVP_DecodeUpdate(EVP_ENCODE_CTX *ctx, unsigned char *out, int *outl, + const unsigned char *in, int inl); +int EVP_DecodeFinal(EVP_ENCODE_CTX *ctx, unsigned + char *out, int *outl); +int EVP_DecodeBlock(unsigned char *t, const unsigned char *f, int n); + +# ifndef OPENSSL_NO_DEPRECATED_1_1_0 +# define EVP_CIPHER_CTX_init(c) EVP_CIPHER_CTX_reset(c) +# define EVP_CIPHER_CTX_cleanup(c) EVP_CIPHER_CTX_reset(c) +# endif +EVP_CIPHER_CTX *EVP_CIPHER_CTX_new(void); +int EVP_CIPHER_CTX_reset(EVP_CIPHER_CTX *c); +void EVP_CIPHER_CTX_free(EVP_CIPHER_CTX *c); +int EVP_CIPHER_CTX_set_key_length(EVP_CIPHER_CTX *x, int keylen); +int EVP_CIPHER_CTX_set_padding(EVP_CIPHER_CTX *c, int pad); +int EVP_CIPHER_CTX_ctrl(EVP_CIPHER_CTX *ctx, int type, int arg, void *ptr); +int EVP_CIPHER_CTX_rand_key(EVP_CIPHER_CTX *ctx, unsigned char *key); +int EVP_CIPHER_get_params(EVP_CIPHER *cipher, OSSL_PARAM params[]); +int EVP_CIPHER_CTX_set_params(EVP_CIPHER_CTX *ctx, const OSSL_PARAM params[]); +int EVP_CIPHER_CTX_get_params(EVP_CIPHER_CTX *ctx, OSSL_PARAM params[]); +const OSSL_PARAM *EVP_CIPHER_gettable_params(const EVP_CIPHER *cipher); +const OSSL_PARAM *EVP_CIPHER_settable_ctx_params(const EVP_CIPHER *cipher); +const OSSL_PARAM *EVP_CIPHER_gettable_ctx_params(const EVP_CIPHER *cipher); +const OSSL_PARAM *EVP_CIPHER_CTX_settable_params(EVP_CIPHER_CTX *ctx); +const OSSL_PARAM *EVP_CIPHER_CTX_gettable_params(EVP_CIPHER_CTX *ctx); + +int EVP_CIPHER_CTX_set_algor_params(EVP_CIPHER_CTX *ctx, const X509_ALGOR *alg); +int EVP_CIPHER_CTX_get_algor_params(EVP_CIPHER_CTX *ctx, X509_ALGOR *alg); +int EVP_CIPHER_CTX_get_algor(EVP_CIPHER_CTX *ctx, X509_ALGOR **alg); + +const BIO_METHOD *BIO_f_md(void); +const BIO_METHOD *BIO_f_base64(void); +const BIO_METHOD *BIO_f_cipher(void); +const BIO_METHOD *BIO_f_reliable(void); +__owur int BIO_set_cipher(BIO *b, const EVP_CIPHER *c, const unsigned char *k, + const unsigned char *i, int enc); + +const EVP_MD *EVP_md_null(void); +# ifndef OPENSSL_NO_MD2 +const EVP_MD *EVP_md2(void); +# endif +# ifndef OPENSSL_NO_MD4 +const EVP_MD *EVP_md4(void); +# endif +# ifndef OPENSSL_NO_MD5 +const EVP_MD *EVP_md5(void); +const EVP_MD *EVP_md5_sha1(void); +# endif +# ifndef OPENSSL_NO_BLAKE2 +const EVP_MD *EVP_blake2b512(void); +const EVP_MD *EVP_blake2s256(void); +# endif +const EVP_MD *EVP_sha1(void); +const EVP_MD *EVP_sha224(void); +const EVP_MD *EVP_sha256(void); +const EVP_MD *EVP_sha384(void); +const EVP_MD *EVP_sha512(void); +const EVP_MD *EVP_sha512_224(void); +const EVP_MD *EVP_sha512_256(void); +const EVP_MD *EVP_sha3_224(void); +const EVP_MD *EVP_sha3_256(void); +const EVP_MD *EVP_sha3_384(void); +const EVP_MD *EVP_sha3_512(void); +const EVP_MD *EVP_shake128(void); +const EVP_MD *EVP_shake256(void); + +# ifndef OPENSSL_NO_MDC2 +const EVP_MD *EVP_mdc2(void); +# endif +# ifndef OPENSSL_NO_RMD160 +const EVP_MD *EVP_ripemd160(void); +# endif +# ifndef OPENSSL_NO_WHIRLPOOL +const EVP_MD *EVP_whirlpool(void); +# endif +# ifndef OPENSSL_NO_SM3 +const EVP_MD *EVP_sm3(void); +# endif +const EVP_CIPHER *EVP_enc_null(void); /* does nothing :-) */ +# ifndef OPENSSL_NO_DES +const EVP_CIPHER *EVP_des_ecb(void); +const EVP_CIPHER *EVP_des_ede(void); +const EVP_CIPHER *EVP_des_ede3(void); +const EVP_CIPHER *EVP_des_ede_ecb(void); +const EVP_CIPHER *EVP_des_ede3_ecb(void); +const EVP_CIPHER *EVP_des_cfb64(void); +# define EVP_des_cfb EVP_des_cfb64 +const EVP_CIPHER *EVP_des_cfb1(void); +const EVP_CIPHER *EVP_des_cfb8(void); +const EVP_CIPHER *EVP_des_ede_cfb64(void); +# define EVP_des_ede_cfb EVP_des_ede_cfb64 +const EVP_CIPHER *EVP_des_ede3_cfb64(void); +# define EVP_des_ede3_cfb EVP_des_ede3_cfb64 +const EVP_CIPHER *EVP_des_ede3_cfb1(void); +const EVP_CIPHER *EVP_des_ede3_cfb8(void); +const EVP_CIPHER *EVP_des_ofb(void); +const EVP_CIPHER *EVP_des_ede_ofb(void); +const EVP_CIPHER *EVP_des_ede3_ofb(void); +const EVP_CIPHER *EVP_des_cbc(void); +const EVP_CIPHER *EVP_des_ede_cbc(void); +const EVP_CIPHER *EVP_des_ede3_cbc(void); +const EVP_CIPHER *EVP_desx_cbc(void); +const EVP_CIPHER *EVP_des_ede3_wrap(void); +/* + * This should now be supported through the dev_crypto ENGINE. But also, why + * are rc4 and md5 declarations made here inside a "NO_DES" precompiler + * branch? + */ +# endif +# ifndef OPENSSL_NO_RC4 +const EVP_CIPHER *EVP_rc4(void); +const EVP_CIPHER *EVP_rc4_40(void); +# ifndef OPENSSL_NO_MD5 +const EVP_CIPHER *EVP_rc4_hmac_md5(void); +# endif +# endif +# ifndef OPENSSL_NO_IDEA +const EVP_CIPHER *EVP_idea_ecb(void); +const EVP_CIPHER *EVP_idea_cfb64(void); +# define EVP_idea_cfb EVP_idea_cfb64 +const EVP_CIPHER *EVP_idea_ofb(void); +const EVP_CIPHER *EVP_idea_cbc(void); +# endif +# ifndef OPENSSL_NO_RC2 +const EVP_CIPHER *EVP_rc2_ecb(void); +const EVP_CIPHER *EVP_rc2_cbc(void); +const EVP_CIPHER *EVP_rc2_40_cbc(void); +const EVP_CIPHER *EVP_rc2_64_cbc(void); +const EVP_CIPHER *EVP_rc2_cfb64(void); +# define EVP_rc2_cfb EVP_rc2_cfb64 +const EVP_CIPHER *EVP_rc2_ofb(void); +# endif +# ifndef OPENSSL_NO_BF +const EVP_CIPHER *EVP_bf_ecb(void); +const EVP_CIPHER *EVP_bf_cbc(void); +const EVP_CIPHER *EVP_bf_cfb64(void); +# define EVP_bf_cfb EVP_bf_cfb64 +const EVP_CIPHER *EVP_bf_ofb(void); +# endif +# ifndef OPENSSL_NO_CAST +const EVP_CIPHER *EVP_cast5_ecb(void); +const EVP_CIPHER *EVP_cast5_cbc(void); +const EVP_CIPHER *EVP_cast5_cfb64(void); +# define EVP_cast5_cfb EVP_cast5_cfb64 +const EVP_CIPHER *EVP_cast5_ofb(void); +# endif +# ifndef OPENSSL_NO_RC5 +const EVP_CIPHER *EVP_rc5_32_12_16_cbc(void); +const EVP_CIPHER *EVP_rc5_32_12_16_ecb(void); +const EVP_CIPHER *EVP_rc5_32_12_16_cfb64(void); +# define EVP_rc5_32_12_16_cfb EVP_rc5_32_12_16_cfb64 +const EVP_CIPHER *EVP_rc5_32_12_16_ofb(void); +# endif +const EVP_CIPHER *EVP_aes_128_ecb(void); +const EVP_CIPHER *EVP_aes_128_cbc(void); +const EVP_CIPHER *EVP_aes_128_cfb1(void); +const EVP_CIPHER *EVP_aes_128_cfb8(void); +const EVP_CIPHER *EVP_aes_128_cfb128(void); +# define EVP_aes_128_cfb EVP_aes_128_cfb128 +const EVP_CIPHER *EVP_aes_128_ofb(void); +const EVP_CIPHER *EVP_aes_128_ctr(void); +const EVP_CIPHER *EVP_aes_128_ccm(void); +const EVP_CIPHER *EVP_aes_128_gcm(void); +const EVP_CIPHER *EVP_aes_128_xts(void); +const EVP_CIPHER *EVP_aes_128_wrap(void); +const EVP_CIPHER *EVP_aes_128_wrap_pad(void); +# ifndef OPENSSL_NO_OCB +const EVP_CIPHER *EVP_aes_128_ocb(void); +# endif +const EVP_CIPHER *EVP_aes_192_ecb(void); +const EVP_CIPHER *EVP_aes_192_cbc(void); +const EVP_CIPHER *EVP_aes_192_cfb1(void); +const EVP_CIPHER *EVP_aes_192_cfb8(void); +const EVP_CIPHER *EVP_aes_192_cfb128(void); +# define EVP_aes_192_cfb EVP_aes_192_cfb128 +const EVP_CIPHER *EVP_aes_192_ofb(void); +const EVP_CIPHER *EVP_aes_192_ctr(void); +const EVP_CIPHER *EVP_aes_192_ccm(void); +const EVP_CIPHER *EVP_aes_192_gcm(void); +const EVP_CIPHER *EVP_aes_192_wrap(void); +const EVP_CIPHER *EVP_aes_192_wrap_pad(void); +# ifndef OPENSSL_NO_OCB +const EVP_CIPHER *EVP_aes_192_ocb(void); +# endif +const EVP_CIPHER *EVP_aes_256_ecb(void); +const EVP_CIPHER *EVP_aes_256_cbc(void); +const EVP_CIPHER *EVP_aes_256_cfb1(void); +const EVP_CIPHER *EVP_aes_256_cfb8(void); +const EVP_CIPHER *EVP_aes_256_cfb128(void); +# define EVP_aes_256_cfb EVP_aes_256_cfb128 +const EVP_CIPHER *EVP_aes_256_ofb(void); +const EVP_CIPHER *EVP_aes_256_ctr(void); +const EVP_CIPHER *EVP_aes_256_ccm(void); +const EVP_CIPHER *EVP_aes_256_gcm(void); +const EVP_CIPHER *EVP_aes_256_xts(void); +const EVP_CIPHER *EVP_aes_256_wrap(void); +const EVP_CIPHER *EVP_aes_256_wrap_pad(void); +# ifndef OPENSSL_NO_OCB +const EVP_CIPHER *EVP_aes_256_ocb(void); +# endif +const EVP_CIPHER *EVP_aes_128_cbc_hmac_sha1(void); +const EVP_CIPHER *EVP_aes_256_cbc_hmac_sha1(void); +const EVP_CIPHER *EVP_aes_128_cbc_hmac_sha256(void); +const EVP_CIPHER *EVP_aes_256_cbc_hmac_sha256(void); +# ifndef OPENSSL_NO_ARIA +const EVP_CIPHER *EVP_aria_128_ecb(void); +const EVP_CIPHER *EVP_aria_128_cbc(void); +const EVP_CIPHER *EVP_aria_128_cfb1(void); +const EVP_CIPHER *EVP_aria_128_cfb8(void); +const EVP_CIPHER *EVP_aria_128_cfb128(void); +# define EVP_aria_128_cfb EVP_aria_128_cfb128 +const EVP_CIPHER *EVP_aria_128_ctr(void); +const EVP_CIPHER *EVP_aria_128_ofb(void); +const EVP_CIPHER *EVP_aria_128_gcm(void); +const EVP_CIPHER *EVP_aria_128_ccm(void); +const EVP_CIPHER *EVP_aria_192_ecb(void); +const EVP_CIPHER *EVP_aria_192_cbc(void); +const EVP_CIPHER *EVP_aria_192_cfb1(void); +const EVP_CIPHER *EVP_aria_192_cfb8(void); +const EVP_CIPHER *EVP_aria_192_cfb128(void); +# define EVP_aria_192_cfb EVP_aria_192_cfb128 +const EVP_CIPHER *EVP_aria_192_ctr(void); +const EVP_CIPHER *EVP_aria_192_ofb(void); +const EVP_CIPHER *EVP_aria_192_gcm(void); +const EVP_CIPHER *EVP_aria_192_ccm(void); +const EVP_CIPHER *EVP_aria_256_ecb(void); +const EVP_CIPHER *EVP_aria_256_cbc(void); +const EVP_CIPHER *EVP_aria_256_cfb1(void); +const EVP_CIPHER *EVP_aria_256_cfb8(void); +const EVP_CIPHER *EVP_aria_256_cfb128(void); +# define EVP_aria_256_cfb EVP_aria_256_cfb128 +const EVP_CIPHER *EVP_aria_256_ctr(void); +const EVP_CIPHER *EVP_aria_256_ofb(void); +const EVP_CIPHER *EVP_aria_256_gcm(void); +const EVP_CIPHER *EVP_aria_256_ccm(void); +# endif +# ifndef OPENSSL_NO_CAMELLIA +const EVP_CIPHER *EVP_camellia_128_ecb(void); +const EVP_CIPHER *EVP_camellia_128_cbc(void); +const EVP_CIPHER *EVP_camellia_128_cfb1(void); +const EVP_CIPHER *EVP_camellia_128_cfb8(void); +const EVP_CIPHER *EVP_camellia_128_cfb128(void); +# define EVP_camellia_128_cfb EVP_camellia_128_cfb128 +const EVP_CIPHER *EVP_camellia_128_ofb(void); +const EVP_CIPHER *EVP_camellia_128_ctr(void); +const EVP_CIPHER *EVP_camellia_192_ecb(void); +const EVP_CIPHER *EVP_camellia_192_cbc(void); +const EVP_CIPHER *EVP_camellia_192_cfb1(void); +const EVP_CIPHER *EVP_camellia_192_cfb8(void); +const EVP_CIPHER *EVP_camellia_192_cfb128(void); +# define EVP_camellia_192_cfb EVP_camellia_192_cfb128 +const EVP_CIPHER *EVP_camellia_192_ofb(void); +const EVP_CIPHER *EVP_camellia_192_ctr(void); +const EVP_CIPHER *EVP_camellia_256_ecb(void); +const EVP_CIPHER *EVP_camellia_256_cbc(void); +const EVP_CIPHER *EVP_camellia_256_cfb1(void); +const EVP_CIPHER *EVP_camellia_256_cfb8(void); +const EVP_CIPHER *EVP_camellia_256_cfb128(void); +# define EVP_camellia_256_cfb EVP_camellia_256_cfb128 +const EVP_CIPHER *EVP_camellia_256_ofb(void); +const EVP_CIPHER *EVP_camellia_256_ctr(void); +# endif +# ifndef OPENSSL_NO_CHACHA +const EVP_CIPHER *EVP_chacha20(void); +# ifndef OPENSSL_NO_POLY1305 +const EVP_CIPHER *EVP_chacha20_poly1305(void); +# endif +# endif + +# ifndef OPENSSL_NO_SEED +const EVP_CIPHER *EVP_seed_ecb(void); +const EVP_CIPHER *EVP_seed_cbc(void); +const EVP_CIPHER *EVP_seed_cfb128(void); +# define EVP_seed_cfb EVP_seed_cfb128 +const EVP_CIPHER *EVP_seed_ofb(void); +# endif + +# ifndef OPENSSL_NO_SM4 +const EVP_CIPHER *EVP_sm4_ecb(void); +const EVP_CIPHER *EVP_sm4_cbc(void); +const EVP_CIPHER *EVP_sm4_cfb128(void); +# define EVP_sm4_cfb EVP_sm4_cfb128 +const EVP_CIPHER *EVP_sm4_ofb(void); +const EVP_CIPHER *EVP_sm4_ctr(void); +# endif + +# ifndef OPENSSL_NO_DEPRECATED_1_1_0 +# define OPENSSL_add_all_algorithms_conf() \ + OPENSSL_init_crypto(OPENSSL_INIT_ADD_ALL_CIPHERS \ + | OPENSSL_INIT_ADD_ALL_DIGESTS \ + | OPENSSL_INIT_LOAD_CONFIG, NULL) +# define OPENSSL_add_all_algorithms_noconf() \ + OPENSSL_init_crypto(OPENSSL_INIT_ADD_ALL_CIPHERS \ + | OPENSSL_INIT_ADD_ALL_DIGESTS, NULL) + +# ifdef OPENSSL_LOAD_CONF +# define OpenSSL_add_all_algorithms() OPENSSL_add_all_algorithms_conf() +# else +# define OpenSSL_add_all_algorithms() OPENSSL_add_all_algorithms_noconf() +# endif + +# define OpenSSL_add_all_ciphers() \ + OPENSSL_init_crypto(OPENSSL_INIT_ADD_ALL_CIPHERS, NULL) +# define OpenSSL_add_all_digests() \ + OPENSSL_init_crypto(OPENSSL_INIT_ADD_ALL_DIGESTS, NULL) + +# define EVP_cleanup() while(0) continue +# endif + +int EVP_add_cipher(const EVP_CIPHER *cipher); +int EVP_add_digest(const EVP_MD *digest); + +const EVP_CIPHER *EVP_get_cipherbyname(const char *name); +const EVP_MD *EVP_get_digestbyname(const char *name); + +void EVP_CIPHER_do_all(void (*fn) (const EVP_CIPHER *ciph, + const char *from, const char *to, void *x), + void *arg); +void EVP_CIPHER_do_all_sorted(void (*fn) + (const EVP_CIPHER *ciph, const char *from, + const char *to, void *x), void *arg); +void EVP_CIPHER_do_all_provided(OSSL_LIB_CTX *libctx, + void (*fn)(EVP_CIPHER *cipher, void *arg), + void *arg); + +void EVP_MD_do_all(void (*fn) (const EVP_MD *ciph, + const char *from, const char *to, void *x), + void *arg); +void EVP_MD_do_all_sorted(void (*fn) + (const EVP_MD *ciph, const char *from, + const char *to, void *x), void *arg); +void EVP_MD_do_all_provided(OSSL_LIB_CTX *libctx, + void (*fn)(EVP_MD *md, void *arg), + void *arg); + +/* MAC stuff */ + +EVP_MAC *EVP_MAC_fetch(OSSL_LIB_CTX *libctx, const char *algorithm, + const char *properties); +int EVP_MAC_up_ref(EVP_MAC *mac); +void EVP_MAC_free(EVP_MAC *mac); +const char *EVP_MAC_get0_name(const EVP_MAC *mac); +const char *EVP_MAC_get0_description(const EVP_MAC *mac); +int EVP_MAC_is_a(const EVP_MAC *mac, const char *name); +const OSSL_PROVIDER *EVP_MAC_get0_provider(const EVP_MAC *mac); +int EVP_MAC_get_params(EVP_MAC *mac, OSSL_PARAM params[]); + +EVP_MAC_CTX *EVP_MAC_CTX_new(EVP_MAC *mac); +void EVP_MAC_CTX_free(EVP_MAC_CTX *ctx); +EVP_MAC_CTX *EVP_MAC_CTX_dup(const EVP_MAC_CTX *src); +EVP_MAC *EVP_MAC_CTX_get0_mac(EVP_MAC_CTX *ctx); +int EVP_MAC_CTX_get_params(EVP_MAC_CTX *ctx, OSSL_PARAM params[]); +int EVP_MAC_CTX_set_params(EVP_MAC_CTX *ctx, const OSSL_PARAM params[]); + +size_t EVP_MAC_CTX_get_mac_size(EVP_MAC_CTX *ctx); +size_t EVP_MAC_CTX_get_block_size(EVP_MAC_CTX *ctx); +unsigned char *EVP_Q_mac(OSSL_LIB_CTX *libctx, const char *name, const char *propq, + const char *subalg, const OSSL_PARAM *params, + const void *key, size_t keylen, + const unsigned char *data, size_t datalen, + unsigned char *out, size_t outsize, size_t *outlen); +int EVP_MAC_init(EVP_MAC_CTX *ctx, const unsigned char *key, size_t keylen, + const OSSL_PARAM params[]); +int EVP_MAC_init_SKEY(EVP_MAC_CTX *ctx, EVP_SKEY *skey, const OSSL_PARAM params[]); +int EVP_MAC_update(EVP_MAC_CTX *ctx, const unsigned char *data, size_t datalen); +int EVP_MAC_final(EVP_MAC_CTX *ctx, + unsigned char *out, size_t *outl, size_t outsize); +int EVP_MAC_finalXOF(EVP_MAC_CTX *ctx, unsigned char *out, size_t outsize); +const OSSL_PARAM *EVP_MAC_gettable_params(const EVP_MAC *mac); +const OSSL_PARAM *EVP_MAC_gettable_ctx_params(const EVP_MAC *mac); +const OSSL_PARAM *EVP_MAC_settable_ctx_params(const EVP_MAC *mac); +const OSSL_PARAM *EVP_MAC_CTX_gettable_params(EVP_MAC_CTX *ctx); +const OSSL_PARAM *EVP_MAC_CTX_settable_params(EVP_MAC_CTX *ctx); + +void EVP_MAC_do_all_provided(OSSL_LIB_CTX *libctx, + void (*fn)(EVP_MAC *mac, void *arg), + void *arg); +int EVP_MAC_names_do_all(const EVP_MAC *mac, + void (*fn)(const char *name, void *data), + void *data); + +/* RAND stuff */ +EVP_RAND *EVP_RAND_fetch(OSSL_LIB_CTX *libctx, const char *algorithm, + const char *properties); +int EVP_RAND_up_ref(EVP_RAND *rand); +void EVP_RAND_free(EVP_RAND *rand); +const char *EVP_RAND_get0_name(const EVP_RAND *rand); +const char *EVP_RAND_get0_description(const EVP_RAND *md); +int EVP_RAND_is_a(const EVP_RAND *rand, const char *name); +const OSSL_PROVIDER *EVP_RAND_get0_provider(const EVP_RAND *rand); +int EVP_RAND_get_params(EVP_RAND *rand, OSSL_PARAM params[]); + +EVP_RAND_CTX *EVP_RAND_CTX_new(EVP_RAND *rand, EVP_RAND_CTX *parent); +int EVP_RAND_CTX_up_ref(EVP_RAND_CTX *ctx); +void EVP_RAND_CTX_free(EVP_RAND_CTX *ctx); +EVP_RAND *EVP_RAND_CTX_get0_rand(EVP_RAND_CTX *ctx); +int EVP_RAND_CTX_get_params(EVP_RAND_CTX *ctx, OSSL_PARAM params[]); +int EVP_RAND_CTX_set_params(EVP_RAND_CTX *ctx, const OSSL_PARAM params[]); +const OSSL_PARAM *EVP_RAND_gettable_params(const EVP_RAND *rand); +const OSSL_PARAM *EVP_RAND_gettable_ctx_params(const EVP_RAND *rand); +const OSSL_PARAM *EVP_RAND_settable_ctx_params(const EVP_RAND *rand); +const OSSL_PARAM *EVP_RAND_CTX_gettable_params(EVP_RAND_CTX *ctx); +const OSSL_PARAM *EVP_RAND_CTX_settable_params(EVP_RAND_CTX *ctx); + +void EVP_RAND_do_all_provided(OSSL_LIB_CTX *libctx, + void (*fn)(EVP_RAND *rand, void *arg), + void *arg); +int EVP_RAND_names_do_all(const EVP_RAND *rand, + void (*fn)(const char *name, void *data), + void *data); + +__owur int EVP_RAND_instantiate(EVP_RAND_CTX *ctx, unsigned int strength, + int prediction_resistance, + const unsigned char *pstr, size_t pstr_len, + const OSSL_PARAM params[]); +int EVP_RAND_uninstantiate(EVP_RAND_CTX *ctx); +__owur int EVP_RAND_generate(EVP_RAND_CTX *ctx, unsigned char *out, + size_t outlen, unsigned int strength, + int prediction_resistance, + const unsigned char *addin, size_t addin_len); +int EVP_RAND_reseed(EVP_RAND_CTX *ctx, int prediction_resistance, + const unsigned char *ent, size_t ent_len, + const unsigned char *addin, size_t addin_len); +__owur int EVP_RAND_nonce(EVP_RAND_CTX *ctx, unsigned char *out, size_t outlen); +__owur int EVP_RAND_enable_locking(EVP_RAND_CTX *ctx); + +int EVP_RAND_verify_zeroization(EVP_RAND_CTX *ctx); +unsigned int EVP_RAND_get_strength(EVP_RAND_CTX *ctx); +int EVP_RAND_get_state(EVP_RAND_CTX *ctx); + +# define EVP_RAND_STATE_UNINITIALISED 0 +# define EVP_RAND_STATE_READY 1 +# define EVP_RAND_STATE_ERROR 2 + +/* PKEY stuff */ +# ifndef OPENSSL_NO_DEPRECATED_3_0 +OSSL_DEPRECATEDIN_3_0 int EVP_PKEY_decrypt_old(unsigned char *dec_key, + const unsigned char *enc_key, + int enc_key_len, + EVP_PKEY *private_key); +OSSL_DEPRECATEDIN_3_0 int EVP_PKEY_encrypt_old(unsigned char *enc_key, + const unsigned char *key, + int key_len, EVP_PKEY *pub_key); +# endif +int EVP_PKEY_is_a(const EVP_PKEY *pkey, const char *name); +int EVP_PKEY_type_names_do_all(const EVP_PKEY *pkey, + void (*fn)(const char *name, void *data), + void *data); +int EVP_PKEY_type(int type); +int EVP_PKEY_get_id(const EVP_PKEY *pkey); +# define EVP_PKEY_id EVP_PKEY_get_id +int EVP_PKEY_get_base_id(const EVP_PKEY *pkey); +# define EVP_PKEY_base_id EVP_PKEY_get_base_id +int EVP_PKEY_get_bits(const EVP_PKEY *pkey); +# define EVP_PKEY_bits EVP_PKEY_get_bits +int EVP_PKEY_get_security_bits(const EVP_PKEY *pkey); +# define EVP_PKEY_security_bits EVP_PKEY_get_security_bits +int EVP_PKEY_get_size(const EVP_PKEY *pkey); +# define EVP_PKEY_size EVP_PKEY_get_size +int EVP_PKEY_can_sign(const EVP_PKEY *pkey); +int EVP_PKEY_set_type(EVP_PKEY *pkey, int type); +int EVP_PKEY_set_type_str(EVP_PKEY *pkey, const char *str, int len); +int EVP_PKEY_set_type_by_keymgmt(EVP_PKEY *pkey, EVP_KEYMGMT *keymgmt); +# ifndef OPENSSL_NO_DEPRECATED_3_0 +# ifndef OPENSSL_NO_ENGINE +OSSL_DEPRECATEDIN_3_0 +int EVP_PKEY_set1_engine(EVP_PKEY *pkey, ENGINE *e); +OSSL_DEPRECATEDIN_3_0 +ENGINE *EVP_PKEY_get0_engine(const EVP_PKEY *pkey); +# endif +OSSL_DEPRECATEDIN_3_0 +int EVP_PKEY_assign(EVP_PKEY *pkey, int type, void *key); +OSSL_DEPRECATEDIN_3_0 +void *EVP_PKEY_get0(const EVP_PKEY *pkey); +OSSL_DEPRECATEDIN_3_0 +const unsigned char *EVP_PKEY_get0_hmac(const EVP_PKEY *pkey, size_t *len); +# ifndef OPENSSL_NO_POLY1305 +OSSL_DEPRECATEDIN_3_0 +const unsigned char *EVP_PKEY_get0_poly1305(const EVP_PKEY *pkey, size_t *len); +# endif +# ifndef OPENSSL_NO_SIPHASH +OSSL_DEPRECATEDIN_3_0 +const unsigned char *EVP_PKEY_get0_siphash(const EVP_PKEY *pkey, size_t *len); +# endif + +struct rsa_st; +OSSL_DEPRECATEDIN_3_0 +int EVP_PKEY_set1_RSA(EVP_PKEY *pkey, struct rsa_st *key); +OSSL_DEPRECATEDIN_3_0 +const struct rsa_st *EVP_PKEY_get0_RSA(const EVP_PKEY *pkey); +OSSL_DEPRECATEDIN_3_0 +struct rsa_st *EVP_PKEY_get1_RSA(EVP_PKEY *pkey); + +# ifndef OPENSSL_NO_DSA +struct dsa_st; +OSSL_DEPRECATEDIN_3_0 +int EVP_PKEY_set1_DSA(EVP_PKEY *pkey, struct dsa_st *key); +OSSL_DEPRECATEDIN_3_0 +const struct dsa_st *EVP_PKEY_get0_DSA(const EVP_PKEY *pkey); +OSSL_DEPRECATEDIN_3_0 +struct dsa_st *EVP_PKEY_get1_DSA(EVP_PKEY *pkey); +# endif + +# ifndef OPENSSL_NO_DH +struct dh_st; +OSSL_DEPRECATEDIN_3_0 int EVP_PKEY_set1_DH(EVP_PKEY *pkey, struct dh_st *key); +OSSL_DEPRECATEDIN_3_0 const struct dh_st *EVP_PKEY_get0_DH(const EVP_PKEY *pkey); +OSSL_DEPRECATEDIN_3_0 struct dh_st *EVP_PKEY_get1_DH(EVP_PKEY *pkey); +# endif + +# ifndef OPENSSL_NO_EC +struct ec_key_st; +OSSL_DEPRECATEDIN_3_0 +int EVP_PKEY_set1_EC_KEY(EVP_PKEY *pkey, struct ec_key_st *key); +OSSL_DEPRECATEDIN_3_0 +const struct ec_key_st *EVP_PKEY_get0_EC_KEY(const EVP_PKEY *pkey); +OSSL_DEPRECATEDIN_3_0 +struct ec_key_st *EVP_PKEY_get1_EC_KEY(EVP_PKEY *pkey); +# endif +# endif /* OPENSSL_NO_DEPRECATED_3_0 */ + +EVP_PKEY *EVP_PKEY_new(void); +int EVP_PKEY_up_ref(EVP_PKEY *pkey); +EVP_PKEY *EVP_PKEY_dup(EVP_PKEY *pkey); +void EVP_PKEY_free(EVP_PKEY *pkey); +const char *EVP_PKEY_get0_description(const EVP_PKEY *pkey); +const OSSL_PROVIDER *EVP_PKEY_get0_provider(const EVP_PKEY *key); + +EVP_PKEY *d2i_PublicKey(int type, EVP_PKEY **a, const unsigned char **pp, + long length); +int i2d_PublicKey(const EVP_PKEY *a, unsigned char **pp); + + +EVP_PKEY *d2i_PrivateKey_ex(int type, EVP_PKEY **a, const unsigned char **pp, + long length, OSSL_LIB_CTX *libctx, + const char *propq); +EVP_PKEY *d2i_PrivateKey(int type, EVP_PKEY **a, const unsigned char **pp, + long length); +EVP_PKEY *d2i_AutoPrivateKey_ex(EVP_PKEY **a, const unsigned char **pp, + long length, OSSL_LIB_CTX *libctx, + const char *propq); +EVP_PKEY *d2i_AutoPrivateKey(EVP_PKEY **a, const unsigned char **pp, + long length); +int i2d_PrivateKey(const EVP_PKEY *a, unsigned char **pp); + +int i2d_KeyParams(const EVP_PKEY *a, unsigned char **pp); +EVP_PKEY *d2i_KeyParams(int type, EVP_PKEY **a, const unsigned char **pp, + long length); +int i2d_KeyParams_bio(BIO *bp, const EVP_PKEY *pkey); +EVP_PKEY *d2i_KeyParams_bio(int type, EVP_PKEY **a, BIO *in); + +int EVP_PKEY_copy_parameters(EVP_PKEY *to, const EVP_PKEY *from); +int EVP_PKEY_missing_parameters(const EVP_PKEY *pkey); +int EVP_PKEY_save_parameters(EVP_PKEY *pkey, int mode); +int EVP_PKEY_parameters_eq(const EVP_PKEY *a, const EVP_PKEY *b); +int EVP_PKEY_eq(const EVP_PKEY *a, const EVP_PKEY *b); + +# ifndef OPENSSL_NO_DEPRECATED_3_0 +OSSL_DEPRECATEDIN_3_0 +int EVP_PKEY_cmp_parameters(const EVP_PKEY *a, const EVP_PKEY *b); +OSSL_DEPRECATEDIN_3_0 +int EVP_PKEY_cmp(const EVP_PKEY *a, const EVP_PKEY *b); +# endif + +int EVP_PKEY_print_public(BIO *out, const EVP_PKEY *pkey, + int indent, ASN1_PCTX *pctx); +int EVP_PKEY_print_private(BIO *out, const EVP_PKEY *pkey, + int indent, ASN1_PCTX *pctx); +int EVP_PKEY_print_params(BIO *out, const EVP_PKEY *pkey, + int indent, ASN1_PCTX *pctx); +# ifndef OPENSSL_NO_STDIO +int EVP_PKEY_print_public_fp(FILE *fp, const EVP_PKEY *pkey, + int indent, ASN1_PCTX *pctx); +int EVP_PKEY_print_private_fp(FILE *fp, const EVP_PKEY *pkey, + int indent, ASN1_PCTX *pctx); +int EVP_PKEY_print_params_fp(FILE *fp, const EVP_PKEY *pkey, + int indent, ASN1_PCTX *pctx); +# endif + +int EVP_PKEY_get_default_digest_nid(EVP_PKEY *pkey, int *pnid); +int EVP_PKEY_get_default_digest_name(EVP_PKEY *pkey, + char *mdname, size_t mdname_sz); +int EVP_PKEY_digestsign_supports_digest(EVP_PKEY *pkey, OSSL_LIB_CTX *libctx, + const char *name, const char *propq); + +# ifndef OPENSSL_NO_DEPRECATED_3_0 +/* + * For backwards compatibility. Use EVP_PKEY_set1_encoded_public_key in + * preference + */ +# define EVP_PKEY_set1_tls_encodedpoint(pkey, pt, ptlen) \ + EVP_PKEY_set1_encoded_public_key((pkey), (pt), (ptlen)) +# endif + +int EVP_PKEY_set1_encoded_public_key(EVP_PKEY *pkey, + const unsigned char *pub, size_t publen); + +# ifndef OPENSSL_NO_DEPRECATED_3_0 +/* + * For backwards compatibility. Use EVP_PKEY_get1_encoded_public_key in + * preference + */ +# define EVP_PKEY_get1_tls_encodedpoint(pkey, ppt) \ + EVP_PKEY_get1_encoded_public_key((pkey), (ppt)) +# endif + +size_t EVP_PKEY_get1_encoded_public_key(EVP_PKEY *pkey, unsigned char **ppub); + +/* calls methods */ +int EVP_CIPHER_param_to_asn1(EVP_CIPHER_CTX *c, ASN1_TYPE *type); +int EVP_CIPHER_asn1_to_param(EVP_CIPHER_CTX *c, ASN1_TYPE *type); + +/* These are used by EVP_CIPHER methods */ +int EVP_CIPHER_set_asn1_iv(EVP_CIPHER_CTX *c, ASN1_TYPE *type); +int EVP_CIPHER_get_asn1_iv(EVP_CIPHER_CTX *c, ASN1_TYPE *type); + +/* PKCS5 password based encryption */ +int PKCS5_PBE_keyivgen(EVP_CIPHER_CTX *ctx, const char *pass, int passlen, + ASN1_TYPE *param, const EVP_CIPHER *cipher, + const EVP_MD *md, int en_de); +int PKCS5_PBE_keyivgen_ex(EVP_CIPHER_CTX *cctx, const char *pass, int passlen, + ASN1_TYPE *param, const EVP_CIPHER *cipher, + const EVP_MD *md, int en_de, OSSL_LIB_CTX *libctx, + const char *propq); +int PKCS5_PBKDF2_HMAC_SHA1(const char *pass, int passlen, + const unsigned char *salt, int saltlen, int iter, + int keylen, unsigned char *out); +int PKCS5_PBKDF2_HMAC(const char *pass, int passlen, + const unsigned char *salt, int saltlen, int iter, + const EVP_MD *digest, int keylen, unsigned char *out); +int PKCS5_v2_PBE_keyivgen(EVP_CIPHER_CTX *ctx, const char *pass, int passlen, + ASN1_TYPE *param, const EVP_CIPHER *cipher, + const EVP_MD *md, int en_de); +int PKCS5_v2_PBE_keyivgen_ex(EVP_CIPHER_CTX *ctx, const char *pass, int passlen, + ASN1_TYPE *param, const EVP_CIPHER *cipher, + const EVP_MD *md, int en_de, + OSSL_LIB_CTX *libctx, const char *propq); + +#ifndef OPENSSL_NO_SCRYPT +int EVP_PBE_scrypt(const char *pass, size_t passlen, + const unsigned char *salt, size_t saltlen, + uint64_t N, uint64_t r, uint64_t p, uint64_t maxmem, + unsigned char *key, size_t keylen); +int EVP_PBE_scrypt_ex(const char *pass, size_t passlen, + const unsigned char *salt, size_t saltlen, + uint64_t N, uint64_t r, uint64_t p, uint64_t maxmem, + unsigned char *key, size_t keylen, + OSSL_LIB_CTX *ctx, const char *propq); + +int PKCS5_v2_scrypt_keyivgen(EVP_CIPHER_CTX *ctx, const char *pass, + int passlen, ASN1_TYPE *param, + const EVP_CIPHER *c, const EVP_MD *md, int en_de); +int PKCS5_v2_scrypt_keyivgen_ex(EVP_CIPHER_CTX *ctx, const char *pass, + int passlen, ASN1_TYPE *param, + const EVP_CIPHER *c, const EVP_MD *md, int en_de, + OSSL_LIB_CTX *libctx, const char *propq); +#endif + +void PKCS5_PBE_add(void); + +int EVP_PBE_CipherInit(ASN1_OBJECT *pbe_obj, const char *pass, int passlen, + ASN1_TYPE *param, EVP_CIPHER_CTX *ctx, int en_de); + +int EVP_PBE_CipherInit_ex(ASN1_OBJECT *pbe_obj, const char *pass, int passlen, + ASN1_TYPE *param, EVP_CIPHER_CTX *ctx, int en_de, + OSSL_LIB_CTX *libctx, const char *propq); + +/* PBE type */ + +/* Can appear as the outermost AlgorithmIdentifier */ +# define EVP_PBE_TYPE_OUTER 0x0 +/* Is an PRF type OID */ +# define EVP_PBE_TYPE_PRF 0x1 +/* Is a PKCS#5 v2.0 KDF */ +# define EVP_PBE_TYPE_KDF 0x2 + +int EVP_PBE_alg_add_type(int pbe_type, int pbe_nid, int cipher_nid, + int md_nid, EVP_PBE_KEYGEN *keygen); +int EVP_PBE_alg_add(int nid, const EVP_CIPHER *cipher, const EVP_MD *md, + EVP_PBE_KEYGEN *keygen); +int EVP_PBE_find(int type, int pbe_nid, int *pcnid, int *pmnid, + EVP_PBE_KEYGEN **pkeygen); +int EVP_PBE_find_ex(int type, int pbe_nid, int *pcnid, int *pmnid, + EVP_PBE_KEYGEN **pkeygen, EVP_PBE_KEYGEN_EX **pkeygen_ex); +void EVP_PBE_cleanup(void); +int EVP_PBE_get(int *ptype, int *ppbe_nid, size_t num); + +# define ASN1_PKEY_ALIAS 0x1 +# define ASN1_PKEY_DYNAMIC 0x2 +# define ASN1_PKEY_SIGPARAM_NULL 0x4 + +# define ASN1_PKEY_CTRL_PKCS7_SIGN 0x1 +# define ASN1_PKEY_CTRL_PKCS7_ENCRYPT 0x2 +# define ASN1_PKEY_CTRL_DEFAULT_MD_NID 0x3 +# define ASN1_PKEY_CTRL_CMS_SIGN 0x5 +# define ASN1_PKEY_CTRL_CMS_ENVELOPE 0x7 +# define ASN1_PKEY_CTRL_CMS_RI_TYPE 0x8 + +# define ASN1_PKEY_CTRL_SET1_TLS_ENCPT 0x9 +# define ASN1_PKEY_CTRL_GET1_TLS_ENCPT 0xa +# define ASN1_PKEY_CTRL_CMS_IS_RI_TYPE_SUPPORTED 0xb + +int EVP_PKEY_asn1_get_count(void); +const EVP_PKEY_ASN1_METHOD *EVP_PKEY_asn1_get0(int idx); +const EVP_PKEY_ASN1_METHOD *EVP_PKEY_asn1_find(ENGINE **pe, int type); +const EVP_PKEY_ASN1_METHOD *EVP_PKEY_asn1_find_str(ENGINE **pe, + const char *str, int len); +int EVP_PKEY_asn1_add0(const EVP_PKEY_ASN1_METHOD *ameth); +int EVP_PKEY_asn1_add_alias(int to, int from); +int EVP_PKEY_asn1_get0_info(int *ppkey_id, int *pkey_base_id, + int *ppkey_flags, const char **pinfo, + const char **ppem_str, + const EVP_PKEY_ASN1_METHOD *ameth); + +const EVP_PKEY_ASN1_METHOD *EVP_PKEY_get0_asn1(const EVP_PKEY *pkey); +EVP_PKEY_ASN1_METHOD *EVP_PKEY_asn1_new(int id, int flags, + const char *pem_str, + const char *info); +void EVP_PKEY_asn1_copy(EVP_PKEY_ASN1_METHOD *dst, + const EVP_PKEY_ASN1_METHOD *src); +void EVP_PKEY_asn1_free(EVP_PKEY_ASN1_METHOD *ameth); +void EVP_PKEY_asn1_set_public(EVP_PKEY_ASN1_METHOD *ameth, + int (*pub_decode) (EVP_PKEY *pk, + const X509_PUBKEY *pub), + int (*pub_encode) (X509_PUBKEY *pub, + const EVP_PKEY *pk), + int (*pub_cmp) (const EVP_PKEY *a, + const EVP_PKEY *b), + int (*pub_print) (BIO *out, + const EVP_PKEY *pkey, + int indent, ASN1_PCTX *pctx), + int (*pkey_size) (const EVP_PKEY *pk), + int (*pkey_bits) (const EVP_PKEY *pk)); +void EVP_PKEY_asn1_set_private(EVP_PKEY_ASN1_METHOD *ameth, + int (*priv_decode) (EVP_PKEY *pk, + const PKCS8_PRIV_KEY_INFO + *p8inf), + int (*priv_encode) (PKCS8_PRIV_KEY_INFO *p8, + const EVP_PKEY *pk), + int (*priv_print) (BIO *out, + const EVP_PKEY *pkey, + int indent, + ASN1_PCTX *pctx)); +void EVP_PKEY_asn1_set_param(EVP_PKEY_ASN1_METHOD *ameth, + int (*param_decode) (EVP_PKEY *pkey, + const unsigned char **pder, + int derlen), + int (*param_encode) (const EVP_PKEY *pkey, + unsigned char **pder), + int (*param_missing) (const EVP_PKEY *pk), + int (*param_copy) (EVP_PKEY *to, + const EVP_PKEY *from), + int (*param_cmp) (const EVP_PKEY *a, + const EVP_PKEY *b), + int (*param_print) (BIO *out, + const EVP_PKEY *pkey, + int indent, + ASN1_PCTX *pctx)); + +void EVP_PKEY_asn1_set_free(EVP_PKEY_ASN1_METHOD *ameth, + void (*pkey_free) (EVP_PKEY *pkey)); +void EVP_PKEY_asn1_set_ctrl(EVP_PKEY_ASN1_METHOD *ameth, + int (*pkey_ctrl) (EVP_PKEY *pkey, int op, + long arg1, void *arg2)); +void EVP_PKEY_asn1_set_item(EVP_PKEY_ASN1_METHOD *ameth, + int (*item_verify) (EVP_MD_CTX *ctx, + const ASN1_ITEM *it, + const void *data, + const X509_ALGOR *a, + const ASN1_BIT_STRING *sig, + EVP_PKEY *pkey), + int (*item_sign) (EVP_MD_CTX *ctx, + const ASN1_ITEM *it, + const void *data, + X509_ALGOR *alg1, + X509_ALGOR *alg2, + ASN1_BIT_STRING *sig)); + +void EVP_PKEY_asn1_set_siginf(EVP_PKEY_ASN1_METHOD *ameth, + int (*siginf_set) (X509_SIG_INFO *siginf, + const X509_ALGOR *alg, + const ASN1_STRING *sig)); + +void EVP_PKEY_asn1_set_check(EVP_PKEY_ASN1_METHOD *ameth, + int (*pkey_check) (const EVP_PKEY *pk)); + +void EVP_PKEY_asn1_set_public_check(EVP_PKEY_ASN1_METHOD *ameth, + int (*pkey_pub_check) (const EVP_PKEY *pk)); + +void EVP_PKEY_asn1_set_param_check(EVP_PKEY_ASN1_METHOD *ameth, + int (*pkey_param_check) (const EVP_PKEY *pk)); + +void EVP_PKEY_asn1_set_set_priv_key(EVP_PKEY_ASN1_METHOD *ameth, + int (*set_priv_key) (EVP_PKEY *pk, + const unsigned char + *priv, + size_t len)); +void EVP_PKEY_asn1_set_set_pub_key(EVP_PKEY_ASN1_METHOD *ameth, + int (*set_pub_key) (EVP_PKEY *pk, + const unsigned char *pub, + size_t len)); +void EVP_PKEY_asn1_set_get_priv_key(EVP_PKEY_ASN1_METHOD *ameth, + int (*get_priv_key) (const EVP_PKEY *pk, + unsigned char *priv, + size_t *len)); +void EVP_PKEY_asn1_set_get_pub_key(EVP_PKEY_ASN1_METHOD *ameth, + int (*get_pub_key) (const EVP_PKEY *pk, + unsigned char *pub, + size_t *len)); + +void EVP_PKEY_asn1_set_security_bits(EVP_PKEY_ASN1_METHOD *ameth, + int (*pkey_security_bits) (const EVP_PKEY + *pk)); + +int EVP_PKEY_CTX_get_signature_md(EVP_PKEY_CTX *ctx, const EVP_MD **md); +int EVP_PKEY_CTX_set_signature_md(EVP_PKEY_CTX *ctx, const EVP_MD *md); + +int EVP_PKEY_CTX_set1_id(EVP_PKEY_CTX *ctx, const void *id, int len); +int EVP_PKEY_CTX_get1_id(EVP_PKEY_CTX *ctx, void *id); +int EVP_PKEY_CTX_get1_id_len(EVP_PKEY_CTX *ctx, size_t *id_len); + +int EVP_PKEY_CTX_set_kem_op(EVP_PKEY_CTX *ctx, const char *op); + +const char *EVP_PKEY_get0_type_name(const EVP_PKEY *key); + +# define EVP_PKEY_OP_UNDEFINED 0 +# define EVP_PKEY_OP_PARAMGEN (1 << 1) +# define EVP_PKEY_OP_KEYGEN (1 << 2) +# define EVP_PKEY_OP_FROMDATA (1 << 3) +# define EVP_PKEY_OP_SIGN (1 << 4) +# define EVP_PKEY_OP_VERIFY (1 << 5) +# define EVP_PKEY_OP_VERIFYRECOVER (1 << 6) +# define EVP_PKEY_OP_SIGNCTX (1 << 7) +# define EVP_PKEY_OP_VERIFYCTX (1 << 8) +# define EVP_PKEY_OP_ENCRYPT (1 << 9) +# define EVP_PKEY_OP_DECRYPT (1 << 10) +# define EVP_PKEY_OP_DERIVE (1 << 11) +# define EVP_PKEY_OP_ENCAPSULATE (1 << 12) +# define EVP_PKEY_OP_DECAPSULATE (1 << 13) +# define EVP_PKEY_OP_SIGNMSG (1 << 14) +# define EVP_PKEY_OP_VERIFYMSG (1 << 15) +/* Update the following when adding new EVP_PKEY_OPs */ +# define EVP_PKEY_OP_ALL ((1 << 16) - 1) + +# define EVP_PKEY_OP_TYPE_SIG \ + (EVP_PKEY_OP_SIGN | EVP_PKEY_OP_SIGNMSG \ + | EVP_PKEY_OP_VERIFY | EVP_PKEY_OP_VERIFYMSG \ + | EVP_PKEY_OP_VERIFYRECOVER \ + | EVP_PKEY_OP_SIGNCTX | EVP_PKEY_OP_VERIFYCTX) + +# define EVP_PKEY_OP_TYPE_CRYPT \ + (EVP_PKEY_OP_ENCRYPT | EVP_PKEY_OP_DECRYPT) + +# define EVP_PKEY_OP_TYPE_DERIVE \ + (EVP_PKEY_OP_DERIVE) + +# define EVP_PKEY_OP_TYPE_DATA \ + (EVP_PKEY_OP_FROMDATA) + +# define EVP_PKEY_OP_TYPE_KEM \ + (EVP_PKEY_OP_ENCAPSULATE | EVP_PKEY_OP_DECAPSULATE) + +# define EVP_PKEY_OP_TYPE_GEN \ + (EVP_PKEY_OP_PARAMGEN | EVP_PKEY_OP_KEYGEN) + +# define EVP_PKEY_OP_TYPE_NOGEN \ + (EVP_PKEY_OP_ALL & ~EVP_PKEY_OP_TYPE_GEN) + +int EVP_PKEY_CTX_set_mac_key(EVP_PKEY_CTX *ctx, const unsigned char *key, + int keylen); + +# define EVP_PKEY_CTRL_MD 1 +# define EVP_PKEY_CTRL_PEER_KEY 2 +# define EVP_PKEY_CTRL_SET_MAC_KEY 6 +# define EVP_PKEY_CTRL_DIGESTINIT 7 +/* Used by GOST key encryption in TLS */ +# define EVP_PKEY_CTRL_SET_IV 8 +# ifndef OPENSSL_NO_DEPRECATED_3_0 +# define EVP_PKEY_CTRL_PKCS7_ENCRYPT 3 +# define EVP_PKEY_CTRL_PKCS7_DECRYPT 4 +# define EVP_PKEY_CTRL_PKCS7_SIGN 5 +# define EVP_PKEY_CTRL_CMS_ENCRYPT 9 +# define EVP_PKEY_CTRL_CMS_DECRYPT 10 +# define EVP_PKEY_CTRL_CMS_SIGN 11 +# endif +# define EVP_PKEY_CTRL_CIPHER 12 +# define EVP_PKEY_CTRL_GET_MD 13 +# define EVP_PKEY_CTRL_SET_DIGEST_SIZE 14 +# define EVP_PKEY_CTRL_SET1_ID 15 +# define EVP_PKEY_CTRL_GET1_ID 16 +# define EVP_PKEY_CTRL_GET1_ID_LEN 17 + +# define EVP_PKEY_ALG_CTRL 0x1000 + +# define EVP_PKEY_FLAG_AUTOARGLEN 2 +/* + * Method handles all operations: don't assume any digest related defaults. + */ +# define EVP_PKEY_FLAG_SIGCTX_CUSTOM 4 +# ifndef OPENSSL_NO_DEPRECATED_3_0 +OSSL_DEPRECATEDIN_3_0 const EVP_PKEY_METHOD *EVP_PKEY_meth_find(int type); +OSSL_DEPRECATEDIN_3_0 EVP_PKEY_METHOD *EVP_PKEY_meth_new(int id, int flags); +OSSL_DEPRECATEDIN_3_0 void EVP_PKEY_meth_get0_info(int *ppkey_id, int *pflags, + const EVP_PKEY_METHOD *meth); +OSSL_DEPRECATEDIN_3_0 void EVP_PKEY_meth_copy(EVP_PKEY_METHOD *dst, + const EVP_PKEY_METHOD *src); +OSSL_DEPRECATEDIN_3_0 void EVP_PKEY_meth_free(EVP_PKEY_METHOD *pmeth); +OSSL_DEPRECATEDIN_3_0 int EVP_PKEY_meth_add0(const EVP_PKEY_METHOD *pmeth); +OSSL_DEPRECATEDIN_3_0 int EVP_PKEY_meth_remove(const EVP_PKEY_METHOD *pmeth); +OSSL_DEPRECATEDIN_3_0 size_t EVP_PKEY_meth_get_count(void); +OSSL_DEPRECATEDIN_3_0 const EVP_PKEY_METHOD *EVP_PKEY_meth_get0(size_t idx); +# endif + +EVP_KEYMGMT *EVP_KEYMGMT_fetch(OSSL_LIB_CTX *ctx, const char *algorithm, + const char *properties); +int EVP_KEYMGMT_up_ref(EVP_KEYMGMT *keymgmt); +void EVP_KEYMGMT_free(EVP_KEYMGMT *keymgmt); +const OSSL_PROVIDER *EVP_KEYMGMT_get0_provider(const EVP_KEYMGMT *keymgmt); +const char *EVP_KEYMGMT_get0_name(const EVP_KEYMGMT *keymgmt); +const char *EVP_KEYMGMT_get0_description(const EVP_KEYMGMT *keymgmt); +int EVP_KEYMGMT_is_a(const EVP_KEYMGMT *keymgmt, const char *name); +void EVP_KEYMGMT_do_all_provided(OSSL_LIB_CTX *libctx, + void (*fn)(EVP_KEYMGMT *keymgmt, void *arg), + void *arg); +int EVP_KEYMGMT_names_do_all(const EVP_KEYMGMT *keymgmt, + void (*fn)(const char *name, void *data), + void *data); +const OSSL_PARAM *EVP_KEYMGMT_gettable_params(const EVP_KEYMGMT *keymgmt); +const OSSL_PARAM *EVP_KEYMGMT_settable_params(const EVP_KEYMGMT *keymgmt); +const OSSL_PARAM *EVP_KEYMGMT_gen_settable_params(const EVP_KEYMGMT *keymgmt); +const OSSL_PARAM *EVP_KEYMGMT_gen_gettable_params(const EVP_KEYMGMT *keymgmt); + +EVP_SKEYMGMT *EVP_SKEYMGMT_fetch(OSSL_LIB_CTX *ctx, const char *algorithm, + const char *properties); +int EVP_SKEYMGMT_up_ref(EVP_SKEYMGMT *keymgmt); +void EVP_SKEYMGMT_free(EVP_SKEYMGMT *keymgmt); +const OSSL_PROVIDER *EVP_SKEYMGMT_get0_provider(const EVP_SKEYMGMT *keymgmt); +const char *EVP_SKEYMGMT_get0_name(const EVP_SKEYMGMT *keymgmt); +const char *EVP_SKEYMGMT_get0_description(const EVP_SKEYMGMT *keymgmt); +int EVP_SKEYMGMT_is_a(const EVP_SKEYMGMT *keymgmt, const char *name); +void EVP_SKEYMGMT_do_all_provided(OSSL_LIB_CTX *libctx, + void (*fn)(EVP_SKEYMGMT *keymgmt, void *arg), + void *arg); +int EVP_SKEYMGMT_names_do_all(const EVP_SKEYMGMT *keymgmt, + void (*fn)(const char *name, void *data), + void *data); +const OSSL_PARAM *EVP_SKEYMGMT_get0_gen_settable_params(const EVP_SKEYMGMT *skeymgmt); +const OSSL_PARAM *EVP_SKEYMGMT_get0_imp_settable_params(const EVP_SKEYMGMT *skeymgmt); + +EVP_PKEY_CTX *EVP_PKEY_CTX_new(EVP_PKEY *pkey, ENGINE *e); +EVP_PKEY_CTX *EVP_PKEY_CTX_new_id(int id, ENGINE *e); +EVP_PKEY_CTX *EVP_PKEY_CTX_new_from_name(OSSL_LIB_CTX *libctx, + const char *name, + const char *propquery); +EVP_PKEY_CTX *EVP_PKEY_CTX_new_from_pkey(OSSL_LIB_CTX *libctx, + EVP_PKEY *pkey, const char *propquery); +EVP_PKEY_CTX *EVP_PKEY_CTX_dup(const EVP_PKEY_CTX *ctx); +void EVP_PKEY_CTX_free(EVP_PKEY_CTX *ctx); +int EVP_PKEY_CTX_is_a(EVP_PKEY_CTX *ctx, const char *keytype); + +int EVP_PKEY_CTX_get_params(EVP_PKEY_CTX *ctx, OSSL_PARAM *params); +const OSSL_PARAM *EVP_PKEY_CTX_gettable_params(const EVP_PKEY_CTX *ctx); +int EVP_PKEY_CTX_set_params(EVP_PKEY_CTX *ctx, const OSSL_PARAM *params); +const OSSL_PARAM *EVP_PKEY_CTX_settable_params(const EVP_PKEY_CTX *ctx); + +int EVP_PKEY_CTX_set_algor_params(EVP_PKEY_CTX *ctx, const X509_ALGOR *alg); +int EVP_PKEY_CTX_get_algor_params(EVP_PKEY_CTX *ctx, X509_ALGOR *alg); +int EVP_PKEY_CTX_get_algor(EVP_PKEY_CTX *ctx, X509_ALGOR **alg); + +int EVP_PKEY_CTX_ctrl(EVP_PKEY_CTX *ctx, int keytype, int optype, + int cmd, int p1, void *p2); +int EVP_PKEY_CTX_ctrl_str(EVP_PKEY_CTX *ctx, const char *type, + const char *value); +int EVP_PKEY_CTX_ctrl_uint64(EVP_PKEY_CTX *ctx, int keytype, int optype, + int cmd, uint64_t value); + +int EVP_PKEY_CTX_str2ctrl(EVP_PKEY_CTX *ctx, int cmd, const char *str); +int EVP_PKEY_CTX_hex2ctrl(EVP_PKEY_CTX *ctx, int cmd, const char *hex); + +int EVP_PKEY_CTX_md(EVP_PKEY_CTX *ctx, int optype, int cmd, const char *md); + +int EVP_PKEY_CTX_get_operation(EVP_PKEY_CTX *ctx); +void EVP_PKEY_CTX_set0_keygen_info(EVP_PKEY_CTX *ctx, int *dat, int datlen); + +EVP_PKEY *EVP_PKEY_new_mac_key(int type, ENGINE *e, + const unsigned char *key, int keylen); +EVP_PKEY *EVP_PKEY_new_raw_private_key_ex(OSSL_LIB_CTX *libctx, + const char *keytype, + const char *propq, + const unsigned char *priv, size_t len); +EVP_PKEY *EVP_PKEY_new_raw_private_key(int type, ENGINE *e, + const unsigned char *priv, + size_t len); +EVP_PKEY *EVP_PKEY_new_raw_public_key_ex(OSSL_LIB_CTX *libctx, + const char *keytype, const char *propq, + const unsigned char *pub, size_t len); +EVP_PKEY *EVP_PKEY_new_raw_public_key(int type, ENGINE *e, + const unsigned char *pub, + size_t len); +int EVP_PKEY_get_raw_private_key(const EVP_PKEY *pkey, unsigned char *priv, + size_t *len); +int EVP_PKEY_get_raw_public_key(const EVP_PKEY *pkey, unsigned char *pub, + size_t *len); + +# ifndef OPENSSL_NO_DEPRECATED_3_0 +OSSL_DEPRECATEDIN_3_0 +EVP_PKEY *EVP_PKEY_new_CMAC_key(ENGINE *e, const unsigned char *priv, + size_t len, const EVP_CIPHER *cipher); +# endif + +void EVP_PKEY_CTX_set_data(EVP_PKEY_CTX *ctx, void *data); +void *EVP_PKEY_CTX_get_data(const EVP_PKEY_CTX *ctx); +EVP_PKEY *EVP_PKEY_CTX_get0_pkey(EVP_PKEY_CTX *ctx); + +EVP_PKEY *EVP_PKEY_CTX_get0_peerkey(EVP_PKEY_CTX *ctx); + +void EVP_PKEY_CTX_set_app_data(EVP_PKEY_CTX *ctx, void *data); +void *EVP_PKEY_CTX_get_app_data(EVP_PKEY_CTX *ctx); + +int EVP_PKEY_CTX_set_signature(EVP_PKEY_CTX *pctx, + const unsigned char *sig, size_t siglen); + +void EVP_SIGNATURE_free(EVP_SIGNATURE *signature); +int EVP_SIGNATURE_up_ref(EVP_SIGNATURE *signature); +OSSL_PROVIDER *EVP_SIGNATURE_get0_provider(const EVP_SIGNATURE *signature); +EVP_SIGNATURE *EVP_SIGNATURE_fetch(OSSL_LIB_CTX *ctx, const char *algorithm, + const char *properties); +int EVP_SIGNATURE_is_a(const EVP_SIGNATURE *signature, const char *name); +const char *EVP_SIGNATURE_get0_name(const EVP_SIGNATURE *signature); +const char *EVP_SIGNATURE_get0_description(const EVP_SIGNATURE *signature); +void EVP_SIGNATURE_do_all_provided(OSSL_LIB_CTX *libctx, + void (*fn)(EVP_SIGNATURE *signature, + void *data), + void *data); +int EVP_SIGNATURE_names_do_all(const EVP_SIGNATURE *signature, + void (*fn)(const char *name, void *data), + void *data); +const OSSL_PARAM *EVP_SIGNATURE_gettable_ctx_params(const EVP_SIGNATURE *sig); +const OSSL_PARAM *EVP_SIGNATURE_settable_ctx_params(const EVP_SIGNATURE *sig); + +void EVP_ASYM_CIPHER_free(EVP_ASYM_CIPHER *cipher); +int EVP_ASYM_CIPHER_up_ref(EVP_ASYM_CIPHER *cipher); +OSSL_PROVIDER *EVP_ASYM_CIPHER_get0_provider(const EVP_ASYM_CIPHER *cipher); +EVP_ASYM_CIPHER *EVP_ASYM_CIPHER_fetch(OSSL_LIB_CTX *ctx, const char *algorithm, + const char *properties); +int EVP_ASYM_CIPHER_is_a(const EVP_ASYM_CIPHER *cipher, const char *name); +const char *EVP_ASYM_CIPHER_get0_name(const EVP_ASYM_CIPHER *cipher); +const char *EVP_ASYM_CIPHER_get0_description(const EVP_ASYM_CIPHER *cipher); +void EVP_ASYM_CIPHER_do_all_provided(OSSL_LIB_CTX *libctx, + void (*fn)(EVP_ASYM_CIPHER *cipher, + void *arg), + void *arg); +int EVP_ASYM_CIPHER_names_do_all(const EVP_ASYM_CIPHER *cipher, + void (*fn)(const char *name, void *data), + void *data); +const OSSL_PARAM *EVP_ASYM_CIPHER_gettable_ctx_params(const EVP_ASYM_CIPHER *ciph); +const OSSL_PARAM *EVP_ASYM_CIPHER_settable_ctx_params(const EVP_ASYM_CIPHER *ciph); + +void EVP_KEM_free(EVP_KEM *wrap); +int EVP_KEM_up_ref(EVP_KEM *wrap); +OSSL_PROVIDER *EVP_KEM_get0_provider(const EVP_KEM *wrap); +EVP_KEM *EVP_KEM_fetch(OSSL_LIB_CTX *ctx, const char *algorithm, + const char *properties); +int EVP_KEM_is_a(const EVP_KEM *wrap, const char *name); +const char *EVP_KEM_get0_name(const EVP_KEM *wrap); +const char *EVP_KEM_get0_description(const EVP_KEM *wrap); +void EVP_KEM_do_all_provided(OSSL_LIB_CTX *libctx, + void (*fn)(EVP_KEM *wrap, void *arg), void *arg); +int EVP_KEM_names_do_all(const EVP_KEM *wrap, + void (*fn)(const char *name, void *data), void *data); +const OSSL_PARAM *EVP_KEM_gettable_ctx_params(const EVP_KEM *kem); +const OSSL_PARAM *EVP_KEM_settable_ctx_params(const EVP_KEM *kem); + +int EVP_PKEY_sign_init(EVP_PKEY_CTX *ctx); +int EVP_PKEY_sign_init_ex(EVP_PKEY_CTX *ctx, const OSSL_PARAM params[]); +int EVP_PKEY_sign_init_ex2(EVP_PKEY_CTX *ctx, + EVP_SIGNATURE *algo, const OSSL_PARAM params[]); +int EVP_PKEY_sign(EVP_PKEY_CTX *ctx, + unsigned char *sig, size_t *siglen, + const unsigned char *tbs, size_t tbslen); +int EVP_PKEY_sign_message_init(EVP_PKEY_CTX *ctx, + EVP_SIGNATURE *algo, const OSSL_PARAM params[]); +int EVP_PKEY_sign_message_update(EVP_PKEY_CTX *ctx, + const unsigned char *in, size_t inlen); +int EVP_PKEY_sign_message_final(EVP_PKEY_CTX *ctx, + unsigned char *sig, size_t *siglen); +int EVP_PKEY_verify_init(EVP_PKEY_CTX *ctx); +int EVP_PKEY_verify_init_ex(EVP_PKEY_CTX *ctx, const OSSL_PARAM params[]); +int EVP_PKEY_verify_init_ex2(EVP_PKEY_CTX *ctx, + EVP_SIGNATURE *algo, const OSSL_PARAM params[]); +int EVP_PKEY_verify(EVP_PKEY_CTX *ctx, + const unsigned char *sig, size_t siglen, + const unsigned char *tbs, size_t tbslen); +int EVP_PKEY_verify_message_init(EVP_PKEY_CTX *ctx, + EVP_SIGNATURE *algo, const OSSL_PARAM params[]); +int EVP_PKEY_verify_message_update(EVP_PKEY_CTX *ctx, + const unsigned char *in, size_t inlen); +int EVP_PKEY_verify_message_final(EVP_PKEY_CTX *ctx); +int EVP_PKEY_verify_recover_init(EVP_PKEY_CTX *ctx); +int EVP_PKEY_verify_recover_init_ex(EVP_PKEY_CTX *ctx, + const OSSL_PARAM params[]); +int EVP_PKEY_verify_recover_init_ex2(EVP_PKEY_CTX *ctx, + EVP_SIGNATURE *algo, + const OSSL_PARAM params[]); +int EVP_PKEY_verify_recover(EVP_PKEY_CTX *ctx, + unsigned char *rout, size_t *routlen, + const unsigned char *sig, size_t siglen); +int EVP_PKEY_encrypt_init(EVP_PKEY_CTX *ctx); +int EVP_PKEY_encrypt_init_ex(EVP_PKEY_CTX *ctx, const OSSL_PARAM params[]); +int EVP_PKEY_encrypt(EVP_PKEY_CTX *ctx, + unsigned char *out, size_t *outlen, + const unsigned char *in, size_t inlen); +int EVP_PKEY_decrypt_init(EVP_PKEY_CTX *ctx); +int EVP_PKEY_decrypt_init_ex(EVP_PKEY_CTX *ctx, const OSSL_PARAM params[]); +int EVP_PKEY_decrypt(EVP_PKEY_CTX *ctx, + unsigned char *out, size_t *outlen, + const unsigned char *in, size_t inlen); + +int EVP_PKEY_derive_init(EVP_PKEY_CTX *ctx); +int EVP_PKEY_derive_init_ex(EVP_PKEY_CTX *ctx, const OSSL_PARAM params[]); +int EVP_PKEY_derive_set_peer_ex(EVP_PKEY_CTX *ctx, EVP_PKEY *peer, + int validate_peer); +int EVP_PKEY_derive_set_peer(EVP_PKEY_CTX *ctx, EVP_PKEY *peer); +int EVP_PKEY_derive(EVP_PKEY_CTX *ctx, unsigned char *key, size_t *keylen); + +int EVP_PKEY_encapsulate_init(EVP_PKEY_CTX *ctx, const OSSL_PARAM params[]); +int EVP_PKEY_auth_encapsulate_init(EVP_PKEY_CTX *ctx, EVP_PKEY *authpriv, + const OSSL_PARAM params[]); +int EVP_PKEY_encapsulate(EVP_PKEY_CTX *ctx, + unsigned char *wrappedkey, size_t *wrappedkeylen, + unsigned char *genkey, size_t *genkeylen); +int EVP_PKEY_decapsulate_init(EVP_PKEY_CTX *ctx, const OSSL_PARAM params[]); +int EVP_PKEY_auth_decapsulate_init(EVP_PKEY_CTX *ctx, EVP_PKEY *authpub, + const OSSL_PARAM params[]); +int EVP_PKEY_decapsulate(EVP_PKEY_CTX *ctx, + unsigned char *unwrapped, size_t *unwrappedlen, + const unsigned char *wrapped, size_t wrappedlen); +typedef int EVP_PKEY_gen_cb(EVP_PKEY_CTX *ctx); + +int EVP_PKEY_fromdata_init(EVP_PKEY_CTX *ctx); +int EVP_PKEY_fromdata(EVP_PKEY_CTX *ctx, EVP_PKEY **ppkey, int selection, + OSSL_PARAM param[]); +const OSSL_PARAM *EVP_PKEY_fromdata_settable(EVP_PKEY_CTX *ctx, int selection); + +int EVP_PKEY_todata(const EVP_PKEY *pkey, int selection, OSSL_PARAM **params); +int EVP_PKEY_export(const EVP_PKEY *pkey, int selection, + OSSL_CALLBACK *export_cb, void *export_cbarg); + +const OSSL_PARAM *EVP_PKEY_gettable_params(const EVP_PKEY *pkey); +int EVP_PKEY_get_params(const EVP_PKEY *pkey, OSSL_PARAM params[]); +int EVP_PKEY_get_int_param(const EVP_PKEY *pkey, const char *key_name, + int *out); +int EVP_PKEY_get_size_t_param(const EVP_PKEY *pkey, const char *key_name, + size_t *out); +int EVP_PKEY_get_bn_param(const EVP_PKEY *pkey, const char *key_name, + BIGNUM **bn); +int EVP_PKEY_get_utf8_string_param(const EVP_PKEY *pkey, const char *key_name, + char *str, size_t max_buf_sz, size_t *out_sz); +int EVP_PKEY_get_octet_string_param(const EVP_PKEY *pkey, const char *key_name, + unsigned char *buf, size_t max_buf_sz, + size_t *out_sz); + +const OSSL_PARAM *EVP_PKEY_settable_params(const EVP_PKEY *pkey); +int EVP_PKEY_set_params(EVP_PKEY *pkey, OSSL_PARAM params[]); +int EVP_PKEY_set_int_param(EVP_PKEY *pkey, const char *key_name, int in); +int EVP_PKEY_set_size_t_param(EVP_PKEY *pkey, const char *key_name, size_t in); +int EVP_PKEY_set_bn_param(EVP_PKEY *pkey, const char *key_name, + const BIGNUM *bn); +int EVP_PKEY_set_utf8_string_param(EVP_PKEY *pkey, const char *key_name, + const char *str); +int EVP_PKEY_set_octet_string_param(EVP_PKEY *pkey, const char *key_name, + const unsigned char *buf, size_t bsize); + +int EVP_PKEY_get_ec_point_conv_form(const EVP_PKEY *pkey); +int EVP_PKEY_get_field_type(const EVP_PKEY *pkey); + +EVP_PKEY *EVP_PKEY_Q_keygen(OSSL_LIB_CTX *libctx, const char *propq, + const char *type, ...); +int EVP_PKEY_paramgen_init(EVP_PKEY_CTX *ctx); +int EVP_PKEY_paramgen(EVP_PKEY_CTX *ctx, EVP_PKEY **ppkey); +int EVP_PKEY_keygen_init(EVP_PKEY_CTX *ctx); +int EVP_PKEY_keygen(EVP_PKEY_CTX *ctx, EVP_PKEY **ppkey); +int EVP_PKEY_generate(EVP_PKEY_CTX *ctx, EVP_PKEY **ppkey); +int EVP_PKEY_check(EVP_PKEY_CTX *ctx); +int EVP_PKEY_public_check(EVP_PKEY_CTX *ctx); +int EVP_PKEY_public_check_quick(EVP_PKEY_CTX *ctx); +int EVP_PKEY_param_check(EVP_PKEY_CTX *ctx); +int EVP_PKEY_param_check_quick(EVP_PKEY_CTX *ctx); +int EVP_PKEY_private_check(EVP_PKEY_CTX *ctx); +int EVP_PKEY_pairwise_check(EVP_PKEY_CTX *ctx); + +# define EVP_PKEY_get_ex_new_index(l, p, newf, dupf, freef) \ + CRYPTO_get_ex_new_index(CRYPTO_EX_INDEX_EVP_PKEY, l, p, newf, dupf, freef) +int EVP_PKEY_set_ex_data(EVP_PKEY *key, int idx, void *arg); +void *EVP_PKEY_get_ex_data(const EVP_PKEY *key, int idx); + +void EVP_PKEY_CTX_set_cb(EVP_PKEY_CTX *ctx, EVP_PKEY_gen_cb *cb); +EVP_PKEY_gen_cb *EVP_PKEY_CTX_get_cb(EVP_PKEY_CTX *ctx); + +int EVP_PKEY_CTX_get_keygen_info(EVP_PKEY_CTX *ctx, int idx); +# ifndef OPENSSL_NO_DEPRECATED_3_0 +OSSL_DEPRECATEDIN_3_0 void EVP_PKEY_meth_set_init(EVP_PKEY_METHOD *pmeth, + int (*init) (EVP_PKEY_CTX *ctx)); +OSSL_DEPRECATEDIN_3_0 void EVP_PKEY_meth_set_copy + (EVP_PKEY_METHOD *pmeth, int (*copy) (EVP_PKEY_CTX *dst, + const EVP_PKEY_CTX *src)); +OSSL_DEPRECATEDIN_3_0 void EVP_PKEY_meth_set_cleanup + (EVP_PKEY_METHOD *pmeth, void (*cleanup) (EVP_PKEY_CTX *ctx)); +OSSL_DEPRECATEDIN_3_0 void EVP_PKEY_meth_set_paramgen + (EVP_PKEY_METHOD *pmeth, int (*paramgen_init) (EVP_PKEY_CTX *ctx), + int (*paramgen) (EVP_PKEY_CTX *ctx, EVP_PKEY *pkey)); +OSSL_DEPRECATEDIN_3_0 void EVP_PKEY_meth_set_keygen + (EVP_PKEY_METHOD *pmeth, int (*keygen_init) (EVP_PKEY_CTX *ctx), + int (*keygen) (EVP_PKEY_CTX *ctx, EVP_PKEY *pkey)); +OSSL_DEPRECATEDIN_3_0 void EVP_PKEY_meth_set_sign + (EVP_PKEY_METHOD *pmeth, int (*sign_init) (EVP_PKEY_CTX *ctx), + int (*sign) (EVP_PKEY_CTX *ctx, unsigned char *sig, size_t *siglen, + const unsigned char *tbs, size_t tbslen)); +OSSL_DEPRECATEDIN_3_0 void EVP_PKEY_meth_set_verify + (EVP_PKEY_METHOD *pmeth, int (*verify_init) (EVP_PKEY_CTX *ctx), + int (*verify) (EVP_PKEY_CTX *ctx, const unsigned char *sig, size_t siglen, + const unsigned char *tbs, size_t tbslen)); +OSSL_DEPRECATEDIN_3_0 void EVP_PKEY_meth_set_verify_recover + (EVP_PKEY_METHOD *pmeth, int (*verify_recover_init) (EVP_PKEY_CTX *ctx), + int (*verify_recover) (EVP_PKEY_CTX *ctx, unsigned char *sig, + size_t *siglen, const unsigned char *tbs, + size_t tbslen)); +OSSL_DEPRECATEDIN_3_0 void EVP_PKEY_meth_set_signctx + (EVP_PKEY_METHOD *pmeth, int (*signctx_init) (EVP_PKEY_CTX *ctx, + EVP_MD_CTX *mctx), + int (*signctx) (EVP_PKEY_CTX *ctx, unsigned char *sig, size_t *siglen, + EVP_MD_CTX *mctx)); +OSSL_DEPRECATEDIN_3_0 void EVP_PKEY_meth_set_verifyctx + (EVP_PKEY_METHOD *pmeth, int (*verifyctx_init) (EVP_PKEY_CTX *ctx, + EVP_MD_CTX *mctx), + int (*verifyctx) (EVP_PKEY_CTX *ctx, const unsigned char *sig, int siglen, + EVP_MD_CTX *mctx)); +OSSL_DEPRECATEDIN_3_0 void EVP_PKEY_meth_set_encrypt + (EVP_PKEY_METHOD *pmeth, int (*encrypt_init) (EVP_PKEY_CTX *ctx), + int (*encryptfn) (EVP_PKEY_CTX *ctx, unsigned char *out, size_t *outlen, + const unsigned char *in, size_t inlen)); +OSSL_DEPRECATEDIN_3_0 void EVP_PKEY_meth_set_decrypt + (EVP_PKEY_METHOD *pmeth, int (*decrypt_init) (EVP_PKEY_CTX *ctx), + int (*decrypt) (EVP_PKEY_CTX *ctx, unsigned char *out, size_t *outlen, + const unsigned char *in, size_t inlen)); +OSSL_DEPRECATEDIN_3_0 void EVP_PKEY_meth_set_derive + (EVP_PKEY_METHOD *pmeth, int (*derive_init) (EVP_PKEY_CTX *ctx), + int (*derive) (EVP_PKEY_CTX *ctx, unsigned char *key, size_t *keylen)); +OSSL_DEPRECATEDIN_3_0 void EVP_PKEY_meth_set_ctrl + (EVP_PKEY_METHOD *pmeth, int (*ctrl) (EVP_PKEY_CTX *ctx, int type, int p1, + void *p2), + int (*ctrl_str) (EVP_PKEY_CTX *ctx, const char *type, const char *value)); +OSSL_DEPRECATEDIN_3_0 void EVP_PKEY_meth_set_digestsign + (EVP_PKEY_METHOD *pmeth, + int (*digestsign) (EVP_MD_CTX *ctx, unsigned char *sig, size_t *siglen, + const unsigned char *tbs, size_t tbslen)); +OSSL_DEPRECATEDIN_3_0 void EVP_PKEY_meth_set_digestverify + (EVP_PKEY_METHOD *pmeth, + int (*digestverify) (EVP_MD_CTX *ctx, const unsigned char *sig, + size_t siglen, const unsigned char *tbs, + size_t tbslen)); +OSSL_DEPRECATEDIN_3_0 void EVP_PKEY_meth_set_check + (EVP_PKEY_METHOD *pmeth, int (*check) (EVP_PKEY *pkey)); +OSSL_DEPRECATEDIN_3_0 void EVP_PKEY_meth_set_public_check + (EVP_PKEY_METHOD *pmeth, int (*check) (EVP_PKEY *pkey)); +OSSL_DEPRECATEDIN_3_0 void EVP_PKEY_meth_set_param_check + (EVP_PKEY_METHOD *pmeth, int (*check) (EVP_PKEY *pkey)); +OSSL_DEPRECATEDIN_3_0 void EVP_PKEY_meth_set_digest_custom + (EVP_PKEY_METHOD *pmeth, int (*digest_custom) (EVP_PKEY_CTX *ctx, + EVP_MD_CTX *mctx)); +OSSL_DEPRECATEDIN_3_0 void EVP_PKEY_meth_get_init + (const EVP_PKEY_METHOD *pmeth, int (**pinit) (EVP_PKEY_CTX *ctx)); +OSSL_DEPRECATEDIN_3_0 void EVP_PKEY_meth_get_copy + (const EVP_PKEY_METHOD *pmeth, int (**pcopy) (EVP_PKEY_CTX *dst, + const EVP_PKEY_CTX *src)); +OSSL_DEPRECATEDIN_3_0 void EVP_PKEY_meth_get_cleanup + (const EVP_PKEY_METHOD *pmeth, void (**pcleanup) (EVP_PKEY_CTX *ctx)); +OSSL_DEPRECATEDIN_3_0 void EVP_PKEY_meth_get_paramgen + (const EVP_PKEY_METHOD *pmeth, int (**pparamgen_init) (EVP_PKEY_CTX *ctx), + int (**pparamgen) (EVP_PKEY_CTX *ctx, EVP_PKEY *pkey)); +OSSL_DEPRECATEDIN_3_0 void EVP_PKEY_meth_get_keygen + (const EVP_PKEY_METHOD *pmeth, int (**pkeygen_init) (EVP_PKEY_CTX *ctx), + int (**pkeygen) (EVP_PKEY_CTX *ctx, EVP_PKEY *pkey)); +OSSL_DEPRECATEDIN_3_0 void EVP_PKEY_meth_get_sign + (const EVP_PKEY_METHOD *pmeth, int (**psign_init) (EVP_PKEY_CTX *ctx), + int (**psign) (EVP_PKEY_CTX *ctx, unsigned char *sig, size_t *siglen, + const unsigned char *tbs, size_t tbslen)); +OSSL_DEPRECATEDIN_3_0 void EVP_PKEY_meth_get_verify + (const EVP_PKEY_METHOD *pmeth, int (**pverify_init) (EVP_PKEY_CTX *ctx), + int (**pverify) (EVP_PKEY_CTX *ctx, const unsigned char *sig, + size_t siglen, const unsigned char *tbs, size_t tbslen)); +OSSL_DEPRECATEDIN_3_0 void EVP_PKEY_meth_get_verify_recover + (const EVP_PKEY_METHOD *pmeth, + int (**pverify_recover_init) (EVP_PKEY_CTX *ctx), + int (**pverify_recover) (EVP_PKEY_CTX *ctx, unsigned char *sig, + size_t *siglen, const unsigned char *tbs, + size_t tbslen)); +OSSL_DEPRECATEDIN_3_0 void EVP_PKEY_meth_get_signctx + (const EVP_PKEY_METHOD *pmeth, + int (**psignctx_init) (EVP_PKEY_CTX *ctx, EVP_MD_CTX *mctx), + int (**psignctx) (EVP_PKEY_CTX *ctx, unsigned char *sig, size_t *siglen, + EVP_MD_CTX *mctx)); +OSSL_DEPRECATEDIN_3_0 void EVP_PKEY_meth_get_verifyctx + (const EVP_PKEY_METHOD *pmeth, + int (**pverifyctx_init) (EVP_PKEY_CTX *ctx, EVP_MD_CTX *mctx), + int (**pverifyctx) (EVP_PKEY_CTX *ctx, const unsigned char *sig, + int siglen, EVP_MD_CTX *mctx)); +OSSL_DEPRECATEDIN_3_0 void EVP_PKEY_meth_get_encrypt + (const EVP_PKEY_METHOD *pmeth, int (**pencrypt_init) (EVP_PKEY_CTX *ctx), + int (**pencryptfn) (EVP_PKEY_CTX *ctx, unsigned char *out, size_t *outlen, + const unsigned char *in, size_t inlen)); +OSSL_DEPRECATEDIN_3_0 void EVP_PKEY_meth_get_decrypt + (const EVP_PKEY_METHOD *pmeth, int (**pdecrypt_init) (EVP_PKEY_CTX *ctx), + int (**pdecrypt) (EVP_PKEY_CTX *ctx, unsigned char *out, size_t *outlen, + const unsigned char *in, size_t inlen)); +OSSL_DEPRECATEDIN_3_0 void EVP_PKEY_meth_get_derive + (const EVP_PKEY_METHOD *pmeth, int (**pderive_init) (EVP_PKEY_CTX *ctx), + int (**pderive) (EVP_PKEY_CTX *ctx, unsigned char *key, size_t *keylen)); +OSSL_DEPRECATEDIN_3_0 void EVP_PKEY_meth_get_ctrl + (const EVP_PKEY_METHOD *pmeth, + int (**pctrl) (EVP_PKEY_CTX *ctx, int type, int p1, void *p2), + int (**pctrl_str) (EVP_PKEY_CTX *ctx, const char *type, + const char *value)); +OSSL_DEPRECATEDIN_3_0 void EVP_PKEY_meth_get_digestsign + (const EVP_PKEY_METHOD *pmeth, + int (**digestsign) (EVP_MD_CTX *ctx, unsigned char *sig, size_t *siglen, + const unsigned char *tbs, size_t tbslen)); +OSSL_DEPRECATEDIN_3_0 void EVP_PKEY_meth_get_digestverify + (const EVP_PKEY_METHOD *pmeth, + int (**digestverify) (EVP_MD_CTX *ctx, const unsigned char *sig, + size_t siglen, const unsigned char *tbs, + size_t tbslen)); +OSSL_DEPRECATEDIN_3_0 void EVP_PKEY_meth_get_check + (const EVP_PKEY_METHOD *pmeth, int (**pcheck) (EVP_PKEY *pkey)); +OSSL_DEPRECATEDIN_3_0 void EVP_PKEY_meth_get_public_check + (const EVP_PKEY_METHOD *pmeth, int (**pcheck) (EVP_PKEY *pkey)); +OSSL_DEPRECATEDIN_3_0 void EVP_PKEY_meth_get_param_check + (const EVP_PKEY_METHOD *pmeth, int (**pcheck) (EVP_PKEY *pkey)); +OSSL_DEPRECATEDIN_3_0 void EVP_PKEY_meth_get_digest_custom + (const EVP_PKEY_METHOD *pmeth, + int (**pdigest_custom) (EVP_PKEY_CTX *ctx, EVP_MD_CTX *mctx)); +# endif + +void EVP_KEYEXCH_free(EVP_KEYEXCH *exchange); +int EVP_KEYEXCH_up_ref(EVP_KEYEXCH *exchange); +EVP_KEYEXCH *EVP_KEYEXCH_fetch(OSSL_LIB_CTX *ctx, const char *algorithm, + const char *properties); +OSSL_PROVIDER *EVP_KEYEXCH_get0_provider(const EVP_KEYEXCH *exchange); +int EVP_KEYEXCH_is_a(const EVP_KEYEXCH *keyexch, const char *name); +const char *EVP_KEYEXCH_get0_name(const EVP_KEYEXCH *keyexch); +const char *EVP_KEYEXCH_get0_description(const EVP_KEYEXCH *keyexch); +void EVP_KEYEXCH_do_all_provided(OSSL_LIB_CTX *libctx, + void (*fn)(EVP_KEYEXCH *keyexch, void *data), + void *data); +int EVP_KEYEXCH_names_do_all(const EVP_KEYEXCH *keyexch, + void (*fn)(const char *name, void *data), + void *data); +const OSSL_PARAM *EVP_KEYEXCH_gettable_ctx_params(const EVP_KEYEXCH *keyexch); +const OSSL_PARAM *EVP_KEYEXCH_settable_ctx_params(const EVP_KEYEXCH *keyexch); + +void EVP_add_alg_module(void); + +int EVP_PKEY_CTX_set_group_name(EVP_PKEY_CTX *ctx, const char *name); +int EVP_PKEY_CTX_get_group_name(EVP_PKEY_CTX *ctx, char *name, size_t namelen); +int EVP_PKEY_get_group_name(const EVP_PKEY *pkey, char *name, size_t name_sz, + size_t *gname_len); + +OSSL_LIB_CTX *EVP_PKEY_CTX_get0_libctx(EVP_PKEY_CTX *ctx); +const char *EVP_PKEY_CTX_get0_propq(const EVP_PKEY_CTX *ctx); +const OSSL_PROVIDER *EVP_PKEY_CTX_get0_provider(const EVP_PKEY_CTX *ctx); + +int EVP_SKEY_is_a(const EVP_SKEY *skey, const char *name); +EVP_SKEY *EVP_SKEY_import(OSSL_LIB_CTX *libctx, const char *skeymgmtname, const char *propquery, + int selection, const OSSL_PARAM *params); +EVP_SKEY *EVP_SKEY_generate(OSSL_LIB_CTX *libctx, const char *skeymgmtname, + const char *propquery, const OSSL_PARAM *params); +EVP_SKEY *EVP_SKEY_import_raw_key(OSSL_LIB_CTX *libctx, const char *skeymgmtname, + unsigned char *key, size_t keylen, + const char *propquery); +int EVP_SKEY_get0_raw_key(const EVP_SKEY *skey, const unsigned char **key, + size_t *len); +const char *EVP_SKEY_get0_key_id(const EVP_SKEY *skey); +int EVP_SKEY_export(const EVP_SKEY *skey, int selection, + OSSL_CALLBACK *export_cb, void *export_cbarg); +int EVP_SKEY_up_ref(EVP_SKEY *skey); +void EVP_SKEY_free(EVP_SKEY *skey); +const char *EVP_SKEY_get0_skeymgmt_name(const EVP_SKEY *skey); +const char *EVP_SKEY_get0_provider_name(const EVP_SKEY *skey); +EVP_SKEY *EVP_SKEY_to_provider(EVP_SKEY *skey, OSSL_LIB_CTX *libctx, + OSSL_PROVIDER *prov, const char *propquery); + +# ifdef __cplusplus +} +# endif +#endif diff --git a/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/hpke.h b/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/hpke.h new file mode 100644 index 0000000000000000000000000000000000000000..482acd22c38b2c130c85d1ce1e0864580a0a5dcc --- /dev/null +++ b/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/hpke.h @@ -0,0 +1,169 @@ +/* + * Copyright 2022-2024 The OpenSSL Project Authors. All Rights Reserved. + * + * Licensed under the Apache License 2.0 (the "License"). You may not use + * this file except in compliance with the License. You can obtain a copy + * in the file LICENSE in the source distribution or at + * https://www.openssl.org/source/license.html + */ + +/* APIs and data structures for HPKE (RFC9180) */ +#ifndef OSSL_HPKE_H +# define OSSL_HPKE_H +# pragma once + +# include + +/* HPKE modes */ +# define OSSL_HPKE_MODE_BASE 0 /* Base mode */ +# define OSSL_HPKE_MODE_PSK 1 /* Pre-shared key mode */ +# define OSSL_HPKE_MODE_AUTH 2 /* Authenticated mode */ +# define OSSL_HPKE_MODE_PSKAUTH 3 /* PSK+authenticated mode */ + +/* + * Max for ikm, psk, pskid, info and exporter contexts. + * RFC9180, section 7.2.1 RECOMMENDS 64 octets but we have test vectors from + * Appendix A.6.1 with a 66 octet IKM so we'll allow that. + */ +# define OSSL_HPKE_MAX_PARMLEN 66 +# define OSSL_HPKE_MIN_PSKLEN 32 +# define OSSL_HPKE_MAX_INFOLEN 1024 + +/* + * The (16bit) HPKE algorithm ID IANA codepoints + * If/when new IANA codepoints are added there are tables in + * crypto/hpke/hpke_util.c that must also be updated. + */ +# define OSSL_HPKE_KEM_ID_RESERVED 0x0000 /* not used */ +# define OSSL_HPKE_KEM_ID_P256 0x0010 /* NIST P-256 */ +# define OSSL_HPKE_KEM_ID_P384 0x0011 /* NIST P-384 */ +# define OSSL_HPKE_KEM_ID_P521 0x0012 /* NIST P-521 */ +# define OSSL_HPKE_KEM_ID_X25519 0x0020 /* Curve25519 */ +# define OSSL_HPKE_KEM_ID_X448 0x0021 /* Curve448 */ + +# define OSSL_HPKE_KDF_ID_RESERVED 0x0000 /* not used */ +# define OSSL_HPKE_KDF_ID_HKDF_SHA256 0x0001 /* HKDF-SHA256 */ +# define OSSL_HPKE_KDF_ID_HKDF_SHA384 0x0002 /* HKDF-SHA384 */ +# define OSSL_HPKE_KDF_ID_HKDF_SHA512 0x0003 /* HKDF-SHA512 */ + +# define OSSL_HPKE_AEAD_ID_RESERVED 0x0000 /* not used */ +# define OSSL_HPKE_AEAD_ID_AES_GCM_128 0x0001 /* AES-GCM-128 */ +# define OSSL_HPKE_AEAD_ID_AES_GCM_256 0x0002 /* AES-GCM-256 */ +# define OSSL_HPKE_AEAD_ID_CHACHA_POLY1305 0x0003 /* Chacha20-Poly1305 */ +# define OSSL_HPKE_AEAD_ID_EXPORTONLY 0xFFFF /* export-only fake ID */ + +/* strings for suite components */ +# define OSSL_HPKE_KEMSTR_P256 "P-256" /* KEM id 0x10 */ +# define OSSL_HPKE_KEMSTR_P384 "P-384" /* KEM id 0x11 */ +# define OSSL_HPKE_KEMSTR_P521 "P-521" /* KEM id 0x12 */ +# define OSSL_HPKE_KEMSTR_X25519 "X25519" /* KEM id 0x20 */ +# define OSSL_HPKE_KEMSTR_X448 "X448" /* KEM id 0x21 */ +# define OSSL_HPKE_KDFSTR_256 "hkdf-sha256" /* KDF id 1 */ +# define OSSL_HPKE_KDFSTR_384 "hkdf-sha384" /* KDF id 2 */ +# define OSSL_HPKE_KDFSTR_512 "hkdf-sha512" /* KDF id 3 */ +# define OSSL_HPKE_AEADSTR_AES128GCM "aes-128-gcm" /* AEAD id 1 */ +# define OSSL_HPKE_AEADSTR_AES256GCM "aes-256-gcm" /* AEAD id 2 */ +# define OSSL_HPKE_AEADSTR_CP "chacha20-poly1305" /* AEAD id 3 */ +# define OSSL_HPKE_AEADSTR_EXP "exporter" /* AEAD id 0xff */ + +/* + * Roles for use in creating an OSSL_HPKE_CTX, most + * important use of this is to control nonce reuse. + */ +# define OSSL_HPKE_ROLE_SENDER 0 +# define OSSL_HPKE_ROLE_RECEIVER 1 + +# ifdef __cplusplus +extern "C" { +# endif + +typedef struct { + uint16_t kem_id; /* Key Encapsulation Method id */ + uint16_t kdf_id; /* Key Derivation Function id */ + uint16_t aead_id; /* AEAD alg id */ +} OSSL_HPKE_SUITE; + +/** + * Suite constants, use this like: + * OSSL_HPKE_SUITE myvar = OSSL_HPKE_SUITE_DEFAULT; + */ +# ifndef OPENSSL_NO_ECX +# define OSSL_HPKE_SUITE_DEFAULT \ + {\ + OSSL_HPKE_KEM_ID_X25519, \ + OSSL_HPKE_KDF_ID_HKDF_SHA256, \ + OSSL_HPKE_AEAD_ID_AES_GCM_128 \ + } +# else +# define OSSL_HPKE_SUITE_DEFAULT \ + {\ + OSSL_HPKE_KEM_ID_P256, \ + OSSL_HPKE_KDF_ID_HKDF_SHA256, \ + OSSL_HPKE_AEAD_ID_AES_GCM_128 \ + } +#endif + +typedef struct ossl_hpke_ctx_st OSSL_HPKE_CTX; + +OSSL_HPKE_CTX *OSSL_HPKE_CTX_new(int mode, OSSL_HPKE_SUITE suite, int role, + OSSL_LIB_CTX *libctx, const char *propq); +void OSSL_HPKE_CTX_free(OSSL_HPKE_CTX *ctx); + +int OSSL_HPKE_encap(OSSL_HPKE_CTX *ctx, + unsigned char *enc, size_t *enclen, + const unsigned char *pub, size_t publen, + const unsigned char *info, size_t infolen); +int OSSL_HPKE_seal(OSSL_HPKE_CTX *ctx, + unsigned char *ct, size_t *ctlen, + const unsigned char *aad, size_t aadlen, + const unsigned char *pt, size_t ptlen); + +int OSSL_HPKE_keygen(OSSL_HPKE_SUITE suite, + unsigned char *pub, size_t *publen, EVP_PKEY **priv, + const unsigned char *ikm, size_t ikmlen, + OSSL_LIB_CTX *libctx, const char *propq); +int OSSL_HPKE_decap(OSSL_HPKE_CTX *ctx, + const unsigned char *enc, size_t enclen, + EVP_PKEY *recippriv, + const unsigned char *info, size_t infolen); +int OSSL_HPKE_open(OSSL_HPKE_CTX *ctx, + unsigned char *pt, size_t *ptlen, + const unsigned char *aad, size_t aadlen, + const unsigned char *ct, size_t ctlen); + +int OSSL_HPKE_export(OSSL_HPKE_CTX *ctx, + unsigned char *secret, + size_t secretlen, + const unsigned char *label, + size_t labellen); + +int OSSL_HPKE_CTX_set1_authpriv(OSSL_HPKE_CTX *ctx, EVP_PKEY *priv); +int OSSL_HPKE_CTX_set1_authpub(OSSL_HPKE_CTX *ctx, + const unsigned char *pub, + size_t publen); +int OSSL_HPKE_CTX_set1_psk(OSSL_HPKE_CTX *ctx, + const char *pskid, + const unsigned char *psk, size_t psklen); + +int OSSL_HPKE_CTX_set1_ikme(OSSL_HPKE_CTX *ctx, + const unsigned char *ikme, size_t ikmelen); + +int OSSL_HPKE_CTX_set_seq(OSSL_HPKE_CTX *ctx, uint64_t seq); +int OSSL_HPKE_CTX_get_seq(OSSL_HPKE_CTX *ctx, uint64_t *seq); + +int OSSL_HPKE_suite_check(OSSL_HPKE_SUITE suite); +int OSSL_HPKE_get_grease_value(const OSSL_HPKE_SUITE *suite_in, + OSSL_HPKE_SUITE *suite, + unsigned char *enc, size_t *enclen, + unsigned char *ct, size_t ctlen, + OSSL_LIB_CTX *libctx, const char *propq); +int OSSL_HPKE_str2suite(const char *str, OSSL_HPKE_SUITE *suite); +size_t OSSL_HPKE_get_ciphertext_size(OSSL_HPKE_SUITE suite, size_t clearlen); +size_t OSSL_HPKE_get_public_encap_size(OSSL_HPKE_SUITE suite); +size_t OSSL_HPKE_get_recommended_ikmelen(OSSL_HPKE_SUITE suite); + +# ifdef __cplusplus +} +# endif + +#endif diff --git a/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/http.h b/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/http.h new file mode 100644 index 0000000000000000000000000000000000000000..d7aa5707250539ac319050d18f34fdc17ca7494d --- /dev/null +++ b/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/http.h @@ -0,0 +1,119 @@ +/* + * Copyright 2000-2025 The OpenSSL Project Authors. All Rights Reserved. + * Copyright Siemens AG 2018-2020 + * + * Licensed under the Apache License 2.0 (the "License"). You may not use + * this file except in compliance with the License. You can obtain a copy + * in the file LICENSE in the source distribution or at + * https://www.openssl.org/source/license.html + */ + +#ifndef OPENSSL_HTTP_H +# define OPENSSL_HTTP_H +# pragma once + +# include + +# include +# include +# include + + +# ifdef __cplusplus +extern "C" { +# endif + +# define OSSL_HTTP_NAME "http" +# define OSSL_HTTPS_NAME "https" +# define OSSL_HTTP_PREFIX OSSL_HTTP_NAME"://" +# define OSSL_HTTPS_PREFIX OSSL_HTTPS_NAME"://" +# define OSSL_HTTP_PORT "80" +# define OSSL_HTTPS_PORT "443" +# define OPENSSL_NO_PROXY "NO_PROXY" +# define OPENSSL_HTTP_PROXY "HTTP_PROXY" +# define OPENSSL_HTTPS_PROXY "HTTPS_PROXY" + +/* We want to have this even in case of OPENSSL_NO_HTTP */ +int OSSL_parse_url(const char *url, char **pscheme, char **puser, char **phost, + char **pport, int *pport_num, + char **ppath, char **pquery, char **pfrag); + +# ifndef OPENSSL_NO_HTTP + +# define OSSL_HTTP_DEFAULT_MAX_LINE_LEN (4 * 1024) +# define OSSL_HTTP_DEFAULT_MAX_RESP_LEN (100 * 1024) +# define OSSL_HTTP_DEFAULT_MAX_CRL_LEN (32 * 1024 * 1024) +# define OSSL_HTTP_DEFAULT_MAX_RESP_HDR_LINES 256 + + +/* Low-level HTTP API */ +OSSL_HTTP_REQ_CTX *OSSL_HTTP_REQ_CTX_new(BIO *wbio, BIO *rbio, int buf_size); +void OSSL_HTTP_REQ_CTX_free(OSSL_HTTP_REQ_CTX *rctx); +int OSSL_HTTP_REQ_CTX_set_request_line(OSSL_HTTP_REQ_CTX *rctx, int method_POST, + const char *server, const char *port, + const char *path); +int OSSL_HTTP_REQ_CTX_add1_header(OSSL_HTTP_REQ_CTX *rctx, + const char *name, const char *value); +int OSSL_HTTP_REQ_CTX_set_expected(OSSL_HTTP_REQ_CTX *rctx, + const char *content_type, int asn1, + int timeout, int keep_alive); +int OSSL_HTTP_REQ_CTX_set1_req(OSSL_HTTP_REQ_CTX *rctx, const char *content_type, + const ASN1_ITEM *it, const ASN1_VALUE *req); +int OSSL_HTTP_REQ_CTX_nbio(OSSL_HTTP_REQ_CTX *rctx); +int OSSL_HTTP_REQ_CTX_nbio_d2i(OSSL_HTTP_REQ_CTX *rctx, + ASN1_VALUE **pval, const ASN1_ITEM *it); +BIO *OSSL_HTTP_REQ_CTX_exchange(OSSL_HTTP_REQ_CTX *rctx); +BIO *OSSL_HTTP_REQ_CTX_get0_mem_bio(const OSSL_HTTP_REQ_CTX *rctx); +size_t OSSL_HTTP_REQ_CTX_get_resp_len(const OSSL_HTTP_REQ_CTX *rctx); +void OSSL_HTTP_REQ_CTX_set_max_response_length(OSSL_HTTP_REQ_CTX *rctx, + unsigned long len); +void OSSL_HTTP_REQ_CTX_set_max_response_hdr_lines(OSSL_HTTP_REQ_CTX *rctx, + size_t count); +int OSSL_HTTP_is_alive(const OSSL_HTTP_REQ_CTX *rctx); + +/* High-level HTTP API */ +typedef BIO *(*OSSL_HTTP_bio_cb_t)(BIO *bio, void *arg, int connect, int detail); +OSSL_HTTP_REQ_CTX *OSSL_HTTP_open(const char *server, const char *port, + const char *proxy, const char *no_proxy, + int use_ssl, BIO *bio, BIO *rbio, + OSSL_HTTP_bio_cb_t bio_update_fn, void *arg, + int buf_size, int overall_timeout); +int OSSL_HTTP_proxy_connect(BIO *bio, const char *server, const char *port, + const char *proxyuser, const char *proxypass, + int timeout, BIO *bio_err, const char *prog); +int OSSL_HTTP_set1_request(OSSL_HTTP_REQ_CTX *rctx, const char *path, + const STACK_OF(CONF_VALUE) *headers, + const char *content_type, BIO *req, + const char *expected_content_type, int expect_asn1, + size_t max_resp_len, int timeout, int keep_alive); +BIO *OSSL_HTTP_exchange(OSSL_HTTP_REQ_CTX *rctx, char **redirection_url); +BIO *OSSL_HTTP_get(const char *url, const char *proxy, const char *no_proxy, + BIO *bio, BIO *rbio, + OSSL_HTTP_bio_cb_t bio_update_fn, void *arg, + int buf_size, const STACK_OF(CONF_VALUE) *headers, + const char *expected_content_type, int expect_asn1, + size_t max_resp_len, int timeout); +BIO *OSSL_HTTP_transfer(OSSL_HTTP_REQ_CTX **prctx, + const char *server, const char *port, + const char *path, int use_ssl, + const char *proxy, const char *no_proxy, + BIO *bio, BIO *rbio, + OSSL_HTTP_bio_cb_t bio_update_fn, void *arg, + int buf_size, const STACK_OF(CONF_VALUE) *headers, + const char *content_type, BIO *req, + const char *expected_content_type, int expect_asn1, + size_t max_resp_len, int timeout, int keep_alive); +int OSSL_HTTP_close(OSSL_HTTP_REQ_CTX *rctx, int ok); + +/* Auxiliary functions */ +int OSSL_HTTP_parse_url(const char *url, int *pssl, char **puser, char **phost, + char **pport, int *pport_num, + char **ppath, char **pquery, char **pfrag); +const char *OSSL_HTTP_adapt_proxy(const char *proxy, const char *no_proxy, + const char *server, int use_ssl); + +# endif /* !defined(OPENSSL_NO_HTTP) */ +# ifdef __cplusplus +} +# endif +#endif /* !defined(OPENSSL_HTTP_H) */ diff --git a/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/indicator.h b/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/indicator.h new file mode 100644 index 0000000000000000000000000000000000000000..3ea0122188642e0dc86ef6781f454145ae08d601 --- /dev/null +++ b/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/indicator.h @@ -0,0 +1,31 @@ +/* + * Copyright 2024 The OpenSSL Project Authors. All Rights Reserved. + * + * Licensed under the Apache License 2.0 (the "License"). You may not use + * this file except in compliance with the License. You can obtain a copy + * in the file LICENSE in the source distribution or at + * https://www.openssl.org/source/license.html + */ + +#ifndef OPENSSL_INDICATOR_H +# define OPENSSL_INDICATOR_H +# pragma once + +# ifdef __cplusplus +extern "C" { +# endif + +#include + +typedef int (OSSL_INDICATOR_CALLBACK)(const char *type, const char *desc, + const OSSL_PARAM params[]); + +void OSSL_INDICATOR_set_callback(OSSL_LIB_CTX *libctx, + OSSL_INDICATOR_CALLBACK *cb); +void OSSL_INDICATOR_get_callback(OSSL_LIB_CTX *libctx, + OSSL_INDICATOR_CALLBACK **cb); + +# ifdef __cplusplus +} +# endif +#endif /* OPENSSL_INDICATOR_H */ diff --git a/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/md4.h b/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/md4.h new file mode 100644 index 0000000000000000000000000000000000000000..6c150a6cb24ce4846e2441466921e159d7c4a4ed --- /dev/null +++ b/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/md4.h @@ -0,0 +1,63 @@ +/* + * Copyright 1995-2020 The OpenSSL Project Authors. All Rights Reserved. + * + * Licensed under the Apache License 2.0 (the "License"). You may not use + * this file except in compliance with the License. You can obtain a copy + * in the file LICENSE in the source distribution or at + * https://www.openssl.org/source/license.html + */ + +#ifndef OPENSSL_MD4_H +# define OPENSSL_MD4_H +# pragma once + +# include +# ifndef OPENSSL_NO_DEPRECATED_3_0 +# define HEADER_MD4_H +# endif + +# include + +# ifndef OPENSSL_NO_MD4 +# include +# include +# ifdef __cplusplus +extern "C" { +# endif + +# define MD4_DIGEST_LENGTH 16 + +# if !defined(OPENSSL_NO_DEPRECATED_3_0) + +/*- + * !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + * ! MD4_LONG has to be at least 32 bits wide. ! + * !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + */ +# define MD4_LONG unsigned int + +# define MD4_CBLOCK 64 +# define MD4_LBLOCK (MD4_CBLOCK/4) + +typedef struct MD4state_st { + MD4_LONG A, B, C, D; + MD4_LONG Nl, Nh; + MD4_LONG data[MD4_LBLOCK]; + unsigned int num; +} MD4_CTX; +# endif +# ifndef OPENSSL_NO_DEPRECATED_3_0 +OSSL_DEPRECATEDIN_3_0 int MD4_Init(MD4_CTX *c); +OSSL_DEPRECATEDIN_3_0 int MD4_Update(MD4_CTX *c, const void *data, size_t len); +OSSL_DEPRECATEDIN_3_0 int MD4_Final(unsigned char *md, MD4_CTX *c); +OSSL_DEPRECATEDIN_3_0 unsigned char *MD4(const unsigned char *d, size_t n, + unsigned char *md); +OSSL_DEPRECATEDIN_3_0 void MD4_Transform(MD4_CTX *c, const unsigned char *b); +# endif + +# ifdef __cplusplus +} +# endif +# endif + +#endif diff --git a/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/ocsp.h b/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/ocsp.h new file mode 100644 index 0000000000000000000000000000000000000000..85bf8944223279c4925973c1f9f6d802c340c0d6 --- /dev/null +++ b/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/ocsp.h @@ -0,0 +1,5 @@ +#if defined(OPENSSL_NO_ASM) +# include "./ocsp_no-asm.h" +#else +# include "./ocsp_asm.h" +#endif diff --git a/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/ocsperr.h b/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/ocsperr.h new file mode 100644 index 0000000000000000000000000000000000000000..46a0523c2de4d261d1a6d3f0c1cac160948d004a --- /dev/null +++ b/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/ocsperr.h @@ -0,0 +1,53 @@ +/* + * Generated by util/mkerr.pl DO NOT EDIT + * Copyright 1995-2021 The OpenSSL Project Authors. All Rights Reserved. + * + * Licensed under the Apache License 2.0 (the "License"). You may not use + * this file except in compliance with the License. You can obtain a copy + * in the file LICENSE in the source distribution or at + * https://www.openssl.org/source/license.html + */ + +#ifndef OPENSSL_OCSPERR_H +# define OPENSSL_OCSPERR_H +# pragma once + +# include +# include +# include + + +# ifndef OPENSSL_NO_OCSP + + +/* + * OCSP reason codes. + */ +# define OCSP_R_CERTIFICATE_VERIFY_ERROR 101 +# define OCSP_R_DIGEST_ERR 102 +# define OCSP_R_DIGEST_NAME_ERR 106 +# define OCSP_R_DIGEST_SIZE_ERR 107 +# define OCSP_R_ERROR_IN_NEXTUPDATE_FIELD 122 +# define OCSP_R_ERROR_IN_THISUPDATE_FIELD 123 +# define OCSP_R_MISSING_OCSPSIGNING_USAGE 103 +# define OCSP_R_NEXTUPDATE_BEFORE_THISUPDATE 124 +# define OCSP_R_NOT_BASIC_RESPONSE 104 +# define OCSP_R_NO_CERTIFICATES_IN_CHAIN 105 +# define OCSP_R_NO_RESPONSE_DATA 108 +# define OCSP_R_NO_REVOKED_TIME 109 +# define OCSP_R_NO_SIGNER_KEY 130 +# define OCSP_R_PRIVATE_KEY_DOES_NOT_MATCH_CERTIFICATE 110 +# define OCSP_R_REQUEST_NOT_SIGNED 128 +# define OCSP_R_RESPONSE_CONTAINS_NO_REVOCATION_DATA 111 +# define OCSP_R_ROOT_CA_NOT_TRUSTED 112 +# define OCSP_R_SIGNATURE_FAILURE 117 +# define OCSP_R_SIGNER_CERTIFICATE_NOT_FOUND 118 +# define OCSP_R_STATUS_EXPIRED 125 +# define OCSP_R_STATUS_NOT_YET_VALID 126 +# define OCSP_R_STATUS_TOO_OLD 127 +# define OCSP_R_UNKNOWN_MESSAGE_DIGEST 119 +# define OCSP_R_UNKNOWN_NID 120 +# define OCSP_R_UNSUPPORTED_REQUESTORNAME_TYPE 129 + +# endif +#endif diff --git a/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/pemerr.h b/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/pemerr.h new file mode 100644 index 0000000000000000000000000000000000000000..3530775bdc634460eeaad4b0234e8397f06fffa2 --- /dev/null +++ b/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/pemerr.h @@ -0,0 +1,59 @@ +/* + * Generated by util/mkerr.pl DO NOT EDIT + * Copyright 1995-2025 The OpenSSL Project Authors. All Rights Reserved. + * + * Licensed under the Apache License 2.0 (the "License"). You may not use + * this file except in compliance with the License. You can obtain a copy + * in the file LICENSE in the source distribution or at + * https://www.openssl.org/source/license.html + */ + +#ifndef OPENSSL_PEMERR_H +# define OPENSSL_PEMERR_H +# pragma once + +# include +# include +# include + + + +/* + * PEM reason codes. + */ +# define PEM_R_BAD_BASE64_DECODE 100 +# define PEM_R_BAD_DECRYPT 101 +# define PEM_R_BAD_END_LINE 102 +# define PEM_R_BAD_IV_CHARS 103 +# define PEM_R_BAD_MAGIC_NUMBER 116 +# define PEM_R_BAD_PASSWORD_READ 104 +# define PEM_R_BAD_VERSION_NUMBER 117 +# define PEM_R_BIO_WRITE_FAILURE 118 +# define PEM_R_CIPHER_IS_NULL 127 +# define PEM_R_ERROR_CONVERTING_PRIVATE_KEY 115 +# define PEM_R_EXPECTING_DSS_KEY_BLOB 131 +# define PEM_R_EXPECTING_PRIVATE_KEY_BLOB 119 +# define PEM_R_EXPECTING_PUBLIC_KEY_BLOB 120 +# define PEM_R_EXPECTING_RSA_KEY_BLOB 132 +# define PEM_R_HEADER_TOO_LONG 128 +# define PEM_R_INCONSISTENT_HEADER 121 +# define PEM_R_KEYBLOB_HEADER_PARSE_ERROR 122 +# define PEM_R_KEYBLOB_TOO_SHORT 123 +# define PEM_R_MISSING_DEK_IV 129 +# define PEM_R_NOT_DEK_INFO 105 +# define PEM_R_NOT_ENCRYPTED 106 +# define PEM_R_NOT_PROC_TYPE 107 +# define PEM_R_NO_START_LINE 108 +# define PEM_R_PROBLEMS_GETTING_PASSWORD 109 +# define PEM_R_PVK_DATA_TOO_SHORT 124 +# define PEM_R_PVK_TOO_SHORT 125 +# define PEM_R_READ_KEY 111 +# define PEM_R_SHORT_HEADER 112 +# define PEM_R_UNEXPECTED_DEK_IV 130 +# define PEM_R_UNSUPPORTED_CIPHER 113 +# define PEM_R_UNSUPPORTED_ENCRYPTION 114 +# define PEM_R_UNSUPPORTED_KEY_COMPONENTS 126 +# define PEM_R_UNSUPPORTED_PUBLIC_KEY_TYPE 110 +# define PEM_R_UNSUPPORTED_PVK_KEY_TYPE 133 + +#endif diff --git a/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/pkcs12_no-asm.h b/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/pkcs12_no-asm.h new file mode 100644 index 0000000000000000000000000000000000000000..dc097bd278d5da0b9e760ea69366f59aa07531d1 --- /dev/null +++ b/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/pkcs12_no-asm.h @@ -0,0 +1,57 @@ +#undef OPENSSL_LINUX +#if defined(__linux) && !defined(__ANDROID__) +# define OPENSSL_LINUX 1 +#endif + +#if defined(OPENSSL_LINUX) && defined(__i386__) +# include "./archs/linux-elf/no-asm/include/openssl/pkcs12.h" +#elif defined(OPENSSL_LINUX) && defined(__ILP32__) +# include "./archs/linux-x32/no-asm/include/openssl/pkcs12.h" +#elif defined(OPENSSL_LINUX) && defined(__x86_64__) +# include "./archs/linux-x86_64/no-asm/include/openssl/pkcs12.h" +#elif defined(OPENSSL_LINUX) && defined(__arm__) +# include "./archs/linux-armv4/no-asm/include/openssl/pkcs12.h" +#elif defined(OPENSSL_LINUX) && defined(__aarch64__) +# include "./archs/linux-aarch64/no-asm/include/openssl/pkcs12.h" +#elif defined(OPENSSL_LINUX) && defined(__loongarch64) +# include "./archs/linux64-loongarch64/no-asm/include/openssl/pkcs12.h" +#elif defined(__APPLE__) && defined(__MACH__) && defined(__i386__) +# include "./archs/darwin-i386-cc/no-asm/include/openssl/pkcs12.h" +#elif defined(__APPLE__) && defined(__MACH__) && defined(__x86_64__) +# include "./archs/darwin64-x86_64-cc/no-asm/include/openssl/pkcs12.h" +#elif defined(__APPLE__) && defined(__MACH__) && defined(__arm64__) +# include "./archs/darwin64-arm64-cc/no-asm/include/openssl/pkcs12.h" +#elif defined(_WIN32) && defined(_M_IX86) +# include "./archs/VC-WIN32/no-asm/include/openssl/pkcs12.h" +#elif defined(_WIN32) && defined(_M_X64) +# include "./archs/VC-WIN64A/no-asm/include/openssl/pkcs12.h" +#elif defined(_WIN32) && defined(_M_ARM64) +# include "./archs/VC-WIN64-ARM/no-asm/include/openssl/pkcs12.h" +#elif (defined(__FreeBSD__) || defined(__OpenBSD__)) && defined(__i386__) +# include "./archs/BSD-x86/no-asm/include/openssl/pkcs12.h" +#elif (defined(__FreeBSD__) || defined(__OpenBSD__)) && defined(__x86_64__) +# include "./archs/BSD-x86_64/no-asm/include/openssl/pkcs12.h" +#elif defined(__sun) && defined(__i386__) +# include "./archs/solaris-x86-gcc/no-asm/include/openssl/pkcs12.h" +#elif defined(__sun) && defined(__x86_64__) +# include "./archs/solaris64-x86_64-gcc/no-asm/include/openssl/pkcs12.h" +#elif defined(OPENSSL_LINUX) && defined(__PPC64__) && defined(L_ENDIAN) +# include "./archs/linux-ppc64le/no-asm/include/openssl/pkcs12.h" +#elif defined(_AIX) && defined(_ARCH_PPC64) +# include "./archs/aix64-gcc-as/no-asm/include/openssl/pkcs12.h" +#elif defined(OPENSSL_LINUX) && defined(__s390x__) +# include "./archs/linux64-s390x/no-asm/include/openssl/pkcs12.h" +#elif defined(OPENSSL_LINUX) && defined(__s390__) +# include "./archs/linux32-s390x/no-asm/include/openssl/pkcs12.h" +#else +# include "./archs/linux-elf/no-asm/include/openssl/pkcs12.h" +#endif + +/* GOST is not included in all platform */ +#ifndef OPENSSL_NO_GOST +# define OPENSSL_NO_GOST +#endif +/* HW_PADLOCK is not included in all platform */ +#ifndef OPENSSL_NO_HW_PADLOCK +# define OPENSSL_NO_HW_PADLOCK +#endif diff --git a/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/prov_ssl.h b/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/prov_ssl.h new file mode 100644 index 0000000000000000000000000000000000000000..76d01e1eb89c4970eea2362fbc83f4f30b3bc40c --- /dev/null +++ b/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/prov_ssl.h @@ -0,0 +1,38 @@ +/* + * Copyright 2021-2023 The OpenSSL Project Authors. All Rights Reserved. + * + * Licensed under the Apache License 2.0 (the "License"). You may not use + * this file except in compliance with the License. You can obtain a copy + * in the file LICENSE in the source distribution or at + * https://www.openssl.org/source/license.html + */ + +#ifndef OPENSSL_PROV_SSL_H +# define OPENSSL_PROV_SSL_H +# pragma once + +# ifdef __cplusplus +extern "C" { +# endif + +/* SSL/TLS related defines useful to providers */ + +# define SSL_MAX_MASTER_KEY_LENGTH 48 + +/* SSL/TLS uses a 2 byte unsigned version number */ +# define SSL3_VERSION 0x0300 +# define TLS1_VERSION 0x0301 +# define TLS1_1_VERSION 0x0302 +# define TLS1_2_VERSION 0x0303 +# define TLS1_3_VERSION 0x0304 +# define DTLS1_VERSION 0xFEFF +# define DTLS1_2_VERSION 0xFEFD +# define DTLS1_BAD_VER 0x0100 + +/* QUIC uses a 4 byte unsigned version number */ +# define OSSL_QUIC1_VERSION 0x0000001 + +# ifdef __cplusplus +} +# endif +#endif /* OPENSSL_PROV_SSL_H */ diff --git a/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/proverr.h b/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/proverr.h new file mode 100644 index 0000000000000000000000000000000000000000..10bcd427800ffbe808c35afa6b55dbd531e1844b --- /dev/null +++ b/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/proverr.h @@ -0,0 +1,170 @@ +/* + * Generated by util/mkerr.pl DO NOT EDIT + * Copyright 1995-2025 The OpenSSL Project Authors. All Rights Reserved. + * + * Licensed under the Apache License 2.0 (the "License"). You may not use + * this file except in compliance with the License. You can obtain a copy + * in the file LICENSE in the source distribution or at + * https://www.openssl.org/source/license.html + */ + +#ifndef OPENSSL_PROVERR_H +# define OPENSSL_PROVERR_H +# pragma once + +# include +# include +# include + + + +/* + * PROV reason codes. + */ +# define PROV_R_ADDITIONAL_INPUT_TOO_LONG 184 +# define PROV_R_ALGORITHM_MISMATCH 173 +# define PROV_R_ALREADY_INSTANTIATED 185 +# define PROV_R_BAD_DECRYPT 100 +# define PROV_R_BAD_ENCODING 141 +# define PROV_R_BAD_LENGTH 142 +# define PROV_R_BAD_TLS_CLIENT_VERSION 161 +# define PROV_R_BN_ERROR 160 +# define PROV_R_CIPHER_OPERATION_FAILED 102 +# define PROV_R_COFACTOR_REQUIRED 236 +# define PROV_R_DERIVATION_FUNCTION_INIT_FAILED 205 +# define PROV_R_DIGEST_NOT_ALLOWED 174 +# define PROV_R_EMS_NOT_ENABLED 233 +# define PROV_R_ENTROPY_SOURCE_FAILED_CONTINUOUS_TESTS 244 +# define PROV_R_ENTROPY_SOURCE_STRENGTH_TOO_WEAK 186 +# define PROV_R_ERROR_INSTANTIATING_DRBG 188 +# define PROV_R_ERROR_RETRIEVING_ENTROPY 189 +# define PROV_R_ERROR_RETRIEVING_NONCE 190 +# define PROV_R_FAILED_DURING_DERIVATION 164 +# define PROV_R_FAILED_TO_CREATE_LOCK 180 +# define PROV_R_FAILED_TO_DECRYPT 162 +# define PROV_R_FAILED_TO_GENERATE_KEY 121 +# define PROV_R_FAILED_TO_GET_PARAMETER 103 +# define PROV_R_FAILED_TO_SET_PARAMETER 104 +# define PROV_R_FAILED_TO_SIGN 175 +# define PROV_R_FINAL_CALL_OUT_OF_ORDER 237 +# define PROV_R_FIPS_MODULE_CONDITIONAL_ERROR 227 +# define PROV_R_FIPS_MODULE_ENTERING_ERROR_STATE 224 +# define PROV_R_FIPS_MODULE_IMPORT_PCT_ERROR 253 +# define PROV_R_FIPS_MODULE_IN_ERROR_STATE 225 +# define PROV_R_GENERATE_ERROR 191 +# define PROV_R_ILLEGAL_OR_UNSUPPORTED_PADDING_MODE 165 +# define PROV_R_INDICATOR_INTEGRITY_FAILURE 210 +# define PROV_R_INIT_CALL_OUT_OF_ORDER 238 +# define PROV_R_INSUFFICIENT_DRBG_STRENGTH 181 +# define PROV_R_INVALID_AAD 108 +# define PROV_R_INVALID_AEAD 231 +# define PROV_R_INVALID_CONFIG_DATA 211 +# define PROV_R_INVALID_CONSTANT_LENGTH 157 +# define PROV_R_INVALID_CURVE 176 +# define PROV_R_INVALID_CUSTOM_LENGTH 111 +# define PROV_R_INVALID_DATA 115 +# define PROV_R_INVALID_DIGEST 122 +# define PROV_R_INVALID_DIGEST_LENGTH 166 +# define PROV_R_INVALID_DIGEST_SIZE 218 +# define PROV_R_INVALID_EDDSA_INSTANCE_FOR_ATTEMPTED_OPERATION 243 +# define PROV_R_INVALID_INPUT_LENGTH 230 +# define PROV_R_INVALID_ITERATION_COUNT 123 +# define PROV_R_INVALID_IV_LENGTH 109 +# define PROV_R_INVALID_KDF 232 +# define PROV_R_INVALID_KEY 158 +# define PROV_R_INVALID_KEY_LENGTH 105 +# define PROV_R_INVALID_MAC 151 +# define PROV_R_INVALID_MEMORY_SIZE 235 +# define PROV_R_INVALID_MGF1_MD 167 +# define PROV_R_INVALID_MODE 125 +# define PROV_R_INVALID_OUTPUT_LENGTH 217 +# define PROV_R_INVALID_PADDING_MODE 168 +# define PROV_R_INVALID_PREHASHED_DIGEST_LENGTH 241 +# define PROV_R_INVALID_PUBINFO 198 +# define PROV_R_INVALID_SALT_LENGTH 112 +# define PROV_R_INVALID_SEED_LENGTH 154 +# define PROV_R_INVALID_SIGNATURE_SIZE 179 +# define PROV_R_INVALID_STATE 212 +# define PROV_R_INVALID_TAG 110 +# define PROV_R_INVALID_TAG_LENGTH 118 +# define PROV_R_INVALID_THREAD_POOL_SIZE 234 +# define PROV_R_INVALID_UKM_LENGTH 200 +# define PROV_R_INVALID_X931_DIGEST 170 +# define PROV_R_IN_ERROR_STATE 192 +# define PROV_R_KEY_SETUP_FAILED 101 +# define PROV_R_KEY_SIZE_TOO_SMALL 171 +# define PROV_R_LENGTH_TOO_LARGE 202 +# define PROV_R_MISMATCHING_DOMAIN_PARAMETERS 203 +# define PROV_R_MISSING_CEK_ALG 144 +# define PROV_R_MISSING_CIPHER 155 +# define PROV_R_MISSING_CONFIG_DATA 213 +# define PROV_R_MISSING_CONSTANT 156 +# define PROV_R_MISSING_KEY 128 +# define PROV_R_MISSING_MAC 150 +# define PROV_R_MISSING_MESSAGE_DIGEST 129 +# define PROV_R_MISSING_OID 209 +# define PROV_R_MISSING_PASS 130 +# define PROV_R_MISSING_SALT 131 +# define PROV_R_MISSING_SECRET 132 +# define PROV_R_MISSING_SEED 140 +# define PROV_R_MISSING_SESSION_ID 133 +# define PROV_R_MISSING_TYPE 134 +# define PROV_R_MISSING_XCGHASH 135 +# define PROV_R_ML_DSA_NO_FORMAT 245 +# define PROV_R_ML_KEM_NO_FORMAT 246 +# define PROV_R_MODULE_INTEGRITY_FAILURE 214 +# define PROV_R_NOT_A_PRIVATE_KEY 221 +# define PROV_R_NOT_A_PUBLIC_KEY 220 +# define PROV_R_NOT_INSTANTIATED 193 +# define PROV_R_NOT_PARAMETERS 226 +# define PROV_R_NOT_SUPPORTED 136 +# define PROV_R_NOT_XOF_OR_INVALID_LENGTH 113 +# define PROV_R_NO_INSTANCE_ALLOWED 242 +# define PROV_R_NO_KEY_SET 114 +# define PROV_R_NO_PARAMETERS_SET 177 +# define PROV_R_NULL_LENGTH_POINTER 247 +# define PROV_R_NULL_OUTPUT_BUFFER 248 +# define PROV_R_ONESHOT_CALL_OUT_OF_ORDER 239 +# define PROV_R_OPERATION_NOT_SUPPORTED_FOR_THIS_KEYTYPE 178 +# define PROV_R_OUTPUT_BUFFER_TOO_SMALL 106 +# define PROV_R_PARENT_CANNOT_GENERATE_RANDOM_NUMBERS 228 +# define PROV_R_PARENT_CANNOT_SUPPLY_ENTROPY_SEED 187 +# define PROV_R_PARENT_LOCKING_NOT_ENABLED 182 +# define PROV_R_PARENT_STRENGTH_TOO_WEAK 194 +# define PROV_R_PATH_MUST_BE_ABSOLUTE 219 +# define PROV_R_PERSONALISATION_STRING_TOO_LONG 195 +# define PROV_R_PSS_SALTLEN_TOO_SMALL 172 +# define PROV_R_REQUEST_TOO_LARGE_FOR_DRBG 196 +# define PROV_R_REQUIRE_CTR_MODE_CIPHER 206 +# define PROV_R_RESEED_ERROR 197 +# define PROV_R_SEARCH_ONLY_SUPPORTED_FOR_DIRECTORIES 222 +# define PROV_R_SEED_SOURCES_MUST_NOT_HAVE_A_PARENT 229 +# define PROV_R_SELF_TEST_KAT_FAILURE 215 +# define PROV_R_SELF_TEST_POST_FAILURE 216 +# define PROV_R_TAG_NOT_NEEDED 120 +# define PROV_R_TAG_NOT_SET 119 +# define PROV_R_TOO_MANY_RECORDS 126 +# define PROV_R_UNABLE_TO_FIND_CIPHERS 207 +# define PROV_R_UNABLE_TO_GET_PARENT_STRENGTH 199 +# define PROV_R_UNABLE_TO_GET_PASSPHRASE 159 +# define PROV_R_UNABLE_TO_INITIALISE_CIPHERS 208 +# define PROV_R_UNABLE_TO_LOAD_SHA256 147 +# define PROV_R_UNABLE_TO_LOCK_PARENT 201 +# define PROV_R_UNABLE_TO_RESEED 204 +# define PROV_R_UNEXPECTED_KEY_PARAMETERS 249 +# define PROV_R_UNSUPPORTED_CEK_ALG 145 +# define PROV_R_UNSUPPORTED_KEY_SIZE 153 +# define PROV_R_UNSUPPORTED_MAC_TYPE 137 +# define PROV_R_UNSUPPORTED_NUMBER_OF_ROUNDS 152 +# define PROV_R_UNSUPPORTED_SELECTION 250 +# define PROV_R_UPDATE_CALL_OUT_OF_ORDER 240 +# define PROV_R_URI_AUTHORITY_UNSUPPORTED 223 +# define PROV_R_VALUE_ERROR 138 +# define PROV_R_WRONG_CIPHERTEXT_SIZE 251 +# define PROV_R_WRONG_FINAL_BLOCK_LENGTH 107 +# define PROV_R_WRONG_OUTPUT_BUFFER_SIZE 139 +# define PROV_R_XOF_DIGESTS_NOT_ALLOWED 183 +# define PROV_R_XTS_DATA_UNIT_IS_TOO_LARGE 148 +# define PROV_R_XTS_DUPLICATED_KEYS 149 + +#endif diff --git a/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/provider.h b/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/provider.h new file mode 100644 index 0000000000000000000000000000000000000000..514435773b12e09e10de8d656ebe3b7c24ef5e94 --- /dev/null +++ b/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/provider.h @@ -0,0 +1,94 @@ +/* + * Copyright 2019-2025 The OpenSSL Project Authors. All Rights Reserved. + * + * Licensed under the Apache License 2.0 (the "License"). You may not use + * this file except in compliance with the License. You can obtain a copy + * in the file LICENSE in the source distribution or at + * https://www.openssl.org/source/license.html + */ + +#ifndef OPENSSL_PROVIDER_H +# define OPENSSL_PROVIDER_H +# pragma once + +# include + +# ifdef __cplusplus +extern "C" { +# endif + +/* Set and Get a library context search path */ +int OSSL_PROVIDER_set_default_search_path(OSSL_LIB_CTX *, const char *path); +const char *OSSL_PROVIDER_get0_default_search_path(OSSL_LIB_CTX *libctx); + +/* Load and unload a provider */ +OSSL_PROVIDER *OSSL_PROVIDER_load(OSSL_LIB_CTX *, const char *name); +OSSL_PROVIDER *OSSL_PROVIDER_load_ex(OSSL_LIB_CTX *, const char *name, + OSSL_PARAM *params); +OSSL_PROVIDER *OSSL_PROVIDER_try_load(OSSL_LIB_CTX *, const char *name, + int retain_fallbacks); +OSSL_PROVIDER *OSSL_PROVIDER_try_load_ex(OSSL_LIB_CTX *, const char *name, + OSSL_PARAM *params, + int retain_fallbacks); +int OSSL_PROVIDER_unload(OSSL_PROVIDER *prov); +int OSSL_PROVIDER_available(OSSL_LIB_CTX *, const char *name); +int OSSL_PROVIDER_do_all(OSSL_LIB_CTX *ctx, + int (*cb)(OSSL_PROVIDER *provider, void *cbdata), + void *cbdata); + +const OSSL_PARAM *OSSL_PROVIDER_gettable_params(const OSSL_PROVIDER *prov); +int OSSL_PROVIDER_get_params(const OSSL_PROVIDER *prov, OSSL_PARAM params[]); +int OSSL_PROVIDER_self_test(const OSSL_PROVIDER *prov); +int OSSL_PROVIDER_get_capabilities(const OSSL_PROVIDER *prov, + const char *capability, + OSSL_CALLBACK *cb, + void *arg); + +/*- + * Provider configuration parameters are normally set in the configuration file, + * but can also be set early in the main program before a provider is in use by + * multiple threads. + * + * Only UTF8-string values are supported. + */ +int OSSL_PROVIDER_add_conf_parameter(OSSL_PROVIDER *prov, const char *name, + const char *value); +/* + * Retrieves any of the requested configuration parameters for the given + * provider that were set in the configuration file or via the above + * OSSL_PROVIDER_add_parameter() function. + * + * The |params| array elements MUST have type OSSL_PARAM_UTF8_PTR, values are + * returned by reference, not as copies. + */ +int OSSL_PROVIDER_get_conf_parameters(const OSSL_PROVIDER *prov, + OSSL_PARAM params[]); +/* + * Parse a provider configuration parameter as a boolean value, + * or return a default value if unable to retrieve the parameter. + * Values like "1", "yes", "true", ... are true (nonzero). + * Values like "0", "no", "false", ... are false (zero). + */ +int OSSL_PROVIDER_conf_get_bool(const OSSL_PROVIDER *prov, + const char *name, int defval); + +const OSSL_ALGORITHM *OSSL_PROVIDER_query_operation(const OSSL_PROVIDER *prov, + int operation_id, + int *no_cache); +void OSSL_PROVIDER_unquery_operation(const OSSL_PROVIDER *prov, + int operation_id, const OSSL_ALGORITHM *algs); +void *OSSL_PROVIDER_get0_provider_ctx(const OSSL_PROVIDER *prov); +const OSSL_DISPATCH *OSSL_PROVIDER_get0_dispatch(const OSSL_PROVIDER *prov); + +/* Add a built in providers */ +int OSSL_PROVIDER_add_builtin(OSSL_LIB_CTX *, const char *name, + OSSL_provider_init_fn *init_fn); + +/* Information */ +const char *OSSL_PROVIDER_get0_name(const OSSL_PROVIDER *prov); + +# ifdef __cplusplus +} +# endif + +#endif diff --git a/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/quic.h b/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/quic.h new file mode 100644 index 0000000000000000000000000000000000000000..8eacc631eb12cd66f3e899c85e734a63ee0db651 --- /dev/null +++ b/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/quic.h @@ -0,0 +1,75 @@ +/* + * Copyright 2022-2025 The OpenSSL Project Authors. All Rights Reserved. + * + * Licensed under the Apache License 2.0 (the "License"). You may not use + * this file except in compliance with the License. You can obtain a copy + * in the file LICENSE in the source distribution or at + * https://www.openssl.org/source/license.html + */ + +#ifndef OPENSSL_QUIC_H +# define OPENSSL_QUIC_H +# pragma once + +# include +# include + +# ifndef OPENSSL_NO_QUIC + +# ifdef __cplusplus +extern "C" { +# endif + +/* + * Method used for non-thread-assisted QUIC client operation. + */ +__owur const SSL_METHOD *OSSL_QUIC_client_method(void); + +/* + * Method used for thread-assisted QUIC client operation. + */ +__owur const SSL_METHOD *OSSL_QUIC_client_thread_method(void); + +/* + * QUIC transport error codes (RFC 9000 s. 20.1) + */ +# define OSSL_QUIC_ERR_NO_ERROR 0x00 +# define OSSL_QUIC_ERR_INTERNAL_ERROR 0x01 +# define OSSL_QUIC_ERR_CONNECTION_REFUSED 0x02 +# define OSSL_QUIC_ERR_FLOW_CONTROL_ERROR 0x03 +# define OSSL_QUIC_ERR_STREAM_LIMIT_ERROR 0x04 +# define OSSL_QUIC_ERR_STREAM_STATE_ERROR 0x05 +# define OSSL_QUIC_ERR_FINAL_SIZE_ERROR 0x06 +# define OSSL_QUIC_ERR_FRAME_ENCODING_ERROR 0x07 +# define OSSL_QUIC_ERR_TRANSPORT_PARAMETER_ERROR 0x08 +# define OSSL_QUIC_ERR_CONNECTION_ID_LIMIT_ERROR 0x09 +# define OSSL_QUIC_ERR_PROTOCOL_VIOLATION 0x0A +# define OSSL_QUIC_ERR_INVALID_TOKEN 0x0B +# define OSSL_QUIC_ERR_APPLICATION_ERROR 0x0C +# define OSSL_QUIC_ERR_CRYPTO_BUFFER_EXCEEDED 0x0D +# define OSSL_QUIC_ERR_KEY_UPDATE_ERROR 0x0E +# define OSSL_QUIC_ERR_AEAD_LIMIT_REACHED 0x0F +# define OSSL_QUIC_ERR_NO_VIABLE_PATH 0x10 + +/* Inclusive range for handshake-specific errors. */ +# define OSSL_QUIC_ERR_CRYPTO_ERR_BEGIN 0x0100 +# define OSSL_QUIC_ERR_CRYPTO_ERR_END 0x01FF + +# define OSSL_QUIC_ERR_CRYPTO_ERR(X) \ + (OSSL_QUIC_ERR_CRYPTO_ERR_BEGIN + (X)) + +/* Local errors. */ +# define OSSL_QUIC_LOCAL_ERR_IDLE_TIMEOUT \ + ((uint64_t)0xFFFFFFFFFFFFFFFFULL) + +/* + * Method used for QUIC server operation. + */ +__owur const SSL_METHOD *OSSL_QUIC_server_method(void); + +# ifdef __cplusplus +} +# endif + +# endif /* OPENSSL_NO_QUIC */ +#endif diff --git a/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/randerr.h b/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/randerr.h new file mode 100644 index 0000000000000000000000000000000000000000..5e1e6d7996c5f0a6a57792590bd57875802a7fc5 --- /dev/null +++ b/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/randerr.h @@ -0,0 +1,70 @@ +/* + * Generated by util/mkerr.pl DO NOT EDIT + * Copyright 1995-2024 The OpenSSL Project Authors. All Rights Reserved. + * + * Licensed under the Apache License 2.0 (the "License"). You may not use + * this file except in compliance with the License. You can obtain a copy + * in the file LICENSE in the source distribution or at + * https://www.openssl.org/source/license.html + */ + +#ifndef OPENSSL_RANDERR_H +# define OPENSSL_RANDERR_H +# pragma once + +# include +# include +# include + + + +/* + * RAND reason codes. + */ +# define RAND_R_ADDITIONAL_INPUT_TOO_LONG 102 +# define RAND_R_ALREADY_INSTANTIATED 103 +# define RAND_R_ARGUMENT_OUT_OF_RANGE 105 +# define RAND_R_CANNOT_OPEN_FILE 121 +# define RAND_R_DRBG_ALREADY_INITIALIZED 129 +# define RAND_R_DRBG_NOT_INITIALISED 104 +# define RAND_R_ENTROPY_INPUT_TOO_LONG 106 +# define RAND_R_ENTROPY_OUT_OF_RANGE 124 +# define RAND_R_ERROR_ENTROPY_POOL_WAS_IGNORED 127 +# define RAND_R_ERROR_INITIALISING_DRBG 107 +# define RAND_R_ERROR_INSTANTIATING_DRBG 108 +# define RAND_R_ERROR_RETRIEVING_ADDITIONAL_INPUT 109 +# define RAND_R_ERROR_RETRIEVING_ENTROPY 110 +# define RAND_R_ERROR_RETRIEVING_NONCE 111 +# define RAND_R_FAILED_TO_CREATE_LOCK 126 +# define RAND_R_FUNC_NOT_IMPLEMENTED 101 +# define RAND_R_FWRITE_ERROR 123 +# define RAND_R_GENERATE_ERROR 112 +# define RAND_R_INSUFFICIENT_DRBG_STRENGTH 139 +# define RAND_R_INTERNAL_ERROR 113 +# define RAND_R_INVALID_PROPERTY_QUERY 137 +# define RAND_R_IN_ERROR_STATE 114 +# define RAND_R_NOT_A_REGULAR_FILE 122 +# define RAND_R_NOT_INSTANTIATED 115 +# define RAND_R_NO_DRBG_IMPLEMENTATION_SELECTED 128 +# define RAND_R_PARENT_LOCKING_NOT_ENABLED 130 +# define RAND_R_PARENT_STRENGTH_TOO_WEAK 131 +# define RAND_R_PERSONALISATION_STRING_TOO_LONG 116 +# define RAND_R_PREDICTION_RESISTANCE_NOT_SUPPORTED 133 +# define RAND_R_PRNG_NOT_SEEDED 100 +# define RAND_R_RANDOM_POOL_IS_EMPTY 142 +# define RAND_R_RANDOM_POOL_OVERFLOW 125 +# define RAND_R_RANDOM_POOL_UNDERFLOW 134 +# define RAND_R_REQUEST_TOO_LARGE_FOR_DRBG 117 +# define RAND_R_RESEED_ERROR 118 +# define RAND_R_SELFTEST_FAILURE 119 +# define RAND_R_TOO_LITTLE_NONCE_REQUESTED 135 +# define RAND_R_TOO_MUCH_NONCE_REQUESTED 136 +# define RAND_R_UNABLE_TO_CREATE_DRBG 143 +# define RAND_R_UNABLE_TO_FETCH_DRBG 144 +# define RAND_R_UNABLE_TO_GET_PARENT_RESEED_PROP_COUNTER 141 +# define RAND_R_UNABLE_TO_GET_PARENT_STRENGTH 138 +# define RAND_R_UNABLE_TO_LOCK_PARENT 140 +# define RAND_R_UNSUPPORTED_DRBG_FLAGS 132 +# define RAND_R_UNSUPPORTED_DRBG_TYPE 120 + +#endif diff --git a/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/rsaerr.h b/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/rsaerr.h new file mode 100644 index 0000000000000000000000000000000000000000..c58463c7c19f27ba471aecb2ab5317eef3867221 --- /dev/null +++ b/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/rsaerr.h @@ -0,0 +1,107 @@ +/* + * Generated by util/mkerr.pl DO NOT EDIT + * Copyright 1995-2021 The OpenSSL Project Authors. All Rights Reserved. + * + * Licensed under the Apache License 2.0 (the "License"). You may not use + * this file except in compliance with the License. You can obtain a copy + * in the file LICENSE in the source distribution or at + * https://www.openssl.org/source/license.html + */ + +#ifndef OPENSSL_RSAERR_H +# define OPENSSL_RSAERR_H +# pragma once + +# include +# include +# include + + + +/* + * RSA reason codes. + */ +# define RSA_R_ALGORITHM_MISMATCH 100 +# define RSA_R_BAD_E_VALUE 101 +# define RSA_R_BAD_FIXED_HEADER_DECRYPT 102 +# define RSA_R_BAD_PAD_BYTE_COUNT 103 +# define RSA_R_BAD_SIGNATURE 104 +# define RSA_R_BLOCK_TYPE_IS_NOT_01 106 +# define RSA_R_BLOCK_TYPE_IS_NOT_02 107 +# define RSA_R_DATA_GREATER_THAN_MOD_LEN 108 +# define RSA_R_DATA_TOO_LARGE 109 +# define RSA_R_DATA_TOO_LARGE_FOR_KEY_SIZE 110 +# define RSA_R_DATA_TOO_LARGE_FOR_MODULUS 132 +# define RSA_R_DATA_TOO_SMALL 111 +# define RSA_R_DATA_TOO_SMALL_FOR_KEY_SIZE 122 +# define RSA_R_DIGEST_DOES_NOT_MATCH 158 +# define RSA_R_DIGEST_NOT_ALLOWED 145 +# define RSA_R_DIGEST_TOO_BIG_FOR_RSA_KEY 112 +# define RSA_R_DMP1_NOT_CONGRUENT_TO_D 124 +# define RSA_R_DMQ1_NOT_CONGRUENT_TO_D 125 +# define RSA_R_D_E_NOT_CONGRUENT_TO_1 123 +# define RSA_R_FIRST_OCTET_INVALID 133 +# define RSA_R_ILLEGAL_OR_UNSUPPORTED_PADDING_MODE 144 +# define RSA_R_INVALID_DIGEST 157 +# define RSA_R_INVALID_DIGEST_LENGTH 143 +# define RSA_R_INVALID_HEADER 137 +# define RSA_R_INVALID_KEYPAIR 171 +# define RSA_R_INVALID_KEY_LENGTH 173 +# define RSA_R_INVALID_LABEL 160 +# define RSA_R_INVALID_LENGTH 181 +# define RSA_R_INVALID_MESSAGE_LENGTH 131 +# define RSA_R_INVALID_MGF1_MD 156 +# define RSA_R_INVALID_MODULUS 174 +# define RSA_R_INVALID_MULTI_PRIME_KEY 167 +# define RSA_R_INVALID_OAEP_PARAMETERS 161 +# define RSA_R_INVALID_PADDING 138 +# define RSA_R_INVALID_PADDING_MODE 141 +# define RSA_R_INVALID_PSS_PARAMETERS 149 +# define RSA_R_INVALID_PSS_SALTLEN 146 +# define RSA_R_INVALID_REQUEST 175 +# define RSA_R_INVALID_SALT_LENGTH 150 +# define RSA_R_INVALID_STRENGTH 176 +# define RSA_R_INVALID_TRAILER 139 +# define RSA_R_INVALID_X931_DIGEST 142 +# define RSA_R_IQMP_NOT_INVERSE_OF_Q 126 +# define RSA_R_KEY_PRIME_NUM_INVALID 165 +# define RSA_R_KEY_SIZE_TOO_SMALL 120 +# define RSA_R_LAST_OCTET_INVALID 134 +# define RSA_R_MGF1_DIGEST_NOT_ALLOWED 152 +# define RSA_R_MISSING_PRIVATE_KEY 179 +# define RSA_R_MODULUS_TOO_LARGE 105 +# define RSA_R_MP_COEFFICIENT_NOT_INVERSE_OF_R 168 +# define RSA_R_MP_EXPONENT_NOT_CONGRUENT_TO_D 169 +# define RSA_R_MP_R_NOT_PRIME 170 +# define RSA_R_NO_PUBLIC_EXPONENT 140 +# define RSA_R_NULL_BEFORE_BLOCK_MISSING 113 +# define RSA_R_N_DOES_NOT_EQUAL_PRODUCT_OF_PRIMES 172 +# define RSA_R_N_DOES_NOT_EQUAL_P_Q 127 +# define RSA_R_OAEP_DECODING_ERROR 121 +# define RSA_R_OPERATION_NOT_SUPPORTED_FOR_THIS_KEYTYPE 148 +# define RSA_R_PADDING_CHECK_FAILED 114 +# define RSA_R_PAIRWISE_TEST_FAILURE 177 +# define RSA_R_PKCS_DECODING_ERROR 159 +# define RSA_R_PSS_SALTLEN_TOO_SMALL 164 +# define RSA_R_PUB_EXPONENT_OUT_OF_RANGE 178 +# define RSA_R_P_NOT_PRIME 128 +# define RSA_R_Q_NOT_PRIME 129 +# define RSA_R_RANDOMNESS_SOURCE_STRENGTH_INSUFFICIENT 180 +# define RSA_R_RSA_OPERATIONS_NOT_SUPPORTED 130 +# define RSA_R_SLEN_CHECK_FAILED 136 +# define RSA_R_SLEN_RECOVERY_FAILED 135 +# define RSA_R_SSLV3_ROLLBACK_ATTACK 115 +# define RSA_R_THE_ASN1_OBJECT_IDENTIFIER_IS_NOT_KNOWN_FOR_THIS_MD 116 +# define RSA_R_UNKNOWN_ALGORITHM_TYPE 117 +# define RSA_R_UNKNOWN_DIGEST 166 +# define RSA_R_UNKNOWN_MASK_DIGEST 151 +# define RSA_R_UNKNOWN_PADDING_TYPE 118 +# define RSA_R_UNSUPPORTED_ENCRYPTION_TYPE 162 +# define RSA_R_UNSUPPORTED_LABEL_SOURCE 163 +# define RSA_R_UNSUPPORTED_MASK_ALGORITHM 153 +# define RSA_R_UNSUPPORTED_MASK_PARAMETER 154 +# define RSA_R_UNSUPPORTED_SIGNATURE_TYPE 155 +# define RSA_R_VALUE_MISSING 147 +# define RSA_R_WRONG_SIGNATURE_LENGTH 119 + +#endif diff --git a/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/symhacks.h b/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/symhacks.h new file mode 100644 index 0000000000000000000000000000000000000000..816f8f9989104a1093f0e8975c7542919e53c063 --- /dev/null +++ b/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/symhacks.h @@ -0,0 +1,39 @@ +/* + * Copyright 1999-2021 The OpenSSL Project Authors. All Rights Reserved. + * + * Licensed under the Apache License 2.0 (the "License"). You may not use + * this file except in compliance with the License. You can obtain a copy + * in the file LICENSE in the source distribution or at + * https://www.openssl.org/source/license.html + */ + +#ifndef OPENSSL_SYMHACKS_H +# define OPENSSL_SYMHACKS_H +# pragma once + +# include +# ifndef OPENSSL_NO_DEPRECATED_3_0 +# define HEADER_SYMHACKS_H +# endif + +# include + +/* Case insensitive linking causes problems.... */ +# if defined(OPENSSL_SYS_VMS) +# undef ERR_load_CRYPTO_strings +# define ERR_load_CRYPTO_strings ERR_load_CRYPTOlib_strings +# undef OCSP_crlID_new +# define OCSP_crlID_new OCSP_crlID2_new + +# undef d2i_ECPARAMETERS +# define d2i_ECPARAMETERS d2i_UC_ECPARAMETERS +# undef i2d_ECPARAMETERS +# define i2d_ECPARAMETERS i2d_UC_ECPARAMETERS +# undef d2i_ECPKPARAMETERS +# define d2i_ECPKPARAMETERS d2i_UC_ECPKPARAMETERS +# undef i2d_ECPKPARAMETERS +# define i2d_ECPKPARAMETERS i2d_UC_ECPKPARAMETERS + +# endif + +#endif /* ! defined HEADER_VMS_IDHACKS_H */ diff --git a/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/ui.h b/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/ui.h new file mode 100644 index 0000000000000000000000000000000000000000..04dea22f76bc551c0cef49ea2705961f2b465802 --- /dev/null +++ b/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/ui.h @@ -0,0 +1,5 @@ +#if defined(OPENSSL_NO_ASM) +# include "./ui_no-asm.h" +#else +# include "./ui_asm.h" +#endif diff --git a/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/whrlpool.h b/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/whrlpool.h new file mode 100644 index 0000000000000000000000000000000000000000..05ba463246265bed4db165806e28d45655e478a3 --- /dev/null +++ b/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/whrlpool.h @@ -0,0 +1,62 @@ +/* + * Copyright 2005-2020 The OpenSSL Project Authors. All Rights Reserved. + * + * Licensed under the Apache License 2.0 (the "License"). You may not use + * this file except in compliance with the License. You can obtain a copy + * in the file LICENSE in the source distribution or at + * https://www.openssl.org/source/license.html + */ + +#ifndef OPENSSL_WHRLPOOL_H +# define OPENSSL_WHRLPOOL_H +# pragma once + +# include +# ifndef OPENSSL_NO_DEPRECATED_3_0 +# define HEADER_WHRLPOOL_H +# endif + +# include + +# ifndef OPENSSL_NO_WHIRLPOOL +# include +# include +# ifdef __cplusplus +extern "C" { +# endif + +# define WHIRLPOOL_DIGEST_LENGTH (512/8) + +# if !defined(OPENSSL_NO_DEPRECATED_3_0) + +# define WHIRLPOOL_BBLOCK 512 +# define WHIRLPOOL_COUNTER (256/8) + +typedef struct { + union { + unsigned char c[WHIRLPOOL_DIGEST_LENGTH]; + /* double q is here to ensure 64-bit alignment */ + double q[WHIRLPOOL_DIGEST_LENGTH / sizeof(double)]; + } H; + unsigned char data[WHIRLPOOL_BBLOCK / 8]; + unsigned int bitoff; + size_t bitlen[WHIRLPOOL_COUNTER / sizeof(size_t)]; +} WHIRLPOOL_CTX; +# endif +# ifndef OPENSSL_NO_DEPRECATED_3_0 +OSSL_DEPRECATEDIN_3_0 int WHIRLPOOL_Init(WHIRLPOOL_CTX *c); +OSSL_DEPRECATEDIN_3_0 int WHIRLPOOL_Update(WHIRLPOOL_CTX *c, + const void *inp, size_t bytes); +OSSL_DEPRECATEDIN_3_0 void WHIRLPOOL_BitUpdate(WHIRLPOOL_CTX *c, + const void *inp, size_t bits); +OSSL_DEPRECATEDIN_3_0 int WHIRLPOOL_Final(unsigned char *md, WHIRLPOOL_CTX *c); +OSSL_DEPRECATEDIN_3_0 unsigned char *WHIRLPOOL(const void *inp, size_t bytes, + unsigned char *md); +# endif + +# ifdef __cplusplus +} +# endif +# endif + +#endif diff --git a/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/x509_acert_no-asm.h b/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/x509_acert_no-asm.h new file mode 100644 index 0000000000000000000000000000000000000000..2deed3faa78235e358189e5e5d2370ef3016fe5a --- /dev/null +++ b/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/x509_acert_no-asm.h @@ -0,0 +1,57 @@ +#undef OPENSSL_LINUX +#if defined(__linux) && !defined(__ANDROID__) +# define OPENSSL_LINUX 1 +#endif + +#if defined(OPENSSL_LINUX) && defined(__i386__) +# include "./archs/linux-elf/no-asm/include/openssl/x509_acert.h" +#elif defined(OPENSSL_LINUX) && defined(__ILP32__) +# include "./archs/linux-x32/no-asm/include/openssl/x509_acert.h" +#elif defined(OPENSSL_LINUX) && defined(__x86_64__) +# include "./archs/linux-x86_64/no-asm/include/openssl/x509_acert.h" +#elif defined(OPENSSL_LINUX) && defined(__arm__) +# include "./archs/linux-armv4/no-asm/include/openssl/x509_acert.h" +#elif defined(OPENSSL_LINUX) && defined(__aarch64__) +# include "./archs/linux-aarch64/no-asm/include/openssl/x509_acert.h" +#elif defined(OPENSSL_LINUX) && defined(__loongarch64) +# include "./archs/linux64-loongarch64/no-asm/include/openssl/x509_acert.h" +#elif defined(__APPLE__) && defined(__MACH__) && defined(__i386__) +# include "./archs/darwin-i386-cc/no-asm/include/openssl/x509_acert.h" +#elif defined(__APPLE__) && defined(__MACH__) && defined(__x86_64__) +# include "./archs/darwin64-x86_64-cc/no-asm/include/openssl/x509_acert.h" +#elif defined(__APPLE__) && defined(__MACH__) && defined(__arm64__) +# include "./archs/darwin64-arm64-cc/no-asm/include/openssl/x509_acert.h" +#elif defined(_WIN32) && defined(_M_IX86) +# include "./archs/VC-WIN32/no-asm/include/openssl/x509_acert.h" +#elif defined(_WIN32) && defined(_M_X64) +# include "./archs/VC-WIN64A/no-asm/include/openssl/x509_acert.h" +#elif defined(_WIN32) && defined(_M_ARM64) +# include "./archs/VC-WIN64-ARM/no-asm/include/openssl/x509_acert.h" +#elif (defined(__FreeBSD__) || defined(__OpenBSD__)) && defined(__i386__) +# include "./archs/BSD-x86/no-asm/include/openssl/x509_acert.h" +#elif (defined(__FreeBSD__) || defined(__OpenBSD__)) && defined(__x86_64__) +# include "./archs/BSD-x86_64/no-asm/include/openssl/x509_acert.h" +#elif defined(__sun) && defined(__i386__) +# include "./archs/solaris-x86-gcc/no-asm/include/openssl/x509_acert.h" +#elif defined(__sun) && defined(__x86_64__) +# include "./archs/solaris64-x86_64-gcc/no-asm/include/openssl/x509_acert.h" +#elif defined(OPENSSL_LINUX) && defined(__PPC64__) && defined(L_ENDIAN) +# include "./archs/linux-ppc64le/no-asm/include/openssl/x509_acert.h" +#elif defined(_AIX) && defined(_ARCH_PPC64) +# include "./archs/aix64-gcc-as/no-asm/include/openssl/x509_acert.h" +#elif defined(OPENSSL_LINUX) && defined(__s390x__) +# include "./archs/linux64-s390x/no-asm/include/openssl/x509_acert.h" +#elif defined(OPENSSL_LINUX) && defined(__s390__) +# include "./archs/linux32-s390x/no-asm/include/openssl/x509_acert.h" +#else +# include "./archs/linux-elf/no-asm/include/openssl/x509_acert.h" +#endif + +/* GOST is not included in all platform */ +#ifndef OPENSSL_NO_GOST +# define OPENSSL_NO_GOST +#endif +/* HW_PADLOCK is not included in all platform */ +#ifndef OPENSSL_NO_HW_PADLOCK +# define OPENSSL_NO_HW_PADLOCK +#endif diff --git a/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/x509_vfy_asm.h b/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/x509_vfy_asm.h new file mode 100644 index 0000000000000000000000000000000000000000..7e75104d41fbd137948e88c597bef07d95d19d5b --- /dev/null +++ b/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/x509_vfy_asm.h @@ -0,0 +1,53 @@ +#undef OPENSSL_LINUX +#if defined(__linux) && !defined(__ANDROID__) +# define OPENSSL_LINUX 1 +#endif + +#if defined(OPENSSL_LINUX) && defined(__i386__) +# include "./archs/linux-elf/asm/include/openssl/x509_vfy.h" +#elif defined(OPENSSL_LINUX) && defined(__ILP32__) +# include "./archs/linux-x32/asm/include/openssl/x509_vfy.h" +#elif defined(OPENSSL_LINUX) && defined(__x86_64__) +# include "./archs/linux-x86_64/asm/include/openssl/x509_vfy.h" +#elif defined(OPENSSL_LINUX) && defined(__arm__) +# include "./archs/linux-armv4/asm/include/openssl/x509_vfy.h" +#elif defined(OPENSSL_LINUX) && defined(__aarch64__) +# include "./archs/linux-aarch64/asm/include/openssl/x509_vfy.h" +#elif defined(__APPLE__) && defined(__MACH__) && defined(__i386__) +# include "./archs/darwin-i386-cc/asm/include/openssl/x509_vfy.h" +#elif defined(__APPLE__) && defined(__MACH__) && defined(__x86_64__) +# include "./archs/darwin64-x86_64-cc/asm/include/openssl/x509_vfy.h" +#elif defined(__APPLE__) && defined(__MACH__) && defined(__arm64__) +# include "./archs/darwin64-arm64-cc/asm/include/openssl/x509_vfy.h" +#elif defined(_WIN32) && defined(_M_IX86) +# include "./archs/VC-WIN32/asm/include/openssl/x509_vfy.h" +#elif defined(_WIN32) && defined(_M_X64) +# include "./archs/VC-WIN64A/asm/include/openssl/x509_vfy.h" +#elif (defined(__FreeBSD__) || defined(__OpenBSD__)) && defined(__i386__) +# include "./archs/BSD-x86/asm/include/openssl/x509_vfy.h" +#elif (defined(__FreeBSD__) || defined(__OpenBSD__)) && defined(__x86_64__) +# include "./archs/BSD-x86_64/asm/include/openssl/x509_vfy.h" +#elif defined(__sun) && defined(__i386__) +# include "./archs/solaris-x86-gcc/asm/include/openssl/x509_vfy.h" +#elif defined(__sun) && defined(__x86_64__) +# include "./archs/solaris64-x86_64-gcc/asm/include/openssl/x509_vfy.h" +#elif defined(OPENSSL_LINUX) && defined(__PPC64__) && defined(L_ENDIAN) +# include "./archs/linux-ppc64le/asm/include/openssl/x509_vfy.h" +#elif defined(_AIX) && defined(_ARCH_PPC64) +# include "./archs/aix64-gcc-as/asm/include/openssl/x509_vfy.h" +#elif defined(OPENSSL_LINUX) && defined(__s390x__) +# include "./archs/linux64-s390x/asm/include/openssl/x509_vfy.h" +#elif defined(OPENSSL_LINUX) && defined(__s390__) +# include "./archs/linux32-s390x/asm/include/openssl/x509_vfy.h" +#else +# include "./archs/linux-elf/asm/include/openssl/x509_vfy.h" +#endif + +/* GOST is not included in all platform */ +#ifndef OPENSSL_NO_GOST +# define OPENSSL_NO_GOST +#endif +/* HW_PADLOCK is not included in all platform */ +#ifndef OPENSSL_NO_HW_PADLOCK +# define OPENSSL_NO_HW_PADLOCK +#endif diff --git a/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/x509v3err.h b/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/x509v3err.h new file mode 100644 index 0000000000000000000000000000000000000000..4bbcfc230237b8785f789897424ea3ef0c2e660c --- /dev/null +++ b/data_prepare/node-v24.12.0-linux-x64/include/node/openssl/x509v3err.h @@ -0,0 +1,97 @@ +/* + * Generated by util/mkerr.pl DO NOT EDIT + * Copyright 1995-2025 The OpenSSL Project Authors. All Rights Reserved. + * + * Licensed under the Apache License 2.0 (the "License"). You may not use + * this file except in compliance with the License. You can obtain a copy + * in the file LICENSE in the source distribution or at + * https://www.openssl.org/source/license.html + */ + +#ifndef OPENSSL_X509V3ERR_H +# define OPENSSL_X509V3ERR_H +# pragma once + +# include +# include +# include + + + +/* + * X509V3 reason codes. + */ +# define X509V3_R_BAD_IP_ADDRESS 118 +# define X509V3_R_BAD_OBJECT 119 +# define X509V3_R_BAD_OPTION 170 +# define X509V3_R_BAD_VALUE 171 +# define X509V3_R_BN_DEC2BN_ERROR 100 +# define X509V3_R_BN_TO_ASN1_INTEGER_ERROR 101 +# define X509V3_R_DIRNAME_ERROR 149 +# define X509V3_R_DISTPOINT_ALREADY_SET 160 +# define X509V3_R_DUPLICATE_ZONE_ID 133 +# define X509V3_R_EMPTY_KEY_USAGE 169 +# define X509V3_R_ERROR_CONVERTING_ZONE 131 +# define X509V3_R_ERROR_CREATING_EXTENSION 144 +# define X509V3_R_ERROR_IN_EXTENSION 128 +# define X509V3_R_EXPECTED_A_SECTION_NAME 137 +# define X509V3_R_EXTENSION_EXISTS 145 +# define X509V3_R_EXTENSION_NAME_ERROR 115 +# define X509V3_R_EXTENSION_NOT_FOUND 102 +# define X509V3_R_EXTENSION_SETTING_NOT_SUPPORTED 103 +# define X509V3_R_EXTENSION_VALUE_ERROR 116 +# define X509V3_R_ILLEGAL_EMPTY_EXTENSION 151 +# define X509V3_R_INCORRECT_POLICY_SYNTAX_TAG 152 +# define X509V3_R_INVALID_ASNUMBER 162 +# define X509V3_R_INVALID_ASRANGE 163 +# define X509V3_R_INVALID_BOOLEAN_STRING 104 +# define X509V3_R_INVALID_CERTIFICATE 158 +# define X509V3_R_INVALID_EMPTY_NAME 108 +# define X509V3_R_INVALID_EXTENSION_STRING 105 +# define X509V3_R_INVALID_INHERITANCE 165 +# define X509V3_R_INVALID_IPADDRESS 166 +# define X509V3_R_INVALID_MULTIPLE_RDNS 161 +# define X509V3_R_INVALID_NAME 106 +# define X509V3_R_INVALID_NULL_ARGUMENT 107 +# define X509V3_R_INVALID_NULL_VALUE 109 +# define X509V3_R_INVALID_NUMBER 140 +# define X509V3_R_INVALID_NUMBERS 141 +# define X509V3_R_INVALID_OBJECT_IDENTIFIER 110 +# define X509V3_R_INVALID_OPTION 138 +# define X509V3_R_INVALID_POLICY_IDENTIFIER 134 +# define X509V3_R_INVALID_PROXY_POLICY_SETTING 153 +# define X509V3_R_INVALID_PURPOSE 146 +# define X509V3_R_INVALID_SAFI 164 +# define X509V3_R_INVALID_SECTION 135 +# define X509V3_R_INVALID_SYNTAX 143 +# define X509V3_R_ISSUER_DECODE_ERROR 126 +# define X509V3_R_MISSING_VALUE 124 +# define X509V3_R_NEED_ORGANIZATION_AND_NUMBERS 142 +# define X509V3_R_NEGATIVE_PATHLEN 168 +# define X509V3_R_NO_CONFIG_DATABASE 136 +# define X509V3_R_NO_ISSUER_CERTIFICATE 121 +# define X509V3_R_NO_ISSUER_DETAILS 127 +# define X509V3_R_NO_POLICY_IDENTIFIER 139 +# define X509V3_R_NO_PROXY_CERT_POLICY_LANGUAGE_DEFINED 154 +# define X509V3_R_NO_PUBLIC_KEY 114 +# define X509V3_R_NO_SUBJECT_DETAILS 125 +# define X509V3_R_OPERATION_NOT_DEFINED 148 +# define X509V3_R_OTHERNAME_ERROR 147 +# define X509V3_R_POLICY_LANGUAGE_ALREADY_DEFINED 155 +# define X509V3_R_POLICY_PATH_LENGTH 156 +# define X509V3_R_POLICY_PATH_LENGTH_ALREADY_DEFINED 157 +# define X509V3_R_POLICY_WHEN_PROXY_LANGUAGE_REQUIRES_NO_POLICY 159 +# define X509V3_R_PURPOSE_NOT_UNIQUE 173 +# define X509V3_R_SECTION_NOT_FOUND 150 +# define X509V3_R_UNABLE_TO_GET_ISSUER_DETAILS 122 +# define X509V3_R_UNABLE_TO_GET_ISSUER_KEYID 123 +# define X509V3_R_UNKNOWN_BIT_STRING_ARGUMENT 111 +# define X509V3_R_UNKNOWN_EXTENSION 129 +# define X509V3_R_UNKNOWN_EXTENSION_NAME 130 +# define X509V3_R_UNKNOWN_OPTION 120 +# define X509V3_R_UNKNOWN_VALUE 172 +# define X509V3_R_UNSUPPORTED_OPTION 117 +# define X509V3_R_UNSUPPORTED_TYPE 167 +# define X509V3_R_USER_TOO_LONG 132 + +#endif diff --git a/data_prepare/node-v24.12.0-linux-x64/include/node/v8-data.h b/data_prepare/node-v24.12.0-linux-x64/include/node/v8-data.h new file mode 100644 index 0000000000000000000000000000000000000000..3093d7f34d146de4eab5b88ed35b25dcc42abbd7 --- /dev/null +++ b/data_prepare/node-v24.12.0-linux-x64/include/node/v8-data.h @@ -0,0 +1,85 @@ +// Copyright 2021 the V8 project authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#ifndef INCLUDE_V8_DATA_H_ +#define INCLUDE_V8_DATA_H_ + +#include "v8-local-handle.h" // NOLINT(build/include_directory) +#include "v8config.h" // NOLINT(build/include_directory) + +namespace v8 { + +class Context; + +/** + * The superclass of objects that can reside on V8's heap. + */ +class V8_EXPORT Data { + public: + /** + * Returns true if this data is a |v8::Value|. + */ + bool IsValue() const; + + /** + * Returns true if this data is a |v8::Module|. + */ + bool IsModule() const; + + /** + * Returns true if this data is a |v8::ModuleRequest|. + */ + bool IsModuleRequest() const; + + /** + * Returns tru if this data is a |v8::FixedArray| + */ + bool IsFixedArray() const; + + /** + * Returns true if this data is a |v8::Private|. + */ + bool IsPrivate() const; + + /** + * Returns true if this data is a |v8::ObjectTemplate|. + */ + bool IsObjectTemplate() const; + + /** + * Returns true if this data is a |v8::FunctionTemplate|. + */ + bool IsFunctionTemplate() const; + + /** + * Returns true if this data is a |v8::Context|. + */ + bool IsContext() const; + + private: + Data() = delete; +}; + +/** + * A fixed-sized array with elements of type Data. + */ +class V8_EXPORT FixedArray : public Data { + public: + int Length() const; + Local Get(Local context, int i) const; + + V8_INLINE static FixedArray* Cast(Data* data) { +#ifdef V8_ENABLE_CHECKS + CheckCast(data); +#endif + return reinterpret_cast(data); + } + + private: + static void CheckCast(Data* obj); +}; + +} // namespace v8 + +#endif // INCLUDE_V8_DATA_H_ diff --git a/data_prepare/node-v24.12.0-linux-x64/include/node/v8-initialization.h b/data_prepare/node-v24.12.0-linux-x64/include/node/v8-initialization.h new file mode 100644 index 0000000000000000000000000000000000000000..46a21a02cbcdd68863286a7637e5331d203aa885 --- /dev/null +++ b/data_prepare/node-v24.12.0-linux-x64/include/node/v8-initialization.h @@ -0,0 +1,314 @@ +// Copyright 2021 the V8 project authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#ifndef INCLUDE_V8_INITIALIZATION_H_ +#define INCLUDE_V8_INITIALIZATION_H_ + +#include +#include + +#include "v8-callbacks.h" // NOLINT(build/include_directory) +#include "v8-internal.h" // NOLINT(build/include_directory) +#include "v8-isolate.h" // NOLINT(build/include_directory) +#include "v8-platform.h" // NOLINT(build/include_directory) +#include "v8config.h" // NOLINT(build/include_directory) + +// We reserve the V8_* prefix for macros defined in V8 public API and +// assume there are no name conflicts with the embedder's code. + +/** + * The v8 JavaScript engine. + */ +namespace v8 { + +class PageAllocator; +class Platform; +template +class PersistentValueMapBase; + +/** + * EntropySource is used as a callback function when v8 needs a source + * of entropy. + */ +using EntropySource = bool (*)(unsigned char* buffer, size_t length); + +/** + * ReturnAddressLocationResolver is used as a callback function when v8 is + * resolving the location of a return address on the stack. Profilers that + * change the return address on the stack can use this to resolve the stack + * location to wherever the profiler stashed the original return address. + * + * \param return_addr_location A location on stack where a machine + * return address resides. + * \returns Either return_addr_location, or else a pointer to the profiler's + * copy of the original return address. + * + * \note The resolver function must not cause garbage collection. + */ +using ReturnAddressLocationResolver = + uintptr_t (*)(uintptr_t return_addr_location); + +using DcheckErrorCallback = void (*)(const char* file, int line, + const char* message); + +using V8FatalErrorCallback = void (*)(const char* file, int line, + const char* message); + +/** + * Container class for static utility functions. + */ +class V8_EXPORT V8 { + public: + /** + * Hand startup data to V8, in case the embedder has chosen to build + * V8 with external startup data. + * + * Note: + * - By default the startup data is linked into the V8 library, in which + * case this function is not meaningful. + * - If this needs to be called, it needs to be called before V8 + * tries to make use of its built-ins. + * - To avoid unnecessary copies of data, V8 will point directly into the + * given data blob, so pretty please keep it around until V8 exit. + * - Compression of the startup blob might be useful, but needs to + * handled entirely on the embedders' side. + * - The call will abort if the data is invalid. + */ + static void SetSnapshotDataBlob(StartupData* startup_blob); + + /** Set the callback to invoke in case of Dcheck failures. */ + static void SetDcheckErrorHandler(DcheckErrorCallback that); + + /** Set the callback to invoke in the case of CHECK failures or fatal + * errors. This is distinct from Isolate::SetFatalErrorHandler, which + * is invoked in response to API usage failures. + * */ + static void SetFatalErrorHandler(V8FatalErrorCallback that); + + /** + * Sets V8 flags from a string. + */ + static void SetFlagsFromString(const char* str); + static void SetFlagsFromString(const char* str, size_t length); + + /** + * Sets V8 flags from the command line. + */ + static void SetFlagsFromCommandLine(int* argc, char** argv, + bool remove_flags); + + /** Get the version string. */ + static const char* GetVersion(); + + /** + * Initializes V8. This function needs to be called before the first Isolate + * is created. It always returns true. + */ + V8_INLINE static bool Initialize() { +#ifdef V8_TARGET_OS_ANDROID + const bool kV8TargetOsIsAndroid = true; +#else + const bool kV8TargetOsIsAndroid = false; +#endif + +#ifdef V8_ENABLE_CHECKS + const bool kV8EnableChecks = true; +#else + const bool kV8EnableChecks = false; +#endif + + const int kBuildConfiguration = + (internal::PointerCompressionIsEnabled() ? kPointerCompression : 0) | + (internal::SmiValuesAre31Bits() ? k31BitSmis : 0) | + (internal::SandboxIsEnabled() ? kSandbox : 0) | + (kV8TargetOsIsAndroid ? kTargetOsIsAndroid : 0) | + (kV8EnableChecks ? kEnableChecks : 0); + return Initialize(kBuildConfiguration); + } + + /** + * Allows the host application to provide a callback which can be used + * as a source of entropy for random number generators. + */ + static void SetEntropySource(EntropySource source); + + /** + * Allows the host application to provide a callback that allows v8 to + * cooperate with a profiler that rewrites return addresses on stack. + */ + static void SetReturnAddressLocationResolver( + ReturnAddressLocationResolver return_address_resolver); + + /** + * Releases any resources used by v8 and stops any utility threads + * that may be running. Note that disposing v8 is permanent, it + * cannot be reinitialized. + * + * It should generally not be necessary to dispose v8 before exiting + * a process, this should happen automatically. It is only necessary + * to use if the process needs the resources taken up by v8. + */ + static bool Dispose(); + + /** + * Initialize the ICU library bundled with V8. The embedder should only + * invoke this method when using the bundled ICU. Returns true on success. + * + * If V8 was compiled with the ICU data in an external file, the location + * of the data file has to be provided. + */ + static bool InitializeICU(const char* icu_data_file = nullptr); + + /** + * Initialize the ICU library bundled with V8. The embedder should only + * invoke this method when using the bundled ICU. If V8 was compiled with + * the ICU data in an external file and when the default location of that + * file should be used, a path to the executable must be provided. + * Returns true on success. + * + * The default is a file called icudtl.dat side-by-side with the executable. + * + * Optionally, the location of the data file can be provided to override the + * default. + */ + static bool InitializeICUDefaultLocation(const char* exec_path, + const char* icu_data_file = nullptr); + + /** + * Initialize the external startup data. The embedder only needs to + * invoke this method when external startup data was enabled in a build. + * + * If V8 was compiled with the startup data in an external file, then + * V8 needs to be given those external files during startup. There are + * three ways to do this: + * - InitializeExternalStartupData(const char*) + * This will look in the given directory for the file "snapshot_blob.bin". + * - InitializeExternalStartupDataFromFile(const char*) + * As above, but will directly use the given file name. + * - Call SetSnapshotDataBlob. + * This will read the blobs from the given data structure and will + * not perform any file IO. + */ + static void InitializeExternalStartupData(const char* directory_path); + static void InitializeExternalStartupDataFromFile(const char* snapshot_blob); + + /** + * Sets the v8::Platform to use. This should be invoked before V8 is + * initialized. + */ + static void InitializePlatform(Platform* platform); + + /** + * Clears all references to the v8::Platform. This should be invoked after + * V8 was disposed. + */ + static void DisposePlatform(); + +#if defined(V8_ENABLE_SANDBOX) + /** + * Returns true if the sandbox is configured securely. + * + * If V8 cannot create a regular sandbox during initialization, for example + * because not enough virtual address space can be reserved, it will instead + * create a fallback sandbox that still allows it to function normally but + * does not have the same security properties as a regular sandbox. This API + * can be used to determine if such a fallback sandbox is being used, in + * which case it will return false. + */ + static bool IsSandboxConfiguredSecurely(); + + /** + * Provides access to the virtual address subspace backing the sandbox. + * + * This can be used to allocate pages inside the sandbox, for example to + * obtain virtual memory for ArrayBuffer backing stores, which must be + * located inside the sandbox. + * + * It should be assumed that an attacker can corrupt data inside the sandbox, + * and so in particular the contents of pages allocagted in this virtual + * address space, arbitrarily and concurrently. Due to this, it is + * recommended to to only place pure data buffers in them. + */ + static VirtualAddressSpace* GetSandboxAddressSpace(); + + /** + * Returns the size of the sandbox in bytes. + * + * This represents the size of the address space that V8 can directly address + * and in which it allocates its objects. + */ + static size_t GetSandboxSizeInBytes(); + + /** + * Returns the size of the address space reservation backing the sandbox. + * + * This may be larger than the sandbox (i.e. |GetSandboxSizeInBytes()|) due + * to surrounding guard regions, or may be smaller than the sandbox in case a + * fallback sandbox is being used, which will use a smaller virtual address + * space reservation. In the latter case this will also be different from + * |GetSandboxAddressSpace()->size()| as that will cover a larger part of the + * address space than what has actually been reserved. + */ + static size_t GetSandboxReservationSizeInBytes(); +#endif // V8_ENABLE_SANDBOX + + /** + * Activate trap-based bounds checking for WebAssembly. + * + * \param use_v8_signal_handler Whether V8 should install its own signal + * handler or rely on the embedder's. + */ + static bool EnableWebAssemblyTrapHandler(bool use_v8_signal_handler); + +#if defined(V8_OS_WIN) + /** + * On Win64, by default V8 does not emit unwinding data for jitted code, + * which means the OS cannot walk the stack frames and the system Structured + * Exception Handling (SEH) cannot unwind through V8-generated code: + * https://code.google.com/p/v8/issues/detail?id=3598. + * + * This function allows embedders to register a custom exception handler for + * exceptions in V8-generated code. + */ + static void SetUnhandledExceptionCallback( + UnhandledExceptionCallback callback); +#endif + + /** + * Allows the host application to provide a callback that will be called when + * v8 has encountered a fatal failure to allocate memory and is about to + * terminate. + */ + static void SetFatalMemoryErrorCallback(OOMErrorCallback callback); + + /** + * Get statistics about the shared memory usage. + */ + static void GetSharedMemoryStatistics(SharedMemoryStatistics* statistics); + + private: + V8(); + + enum BuildConfigurationFeatures { + kPointerCompression = 1 << 0, + k31BitSmis = 1 << 1, + kSandbox = 1 << 2, + kTargetOsIsAndroid = 1 << 3, + kEnableChecks = 1 << 4, + }; + + /** + * Checks that the embedder build configuration is compatible with + * the V8 binary and if so initializes V8. + */ + static bool Initialize(int build_config); + + friend class Context; + template + friend class PersistentValueMapBase; +}; + +} // namespace v8 + +#endif // INCLUDE_V8_INITIALIZATION_H_ diff --git a/data_prepare/node-v24.12.0-linux-x64/include/node/v8-locker.h b/data_prepare/node-v24.12.0-linux-x64/include/node/v8-locker.h new file mode 100644 index 0000000000000000000000000000000000000000..22b7a8767a83a702a2601bdfd4c0f71206df0ad5 --- /dev/null +++ b/data_prepare/node-v24.12.0-linux-x64/include/node/v8-locker.h @@ -0,0 +1,138 @@ +// Copyright 2021 the V8 project authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#ifndef INCLUDE_V8_LOCKER_H_ +#define INCLUDE_V8_LOCKER_H_ + +#include "v8config.h" // NOLINT(build/include_directory) + +namespace v8 { + +namespace internal { +class Isolate; +} // namespace internal + +class Isolate; + +/** + * Multiple threads in V8 are allowed, but only one thread at a time is allowed + * to use any given V8 isolate, see the comments in the Isolate class. The + * definition of 'using a V8 isolate' includes accessing handles or holding onto + * object pointers obtained from V8 handles while in the particular V8 isolate. + * It is up to the user of V8 to ensure, perhaps with locking, that this + * constraint is not violated. In addition to any other synchronization + * mechanism that may be used, the v8::Locker and v8::Unlocker classes must be + * used to signal thread switches to V8. + * + * v8::Locker is a scoped lock object. While it's active, i.e. between its + * construction and destruction, the current thread is allowed to use the locked + * isolate. V8 guarantees that an isolate can be locked by at most one thread at + * any time. In other words, the scope of a v8::Locker is a critical section. + * + * Sample usage: + * \code + * ... + * { + * v8::Locker locker(isolate); + * v8::Isolate::Scope isolate_scope(isolate); + * ... + * // Code using V8 and isolate goes here. + * ... + * } // Destructor called here + * \endcode + * + * If you wish to stop using V8 in a thread A you can do this either by + * destroying the v8::Locker object as above or by constructing a v8::Unlocker + * object: + * + * \code + * { + * isolate->Exit(); + * v8::Unlocker unlocker(isolate); + * ... + * // Code not using V8 goes here while V8 can run in another thread. + * ... + * } // Destructor called here. + * isolate->Enter(); + * \endcode + * + * The Unlocker object is intended for use in a long-running callback from V8, + * where you want to release the V8 lock for other threads to use. + * + * The v8::Locker is a recursive lock, i.e. you can lock more than once in a + * given thread. This can be useful if you have code that can be called either + * from code that holds the lock or from code that does not. The Unlocker is + * not recursive so you can not have several Unlockers on the stack at once, and + * you cannot use an Unlocker in a thread that is not inside a Locker's scope. + * + * An unlocker will unlock several lockers if it has to and reinstate the + * correct depth of locking on its destruction, e.g.: + * + * \code + * // V8 not locked. + * { + * v8::Locker locker(isolate); + * Isolate::Scope isolate_scope(isolate); + * // V8 locked. + * { + * v8::Locker another_locker(isolate); + * // V8 still locked (2 levels). + * { + * isolate->Exit(); + * v8::Unlocker unlocker(isolate); + * // V8 not locked. + * } + * isolate->Enter(); + * // V8 locked again (2 levels). + * } + * // V8 still locked (1 level). + * } + * // V8 Now no longer locked. + * \endcode + */ +class V8_EXPORT Unlocker { + public: + /** + * Initialize Unlocker for a given Isolate. + */ + V8_INLINE explicit Unlocker(Isolate* isolate) { Initialize(isolate); } + + ~Unlocker(); + + private: + void Initialize(Isolate* isolate); + + internal::Isolate* isolate_; +}; + +class V8_EXPORT Locker { + public: + /** + * Initialize Locker for a given Isolate. + */ + V8_INLINE explicit Locker(Isolate* isolate) { Initialize(isolate); } + + ~Locker(); + + /** + * Returns whether or not the locker for a given isolate, is locked by the + * current thread. + */ + static bool IsLocked(Isolate* isolate); + + // Disallow copying and assigning. + Locker(const Locker&) = delete; + void operator=(const Locker&) = delete; + + private: + void Initialize(Isolate* isolate); + + bool has_lock_; + bool top_level_; + internal::Isolate* isolate_; +}; + +} // namespace v8 + +#endif // INCLUDE_V8_LOCKER_H_ diff --git a/data_prepare/node-v24.12.0-linux-x64/include/node/v8-message.h b/data_prepare/node-v24.12.0-linux-x64/include/node/v8-message.h new file mode 100644 index 0000000000000000000000000000000000000000..b50898530cf95ea84526826fbaebda5f0109904a --- /dev/null +++ b/data_prepare/node-v24.12.0-linux-x64/include/node/v8-message.h @@ -0,0 +1,220 @@ +// Copyright 2021 the V8 project authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#ifndef INCLUDE_V8_MESSAGE_H_ +#define INCLUDE_V8_MESSAGE_H_ + +#include + +#include + +#include "v8-callbacks.h" // NOLINT(build/include_directory) +#include "v8-local-handle.h" // NOLINT(build/include_directory) +#include "v8-maybe.h" // NOLINT(build/include_directory) +#include "v8-primitive.h" // NOLINT(build/include_directory) +#include "v8config.h" // NOLINT(build/include_directory) + +namespace v8 { + +class Integer; +class PrimitiveArray; +class StackTrace; +class String; +class Value; + +/** + * The optional attributes of ScriptOrigin. + */ +class ScriptOriginOptions { + public: + V8_INLINE ScriptOriginOptions(bool is_shared_cross_origin = false, + bool is_opaque = false, bool is_wasm = false, + bool is_module = false) + : flags_((is_shared_cross_origin ? kIsSharedCrossOrigin : 0) | + (is_wasm ? kIsWasm : 0) | (is_opaque ? kIsOpaque : 0) | + (is_module ? kIsModule : 0)) {} + V8_INLINE ScriptOriginOptions(int flags) + : flags_(flags & + (kIsSharedCrossOrigin | kIsOpaque | kIsWasm | kIsModule)) {} + + bool IsSharedCrossOrigin() const { + return (flags_ & kIsSharedCrossOrigin) != 0; + } + bool IsOpaque() const { return (flags_ & kIsOpaque) != 0; } + bool IsWasm() const { return (flags_ & kIsWasm) != 0; } + bool IsModule() const { return (flags_ & kIsModule) != 0; } + + int Flags() const { return flags_; } + + private: + enum { + kIsSharedCrossOrigin = 1, + kIsOpaque = 1 << 1, + kIsWasm = 1 << 2, + kIsModule = 1 << 3 + }; + const int flags_; +}; + +/** + * The origin, within a file, of a script. + */ +class V8_EXPORT ScriptOrigin { + public: + V8_INLINE ScriptOrigin(Local resource_name, + int resource_line_offset = 0, + int resource_column_offset = 0, + bool resource_is_shared_cross_origin = false, + int script_id = -1, + Local source_map_url = Local(), + bool resource_is_opaque = false, bool is_wasm = false, + bool is_module = false, + Local host_defined_options = Local()) + : resource_name_(resource_name), + resource_line_offset_(resource_line_offset), + resource_column_offset_(resource_column_offset), + options_(resource_is_shared_cross_origin, resource_is_opaque, is_wasm, + is_module), + script_id_(script_id), + source_map_url_(source_map_url), + host_defined_options_(host_defined_options) { + VerifyHostDefinedOptions(); + } + + V8_INLINE Local ResourceName() const; + V8_INLINE int LineOffset() const; + V8_INLINE int ColumnOffset() const; + V8_INLINE int ScriptId() const; + V8_INLINE Local SourceMapUrl() const; + V8_INLINE Local GetHostDefinedOptions() const; + V8_INLINE ScriptOriginOptions Options() const { return options_; } + + private: + void VerifyHostDefinedOptions() const; + Local resource_name_; + int resource_line_offset_; + int resource_column_offset_; + ScriptOriginOptions options_; + int script_id_; + Local source_map_url_; + Local host_defined_options_; +}; + +/** + * An error message. + */ +class V8_EXPORT Message { + public: + Local Get() const; + + /** + * Return the isolate to which the Message belongs. + */ + Isolate* GetIsolate() const; + + V8_WARN_UNUSED_RESULT MaybeLocal GetSource( + Local context) const; + V8_WARN_UNUSED_RESULT MaybeLocal GetSourceLine( + Local context) const; + + /** + * Returns the origin for the script from where the function causing the + * error originates. + */ + ScriptOrigin GetScriptOrigin() const; + + /** + * Returns the resource name for the script from where the function causing + * the error originates. + */ + Local GetScriptResourceName() const; + + /** + * Exception stack trace. By default stack traces are not captured for + * uncaught exceptions. SetCaptureStackTraceForUncaughtExceptions allows + * to change this option. + */ + Local GetStackTrace() const; + + /** + * Returns the number, 1-based, of the line where the error occurred. + */ + V8_WARN_UNUSED_RESULT Maybe GetLineNumber(Local context) const; + + /** + * Returns the index within the script of the first character where + * the error occurred. + */ + int GetStartPosition() const; + + /** + * Returns the index within the script of the last character where + * the error occurred. + */ + int GetEndPosition() const; + + /** + * Returns the Wasm function index where the error occurred. Returns -1 if + * message is not from a Wasm script. + */ + int GetWasmFunctionIndex() const; + + /** + * Returns the error level of the message. + */ + int ErrorLevel() const; + + /** + * Returns the index within the line of the first character where + * the error occurred. + */ + int GetStartColumn() const; + V8_WARN_UNUSED_RESULT Maybe GetStartColumn(Local context) const; + + /** + * Returns the index within the line of the last character where + * the error occurred. + */ + int GetEndColumn() const; + V8_WARN_UNUSED_RESULT Maybe GetEndColumn(Local context) const; + + /** + * Passes on the value set by the embedder when it fed the script from which + * this Message was generated to V8. + */ + bool IsSharedCrossOrigin() const; + bool IsOpaque() const; + + /** + * If provided, the callback can be used to selectively include + * or redact frames based on their script names. (true to include a frame) + */ + static void PrintCurrentStackTrace( + Isolate* isolate, std::ostream& out, + PrintCurrentStackTraceFilterCallback should_include_frame_callback = + nullptr); + + static const int kNoLineNumberInfo = 0; + static const int kNoColumnInfo = 0; + static const int kNoScriptIdInfo = 0; + static const int kNoWasmFunctionIndexInfo = -1; +}; + +Local ScriptOrigin::ResourceName() const { return resource_name_; } + +Local ScriptOrigin::GetHostDefinedOptions() const { + return host_defined_options_; +} + +int ScriptOrigin::LineOffset() const { return resource_line_offset_; } + +int ScriptOrigin::ColumnOffset() const { return resource_column_offset_; } + +int ScriptOrigin::ScriptId() const { return script_id_; } + +Local ScriptOrigin::SourceMapUrl() const { return source_map_url_; } + +} // namespace v8 + +#endif // INCLUDE_V8_MESSAGE_H_ diff --git a/data_prepare/node-v24.12.0-linux-x64/include/node/v8-snapshot.h b/data_prepare/node-v24.12.0-linux-x64/include/node/v8-snapshot.h new file mode 100644 index 0000000000000000000000000000000000000000..8c8390bab18f36bb0578c21d123f71c704acc383 --- /dev/null +++ b/data_prepare/node-v24.12.0-linux-x64/include/node/v8-snapshot.h @@ -0,0 +1,302 @@ +// Copyright 2021 the V8 project authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#ifndef INCLUDE_V8_SNAPSHOT_H_ +#define INCLUDE_V8_SNAPSHOT_H_ + +#include "v8-internal.h" // NOLINT(build/include_directory) +#include "v8-isolate.h" // NOLINT(build/include_directory) +#include "v8-local-handle.h" // NOLINT(build/include_directory) +#include "v8config.h" // NOLINT(build/include_directory) + +namespace v8 { + +class Object; + +namespace internal { +class SnapshotCreatorImpl; +} // namespace internal + +class V8_EXPORT StartupData { + public: + /** + * Whether the data created can be rehashed and and the hash seed can be + * recomputed when deserialized. + * Only valid for StartupData returned by SnapshotCreator::CreateBlob(). + */ + bool CanBeRehashed() const; + /** + * Allows embedders to verify whether the data is valid for the current + * V8 instance. + */ + bool IsValid() const; + + const char* data; + int raw_size; +}; + +/** + * Callback and supporting data used in SnapshotCreator to implement embedder + * logic to serialize internal fields of v8::Objects. + * Internal fields that directly reference V8 objects are serialized without + * calling this callback. Internal fields that contain aligned pointers are + * serialized by this callback if it returns non-zero result. Otherwise it is + * serialized verbatim. + */ +struct SerializeInternalFieldsCallback { + using CallbackFunction = StartupData (*)(Local holder, int index, + void* data); + SerializeInternalFieldsCallback(CallbackFunction function = nullptr, + void* data_arg = nullptr) + : callback(function), data(data_arg) {} + CallbackFunction callback; + void* data; +}; + +/** + * Similar to SerializeInternalFieldsCallback, but works with the embedder data + * in a v8::Context. + */ +struct SerializeContextDataCallback { + using CallbackFunction = StartupData (*)(Local holder, int index, + void* data); + SerializeContextDataCallback(CallbackFunction function = nullptr, + void* data_arg = nullptr) + : callback(function), data(data_arg) {} + CallbackFunction callback; + void* data; +}; + +/** + * Similar to `SerializeInternalFieldsCallback`, but is used exclusively to + * serialize API wrappers. The pointers for API wrappers always point into the + * CppHeap. + */ +struct SerializeAPIWrapperCallback { + using CallbackFunction = StartupData (*)(Local holder, + void* cpp_heap_pointer, void* data); + explicit SerializeAPIWrapperCallback(CallbackFunction function = nullptr, + void* data = nullptr) + : callback(function), data(data) {} + + CallbackFunction callback; + void* data; +}; + +/** + * Callback and supporting data used to implement embedder logic to deserialize + * internal fields of v8::Objects. + */ +struct DeserializeInternalFieldsCallback { + using CallbackFunction = void (*)(Local holder, int index, + StartupData payload, void* data); + DeserializeInternalFieldsCallback(CallbackFunction function = nullptr, + void* data_arg = nullptr) + : callback(function), data(data_arg) {} + + CallbackFunction callback; + void* data; +}; + +/** + * Similar to DeserializeInternalFieldsCallback, but works with the embedder + * data in a v8::Context. + */ +struct DeserializeContextDataCallback { + using CallbackFunction = void (*)(Local holder, int index, + StartupData payload, void* data); + DeserializeContextDataCallback(CallbackFunction function = nullptr, + void* data_arg = nullptr) + : callback(function), data(data_arg) {} + CallbackFunction callback; + void* data; +}; + +struct DeserializeAPIWrapperCallback { + using CallbackFunction = void (*)(Local holder, StartupData payload, + void* data); + explicit DeserializeAPIWrapperCallback(CallbackFunction function = nullptr, + void* data = nullptr) + : callback(function), data(data) {} + + CallbackFunction callback; + void* data; +}; + +/** + * Helper class to create a snapshot data blob. + * + * The Isolate used by a SnapshotCreator is owned by it, and will be entered + * and exited by the constructor and destructor, respectively; The destructor + * will also destroy the Isolate. Experimental language features, including + * those available by default, are not available while creating a snapshot. + */ +class V8_EXPORT SnapshotCreator { + public: + enum class FunctionCodeHandling { kClear, kKeep }; + + /** + * Initialize and enter an isolate, and set it up for serialization. + * The isolate is either created from scratch or from an existing snapshot. + * The caller keeps ownership of the argument snapshot. + * \param existing_blob existing snapshot from which to create this one. + * \param external_references a null-terminated array of external references + * that must be equivalent to CreateParams::external_references. + * \param owns_isolate whether this SnapshotCreator should call + * v8::Isolate::Dispose() during its destructor. + */ + V8_DEPRECATE_SOON("Use the version that passes CreateParams instead.") + explicit SnapshotCreator(Isolate* isolate, + const intptr_t* external_references = nullptr, + const StartupData* existing_blob = nullptr, + bool owns_isolate = true); + + /** + * Create and enter an isolate, and set it up for serialization. + * The isolate is either created from scratch or from an existing snapshot. + * The caller keeps ownership of the argument snapshot. + * \param existing_blob existing snapshot from which to create this one. + * \param external_references a null-terminated array of external references + * that must be equivalent to CreateParams::external_references. + */ + V8_DEPRECATE_SOON("Use the version that passes CreateParams instead.") + explicit SnapshotCreator(const intptr_t* external_references = nullptr, + const StartupData* existing_blob = nullptr); + + /** + * Creates an Isolate for serialization and enters it. The creator fully owns + * the Isolate and will invoke `v8::Isolate::Dispose()` during destruction. + * + * \param params The parameters to initialize the Isolate for. Details: + * - `params.external_references` are expected to be a + * null-terminated array of external references. + * - `params.existing_blob` is an optional snapshot blob from + * which can be used to initialize the new blob. + */ + explicit SnapshotCreator(const v8::Isolate::CreateParams& params); + + /** + * Initializes an Isolate for serialization and enters it. The creator does + * not own the Isolate but merely initialize it properly. + * + * \param isolate The isolate that was allocated by `Isolate::Allocate()~. + * \param params The parameters to initialize the Isolate for. Details: + * - `params.external_references` are expected to be a + * null-terminated array of external references. + * - `params.existing_blob` is an optional snapshot blob from + * which can be used to initialize the new blob. + */ + SnapshotCreator(v8::Isolate* isolate, + const v8::Isolate::CreateParams& params); + + /** + * Destroy the snapshot creator, and exit and dispose of the Isolate + * associated with it. + */ + ~SnapshotCreator(); + + /** + * \returns the isolate prepared by the snapshot creator. + */ + Isolate* GetIsolate(); + + /** + * Set the default context to be included in the snapshot blob. + * The snapshot will not contain the global proxy, and we expect one or a + * global object template to create one, to be provided upon deserialization. + * + * \param internal_fields_serializer An optional callback used to serialize + * internal pointer fields set by + * v8::Object::SetAlignedPointerInInternalField(). + * + * \param context_data_serializer An optional callback used to serialize + * context embedder data set by + * v8::Context::SetAlignedPointerInEmbedderData(). + * + * \param api_wrapper_serializer An optional callback used to serialize API + * wrapper references set via `v8::Object::Wrap()`. + */ + void SetDefaultContext( + Local context, + SerializeInternalFieldsCallback internal_fields_serializer = + SerializeInternalFieldsCallback(), + SerializeContextDataCallback context_data_serializer = + SerializeContextDataCallback(), + SerializeAPIWrapperCallback api_wrapper_serializer = + SerializeAPIWrapperCallback()); + + /** + * Add additional context to be included in the snapshot blob. + * The snapshot will include the global proxy. + * + * \param internal_fields_serializer Similar to internal_fields_serializer + * in SetDefaultContext() but only applies to the context being added. + * + * \param context_data_serializer Similar to context_data_serializer + * in SetDefaultContext() but only applies to the context being added. + * + * \param api_wrapper_serializer Similar to api_wrapper_serializer + * in SetDefaultContext() but only applies to the context being added. + */ + size_t AddContext(Local context, + SerializeInternalFieldsCallback internal_fields_serializer = + SerializeInternalFieldsCallback(), + SerializeContextDataCallback context_data_serializer = + SerializeContextDataCallback(), + SerializeAPIWrapperCallback api_wrapper_serializer = + SerializeAPIWrapperCallback()); + + /** + * Attach arbitrary V8::Data to the context snapshot, which can be retrieved + * via Context::GetDataFromSnapshotOnce after deserialization. This data does + * not survive when a new snapshot is created from an existing snapshot. + * \returns the index for retrieval. + */ + template + V8_INLINE size_t AddData(Local context, Local object); + + /** + * Attach arbitrary V8::Data to the isolate snapshot, which can be retrieved + * via Isolate::GetDataFromSnapshotOnce after deserialization. This data does + * not survive when a new snapshot is created from an existing snapshot. + * \returns the index for retrieval. + */ + template + V8_INLINE size_t AddData(Local object); + + /** + * Created a snapshot data blob. + * This must not be called from within a handle scope. + * \param function_code_handling whether to include compiled function code + * in the snapshot. + * \returns { nullptr, 0 } on failure, and a startup snapshot on success. The + * caller acquires ownership of the data array in the return value. + */ + StartupData CreateBlob(FunctionCodeHandling function_code_handling); + + // Disallow copying and assigning. + SnapshotCreator(const SnapshotCreator&) = delete; + void operator=(const SnapshotCreator&) = delete; + + private: + size_t AddData(Local context, internal::Address object); + size_t AddData(internal::Address object); + + internal::SnapshotCreatorImpl* impl_; + friend class internal::SnapshotCreatorImpl; +}; + +template +size_t SnapshotCreator::AddData(Local context, Local object) { + return AddData(context, internal::ValueHelper::ValueAsAddress(*object)); +} + +template +size_t SnapshotCreator::AddData(Local object) { + return AddData(internal::ValueHelper::ValueAsAddress(*object)); +} + +} // namespace v8 + +#endif // INCLUDE_V8_SNAPSHOT_H_ diff --git a/data_prepare/node-v24.12.0-linux-x64/include/node/v8-template.h b/data_prepare/node-v24.12.0-linux-x64/include/node/v8-template.h new file mode 100644 index 0000000000000000000000000000000000000000..297a45d1fe64c764486ba4828d509d78e9f965ce --- /dev/null +++ b/data_prepare/node-v24.12.0-linux-x64/include/node/v8-template.h @@ -0,0 +1,1145 @@ +// Copyright 2021 the V8 project authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#ifndef INCLUDE_V8_TEMPLATE_H_ +#define INCLUDE_V8_TEMPLATE_H_ + +#include +#include + +#include "v8-data.h" // NOLINT(build/include_directory) +#include "v8-exception.h" // NOLINT(build/include_directory) +#include "v8-function-callback.h" // NOLINT(build/include_directory) +#include "v8-local-handle.h" // NOLINT(build/include_directory) +#include "v8-memory-span.h" // NOLINT(build/include_directory) +#include "v8-object.h" // NOLINT(build/include_directory) +#include "v8config.h" // NOLINT(build/include_directory) + +namespace v8 { + +class CFunction; +class FunctionTemplate; +class ObjectTemplate; +class Signature; + +// --- Templates --- + +#define V8_INTRINSICS_LIST(F) \ + F(ArrayProto_entries, array_entries_iterator) \ + F(ArrayProto_forEach, array_for_each_iterator) \ + F(ArrayProto_keys, array_keys_iterator) \ + F(ArrayProto_values, array_values_iterator) \ + F(ArrayPrototype, initial_array_prototype) \ + F(AsyncIteratorPrototype, initial_async_iterator_prototype) \ + F(ErrorPrototype, initial_error_prototype) \ + F(IteratorPrototype, initial_iterator_prototype) \ + F(MapIteratorPrototype, initial_map_iterator_prototype) \ + F(ObjProto_valueOf, object_value_of_function) \ + F(SetIteratorPrototype, initial_set_iterator_prototype) + +enum Intrinsic { +#define V8_DECL_INTRINSIC(name, iname) k##name, + V8_INTRINSICS_LIST(V8_DECL_INTRINSIC) +#undef V8_DECL_INTRINSIC +}; + +/** + * The superclass of object and function templates. + */ +class V8_EXPORT Template : public Data { + public: + /** + * Adds a property to each instance created by this template. + * + * The property must be defined either as a primitive value, or a template. + */ + void Set(Local name, Local value, + PropertyAttribute attributes = None); + void SetPrivate(Local name, Local value, + PropertyAttribute attributes = None); + V8_INLINE void Set(Isolate* isolate, const char* name, Local value, + PropertyAttribute attributes = None); + + /** + * Sets an "accessor property" on the object template, see + * https://tc39.es/ecma262/#sec-object-type. + * + * Whenever the property with the given name is accessed on objects + * created from this ObjectTemplate the getter and setter functions + * are called. + * + * \param name The name of the property for which an accessor is added. + * \param getter The callback to invoke when getting the property. + * \param setter The callback to invoke when setting the property. + * \param attribute The attributes of the property for which an accessor + * is added. + */ + void SetAccessorProperty( + Local name, + Local getter = Local(), + Local setter = Local(), + PropertyAttribute attribute = None); + + /** + * Sets a "data property" on the object template, see + * https://tc39.es/ecma262/#sec-object-type. + * + * Whenever the property with the given name is accessed on objects + * created from this Template the getter and setter callbacks + * are called instead of getting and setting the property directly + * on the JavaScript object. + * Note that in case a property is written via a "child" object, the setter + * will not be called according to the JavaScript specification. See + * https://tc39.es/ecma262/#sec-ordinary-object-internal-methods-and-internal-slots-set-p-v-receiver. + * + * \param name The name of the data property for which an accessor is added. + * \param getter The callback to invoke when getting the property. + * \param setter The callback to invoke when setting the property. + * \param data A piece of data that will be passed to the getter and setter + * callbacks whenever they are invoked. + * \param attribute The attributes of the property for which an accessor + * is added. + */ + void SetNativeDataProperty( + Local name, AccessorNameGetterCallback getter, + AccessorNameSetterCallback setter = nullptr, + Local data = Local(), PropertyAttribute attribute = None, + SideEffectType getter_side_effect_type = SideEffectType::kHasSideEffect, + SideEffectType setter_side_effect_type = SideEffectType::kHasSideEffect); + + /** + * Like SetNativeDataProperty, but V8 will replace the native data property + * with a real data property on first access. + */ + void SetLazyDataProperty( + Local name, AccessorNameGetterCallback getter, + Local data = Local(), PropertyAttribute attribute = None, + SideEffectType getter_side_effect_type = SideEffectType::kHasSideEffect, + SideEffectType setter_side_effect_type = SideEffectType::kHasSideEffect); + + /** + * During template instantiation, sets the value with the intrinsic property + * from the correct context. + */ + void SetIntrinsicDataProperty(Local name, Intrinsic intrinsic, + PropertyAttribute attribute = None); + + private: + Template(); + + friend class ObjectTemplate; + friend class FunctionTemplate; +}; + +/** + * Interceptor callbacks use this value to indicate whether the request was + * intercepted or not. + */ +enum class Intercepted : uint8_t { kNo = 0, kYes = 1 }; + +/** + * Interceptor for get requests on an object. + * + * If the interceptor handles the request (i.e. the property should not be + * looked up beyond the interceptor or in case an exception was thrown) it + * should + * - (optionally) use info.GetReturnValue().Set()` to set the return value + * (by default the result is set to v8::Undefined), + * - return `Intercepted::kYes`. + * If the interceptor does not handle the request it must return + * `Intercepted::kNo` and it must not produce side effects. + * + * \param property The name of the property for which the request was + * intercepted. + * \param info Information about the intercepted request, such as + * isolate, receiver, return value, or whether running in `'use strict'` mode. + * See `PropertyCallbackInfo`. + * + * \code + * Intercepted GetterCallback( + * Local name, const v8::PropertyCallbackInfo& info) { + * if (!IsKnownProperty(info.GetIsolate(), name)) return Intercepted::kNo; + * info.GetReturnValue().Set(v8_num(42)); + * return Intercepted::kYes; + * } + * + * v8::Local templ = + * v8::FunctionTemplate::New(isolate); + * templ->InstanceTemplate()->SetHandler( + * v8::NamedPropertyHandlerConfiguration(GetterCallback)); + * LocalContext env; + * env->Global() + * ->Set(env.local(), v8_str("obj"), templ->GetFunction(env.local()) + * .ToLocalChecked() + * ->NewInstance(env.local()) + * .ToLocalChecked()) + * .FromJust(); + * v8::Local result = CompileRun("obj.a = 17; obj.a"); + * CHECK(v8_num(42)->Equals(env.local(), result).FromJust()); + * \endcode + * + * See also `ObjectTemplate::SetHandler`. + */ +using NamedPropertyGetterCallback = Intercepted (*)( + Local property, const PropertyCallbackInfo& info); +// This variant will be deprecated soon. +// +// Use `info.GetReturnValue().Set()` to set the return value of the +// intercepted get request. If the property does not exist the callback should +// not set the result and must not produce side effects. +using GenericNamedPropertyGetterCallback = + void (*)(Local property, const PropertyCallbackInfo& info); + +/** + * Interceptor for set requests on an object. + * + * If the interceptor handles the request (i.e. the property should not be + * looked up beyond the interceptor or in case an exception was thrown) it + * should return `Intercepted::kYes`. + * If the interceptor does not handle the request it must return + * `Intercepted::kNo` and it must not produce side effects. + * + * \param property The name of the property for which the request was + * intercepted. + * \param value The value which the property will have if the request + * is not intercepted. + * \param info Information about the intercepted request, such as + * isolate, receiver, return value, or whether running in `'use strict'` mode. + * See `PropertyCallbackInfo`. + * + * See also `ObjectTemplate::SetHandler.` + */ +using NamedPropertySetterCallback = + Intercepted (*)(Local property, Local value, + const PropertyCallbackInfo& info); +// This variant will be deprecated soon. +// +// Use `info.GetReturnValue()` to indicate whether the request was intercepted +// or not. If the setter successfully intercepts the request, i.e., if the +// request should not be further executed, call +// `info.GetReturnValue().Set(value)`. If the setter did not intercept the +// request, i.e., if the request should be handled as if no interceptor is +// present, do not not call `Set()` and do not produce side effects. +using GenericNamedPropertySetterCallback = + void (*)(Local property, Local value, + const PropertyCallbackInfo& info); + +/** + * Intercepts all requests that query the attributes of the + * property, e.g., getOwnPropertyDescriptor(), propertyIsEnumerable(), and + * defineProperty(). + * + * If the interceptor handles the request (i.e. the property should not be + * looked up beyond the interceptor or in case an exception was thrown) it + * should + * - (optionally) use `info.GetReturnValue().Set()` to set to an Integer + * value encoding a `v8::PropertyAttribute` bits, + * - return `Intercepted::kYes`. + * If the interceptor does not handle the request it must return + * `Intercepted::kNo` and it must not produce side effects. + * + * \param property The name of the property for which the request was + * intercepted. + * \param info Information about the intercepted request, such as + * isolate, receiver, return value, or whether running in `'use strict'` mode. + * See `PropertyCallbackInfo`. + * + * \note Some functions query the property attributes internally, even though + * they do not return the attributes. For example, `hasOwnProperty()` can + * trigger this interceptor depending on the state of the object. + * + * See also `ObjectTemplate::SetHandler.` + */ +using NamedPropertyQueryCallback = Intercepted (*)( + Local property, const PropertyCallbackInfo& info); +// This variant will be deprecated soon. +// +// Use `info.GetReturnValue().Set(value)` to set the property attributes. The +// value is an integer encoding a `v8::PropertyAttribute`. If the property does +// not exist the callback should not set the result and must not produce side +// effects. +using GenericNamedPropertyQueryCallback = + void (*)(Local property, const PropertyCallbackInfo& info); + +/** + * Interceptor for delete requests on an object. + * + * If the interceptor handles the request (i.e. the property should not be + * looked up beyond the interceptor or in case an exception was thrown) it + * should + * - (optionally) use `info.GetReturnValue().Set()` to set to a Boolean value + * indicating whether the property deletion was successful or not, + * - return `Intercepted::kYes`. + * If the interceptor does not handle the request it must return + * `Intercepted::kNo` and it must not produce side effects. + * + * \param property The name of the property for which the request was + * intercepted. + * \param info Information about the intercepted request, such as + * isolate, receiver, return value, or whether running in `'use strict'` mode. + * See `PropertyCallbackInfo`. + * + * \note If you need to mimic the behavior of `delete`, i.e., throw in strict + * mode instead of returning false, use `info.ShouldThrowOnError()` to determine + * if you are in strict mode. + * + * See also `ObjectTemplate::SetHandler.` + */ +using NamedPropertyDeleterCallback = Intercepted (*)( + Local property, const PropertyCallbackInfo& info); +// This variant will be deprecated soon. +// +// Use `info.GetReturnValue()` to indicate whether the request was intercepted +// or not. If the deleter successfully intercepts the request, i.e., if the +// request should not be further executed, call +// `info.GetReturnValue().Set(value)` with a boolean `value`. The `value` is +// used as the return value of `delete`. If the deleter does not intercept the +// request then it should not set the result and must not produce side effects. +using GenericNamedPropertyDeleterCallback = + void (*)(Local property, const PropertyCallbackInfo& info); + +/** + * Returns an array containing the names of the properties the named + * property getter intercepts. + * + * Note: The values in the array must be of type v8::Name. + */ +using NamedPropertyEnumeratorCallback = + void (*)(const PropertyCallbackInfo& info); +// This variant will be deprecated soon. +// This is just a renaming of the typedef. +using GenericNamedPropertyEnumeratorCallback = NamedPropertyEnumeratorCallback; + +/** + * Interceptor for defineProperty requests on an object. + * + * If the interceptor handles the request (i.e. the property should not be + * looked up beyond the interceptor or in case an exception was thrown) it + * should return `Intercepted::kYes`. + * If the interceptor does not handle the request it must return + * `Intercepted::kNo` and it must not produce side effects. + * + * \param property The name of the property for which the request was + * intercepted. + * \param desc The property descriptor which is used to define the + * property if the request is not intercepted. + * \param info Information about the intercepted request, such as + * isolate, receiver, return value, or whether running in `'use strict'` mode. + * See `PropertyCallbackInfo`. + * + * See also `ObjectTemplate::SetHandler`. + */ +using NamedPropertyDefinerCallback = + Intercepted (*)(Local property, const PropertyDescriptor& desc, + const PropertyCallbackInfo& info); +// This variant will be deprecated soon. +// +// Use `info.GetReturnValue()` to indicate whether the request was intercepted +// or not. If the definer successfully intercepts the request, i.e., if the +// request should not be further executed, call +// `info.GetReturnValue().Set(value)`. If the definer did not intercept the +// request, i.e., if the request should be handled as if no interceptor is +// present, do not not call `Set()` and do not produce side effects. +using GenericNamedPropertyDefinerCallback = + void (*)(Local property, const PropertyDescriptor& desc, + const PropertyCallbackInfo& info); + +/** + * Interceptor for getOwnPropertyDescriptor requests on an object. + * + * If the interceptor handles the request (i.e. the property should not be + * looked up beyond the interceptor or in case an exception was thrown) it + * should + * - (optionally) use `info.GetReturnValue().Set()` to set the return value + * which must be object that can be converted to a PropertyDescriptor (for + * example, a value returned by `v8::Object::getOwnPropertyDescriptor`), + * - return `Intercepted::kYes`. + * If the interceptor does not handle the request it must return + * `Intercepted::kNo` and it must not produce side effects. + * + * \param property The name of the property for which the request was + * intercepted. + * \info Information about the intercepted request, such as + * isolate, receiver, return value, or whether running in `'use strict'` mode. + * See `PropertyCallbackInfo`. + * + * \note If GetOwnPropertyDescriptor is intercepted, it will + * always return true, i.e., indicate that the property was found. + * + * See also `ObjectTemplate::SetHandler`. + */ +using NamedPropertyDescriptorCallback = Intercepted (*)( + Local property, const PropertyCallbackInfo& info); +// This variant will be deprecated soon. +// +// Use `info.GetReturnValue().Set()` to set the return value of the +// intercepted request. The return value must be an object that +// can be converted to a PropertyDescriptor, e.g., a `v8::Value` returned from +// `v8::Object::getOwnPropertyDescriptor`. +using GenericNamedPropertyDescriptorCallback = + void (*)(Local property, const PropertyCallbackInfo& info); + +// TODO(ishell): Rename IndexedPropertyXxxCallbackV2 back to +// IndexedPropertyXxxCallback once the old IndexedPropertyXxxCallback is +// removed. + +/** + * See `v8::NamedPropertyGetterCallback`. + */ +using IndexedPropertyGetterCallbackV2 = + Intercepted (*)(uint32_t index, const PropertyCallbackInfo& info); +// This variant will be deprecated soon. +using IndexedPropertyGetterCallback = + void (*)(uint32_t index, const PropertyCallbackInfo& info); + +/** + * See `v8::NamedPropertySetterCallback`. + */ +using IndexedPropertySetterCallbackV2 = Intercepted (*)( + uint32_t index, Local value, const PropertyCallbackInfo& info); +// This variant will be deprecated soon. +using IndexedPropertySetterCallback = + void (*)(uint32_t index, Local value, + const PropertyCallbackInfo& info); + +/** + * See `v8::NamedPropertyQueryCallback`. + */ +using IndexedPropertyQueryCallbackV2 = + Intercepted (*)(uint32_t index, const PropertyCallbackInfo& info); +// This variant will be deprecated soon. +using IndexedPropertyQueryCallback = + void (*)(uint32_t index, const PropertyCallbackInfo& info); + +/** + * See `v8::NamedPropertyDeleterCallback`. + */ +using IndexedPropertyDeleterCallbackV2 = + Intercepted (*)(uint32_t index, const PropertyCallbackInfo& info); +// This variant will be deprecated soon. +using IndexedPropertyDeleterCallback = + void (*)(uint32_t index, const PropertyCallbackInfo& info); + +/** + * Returns an array containing the indices of the properties the indexed + * property getter intercepts. + * + * Note: The values in the array must be uint32_t. + */ +using IndexedPropertyEnumeratorCallback = + void (*)(const PropertyCallbackInfo& info); + +/** + * See `v8::NamedPropertyDefinerCallback`. + */ +using IndexedPropertyDefinerCallbackV2 = + Intercepted (*)(uint32_t index, const PropertyDescriptor& desc, + const PropertyCallbackInfo& info); +// This variant will be deprecated soon. +using IndexedPropertyDefinerCallback = + void (*)(uint32_t index, const PropertyDescriptor& desc, + const PropertyCallbackInfo& info); + +/** + * See `v8::NamedPropertyDescriptorCallback`. + */ +using IndexedPropertyDescriptorCallbackV2 = + Intercepted (*)(uint32_t index, const PropertyCallbackInfo& info); +// This variant will be deprecated soon. +using IndexedPropertyDescriptorCallback = + void (*)(uint32_t index, const PropertyCallbackInfo& info); + +/** + * Returns true if the given context should be allowed to access the given + * object. + */ +using AccessCheckCallback = bool (*)(Local accessing_context, + Local accessed_object, + Local data); + +enum class ConstructorBehavior { kThrow, kAllow }; + +/** + * A FunctionTemplate is used to create functions at runtime. There + * can only be one function created from a FunctionTemplate in a + * context. The lifetime of the created function is equal to the + * lifetime of the context. So in case the embedder needs to create + * temporary functions that can be collected using Scripts is + * preferred. + * + * Any modification of a FunctionTemplate after first instantiation will trigger + * a crash. + * + * A FunctionTemplate can have properties, these properties are added to the + * function object when it is created. + * + * A FunctionTemplate has a corresponding instance template which is + * used to create object instances when the function is used as a + * constructor. Properties added to the instance template are added to + * each object instance. + * + * A FunctionTemplate can have a prototype template. The prototype template + * is used to create the prototype object of the function. + * + * The following example shows how to use a FunctionTemplate: + * + * \code + * v8::Local t = v8::FunctionTemplate::New(isolate); + * t->Set(isolate, "func_property", v8::Number::New(isolate, 1)); + * + * v8::Local proto_t = t->PrototypeTemplate(); + * proto_t->Set(isolate, + * "proto_method", + * v8::FunctionTemplate::New(isolate, InvokeCallback)); + * proto_t->Set(isolate, "proto_const", v8::Number::New(isolate, 2)); + * + * v8::Local instance_t = t->InstanceTemplate(); + * instance_t->SetNativeDataProperty( + * String::NewFromUtf8Literal(isolate, "instance_accessor"), + * InstanceAccessorCallback); + * instance_t->SetHandler( + * NamedPropertyHandlerConfiguration(PropertyHandlerCallback)); + * instance_t->Set(String::NewFromUtf8Literal(isolate, "instance_property"), + * Number::New(isolate, 3)); + * + * v8::Local function = t->GetFunction(); + * v8::Local instance = function->NewInstance(); + * \endcode + * + * Let's use "function" as the JS variable name of the function object + * and "instance" for the instance object created above. The function + * and the instance will have the following properties: + * + * \code + * func_property in function == true; + * function.func_property == 1; + * + * function.prototype.proto_method() invokes 'InvokeCallback' + * function.prototype.proto_const == 2; + * + * instance instanceof function == true; + * instance.instance_accessor calls 'InstanceAccessorCallback' + * instance.instance_property == 3; + * \endcode + * + * A FunctionTemplate can inherit from another one by calling the + * FunctionTemplate::Inherit method. The following graph illustrates + * the semantics of inheritance: + * + * \code + * FunctionTemplate Parent -> Parent() . prototype -> { } + * ^ ^ + * | Inherit(Parent) | .__proto__ + * | | + * FunctionTemplate Child -> Child() . prototype -> { } + * \endcode + * + * A FunctionTemplate 'Child' inherits from 'Parent', the prototype + * object of the Child() function has __proto__ pointing to the + * Parent() function's prototype object. An instance of the Child + * function has all properties on Parent's instance templates. + * + * Let Parent be the FunctionTemplate initialized in the previous + * section and create a Child FunctionTemplate by: + * + * \code + * Local parent = t; + * Local child = FunctionTemplate::New(); + * child->Inherit(parent); + * + * Local child_function = child->GetFunction(); + * Local child_instance = child_function->NewInstance(); + * \endcode + * + * The Child function and Child instance will have the following + * properties: + * + * \code + * child_func.prototype.__proto__ == function.prototype; + * child_instance.instance_accessor calls 'InstanceAccessorCallback' + * child_instance.instance_property == 3; + * \endcode + * + * The additional 'c_function' parameter refers to a fast API call, which + * must not trigger GC or JavaScript execution, or call into V8 in other + * ways. For more information how to define them, see + * include/v8-fast-api-calls.h. Please note that this feature is still + * experimental. + */ +class V8_EXPORT FunctionTemplate : public Template { + public: + /** Creates a function template.*/ + static Local New( + Isolate* isolate, FunctionCallback callback = nullptr, + Local data = Local(), + Local signature = Local(), int length = 0, + ConstructorBehavior behavior = ConstructorBehavior::kAllow, + SideEffectType side_effect_type = SideEffectType::kHasSideEffect, + const CFunction* c_function = nullptr, uint16_t instance_type = 0, + uint16_t allowed_receiver_instance_type_range_start = 0, + uint16_t allowed_receiver_instance_type_range_end = 0); + + /** Creates a function template for multiple overloaded fast API calls.*/ + static Local NewWithCFunctionOverloads( + Isolate* isolate, FunctionCallback callback = nullptr, + Local data = Local(), + Local signature = Local(), int length = 0, + ConstructorBehavior behavior = ConstructorBehavior::kAllow, + SideEffectType side_effect_type = SideEffectType::kHasSideEffect, + const MemorySpan& c_function_overloads = {}); + + /** + * Creates a function template backed/cached by a private property. + */ + static Local NewWithCache( + Isolate* isolate, FunctionCallback callback, + Local cache_property, Local data = Local(), + Local signature = Local(), int length = 0, + SideEffectType side_effect_type = SideEffectType::kHasSideEffect); + + /** Returns the unique function instance in the current execution context.*/ + V8_WARN_UNUSED_RESULT MaybeLocal GetFunction( + Local context); + + /** + * Similar to Context::NewRemoteContext, this creates an instance that + * isn't backed by an actual object. + * + * The InstanceTemplate of this FunctionTemplate must have access checks with + * handlers installed. + */ + V8_WARN_UNUSED_RESULT MaybeLocal NewRemoteInstance(); + + /** + * Set the call-handler callback for a FunctionTemplate. This + * callback is called whenever the function created from this + * FunctionTemplate is called. The 'c_function' represents a fast + * API call, see the comment above the class declaration. + */ + void SetCallHandler( + FunctionCallback callback, Local data = Local(), + SideEffectType side_effect_type = SideEffectType::kHasSideEffect, + const MemorySpan& c_function_overloads = {}); + + /** Set the predefined length property for the FunctionTemplate. */ + void SetLength(int length); + + /** Get the InstanceTemplate. */ + Local InstanceTemplate(); + + /** + * Causes the function template to inherit from a parent function template. + * This means the function's prototype.__proto__ is set to the parent + * function's prototype. + **/ + void Inherit(Local parent); + + /** + * A PrototypeTemplate is the template used to create the prototype object + * of the function created by this template. + */ + Local PrototypeTemplate(); + + /** + * A PrototypeProviderTemplate is another function template whose prototype + * property is used for this template. This is mutually exclusive with setting + * a prototype template indirectly by calling PrototypeTemplate() or using + * Inherit(). + **/ + void SetPrototypeProviderTemplate(Local prototype_provider); + + /** + * Set the class name of the FunctionTemplate. This is used for + * printing objects created with the function created from the + * FunctionTemplate as its constructor. + */ + void SetClassName(Local name); + + /** + * Set the interface name of the FunctionTemplate. This is provided as + * contextual information in an ExceptionPropagationMessage to the embedder. + */ + void SetInterfaceName(Local name); + + /** + * Provides information on the type of FunctionTemplate for embedder + * exception handling. + */ + void SetExceptionContext(ExceptionContext context); + + /** + * When set to true, no access check will be performed on the receiver of a + * function call. Currently defaults to true, but this is subject to change. + */ + void SetAcceptAnyReceiver(bool value); + + /** + * Sets the ReadOnly flag in the attributes of the 'prototype' property + * of functions created from this FunctionTemplate to true. + */ + void ReadOnlyPrototype(); + + /** + * Removes the prototype property from functions created from this + * FunctionTemplate. + */ + void RemovePrototype(); + + /** + * Returns true if the given object is an instance of this function + * template. + */ + bool HasInstance(Local object); + + /** + * Returns true if the given value is an API object that was constructed by an + * instance of this function template (without checking for inheriting + * function templates). + * + * This is an experimental feature and may still change significantly. + */ + bool IsLeafTemplateForApiObject(v8::Local value) const; + + /** + * Checks if the object can be promoted to read only space, seals it and + * prepares for promotion. + * + * This is an experimental feature and may still change significantly. + */ + void SealAndPrepareForPromotionToReadOnly(); + + V8_INLINE static FunctionTemplate* Cast(Data* data); + + private: + FunctionTemplate(); + + static void CheckCast(Data* that); + friend class Context; + friend class ObjectTemplate; +}; + +/** + * Configuration flags for v8::NamedPropertyHandlerConfiguration or + * v8::IndexedPropertyHandlerConfiguration. + */ +enum class PropertyHandlerFlags { + /** + * None. + */ + kNone = 0, + + /** + * Will not call into interceptor for properties on the receiver or prototype + * chain, i.e., only call into interceptor for properties that do not exist. + * Currently only valid for named interceptors. + */ + kNonMasking = 1, + + /** + * Will not call into interceptor for symbol lookup. Only meaningful for + * named interceptors. + */ + kOnlyInterceptStrings = 1 << 1, + + /** + * The getter, query, enumerator callbacks do not produce side effects. + */ + kHasNoSideEffect = 1 << 2, + + /** + * This flag is used to distinguish which callbacks were provided - + * GenericNamedPropertyXXXCallback (old signature) or + * NamedPropertyXXXCallback (new signature). + * DO NOT use this flag, it'll be removed once embedders migrate to new + * callbacks signatures. + */ + kInternalNewCallbacksSignatures = 1 << 10, +}; + +struct NamedPropertyHandlerConfiguration { + private: + static constexpr PropertyHandlerFlags WithNewSignatureFlag( + PropertyHandlerFlags flags) { + return static_cast( + static_cast(flags) | + static_cast( + PropertyHandlerFlags::kInternalNewCallbacksSignatures)); + } + + public: + NamedPropertyHandlerConfiguration( + NamedPropertyGetterCallback getter, // + NamedPropertySetterCallback setter, // + NamedPropertyQueryCallback query, // + NamedPropertyDeleterCallback deleter, // + NamedPropertyEnumeratorCallback enumerator, // + NamedPropertyDefinerCallback definer, // + NamedPropertyDescriptorCallback descriptor, // + Local data = Local(), + PropertyHandlerFlags flags = PropertyHandlerFlags::kNone) + : getter(getter), + setter(setter), + query(query), + deleter(deleter), + enumerator(enumerator), + definer(definer), + descriptor(descriptor), + data(data), + flags(flags) {} + + explicit NamedPropertyHandlerConfiguration( + NamedPropertyGetterCallback getter, + NamedPropertySetterCallback setter = nullptr, + NamedPropertyQueryCallback query = nullptr, + NamedPropertyDeleterCallback deleter = nullptr, + NamedPropertyEnumeratorCallback enumerator = nullptr, + Local data = Local(), + PropertyHandlerFlags flags = PropertyHandlerFlags::kNone) + : getter(getter), + setter(setter), + query(query), + deleter(deleter), + enumerator(enumerator), + definer(nullptr), + descriptor(nullptr), + data(data), + flags(flags) {} + + NamedPropertyHandlerConfiguration( + NamedPropertyGetterCallback getter, // + NamedPropertySetterCallback setter, // + NamedPropertyDescriptorCallback descriptor, // + NamedPropertyDeleterCallback deleter, // + NamedPropertyEnumeratorCallback enumerator, // + NamedPropertyDefinerCallback definer, // + Local data = Local(), + PropertyHandlerFlags flags = PropertyHandlerFlags::kNone) + : getter(getter), + setter(setter), + query(nullptr), + deleter(deleter), + enumerator(enumerator), + definer(definer), + descriptor(descriptor), + data(data), + flags(flags) {} + + NamedPropertyGetterCallback getter; + NamedPropertySetterCallback setter; + NamedPropertyQueryCallback query; + NamedPropertyDeleterCallback deleter; + NamedPropertyEnumeratorCallback enumerator; + NamedPropertyDefinerCallback definer; + NamedPropertyDescriptorCallback descriptor; + Local data; + PropertyHandlerFlags flags; +}; + +struct IndexedPropertyHandlerConfiguration { + private: + static constexpr PropertyHandlerFlags WithNewSignatureFlag( + PropertyHandlerFlags flags) { + return static_cast( + static_cast(flags) | + static_cast( + PropertyHandlerFlags::kInternalNewCallbacksSignatures)); + } + + public: + IndexedPropertyHandlerConfiguration( + IndexedPropertyGetterCallbackV2 getter, // + IndexedPropertySetterCallbackV2 setter, // + IndexedPropertyQueryCallbackV2 query, // + IndexedPropertyDeleterCallbackV2 deleter, // + IndexedPropertyEnumeratorCallback enumerator, // + IndexedPropertyDefinerCallbackV2 definer, // + IndexedPropertyDescriptorCallbackV2 descriptor, // + Local data = Local(), + PropertyHandlerFlags flags = PropertyHandlerFlags::kNone) + : getter(getter), + setter(setter), + query(query), + deleter(deleter), + enumerator(enumerator), + definer(definer), + descriptor(descriptor), + data(data), + flags(flags) {} + + explicit IndexedPropertyHandlerConfiguration( + IndexedPropertyGetterCallbackV2 getter = nullptr, + IndexedPropertySetterCallbackV2 setter = nullptr, + IndexedPropertyQueryCallbackV2 query = nullptr, + IndexedPropertyDeleterCallbackV2 deleter = nullptr, + IndexedPropertyEnumeratorCallback enumerator = nullptr, + Local data = Local(), + PropertyHandlerFlags flags = PropertyHandlerFlags::kNone) + : getter(getter), + setter(setter), + query(query), + deleter(deleter), + enumerator(enumerator), + definer(nullptr), + descriptor(nullptr), + data(data), + flags(flags) {} + + IndexedPropertyHandlerConfiguration( + IndexedPropertyGetterCallbackV2 getter, + IndexedPropertySetterCallbackV2 setter, + IndexedPropertyDescriptorCallbackV2 descriptor, + IndexedPropertyDeleterCallbackV2 deleter, + IndexedPropertyEnumeratorCallback enumerator, + IndexedPropertyDefinerCallbackV2 definer, + Local data = Local(), + PropertyHandlerFlags flags = PropertyHandlerFlags::kNone) + : getter(getter), + setter(setter), + query(nullptr), + deleter(deleter), + enumerator(enumerator), + definer(definer), + descriptor(descriptor), + data(data), + flags(flags) {} + + IndexedPropertyGetterCallbackV2 getter; + IndexedPropertySetterCallbackV2 setter; + IndexedPropertyQueryCallbackV2 query; + IndexedPropertyDeleterCallbackV2 deleter; + IndexedPropertyEnumeratorCallback enumerator; + IndexedPropertyDefinerCallbackV2 definer; + IndexedPropertyDescriptorCallbackV2 descriptor; + Local data; + PropertyHandlerFlags flags; +}; + +/** + * An ObjectTemplate is used to create objects at runtime. + * + * Properties added to an ObjectTemplate are added to each object + * created from the ObjectTemplate. + */ +class V8_EXPORT ObjectTemplate : public Template { + public: + /** Creates an ObjectTemplate. */ + static Local New( + Isolate* isolate, + Local constructor = Local()); + + /** + * Creates a new instance of this template. + * + * \param context The context in which the instance is created. + */ + V8_WARN_UNUSED_RESULT MaybeLocal NewInstance(Local context); + + /** + * Sets a named property handler on the object template. + * + * Whenever a property whose name is a string or a symbol is accessed on + * objects created from this object template, the provided callback is + * invoked instead of accessing the property directly on the JavaScript + * object. + * + * @param configuration The NamedPropertyHandlerConfiguration that defines the + * callbacks to invoke when accessing a property. + */ + void SetHandler(const NamedPropertyHandlerConfiguration& configuration); + + /** + * Sets an indexed property handler on the object template. + * + * Whenever an indexed property is accessed on objects created from + * this object template, the provided callback is invoked instead of + * accessing the property directly on the JavaScript object. + * + * @param configuration The IndexedPropertyHandlerConfiguration that defines + * the callbacks to invoke when accessing a property. + */ + void SetHandler(const IndexedPropertyHandlerConfiguration& configuration); + + /** + * Sets the callback to be used when calling instances created from + * this template as a function. If no callback is set, instances + * behave like normal JavaScript objects that cannot be called as a + * function. + */ + void SetCallAsFunctionHandler(FunctionCallback callback, + Local data = Local()); + + /** + * Mark object instances of the template as undetectable. + * + * In many ways, undetectable objects behave as though they are not + * there. They behave like 'undefined' in conditionals and when + * printed. However, properties can be accessed and called as on + * normal objects. + */ + void MarkAsUndetectable(); + + /** + * Sets access check callback on the object template and enables access + * checks. + * + * When accessing properties on instances of this object template, + * the access check callback will be called to determine whether or + * not to allow cross-context access to the properties. + */ + void SetAccessCheckCallback(AccessCheckCallback callback, + Local data = Local()); + + /** + * Like SetAccessCheckCallback but invokes an interceptor on failed access + * checks instead of looking up all-can-read properties. You can only use + * either this method or SetAccessCheckCallback, but not both at the same + * time. + */ + void SetAccessCheckCallbackAndHandler( + AccessCheckCallback callback, + const NamedPropertyHandlerConfiguration& named_handler, + const IndexedPropertyHandlerConfiguration& indexed_handler, + Local data = Local()); + + /** + * Gets the number of internal fields for objects generated from + * this template. + */ + int InternalFieldCount() const; + + /** + * Sets the number of internal fields for objects generated from + * this template. + */ + void SetInternalFieldCount(int value); + + /** + * Returns true if the object will be an immutable prototype exotic object. + */ + bool IsImmutableProto() const; + + /** + * Makes the ObjectTemplate for an immutable prototype exotic object, with an + * immutable __proto__. + */ + void SetImmutableProto(); + + /** + * Support for TC39 "dynamic code brand checks" proposal. + * + * This API allows to mark (& query) objects as "code like", which causes + * them to be treated like Strings in the context of eval and function + * constructor. + * + * Reference: https://github.com/tc39/proposal-dynamic-code-brand-checks + */ + void SetCodeLike(); + bool IsCodeLike() const; + + V8_INLINE static ObjectTemplate* Cast(Data* data); + + private: + ObjectTemplate(); + + static void CheckCast(Data* that); + friend class FunctionTemplate; +}; + +/** + * A template to create dictionary objects at runtime. + */ +class V8_EXPORT DictionaryTemplate final { + public: + /** Creates a new template. Also declares data properties that can be passed + * on instantiation of the template. Properties can only be declared on + * construction and are then immutable. The values are passed on creating the + * object via `NewInstance()`. + * + * \param names the keys that can be passed on instantiation. + */ + static Local New( + Isolate* isolate, MemorySpan names); + + /** + * Creates a new instance of this template. + * + * \param context The context used to create the dictionary object. + * \param property_values Values of properties that were declared using + * `DeclareDataProperties()`. The span only passes values and expectes the + * order to match the declaration. Non-existent properties are signaled via + * empty `MaybeLocal`s. + */ + V8_WARN_UNUSED_RESULT Local NewInstance( + Local context, MemorySpan> property_values); + + V8_INLINE static DictionaryTemplate* Cast(Data* data); + + private: + static void CheckCast(Data* that); + + DictionaryTemplate(); +}; + +/** + * A Signature specifies which receiver is valid for a function. + * + * A receiver matches a given signature if the receiver (or any of its + * hidden prototypes) was created from the signature's FunctionTemplate, or + * from a FunctionTemplate that inherits directly or indirectly from the + * signature's FunctionTemplate. + */ +class V8_EXPORT Signature : public Data { + public: + static Local New( + Isolate* isolate, + Local receiver = Local()); + + V8_INLINE static Signature* Cast(Data* data); + + private: + Signature(); + + static void CheckCast(Data* that); +}; + +// --- Implementation --- + +void Template::Set(Isolate* isolate, const char* name, Local value, + PropertyAttribute attributes) { + Set(String::NewFromUtf8(isolate, name, NewStringType::kInternalized) + .ToLocalChecked(), + value, attributes); +} + +FunctionTemplate* FunctionTemplate::Cast(Data* data) { +#ifdef V8_ENABLE_CHECKS + CheckCast(data); +#endif + return reinterpret_cast(data); +} + +ObjectTemplate* ObjectTemplate::Cast(Data* data) { +#ifdef V8_ENABLE_CHECKS + CheckCast(data); +#endif + return reinterpret_cast(data); +} + +DictionaryTemplate* DictionaryTemplate::Cast(Data* data) { +#ifdef V8_ENABLE_CHECKS + CheckCast(data); +#endif + return reinterpret_cast(data); +} + +Signature* Signature::Cast(Data* data) { +#ifdef V8_ENABLE_CHECKS + CheckCast(data); +#endif + return reinterpret_cast(data); +} + +} // namespace v8 + +#endif // INCLUDE_V8_TEMPLATE_H_ diff --git a/data_prepare/node-v24.12.0-linux-x64/include/node/v8.h b/data_prepare/node-v24.12.0-linux-x64/include/node/v8.h new file mode 100644 index 0000000000000000000000000000000000000000..cc23d207aea614fd119c397163bfa82b3542a05b --- /dev/null +++ b/data_prepare/node-v24.12.0-linux-x64/include/node/v8.h @@ -0,0 +1,88 @@ +// Copyright 2012 the V8 project authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#ifndef INCLUDE_V8_H_ +#define INCLUDE_V8_H_ + +/** \mainpage V8 API Reference Guide + * + * V8 is Google's open source JavaScript engine. + * + * This set of documents provides reference material generated from the + * V8 header files in the include/ subdirectory. + * + * For other documentation see https://v8.dev/. + */ + +#include +#include + +#include + +#include "cppgc/common.h" +#include "v8-array-buffer.h" // NOLINT(build/include_directory) +#include "v8-container.h" // NOLINT(build/include_directory) +#include "v8-context.h" // NOLINT(build/include_directory) +#include "v8-data.h" // NOLINT(build/include_directory) +#include "v8-date.h" // NOLINT(build/include_directory) +#include "v8-debug.h" // NOLINT(build/include_directory) +#include "v8-exception.h" // NOLINT(build/include_directory) +#include "v8-extension.h" // NOLINT(build/include_directory) +#include "v8-external.h" // NOLINT(build/include_directory) +#include "v8-function.h" // NOLINT(build/include_directory) +#include "v8-initialization.h" // NOLINT(build/include_directory) +#include "v8-internal.h" // NOLINT(build/include_directory) +#include "v8-isolate.h" // NOLINT(build/include_directory) +#include "v8-json.h" // NOLINT(build/include_directory) +#include "v8-local-handle.h" // NOLINT(build/include_directory) +#include "v8-locker.h" // NOLINT(build/include_directory) +#include "v8-maybe.h" // NOLINT(build/include_directory) +#include "v8-memory-span.h" // NOLINT(build/include_directory) +#include "v8-message.h" // NOLINT(build/include_directory) +#include "v8-microtask-queue.h" // NOLINT(build/include_directory) +#include "v8-microtask.h" // NOLINT(build/include_directory) +#include "v8-object.h" // NOLINT(build/include_directory) +#include "v8-persistent-handle.h" // NOLINT(build/include_directory) +#include "v8-primitive-object.h" // NOLINT(build/include_directory) +#include "v8-primitive.h" // NOLINT(build/include_directory) +#include "v8-promise.h" // NOLINT(build/include_directory) +#include "v8-proxy.h" // NOLINT(build/include_directory) +#include "v8-regexp.h" // NOLINT(build/include_directory) +#include "v8-script.h" // NOLINT(build/include_directory) +#include "v8-snapshot.h" // NOLINT(build/include_directory) +#include "v8-statistics.h" // NOLINT(build/include_directory) +#include "v8-template.h" // NOLINT(build/include_directory) +#include "v8-traced-handle.h" // NOLINT(build/include_directory) +#include "v8-typed-array.h" // NOLINT(build/include_directory) +#include "v8-unwinder.h" // NOLINT(build/include_directory) +#include "v8-value-serializer.h" // NOLINT(build/include_directory) +#include "v8-value.h" // NOLINT(build/include_directory) +#include "v8-version.h" // NOLINT(build/include_directory) +#include "v8-wasm.h" // NOLINT(build/include_directory) +#include "v8config.h" // NOLINT(build/include_directory) + +// We reserve the V8_* prefix for macros defined in V8 public API and +// assume there are no name conflicts with the embedder's code. + +/** + * The v8 JavaScript engine. + */ +namespace v8 { + +class Platform; + +/** + * \example shell.cc + * A simple shell that takes a list of expressions on the + * command-line and executes them. + */ + +/** + * \example process.cc + */ + + +} // namespace v8 + +#endif // INCLUDE_V8_H_ diff --git a/siglip-so400m-patch14-384/config.1.json b/siglip-so400m-patch14-384/config.1.json new file mode 100644 index 0000000000000000000000000000000000000000..a513b447f6b05f640f9980d25f4d8a5cff6cd25d --- /dev/null +++ b/siglip-so400m-patch14-384/config.1.json @@ -0,0 +1,25 @@ +{ + "architectures": [ + "SiglipModel" + ], + "initializer_factor": 1.0, + "model_type": "siglip", + "text_config": { + "hidden_size": 1152, + "intermediate_size": 4304, + "model_type": "siglip_text_model", + "num_attention_heads": 16, + "num_hidden_layers": 27 + }, + "torch_dtype": "float32", + "transformers_version": "4.37.0.dev0", + "vision_config": { + "hidden_size": 1152, + "image_size": 384, + "intermediate_size": 4304, + "model_type": "siglip_vision_model", + "num_attention_heads": 16, + "num_hidden_layers": 27, + "patch_size": 14 + } +} diff --git a/siglip-so400m-patch14-384/tokenizer.1.json b/siglip-so400m-patch14-384/tokenizer.1.json new file mode 100644 index 0000000000000000000000000000000000000000..6d6fd0bd6cc263099dc98e4fa383f90c9baa3521 --- /dev/null +++ b/siglip-so400m-patch14-384/tokenizer.1.json @@ -0,0 +1,128145 @@ +{ + "version": "1.0", + "truncation": null, + "padding": null, + "added_tokens": [ + { + "id": 0, + "content": "", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 1, + "content": "", + "single_word": false, + "lstrip": true, + "rstrip": true, + "normalized": false, + "special": true + }, + { + "id": 2, + "content": "", + "single_word": false, + "lstrip": true, + "rstrip": true, + "normalized": false, + "special": true + } + ], + "normalizer": { + "type": "Sequence", + "normalizers": [ + { + "type": "Lowercase" + }, + { + "type": "Replace", + "pattern": { + "Regex": "[!\"\\#\\$%\\&'\\(\\)\\*\\+,\\-\\.:;=\\?@\\[\\\\\\]\\^_`\\{\\|\\}\\~]" + }, + "content": "" + }, + { + "type": "Replace", + "pattern": { + "Regex": "\\s+" + }, + "content": " " + }, + { + "type": "Strip", + "strip_left": true, + "strip_right": true + }, + { + "type": "Precompiled", + "precompiled_charsmap": "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gAkAAIRlAAD9GwCAzNAHAMzwBwAFHACAkYkAAMxMBgDNBAYAzHAGAM10BgDMQAcAmy0PAMyoBwDNrAcAhg0AAIdVDwCEQQ8ACQsAgIIBDACDVQ8AgDUBAIHZAQCkDACAj+kAAIztAACSDACA3R0AgIv1AACIbQ8AiQ0AAA8LAIC0CwCAgiUAAE0MAICBQQAAUwwAgBUeAIANHgCAJR4AgB0eAIAtHgCABR4AgIApAACBKQAA/AsAgA0cAICEeQAAFRwAgIFNAQCAoQEAGAsAgKP9DwDMOAIAzUgDAB0cAICBWQAAzXwCAMykDQAkCwCAWQwAgKjJDwCHOQAA1wkAgImhDwADCwCAkREAAJ4MAIDaCQCAmQsAgF8MAICAuQ8AgbkPANUdAICDjQ8A9gsAgCUcAICEBQAALRwAgB4LAIA1HACAKgsAgIGdDwCHIQAAh7UPAMyoAgDN6AIAzLQMAM3cDACmzQAAp8UAAE0cAICPgQ8AjIkPAKPlAAAwCwCAPRwAgDwLAICxyQAAhwUAAFUcAIBFHACAhz0AAF0cAIBxDACANgsAgKMFDwCB+QAAzKgDAGUcAIBICwCAjEkAAKPxAABtHACAdwwAgEILAICnlQAAfRwAgHUcAIDMrAMAzcgAAN0JAICHaQAA4AkAgIG9AACCeQAA4wkAgIe5AQBOCwCAkaUAAIEdAACdHACAVAsAgIgFAAClHACAm5EAAFoLAIDmCQCAjJEBANILAIDGCwCAwAsAgMwLAICDRQAAgrkBAIG5AQCApQEAPR4AgIZxAABgCwCAhEkAAIsVAACKPQAAiTkAAIhFAACP+QAAZgsAgLoLAICMBQAAp1EBAKZJAQBlDACAsHkAAKNZAQCMqQAAgKkAAIGpAACBlQAAgJUAAK1xAQBrDACAogsAgISNAABNHgCARR4AgKMhAABdHgCAVR4AgGUeAICBbQAAgG0AALEFAQCkOQAANR4AgIUcAIBsCwCAqAUAAJUcAICNHACArQkAAMywAQCBvQMAgL0DAIPNAwCtHACAtRwAgL0cAIDMvAEAzYQBAInpAwDMHAEAgdkCAIDFAgDNOAEAzDwBAMxoAgDNRAIAg00AAMUcAICH2QAAhy0AAIBFAACBEQAAggUAAHILAIDVHACAzRwAgN0cAIDMOAIAiBUAAIjhAACAbQAAgTkAAMyEAgDNUAEA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vBkBAL0ZAQC+fQEAv3UBAKPtAQCeOwCAojsAgKY7AICqOwCApu0BAKXtAQCuOwCAq3kBAKpxAQCyOwCAtjsAgK85AQCuMQEArVUBAKxVAQC6OwCAvjsAgMI7AIDGOwCAyjsAgOGsAQDOOwCA42AGANI7AIDWOwCA2jsAgO9UBgDeOwCA4jsAgL60GgDmOwCA6jsAgO47AICGaBwAh4wDAPI7AID2OwCA+jsAgP47AICAOQAAgTkAAIIFAAACPACACjwAgA48AIASPACAFjwAgKgdAwCpQQMAqkEDAKtBAwCsQQMArUkDAK5xAwCvcQMAhCAdABo8AIAePACAIjwAgCY8AIAqPACALjwAgDI8AIC46QAAufUAALr9AAC78QAAvJEAAL2RAAC+iQAAv4kAALDhAACx4QAAsuEAALPhAAC04QAAte0AALbZAAC32QAA4wwHAOEgBwDhMAEA4wgHADY8AIA6PACAPjwAgEI8AIBGPACASjwAgE48AIBSPACA75gHAFY8AIBaPACA74gHALOJAgBePACAYjwAgL6AGgBmPACAtokCALWJAgBqPACAu2UBALplAQBuPACAcjwAgL9pAQC+ZQEAvXUBALx1AQC3PQYAtj0GALU9BgC0IQYAszUGALI1BgCxAQYAsAkGAL9ZBgC+UQYAvVkGALxNBgC7bQYAunkGALlxBgC4eQYAgJ0AAIGtAACCpQAAejwAgH48AICCPACAhjwAgIo8AICvcQYArmkGAK1tBgCsbQYAq4EGAKqZBgCpkQYAqJkGAAY8AIB2PACAjjwAgKPFHQCSPACApcUdAKbFHQCWPACAhgADAIdkAwCqKR4AqykeAKw5HgCtOR4ArikeAK8lHgCzOR4AmjwAgJ48AICiPACApjwAgLb9HgC1/R4AqjwAgLvZHgC60R4ArjwAgLI8AIC/aR8AvmEfAL1pHwC8wR4AqPEeAKnxHgCq8R4Aq/EeAKw1HgCtPR4ArjUeAK8tHgC2PACAujwAgL48AIDCPACAxjwAgMo8AIDOPACA0jwAgLjlHwC57R8AuuUfALv5HwC86R8AvZEfAL6RHwC/jR8AsFUeALFdHgCyVR4As/0fALTlHwC17R8AtuUfALfdHwCjeR8A1jwAgNo8AIDePACA4jwAgKa9HwClvR8A5jwAgKuZHwCqkR8AhogAAIdMAQCvKR4AriEeAK0pHgCsgR8AgEkAAIFJAACCWQAAs5keAOo8AIC1iR4AtlEBAO48AIDyPACA9jwAgLotAQC7JQEAvD0BAL0lAQC+JQEAvxUBAKhNHgCpVR4Aql0eAKtVHgCsTR4ArZ0BAK6JAQCvgQEAhKwBAPo8AID+PACAAj0AgAY9AIAKPQCADj0AgBI9AIC4ZQEAuW0BALplAQC7fQEAvGUBAL1tAQC+ZQEAv9kAALClAQCxrQEAsqUBALO9AQC0rQEAtZ0BALaVAQC3XQEAo9UdABY9AIAaPQCAHj0AgCI9AICmHQIApcUdACY9AICraQIAqmECACo9AIAuPQCAr1kCAK5pAgCtaQIArHECADI9AIA2PQCAOj0AgD49AIBCPQCARj0AgEo9AIBOPQCAgDkAAIE5AACCBQAAUj0AgFo9AIBePQCAh0ADAIZcBACETAQAYj0AgGY9AICEBAUA4yABAGo9AIDhqAEAbj0AgO+UGgByPQCAdj0AgHo9AIB+PQCAgj0AgIY9AICKPQCAs6EDAI49AICSPQCAlj0AgJo9AIC2fQMAtX0DAJ49AIC7WQMAulEDAKI9AICmPQCAv/0AAL79AAC9/QAAvEEDAKhRAgCpWQIAqmkCAKtpAgCstQIArb0CAK61AgCvrQIAhKgHAKo9AICuPQCAsj0AgIKpAAC2PQCAgKkAAIGpAAC4aQEAuWkBALoJAQC7CQEAvBkBAL0ZAQC+CQEAvwkBALDVAgCx3QIAstUCALNpAQC0eQEAtXkBALZpAQC3YQEA4bgBAOHUHwDjOB8A4wwbALo9AIC+PQCAwj0AgMo9AIDOPQCA0j0AgNY9AIDaPQCAvjwJAN49AIDvhBsA74QbAKOhAgDiPQCAhugEAIe8BQDmPQCApn0CAKV9AgDqPQCAq1kCAKpRAgDuPQCA8j0AgK/9AQCu/QEArf0BAKxBAgCzhQYAxj0AgPY9AID6PQCA/j0AgLaJBgC1jQYAAj4AgLuRBgC6iQYABj4AgAo+AIC/9QYAvokGAL2BBgC8iQYADj4AgBI+AIAWPgCAGj4AgB4+AIAiPgCAJj4AgO+EHQAqPgCA4QAEAC4+AIDj/AQAgBEAAIEdAACCBQAAMj4AgKjxBgCp8QYAqg0GAKsFBgCsBQYArQkGAK49BgCvNQYANj4AgDo+AICGiAAAhxADAD4+AIBCPgCA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GkUAgB5FAIAiRQCAJkUAgIANAACBFQAAgh0AACpFAIAuRQCAMkUAgIR4AQC+FAAA4xQPADpFAIDh4A0AhAADAIawBACHFAMAPkUAgEJFAIBGRQCASkUAgE5FAIBSRQCA78APAFZFAIBaRQCAXkUAgGJFAIBmRQCAakUAgLNtAwBuRQCAtX0DALZ1AwByRQCAdkUAgHpFAIC6UQMAu1EDALz1AwC9/QMAvukDAL/hAwB+RQCAgkUAgIZFAICKRQCAjkUAgJJFAICWRQCAmkUAgKhxAgCpeQIAqokDAKuJAwCsmQMArZkDAK6JAwCviQMAsPkDALH5AwCyTQMAs0UDALRBAwC1SQMAtnEDALdxAwC4IQMAuSEDALohAwC7IQMAvCEDAL0hAwC+IQMAvyEDAICdAQCBEQAAghEAAIQEBQDvFAAAnkUAgKJFAIC+EAUA48gAAKpFAIDh0AEArkUAgLJFAIC2RQCAukUAgL5FAICqeQIAq3kCAIboBACHYAUArsECAK/JAgCs3QIArdUCAMJFAICjRQIAxkUAgMpFAICmXQIAzkUAgNJFAIClVQIA1kUAgNpFAIDeRQCA4kUAgOZFAIDqRQCA7kUAgO+EDgC+rAQA4dAOAPJFAIDjFAEA9kUAgPpFAID+RQCAAkYAgLPdAQAGRgCACkYAgA5GAIASRgCAtv0BALX9AQAaRgCAu90BALrdAQCE4AQAHkYAgL+hAQC+vQEAvb0BALy9AQCoBQYAqR0GAKoVBgCrLQYArDUGAK09BgCuNQYArykGAKZFAICC9QcAgeUHAIDlBwAWRgCAIkYAgIYcAACHsAMAuCUGALnFBgC6zQYAu8UGALzdBgC9xQYAvs0GAL/FBgCwWQYAsVkGALIpBgCzKQYAtDkGALUlBgC2JQYAtx0GAKOdBgAmRgCAKkYAgC5GAIAyRgCApr0GAKW9BgA2RgCAq50GAKqdBgA6RgCAPkYAgK/hBgCu/QYArf0GAKz9BgBCRgCAs/UHAEZGAIBKRgCAtu0HAE5GAIBSRgCAteUHALqNBwC7kQcAVkYAgFpGAIC+dQcAv30HALyBBwC9fQcAqCUGAKkpBgCqOQYAqzkGAKwpBgCtKQYArnkGAK91BgBeRgCAYkYAgGZGAIBqRgCAbkYAgHJGAIB2RgCAekYAgLjVBgC53QYAuuEGALv9BgC85QYAve0GAL7lBgC/mQYAsA0GALERBgCyEQYAs+0GALT1BgC1/QYAtvUGALftBgCjsQYAgi0AAIEVAACAsQAANkUAgKapBgCloQYAfkYAgKvVBgCqyQYAgkYAgL5oAQCvOQYArjEGAK05BgCsxQYAikYAgLPxAQCGaAAAh3wBALZdAQCORgCAkkYAgLVVAQC6SQEAu0kBAJZGAICaRgCAvj0BAL8hAQC8OQEAvTUBAJ5GAICiRgCAhAQDAL6AHACmRgCA4RwGAKpGAIDjAAYAvwguAK5GAICyRgCA78gHALZGAIC6RgCAvkYAgMJGAIDGRgCAykYAgKN9AgDORgCApdkCANJGAIDWRgCAptECANpGAIDeRgCAq8UCAKrFAgCtuQIArLUCAK+tAgCusQIAqW0FAKhZBQCrDQIAqrkCAK0dAgCsHQIArwUCAK4NAgC+aB0A4kYAgOZGAIDqRgCAgB0AAIEJAACCmQEA7kYAgLnhAwC4KQIAu+EDALrpAwC94QMAvPkDAL/hAwC+6QMAsU0CALBNAgCzIQIAsi0CALUlAgC0OQIAtxECALYlAgCowQIAqdECAKrRAgCr5QIArP0CAK0VAQCuHQEArw0BAPJGAID6RgCA/kYAgAJHAIAGRwCACkcAgA5HAIASRwCAuAUBALkJAQC6HQEAuxUBALwxAQC9MQEAvv0BAL/1AQCweQEAsUEBALJBAQCzXQEAtEUBALVNAQC2RQEAtz0BAIagHQCHxB0AFkcAgO/YAAAaRwCAHkcAgCJHAIDvxAYAhGwcAOH0BgAmRwCA47AGACpHAIDhlAEALkcAgONEBgCzGQIAMkcAgDZHAIA6RwCAhewsALbVAQC1NQIAPkcAgLvFAQC6/QEAQkcAgEZHAIC/yQEAvsEBAL3JAQC81QEAo9kdAPZGAIBKRwCATkcAgFJHAICmFR4ApfUdAFZHAICrBR4Aqj0eAFpHAIBeRwCArwkeAK4BHgCtCR4ArBUeAIBpAACBaQAAggUAAGJHAIBmRwCAakcAgIcQAwCGfAMAbkcAgHJHAIB2RwCAekcAgH5HAICCRwCAhkcAgIpHAICopR8Aqa0fAKqlHwCrvR8ArKUfAK2tHwCupR8ArxUfAI5HAICSRwCAlkcAgJpHAICeRwCAokcAgKZHAICqRwCAuA0fALkZHwC6IR8AuyEfALzZAAC92QAAvskAAL/BAACwcR8AsXEfALJxHwCzRR8AtEEfALVNHwC2PR8AtzUfALMtHgCuRwCAskcAgLZHAIC6RwCAti0eALUtHgC+RwCAu7UeALq1HgDCRwCAxkcAgL+JHgC+hR4AvZEeALylHgCCKQAAo2keAIAdAACBFQAApmkeAMpHAIDORwCApWkeAKrxHgCr8R4A0kcAgITgAQCuwR4Ar80eAKzhHgCt1R4AqNUBAKnlAQCq7QEAq+UBAKz9AQCt5QEAru0BAK/lAQC+oAEAhkYAgNZHAIDaRwCAhhAAAId0AQDeRwCA4kcAgLh9AQC5wQAAusEAALvBAAC8wQAAvckAAL7xAAC/8QAAsJ0BALFFAQCyTQEAs0UBALRdAQC1RQEAtk0BALdFAQDmRwCA6kcAgO5HAIDyRwCA9kcAgO80AgDv7B4A+kcAgOHwHQDj4AIA4zAeAOGEAQD+RwCAAkgAgAZIAIAKSACAsyUCAJQAAAAOSACAEkgAgBZIAIC2JQIAtTUCABpIAIC7wQIAuhkCAB5IAIAiSACAv8ECAL7ZAgC90QIAvNkCACZIAIAqSACALkgAgKPpAgAySACApfkCAKbpAgA2SACAOkgAgD5IAICq1QIAqw0CAKwVAgCtHQIArhUCAK8NAgCAYQAAgWEAAIIFAABCSACASkgAgIQABAC+FAQATkgAgIbABACHUAMAUkgAgFZIAIBaSACAXkgAgGJIAIBmSACAqK0CAKm9AgCqtQIAqw0BAKwVAQCtHQEArhUBAK8NAQCE7AQAakgAgG5IAIBySACAdkgAgHpIAIB+SACAgkgAgLgdAQC5LQEAuiUBALvNAQC81QEAvd0BAL7JAQC/wQEAsH0BALFVAQCyXQEAs1UBALRNAQC1PQEAtjUBALctAQDhGB4AhkgAgOM4HgCKSACAjkgAgJJIAICWSACAmkgAgJ5IAICiSACAvmAEAKZIAICBdQAAgHUAAO/gHwCCbQAAqkgAgK5IAICG6AQAh3wFALJIAIDhkAEAukgAgOOgAAC+SACAwkgAgMZIAIDvtAAAykgAgM5IAIDSSACA1kgAgLUFBgBGSACAtkgAgLYFBgDaSACA3kgAgLOlBQDiSACAvRkGALwRBgC/YQYAvhEGAOZIAIDqSACAuwkGALohBgCj/QUA7kgAgPJIAID2SACA+kgAgKZdBgClXQYA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sY0CALKFAgCzbQEAtHkBALV5AQC2aQEAt2kBAIYgBACHCAUAYksAgGZLAIBqSwCAbksAgHJLAIDvXAAAhOwEAOFcDgB2SwCA44wOAHpLAIB+SwCAgksAgIZLAICjVQIAiksAgI5LAICSSwCAlksAgKYdAgClHQIAmksAgKsJAgCqOQIAnksAgKJLAICv/QEArv0BAK35AQCsEQIAqGkGAKlpBgCqeQYAq3kGAKxpBgCtaQYArp0GAK+VBgBWSwCApksAgKpLAICuSwCAsksAgLZLAIC6SwCAvksAgLj1BgC5+QYAuo0GALuFBgC8nQYAvYUGAL6FBgC/tQYAsO0GALH1BgCy/QYAs/UGALTtBgC10QYAttEGALfRBgCz8QYAghUAAIG1AACAtQAAwksAgLbpBgC14QYAvtQDALsxBgC6KQYAxksAgMpLAIC/FQYAvikGAL0hBgC8KQYAzksAgKO1BgCGyAAAh8gAAKatBgDSSwCA1ksAgKWlBgCqbQYAq3UGANpLAIDeSwCArm0GAK9RBgCsbQYArWUGAKg1BgCpOQYAqoEGAKuBBgCsgQYArYEGAK6BBgCvtQYA4ksAgOZLAIDqSwCA7ksAgPJLAID2SwCA+ksAgP5LAIC4nQYAua0GALqlBgC7aQEAvHkBAL15AQC+aQEAv2kBALDRBgCx0QYAstEGALPRBgC0tQYAtb0GALa1BgC3rQYAswkGAAJMAIAGTACACkwAgA5MAIC2AQYAtQkGABJMAIC7FQYAuhUGABZMAIAaTACAv3kGAL5xBgC9BQYAvAUGAB5MAICjTQYAIkwAgOZKAICmRQYAJkwAgCpMAIClTQYAqlEGAKtRBgAuTACAMkwAgK41BgCvPQYArEEGAK1BBgCB6QMAgN0DAISIAwCC4QMAhrA8AIeIAgC+VAMAOkwAgD5MAIBCTACARkwAgEpMAIBOTACAUkwAgFZMAIBaTACA4/AGAF5MAIDhMAYAhAA8AGJMAIBmTACAakwAgG5MAIByTACAhTQ9AHZMAIB6TACA77AHAH5MAICCTACAhkwAgIpMAICOTACAkkwAgL7EPACWTACAgp0BAIGdAQCAnQEAqA0CAKllAgCqfQIAq3UCAKxZAgCtWQIArpkDAK+ZAwCw6QMAsekDALL5AwCz+QMAtOkDALXpAwC2XQMAt1UDALhtAwC5dQMA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t/0eALO5HgBeUgCAYlIAgGZSAIBqUgCAtsUeALXVHgBuUgCAu8EeALr5HgByUgCAdlIAgL/FHgC+2R4AvdEeALzZHgB6UgCAo/0eAH5SAICCUgCApoEeAIZSAICKUgCApZEeAKq9HgCrhR4AjlIAgJJSAICunR4Ar4EeAKydHgCtlR4AqCkeAKkpHgCqVR4Aq20eAKx1HgCtfR4ArnUeAK9pHgCWUgCAmlIAgJ5SAICiUgCAplIAgKpSAICuUgCAslIAgLjpHgC59R4Auv0eALv1HgC87R4AvZEeAL6RHgC/kR4AsB0eALHlHgCy7R4As+UeALT9HgC15R4Atu0eALflHgCz3R4AtlIAgLpSAIC+UgCAwlIAgLb9HgC1/R4AhFgBALshHgC62R4AvigAAMpSAIC/IR4AvjkeAL0xHgC8OR4AgU0AAIBNAACjlR4Agl0AAKW1HgDGUgCAzlIAgKa1HgB2UQCA0lIAgKtpHgCqkR4ArXkeAKxxHgCvaR4ArnEeAIYABACHRAMAs4ECANZSAIC1gQIA2lIAgN5SAIC2gQIAiAAAAOJSAIC74QIAuu0CAL3lAgC8+QIAv9ECAL7lAgDmUgCA6lIAgIREAwC+jAMA4UgCAO5SAIDjAAIA7/wfAPJSAIDhPB4A79wCAONgHwD2UgCA+lIAgP5SAIACUwCAqQUCAKixAgCrBQIAqgUCAK0NAgCsBQIArzUCAK41AgCEbAUABlMAgApTAIAOUwCAElMAgBZTAIAaUwCAHlMAgLnpAwC44QMAu/kDALrhAwC96QMAvOEDAL9dAwC+4QMAsSkCALAlAgCzPQIAsiECALUZAgC0LQIAt9kDALYRAgAiUwCAJlMAgCpTAICjhQMALlMAgKWFAwCmhQMAMlMAgDpTAIA+UwCAqukDAKvlAwCs/QMAreEDAK7hAwCv1QMAgEkAAIFVAACCVQAAo6kCAL6YBAClQQEApkEBAEJTAICG4AUAh+AFAKotAQCrOQEArBEBAK0FAQCuDQEArwUBAEZTAIBKUwCATlMAgO/cAABSUwCAVlMAgFpTAIDviB4AhCwHAOHsHgBeUwCA4xweAGJTAIDhlAEAZlMAgOMwAACzJQIAhWDmAGpTAIBuUwCAclMAgLbNAQC1zQEAdlMAgLu1AQC6oQEAelMAgH5TAIC/iQEAvoEBAL2JAQC8nQEA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qoECAKuBAgCsgQIArYECAK6FAgCvHQEAAlYAgAZWAIAKVgCADlYAgBJWAIAWVgCAGlYAgIS4BQC4dQEAuX0BALp1AQC7CQEAvBkBAL0ZAQC+CQEAvwEBALBlAQCxbQEAsmUBALN9AQC0aQEAtV0BALZVAQC3TQEAHlYAgCJWAIAmVgCAKlYAgC5WAIAyVgCA7zQAAO/ADgDhXA4A4UwPAOOUAADjnA4ANlYAgIJlAACBfQAAgH0AADpWAIA+VgCAvsQHALNFAgBCVgCAtUUCALZNAgBKVgCAhkAGAIeQBAC67QEAu+UBALz9AQC95QEAvuEBAL/VAQCflQgAngUIAJ3dDQCcPQwAmzEMAJr1DQCZ7RAAmD0QAJfVEQCWsRUAlQUUAJTlFQCTtRkAkjEYAJE5GACQDRwAj2EcANZVAICz1QYATlYAgLX9BgBGVgCAUlYAgLaRBgBWVgCAWlYAgLuVBgC6lQYAvVUHALxVBwC/VQcAvlUHAF5WAIBiVgCAqo0GAKuFBgCsnQYArYUGAK6BBgCvtQYAhKgAAGZWAIBqVgCAoyUFAG5WAIClJQUApi0FAHJWAIB2VgCAelYAgH5WAICCVgCAhlYAgIpWAICOVgCAklYAgJZWAICaVgCAnlYAgKJWAICjqQUAotEEAKHZBACgZQUAgiEdAIM1HQCmVgCAqlYAgIaVGACH3RQAhBkZAIUZGQCKDRUAi7EUAK5WAICyVgCAjsURAI/VDACMzRAAjR0RAJJhDQCTdQ0AvkwAALpWAICWxQkAl80EAJSNDACVXQkAmkEFAJtBBQCGyP8Ah0wAAIFZAACAeQAAnCEEAIJRAAChxQEAvlYAgKMB/ACi2QEApRX9AKS1/QCnufkApgH4AKkJ+AColfkAqwX1AKqt9QCtsfEArAHwAK8d8ACurfEAseHtALAB7ACzAegAsv3sALVd6QC09ekAwlYAgMZWAIDKVgCAzlYAgNJWAIDWVgCA2lYAgN5WAIDiVgCA5lYAgKiNBACplQQAqpUEAKulBACsvQQArdkEAK75BACv8QQAhGz8AOpWAIDuVgCA8lYAgPZWAID6VgCA/lYAgAJXAIC4eQUAucUFALrNBQC7xQUAvN0FAL3FBQC+zQUAv+0FALCZBACxmQQAskkFALNJBQC0WQUAtVkFALZJBQC3SQUAox0EAL7M/AAGVwCAClcAgA5XAICmWQQApTUEABJXAICrXQQAql0EABZXAIAaVwCAr50FAK6dBQCtnQUArJ0FAB5XAICznQIAIlcAgCpXAIC2UQIALlcAgDJXAIC1uQIAukkCALtVAgCGSP0Ah8D8AL41AgC/PQIAvEUCAL09AgCo3QQAqUkDAKpRAwCrbQMArHUDAK2VAwCunQMAr7kDAICNAQCB5QEAguEBADZXAIA6VwCAPlcAgEJXAIBGVwCAuJUDALmdAwC6lQMAu60DALy1AwC9vQMAvrUDAL9VAgCwyQMAsdUDALLVAwCzrQMAtLUDALW9AwC2tQMAt60DAEpXAIBOVwCAo9EDAFJXAICl9QMAVlcAgFpXAICmHQMAXlcAgGJXAICrGQMAqgUDAK1xAwCsCQMAr3EDAK55AwDhKAcAZlcAgOPkBgBqVwCA4SgGAG5XAIDjaAEAclcAgHZXAIB6VwCA71gAAH5XAICCVwCAhlcAgO/IBgCKVwCAqE39AKmB/QCq0f0Aq9H9AKzx/QCt8f0ArvH9AK/x/QAmVwCAghEAAIEZAACA0f8AjlcAgJJXAICEdAMAvnQDALh1/gC5ff4AunX+ALvF/gC83f4AvcX+AL7F/gC/9f4AsJH9ALGR/QCykf0As5H9ALRV/gC1Xf4AtlX+ALdN/gCzWf0AllcAgIasAACHRAMAmlcAgLZx/QC1ef0AnlcAgLtV/QC6Vf0AolcAgKZXAIC/mf4AvpH+AL1F/QC8Rf0AqlcAgKMd/QCuVwCAslcAgKY1/QC2VwCAulcAgKU9/QCqEf0AqxH9AL5XAIDCVwCArtX+AK/d/gCsAf0ArQH9AKjN/wCp0f8AqtH/AKsh/gCsIf4ArSH+AK4h/gCvIf4AxlcAgMpXAIDOVwCA0lcAgNZXAIDaVwCA3lcAgOJXAIC4jf4AuZH+ALqV/gC7rf4AvLX+AL25/gC+qf4Av6n+ALDh/gCx4f4AsuX+ALP5/gC06f4AtdX+ALbd/gC3uf4As1n/AOZXAIC2VgCA6lcAgO5XAIC2of4Atan+APJXAIC7Jf4AuiX+APZXAID6VwCAvxH+AL4t/gC9Lf4AvDH+AIIZAACjHf8AgGUAAIEZAACm5f4A/lcAgAJYAICl7f4AqmH+AKth/gCEZAEAviAAAK5p/gCvVf4ArHX+AK1p/gAKWACA4zT+AA5YAIDhfP0AhrAEAIcIAwASWACAFlgAgBpYAIAeWACAhCQDAIQkBAAiWACA70j+ACZYAIAqWACAs+kCAC5YAIC+RAQAvkAFADJYAIC2nQIAtZkCADZYAIC7iQIAur0CADpYAIA+WACAv1kDAL5RAwC9WQMAvJECAKkdAgCoFQIAqyUCAKolAgCtWQIArFUCAK9NAgCuUQIAvmQGAEJYAIBGWACASlgAgE5YAIBSWACAVlgAgFpYAIC5+QMAuPEDALtNAwC68QMAvUEDALxZAwC/cQMAvkEDALEJAgCwPQIAs8kDALIBAgC12QMAtNEDALfJAwC20QMA4ZABAF5YAIDj8AAAYlgAgGZYAICCPQAAgT0AAIA9AABqWACAblgAgHJYAIB6WACAflgAgIJYAIDvLAAAhlgAgKPpAwCKWACAhugEAIdgBQCOWACApp0DAKWZAwCSWACAq4kDAKq9AwCWWACAmlgAgK9ZAgCuUQIArVkCAKyRAwCeWACAolgAgKZYAICqWACArlgAgLJYAIC2WACA71gBAISgBADhVP8AulgAgOOEAQC+WACAwlgAgMZYAIDKWACAs9kBAM5YAICFzBkA0lgAgNZYAIC28QEAtfkBANpYAIC7pQEAutkBAN5YAIDiWACAv50BAL6dAQC9pQEAvK0BAKgBBgCpDQYAqhEGAKsRBgCsMQYArTEGAK4pBgCvJQYAdlgAgILJBwCBwQcAgPEHAOZYAIDqWACAhhwAAIf8AwC47QYAufUGALr9BgC79QYAvO0GAL1RBwC+VQcAv00HALBdBgCxIQYAsjkGALMxBgC0GQYAtRkGALbdBgC31QYAo5kGAO5YAIDyWACA9lgAgPpYAICmsQYApbkGAP5YAICr5QYAqpkGAAJZAIAGWQCAr90GAK7dBgCt5QYArO0GAApZAICz8QcADlkAgBJZAIC2gQcAFlkAgBpZAIC1mQcAuo0HALtlBwAeWQCAIlkAgL59BwC/ZQcAvH0HAL11BwCoLQYAqTUGAKo9BgCrMQYArFUGAK1FBgCuRQYAr3UGACZZAIAqWQCALlkAgDJZAIA2WQCAOlkAgD5ZAIBCWQCAuOkGALn1BgC6/QYAu/UGALztBgC9kQYAvpUGAL+NBgCwDQYAseUGALLtBgCz5QYAtP0GALXlBgC27QYAt+UGAKO1BgBGWQCASlkAgE5ZAIBSWQCA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nlsAgLshBwC6yQcAolsAgKZbAIC/KQcAviEHAL0pBwC8NQcAqlsAgKOBBwCuWwCAslsAgKaBBwC2WwCAulsAgKWRBwCqjQcAq2UHAL5bAIDCWwCArmUHAK9tBwCscQcArW0HAKgVAQCpgQEAqoEBAKuBAQCsgQEArYkBAK6xAQCvsQEAxlsAgMpbAIDOWwCA0lsAgNZbAIDaWwCA3lsAgOJbAIC4ZQAAuW0AALplAAC7fQAAvGUAAL1tAAC+ZQAAv90AALChAQCxrQEAsqUBALO5AQC0qQEAtZ0BALaVAQC3XQAA5lsAgIIdAACBHQAAgB0AAOpbAIDuWwCA8lsAgL5YAQCErAIA9lsAgIcIAQCGjAEA+lsAgKZaAID+WwCAAlwAgLNJAQAGXACAClwAgA5cAIASXACAtkkBALVJAQAWXACAuykBALolAQAaXACAHlwAgL8ZAQC+LQEAvS0BALwxAQC+2AMAIlwAgO/4BgAmXACAKlwAgC5cAIDv4AIAMlwAgOGUAQA2XACA43QCADpcAIDhmAUAPlwAgOMMBwBCXACARlwAgEpcAICjwQIAhIwDAKXBAgBOXACAUlwAgKbBAgBWXACAWlwAgKuhAgCqrQIAraUCAKy5AgCvkQIArqUCAKgxAwCpPQMAqjUDAKtJAwCsWQMArVkDAK5JAwCvQQMAgMUAAIEJAACCGQAAXlwAgGJcAIBqXACAh2wDAIYcHAC47QAAufEAALr1AAC7jQAAvJUAAL2BAAC+gQAAv70AALAJAwCxCQMAsu0AALPhAAC04QAAteEAALblAAC32QAAblwAgHJcAIB2XACAs7ECAHpcAIC13QIAttUCAH5cAICCXACAhlwAgLrBAgC7wQIAvDUBAL05AQC+KQEAvykBAKaNAgCKXACAjlwAgKWFAgCSXACAo+kCAJZcAICaXACArnEBAK9xAQCsbQEArWEBAKqZAgCrmQIAnlwAgKJcAICmXACA4YQGAKpcAIDjJAYArlwAgOGUAQCyXACA4ywAAL7oHQC2XACAulwAgO/IAACE/B0AvvAcAL5cAIDvSAcAwlwAgMZcAIDKXACAzlwAgIEdAACAHQAA0lwAgIIFAACGQBwAh8QcANpcAIDeXACA4lwAgOZcAIDqXACA7lwAgKi1HgCpBR8Aqg0fAKsFHwCsAR8ArQkfAK45HwCvOR8A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rmU+AK1xPgCsAT4A0mIAgNZiAIDaYgCA3mIAgOJiAIDmYgCA6mIAgO5iAICAOQAAgTkAAIIFAADyYgCAvrgBAIS4AQD6YgCA/mIAgKitAgCp1QIAqtUCAKstAwCsNQMArT0DAK41AwCvLQMAAmMAgAZjAIAKYwCADmMAgBJjAIAWYwCAGmMAgB5jAIC46QMAuekDALqJAwC7iQMAvJkDAL2ZAwC+iQMAv4kDALBVAwCxXQMAslUDALPpAwC0+QMAtfkDALbpAwC34QMAs10CACJjAICGKAQAh8wDACZjAIC2vQMAtb0DACpjAIC7mQMAupEDAC5jAIAyYwCAvz0DAL49AwC9PQMAvIEDAIUAFACjGQIANmMAgDpjAICm+QMAPmMAgEJjAICl+QMAqtUDAKvdAwBGYwCASmMAgK55AwCveQMArMUDAK15AwDjVD4A4dw/AOHQPgDjPD4ATmMAgO8cAABSYwCAVmMAgFpjAIDjwAAAXmMAgOHUAQDvYD4AYmMAgGpjAIDvRD8AgGEAAIFtAACCfQAAhAAFAIbwBACHnAUAvhAFAG5jAIByYwCAdmMAgHpjAIB+YwCAgmMAgIZjAICKYwCAjmMAgLiJPQC5iT0Aupk9ALuRPQC8uT0Avbk9AL7RPQC/0T0AsAU+ALENPgCyBT4Asx0+ALQFPgC1DT4AtgU+ALe5PQConT4Aqa0+AKqlPgCrvT4ArKU+AK2tPgCupT4Ar30+AISsBAC+rAQAkmMAgJZjAICaYwCAnmMAgKJjAICmYwCAqPkFAKn5BQCqKQYAqykGAKw5BgCtOQYArikGAK8pBgBmYwCAqmMAgK5jAICyYwCAtmMAgLpjAIC+YwCAwmMAgLiNBgC5kQYAupEGALulBgC8vQYAvUUHAL5BBwC/QQcAsFkGALFZBgCy7QYAs/0GALTtBgC13QYAttUGALe1BgCzoQYAxmMAgMpjAIDOYwCA0mMAgLa5BgC1sQYA2mMAgLudBgC6nQYA1mMAgPZiAIC/GQYAvikGAL0pBgC8OQYAglEAAKPlBgCAQQAAgUEAAKb9BgDeYwCA4mMAgKX1BgCq2QYAq9kGAIZIAACHbAAArm0GAK9dBgCsfQYArW0GAKg5BgCpWQYAqmkGAKtpBgCseQYArXkGAK5pBgCvaQYA5mMAgOpjAIDuYwCA8mMAgPZjAID6YwCA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uNEGALnZBgC64QYAu+EGALyRBgC9nQYAvpUGAL+JBgCwSQYAsUkGALJdBgCzVQYAtE0GALXxBgC28QYAt/EGALDhBwCx4QcAsgkHALMJBwC0GQcAtRkHALYJBwC3CQcAuDkHALkNBwC6GQcAuxkHALwJBwC9CQcAvn0HAL9xBwCCZgCAlmUAgIZmAICKZgCAjmYAgJJmAICWZgCAmmYAgKjxBwCpxQcAqsEHAKvdBwCsyQcArb0HAK6pBwCvoQcAsykGAJ5mAICiZgCApmYAgKpmAIC2XQYAtSEGAK5mAIC7RQYAukUGALJmAIC2ZgCAv70GAL69BgC9vQYAvL0GALpmAICjbQYAvmYAgMJmAICmGQYAxmYAgMpmAIClZQYAqgEGAKsBBgDOZgCA0mYAgK75BgCv+QYArPkGAK35BgCobQYAqbEBAKpJAQCrRQEArF0BAK1FAQCuTQEAr0UBANZmAICCHQAAgR0AAIAdAADaZgCA3mYAgOJmAIC+VAEAuIEAALmNAAC6hQAAu5kAALyJAAC9vQAAvrUAAL99AACwPQEAseEAALLhAACz4QAAtOEAALXpAAC20QAAt9EAALsFAwC62QIAhiwCAIcsAwC/DQMAvgUDAL0VAwC8FQMAs+ECAOpmAIDuZgCAhCwDAPJmAIC25QIAtfUCAPZmAICqnQIAq0EDAPpmAID+ZgCArkEDAK9JAwCsUQMArVEDAAJnAICjpQIABmcAgApnAICmoQIADmcAgBJnAIClsQIAqakAAKihAACrtQAAqr0AAK3dAACs3QAAr/EAAK79AAC+LBwAFmcAgBpnAIAeZwCAImcAgCZnAIAqZwCALmcAgLl9AAC4fQAAu80BALrNAQC93QEAvN0BAL/NAQC+zQEAsZUAALCJAACzTQAAspUAALVdAAC0XQAAt00AALZNAAAyZwCANmcAgDpnAIA+ZwCAQmcAgEZnAIBKZwCATmcAgIA5AACBOQAAggUAAFJnAIBaZwCAXmcAgIf4AgCGfB0A4bgEAL7IHADjQAYAYmcAgGZnAIBqZwCAbmcAgHJnAIB2ZwCAemcAgH5nAICCZwCAhmcAgIpnAIDvsAcAjmcAgJJnAICWZwCAmmcAgO/IAACeZwCAomcAgKZnAIDvQAYAqmcAgOH8BgCuZwCA4xwGALJnAIDhlAEAtmcAgONkBgCAEQAAgRkAAIIpAACz/QEAumcAgLWdAQC2lQEAvmcAgMJnAICEbB0AuoUBALuZAQC8iQEAvVEBAL5RAQC/UQEAozEeAFZnAIDGZwCAymcAgM5nAICmWR4ApVEeANJnAICrVR4AqkkeAIYIAwCHbAMAr50eAK6dHgCtnR4ArEUeANZnAICzCR8A2mcAgN5nAIC2CR8A4mcAgOZnAIC1CR8AugUfALsNHwDqZwCA7mcAgL4FHwC/CR8AvBUfAL0NHwCw5R8Ase0fALLlHwCz/R8AtOUfALXpHwC2GR8AtxkfALgpHwC5NR8Auj0fALs1HwC8ER8AvR0fAL4JHwC/BR8A8mcAgPZnAIDmZgCA+mcAgP5nAIACaACABmgAgApoAICo0R8AqdEfAKqlHwCrvR8ArKUfAK2tHwCupR8Ar50fAKNNHgAOaACAEmgAgBZoAIAaaACApk0eAKVNHgAeaACAq0keAKpBHgAiaACAJmgAgK9NHgCuQR4ArUkeAKxRHgCADQAAgRUAAIIdAAAqaACALmgAgDJoAICEtAEAvrQBAL/oAQA6aACAhkgHAIc0AACEvAYAPmgAgEJoAIC+tAYAqI0BAKmVAQCqlQEAq80BAKzZAQCt2QEArs0BAK/FAQBGaACASmgAgE5oAIBSaACAVmgAgFpoAIBeaACAYmgAgLgdAQC5wQAAusEAALvBAAC8wQAAvckAAL7xAAC/8QAAsIkBALGJAQCyKQEAsykBALQ9AQC1JQEAti0BALclAQC7bQIAum0CAGZoAIBqaACAv8ECAL7ZAgC93QIAvN0CALM9AgBuaACAcmgAgHZoAICE/AYAtnkCALVxAgB6aACAqikCAKspAgB+aACAgmgAgK6dAgCvhQIArJkCAK2ZAgCGaACAo3kCAIpoAICOaACApj0CAJJoAICWaACApTUCAIJtJwCDjSoAhqgFAIdsAwCGmS4Ah80vAIQRLgCFmS4AiiESAIspEgCaaACAnmgAgI6RFgCPHRYAjBESAI0RFgCScRoAk+UaAKJoAIDvlHYAlvEeAJflHgCUSRoAlRkeAJopAgCb4QIAqmgAgK5oAICyaACA4SASAJzxAgDjIBYAnyEfAJ7BHwCdmRsAnC0bAJuhGwCavRcAmTkXAJixFwCXiRMAlqkTAJWpEwCUdS4AkzkvAJIxLwCRsS8AkDUrAI+tJgDjeB8A0gAAAOFcHwCCmQEAtmgAgIDxAQCB8QEAvqgHALpoAIC+aACAwmgAgIS8BgDvLB8AxmgAgMpoAIDhpB4A48wAAON8HgDhvAEAzmgAgNJoAIDWaACAhJwGANpoAIC+bAYA3mgAgOJoAIDmaACA7xAAAO8EHgDqaACA7mgAgPJoAID2aACA+mgAgP5oAIACaQCABmkAgAppAICAPQAAgQkAAILJBwAOaQCAo/kDAKLxAwChMQMAoM0fALBJcQCxAXwAsgl8ALMhfQC0AXgAtRV4ADZoAICmaACAEmkAgL4oDgCGDAAAh4wDABZpAIAaaQCAHmkAgCJpAIAmaQCAoV0AAKJVAACjfQAApAEMAKUVDACm9QwApwEIAKghCACpxQgAqgF0AKsJdACsAXQArR11AK55cACveXAAqOUFAKnxBQCq8QUAqy0FAKw1BQCtPQUArjUFAK8tBQAqaQCALmkAgDJpAIA2aQCAOmkAgD5pAIBCaQCARmkAgLj9BgC5jQYAuoUGALutBgC8uQYAvbkGAL6tBgC/pQYAsFUFALFdBQCyVQUAs+UGALT9BgC10QYAttEGALfRBgCzeQQASmkAgE5pAIBSaQCAVmkAgLa9BAC1vQQAWmkAgLuZBAC6kQQAXmkAgGJpAIC/FQcAvjkHAL0xBwC8gQQAZmkAgKM9BABqaQCAbmkAgKb5BAByaQCAdmkAgKX5BACq1QQAq90EAHppAIB+aQCArn0HAK9RBwCsxQQArXUHAKhpBwCpaQcAqnkHAKvZBgCs9QYArf0GAK71BgCv5QYAgMkAAIHJAACCBQAAgmkAgIZwDwCHNAAAimkAgI5pAIC4fQYAuQUGALoNBgC7BQYAvB0GAL0FBgC+DQYAvwUGALCdBgCxdQYAsn0GALN1BgC0UQYAtV0GALZVBgC3TQYAs/EEAJJpAICWaQCAmmkAgJ5pAIC2fQUAtX0FAKJpAIC7sQUAulkFAKZpAICqaQCAv5kFAL6VBQC9oQUAvKkFAK5pAICjtQQAsmkAgLZpAICmOQUAumkAgL5pAIClOQUAqh0FAKv1BQDCaQCAxmkAgK7RBQCv3QUArO0FAK3lBQCpuQIAqLECAKvJAgCqsQIArTUCAKw1AgCvNQIArjUCAMppAIDOaQCA0mkAgNZpAIDaaQCA3mkAgOJpAIDmaQCAuekDALjZAwC7iQMA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teEBALbhAQC3zQEAo60NAKp1AICudQCAsnUAgLZ1AICm1Q0ApaENALp1AICr/Q0AqvUNAL51AIDCdQCAryUCAK4lAgCt3Q0ArN0NAIBdAACBbQAAgmUAALNRAwC+nAMAtXkDALYZAwDKdQCAhOACAM51AIC6PQMAuzUDALwZAwC9GQMAvtkDAL/ZAwCohQMAqZUDAKqVAwCrpQMArL0DAK3VAwCu0QMAr9EDAIYABACHNAMAv6AzANJ1AIDWdQCA2nUAgN51AIDidQCAuHEDALlxAwC6cQMAu3EDALzVAAC93QAAvtUAAL/NAACwtQMAsb0DALKBAwCzgQMAtFEDALVRAwC2UQMAt1EDAO+oAwDmdQCA6nUAgO51AICEHAIA8nUAgPZ1AID6dQCAviwFAP51AIACdgCABnYAgONAAwAKdgCA4SgAAA52AICjXQIAEnYAgBZ2AIAadgCAHnYAgKYVAgCldQIAInYAgKs5AgCqMQIAJnYAgCp2AICv1QIArtUCAK0VAgCsFQIA4ygBAOEADwDhCA4A4wgOAID9AACBCQAAgjkAAC52AIAydgCAOnYAgD52AIBCdgCA7+gOAEZ2AIBKdgCA72QOALNtAQBOdgCAhugEAIcMBQBSdgCAtm0BALVtAQBWdgCAu+0AALrtAABadgCAXnYAgL/VAAC+6QAAveEAALzpAACoXQYAqWEGAKqlBgCrvQYArKUGAK2tBgCupQYArxkHADZ2AIBidgCAZnYAgGp2AIBudgCAcnYAgHZ2AIB6dgCAuHUHALl5BwC6DQcAuwUHALwdBwC9BQcAvgUHAL81BwCwaQcAsWkHALJ9BwCzdQcAtG0HALVRBwC2UQcAt1EHAKMtBgB+dgCAgnYAgIZ2AICKdgCApi0GAKUtBgCOdgCAq60HAKqtBwCSdgCAlnYAgK+VBwCuqQcAraEHAKypBwCADQAAgRUAAIIdAACadgCAnnYAgKJ2AICEVAMAvlwAAKZ2AICqdgCAhugAAIdMAwCudgCAsnYAgLZ2AIC6dgCAvnYAgOMEBADCdgCA4bQFAMZ2AIDKdgCAznYAgNJ2AIDWdgCA2nYAgN52AIDidgCA5nYAgO/sBADqdgCA7nYAgLPtBgDydgCA9nYAgPp2AID+dgCAtpEGALXhBgACdwCAu40GALqNBgAGdwCACncAgL9BAQC+WQEAvVEBALxZAQCoJQYAqS0GAKolBgCrOQYArCkGAK1RBgCuSQYAr0EGAIDNAACBCQAAghkAAA53AIASdwCAhCwBAL40AAAadwCAuP0BALlBAQC6QQEAu0EBALxBAQC9SQEAvnEBAL9xAQCwCQYAsQkGALLNAQCzxQEAtN0BALXFAQC2zQEAt8UBAIagPACHRAMAHncAgKOhBQAidwCApa0FAKbdBQAmdwCAKncAgL4oPACqwQUAq8EFAKwVAgCtHQIArhUCAK8NAgC2QQMALncAgDJ3AIC1sQIANncAgLOhAgA6dwCAPncAgL5FAwC/TQMAvHUDAL1NAwC6ZQMAu20DAEJ3AIBGdwCASncAgE53AIDGdQCAUncAgFZ3AIBadwCAXncAgGJ3AICoRQIAqVUCAKpdAgCrVQIArE0CAK21AwCusQMAr60DALDVAwCx3QMAstUDALPtAwC09QMAtf0DALb1AwC37QMAuNkDALnZAwC6rQMAu6UDALy9AwC9pQMAvqUDAL+VAwCj9QMAZncAgGp3AIBudwCAcncAgKYVAgCl5QMAdncAgKs5AgCqMQIAencAgH53AICvGQIArhECAK0ZAgCsIQIAgGkAAIFpAACCBQAAgncAgIp3AICOdwCAkncAgO8cAACEbAIA4ZQBAJZ3AIDjyAAAmncAgJ53AICGWDwAh1A9AKJ3AICmdwCAqncAgISEPQCudwCAsncAgLZ3AIDvuAEAvmw8AOF0BgC6dwCA42QBAL53AIDCdwCAxncAgMp3AICz0QEAzncAgNJ3AIDWdwCA2ncAgLaRAQC1+QEA3ncAgLu9AQC6vQEA4ncAgOZ3AIC/dQEAvnUBAL2FAQC8hQEAqL09AKkNPgCqGT4AqxE+AKwxPgCtUT4ArlE+AK9NPgCGdwCAgh0AAIEdAACAHQAA6ncAgO53AIDydwCA9ncAgLjVPgC53T4AutU+ALtJPwC8WT8AvVk/AL5JPwC/QT8AsDk+ALE5PgCyET4AsxE+ALTxPgC18T4AtvU+ALftPgCjkT4A+ncAgIYoAACHwAMA/ncAgKbRPgCluT4AAngAgKv9PgCq/T4ABngAgAp4AICvNT4ArjU+AK3FPgCsxT4ADngAgLOdPwASeACAFngAgLalPwAaeACAHngAgLWtPwC6aT8Au3U/ACJ4AIAmeACAvlk/AL9FPwC8bT8A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IoUAgOH8AQBWgwCAJoUAgO/IBgAqhQCALoUAgDKFAICzjQMANoUAgLWNAwA6hQCAPoUAgLa1AwBChQCARoUAgLtBAwC6SQMAvUEDALxZAwC/QQMAvkkDAKNFDACmhACAFoUAgEqFAIBOhQCApn0MAKVFDABShQCAq4kMAKqBDABWhQCAWoUAgK+JDACugQwArYkMAKyRDACAFQ8AgR0PAIIhDwCzIQ4AXoUAgLUhDgC2JQ4AYoUAgGaFAIBqhQCAusEOALvBDgC8wQ4AvcEOAL7BDgC/wQ4AqK0OAKntDgCq5Q4Aq/0OAKzlDgCt6Q4ArjkOAK85DgBuhQCAcoUAgHaFAIB6hQCAgB0AAIEJAACCvQEAfoUAgLjNDwC51Q8AutUPALvlDwC8/Q8AvZUPAL6RDwC/kQ8AsEkOALFJDgCyWQ4As1kOALRJDgC1SQ4Atv0PALf1DwCjbQ8AgoUAgL6EAQCKhQCAjoUAgKZpDwClbQ8AkoUAgKuNDwCqjQ8AhogAAIdsAQCvjQ8Aro0PAK2NDwCsjQ8AloUAgLPtDgCahQCAnoUAgLaRDgCihQCApoUAgLXhDgC6tQ4Au70OAKqFAICuhQCAvn0BAL9lAQC8mQ4AvZkOAKgRDgCpJQ4AqiEOAKs5DgCsLQ4ArVUOAK5dDgCvUQ4AhKgAALKFAIC2hQCAuoUAgL6FAIDChQCAxoUAgMqFAIC47QEAuZUBALqVAQC7rQEAvLUBAL11AQC+fQEAv3UBALA1DgCxPQ4AsgkOALMJDgC0/QEAteUBALblAQC31QEAo6kNAM6FAIDShQCA1oUAgNqFAICm1Q0ApaUNAN6FAICr+Q0AqvENAOKFAIDmhQCAryECAK45AgCt3Q0ArN0NAIANAACBFQAAgh0AAOqFAIDuhQCA8oUAgIeQAwCGfAQAvuwEAPqFAID+hQCAAoYAgAaGAIAKhgCADoYAgBKGAICyLQ4AszUOALAtDgCxJQ4Ati0OALedDwC0LQ4AtSUOALq9DwC7jQ8AuKUPALm9DwC+LQ8AvxUPALyVDwC9JQ8AFoYAgBqGAIAehgCAIoYAgCaGAIAqhgCALoYAgDKGAICqpQ4Aq7UOAKjFDgCp3Q4Arp0OAK9VDgCspQ4ArZUOAKgNAgCpFQIAqhUCAKtNAgCsWQIArVkCAK5NAgCvRQIAhKgFADaGAIA6hgCA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mogAgJ6IAIC+cAMAgGkAAIFpAACCeQAAhAAEAIbwBACHdAMAoogAgO8MHwCmiACA4aweAKqIAIDj8B4ArogAgLKIAIC2iACAuogAgL6IAIDCiACAxogAgMqIAIDvVAIAzogAgNKIAIDWiACA46QCANqIAIDhgAEA3ogAgOKIAIDmiACA6ogAgO6IAICzRQMA8ogAgPaIAID6iACA/ogAgLZFAwC1VQMAAokAgLshAwC6SQMAvqAEAAqJAIC/KQMAviEDAL01AwC8OQMAqDkCAKk5AgCqjQIAq4UCAKydAgCthQIAroUCAK+1AgCA7QEAgfUBAIL1AQAOiQCAhpAEAIcEBQASiQCAFokAgLhFAQC5TQEAukUBALtdAQC8SQEAvUkBAL55AQC/eQEAsM0CALGlAgCyrQIAs6ECALSlAgC1rQIAtp0CALd9AQAaiQCAHokAgCKJAIAmiQCAKokAgC6JAIAyiQCA74gBAITsBADhVB4ANokAgONUAQA6iQCAPokAgEKJAIBGiQCAo0UCAEqJAIBOiQCAUokAgFaJAICmRQIApVUCAFqJAICrIQIAqkkCAF6JAIBiiQCArykCAK4hAgCtNQIArDkCAKg1BgCpPQYAqlEGAKttBgCseQYArWUGAK5tBgCvZQYABokAgGaJAIBqiQCAbokAgIAZAACBGQAAggUAAHKJAIC45QYAuekGALr5BgC7+QYAvOkGAL3pBgC+nQYAv5UGALAdBgCx5QYAsu0GALPlBgC0/QYAteEGALbhBgC34QYAs9kGAL7QAwB2iQCAeokAgH6JAIC25QYAtfEGAIKJAIC7IQYAutkGAIaYAACHeAMAvyUGAL45BgC9MQYAvDkGAIaJAICjnQYAiokAgI6JAICmoQYAkokAgJaJAICltQYAqp0GAKtlBgCaiQCAnokAgK59BgCvYQYArH0GAK11BgCo7QcAqSkGAKoxBgCrMQYArJEGAK2RBgCukQYAr5EGAKKJAICmiQCAqokAgK6JAICyiQCAtokAgLqJAIC+iQCAuIUGALmNBgC6hQYAu50GALyNBgC9vQYAvrUGAL95AQCw8QYAsfEGALLxBgCzxQYAtMEGALXBBgC2wQYAt8EGALO5BgDCiQCAxokAgMqJAIDOiQCAthEGALUZBgDSiQCAuzUGALo1BgDWiQCA2okAgL8FBgC+BQYAvREGALwlBgClQQYA3okAgOKJAICmSQYAgRUAAIB5AACj4QYAghUAAK1JBgCsfQYAr10GAK5dBgCENAEAlogAgKttBgCqbQYAvswDAOqJAICzlQIA7okAgLXZAgDyiQCA9okAgLbRAgCGgAwAhzgDALvFAgC6xQIAvRUDALwVAwC/FQMAvhUDAPqJAID+iQCA71gGAIRAAwACigCABooAgAqKAIAOigCAEooAgBaKAIAaigCAHooAgOE4BgAiigCA4yQGAL5wDACsSQIArUkCAK5dAgCvVQIAqB0CAKkFAgCqBQIAq10CAISoDAAmigCAKooAgC6KAIC+vA0AMooAgDaKAIA6igCAvE0DAL1VAwC+VQMAv2UDALjpAwC56QMAul0DALtVAwC0yQMAtckDALbZAwC32QMAsBkCALEZAgCy2QMAs9kDAD6KAIDj5AAAQooAgOG8AQBGigCAgj0AAIE9AACAPQAASooAgE6KAIBSigCAWooAgF6KAIDvzAMAYooAgGaKAICj3QMAaooAgIboDACHYA0AbooAgKaZAwClkQMAcooAgKuNAwCqjQMAdooAgHqKAICvXQIArl0CAK1dAgCsXQIAfooAgIKKAICGigCAiooAgI6KAICSigCAlooAgO/gAQCEvAwA4YwGAJqKAIDjHAYAnooAgKKKAICmigCAqooAgLPVAQCuigCAsooAgLaKAIC6igCAtpEBALWZAQC+igCAu70BALq9AQDCigCAyooAgL+dAQC+nQEAvZ0BALydAQCoBQ4AqQkOAKodDgCrFQ4ArFEOAK1RDgCuSQ4Ar0kOAFaKAICCzQ8AgfUPAID9DwDGigCAzooAgIYcAACHsAMAuOkOALnpDgC6/Q4Au/UOALztDgC9VQ8AvlEPAL9NDwCwOQ4AsTkOALIJDgCzCQ4AtBkOALUZDgC2DQ4At9kOAKOVDgDSigCA1ooAgNqKAIDeigCAptEOAKXZDgDiigCAq/0OAKr9DgDmigCA6ooAgK/dDgCu3Q4Ard0OAKzdDgDuigCAs/0PAPKKAID2igCAtoEPAPqKAID+igCAtZkPALqNDwC7ZQ8AAosAgAaLAIC+fQ8Av2UPALx9DwC9dQ8AqC0OAKk1DgCqMQ4AqzEOAKxVDgCtRQ4ArkUOAK91DgAKiwCADosAgBKLAIAWiwCAGosAgB6LAIAiiwCAJosAgLjpDgC59Q4Auv0OALv1DgC87Q4AvZEOAL6RDgC/kQ4AsA0OALHlDgCy7Q4As+UOALT9DgC15Q4Atu0OALflDgCjuQ4Agi0AAIEVAACAHQAAKosAgKbFDgCl3Q4ALosAgKshDgCqyQ4AMosAgL4sAQCvIQ4ArjkOAK0xDgCsOQ4AOosAgLZVAQC1RQEANosAgLNVAQA+iwCAhngAAIdcAAC/OQEAvjEBAL0lAQC8JQEAuzEBALpZAQDmiQCAQosAgEaLAIBKiwCAhAQDAKOJAgBOiwCApZkCAKaJAgBSiwCAvyg5AFaLAICqhQIAq+0CAKz5AgCt+QIAru0CAK/lAgDjWAIA78AOAOGIAQBaiwCAXosAgGKLAIBmiwCAaosAgG6LAIByiwCAdosAgHqLAIDvKAIA4ygOAH6LAIDhRA4AqbUCAKhpDQCrAQIAqgkCAK0BAgCsGQIArzECAK4BAgC+AAQAgosAgIaLAICKiwCAjosAgJKLAICWiwCAmosAgLnlAwC45QMAu+UDALrlAwC95QMAvOUDAL/lAwC+5QMAsSECALBJAgCzJQIAsiUCALUpAgC0IQIAtxUCALYVAgCowQIAqdECAKr1AgCrDQEArBUBAK0FAQCuBQEArzkBAJ6LAICiiwCAqosAgK6LAICyiwCAtosAgLqLAIC+iwCAuC0BALk9AQC67QEAu+UBALz9AQC95QEAvu0BAL/lAQCwLQEAsTUBALI9AQCzNQEAtC0BALUVAQC2HQEAtxUBAIA9AQCBpQAAgq0AAO/YAACGsAUAh9gFAMKLAIDv1A8AhGwEAOH0DgDGiwCA4xwPAMqLAIDhlAEAzosAgOMMDgCzPQIA0osAgNaLAIDaiwCA3osAgLbFAQC13QEA4osAgLuxAQC6qQEA5osAgOqLAIC/kQEAvqkBAL2hAQC8qQEAposAgO6LAICqRQYAq10GAKxFBgCtTQYArkUGAK99BgDyiwCA9osAgPqLAICj0QUA/osAgKUxBgCmKQYAAowAgAaMAICCHQAAgR0AAIAdAAAKjACADowAgBKMAIC+lAMAFowAgBqMAICGSAMAh8wDAB6MAIAijACAJowAgCqMAICoqQcAqakHAKq5BwCruQcArKkHAK2pBwCuAQcArzUHAC6MAIAyjACANowAgDqMAIA+jACAQowAgEaMAIBKjACAuC0HALnBAAC66QAAu+kAALz5AAC95QAAvuUAAL+dAACwUQcAsV0HALItBwCzJQcAtD0HALUlBwC2JQcAtxUHALMxBgBOjACAUowAgFaMAIBajACAtikGALUhBgBejACAu5kGALqVBgBijACAZowAgL/hBgC++QYAvfEGALz5BgBqjACAo3UGAG6MAIByjACApm0GAHaMAIB6jACApWUGAKrRBgCr3QYAfowAgIKMAICuvQYAr6UGAKy9BgCttQYAqOUBAKn1AQCq/QEAq/UBAKztAQCtNQEArj0BAK81AQCA+QAAgc0AAILFAACEYAEAvngBAIqMAICHrAAAhpABALjRAAC52QAAuuEAALvhAAC8kQAAvZ0AAL6VAAC/iQAAsE0BALFVAQCyXQEAs1UBALRNAQC18QAAtvEAALfxAACzdQIAjowAgJKMAICWjACAmowAgLa1AgC1ZQIAnowAgLuRAgC6iQIAoowAgKaMAIC/NQMAvokCAL2BAgC8iQIAqowAgKMxAgCujACAhMADAKbxAgCyjACAtowAgKUhAgCqzQIAq9UCALqMAIC+jACArs0CAK9xAwCszQIArcUCAKuNAACqjQAAqY0AAKg5AwCvvQAArr0AAK2FAACsjQAAqgAAAKsAAADCjACAxowAgMqMAIDOjACA0owAgNaMAIC7fQAAun0AALl9AAC4fQAAv90BAL7dAQC93QEAvN0BALO5AACysQAAsaEAALCtAAC3XQAAtl0AALWVAAC0lQAA2owAgN6MAIDijACA5owAgIE1AACADQAA6owAgII1AAC+rD0A7owAgPKMAICFaD0A+owAgP6MAICGODwAh8ACALNJAQACjQCA0AAAAAaNAIAKjQCAtkkBALVJAQAOjQCAuykBALolAQASjQCAFo0AgL8dAQC+HQEAvSEBALwpAQDjNDYA4QwGAOGwAgDjPAYAGo0AgB6NAIAijQCAJo0AgIQsPwC+oD8AKo0AgC6NAIDvfDcAMo0AgDaNAIDvGAEAOo0AgD6NAICGaD4Ah8w/AEKNAIBGjQCASo0AgO+UAABOjQCA4ZQBAFKNAIDjUAAAVo0AgILpPwCB6T8AgPE/AKMJPgCPASQA9owAgFqNAIBejQCApgk+AKUJPgBijQCAq2k+AKplPgBmjQCAao0AgK9dPgCuXT4ArWE+AKxpPgCeYTgA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vY0CAL69AgC/fQMAsFkCALFZAgCy7QIAs+UCALT9AgC15QIAtuUCALfVAgCjUQUAEpIAgBaSAIAakgCAHpIAgKZ5BQClcQUAIpIAgKudAgCqnQIAJpIAgCqSAICvIQIArjkCAK0xAgCsOQIAghEAAC6SAICAZQAAgQkAADKSAIC+mAMAOpIAgD6SAICEJAMAQpIAgIdoAwCGjBwARpIAgEqSAIBOkgCAUpIAgFaSAIBakgCAs6ECAITAHAC10QIAXpIAgGKSAIC21QIAZpIAgGqSAIC7wQIAuvUCAL0RAQC82QIAvxEBAL4ZAQBukgCAcpIAgHaSAIB6kgCAfpIAgIKSAICGkgCA77gGAIqSAIDhnAQAjpIAgON0BgCSkgCAlpIAgJqSAICekgCAgPkAAIH5AACCBQAAopIAgL5YHACEWB8A71wAAO9ABgDhkAEA4fwGAOM8AADjdAYAqpIAgK6SAICGmBwAh/QcAKNpAgC+DB8AspIAgLaSAIC6kgCAph0CAKUZAgC+kgCAqwkCAKo9AgDCkgCAxpIAgK/ZAQCu0QEArdkBAKwRAgCokR0AqZkdAKqhHQCroR0ArNEdAK3dHQCu1R0Ar8kdADaSAICmkgCAypIAgM6SAIDSkgCA1pIAgNqSAIDekgCAuHkeALl5HgC6zR4Au8UeALzdHgC9xR4AvsUeAL/1HgCwuR0AsY0dALKFHQCzTR4AtFUeALVdHgC2VR4At0keALjNHwC51R8Aut0fALvVHwC88R8Avf0fAL7pHwC/6R8AsKUfALGxHwCysR8As40fALSVHwC19R8Atv0fALf1HwCoGR4AqRkeAKotHgCrPR4ArCUeAK0tHgCuJR4Ar90fAOKSAIDmkgCA6pIAgO6SAIDykgCAxpEAgPaSAID6kgCAs+UfAP6SAIACkwCABpMAgAqTAIC27R8Ate0fAA6TAIC7NR4AuiEeABKTAIAWkwCAv3EeAL4RHgC9GR4AvCUeAIJpAACjoR8AgFkAAIFRAACmqR8AGpMAgB6TAIClqR8AqmUeAKtxHgCGAAQAh+wBAK5VHgCvNR4ArGEeAK1dHgCoMR4AqTEeAKpBHgCrQR4ArEEeAK1JHgCucR4Ar3EeACKTAIAmkwCAKpMAgC6TAIAykwCANpMAgDqTAIA+kwCAuCkBALkpAQC6OQEAuzUBALwtAQC90QAA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qnkOAKshDgC2lQCAupUAgK4hDgCvKQ4ArDEOAK0xDgCoYQ4AqXUOAKp9DgCrdQ4ArG0OAK31DgCu/Q4Ar/UOAIaAAQCHpAEAvpUAgMKVAIDGlQCAypUAgM6VAIDSlQCAuHUBALl9AQC6dQEAu8kBALzdAQC9xQEAvsUBAL/1AQCwjQ4AsZUOALKdDgCzkQ4AtFUBALVdAQC2VQEAt00BALP1DgDWlQCA2pUAgN6VAIDilQCAtnUOALXlDgDmlQCAu1EOALpJDgDqlQCA7pUAgL+ZAQC+kQEAvUUOALxJDgDylQCAo7EOAPaVAID6lQCApjEOAP6VAIAClgCApaEOAKoNDgCrFQ4ABpYAgAqWAICu1QEAr90BAKwNDgCtAQ4AqO0CAKktAwCqJQMAqz0DAKwlAwCtLQMAriUDAK+ZAwAOlgCAEpYAgBaWAIAalgCAHpYAgCKWAIC+dAIAKpYAgLiNAwC5kQMAupEDALulAwC8vQMAvXUAAL59AAC/dQAAsOkDALHpAwCy+QMAs/EDALTZAwC12QMAtrkDALe1AwCArQAAgbUAAIK9AACzoQMALpYAgLWhAwC2oQMAMpYAgITgAgA2lgCAuiEDALshAwC8IQMAvSkDAL4RAwC/EQMAo+0DAIXABACFtG8AOpYAgD6WAICm7QMApe0DAEKWAICrbQMAqm0DAIZIBQCHbAMAr10DAK5dAwCtZQMArG0DAEaWAIDjAA4A71hsAOG0DwBKlgCATpYAgFKWAIBWlgCAoakDAKD9DwCjwQMAog0DAOHgAwDv4A8A4+QDAFqWAIBelgCAYpYAgIQEBAC+BAQAZpYAgO+UAwBqlgCAbpYAgHKWAIDj1AMAdpYAgOFUAAB6lgCAfpYAgIKWAICGlgCAgA0AAIEVAACCHQAAipYAgI6WAICSlgCAj5EbAO+cDgCE4AcA4dQOAJqWAIDj8A4AnpYAgKKWAICGGAcAh5AEAJnlFwCY5RcAm+kLAJo5CwCd/QoAnPELAJ9VDwCeXQ8AkSkfAJDNGwCTJR8Aks0fAJXREwCUKRMAlxkXAJZ1EwCM4RAAjSUQAI4tEACP+QwAJpYAgJaWAICKORQAi5UUAITpGACFBRgAhuUYAIfxFACmlgCAqpYAgIIxHACDFRwAnKkEAK6WAICylgCAtpYAgLqWAIC+lgCAmtEEAJt9BACUTQ0AleUIAJblCACXtQgAwpYAgMaWAICSWQwAk1kMAKGRAADKlgCAowF8AKKZAACluXwApJF8AKeZeACm4X0AqYF5AKiheACriXQAqgF0AK0BcACsWXQAr4VwAK6dcACx4WwAsAFsALMBaACyHWwAtfVoALT1aADOlgCA0pYAgNaWAIDalgCA3pYAgOKWAIDmlgCA6pYAgO6WAIDylgCAqD0HAKmVBwCqlQcAq6kHAKzdBwCtxQcArsUHAK8dBgD2lgCAgh0AAIEdAACAHQAA+pYAgP6WAIAClwCAvmABALgZBgC5GQYAuikGALslBgC8IQYAvSEGAL4hBgC/IQYAsHEGALFxBgCycQYAs3EGALRNBgC1NQYAtj0GALctBgCzHQcACpcAgIYoAACHqAAADpcAgLZFBwC1VQcAEpcAgLu1BgC6tQYAFpcAgBqXAIC/8QYAvokGAL2lBgC8pQYAHpcAgKNZBwAilwCAJpcAgKYBBwAqlwCALpcAgKURBwCq8QYAq/EGADKXAIA2lwCArs0GAK+1BgCs4QYAreEGAKipBQCptQUAqr0FAKs9AgCsJQIArVECAK5RAgCvUQIAOpcAgD6XAIBClwCARpcAgIQ8AwBKlwCATpcAgFKXAIC4pQIAua0CALqlAgC7vQIAvKUCAL2tAgC+pQIAv30DALAxAgCxMQIAshkCALMZAgC09QIAta0CALalAgC3nQIAVpcAgFqXAIBelwCAszkFAGKXAIC1oQIAtt0CAGaXAIBqlwCAbpcAgLr5AgC7+QIAvMECAL3BAgC+PQIAv2UCAHKXAICmgQIApf0CAHqXAICjZQUAvlh8AIbYfACHnHwArzkCAK5hAgCtnQIArJ0CAKulAgCqpQIAfpcAgIKXAICohQIAqZUCAKqVAgCrpQIArL0CAK3VAgCu0QIAr9ECAIGFAQCAhQEAhpcAgILtAQCKlwCAjpcAgJKXAICWlwCAuHUBALl9AQC6dQEAu80BALzVAQC93QEAvskBAL/BAQCwtQIAsb0CALKBAgCzgQIAtFEBALVRAQC2UQEAt1EBAJqXAICelwCAopcAgKaXAIDhMAYA4WQHAOMoBgDjxAYAhCB9AKqXAIDvbAAA7xgGAK6XAICylwCAtpcAgLqXAICzXQIAvkh8AL6XAIDClwCAxpcAgLYVAgC1dQIAypcAgLs5AgC6MQIAzpcAgNKXAIC/1QEAvtUBAL0VAgC8FQIAo519AHaXAIDWlwCA2pcAgN6XAICm1X0ApbV9AOKXAICr+X0AqvF9AOaXAIDqlwCArxV+AK4VfgCt1X0ArNV9AIBNAACBVQAAglUAALOxfgDulwCAtWV/ALZtfwDylwCAhkADAIcEAwC66X8Au+l/ALz5fwC9+X8Avt1/AL/NfwD2lwCA+pcAgAaXAID+lwCAApgAgAaYAIAKmACADpgAgKhtfgCpXX4AqlV+AKuFfwCsgX8ArYF/AK6BfwCvgX8AsEF/ALFBfwCyQX8As0F/ALR1fwC1ZX8Atm1/ALdlfwC4XX8AuS1/ALolfwC7PX8AvC1/AL0dfwC+FX8Av/UAAKP9fwASmACAFpgAgBqYAIAemACApiF+AKUpfgAimACAq6V+AKqlfgAmmACAKpgAgK+BfgCukX4ArbV+AKy1fgAumACAMpgAgDaYAIA6mACAPpgAgEKYAIBGmACASpgAgIA9AACBCQAAghkAAE6YAIBSmACAhLgBAL6wAQBWmACAqK0BAKnVAQCq1QEAqw0BAKwVAQCtGQEArgkBAK8JAQCGAAQAhwQBAFqYAIBemACAYpgAgGaYAIBqmACAbpgAgLjtAAC5hQAAuo0AALuFAAC8nQAAvYUAAL6NAAC/hQAAsHkBALF5AQCy7QAAs+UAALT9AAC15QAAtuUAALfVAACzXQIAcpgAgHaYAIB6mACAfpgAgLaZAgC1nQIAgpgAgLu9AgC6vQIAhpgAgIqYAIC/IQMAvjkDAL0xAwC8OQMAvigDAKMZAgCOmACAkpgAgKbdAgCWmACAmpgAgKXZAgCq+QIAq/kCAJ6YAICimACArn0DAK9lAwCsfQMArXUDAL7IBACmmACAqpgAgL7EBQCumACAspgAgLaYAIC6mACAgD0AAIEJAACCGQAAvpgAgMKYAICEOAMAypgAgM6YAIDveAIA0pgAgIZIBACHVAMA1pgAgNqYAIDemACA4pgAgOaYAIDqmACA7pgAgPKYAIDjVAIA9pgAgOFAAQD6mACA/pgAgOMkfwACmQCA4Zx8AAaZAIAKmQCADpkAgBKZAICEbAUAFpkAgBqZAIAemQCAIpkAgO8YfwAmmQCAKpkAgLPxAgAumQCAMpkAgDqZAIA+mQCAtukCALXhAgBCmQCAu3EBALppAQCHoAUAhswEAL85AQC+WQEAvVEBALxhAQDhQH8ARpkAgOM4fgCEwAQAgtkAAO8UAACApQAAgdkAAEqZAIDjwAAATpkAgOHUAQBSmQCAVpkAgO+EfgBamQCAqs0BAKvVAQBemQCAYpkAgK79AQCvnQEArMUBAK31AQBmmQCAo1UCAGqZAIBumQCApk0CAHKZAIB2mQCApUUCAMaYAIA2mQCAepkAgH6ZAICCmQCAhpkAgIqZAICOmQCAqJkGAKmZBgCq7QYAq/0GAKzlBgCt7QYAruUGAK/dBgCwpQYAsa0GALKlBgCzuQYAtK0GALVVBwC2UQcAt00HALh1BwC5fQcAunUHALtJBwC8WQcAvVkHAL5JBwC/RQcAs0UGAJKZAICWmQCAmpkAgJ6ZAIC2TQYAtU0GAKKZAIC7SQYAukEGAIYIAACHjAAAv7EHAL5JBgC9TQYAvFEGAIJdAACjAQYAgEUAAIFdAACmCQYAqpkAgK6ZAIClCQYAqgUGAKsNBgCymQCAtpkAgK4NBgCv9QcArBUGAK0JBgCoTQYAqVUGAKpVBgCriQYArLEGAK29BgCuqQYAr6kGAKaZAIC6mQCAvpkAgMKZAIDGmQCAypkAgM6ZAIDSmQCAuEkBALlJAQC6WQEAu1kBALxJAQC9SQEAvt0BAL/VAQCw3QYAsa0GALKlBgCzjQYAtJkGALWZBgC2jQYAt4UGALPdBgDWmQCA2pkAgN6ZAIDimQCAtj0GALU5BgDmmQCAu2kGALoZBgDqmQCA7pkAgL9dBgC+XQYAvVkGALxxBgDymQCAo5kGAPaZAID6mQCApnkGAP6ZAIACmgCApX0GAKpdBgCrLQYABpoAgAqaAICuGQYArxkGAKw1BgCtHQYAqNUCAKndAgCq4QIAq+ECAKw1AwCtPQMArjUDAK8tAwCAzQMAgQkAAIIZAAAOmgCAEpoAgIQYAgC+dAMAGpoAgLjpAwC56QMAuokDALuFAwC8nQMAvYEDAL6BAwC/tQMAsFUDALFdAwCyVQMAs+kDALT5AwC1+QMAtukDALfhAwCGIAwAhxADAB6aAIAimgCAJpoAgCqaAIAumgCA71wCADKaAIDhFAAANpoAgOOIAgC++AwAOpoAgD6aAIBCmgCAu/kDALrxAwC+gA0ARpoAgL9dAwC+XQMAvV0DALzhAwCzCQIASpoAgE6aAIBSmgCAVpoAgLbdAwC13QMAWpoAgKipBgCpqQYAqrkGAKu5BgCsqQYArakGAK4dBQCvFQUAXpoAgGKaAIBmmgCAapoAgG6aAIBymgCAdpoAgHqaAIC4GQUAuS0FALolBQC7yQUAvNkFAL3FBQC+zQUAv8UFALBtBQCxdQUAsnUFALNFBQC0XQUAtT0FALY1BQC3KQUA4fQGAOFUBwDjFAYA47wGAIEJAACAqQAAfpoAgII5AACE7A0AgpoAgIeIDACGDAwAipoAgI6aAIDvzAcA78QHAKMpAwCSmgCAlpoAgJqaAICemgCApv0CAKX9AgCimgCAq9kCAKrRAgCmmgCAqpoAgK99AgCufQIArX0CAKzBAgCoPQ4AqY0OAKqFDgCrnQ4ArIUOAK2NDgCuuQ4Ar7UOAIaaAICumgCAspoAgLaaAIC6mgCAvpoAgMKaAIDGmgCAuL0OALllDwC6bQ8Au2UPALx9DwC9ZQ8Avm0PAL9lDwCw1Q4Asd0OALLVDgCzoQ4AtJUOALWdDgC2lQ4At40OALMNDgDKmgCAzpoAgNKaAIDWmgCAtg0OALUNDgDamgCAuxkOALoRDgDemgCAFpoAgL9ZDgC+UQ4AvXUOALwBDgDimgCAo0kOAOaaAIDqmgCApkkOAO6aAIDymgCApUkOAKpVDgCrXQ4AhKQDAPaaAICuFQ4Arx0OAKxFDgCtMQ4AqLEOAKmxDgCqzQ4Aq8UOAKzdDgCtxQ4ArsUOAK/1DgCA7QEAgfEBAILxAQD6mgCAhpABAIe0AQD+mgCAApsAgLjFAQC5zQEAusUBALvdAQC8zQEAvf0BAL6ZAQC/lQEAsI0OALFBAQCyQQEAs0EBALRBAQC1QQEAtkEBALdBAQCzRQ4ABpsAgAqbAIAOmwCAEpsAgLZFDgC1VQ4AFpsAgLuFAQC6SQ4AGpsAgB6bAIC/hQEAvoUBAL2VAQC8lQEAIpsAgKMBDgAmmwCAKpsAgKYBDgAumwCAMpsAgKURDgCqDQ4Aq8EBADabAIA6mwCArsEBAK/BAQCs0QEArdEBAKgtAwCpPQMAqjUDAKuJAwCsmQMArZkDAK6JAwCvgQMAPpsAgEKbAIBGmwCASpsAgE6bAIBSmwCAVpsAgFqbAIC4rQMAuWUAALptAAC7ZQAAvH0AAL1lAAC+bQAAv2UAALDJAwCxyQMAsqkDALOlAwC0vQMAtaEDALahAwC3lQMAgL0AAIEJAACCGQAAXpsAgGKbAIC+2AMAapsAgG6bAICErAIAcpsAgIfoAwCGDAQAdpsAgHqbAIB+mwCAgpsAgLP9AwCGmwCAipsAgI6bAICSmwCAtlkDALVRAwCWmwCAu00DALpNAwCamwCAnpsAgL8lAwC+OQMAvTEDALw9AwCimwCAppsAgKqbAICumwCA71gPALKbAIC2mwCAupsAgOOQDgC+mwCA4bAPAMKbAIDGmwCAypsAgM6bAIDSmwCAgHUAAIF9AACCdQAAhBgFAO88AwDamwCAvhQFAN6bAIDj0AMA4psAgOFAAADmmwCAhtAEAIdYBQDqmwCA7psAgPKbAID2mwCA+psAgP6bAIACnACABpwAgAqcAIDvrA8AhOwEAOEQDgAOnACA41QBABKcAIAWnACAGpwAgB6cAICj/QIAIpwAgCacAIAqnACALpwAgKZZAgClUQIAMpwAgKtNAgCqTQIANpwAgDqcAICvJQIArjkCAK0xAgCsPQIAqJkGAKmZBgCqrQYAq70GAKylBgCtrQYArqUGAK/ZBgDWmwCAghEAAIEZAACAwQcAPpwAgEKcAIC+cAMARpwAgLhJBwC5SQcAul0HALtVBwC8TQcAvXEHAL51BwC/bQcAsKkGALGpBgCyuQYAs7EGALSZBgC1mQYAtnkHALd5BwC1NQYASpwAgE6cAIC2NQYAhjAAAIdcAwCzPQYAUpwAgL19BgC8dQYAv0UGAL5FBgBmmwCAVpwAgLt1BgC6dQYAo2UGAFqcAIBenACAYpwAgGacAICmbQYApW0GAGqcAICrLQYAqi0GAG6cAIBynACArx0GAK4dBgCtJQYArC0GAKhVBgCpWQYAqm0GAKthBgCsaQYArWkGAK6ZBgCvmQYAdpwAgHqcAIB+nACAgpwAgIacAICKnACAjpwAgJKcAIC4+QYAufkGALqNBgC7hQYAvJ0GAL2FBgC+hQYAv7UGALDpBgCx6QYAsvkGALP5BgC06QYAtd0GALbJBgC3yQYAs+UGAJacAICanACAnpwAgKKcAIC26QYAteEGAKacAIC7LQYAui0GAKqcAICunACAvxkGAL4tBgC9LQYAvC0GAIIVAACjoQYAgGEAAIFhAACmrQYAspwAgL6QAQClpQYAqmkGAKtpBgCEpAEAupwAgK5pBgCvXQYArGkGAK1pBgCohQIAqY0CAKqVAgCruQIArNUCAK3dAgCu1QIAr80CAIaAHACHZAMAvpwAgL5gAwDCnACAxpwAgMqcAIDOnACAuHUDALl9AwC6dQMAu8kDALzZAwC92QMAvskDAL/BAwCwvQIAsY0CALKFAgCzTQMAtFUDALVdAwC2VQMAt00DALMdAgDSnACAhAgDANacAIDanACAtl0CALVdAgDenACAu0kCALp5AgDinACA5pwAgL+ZAwC+kQMAvZkDALxRAgCwAAAAo1kCAOqcAIDunACAphkCAPKcAID2nACApRkCAKo9AgCrDQIA+pwAgP6cAICu1QMAr90DAKwVAgCt3QMAAp0AgAadAIAKnQCA76wGAA6dAIASnQCAFp0AgBqdAIC+6BwAHp0AgCKdAIAqnQCALp0AgOGABwAynQCA42AGAIBdAACBYQAAgmEAALN9AQA2nQCAtW0BALZlAQA6nQCAhiAdAIdYHQC6+QEAu/EBALzZAQC92QEAvrEBAL+xAQDvoAAAPp0AgEKdAIBGnQCASp0AgE6dAIBSnQCA71wBAIRsHADhzAYAVp0AgOMcBgDjSAAAWp0AgOEwAQBenQCAo/EBAGKdAICFABQAZp0AgGqdAICm6QEApeEBAG6dAICrfQEAqnUBAHKdAIB2nQCArz0BAK49AQCtVQEArFUBAKjtHQCpLR4AqjkeAKs5HgCsKR4ArSkeAK6dHgCvkR4AJp0AgHqdAIB+nQCAgp0AgIadAICC+QAAgfEAAID9AAC4qR4AuakeALpJHwC7SR8AvFkfAL1FHwC+TR8Av0UfALDxHgCx+R4AssEeALPBHgC0uR4AtbkeALatHgC3pR4AsBEfALERHwCyER8AsyUfALQlHwC1KR8Atl0fALdRHwC4cR8AuXkfALpBHwC7QR8AvJUAAL2dAAC+lQAAv40AAIqdAIC2nACAjp0AgJKdAICWnQCAmp0AgIb4AwCH0AAAqM0fAKnVHwCq0R8Aq70fAKytHwCtcR8ArnEfAK9xHwCzOR4Anp0AgKKdAICmnQCAqp0AgLaRHgC1RR4Arp0AgLu1HgC6tR4Asp0AgLadAIC/jR4AvoEeAL2RHgC8pR4Aup0AgKN9HgC+nQCAwp0AgKbVHgDGnQCAyp0AgKUBHgCq8R4Aq/EeAM6dAIDSnQCArsUeAK/JHgCs4R4ArdUeAKhVAQCpgQAAqoEAAKuBAACsgQAArYkAAK6xAACvsQAA1p0AgNqdAIDenQCA4p0AgOadAIDqnQCA7p0AgPKdAIC4ZQAAuW0AALplAAC7fQAAvGUAAL1tAAC+ZQAAv90DALChAACxrQAAsqUAALO5AAC0qQAAtZ0AALaVAAC3XQAA9p0AgIIdAACBHQAAgB0AAPqdAID+nQCAAp4AgL4UAgAKngCAhKgCAA6eAIASngCAFp4AgBqeAIAengCAjwAAALNJAwAingCAhugEAIesAgAmngCAtkkDALVJAwAqngCAuykDALolAwAungCAMp4AgL8ZAwC+LQMAvS0DALwxAwA2ngCAo40DADqeAIA+ngCApo0DAEKeAIBGngCApY0DAKrhAwCr7QMASp4AgE6eAICu6QMAr90DAKz1AwCt6QMAvoQDAFKeAIBWngCAWp4AgF6eAIBingCAZp4AgGqeAICAPQAAgQkAAIIZAABungCAcp4AgHqeAICENAMAfp4AgLMtAQCCngCAh8wCAIZMBQCGngCAti0BALUtAQCKngCAu0kBALp5AQCOngCAkp4AgL+9AQC+vQEAvbkBALxRAQDheB8Alp4AgOPQHwCangCAnp4AgOGUAQCingCA42gDAKaeAICqngCArp4AgO+IAwCyngCAtp4AgO+sHwC6ngCAvp4AgMKeAIDGngCAyp4AgM6eAIDSngCA1p4AgO9EHgDangCA4dweAN6eAIDjHB4A4p4AgOqeAIDungCA8p4AgIFpAACAZQAAo+UBAIJ9AACl5QEA9p4AgIQUBACm5QEAvigEAPqeAICrgQEAqrEBAK1xAQCsmQEAr3UBAK51AQCoIQYAqS0GAKolBgCrPQYArCUGAK0tBgCuXQYAr00GAHaeAIDmngCAhggDAIeMAwD+ngCAAp8AgAafAIAKnwCAuOkGALnpBgC6jQYAu4UGALydBgC9hQYAvo0GAL+FBgCwPQYAsQ0GALIFBgCz7QYAtPkGALX5BgC27QYAt+UGALDNBwCx1QcAstEHALPtBwC09QcAtf0HALbpBwC36QcAuN0HALklBwC6LQcAuyUHALw9BwC9JQcAvi0HAL8lBwAOnwCAEp8AgAaeAIAWnwCAGp8AgB6fAIAinwCAJp8AgKgVBgCpGQYAqu0HAKv9BwCs7QcArd0HAK7VBwCvuQcAswUGACqfAIAunwCAMp8AgDafAIC2PQYAtQUGADqfAIC7cQYAumkGAD6fAIBCnwCAv1kGAL5RBgC9WQYAvGUGAEafAICjQQYASp8AgE6fAICmeQYAUp8AgIS0AQClQQYAqi0GAKs1BgC+gAEAWp8AgK4VBgCvHQYArCEGAK0dBgCoNQYAqT0GAKo1BgCrWQYArHUGAK2lAQCurQEAr6UBAIDpAACB6QAAgv0AAL8kAQCGMA8Ah+QAAF6fAIBinwCAuMUAALnNAAC6xQAAu90AALzNAAC9/QAAvvUAAL+dAACw3QEAsSUBALItAQCzIQEAtCEBALUhAQC2IQEAtyEBALvBAgC6OQIAZp8AgGqfAIC/xQIAvsUCAL3VAgC82QIAs50FAG6fAIBynwCAdp8AgIwAAAC2BQIAtd0FAHqfAICqfQIAq4UCAH6fAICCnwCAroECAK+BAgCsnQIArZECAIafAICj2QUAip8AgI6fAICmQQIAkp8AgJafAIClmQUAgpFqAIORagCanwCAnp8AgIa5FgCH6RcAhBEWAIWZFgCKoRIAi6ESAKKfAICmnwCAjpEeAI9ZHgCMmRMAjREeAJJxGgCT5RoAqp8AgO/oJACW8QYAlwUGAJTlGgCVGQYAmikCAJvFAgCunwCAsp8AgLafAIDhKBsAnN0CAOMgDwCfIQcAnsEHAJ01GwCcLRsAm6EbAJr5HwCZOR8AmLEfAJcBEgCWIRMAlSkTAJRRFgCTGRcAkjEXAJGxFwCQKWsAj1FrAOOsBwCEBA0A4RwHAIANAACBNQAAgj0AALqfAIC+nwCAwp8AgL4gDQDKnwCAzp8AgO9MBwCGWAwAh2ANANKfAIDWnwCA2p8AgN6fAICEXA8A4p8AgO8IAADvhAYA4ZABAOGwBgDj4AAA42QGAOafAIDqnwCA7p8AgPKfAID2nwCA+p8AgL4ADwCEQA4A/p8AgAKgAIAGoACACqAAgA6gAIASoACAFqAAgBqgAICj1QMAotUDAKExAwCgLQcAVp8AgMafAIAeoACAIqAAgCagAICCmQAAgZEAAICZAACoTQ0AqZ0NAKqVDQCrJQ4ArD0OAK0RDgCuEQ4ArxEOALB9DgCxDQ4AsgUOALMtDgC0OQ4AtTkOALYtDgC3JQ4AuOkOALnpDgC6wQ4Au8EOALy5DgC9nQ4AvpUOAL+NDgCzPQ0AKqAAgC6gAIAyoACANqAAgLaxDgC1lQ4AOqAAgLvpDgC6mQ4AhogAAIfkAAC/3Q4Avt0OAL3ZDgC88Q4APqAAgKN5DQC+hAEAhIAGAKb1DgBCoACARqAAgKXRDgCq3Q4Aq60OAEqgAIBOoACArpkOAK+ZDgCstQ4ArZ0OALIFNQCzGTQAsG0wALENNQBSoACAVqAAgLQBKAC1PSkAWqAAgF6gAIBioACAZqAAgGqgAIBuoACAcqAAgHagAICiRQEAo9UBAHqgAIChTQEAps0FAKcBOACkAQQApX0FAKoBPACrRT0AqEk5AKnlOQCudTEAr30xAKxdPQCtATAAqO0OAKn1DgCqCQ4AqwkOAKwZDgCtGQ4Arg0OAK8tDgB+oACAgqAAgIagAICKoACAjqAAgJKgAICWoACAmqAAgLgdDgC5JQ4Aui0OALslDgC8PQ4Avd0BAL7VAQC/zQEAsFUOALFdDgCyVQ4Asy0OALQ1DgC1JQ4Ati0OALclDgCzgQ0AnqAAgKKgAICqoACArqAAgLaZDQC1kQ0AvlQEALuZDQC6kQ0AhogEAIe8AwC/4Q0AvvENAL35DQC8gQ0AgkkAAKPFDQCA9QMAgUkAAKbdDQCyoACAtqAAgKXVDQCq1Q0Aq90NALqgAIC+oACArrUNAK+lDQCsxQ0Arb0NAKgdAgCpRQIAql0CAKtVAgCseQIArXkCAK6JAwCviQMAwqAAgMagAIDKoACAzqAAgIT8BQDSoACA1qAAgNqgAIC4iQMAuWUDALptAwC7ZQMAvH0DAL1lAwC+bQMAv2UDALDBAwCxwQMAssEDALPBAwC0wQMAtcEDALbBAwC3wQMA3qAAgOKgAIDmoACA6qAAgO6gAIDhpAEA8qAAgOPADgC+aAQA9qAAgPqgAIDvHAEA/qAAgAKhAIAGoQCACqEAgLOVAwAOoQCAEqEAgBqhAIAeoQCAtrkDALWxAwAioQCAu0UCALpFAgCGqAQAh6QFAL9FAgC+RQIAvVUCALxVAgDh4A4A4SwMAOMIDgDj1A4AgK0AAIHRAACC0QAAJqEAgCqhAIAuoQCAMqEAgDahAIA6oQCAPqEAgO+IDgDvLA4AoxUDAEKhAICFxCsARqEAgEqhAICmOQMApTEDAE6hAICrxQIAqsUCAFKhAIBWoQCAr8UCAK7FAgCt1QIArNUCAKgNBgCpFQYAql0GAKtVBgCseQYArXkGAK65BgCvuQYAFqEAgFqhAIBeoQCAYqEAgGahAIBqoQCAbqEAgHKhAIC4TQcAuVUHALpRBwC7aQcAvHkHAL1lBwC+bQcAv2UHALDJBgCxyQYAst0GALPVBgC0zQYAtXUHALZ9BwC3dQcAs9UGAHahAIB6oQCAfqEAgIKhAIC2+QYAtfEGAIahAIC7DQYAug0GAIYIAACHLAAAv7EHAL4JBgC9AQYAvAkGAIJRAACjkQYAgEEAAIFBAACmvQYAiqEAgI6hAICltQYAqkkGAKtJBgCSoQCAlqEAgK5NBgCv9QcArE0GAK1FBgCwsQYAsbEGALLNBgCzwQYAtMEGALXJBgC28QYAt/EGALgFAQC5DQEAugUBALsdAQC8BQEAvQ0BAL4FAQC/uQEAmqEAgJ6hAICioQCApqEAgKqhAICuoQCApqAAgLKhAICoLQYAqTUGAKo1BgCr8QYArNEGAK3RBgCu0QYAr9EGALPdBgC2oQCAuqEAgL6hAIDCoQCAtjEGALU5BgDGoQCAuxUGALoVBgDKoQCAzqEAgL9tBgC+ZQYAvXUGALx5BgDSoQCAo5kGANahAIDaoQCApnUGAN6hAIDioQCApX0GAKpRBgCrUQYA5qEAgOqhAICuIQYArykGAKw9BgCtMQYAqNUCAKndAgCq4QIAq+ECAKxRAwCtUQMArlEDAK9RAwDuoQCA8qEAgL7sAwD6oQCA/qEAgAKiAIAGogCACqIAgLjpAwC56QMAuokDALuFAwC8nQMAvYEDAL6BAwC/tQMAsDEDALExAwCyNQMAs+kDALT5AwC1+QMAtukDALfhAwCAbQMAgaUAAIKtAACzZQIADqIAgLXVAwC23QMAEqIAgITgAgAWogCAuvkDALv5AwC87QMAvTEDAL4xAwC/MQMAh+wDAIZkPACyAAAAGqIAgB6iAIDjCAQAIqIAgOHsBgAmogCA7wAGACqiAIAuogCAMqIAgDaiAIA6ogCAPqIAgEKiAIBGogCASqIAgE6iAIDjoAMAUqIAgOGoAQBWogCA7/ADAIIdAACBHQAAgB0AAFqiAIBeogCAYqIAgGqiAIC+TD0AbqIAgKOhAwC+QDwApRECAHKiAIB2ogCAphkCAIRsAgB6ogCAqz0CAKo9AgCt9QIArCkCAK/1AgCu9QIAhkA8AIe0PQB+ogCAgqIAgIaiAICKogCAjqIAgO9EBgCSogCA4dQGAJaiAIDjDAcAmqIAgJ6iAICiogCApqIAgLP1AQCqogCArqIAgLKiAIC2ogCAtkUBALXlAQC6ogCAuzEBALopAQC+ogCAwqIAgL8dAQC+HQEAvRkBALwlAQCoLT4AqTU+AKo9PgCrNT4ArC0+AK2FPgCuhT4Ar7k+AGaiAIDGogCAyqIAgM6iAICAGQAAgRkAAIIFAADSogCAuLk+ALm5PgC6ST8Au0k/ALxZPwC9WT8Avk0/AL9BPwCwrT4AsbU+ALKxPgCzjT4AtJk+ALWZPgC2iT4At4k+AKO1PgCEjAIA1qIAgNqiAIDeogCApgU+AKWlPgDiogCAq3E+AKppPgCGCAAAh2gDAK9dPgCuXT4ArVk+AKxlPgDmogCAs5E/AOqiAIDuogCAtlk/APKiAID2ogCAtbk/ALp1PwC7fT8A+qIAgP6iAIC+QT8Av0E/ALxZPwC9VT8AsJU+ALGdPgCyqT4As6U+ALShPgC1oT4AtqE+ALehPgC45T4Aue0+ALrlPgC7/T4AvO0+AL3dPgC+1T4AvxkBAAKjAIAGowCACqMAgA6jAIASowCA9qEAgBajAIAaowCAqF0+AKkhPgCqPT4AqzU+AKwVPgCt/T4ArvU+AK/tPgCj1T4AHqMAgCKjAIAmowCAKqMAgKYdPgCl/T4ALqMAgKs5PgCqMT4AMqMAgDajAICvBT4ArgU+AK0RPgCsHT4AgREAAIANAAA6owCAghkAAD6jAIBCowCAhJQBAL4QAACGQAcAhwABAEqjAIBOowCAUqMAgFajAIBaowCAXqMAgKiNAgCplQIAqpUCAKvNAgCs2QIArdkCAK7NAgCvxQIAYqMAgGajAIBqowCAbqMAgIwAAAByowCAdqMAgHqjAIC4HQMAucEDALrBAwC7wQMAvMEDAL3JAwC+8QMAv/EDALCJAgCxiQIAsikDALMpAwC0OQMAtTkDALYpAwC3JQMAsx0CAH6jAICCowCAhqMAgIqjAIC2WQIAtVECAI6jAIC7TQIAuk0CAJKjAICWowCAv/0DAL79AwC9/QMAvP0DAJqjAICeowCAoqMAgKajAIDhDD4AqqMAgOOoPwCuowCAgT0AAIAxAADvUD8Agh0AALKjAIC++AQAhhgFAIdMAwCEDAIA48wAALqjAIDhvAEA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tUkCACKmAIC7hQIAuoUCACamAIAqpgCAv4UCAL6FAgC9lQIAvJUCAIU8GgCjVQIALqYAgDKmAICmDQIANqYAgDqmAIClDQIAqsECAKvBAgA+pgCAQqYAgK7BAgCvwQIArNECAK3RAgCCGQAARqYAgIAZAACBGQAASqYAgE6mAIBSpgCAWqYAgL4ABABepgCAYqYAgGamAIBqpgCAbqYAgHKmAIB2pgCA7+gOAHqmAICG6AQAh1ADAH6mAICCpgCA74ACAIamAIDhlAEAiqYAgONYAQCOpgCA4wAOAJKmAIDhaA0AlqYAgKhxAgCpcQIAqnECAKupAgCsuQIArbkCAK6pAgCvqQIAhKwFAJqmAICepgCAoqYAgKamAICqpgCArqYAgLKmAIC4bQEAuQ0BALoFAQC7GQEAvAkBAL09AQC+NQEAv9kBALDZAgCx2QIAsm0BALNlAQC0fQEAtWUBALZlAQC3VQEA4WAPAOP0AADjHA4A4bwBALamAICCOQAAgTEAAIA9AAC6pgCAvigEAL6mAIDCpgCAvjwHAO8QAADv0A4AyqYAgIbgBACHyAQAzqYAgLO1AgDSpgCAtX0CALZ1AgDWpgCA2qYAgN6mAIC6UQIAu1ECALz1AQC9/QEAvvUBAL/tAQBWpgCAxqYAgKqxBQCrsQUArBUGAK0dBgCuFQYArw0GAOKmAIDmpgCA6qYAgKNVBQDupgCApZ0FAKaVBQDypgCAs+kGAPamAID6pgCA/qYAgAKnAIC24QYAtekGAAanAIC7sQYAuqEGAAqnAIAOpwCAv50GAL6RBgC9pQYAvKkGAKgdBgCpIQYAqiEGAKshBgCsIQYArSEGAK4hBgCvIQYAEqcAgBanAIAapwCAHqcAgCKnAIAmpwCAKqcAgC6nAIC45QcAue0HALrlBwC7/QcAvOUHAL3tBwC+5QcAv00HALAlBgCxNQYAsj0GALMxBgC0FQYAtRkGALYNBgC3AQYAo6kHAIIVAACBtQEAgLUBADKnAICmoQcApakHADanAICr8QcAquEHAISgAgA6pwCAr90HAK7RBwCt5QcArOkHAD6nAICzlQYAhugAAIcYAQC2tQYAQqcAgEanAIC1vQYAukkBALtVAQBKpwCATqcAgL45AQC/OQEAvEUBAL05AQCoPQYAqU0GAKpZBgCrUQYArHEGAK1xBgCuuQEAr7kBAISsAQBSpwCAVqcAgFqnAIBepwCAYqcAgGanAIBqpwCAuKkBALmpAQC6aQEAu2kBALx5AQC9eQEAvmkBAL9pAQCwyQEAsdUBALLVAQCzqQEAtLkBALW5AQC2qQEAt6EBAKPRBQBupwCAcqcAgHanAIB6pwCApvEFAKX5BQB+pwCAqxECAKoNAgCCpwCAhqcAgK99AgCufQIArX0CAKwBAgCKpwCAjqcAgJKnAICWpwCAgTEAAIANAACapwCAgjkAAJ6nAICipwCAviQDAKqnAICupwCAsqcAgIbYHACHTAMAtqcAgLqnAIC+pwCAhMAcAOMgAQDCpwCA4cgBAManAIDvMAIAyqcAgM6nAIDSpwCA1qcAgNqnAIDepwCA4qcAgLOVAwDmpwCA6qcAgO6nAIDypwCAtrkDALWxAwD2pwCAu1EDALpJAwD6pwCA/qcAgL/1AAC+SQMAvUEDALxJAwCoLQIAqUUCAKpdAgCrVQIArHkCAK15AgCuvQIAr7UCAL5oHQACqACABqgAgAqoAICAHQAAgQkAAIKpAAAOqACAuFEBALlZAQC6YQEAu2EBALwRAQC9EQEAvhEBAL8RAQCwzQIAsdUCALLdAgCz1QIAtM0CALVxAQC2cQEAt3EBAOFYBgDhVAcA47AAAOO8BgASqACAGqgAgIYYHACHVB0AHqgAgCKoAIAmqACAKqgAgL74HAAuqACA7/AGAO/gBgCjlQIAMqgAgDaoAIA6qACAPqgAgKa5AgClsQIAQqgAgKtRAgCqSQIARqgAgEqoAICv9QEArkkCAK1BAgCsSQIAqG0eAKl1HgCqfR4Aq40eAKyVHgCtnR4Aro0eAK+BHgAWqACATqgAgFKoAIBWqACAWqgAgF6oAIBiqACAZqgAgLiJHgC5iR4AupkeALuRHgC8uR4AvbkeAL59HwC/dR8AsMUeALHNHgCyxR4As90eALTFHgC1zR4AtsUeALe5HgCz9R4AaqgAgG6oAIByqACAdqgAgLYdHgC1HR4AeqgAgLsJHgC6AR4AfqgAgIKoAIC/CR4AvgEeAL0JHgC8ER4Agm0AAKOxHgCAVQAAgWUAAKZZHgCEmAMAv9ABAKVZHgCqRR4Aq00eAIYABACHmAEArkUeAK9NHgCsVR4ArU0eAIqoAICOqACAhCQAAJKoAICWqACAmqgAgKanAICGqACA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5qsAgIR0BwDqqwCA72gBAO6rAIDyqwCApXkCAKbNAQD2qwCAgCEAAIEhAACC3QcAo2kCAKzJAQCtyQEArqEBAK+hAQD6qwCA/qsAgKrpAQCr4QEAlqsAgAKsAIC+QAIABqwAgIYwAwCHMAMACqwAgA6sAICoOQcAqTkHAKoNBwCrHQcArAUHAK0NBwCuBQcAr3kHALAJBwCxCQcAshkHALMRBwC0OQcAtTkHALbdBwC3yQcAuPkHALn5BwC6zQcAu8EHALzFBwC9yQcAvrkHAL+xBwCzpQcAEqwAgBasAIAarACAHqwAgLatBwC1rQcAIqwAgLvtBwC67QcAJqwAgCqsAIC/3QcAvt0HAL3lBwC87QcALqwAgKPhBwAyrACANqwAgKbpBwA6rACAPqwAgKXpBwCqqQcAq6kHAEKsAIBGrACArpkHAK+ZBwCsqQcAraEHAEqsAIBOrACAUqwAgFasAIBarACAXqwAgGKsAIBmrACAgREAAIANAABqrACAghkAAG6sAIByrACAvuQBAHasAICG4AAAhxgBAHqsAIB+rACAgqwAgIasAICKrACA77AEAI6sAIDh1AYAkqwAgONcBACWrACAmqwAgJ6sAICirACAqJkBAKmZAQCqDQEAqwUBAKwdAQCtBQEArgUBAK81AQCEiAEApqwAgKqsAICurACAsqwAgLasAIC6rACAvqwAgLjBAAC5wQAAusEAALvBAAC8wQAAvcEAAL7BAAC/wQAAsE0BALElAQCyIQEAsyEBALQlAQC1LQEAthEBALcRAQDCrACAxqwAgLONAgDKrACAtZ0CAM6sAIDSrACAto0CANasAIDarACAu+kCALqBAgC9/QIAvP0CAL/hAgC+6QIA3qwAgKbVAgClxQIAvggDAKPVAgCCLQAAgRkAAIB5AACvuQIArrECAK2lAgCspQIAq7ECAKrZAgDirACA6qwAgO80AgDurACAhxgDAIYs/ADyrACA9qwAgPqsAID+rACAAq0AgAatAIAKrQCADq0AgOMAAQASrQCA4eABABatAIC6tQMAu70DABqtAIAerQCAvnkDAL95AwC8pQMAvXkDACarAICztQMAIq0AgCatAIC2kQMAKq0AgC6tAIC1pQMAqEkCAKlJAgCqWQIAq1kCAKxJAgCtdQIArnECAK9tAgC+aP0AvqT/ADKtAIA2rQCA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s1kGAA2yAIARsgCAFbIAgBmyAIC2ZQYAtXUGAB2yAIC7KQYAuiEGACGyAIAlsgCAvxUGAL4VBgC9JQYAvC0GAKOZBgCPmfwAKbIAgDGyAIA1sgCApqUGAKW1BgA5sgCAq+kGAKrhBgCGKB8Ah5wAAK/VBgCu1QYAreUGAKztBgCebQkAn30HAJwNCwCd7QkAmvENAJs5DQCY5fAAmQ0PAJbh8QCX6fEAlMX1AJUN8wCSHfcAk/H1AJD9+QCR7fkAgh3/AIMB+gA9sgCAQbIAgIYV9gCHOfYAhAn6AIXx9ACKwfAAiyXyAEWyAIBJsgCAjuEMAI8VDgCMNfIAjQHzAJKtDgCTgQgATbIAgFGyAICW6QQAl3UGAJR5CgCV8QoAmtEGAJvJAABVsgCAWbIAgIEdAwCAHQMAnFkCAIL1AwCrARAAqpUWAKmNFgCojRYAr5UuAK4BLACt/RIArJkSAKOlHgCipR4AoY0CAN2wAICnGRoAppUaAKUBGACknR8AXbIAgGGyAIBlsgCAabIAgG2yAIBxsgCAdbIAgHmyAICz5SoAsuUqALGtLwCw5S4AfbIAgIGyAIC1ASQAtBEqAKgpAwCpNQMAqj0DAKs1AwCsLQMArbUDAK69AwCvtQMAhbIAgImyAICNsgCAkbIAgIAdAACBCQAAgrkAAJWyAIC4TQIAuV0CALptAgC7CQIAvBkCAL0ZAgC+CQIAvwECALDNAwCx1QMAst0DALPVAwC0zQMAtXUCALZ9AgC3dQIAmbIAgITIHQChsgCAvgwfAKWyAICpsgCA70gGAO9YBwDhWAYA4ZgGAOOUAQDjAAYAhhAcAId8HQC+9B4ArbIAgLGyAIC2ZQMAtfUDALWyAICz5QMAubIAgL2yAIDBsgCAv+ECAL5ZAwC9UQMAvFkDALtBAwC6WQMAxbIAgMmyAIAtsgCAnbIAgM2yAIDRsgCA1bIAgNmyAIDdsgCA4bIAgKitHQCptR0AqrUdAKslHgCsPR4ArR0eAK4VHgCvdR4AsA0eALEtHgCyJR4As40eALSVHgC1nR4AtpUeALeNHgC4tR4Aub0eALq1HgC7nR4AvIUeAL1VHwC+XR8Av1UfALMdHQDlsgCA6bIAgO2yAIDxsgCAtr0eALWVHgD1sgCAu8keALrpHgD5sgCA/bIAgL95HgC+cR4AvXkeALzRHgCCKQAA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vPkBAL35AQC+mQEAv5UBALAFAQCxDQEAsgUBALMdAQC0BQEAtQ0BALYFAQC3+QEA4WQPAOGcDwDjFA4A49QPAJ22AIDhPA4AobYAgOPkAAC+rAQApbYAgKm2AIDvDAAArbYAgLG2AIDvYA4A77QPALW2AIC5tgCAhEQEALNhAgC9tgCAtWECALZhAgDBtgCAxbYAgMm2AIC6jQEAu4UBALydAQC9hQEAvo0BAL+FAQCjrQUAjbYAgM22AIDRtgCA1bYAgKatBQClrQUA2bYAgKtJBgCqQQYA3bYAgOG2AICvSQYArkEGAK1JBgCsUQYA5bYAgOm2AIDttgCA8bYAgIAdAACBCQAAgjkAAPW2AID5tgCA/bYAgIbIAACHIAMAAbcAgAW3AIAJtwCADbcAgKhtBgCptQcAqr0HAKsdBwCsCQcArTEHAK4xBwCvLQcAhKgDABG3AIAVtwCAGbcAgB23AIAhtwCAJbcAgCm3AIC4zQAAudUAALrVAAC75QAAvP0AAL2VAAC+nQAAv5UAALBVBwCxJQcAsi0HALM9BwC0LQcAtRUHALYdBwC39QAALbcAgOG8BgAxtwCA4/QFADW3AIA5twCAPbcAgEG3AIBFtwCASbcAgE23AIBRtwCAVbcAgFm3AIBdtwCA7+gEALN1BgCCLQAAgRUAAIAdAABhtwCAtvEGALXBBgBltwCAu6EGALrRBgBptwCAvmwBAL+RBgC+qQYAvakGALy5BgCjtQYAcbcAgIYoAACHTAEAdbcAgKYxBgClAQYAebcAgKthBgCqEQYAfbcAgIG3AICvUQYArmkGAK1pBgCseQYAhbcAgLO9AQCJtwCAjbcAgLZ5AQCRtwCAlbcAgLV5AQC6VQEAu10BAJm3AICdtwCAvvkAAL/lAAC8RQEAvf0AAKhxAgCpcQIAqnECAKtxAgCstQIArb0CAK61AgCvrQIAhOw8AKG3AICltwCAqbcAgK23AICxtwCAtbcAgLm3AIC4XQMAuWUDALptAwC7ZQMAvH0DAL1lAwC+bQMAv2UDALDVAgCx3QIAstUCALNtAwC0eQMAtWUDALZtAwC3ZQMAHbYAgL23AIDBtwCAo/UCAMW3AIClMQIApjECAMm3AIDNtwCA0bcAgKodAgCrFQIArA0CAK21AwCusQMAr60DAIBlAACBCQAAghkAANW3AIDZtwCA4bcAgL4QPADltwCAhsA8AIcgAwDptwCA7bcAgPG3AID1twCA+bcAgP23AICohQIAqZUCAKqVAgCrpQIArL0CAK3VAgCu0QIAr9ECAAG4AIAFuACACbgAgA24AIARuACAFbgAgBm4AIAduACAuHUBALl9AQC6dQEAu8kBALzZAQC9xQEAvsUBAL/9AQCwtQIAsb0CALKBAgCzgQIAtFUBALVdAQC2VQEAt00BAOGkBgAhuACA41AGAL6APACEHDwAvoA/ACW4AIApuACALbgAgDG4AIA1uACAObgAgD24AIBBuACA7+AGAEW4AICBfQAAgHEAAEm4AICCBQAAUbgAgFW4AIDvTAAAWbgAgOGQAQBduACA41gBAGG4AIBluACAabgAgIZYPwCH/DwAs509AN23AIBNuACAbbgAgHG4AIC21T0AtbU9AHW4AIC7+T0AuvE9AHm4AIB9uACAvxk+AL4RPgC91T0AvNU9AIG4AICj2T0AhbgAgIm4AICmkT0AjbgAgJG4AICl8T0AqrU9AKu9PQCVuACAmbgAgK5VPgCvXT4ArJE9AK2RPQCoVT4AqVk+AKphPgCrYT4ArGE+AK1hPgCuYT4Ar2E+AISoAwCduACAobgAgKW4AICpuACArbgAgLG4AIC1uACAuEU/ALldPwC6VT8Au20/ALx1PwC9fT8AvnU/AL9tPwCwwT8AscE/ALLBPwCzwT8AtME/ALXBPwC2wT8At8E/AIC5AQCBuQEAggUAALm4AIDhgD4AwbgAgOMoPQDFuACAhoAAAIcEAQDvCD0AybgAgM24AIDRuACA1bgAgNm4AICzqT8AvbgAgN24AIDhuACA5bgAgLahPwC1qT8A6bgAgLtFPgC6RT4A7bgAgPG4AIC/RT4AvkU+AL1VPgC8VT4Ao2k/APW4AID5uACA/bgAgAG5AICmYT8ApWk/AAW5AICrhT4AqoU+AAm5AIANuQCAr4U+AK6FPgCtlT4ArJU+ABG5AICzGT4AFbkAgBm5AIC2IT4AHbkAgCG5AIC1MT4AuvEBALv5AQAluQCAKbkAgL6xAQC/vQEAvNEBAL3RAQCo0T0AqdE9AKrVPQCr6T0ArP09AK3lPQCu7T0ArxECAID5AwCBzQMAgsUDAIQkAwC+AAQAMbkAgIesAwCGvAQAuBkCALktAgC6JQIAu+kCALz5AgC9+QIA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eLsAgOE0AgB8uwCA4zQBAIC7AIDjCAwAhLsAgOEIDQChoQEAiLsAgKMJBQCibQMApc0EAKQRBQCnHRkAph0ZAKmhHQCoORkAq+kcAKqpHQCtkREArAEQAK8BFACuUREAsfkVALDlFQCz6WkAsgFoALUBbAC0eWkAjLsAgJC7AICUuwCAmLsAgJy7AICguwCAowkDAKIZDQCh/Q0AoP0NAIIlJgCDBToApLsAgKi7AICGqTwAhzU+AIQdOgCFPTsAiok+AIslMgCsuwCAsLsAgI6xNACPMTYAjD0yAI0tMgCSJTYAk9EIAIREAwC+wAQAlhULAJdVDgCUXQoAlVUKAJplDgCbiQ4AtLsAgLi7AIC8uwCAwLsAgJyBAADEuwCAuLUCALm9AgC6tQIAuwkCALwZAgC9GQIAvgkCAL8BAgCwdQ0AsX0NALJJDQCzSQ0AtJUCALWdAgC2lQIAt40CAKi9DQCpUQ0AqlUNAKtpDQCsfQ0ArWUNAK5tDQCvEQ0AZLsAgILtAQCBHQAAgB0AAMi7AIDMuwCAfboAgL5wBQCznQwAhIwFANC7AIDYuwCA3LsAgLalDAC1tQwA4LsAgLv5DAC68QwAhigFAIcgBQC/GQMAvhEDAL3dDAC83QwA5LsAgKPZDADouwCA7LsAgKbhDADwuwCA9LsAgKXxDACqtQwAq70MAPi7AID8uwCArlUDAK9dAwCsmQwArZkMAAC8AIAEvACACLwAgAy8AIAQvACAFLwAgBi8AIDvvAEAHLwAgOF8DgAgvACA41ABACS8AIAovACALLwAgDC8AICzlQIANLwAgDi8AIA8vACAQLwAgLa9AgC1uQIASLwAgLs5AgC6YQIAhsgEAIesBAC/GQIAvhECAL0ZAgC8IQIAo1UFAILVBwCBxQcAgMUHAEy8AICmfQUApXkFAFC8AICr+QUAqqEFAFS8AIBYvACAr9kFAK7RBQCt2QUArOEFAFy8AICzWQcAYLwAgGS8AIC2HQcAaLwAgGy8AIC1FQcAugkHALsJBwBwvACAdLwAgL75BwC/+QcAvPkHAL35BwDUuwCARLwAgHi8AIB8vACAgLwAgIS8AICIvACAjLwAgKitBwCptQcAqrUHAKvtBwCs+QcArfkHAK7tBwCv5QcAsKkHALGpBwCySQcAs0kHALRZBwC1WQcAtkkHALdJBwC4eQcAuUUHALpBBwC7XQcAvEUHAL1NBwC+RQcAvzkHAKMdBgCQvACAlLwAgJi8AICcvACAplkGAKVRBgCgvACAq00GAKpNBgCkvACAqLwAgK+9BgCuvQYArb0GAKy9BgCAbQAAgQkAAIIZAACsvACAsLwAgISYAQC+kAEAtLwAgIYAHACHxAEAuLwAgLy8AIDAvACAxLwAgMi8AIDMvACAqF0GAKmVAQCqlQEAq6UBAKy9AQCt1QEArtEBAK/RAQDQvACA1LwAgNi8AIDcvACA4LwAgOS8AIDovACA7LwAgLhZAQC5WQEAus0AALvFAAC83QAAvcUAAL7FAAC/9QAAsLUBALG9AQCygQEAs4EBALR5AQC1eQEAtmkBALdpAQCzHQIA8LwAgPS8AIC+gBwA+LwAgLZVAgC1NQIA/LwAgLt5AgC6cQIAAL0AgAS9AIC/vQIAvr0CAL1VAgC8VQIACL0AgKNZAgAMvQCAEL0AgKYRAgAUvQCAGL0AgKVxAgCqNQIAqz0CABy9AIAgvQCArvkCAK/5AgCsEQIArRECACi9AIAsvQCAvgQdAL4AHgAwvQCANL0AgDi9AIA8vQCAgPkAAIHNAACCxQAAhCADAIawHACHlAMAQL0AgES9AIBIvQCATL0AgFC9AIBUvQCA42wCAFi9AIDhoAEAXL0AgO8UAgBgvQCAZL0AgGi9AIBsvQCAcL0AgHS9AIB4vQCA4fAGAOE0BgDjTAAA4xgGAHy9AICAvQCAhL0AgIi9AICAPQAAgQkAAIIZAACMvQCAkL0AgIS8HQDvmAAA7zgHALMxAgDRAAAAh9gdAIZsHACYvQCAtikCALUhAgCcvQCAu80CALrNAgCgvQCApL0AgL/NAgC+zQIAvc0CALzNAgCyXQYAs2UGALANBgCxVQYAtn0GALedBQC0fQYAtXUGALqNBQC7zQUAuKUFALmFBQC+xQUAv8kFALzVBQC9zQUAqL0AgKy9AICwvQCAtL0AgLi9AIC8vQCAwL0AgMS9AICqtQYAq70GAKgBBwCpvQYAroEGAK+NBgCsmQYArZUGAKNxHQDIvQCAzL0AgNC9AIDUvQCApmkdAKVhHQDYvQCAq40dAKqNHQDcvQCA4L0AgK+NHQCujR0ArY0dAKyNHQDkvQCAs9UeAOi9AIDsvQCAts0eAPC9AID0vQCAtcUeALqhHgC7oR4A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s5EOAPDFAID0xQCAtqUOAPjFAID8xQCAta0OALrhDgC74Q4AAMYAgATGAIC+6Q4Av9UOALz1DgC96Q4Ao6UKAAjGAIAMxgCAEMYAgBTGAICmzQ0Apc0NABjGAICrbQwAqm0MABzGAIAgxgCArz0MAK49DACtVQwArFUMAKgJDgCpCQ4Aqh0OAKsVDgCsIQ4ArSEOAK4hDgCvIQ4AJMYAgCjGAIAsxgCAMMYAgDTGAIA4xgCAPMYAgEDGAIC4zQEAudUBALrdAQC71QEAvM0BAL1RAQC+UQEAv1EBALAhDgCxIQ4AsiUOALM5DgC0KQ4AtRUOALYdDgC39QEARMYAgEjGAIBMxgCAo5kNAFDGAIClpQ0Apq0NAL7cAgCE7AMAWMYAgKrpDQCr6Q0ArP0NAK3hDQCu4Q0Ar90NAIBFAACBTQAAglkAAKNFAwBcxgCApUEDAKZBAwBgxgCAhsAEAIcAAwCqLQMAqyUDAKw9AwCtJQMAriUDAK8VAwCoWQIAqYUDAKqBAwCrgQMArIUDAK2NAwCusQMAr7EDAGTGAIBoxgCAbMYAgHDGAIB0xgCAeMYAgHzGAICAxgCAuGUDALltAwC6ZQMAu30DALxlAwC9bQMAvmUDAL/dAACwpQMAsa0DALKlAwCzvQMAtK0DALWdAwC2lQMAt10DALMJAgCExgCAiMYAgIzGAICQxgCAtg0CALUNAgCUxgCAu2kCALphAgCYxgCAnMYAgL9ZAgC+aQIAvWkCALxxAgCgxgCApMYAgKjGAICsxgCA4aABALDGAIDjaAMAtMYAgIEVAACAFQAA74wDAIIVAAC4xgCAvMYAgMDGAIC+cAUA4RgOAOGUDwDjOA8A49QPAISUAgDIxgCAzMYAgNDGAIDUxgCA2MYAgNzGAIDgxgCA5MYAgOjGAIDv7AEA7/gPAIZgBACHBAUAs5UBAITMBQC1dQEA7MYAgPDGAIC2dQEA9MYAgPjGAIC7UQEAulkBAL31AAC8SQEAv/UAAL71AACoJQYAqVUGAKpVBgCrrQYArLUGAK29BgCutQYAr60GAMTGAID8xgCAAMcAgATHAIAIxwCADMcAgBDHAIAUxwCAuGkHALlpBwC6CQcAuwkHALwZBwC9GQcAvg0HAL8BBwCw1QYAsd0GALLVBgCzaQcAtHkHALV5BwC2aQcAt2EHAKPdBgAYxwCAHMcAgCDHAIAkxwCApj0GAKU9BgAoxwCAqxkGAKoRBgAsxwCAMMcAgK+9BwCuvQcArb0HAKwBBgCAXQAAgW0AAIJlAACzUQcAvtgDALVxBwC2cQcANMcAgIbgAACHFAMAul0HALs5BwC8KQcAvRUHAL4dBwC/2QAAqJUGAKmdBgCqlQYAq60GAKy1BgCtvQYArrUGAK+tBgA4xwCAPMcAgEDHAIBExwCASMcAgEzHAIBQxwCAVMcAgLhxAQC5cQEAunEBALtxAQC81QEAvd0BAL7VAQC/zQEAsNUGALGxBgCysQYAs40GALSVBgC1UQEAtlEBALdRAQBYxwCAoxkGAFzHAIBgxwCApjkGAFTGAIBkxwCApTkGAKoVBgCrcQYAaMcAgGzHAICuVQYAr5EBAKxhBgCtXQYAcMcAgHTHAIB4xwCAfMcAgIDHAICExwCAiMcAgIzHAICQxwCAlMcAgJjHAICcxwCAgBkAAIEZAACCBQAAoMcAgISAAgC+gAMAhwwDAIasHADhaAYAqMcAgOOYBwCsxwCAsMcAgLTHAIDvrAcAuMcAgLzHAIDAxwCAxMcAgMjHAIDMxwCA0McAgNTHAICzZQMA2McAgLVlAwC2bQMA3McAgODHAIDkxwCAuukDALvlAwC8/QMAve0DAL7RAwC/0QMA6McAgOzHAIDwxwCA9McAgPjHAID8xwCAAMgAgATIAICogQMAqYEDAKqBAwCrgQMArIEDAK2BAwCugQMAr4EDALBBAwCxTQMAskUDALNVAwC0eQMAtXkDALYZAwC3GQMAuCkDALkpAwC6OQMAuzkDALwpAwC9KQMAvhkDAL8ZAwCBGQAAgBEAAKMhAgCCLQAApSECAAjIAIAMyACApikCABDIAIAYyACAq6ECAKqtAgCtqQIArLkCAK+VAgCulQIAhEwCAL5IHQCHZB0AhuwcAONAAwAcyACA4aABACDIAIDvnAMAJMgAgCjIAIAsyACAMMgAgDTIAIA4yACAPMgAgEDIAIBEyACASMgAgEzIAIBQyACAVMgAgFjIAIDvtAEAhKgdAOF8BgBcyACA43AGAGDIAIBkyACAaMgAgGzIAICz4QEAcMgAgHTIAIB4yACAfMgAgLblAQC19QEAgMgAgLuhAQC62QEAvuQcAIjIAIC/rQEAvqUBAL2xAQC8uQEAqBUeAKkZHgCqKR4AqykeAKw9HgCtJR4Ari0eAK8lHgAUyACAgvkfAIH5HwCA4R8AhMgAgIzIAICGHAAAh7ADALjBHgC5wR4AusEeALvBHgC8wR4AvcEeAL7BHgC/wR4AsF0eALElHgCyLR4AsyUeALQhHgC1KR4AthkeALcZHgCjoR4AkMgAgJTIAICYyACAnMgAgKalHgCltR4AoMgAgKvhHgCqmR4ApMgAgKjIAICv7R4AruUeAK3xHgCs+R4ArMgAgLOZHwCwyACAtMgAgLa9HwC4yACAvMgAgLW1HwC6mR8Au5kfAMDIAIDEyACAvnkfAL95HwC8eR8AvXkfAKglHgCpUR4AqlUeAKtpHgCseR4ArXkeAK5pHgCvaR4AyMgAgMzIAIDQyACA1MgAgNjIAIDcyACA4MgAgOTIAIC42R4Aue0eALr5HgC7+R4AvOkeAL3pHgC+nR4Av5UeALAZHgCxGR4AsukeALPpHgC0+R4AtfkeALbpHgC36R4Ao90eAIIpAACBFQAAgB0AAOjIAICm+R4ApfEeAOzIAICr3R4Aqt0eAKTHAIDwyACArz0eAK49HgCtPR4ArD0eAITIAgCzQQEAvgwBAPjIAIC2QQEA/MgAgADJAIC1UQEAuk0BALslAQCGSAAAh1ABAL4lAQC/LQEAvDEBAL0xAQAEyQCACMkAgIQEAwC+gAQADMkAgO+oHwAQyQCAFMkAgL8oMQDjdB8AGMkAgOE4HgAcyQCAIMkAgCTJAIAoyQCALMkAgDDJAICjzQIANMkAgKXdAgA4yQCAPMkAgKbNAgBAyQCARMkAgKupAgCqwQIArb0CAKy9AgCvoQIArqkCAKm1AgCoaR0AqwECAKoJAgCtAQIArBkCAK8xAgCuAQIAhGwFAEjJAIBMyQCAUMkAgFTJAICCnQEAgZ0BAICdAQC55QMAuOUDALvlAwC65QMAveUDALzlAwC/5QMAvuUDALEhAgCwSQIAsyUCALIlAgC1KQIAtCECALcVAgC2FQIAqM0CAKnRAgCq0QIAqw0BAKwVAQCtBQEArgEBAK8BAQBYyQCAXMkAgGDJAIBoyQCAvvgEAGzJAIBwyQCAdMkAgLgVAQC5HQEAuikBALspAQC89QEAvf0BAL71AQC/7QEAsEkBALFVAQCyXQEAs1UBALRNAQC1NQEAtj0BALcxAQCGoAUAh8gFAHjJAIDvvAAA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t6EFALa9BQC1vQUAtL0FAKu9BgCqvQYAqb0GAKi9BgCvfQYArn0GAK19BgCsfQYAJNMAgCjTAIAs0wCAMNMAgDTTAIA40wCAPNMAgEDTAICo7R0AqS0eAKoxHgCrMR4ArJUeAK2dHgCulR4Ar40eAATTAIBE0wCASNMAgEzTAIBQ0wCAVNMAgFjTAIBc0wCAuKkeALmpHgC6XR8Au1EfALxxHwC9cR8AvnUfAL9pHwCw/R4Asc0eALLFHgCzrR4AtLkeALW5HgC2rR4At6UeALO5HgBg0wCAZNMAgGjTAICU0gCAth0eALUdHgBs0wCAuwkeALo5HgBw0wCAhOADAL99HgC+fR4AvXkeALwRHgCCaQAAo/0eAIBFAACBUQAAplkeAL6cAwB00wCApVkeAKp9HgCrTR4AhkgAAIdsAACuOR4ArzkeAKxVHgCtPR4AqF0eAKltHgCqZR4Aq30eAKxlHgCtbR4ArmUeAK/9HgB40wCAfNMAgIDTAICE0wCAiNMAgIzTAICQ0wCAlNMAgLhpAQC5aQEAunkBALt5AQC8aQEAvWkBAL7dAQC/1QEAsIUeALGNHgCyhR4As50eALSFHgC1jR4AtoUeALdZAQCz7R4AmNMAgJzTAICg0wCApNMAgLbtHgC17R4AqNMAgLtJHgC6QR4ArNMAgLDTAIC/SR4AvkEeAL1JHgC8UR4AtNMAgKOpHgC40wCAvNMAgKapHgDA0wCAxNMAgKWpHgCqBR4Aqw0eAMjTAIDM0wCArgUeAK8NHgCsFR4ArQ0eAKghAwCpIQMAqiEDAKshAwCsIQMArSEDAK4hAwCvIQMA0NMAgNTTAIDY0wCAvmACANzTAIDg0wCA6NMAgOzTAIC4iQMAuYkDALqdAwC7lQMAvLkDAL25AwC+eQAAv3kAALDlAwCx7QMAsuUDALP9AwC07QMAtd0DALbVAwC3vQMAgKkAAIG1AACCvQAAs6UDAPDTAIC1pQMAtq0DAPTTAICE4AIA+NMAgLotAwC7JQMAvD0DAL0lAwC+JQMAvxUDAKPpAwD80wCAhmgEAIeAAwAA1ACApuEDAKXpAwAE1ACAq2kDAKphAwAI1ACADNQAgK9ZAwCuaQMArWkDAKxxAwAQ1ACAFNQAgBjUAIAc1ACAINQAgOE8HwAk1ACA40AeACjUAIAs1ACAMNQAgO+MHgA01ACAONQAgDzUAIBA1ACARNQAgIIlAACBEQAAgB0AAEjUAIDj5AMATNQAgOGsAQBQ1ACA77ADAIRkAgC+YAUAhtAEAIdEBQBY1ACAXNQAgGDUAIBk1ACAaNQAgGzUAIBw1ACAdNQAgHjUAIDvsAEAhKQFAOHcHgB81ACA4xABAIDUAICE1ACAiNQAgIzUAICzUQEAkNQAgJTUAICY1ACAnNQAgLYRAQC1fQEAoNQAgLsNAQC6DQEApNQAgKjUAIC//QAAvv0AAL39AAC8/QAAqDkGAKk5BgCqmQYAq5EGAKy1BgCt0QYArskGAK/BBgBU1ACArNQAgLDUAIC01ACAgA0AAIGxAACCsQAAuNQAgLhhBwC5YQcAumEHALt9BwC8ZQcAvW0HAL5lBwC/HQcAsIkGALGJBgCyaQcAs2kHALR5BwC1eQcAtmkHALdlBwCjEQYAvNQAgMDUAIC+gAMAxNQAgKZRBgClPQYAyNQAgKtNBgCqTQYAhggAAId8AwCvvQcArr0HAK29BwCsvQcAzNQAgNDUAICzSQcA1NQAgLVZBwDY1ACA3NQAgLZRBwDg1ACA5NMAgLtBBwC6dQcAvUUHALxFBwC/RQcAvkUHAKh5BgCpeQYAqokGAKuJBgCsmQYArZkGAK6JBgCviQYA5NQAgOjUAIDs1ACA8NQAgPTUAID41ACA/NQAgADVAIC4jQYAuZUGALqVBgC7pQYAvL0GAL1xAQC+cQEAv3EBALD5BgCxzQYAstkGALPZBgC0yQYAtckGALa9BgC3tQYAowEGAATVAIAI1QCADNUAgBDVAICmGQYApREGABTVAICrCQYAqj0GABjVAIAc1QCArw0GAK4NBgCtDQYArA0GACDVAIAk1QCAKNUAgCzVAICAGQAAgRkAAIIFAAAw1QCAhKwBAL6sAQCH6AAAhkwPADjVAIA81QCAQNUAgETVAIConQIAqcUCAKrNAgCrwQIArMUCAK3NAgCu+QIArz0DAEjVAIBM1QCAUNUAgFTVAIC+PAwAWNUAgFzVAIBg1QCAuMkDALnJAwC62QMAu9EDALz5AwC9+QMAvpkDAL+ZAwCwRQMAsU0DALJFAwCzXQMAtEUDALVNAwC2RQMAt/kDALNFAgBk1QCAaNUAgGzVAIBw1QCAtk0CALVNAgB01QCAu4kDALqBAwB41QCAfNUAgL+JAwC+gQMAvYkDALyRAwCA1QCAowECAITVAICI1QCApgkCAIzVAICQ1QCApQkCAKrFAwCrzQMAlNUAgJjVAICuxQMAr80DAKzVAwCtzQMAgO0BAIEVAACCEQAAhAACAJzVAIDhpAEAoNUAgOPsAACo1QCArNUAgLDVAIDvMAAAtNUAgLjVAIC81QCAwNUAgIbgDACH9AIAxNUAgMjVAIDM1QCA0NUAgO/MBgDU1QCA4bAHANjVAIDjEAYA3NUAgODVAIDk1QCA6NUAgOzVAIDw1QCA9NUAgPjVAID81QCAANYAgATWAIAI1gCA7+gBAIUYDwDhzAYADNYAgOMcBgCAKQAAgR0AAIIFAAAQ1gCAszkCAITMDQCGaA8Ah/wMAOHQ0gO28QEAtfkBABjWAIC72QEAutEBAL7kDAAc1gCAv30BAL59AQC9fQEAvMEBAKjxDQCp8Q0AqvENAKvxDQCsMQ4ArTEOAK4xDgCvMQ4ApNUAgBTWAIAg1gCAJNYAgCjWAIAs1gCAMNYAgDTWAIC46Q4AuekOALqJDgC7hQ4AvJ0OAL2BDgC+gQ4Av7UOALBVDgCxXQ4AslUOALPpDgC0+Q4AtfkOALbpDgC34Q4Ao3kNADjWAIA81gCAQNYAgETWAICmsQ4ApbkOAEjWAICrmQ4AqpEOAEzWAIBQ1gCArz0OAK49DgCtPQ4ArIEOAFTWAICz7Q8AWNYAgFzWAIC26Q8AYNYAgGTWAIC16Q8Auq0PALu1DwA01QCAaNYAgL6VDwC/mQ8AvK0PAL2hDwCoIQ4AqSEOAKohDgCrPQ4ArCUOAK0tDgCuJQ4Ar1UOAGzWAIBw1gCAdNYAgHjWAICAHQAAgQkAAIK9AAB81gCAuDkOALk5DgC6yQ4Au8kOALzZDgC92Q4AvskOAL/JDgCwLQ4AsTUOALI9DgCzMQ4AtBUOALUZDgC2CQ4AtwkOAKOpDgCA1gCAhIACAL6AAQCFAAQApq0OAKWtDgCI1gCAq/EOAKrpDgCGKAcAhxgAAK/dDgCu0Q4AreUOAKzpDgCM1gCAs+0BAJDWAICU1gCAtuUBAJjWAICc1gCAte0BALplAQC7bQEAoNYAgKTWAIC+bQEAv10BALx1AQC9bQEAqN0NAKnpDQCqIQIAqyECAKwhAgCtIQIAriECAK8hAgCo1gCArNYAgLDWAIC01gCAohECAKMRAgCgqQ4AodUCALiJAgC5iQIAup0CALuVAgC8vQIAvXUDAL59AwC/dQMAsOUCALHtAgCy5QIAs/0CALTtAgC13QIAttUCALe9AgCjqQIAj8UaALjWAIC81gCAwNYAgKahAgClqQIAxNYAgKspAgCqIQIAyNYAgMzWAICvGQIArikCAK0pAgCsMQIAniUOAJ/lDgCc6QoAnRUKAJpFFgCbRQoAmFkWAJlRFgCWcRIAl4ETAJRVEgCV7RIAktEeAJPZHgCQtRoAkVUeAISpHwCFJR8AhiUfAIexEwDQ1gCA1NYAgIJZGwCDURsAjEUSAI2lFwCOpRcAj7kXAIA5+wHY1gCAijkTAIutEwCUmQsAlaEPAJZpDwCX3Q8A3NYAgO+cDwCSyQsAk30LAJxFAwDjeA4A4NYAgOGYDADk1gCAhHgCAJqRAwCbXQMA4QQAAL6IBQDj3OoD6NYAgOzWAIDw1gCA7+wAAO+MDgDhcA4A4fwOAOMwAADjeA4AgSEAAIA5AADvtO0DgikAALMJAgD41gCAhmgEAIcsBQD81gCAtg0CALUNAgAA1wCAu8UBALrFAQAE1wCACNcAgL99AQC+fQEAvdUBALzVAQCE1gCA9NYAgAzXAIAQ1wCAFNcAgBjXAIAc1wCAINcAgKi9BQCp5QUAquEFAKvhBQCs5QUAre0FAK7RBQCv0QUAsGEGALFhBgCyYQYAs2EGALTZBgC12QYAtskGALfBBgC4yQYAuckGALp5BwC7eQcAvEUHAL0lBwC+EQcAvw0HAKNJBQAk1wCAKNcAgCzXAIAw1wCApk0FAKVNBQA01wCAq4UGAKqFBgA41wCAPNcAgK89BgCuPQYArZUGAKyVBgBA1wCARNcAgEjXAIBM1wCAUNcAgFTXAIBY1wCAXNcAgIA5AACBOQAAggUAAGDXAIC+uAMAhLgDAGjXAIBs1wCAqMUGAKnVBgCq1QYAq+UGAKz9BgCtHQEArhUBAK8NAQBk1wCAcNcAgIaIAQCHHAEAdNcAgHjXAIB81wCAgNcAgLjpAQC56QEAuokBALuJAQC8mQEAvZkBAL6JAQC/iQEAsHUBALF9AQCydQEAs+kBALT5AQC1+QEAtukBALfhAQCzXQYAhNcAgIjXAICM1wCAhLwBALadAQC1dQYAkNcAgLu5AQC6sQEAlNcAgJjXAIC/PQEAvj0BAL09AQC8oQEA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gNwAgLYVAgC1dQIAhNwAgLs5AgC6MQIAiNwAgIzcAIC/2QEAvtEBAL0VAgC8FQIAo50FADTcAICQ3ACAlNwAgJjcAICm1QUApbUFAJzcAICr+QUAqvEFAKDcAICk3ACArxkGAK4RBgCt1QUArNUFAIBRAACBWQAAgmEAALOVBgCo3ACAtXEHALZxBwCs3ACAhkADAIdUAwC67QcAu+UHALzlBwC97QcAvtEHAL/NBwCw3ACAtNwAgLjcAIC83ACAwNwAgMTcAIDvQAQAyNwAgOEwBwDM3ACA45QEANDcAIDU3ACA2NwAgNzcAIDg3ACAoxkGAOTcAIDo3ACA7NwAgPDcAICm/QcApf0HAPTcAICraQcAqmEHAPjcAID83ACAr0EHAK5dBwCtYQcArGkHAKjNBwCp0QcAqtEHAKstBgCsNQYArT0GAK41BgCvnQYAAN0AgATdAIAI3QCADN0AgIAZAACBGQAAggUAABDdAIC4iQYAuYkGALqZBgC7kQYAvLkGAL25BgC+UQEAv1EBALDlBgCx7QYAsv0GALP1BgC02QYAtcUGALbBBgC3uQYAqNEBAKnZAQCqCQEAqwkBAKwZAQCtGQEArgkBAK8JAQCEYAEAvnwBAIeoAACGjAEAGN0AgBzdAIAg3QCAJN0AgLgJAQC5CQEAuhkBALsRAQC8OQEAvTkBAL75AAC/+QAAsH0BALFBAQCyRQEAs10BALRFAQC1TQEAtkUBALc5AQAo3QCALN0AgDDdAICzjQIANN0AgLWdAgC2lQIAON0AgDzdAIBA3QCAurUCALuJAgC8nQIAvYUCAL6NAgC/hQIAps0CAETdAIBI3QCApcUCAEzdAICj1QIAUN0AgFTdAICu1QIAr90CAKzFAgCt3QIAqu0CAKvRAgCE9AMAWN0AgKgxAwCpMQMAqjEDAKsxAwCskQAArZEAAK6RAACvjQAAXN0AgGDdAIBk3QCAaN0AgGzdAIBw3QCAdN0AgHjdAIC4vQAAuWUAALptAAC7ZQAAvH0AAL1lAAC+bQAAv2UAALD9AACxxQAAss0AALOpAAC0uQAAtaUAALahAAC3oQAAgL0BAIEJAACCGQAAfN0AgIDdAIC+WAIAhxQdAIacHQCEbB0AxNsAgIjdAICM3QCAvrwcAJDdAICU3QCAmN0AgLP5AgCc3QCAoN0AgKTdAICo3QCA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gQkAAIIdAABM4gCA4cgGAFDiAIDjSAQAVOIAgKO1BgBY4gCAhigAAIdAAQBc4gCAptkGAKXRBgBg4gCAqyEGAKrNBgBk4gCAaOIAgK8pBgCuIQYArSkGAKw1BgBs4gCAs70BAHDiAIB04gCAtnkBAHjiAIB84gCAtXkBALpVAQC7XQEAgOIAgITiAIC++QAAv/kAALxFAQC9+QAAqHECAKlxAgCqcQIAq3ECAKy1AgCtvQIArrUCAK+tAgC+rDwAiOIAgIziAICQ4gCAlOIAgJjiAICc4gCAoOIAgLhpAwC5aQMAugkDALsJAwC8HQMAvQUDAL4NAwC/BQMAsNUCALHdAgCy1QIAs2kDALR5AwC1eQMAtmkDALdhAwCk4gCAqOIAgKziAICj9QIAsOIAgKUxAgCmMQIAtOIAgLjiAIC84gCAqh0CAKsVAgCsDQIArbEDAK6xAwCvsQMA7xgCAIIVAACBbQAAgG0AAMDiAIDI4gCAhvg8AIcYAwDM4gCA0OIAgNTiAIDY4gCA42wHAAThAIDhaAEA3OIAgKiFAgCplQIAqpUCAKulAgCsvQIArdUCAK7RAgCv0QIA4OIAgOTiAIDo4gCA7OIAgPDiAID04gCA+OIAgPziAIC4dQEAuX0BALp1AQC7zQEAvNUBAL3dAQC+yQEAv8EBALC1AgCxvQIAsoECALOBAgC0VQEAtV0BALZVAQC3TQEA4bQGAADjAIDj9AYABOMAgIQYPQAI4wCADOMAgBDjAIAU4wCAGOMAgBzjAIAg4wCAJOMAgCjjAIDvWAYALOMAgIF9AACAcQAAMOMAgIIFAAA44wCAPOMAgO+AAQC+VDwA4ZABAEDjAIDjfAYAROMAgEjjAIBM4wCAhtg8AIf0PACjnT0AxOIAgDTjAIBQ4wCAVOMAgKbVPQCltT0AWOMAgKv5PQCq8T0AXOMAgGDjAICvGT4ArhE+AK3VPQCs1T0AZOMAgLOhPgBo4wCAbOMAgLatPgBw4wCAdOMAgLWxPgC6ST8Au0k/AHjjAIB84wCAvkk/AL9JPwC8ST8AvUk/AKhVPgCpZT4Aqm0+AKtlPgCsfT4ArWk+AK65PwCvuT8AgOMAgITjAICI4wCAjOMAgJDjAICU4wCAmOMAgJzjAIC4VT8AuV0/ALpVPwC7bT8AvHU/AL19PwC+dT8Av20/ALDJPwCxyT8A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rjUCAK1VAgCsVQIAPOcAgEDnAIBE5wCASOcAgEznAIBQ5wCAVOcAgO/4AQC+bAQA4YAOAFjnAIDjFAEAXOcAgGDnAIBk5wCAaOcAgGznAIBw5wCAdOcAgLPdAQB45wCAtf0BALb1AQB85wCAgOcAgITnAIC6sQEAu4UBALydAQC9NQEAvj0BAL81AQCpBQYAqLkFAKsVBgCqHQYArT0GAKw9BgCvTQYArl0GACTnAICCHQAAgR0AAIAdAACI5wCAjOcAgJDnAICU5wCAuUEHALidBgC7QQcAukkHAL1FBwC8WQcAv0UHAL5FBwCxCQYAsD0GALOpBgCyAQYAtbkGALSxBgC3rQYAtrEGAKORBgCEjAIAhigAAIfAAwCY5wCAprkGAKWxBgCc5wCAq8kGAKr9BgCg5wCApOcAgK95BgCucQYArXkGAKzRBgCo5wCAs5kHAKznAICw5wCAtlEHALTnAIC45wCAtbEHALptBwC7dQcAvOcAgMDnAIC+WQcAv0UHALxtBwC9ZQcAxOcAgMjnAIDM5wCA0OcAgNTnAIDY5wCA3OcAgO+oBQDg5wCA4TQFAOTnAIDjdAUA6OcAgOznAIDw5wCA9OcAgKMdBgCCLQAAgRUAAIAdAAD45wCAptUGAKU1BgD85wCAq/EGAKrpBgAA6ACAhCgBAK/BBgCu3QYAreEGAKzpBgCoxQYAqdUGAKrVBgCr5QYArP0GAK0VBgCuHQYArxUGAL7sAQAI6ACAhggAAIcgAAAM6ACAEOgAgBToAIAY6ACAuH0GALkFBgC6DQYAuwUGALwBBgC9CQYAvjkGAL85BgCwbQYAsXUGALJ9BgCzdQYAtFkGALVFBgC2TQYAt0UGAKiRAgCpmQIAqqECAKuhAgCs0QIArd0CAK7VAgCvyQIAHOgAgCDoAIAk6ACAvyweACjoAIAs6ACAMOgAgDToAIC4VQMAuV0DALppAwC7ZQMAvGEDAL1hAwC+YQMAv2EDALC5AgCxjQIAsoUCALNtAwC0dQMAtX0DALZ1AwC3bQMAOOgAgDzoAICzIQIAQOgAgLVRAgCEiAMAROgAgLZVAgC05gCAvigcALtBAgC6dQIAvbEDALxZAgC/sQMAvrkDAKNpAgBI6ACATOgAgFDoAIBU6ACAph0CAKUZAgBY6ACAqwkCAKo9AgBc6ACAYOgAgK/5AwCu8QMA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hLkHAIW5BwCG2QcAh9kHAIjpBwCJ6QcAivkHAIv5BwCM6QcAjekHAI7RBwCP0QcAkLEHAJGxBwCSSQEAk0kBAJRZAQCVWQEAlkkBAJdJAQCYeQEAmXkBAJpJAQCbSQEAnFkBAJ1ZAQCeSQEAn0kBAKC5AQChuQEAoskBAKPJAQCk2QEApdkBAKbJAQCnyQEAqPkBAKn5AQCqyQEAq8kBAKzZAQCt2QEArskBAK/JAQCwuQEAsbkBALJJAQCzSQEAtFkBALVZAQC2SQEAt0kBALh5AQC5eQEAukkBALtJAQC8WQEAvVkBAL5JAQC/SQEA0jEAgNYxAIDaMQCAkjIAgNoyAIDmMgCA6jIAgO4yAIDyMgCA+jIAgP4yAIASMwCALjMAgDYzAIB2MwCAejMAgIIzAICGMwCAjjMAgJIzAIC2MwCAujMAgNYzAIDaMwCA3jMAgOIzAID2MwCAGjQAgB40AIAiNACARjQAgIY0AICKNACAqjQAgLo0AIDCNACA4jQAgAY1AIBKNQCAUjUAgGY1AIByNQCAejUAgII1AICGNQCAijUAgKI1AICmNQCAwjUAgMo1AIDSNQCA1jUAgOI1AIDqNQCA7jUAgPI1AID6NQCA/jUAgJ42AICyNgCAnoUMAOY2AIDqNgCA8jYAgIC5AwCBuQMAgskDAIPJAwCE2QMAhdkDAIbJAwCHyQMAiPkDAIn5AwCKyQMAi8kDAIzZAwCN2QMAjs0DAI/FAwCQvQMAkQEMAJJJDgCTSQ4AlFkOAJVZDgCWSQ4Al0kOAJh5DgCZeQ4AmkkOAJtJDgCcWQ4AnVkOAJ5JDgCfSQ4AoLkOAKG5DgCiyQ4Ao8kOAKTZDgCl2Q4ApskOAKfJDgCo+Q4AqfkOAKrJDgCryQ4ArNkOAK3ZDgCuyQ4Ar8kOALC5DgCxuQ4AskkOALNJDgC0WQ4AtVkOALZJDgC3SQ4AuHkOALl5DgC6SQ4Au0kOALxZDgC9WQ4AvkkOAL9JDgC8eQQAvXkEAL6JBAC/nQQAuHUEALl9BAC6aQQAu2kEALRxBAC1cQQAtnEEALdxBACwcQQAsXEEALJxBACzcQQArGkEAK1pBACucQQAr3EEAKhBBACpQQQAqkEEAKtBBACknQUApWEEAKZhBACnYQQAoJ0FAKGFBQCijQUAo4UFAJxdBQCdZQUAnm0FAJ9lBQCYXQUA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NAYAgEsGAIBoBgCAfwYAgJYGAIDdAwCA9gMAgA8EAIASBwCAQQgAgD4IAIA/BwCAOSQAgHIkAICjJACAyCQAgLkmAIDEJgCAyCYAgMwmAIDQJgCALygAgG4oAICWKACAmigAgL8oAIDHKACA4ygAgPUoAID5KACA/SgAgLrp0wAVKQCAMCkAgEspAIA9JACASiQAgFckAIBkJACAdiQAgIMkAICVJACApyQAgLckAIDMJACA1iQAgOQkAIDuJACA+yQAgAwlAIAWJQCAbyUAgHYlAIAkJQCAgBkDAIEZAwCCKQMAgykDAIQ5AwCFOQMAhikDAIcpAwCIGQMAiRkDAIppAwCLaQMAjHkDAI15AwCOaQMAj2kDAJAZAwCRGQMAkgEEAJMtAwCUNQMAlVUGAJZdBgCXVQYAmG0GAJl1BgCafQYAm3UGAJxtBgCdNQYAnj0GAJ81BgCgzQYAodUGAKLdBgCj1QYApPkDAKX5AwCm6QMAp+kDAKjZAwCp+QYAqikGAKspBgCsOQYArTkGAK7FAwCvPQMAsEUDALFNAwCyRQMAs10DALRFAwC1TQMAtkUDALd9AwC4SQMAuUkDALpZAwC7fQYAvGUGAL1tBgC+ZQYAgCUAgKkVDwCoAQ8Aq00PAKpNDwCtRQ8ArEUPAK+hDQCuqQ0AoXULAKBhCwCj7QsAoqkLAKXlCwCk5QsApzkPAKZZCAC5oQ0AuJkNALuhDQC6qQ0AvaENALy5DQAxJQCAvqkNALGhDQCw2Q0As6ENALKpDQC1oQ0AtLkNALehDQC2qQ0AOCUAgEglAIBbJQCAsiUAgLwlAICRJQCAoSUAgNAlAICB7Q0AgO0NAIP9DQCC/Q0Ahe0NAITtDQCH2Q0AhiEYAJlNDQCYTQ0Am1ENAJpdDQCdeQ0AnHUNAJ9pDQCecQ0AkYkNAJCBDQCTmQ0AkoENAJWJDQCUgQ0Al30NAJaBDQDgJACAICUAgI0lAIDMJQCA3iUAgAgmAIAtJgCAQiYAgPAlAID6JQCADCYAgBkmAIAxJgCATiYAgFgmAIB2JgCASiYAgGYmAIBuJgCAgCYAgIwmAICUJgCAoyYAgN4mAICcJgCAsiYAgKcmAIC9JgCA1CYAgOImAIABJwCAEScAgBsnAIBPJwCAkicAgOcnAIBPKQCAXSkAgGEpAIBlKQCA8CYAgC4nAIA+JwCASCcAgCMnAIBTJwCAYycAgH4nAIBwJwCAlicAgMInAIDJJwCApicAgNMnAIDdJwCAtCcAgBgoAIAKKACA6ycAgCUoAIDyJwCA/CcAgDMoAIBAKACASigAgFQoAIBeKACAcigAgH8oAICGKACAnigAgKUoAICyKACAyygAgNUoAIDnKACAASkAgA4pAIAZKQCAIykAgDQpAIA7KQCAUykAgMMDAIDmBACAhQUAgNgFAIATBgCAOQYAgFAGAIBtBgCAhAYAgJsGAIDjAwCA/AMAgBUEAIAoBACAOwQAgE4EAIBhBACAdAQAgIcEAICaBACAAAUAgA8FAIAeBQCALQUAgDwFAIBjCACAJAgAgMEGAID8BwCAHQkAgOMoEwAzCQCAKggAgC0IAIAxCACAJAcAgNwuAIDKMACA2S0AgLswAIBFMQCAJwkAgO/sEwAGCQCA3A0AgM8IAICDCACAMQcAgEwHAID8BgCACggAgJQIAIAqCQCACQkAgOANAIDsDQCA2wgAgJkIAIAVBwCAhggAgFUHAID/BgCApgcAgJEkAIDwDQCA4ggAgCcIAICcCACAWAgAgBUJAID0DQCA5QgAgBQIAICfCACA6AgAgBcIAIDJCACAoggAgOwIAIAbCACAzAgAgKYIAID3CACA/QgAgIgHAICKCACAWQcAgAMHAIA9CQCAQQkAgEkJAIA2CQCAGAkAgPgNAID0CACALQkAgAwJAIDkDQCA0ggAgI4IAIBdBwCAMAkAgA8JAIDoDQCA1QgAgJEIAIBgBwCArQgAgGMHAIDjSBIA4xQSAOP4EwDjuBMA4+wSAOOgEgDjbBIA43gSAO/ADQDv2A0A73QSAO9QEgDvqBIA79wSAO8oEwDvIBMA6QcAgMwGAIAOCACAEQgAgNgGAIDUBgCAIQgAgAcHAIBnCACADAcAgHYIAIA0BwCANwcAgKoIAIC2CACAuQgAgOPYEADjoBAA46AQAON0EQDjNBAA4wgQAOPkEADj9BAA77wQAO/gEADvzBAA7zgQAO8QEADvcBAA73AQAO9MEADjhBMA4+gTAOMwEADjEBAA42ATAONAEwDjpBMA47QTAO/IEwDvtBMA75gTAO98EwDvXBMA70wTAO8UEwDv6BAAgO08AIH1PACC/TwAg/U8AITtPACFFT0Ahh09AIcVPQCILT0AiTU9AIo9PQCLNT0AjC09AI0VPQCOHT0AjxU9AJBtPQCRdT0Akn09AJN1PQCUbT0AlRU9AJYdPQCXFT0AmC09AJk1PQCaPT0AmzU9AJwtPQCdFT0Anh09AJ8VPQCg7T0AofU9AKL9PQCj9T0ApO09AKUVPQCmHT0ApxU9AKgtPQCpNT0Aqj09AKs1PQCsLT0ArRU9AK4dPQCvFT0AsG09ALF1PQCyfT0As3U9ALRtPQC1FT0AthE9ALcRPQC4MT0AuTE9ALoxPQC7MT0AvBE9AL0RPQC+ET0AvxE9AIDxPACB/TwAgvU8AIMNPwCEFT8AhR0/AIYVPwCHDT8AiDU/AIk9PwCKNT8Aiw0/AIwVPwCNHT8AjhU/AI8NPwCQdT8AkX0/AJJ1PwCTDT8AlBU/AJUZPwCWCT8Alwk/AJg5PwCZOT8Amgk/AJsJPwCcGT8AnRk/AJ4JPwCfCT8AoPk/AKH5PwCiCT8Aowk/AKQZPwClGT8Apgk/AKcJPwCoOT8AqTk/AKoJPwCrCT8ArBk/AK0ZPwCuCT8Arwk/ALB5PwCxeT8Asgk/ALMJPwC0GT8AtRk/ALYJPwC3CT8AuDk/ALk5PwC6CT8Auwk/ALwZPwC9GT8Avgk/AL8JPwCA+TwAgfk8AIJJPQCDST0AhFk9AIVZPQCGST0Ah0k9AIh5PQCJeT0Aikk9AItJPQCMWT0AjVk9AI5JPQCPST0AkDk9AJE5PQCSAQQAk00GAJRVBgCVXQYAllUGAJdNBgCYdQYAmX0GAJp1BgCbTQYAnFUGAJ1dBgCeVQYAn00GAKC1BgChvQYAorUGAKPNBgCk1QYApd0GAKbVBgCnzQYAqPUGAKn9BgCq9QYAq80GAKzVBgCt3QYArtUGAK/NBgCwtQYAsb0GALK1BgCzTQYAtFUGALVdBgC2VQYAt00GALh1BgC5fQYAunUGALtNBgC8VQYAvV0GAL5VBgC/TQYArH0/AK2lPwCurT8Ar6U/AKh9PwCpZT8Aqm0/AKtlPwCkHT8ApUU/AKZNPwCnRT8AoB0/AKEFPwCiDT8AowU/ALydPwC9pT8Avq0/AL+lPwC4nT8AuYU/ALqNPwC7hT8AtN0/ALWlPwC2rT8At6U/ALDdPwCxxT8Ass0/ALPFPwCMZToAjW06AI5lOgCPfToAiEU6AIlNOgCKRToAi306AIRlOgCFbToAhmU6AId9OgCABToA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ACDZjgAg2Y7ZkQAg2Y8AINmP2ZEAINmQACDZkNmRACDZkQAg2ZHZsAAg2ZIAIOOCmQAg44KaACEAISEAIT8AIgAjACQAJQAmACcAKAAoMSkAKDEwKQAoMTEpACgxMikAKDEzKQAoMTQpACgxNSkAKDE2KQAoMTcpACgxOCkAKDE5KQAoMikAKDIwKQAoMykAKDQpACg1KQAoNikAKDcpACg4KQAoOSkAKEEpAChCKQAoQykAKEQpAChFKQAoRikAKEcpAChIKQAoSSkAKEopAChLKQAoTCkAKE0pAChOKQAoTykAKFApAChRKQAoUikAKFMpAChUKQAoVSkAKFYpAChXKQAoWCkAKFkpAChaKQAoYSkAKGIpAChjKQAoZCkAKGUpAChmKQAoZykAKGgpAChpKQAoaikAKGspAChsKQAobSkAKG4pAChvKQAocCkAKHEpAChyKQAocykAKHQpACh1KQAodikAKHcpACh4KQAoeSkAKHopACjhhIApACjhhIIpACjhhIMpACjhhIUpACjhhIYpACjhhIcpACjhhIkpACjhhIspACjhhIwpACjhhI4pACjhhI8pACjhhJApACjhhJEpACjhhJIpACjkuIApACjkuIMpACjkuIkpACjkuZ0pACjkuowpACjkupQpACjku6MpACjkvIEpACjkvJEpACjlhaspACjlha0pACjlirQpACjljYEpACjljZQpACjlkI0pACjlkbwpACjlm5spACjlnJ8pACjlraYpACjml6UpACjmnIgpACjmnIkpACjmnKgpACjmoKopACjmsLQpACjngaspACjnibkpACjnm6MpACjnpL4pACjnpZ0pACjnpa0pACjoh6opACjoh7MpACjosqEpACjos4cpACjph5EpACjqsIApACjrgpgpACjri6QpACjrnbwpACjrp4gpACjrsJQpACjsgqwpACjslYQpACjsmKTsoIQpACjsmKTtm4QpACjsnpApACjso7wpACjssKgpACjsubQpACjtg4ApACjtjIwpACjtlZgpACkAKgArACwALQAuAC4uAC4uLgAvADAAMCwAMC4AMOKBhDMAMOeCuQAxADEsADEuADEwADEwLgAxMOaXpQAxMOaciAAxMOeCuQAxMQAxMS4AMTHml6UAMTHmnIgAMTHngrkAMTIAMTIuADEy5pelADEy5pyIADEy54K5ADEzADEzLgAxM+aXpQAxM+eCuQAxNAAxNC4AMTTml6UAMTTngrkAMTUAMTUuADE15pelADE154K5ADE2ADE2LgAxNuaXpQAxNueCuQAxNwAxNy4AMTfml6UAMTfngrkAMTgAMTguADE45pelADE454K5ADE5ADE5LgAxOeaXpQAxOeeCuQAx4oGEADHigYQxMAAx4oGEMgAx4oGEMwAx4oGENAAx4oGENQAx4oGENgAx4oGENwAx4oGEOAAx4oGEOQAx5pelADHmnIgAMeeCuQAyADIsADIuADIwADIwLgAyMOaXpQAyMOeCuQAyMQAyMeaXpQAyMeeCuQAyMgAyMuaXpQAyMueCuQAyMwAyM+aXpQAyM+eCuQAyNAAyNOaXpQAyNOeCuQAyNQAyNeaXpQAyNgAyNuaXpQAyNwAyN+aXpQAyOAAyOOaXpQAyOQAyOeaXpQAy4oGEMwAy4oGENQAy5pelADLmnIgAMueCuQAzADMsADMuADMwADMw5pelADMxADMx5pelADMyADMzADM0ADM1ADM2ADM3ADM4ADM5ADPigYQ0ADPigYQ1ADPigYQ4ADPml6UAM+aciAAz54K5ADQANCwANC4ANDAANDEANDIANDMANDQANDUANDYANDcANDgANDkANOKBhDUANOaXpQA05pyIADTngrkANQA1LAA1LgA1MAA14oGENgA14oGEOAA15pelADXmnIgANeeCuQA2ADYsADYuADbml6UANuaciAA254K5ADcANywANy4AN+KBhDgAN+aXpQA35pyIADfngrkAOAA4LAA4LgA45pelADjmnIgAOOeCuQA5ADksADkuADnml6UAOeaciAA554K5ADoAOjo9ADsAPAA9AD09AD09PQA+AD8APyEAPz8AQABBAEFVAEHiiJVtAEIAQnEAQwBDRABDby4AQ+KIlWtnAEQAREoARFoARHoARMW9AETFvgBFAEYARkFYAEcAR0IAR0h6AEdQYQBHeQBIAEhQAEhWAEhnAEh6AEkASUkASUlJAElKAElVAElWAElYAEoASwBLQgBLSwBLTQBMAExKAExURABMagBMwrcATQBNQgBNQwBNRABNSHoATVBhAE1WAE1XAE3OqQBOAE5KAE5qAE5vAE8AUABQSABQUE0AUFBWAFBSAFBURQBQYQBRAFIAUnMAUwBTRABTTQBTUwBTdgBUAFRFTABUSHoAVE0AVQBWAFZJAFZJSQBWSUlJAFbiiJVtAFcAV0MAV1oAV2IAWABYSQBYSUkAWQBaAFsAXABdAF4AXwBgAGEAYS5tLgBhL2MAYS9zAGHKvgBiAGJhcgBjAGMvbwBjL3UAY2FsAGNjAGNkAGNtAGNtMgBjbTMAZABkQgBkYQBkbABkbQBkbTIAZG0zAGR6AGTFvgBlAGVWAGVyZwBmAGZmAGZmaQBmZmwAZmkAZmwAZm0AZwBnYWwAaABoUGEAaGEAaQBpaQBpaWkAaWoAaW4AaXYAaXgAagBrAGtBAGtIegBrUGEAa1YAa1cAa2NhbABrZwBrbABrbQBrbTIAa20zAGt0AGvOqQBsAGxqAGxtAGxuAGxvZwBseABswrcAbQBtMgBtMwBtQQBtVgBtVwBtYgBtZwBtaWwAbWwAbW0AbW0yAG1tMwBtb2wAbXMAbeKIlXMAbeKIlXMyAG4AbkEAbkYAblYAblcAbmoAbm0AbnMAbwBvVgBwAHAubS4AcEEAcEYAcFYAcFcAcGMAcHMAcQByAHJhZAByYWTiiJVzAHJhZOKIlXMyAHMAc3IAc3QAdAB1AHYAdmkAdmlpAHZpaWkAdwB4AHhpAHhpaQB5AHoAewB8AH0AwqIAwqMAwqUAwqYAwqwAwrBDAMKwRgDCtwDDgADDgQDDggDDgwDDhADDhQDDhgDDhwDDiADDiQDDigDDiwDDjADDjQDDjgDDjwDDkQDDkgDDkwDDlADDlQDDlgDDmQDDmgDDmwDDnADDnQDDoADDoQDDogDDowDDpADDpQDDpwDDqADDqQDDqgDDqwDDrADDrQDDrgDDrwDDsADDsQDDsgDDswDDtADDtQDDtgDDuQDDugDDuwDDvADDvQDDvwDEgADEgQDEggDEgwDEhADEhQDEhgDEhwDEiADEiQDEigDEiwDEjADEjQDEjgDEjwDEkgDEkwDElADElQDElgDElwDEmADEmQDEmgDEmwDEnADEnQDEngDEnwDEoADEoQDEogDEowDEpADEpQDEpgDEpwDEqADEqQDEqgDEqwDErADErQDErgDErwDEsADEsQDEtADEtQDEtgDEtwDEuQDEugDEuwDEvADEvQDEvgDFgwDFhADFhQDFhgDFhwDFiADFiwDFjADFjQDFjgDFjwDFkADFkQDFkwDFlADFlQDFlgDFlwDFmADFmQDFmgDFmwDFnADFnQDFngDFnwDFoADFoQDFogDFowDFpADFpQDFqADFqQDFqgDFqwDFrADFrQDFrgDFrwDFsADFsQDFsgDFswDFtADFtQDFtgDFtwDFuADFuQDFugDFuwDFvADFvQDFvgDGjgDGkADGoADGoQDGqwDGrwDGsADHjQDHjgDHjwDHkADHkQDHkgDHkwDHlADHlQDHlgDHlwDHmADHmQDHmgDHmwDHnADHngDHnwDHoADHoQDHogDHowDHpgDHpwDHqADHqQDHqgDHqwDHrADHrQDHrgDHrwDHsADHtADHtQDHuADHuQDHugDHuwDHvADHvQDHvgDHvwDIgADIgQDIggDIgwDIhADIhQDIhgDIhwDIiADIiQDIigDIiwDIjADIjQDIjgDIjwDIkADIkQDIkgDIkwDIlADIlQDIlgDIlwDImADImQDImgDImwDIngDInwDIogDIpgDIpwDIqADIqQDIqgDIqwDIrADIrQDIrgDIrwDIsADIsQDIsgDIswDItwDJkADJkQDJkgDJlADJlQDJmQDJmwDJnADJnwDJoQDJowDJpQDJpgDJqADJqQDJqgDJqwDJrQDJrwDJsADJsQDJsgDJswDJtADJtQDJuADJuQDJuwDKgQDKggDKgwDKiQDKigDKiwDKjADKkADKkQDKkgDKlQDKnQDKnwDKuQDKvG4AzIAAzIEAzIjMgQDMkwDOhgDOiADOiQDOigDOjADOjgDOjwDOkADOkQDOkgDOkwDOlADOlQDOlgDOlwDOmADOmQDOmgDOmwDOnADOnQDOngDOnwDOoADOoQDOowDOpADOpQDOpgDOpwDOqADOqQDOqgDOqwDOrADOrQDOrgDOrwDOsADOsQDOsgDOswDOtADOtQDOtgDOtwDOuADOuQDOugDOuwDOvADOvEEAzrxGAM68VgDOvFcAzrxnAM68bADOvG0AzrxzAM69AM6+AM6/AM+AAM+BAM+CAM+DAM+EAM+FAM+GAM+HAM+IAM+JAM+KAM+LAM+MAM+NAM+OAM+cAM+dANCAANCBANCDANCHANCMANCNANCOANCZANC5ANC9ANGKANGMANGQANGRANGTANGXANGcANGdANGeANG2ANG3ANOBANOCANOQANORANOSANOTANOWANOXANOaANObANOcANOdANOeANOfANOiANOjANOkANOlANOmANOnANOqANOrANOsANOtANOuANOvANOwANOxANOyANOzANO0ANO1ANO4ANO5ANWl1oIA1bTVpQDVtNWrANW01a0A1bTVtgDVvtW2ANeQANeQ1rcA15DWuADXkNa8ANeQ15wA15EA15HWvADXkda/ANeSANeS1rwA15MA15PWvADXlADXlNa8ANeV1rkA15XWvADXlta8ANeY1rwA15nWtADXmda8ANea1rwA15sA15vWvADXm9a/ANecANec1rwA150A157WvADXoNa8ANeh1rwA16IA16PWvADXpNa8ANek1r8A16bWvADXp9a8ANeoANeo1rwA16nWvADXqda814EA16nWvNeCANep14EA16nXggDXqgDXqta8ANey1rcA2KEA2KIA2KMA2KQA2KUA2KYA2KbYpwDYptisANim2K0A2KbYrgDYptixANim2LIA2KbZhQDYptmGANim2YcA2KbZiADYptmJANim2YoA2KbbhgDYptuHANim24gA2KbbkADYptuVANinANin2YPYqNixANin2YTZhNmHANin2YsA2KfZtADYqADYqNisANio2K0A2KjYrdmKANio2K4A2KjYrtmKANio2LEA2KjYsgDYqNmFANio2YYA2KjZhwDYqNmJANio2YoA2KkA2KoA2KrYrADYqtis2YUA2KrYrNmJANiq2KzZigDYqtitANiq2K3YrADYqtit2YUA2KrYrgDYqtiu2YUA2KrYrtmJANiq2K7ZigDYqtixANiq2LIA2KrZhQDYqtmF2KwA2KrZhditANiq2YXYrgDYqtmF2YkA2KrZhdmKANiq2YYA2KrZhwDYqtmJANiq2YoA2KsA2KvYrADYq9ixANir2LIA2KvZhQDYq9mGANir2YcA2KvZiQDYq9mKANisANis2K0A2KzYrdmJANis2K3ZigDYrNmEINis2YTYp9mE2YcA2KzZhQDYrNmF2K0A2KzZhdmJANis2YXZigDYrNmJANis2YoA2K0A2K3YrADYrdis2YoA2K3ZhQDYrdmF2YkA2K3ZhdmKANit2YkA2K3ZigDYrgDYrtisANiu2K0A2K7ZhQDYrtmJANiu2YoA2K8A2LAA2LDZsADYsQDYsdiz2YjZhADYsdmwANix24zYp9mEANiyANizANiz2KwA2LPYrNitANiz2KzZ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AOGEjQDhhI4A4YSPAOGEkADhhJEA4YSSAOGElADhhJUA4YSaAOGEnADhhJ0A4YSeAOGEoADhhKEA4YSiAOGEowDhhKcA4YSpAOGEqwDhhKwA4YStAOGErgDhhK8A4YSyAOGEtgDhhYAA4YWHAOGFjADhhZcA4YWYAOGFmQDhhaAA4YWhAOGFogDhhaMA4YWkAOGFpQDhhaYA4YWnAOGFqADhhakA4YWqAOGFqwDhhawA4YWtAOGFrgDhha8A4YWwAOGFsQDhhbIA4YWzAOGFtADhhbUA4YaEAOGGhQDhhogA4YaRAOGGkgDhhpQA4YaeAOGGoQDhhqoA4YasAOGGrQDhhrAA4YaxAOGGsgDhhrMA4Ya0AOGGtQDhh4cA4YeIAOGHjADhh44A4YeTAOGHlwDhh5kA4YedAOGHnwDhh7EA4YeyAOGshgDhrIgA4ayKAOGsjADhrI4A4aySAOGsuwDhrL0A4a2AAOGtgQDhrYMA4bSCAOG0lgDhtJcA4bScAOG0nQDhtKUA4bW7AOG2hQDhuIAA4biBAOG4ggDhuIMA4biEAOG4hQDhuIYA4biHAOG4iADhuIkA4biKAOG4iwDhuIwA4biNAOG4jgDhuI8A4biQAOG4kQDhuJIA4biTAOG4lADhuJUA4biWAOG4lwDhuJgA4biZAOG4mgDhuJsA4bicAOG4nQDhuJ4A4bifAOG4oADhuKEA4biiAOG4owDhuKQA4bilAOG4pgDhuKcA4bioAOG4qQDhuKoA4birAOG4rADhuK0A4biuAOG4rwDhuLAA4bixAOG4sgDhuLMA4bi0AOG4tQDhuLYA4bi3AOG4uADhuLkA4bi6AOG4uwDhuLwA4bi9AOG4vgDhuL8A4bmAAOG5gQDhuYIA4bmDAOG5hADhuYUA4bmGAOG5hwDhuYgA4bmJAOG5igDhuYsA4bmMAOG5jQDhuY4A4bmPAOG5kADhuZEA4bmSAOG5kwDhuZQA4bmVAOG5lgDhuZcA4bmYAOG5mQDhuZoA4bmbAOG5nADhuZ0A4bmeAOG5nwDhuaAA4bmhAOG5ogDhuaMA4bmkAOG5pQDhuaYA4bmnAOG5qADhuakA4bmqAOG5qwDhuawA4bmtAOG5rgDhua8A4bmwAOG5sQDhubIA4bmzAOG5tADhubUA4bm2AOG5twDhubgA4bm5AOG5ugDhubsA4bm8AOG5vQDhub4A4bm/AOG6gADhuoEA4bqCAOG6gwDhuoQA4bqFAOG6hgDhuocA4bqIAOG6iQDhuooA4bqLAOG6jADhuo0A4bqOAOG6jwDhupAA4bqRAOG6kgDhupMA4bqUAOG6lQDhupYA4bqXAOG6mADhupkA4bqgAOG6oQDhuqIA4bqjAOG6pADhuqUA4bqmAOG6pwDhuqgA4bqpAOG6qgDhuqsA4bqsAOG6rQDhuq4A4bqvAOG6sADhurEA4bqyAOG6swDhurQA4bq1AOG6tgDhurcA4bq4AOG6uQDhuroA4bq7AOG6vADhur0A4bq+AOG6vwDhu4AA4buBAOG7ggDhu4MA4buEAOG7hQDhu4YA4buHAOG7iADhu4kA4buKAOG7iwDhu4wA4buNAOG7jgDhu48A4buQAOG7kQDhu5IA4buTAOG7lADhu5UA4buWAOG7lwDhu5gA4buZAOG7mgDhu5sA4bucAOG7nQDhu54A4bufAOG7oADhu6EA4buiAOG7owDhu6QA4bulAOG7pgDhu6cA4buoAOG7qQDhu6oA4burAOG7rADhu60A4buuAOG7rwDhu7AA4buxAOG7sgDhu7MA4bu0AOG7tQDhu7YA4bu3AOG7uADhu7kA4byAAOG8gQDhvIIA4byDAOG8hADhvIUA4byGAOG8hwDhvIgA4byJAOG8igDhvIsA4byMAOG8jQDhvI4A4byPAOG8kADhvJEA4bySAOG8kwDhvJQA4byVAOG8mADhvJkA4byaAOG8mwDhvJwA4bydAOG8oADhvKEA4byiAOG8owDhvKQA4bylAOG8pgDhvKcA4byoAOG8qQDhvKoA4byrAOG8rADhvK0A4byuAOG8rwDhvLAA4byxAOG8sgDhvLMA4by0AOG8tQDhvLYA4by3AOG8uADhvLkA4by6AOG8uwDhvLwA4by9AOG8vgDhvL8A4b2AAOG9gQDhvYIA4b2DAOG9hADhvYUA4b2IAOG9iQDhvYoA4b2LAOG9jADhvY0A4b2QAOG9kQDhvZIA4b2TAOG9lADhvZUA4b2WAOG9lwDhvZkA4b2bAOG9nQDhvZ8A4b2gAOG9oQDhvaIA4b2jAOG9pADhvaUA4b2mAOG9pwDhvagA4b2pAOG9qgDhvasA4b2sAOG9rQDhva4A4b2vAOG9sADhvbIA4b20AOG9tgDhvbgA4b26AOG9vADhvoAA4b6BAOG+ggDhvoMA4b6EAOG+hQDhvoYA4b6HAOG+iADhvokA4b6KAOG+iwDhvowA4b6NAOG+jgDhvo8A4b6QAOG+kQDhvpIA4b6TAOG+lADhvpUA4b6WAOG+lwDhvpgA4b6ZAOG+mgDhvpsA4b6cAOG+nQDhvp4A4b6fAOG+oADhvqEA4b6iAOG+owDhvqQA4b6lAOG+pgDhvqcA4b6oAOG+qQDhvqoA4b6rAOG+rADhvq0A4b6uAOG+rwDhvrAA4b6xAOG+sgDhvrMA4b60AOG+tgDhvrcA4b64AOG+uQDhvroA4b68AOG/ggDhv4MA4b+EAOG/hgDhv4cA4b+IAOG/igDhv4wA4b+QAOG/kQDhv5IA4b+WAOG/lwDhv5gA4b+ZAOG/mgDhv6AA4b+hAOG/ogDhv6QA4b+lAOG/pgDhv6cA4b+oAOG/qQDhv6oA4b+sAOG/sgDhv7MA4b+0AOG/tgDhv7cA4b+4AOG/ugDhv7wA4oCQAOKAkwDigJQA4oCy4oCyAOKAsuKAsuKAsgDigLLigLLigLLigLIA4oC14oC1AOKAteKAteKAtQDigqkA4oaQAOKGkQDihpIA4oaTAOKGmgDihpsA4oauAOKHjQDih44A4oePAOKIggDiiIQA4oiHAOKIiQDiiIwA4oiRAOKIkgDiiKQA4oimAOKIq+KIqwDiiKviiKviiKsA4oir4oir4oir4oirAOKIruKIrgDiiK7iiK7iiK4A4omBAOKJhADiiYcA4omJAOKJoADiiaIA4omtAOKJrgDiia8A4omwAOKJsQDiibQA4om1AOKJuADiibkA4oqAAOKKgQDiioQA4oqFAOKKiADiiokA4oqsAOKKrQDiiq4A4oqvAOKLoADii6EA4ouiAOKLowDii6oA4ourAOKLrADii60A4pSCAOKWoADil4sA4qaFAOKmhgDiq53MuADitaEA44CBAOOAggDjgIgA44CJAOOAigDjgIsA44CMAOOAjQDjgI4A44CPAOOAkADjgJEA44CSAOOAlADjgJRT44CVAOOAlOS4ieOAlQDjgJTkuozjgJUA44CU5Yud44CVAOOAlOWuieOAlQDjgJTmiZPjgJUA44CU5pWX44CVAOOAlOacrOOAlQDjgJTngrnjgJUA44CU55uX44CVAOOAlQDjgJYA44CXAOOBjADjgY4A44GQAOOBkgDjgZQA44GWAOOBmADjgZoA44GcAOOBngDjgaAA44GiAOOBpQDjgacA44GpAOOBsADjgbEA44GzAOOBtADjgbYA44G3AOOBuQDjgboA44G744GLAOOBvADjgb0A44KI44KKAOOClADjgpkA44KaAOOCngDjgqEA44KiAOOCouODkeODvOODiADjgqLjg6vjg5XjgqEA44Ki44Oz44Oa44KiAOOCouODvOODqwDjgqMA44KkAOOCpOODi+ODs+OCsADjgqTjg7Pjg4EA44KlAOOCpgDjgqbjgqnjg7MA44KnAOOCqADjgqjjgrnjgq/jg7zjg4kA44Ko44O844Kr44O8AOOCqQDjgqoA44Kq44Oz44K5AOOCquODvOODoADjgqsA44Kr44Kk44OqAOOCq+ODqeODg+ODiADjgqvjg63jg6rjg7wA44KsAOOCrOODreODswDjgqzjg7Pjg54A44KtAOOCreODpeODquODvADjgq3jg60A44Kt44Ot44Kw44Op44OgAOOCreODreODoeODvOODiOODqwDjgq3jg63jg6/jg4Pjg4gA44KuAOOCruOCrADjgq7jg4vjg7wA44Ku44Or44OA44O8AOOCrwDjgq/jg6vjgrzjgqTjg60A44Kv44Ot44O844ONAOOCsADjgrDjg6njg6AA44Kw44Op44Og44OI44OzAOOCsQDjgrHjg7zjgrkA44KyAOOCswDjgrPjgrMA44Kz44OIAOOCs+ODq+ODigDjgrPjg7zjg50A44K0AOOCtQDjgrXjgqTjgq/jg6sA44K144Oz44OB44O844OgAOOCtgDjgrcA44K344Oq44Oz44KwAOOCuADjgrkA44K6AOOCuwDjgrvjg7Pjg4EA44K744Oz44OIAOOCvADjgr0A44K+AOOCvwDjg4AA44OA44O844K5AOODgQDjg4IA44ODAOODhADjg4UA44OGAOODhwDjg4fjgrcA44OIAOODiOODswDjg4kA44OJ44OrAOODigDjg4rjg44A44OLAOODjADjg40A44OOAOODjuODg+ODiADjg48A44OP44Kk44OEAOODkADjg5Djg7zjg6zjg6sA44ORAOODkeODvOOCu+ODs+ODiADjg5Hjg7zjg4QA44OSAOODkwDjg5Pjg6sA44OUAOODlOOCouOCueODiOODqwDjg5Tjgq/jg6sA44OU44KzAOODlQDjg5XjgqHjg6njg4Pjg4kA44OV44Kj44O844OIAOODleODqeODswDjg5YA44OW44OD44K344Kn44OrAOODlwDjg5gA44OY44Kv44K/44O844OrAOODmOODq+ODhADjg5kA44OZ44O844K/AOODmgDjg5rjgr0A44Oa44OL44OSAOODmuODs+OCuQDjg5rjg7zjgrgA44ObAOODm+ODswDjg5vjg7zjg6sA44Ob44O844OzAOODnADjg5zjg6vjg4gA44OdAOODneOCpOODs+ODiADjg53jg7Pjg4kA44OeAOODnuOCpOOCr+ODrQDjg57jgqTjg6sA44Oe44OD44OPAOODnuODq+OCrwDjg57jg7Pjgrfjg6fjg7MA44OfAOODn+OCr+ODreODswDjg5/jg6oA44Of44Oq44OQ44O844OrAOODoADjg6EA44Oh44KsAOODoeOCrOODiOODswDjg6Hjg7zjg4jjg6sA44OiAOODowDjg6QA44Ok44O844OJAOODpOODvOODqwDjg6UA44OmAOODpuOCouODswDjg6cA44OoAOODqQDjg6oA44Oq44OD44OI44OrAOODquODqQDjg6sA44Or44OU44O8AOODq+ODvOODluODqwDjg6wA44Os44OgAOODrOODs+ODiOOCsuODswDjg60A44OvAOODr+ODg+ODiADjg7AA44OxAOODsgDjg7MA44O0AOODtwDjg7gA44O5AOODugDjg7sA44O8AOODvgDjkp4A45K5AOOSuwDjk58A45SVAOObrgDjm7wA456BAOOgrwDjoaIA46G8AOOjhwDjo6MA46ScAOOkugDjqK4A46msAOOrpADjrIgA46yZAOOtiQDjrp0A47CYAOOxjgDjtLMA47aWAOO6rADjurgA47ybAOO/vADkgIgA5ICYAOSAuQDkgYYA5IKWAOSDowDkhK8A5IiCAOSIpwDkiqAA5IyBAOSMtADkjZkA5I+VAOSPmQDkkIsA5JGrAOSUqwDklZ0A5JWhAOSVqwDkl5cA5Je5AOSYtQDkmr4A5JuHAOSmlQDkp6YA5KmuAOSptgDkqrIA5KyzAOSvjgDks44A5LOtAOSzuADktZYA5LiAAOS4gQDkuIMA5LiJAOS4igDkuIsA5LiNAOS4mQDkuKYA5Lio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jQDmr5QA5q+bAOawjwDmsJQA5rC0AOaxjgDmsacA5rKIAOayvwDms4wA5rONAOazpQDms6gA5rSWAOa0mwDmtJ4A5rS0AOa0vgDmtYEA5rWpAOa1qgDmtbcA5rW4AOa2hQDmt4sA5reaAOa3qgDmt7kA5riaAOa4rwDmua4A5rqAAOa6nADmuroA5ruHAOa7iwDmu5EA5rubAOa8jwDmvJQA5ryiAOa8owDmva4A5r+GAOa/qwDmv74A54CbAOeAngDngLkA54GKAOeBqwDngbAA54G3AOeBvQDngpkA54KtAOeDiADng5kA54ShAOeFhQDnhYkA54WuAOeGnADnh44A54eQAOeIkADniJsA54ioAOeIqgDniKsA54i1AOeItgDniLsA54i/AOeJhwDniZAA54mZAOeJmwDniaIA54m5AOeKgADnipUA54qsAOeKrwDni4AA54u8AOeMqgDnjbUA5426AOeOhADnjocA546JAOeOiwDnjqUA546yAOePngDnkIYA55CJAOeQogDnkYcA55GcAOeRqQDnkbEA55KFAOeSiQDnkpgA55OKAOeTnADnk6YA55SGAOeUmADnlJ8A55SkAOeUqADnlLAA55SyAOeUswDnlLcA55S7AOeUvgDnlZkA55WlAOeVsADnlosA55aSAOeXogDnmJAA55idAOeYnwDnmYIA55mpAOeZtgDnmb0A55quAOeavwDnm4oA55ubAOebowDnm6cA55uuAOebtADnnIEA55yeAOecnwDnnYAA552KAOeeiwDnnqcA55+bAOefogDnn7MA56GOAOehqwDnoowA56KRAOejigDno4wA56O7AOekqgDnpLoA56S8AOekvgDnpYgA56WJAOelkADnpZYA56WdAOelngDnpaUA56W/AOemgQDnpo0A56aOAOemjwDnpq4A56a4AOemvgDnp4oA56eYAOenqwDnqJwA56mAAOepigDnqY8A56m0AOepugDnqoEA56qxAOeriwDnq64A56u5AOesoADnro8A56+AAOevhgDnr4kA57C+AOexoADnsbMA57G7AOeykgDnsr4A57OSAOezlgDns6MA57OnAOezqADns7gA57SAAOe0kADntKIA57SvAOe1ggDntZsA57WjAOe2oADntr4A57eHAOe3tADnuIIA57iJAOe4twDnuYEA57mFAOe8tgDnvL4A572RAOe9sgDnvbkA5726AOe+hQDnvooA576VAOe+mgDnvr0A57+6AOiAgQDogIUA6ICMAOiAkgDogLMA6IGGAOiBoADoga8A6IGwAOiBvgDogb8A6IKJAOiCiwDogq0A6IKyAOiEgwDohL4A6IeYAOiHowDoh6gA6IeqAOiHrQDoh7MA6Ie8AOiIgQDoiIQA6IiMAOiImADoiJsA6IifAOiJrgDoia8A6ImyAOiJuADoibkA6IqLAOiKkQDoip0A6IqxAOiKswDoir0A6IulAOiLpgDojJ0A6IyjAOiMtgDojZIA6I2TAOiNowDojq0A6I69AOiPiQDoj4oA6I+MAOiPnADoj6cA6I+vAOiPsQDokL0A6JGJAOiRlwDok64A6JOxAOiTswDok7wA6JSWAOiVpADol40A6Je6AOiYhgDomJIA6JitAOiYvwDomY0A6JmQAOiZnADomacA6JmpAOiZqwDomogA6JqpAOibogDonI4A6JyoAOidqwDonbkA6J6GAOieugDon6EA6KCBAOignwDooYAA6KGMAOihoADooaMA6KOCAOijjwDoo5cA6KOeAOijoQDoo7gA6KO6AOikkADopYEA6KWkAOilvgDopoYA6KaLAOimlgDop5IA6KejAOiogADoqqAA6KqqAOiqvwDoq4sA6KuSAOirlgDoq60A6Ku4AOirvgDorIEA6Ky5AOitmADoroAA6K6KAOiwtwDosYYA6LGIAOixlQDosbgA6LKdAOiyoQDosqkA6LKrAOizgQDos4IA6LOHAOiziADos5MA6LSIAOi0mwDotaQA6LWwAOi1twDotrMA6La8AOi3iwDot68A6LewAOi6qwDou4oA6LuUAOi8pgDovKoA6Ly4AOi8uwDovaIA6L6bAOi+ngDovrAA6L61AOi+tgDpgKMA6YC4AOmBigDpgakA6YGyAOmBvADpgo8A6YKRAOmClADpg44A6YOeAOmDsQDpg70A6YSRAOmEmwDphYkA6YWqAOmGmQDphrQA6YeGAOmHjADph48A6YeRAOmItADpiLgA6Ym2AOmJvADpi5cA6YuYAOmMhADpjYoA6Y+5AOmQlQDplbcA6ZaAAOmWiwDplq0A6Za3AOmYnADpmK4A6ZmLAOmZjQDpmbUA6Zm4AOmZvADpmoYA6ZqjAOmatgDpmrcA6Zq4AOmauQDpm4MA6ZuiAOmbowDpm6gA6Zu2AOmbtwDpnKMA6ZyyAOmdiADpnZEA6Z2WAOmdngDpnaIA6Z2pAOmfiwDpn5sA6Z+gAOmfrQDpn7MA6Z+/AOmggQDpoIUA6aCLAOmgmADpoKkA6aC7AOmhngDpoqgA6aObAOmjnwDpo6IA6aOvAOmjvADppKgA6aSpAOmmlgDpppkA6aanAOmmrADpp4IA6aexAOmnvgDpqaoA6aqoAOmrmADpq58A6aySAOmspQDprK8A6ayyAOmsvADprZoA6a2vAOmxgADpsZcA6bOlAOmzvQDptacA6ba0AOm3ugDpuJ4A6bm1AOm5vwDpupcA6bqfAOm6pQDpursA6buDAOm7jQDpu44A6buRAOm7uQDpu70A6bu+AOm8hQDpvI4A6byPAOm8kwDpvJYA6bygAOm8uwDpvYMA6b2KAOm9kgDpvo0A6b6OAOm+nADpvp8A6b6gAOqcpwDqna8A6qy3AOqtkgDqsIAA6rCBAOqwggDqsIMA6rCEAOqwhQDqsIYA6rCHAOqwiADqsIkA6rCKAOqwiwDqsIwA6rCNAOqwjgDqsI8A6rCQAOqwkQDqsJIA6rCTAOqwlADqsJUA6rCWAOqwlwDqsJgA6rCZAOqwmgDqsJsA6rCcAOqwnQDqsJ4A6rCfAOqwoADqsKEA6rCiAOqwowDqsKQA6rClAOqwpgDqsKcA6rCoAOqwqQDqsKoA6rCrAOqwrADqsK0A6rCuAOqwrwDqsLAA6rCxAOqwsgDqsLMA6rC0AOqwtQDqsLYA6rC3AOqwuADqsLkA6rC6AOqwuwDqsLwA6rC9AOqwvgDqsL8A6rGAAOqxgQDqsYIA6rGDAOqxhADqsYUA6rGGAOqxhwDqsYgA6rGJAOqxigDqsYsA6rGMAOqxjQDqsY4A6rGPAOqxkADqsZEA6rGSAOqxkwDqsZQA6rGVAOqxlgDqsZcA6rGYAOqxmQDqsZoA6rGbAOqxnADqsZ0A6rGeAOqxnwDqsaAA6rGhAOqxogDqsaMA6rGkAOqxpQDqsaYA6rGnAOqxqADqsakA6rGqAOqxqwDqsawA6rGtAOqxrgDqsa8A6rGwAOqxsQDqsbIA6rGzAOqxtADqsbUA6rG2AOqxtwDqsbgA6rG5AOqxugDqsbsA6rG8AOqxvQDqsb4A6rG/AOqygADqsoEA6rKCAOqygwDqsoQA6rKFAOqyhgDqsocA6rKIAOqyiQDqsooA6rKLAOqyjADqso0A6rKOAOqyjwDqspAA6rKRAOqykgDqspMA6rKUAOqylQDqspYA6rKXAOqymADqspkA6rKaAOqymwDqspwA6rKdAOqyngDqsp8A6rKgAOqyoQDqsqIA6rKjAOqypADqsqUA6rKmAOqypwDqsqgA6rKpAOqyqgDqsqsA6rKsAOqyrQDqsq4A6rKvAOqysADqsrEA6rKyAOqyswDqsrQA6rK1AOqytgDqsrcA6rK4AOqyuQDqsroA6rK7AOqyvADqsr0A6rK+AOqyvwDqs4AA6rOBAOqzggDqs4MA6rOEAOqzhQDqs4YA6rOHAOqziADqs4kA6rOKAOqziwDqs4wA6rONAOqzjgDqs48A6rOQAOqzkQDqs5IA6rOTAOqzlADqs5UA6rOWAOqzlwDqs5gA6rOZAOqzmgDqs5sA6rOcAOqznQDqs54A6rOfAOqzoADqs6EA6rOiAOqzowDqs6QA6rOlAOqzpgDqs6cA6rOoAOqzqQDqs6oA6rOrAOqzrADqs60A6rOuAOqzrwDqs7AA6rOxAOqzsgDqs7MA6rO0AOqztQDqs7YA6rO3AOqzuADqs7kA6rO6AOqzuwDqs7wA6rO9AOqzvgDqs78A6rSAAOq0gQDqtIIA6rSDAOq0hADqtIUA6rSGAOq0hwDqtIgA6rSJAOq0igDqtIsA6rSMAOq0jQDqtI4A6rSPAOq0kADqtJEA6rSSAOq0kwDqtJQA6rSVAOq0lgDqtJcA6rSYAOq0mQDqtJoA6rSbAOq0nADqtJ0A6rSeAOq0nwDqtKAA6rShAOq0ogDqtKMA6rSkAOq0pQDqtKYA6rSnAOq0qADqtKkA6rSqAOq0qwDqtKwA6rStAOq0rgDqtK8A6rSwAOq0sQDqtLIA6rSzAOq0tADqtLUA6rS2AOq0twDqtLgA6rS5AOq0ugDqtLsA6rS8AOq0vQDqtL4A6rS/AOq1gADqtYEA6rWCAOq1gwDqtYQA6rWFAOq1hgDqtYcA6rWIAOq1iQDqtYoA6rWLAOq1jADqtY0A6rWOAOq1jwDqtZAA6rWRAOq1kgDqtZMA6rWUAOq1lQDqtZYA6rWXAOq1mADqtZkA6rWaAOq1mwDqtZwA6rWdAOq1ngDqtZ8A6rWgAOq1oQDqtaIA6rWjAOq1pADqtaUA6rWmAOq1pwDqtagA6rWpAOq1qgDqtasA6rWsAOq1rQDqta4A6rWvAOq1sADqtbEA6rWyAOq1swDqtbQA6rW1AOq1tgDqtbcA6rW4AOq1uQDqtboA6rW7AOq1vADqtb0A6rW+AOq1vwDqtoAA6raBAOq2ggDqtoMA6raEAOq2hQDqtoYA6raHAOq2iADqtokA6raKAOq2iwDqtowA6raNAOq2jgDqto8A6raQAOq2kQDqtpIA6raTAOq2lADqtpUA6raWAOq2lwDqtpgA6raZAOq2mgDqtpsA6racAOq2nQDqtp4A6rafAOq2oADqtqEA6raiAOq2owDqtqQA6ralAOq2pgDqtqcA6raoAOq2qQDqtqoA6rarAOq2rADqtq0A6rauAOq2rwDqtrAA6raxAOq2sgDqtrMA6ra0AOq2tQDqtrYA6ra3AOq2uADqtrkA6ra6AOq2uwDqtrwA6ra9AOq2vgDqtr8A6reAAOq3gQDqt4IA6reDAOq3hADqt4UA6reGAOq3hwDqt4gA6reJAOq3igDqt4sA6reMAOq3jQDqt44A6rePAOq3kADqt5EA6reSAOq3kwDqt5QA6reVAOq3lgDqt5cA6reYAOq3mQDqt5oA6rebAOq3nADqt50A6reeAOq3nwDqt6AA6rehAOq3ogDqt6MA6rekAOq3pQDqt6YA6renAOq3qADqt6kA6reqAOq3qwDqt6wA6retAOq3rgDqt68A6rewAOq3sQDqt7IA6rezAOq3tADqt7UA6re2AOq3twDqt7gA6re5AOq3ugDqt7sA6re8AOq3vQDqt74A6re/AOq4gADquIEA6riCAOq4gwDquIQA6riFAOq4hgDquIcA6riIAOq4iQDquIoA6riLAOq4jADquI0A6riOAOq4jwDquJAA6riRAOq4kgDquJMA6riUAOq4lQDquJYA6riXAOq4mADquJkA6riaAOq4mwDquJwA6ridAOq4ngDquJ8A6rigAOq4oQDquKIA6rijAOq4pADquKUA6rimAOq4pwDquKgA6ripAOq4qgDquKsA6risAOq4rQDquK4A6rivAOq4sADquLEA6riyAOq4swDquLQA6ri1AOq4tgDquLcA6ri4AOq4uQDquLoA6ri7AOq4vADquL0A6ri+AOq4vwDquYAA6rmBAOq5ggDquYMA6rmEAOq5hQDquYYA6rmHAOq5iADquYkA6rmKAOq5iwDquYwA6rmNAOq5jgDquY8A6rmQAOq5kQDquZIA6rmTAOq5lADquZUA6rmWAOq5lwDquZgA6rmZAOq5mgDquZsA6rmcAOq5nQDquZ4A6rmfAOq5oADquaEA6rmiAOq5owDquaQA6rmlAOq5pgDquacA6rmoAOq5qQDquaoA6rmrAOq5rADqua0A6rmuAOq5rwDqubAA6rmxAOq5sgDqubMA6rm0AOq5tQDqubYA6rm3AOq5uADqubkA6rm6AOq5uwDqubwA6rm9AOq5vgDqub8A6rqAAOq6gQDquoIA6rqDAOq6hADquoUA6rqGAOq6hwDquogA6rqJAOq6igDquosA6rqMAOq6jQDquo4A6rqPAOq6kADqupEA6rqSAOq6kwDqupQA6rqVAOq6lgDqupcA6rqYAOq6mQDqupoA6rqbAOq6nADqup0A6rqeAOq6nwDquqAA6rqhAOq6ogDquqMA6rqkAOq6pQDquqYA6rqnAOq6qADquqkA6rqqAOq6qwDquqwA6rqtAOq6rgDquq8A6rqwAOq6sQDqurIA6rqzAOq6tADqurUA6rq2AOq6twDqurgA6rq5AOq6ugDqursA6rq8AOq6vQDqur4A6rq/AOq7gADqu4EA6ruCAOq7gwDqu4QA6ruFAOq7hgDqu4cA6ruIAOq7iQDqu4oA6ruLAOq7jADqu40A6ruOAOq7jwDqu5AA6ruRAOq7kgDqu5MA6ruUAOq7lQDqu5YA6ruXAOq7mADqu5kA6ruaAOq7mwDqu5wA6rudAOq7ngDqu58A6rugAOq7oQDqu6IA6rujAOq7pADqu6UA6rumAOq7pwDqu6gA6rupAOq7qgDqu6sA6rusAOq7rQDqu64A6ruvAOq7sADqu7EA6ruyAOq7swDqu7QA6ru1AOq7tgDqu7cA6ru4AOq7uQDqu7oA6ru7AOq7vADqu70A6ru+AOq7vwDqvIAA6ryBAOq8ggDqvIMA6ryEAOq8hQDqvIYA6ryHAOq8iADqvIkA6ryKAOq8iwDqvIwA6ryNAOq8jgDqvI8A6ryQAOq8kQDqvJIA6ryTAOq8lADqvJUA6ryWAOq8lwDqvJgA6ryZAOq8mgDqvJsA6rycAOq8nQDqvJ4A6ryfAOq8oADqvKEA6ryiAOq8owDqvKQA6rylAOq8pgDqvKcA6ryoAOq8qQDqvKoA6ryrAOq8rADqvK0A6ryuAOq8rwDqvLAA6ryxAOq8sgDqvLMA6ry0AOq8tQDqvLYA6ry3AOq8uADqvLkA6ry6AOq8uwDqvLwA6ry9AOq8vgDqvL8A6r2AAOq9gQDqvYIA6r2DAOq9hADqvYUA6r2GAOq9hwDqvYgA6r2JAOq9igDqvYsA6r2MAOq9jQDqvY4A6r2PAOq9kADqvZEA6r2SAOq9kwDqvZQA6r2VAOq9lgDqvZcA6r2YAOq9mQDqvZoA6r2bAOq9nADqvZ0A6r2eAOq9nwDqvaAA6r2hAOq9ogDqvaMA6r2kAOq9pQDqvaYA6r2nAOq9qADqvakA6r2qAOq9qwDqvawA6r2tAOq9rgDqva8A6r2wAOq9sQDqvbIA6r2zAOq9tADqvbUA6r22AOq9twDqvbgA6r25AOq9ugDqvbsA6r28AOq9vQDqvb4A6r2/AOq+gADqvoEA6r6CAOq+gwDqvoQA6r6FAOq+hgDqvocA6r6IAOq+iQDqvooA6r6LAOq+jADqvo0A6r6OAOq+jwDqvpAA6r6RAOq+kgDqvpMA6r6UAOq+lQDqvpYA6r6XAOq+mADqvpkA6r6aAOq+mwDqvpwA6r6dAOq+ngDqvp8A6r6gAOq+oQDqvqIA6r6jAOq+pADqvqUA6r6mAOq+pwDqvqgA6r6pAOq+qgDqvqsA6r6sAOq+rQDqvq4A6r6vAOq+sADqvrEA6r6yAOq+swDqvrQA6r61AOq+tgDqvrcA6r64AOq+uQDqvroA6r67AOq+vADqvr0A6r6+AOq+vwDqv4AA6r+BAOq/ggDqv4MA6r+EAOq/hQDqv4YA6r+HAOq/iADqv4kA6r+KAOq/iwDqv4wA6r+NAOq/jgDqv48A6r+QAOq/kQDqv5IA6r+TAOq/lADqv5UA6r+WAOq/lwDqv5gA6r+ZAOq/mgDqv5sA6r+cAOq/nQDqv54A6r+fAOq/oADqv6EA6r+iAOq/owDqv6QA6r+lAOq/pgDqv6cA6r+oAOq/qQDqv6oA6r+rAOq/rADqv60A6r+uAOq/rwDqv7AA6r+xAOq/sgDqv7MA6r+0AOq/tQDqv7YA6r+3AOq/uADqv7kA6r+6AOq/uwDqv7wA6r+9AOq/vgDqv78A64CAAOuAgQDrgIIA64CDAOuAhADrgIUA64CGAOuAhwDrgIgA64CJAOuAigDrgIsA64CMAOuAjQDrgI4A64CPAOuAkADrgJEA64CSAOuAkwDrgJQA64CVAOuAlgDrgJcA64CYAOuAmQDrgJoA64CbAOuAnADrgJ0A64CeAOuAnwDrgKAA64ChAOuAogDrgKMA64CkAOuApQDrgKYA64CnAOuAqADrgKkA64CqAOuAqwDrgKwA64CtAOuArgDrgK8A64CwAOuAsQDrgLIA64CzAOuAtADrgLUA64C2AOuAtwDrgLgA64C5AOuAugDrgLsA64C8AOuAvQDrgL4A64C/AOuBgADrgYEA64GCAOuBgwDrgYQA64GFAOuBhgDrgYcA64GIAOuBiQDrgYoA64GLAOuBjADrgY0A64GOAOuBjwDrgZAA64GRAOuBkgDrgZMA64GUAOuBlQDrgZYA64GXAOuBmADrgZkA64GaAOuBmwDrgZwA64GdAOuBngDrgZ8A64GgAOuBoQDrgaIA64GjAOuBpADrgaUA64GmAOuBpwDrgagA64GpAOuBqgDrgasA64GsAOuBrQDrga4A64GvAOuBsADrgbEA64GyAOuBswDrgbQA64G1AOuBtgDrgbcA64G4AOuBuQDrgboA64G7AOuBvADrgb0A64G+AOuBvwDrgoAA64KBAOuCggDrgoMA64KEAOuChQDrgoYA64KHAOuCiADrgokA64KKAOuCiwDrgowA64KNAOuCjgDrgo8A64KQAOuCkQDrgpIA64KTAOuClADrgpUA64KWAOuClwDrgpgA64KZAOuCmgDrgpsA64KcAOuCnQDrgp4A64KfAOuCoADrgqEA64KiAOuCowDrgqQA64KlAOuCpgDrgqcA64KoAOuCqQDrgqoA64KrAOuCrADrgq0A64KuAOuCrwDrgrAA64KxAOuCsgDrgrMA64K0AOuCtQDrgrYA64K3AOuCuADrgrkA64K6AOuCuwDrgrwA64K9AOuCvgDrgr8A64OAAOuDgQDrg4IA64ODAOuDhADrg4UA64OGAOuDhwDrg4gA64OJAOuDigDrg4sA64OMAOuDjQDrg44A64OPAOuDkADrg5EA64OSAOuDkwDrg5QA64OVAOuDlgDrg5cA64OYAOuDmQDrg5oA64ObAOuDnADrg50A64OeAOuDnwDrg6AA64OhAOuDogDrg6MA64OkAOuDpQDrg6YA64OnAOuDqADrg6kA64OqAOuDqwDrg6wA64OtAOuDrgDrg68A64OwAOuDsQDrg7IA64OzAOuDtADrg7UA64O2AOuDtwDrg7gA64O5AOuDugDrg7sA64O8AOuDvQDrg74A64O/AOuEgADrhIEA64SCAOuEgwDrhIQA64SFAOuEhgDrhIcA64SIAOuEiQDrhIoA64SLAOuEjADrhI0A64SOAOuEjwDrhJAA64SRAOuEkgDrhJMA64SUAOuElQDrhJYA64SXAOuEmADrhJkA64SaAOuEmwDrhJwA64SdAOuEngDrhJ8A64SgAOuEoQDrhKIA64SjAOuEpADrhKUA64SmAOuEpwDrhKgA64SpAOuEqgDrhKsA64SsAOuErQDrhK4A64SvAOuEsADrhLEA64SyAOuEswDrhLQA64S1AOuEtgDrhLcA64S4AOuEuQDrhLoA64S7AOuEvADrhL0A64S+AOuEvwDrhYAA64WBAOuFggDrhYMA64WEAOuFhQDrhYYA64WHAOuFiADrhYkA64WKAOuFiwDrhYwA64WNAOuFjgDrhY8A64WQAOuFkQDrhZIA64WTAOuFlADrhZUA64WWAOuFlwDrhZgA64WZAOuFmgDrhZsA64WcAOuFnQDrhZ4A64WfAOuFoADrhaEA64WiAOuFowDrhaQA64WlAOuFpgDrhacA64WoAOuFqQDrhaoA64WrAOuFrADrha0A64WuAOuFrwDrhbAA64WxAOuFsgDrhbMA64W0AOuFtQDrhbYA64W3AOuFuADrhbkA64W6AOuFuwDrhbwA64W9AOuFvgDrhb8A64aAAOuGgQDrhoIA64aDAOuGhADrhoUA64aGAOuGhwDrhogA64aJAOuGigDrhosA64aMAOuGjQDrho4A64aPAOuGkADrhpEA64aSAOuGkwDrhpQA64aVAOuGlgDrhpcA64aYAOuGmQDrhpoA64abAOuGnADrhp0A64aeAOuGnwDrhqAA64ahAOuGogDrhqMA64akAOuGpQDrhqYA64anAOuGqADrhqkA64aqAOuGqwDrhqwA64atAOuGrgDrhq8A64awAOuGsQDrhrIA64azAOuGtADrhrUA64a2AOuGtwDrhrgA64a5AOuGugDrhrsA64a8AOuGvQDrhr4A64a/AOuHgADrh4EA64eCAOuHgwDrh4QA64eFAOuHhgDrh4cA64eIAOuHiQDrh4oA64eLAOuHjADrh40A64eOAOuHjwDrh5AA64eRAOuHkgDrh5MA64eUAOuHlQDrh5YA64eXAOuHmADrh5kA64eaAOuHmwDrh5wA64edAOuHngDrh58A64egAOuHoQDrh6IA64ejAOuHpADrh6UA64emAOuHpwDrh6gA64epAOuHqgDrh6sA64esAOuHrQDrh64A64evAOuHsADrh7EA64eyAOuHswDrh7QA64e1AOuHtgDrh7cA64e4AOuHuQDrh7oA64e7AOuHvADrh70A64e+AOuHvwDriIAA64iBAOuIggDriIMA64iEAOuIhQDriIYA64iHAOuIiADriIkA64iKAOuIiwDriIwA64iNAOuIjgDriI8A64iQAOuIkQDriJIA64iTAOuIlADriJUA64iWAOuIlwDriJgA64iZAOuImgDriJsA64icAOuInQDriJ4A64ifAOuIoADriKEA64iiAOuIowDriKQA64ilAOuIpgDriKcA64ioAOuIqQDriKoA64irAOuIrADriK0A64iuAOuIrwDriLAA64ixAOuIsgDriLMA64i0AOuItQDriLYA64i3AOuIuADriLkA64i6AOuIuwDriLwA64i9AOuIvgDriL8A64mAAOuJgQDriYIA64mDAOuJhADriYUA64mGAOuJhwDriYgA64mJAOuJigDriYsA64mMAOuJjQDriY4A64mPAOuJkADriZEA64mSAOuJkwDriZQA64mVAOuJlgDriZcA64mYAOuJmQDriZoA64mbAOuJnADriZ0A64meAOuJnwDriaAA64mhAOuJogDriaMA64mkAOuJpQDriaYA64mnAOuJqADriakA64mqAOuJqwDriawA64mtAOuJrgDria8A64mwAOuJsQDribIA64mzAOuJtADribUA64m2AOuJtwDribgA64m5AOuJugDribsA64m8AOuJvQDrib4A64m/AOuKgADrioEA64qCAOuKgwDrioQA64qFAOuKhgDriocA64qIAOuKiQDriooA64qLAOuKjADrio0A64qOAOuKjwDripAA64qRAOuKkgDripMA64qUAOuKlQDripYA64qXAOuKmADripkA64qaAOuKmwDripwA64qdAOuKngDrip8A64qgAOuKoQDriqIA64qjAOuKpADriqUA64qmAOuKpwDriqgA64qpAOuKqgDriqsA64qsAOuKrQDriq4A64qvAOuKsADrirEA64qyAOuKswDrirQA64q1AOuKtgDrircA64q4AOuKuQDriroA64q7AOuKvADrir0A64q+AOuKvwDri4AA64uBAOuLggDri4MA64uEAOuLhQDri4YA64uHAOuLiADri4kA64uKAOuLiwDri4wA64uNAOuLjgDri48A64uQAOuLkQDri5IA64uTAOuLlADri5UA64uWAOuLlwDri5gA64uZAOuLmgDri5sA64ucAOuLnQDri54A64ufAOuLoADri6EA64uiAOuLowDri6QA64ulAOuLpgDri6cA64uoAOuLqQDri6oA64urAOuLrADri60A64uuAOuLrwDri7AA64uxAOuLsgDri7MA64u0AOuLtQDri7YA64u3AOuLuADri7kA64u6AOuLuwDri7wA64u9AOuLvgDri78A64yAAOuMgQDrjIIA64yDAOuMhADrjIUA64yGAOuMhwDrjIgA64yJAOuMigDrjIsA64yMAOuMjQDrjI4A64yPAOuMkADrjJEA64ySAOuMkwDrjJQA64yVAOuMlgDrjJcA64yYAOuMmQDrjJoA64ybAOuMnADrjJ0A64yeAOuMnwDrjKAA64yhAOuMogDrjKMA64ykAOuMpQDrjKYA64ynAOuMqADrjKkA64yqAOuMqwDrjKwA64ytAOuMrgDrjK8A64ywAOuMsQDrjLIA64yzAOuMtADrjLUA64y2AOuMtwDrjLgA64y5AOuMugDrjLsA64y8AOuMvQDrjL4A64y/AOuNgADrjYEA642CAOuNgwDrjYQA642FAOuNhgDrjYcA642IAOuNiQDrjYoA642LAOuNjADrjY0A642OAOuNjwDrjZAA642RAOuNkgDrjZMA642UAOuNlQDrjZYA642XAOuNmADrjZkA642aAOuNmwDrjZwA642dAOuNngDrjZ8A642gAOuNoQDrjaIA642jAOuNpADrjaUA642mAOuNpwDrjagA642pAOuNqgDrjasA642sAOuNrQDrja4A642vAOuNsADrjbEA642yAOuNswDrjbQA6421AOuNtgDrjbcA6424AOuNuQDrjboA6427AOuNvADrjb0A642+AOuNvwDrjoAA646BAOuOggDrjoMA646EAOuOhQDrjoYA646HAOuOiADrjokA646KAOuOiwDrjowA646NAOuOjgDrjo8A646QAOuOkQDrjpIA646TAOuOlADrjpUA646WAOuOlwDrjpgA646ZAOuOmgDrjpsA646cAOuOnQDrjp4A646fAOuOoADrjqEA646iAOuOowDrjqQA646lAOuOpgDrjqcA646oAOuOqQDrjqoA646rAOuOrADrjq0A646uAOuOrwDrjrAA646xAOuOsgDrjrMA6460AOuOtQDrjrYA6463AOuOuADrjrkA6466AOuOuwDrjrwA6469AOuOvgDrjr8A64+AAOuPgQDrj4IA64+DAOuPhADrj4UA64+GAOuPhwDrj4gA64+JAOuPigDrj4sA64+MAOuPjQDrj44A64+PAOuPkADrj5EA64+SAOuPkwDrj5QA64+VAOuPlgDrj5cA64+YAOuPmQDrj5oA64+bAOuPnADrj50A64+eAOuPnwDrj6AA64+hAOuPogDrj6MA64+kAOuPpQDrj6YA64+nAOuPqADrj6kA64+qAOuPqwDrj6wA64+tAOuPrgDrj68A64+wAOuPsQDrj7IA64+zAOuPtADrj7UA64+2AOuPtwDrj7gA64+5AOuPugDrj7sA64+8AOuPvQDrj74A64+/AOuQgADrkIEA65CCAOuQgwDrkIQA65CFAOuQhgDrkIcA65CIAOuQiQDrkIoA65CLAOuQjADrkI0A65COAOuQjwDrkJAA65CRAOuQkgDrkJMA65CUAOuQlQDrkJYA65CXAOuQmADrkJkA65CaAOuQmwDrkJwA65CdAOuQngDrkJ8A65CgAOuQoQDrkKIA65CjAOuQpADrkKUA65CmAOuQpwDrkKgA65CpAOuQqgDrkKsA65CsAOuQrQDrkK4A65CvAOuQsADrkLEA65CyAOuQswDrkLQA65C1AOuQtgDrkLcA65C4AOuQuQDrkLoA65C7AOuQvADrkL0A65C+AOuQvwDrkYAA65GBAOuRggDrkYMA65GEAOuRhQDrkYYA65GHAOuRiADrkYkA65GKAOuRiwDrkYwA65GNAOuRjgDrkY8A65GQAOuRkQDrkZIA65GTAOuRlADrkZUA65GWAOuRlwDrkZgA65GZAOuRmgDrkZsA65GcAOuRnQDrkZ4A65GfAOuRoADrkaEA65GiAOuRowDrkaQA65GlAOuRpgDrkacA65GoAOuRqQDrkaoA65GrAOuRrADrka0A65GuAOuRrwDrkbAA65GxAOuRsgDrkbMA65G0AOuRtQDrkbYA65G3AOuRuADrkbkA65G6AOuRuwDrkbwA65G9AOuRvgDrkb8A65KAAOuSgQDrkoIA65KDAOuShADrkoUA65KGAOuShwDrkogA65KJAOuSigDrkosA65KMAOuSjQDrko4A65KPAOuSkADrkpEA65KSAOuSkwDrkpQA65KVAOuSlgDrkpcA65KYAOuSmQDrkpoA65KbAOuSnADrkp0A65KeAOuSnwDrkqAA65KhAOuSogDrkqMA65KkAOuSpQDrkqYA65KnAOuSqADrkqkA65KqAOuSqwDrkqwA65KtAOuSrgDrkq8A65KwAOuSsQDrkrIA65KzAOuStADrkrUA65K2AOuStwDrkrgA65K5AOuSugDrkrsA65K8AOuSvQDrkr4A65K/AOuTgADrk4EA65OCAOuTgwDrk4QA65OFAOuThgDrk4cA65OIAOuTiQDrk4oA65OLAOuTjADrk40A65OOAOuTjwDrk5AA65ORAOuTkgDrk5MA65OUAOuTlQDrk5YA65OXAOuTmADrk5kA65OaAOuTmwDrk5wA65OdAOuTngDrk58A65OgAOuToQDrk6IA65OjAOuTpADrk6UA65OmAOuTpwDrk6gA65OpAOuTqgDrk6sA65OsAOuTrQDrk64A65OvAOuTsADrk7EA65OyAOuTswDrk7QA65O1AOuTtgDrk7cA65O4AOuTuQDrk7oA65O7AOuTvADrk70A65O+AOuTvwDrlIAA65SBAOuUggDrlIMA65SEAOuUhQDrlIYA65SHAOuUiADrlIkA65SKAOuUiwDrlIwA65SNAOuUjgDrlI8A65SQAOuUkQDrlJIA65STAOuUlADrlJUA65SWAOuUlwDrlJgA65SZAOuUmgDrlJsA65ScAOuUnQDrlJ4A65SfAOuUoADrlKEA65SiAOuUowDrlKQA65SlAOuUpgDrlKcA65SoAOuUqQDrlKoA65SrAOuUrADrlK0A65SuAOuUrwDrlLAA65SxAOuUsgDrlLMA65S0AOuUtQDrlLYA65S3AOuUuADrlLkA65S6AOuUuwDrlLwA65S9AOuUvgDrlL8A65WAAOuVgQDrlYIA65WDAOuVhADrlYUA65WGAOuVhwDrlYgA65WJAOuVigDrlYsA65WMAOuVjQDrlY4A65WPAOuVkADrlZEA65WSAOuVkwDrlZQA65WVAOuVlgDrlZcA65WYAOuVmQDrlZoA65WbAOuVnADrlZ0A65WeAOuVnwDrlaAA65WhAOuVogDrlaMA65WkAOuVpQDrlaYA65WnAOuVqADrlakA65WqAOuVqwDrlawA65WtAOuVrgDrla8A65WwAOuVsQDrlbIA65WzAOuVtADrlbUA65W2AOuVtwDrlbgA65W5AOuVugDrlbsA65W8AOuVvQDrlb4A65W/AOuWgADrloEA65aCAOuWgwDrloQA65aFAOuWhgDrlocA65aIAOuWiQDrlooA65aLAOuWjADrlo0A65aOAOuWjwDrlpAA65aRAOuWkgDrlpMA65aUAOuWlQDrlpYA65aXAOuWmADrlpkA65aaAOuWmwDrlpwA65adAOuWngDrlp8A65agAOuWoQDrlqIA65ajAOuWpADrlqUA65amAOuWpwDrlqgA65apAOuWqgDrlqsA65asAOuWrQDrlq4A65avAOuWsADrlrEA65ayAOuWswDrlrQA65a1AOuWtgDrlrcA65a4AOuWuQDrlroA65a7AOuWvADrlr0A65a+AOuWvwDrl4AA65eBAOuXggDrl4MA65eEAOuXhQDrl4YA65eHAOuXiADrl4kA65eKAOuXiwDrl4wA65eNAOuXjgDrl48A65eQAOuXkQDrl5IA65eTAOuXlADrl5UA65eWAOuXlwDrl5gA65eZAOuXmgDrl5sA65ecAOuXnQDrl54A65efAOuXoADrl6EA65eiAOuXowDrl6QA65elAOuXpgDrl6cA65eoAOuXqQDrl6oA65erAOuXrADrl60A65euAOuXrwDrl7AA65exAOuXsgDrl7MA65e0AOuXtQDrl7YA65e3AOuXuADrl7kA65e6AOuXuwDrl7wA65e9AOuXvgDrl78A65iAAOuYgQDrmIIA65iDAOuYhADrmIUA65iGAOuYhwDrmIgA65iJAOuYigDrmIsA65iMAOuYjQDrmI4A65iPAOuYkADrmJEA65iSAOuYkwDrmJQA65iVAOuYlgDrmJcA65iYAOuYmQDrmJoA65ibAOuYnADrmJ0A65ieAOuYnwDrmKAA65ihAOuYogDrmKMA65ikAOuYpQDrmKYA65inAOuYqADrmKkA65iqAOuYqwDrmKwA65itAOuYrgDrmK8A65iwAOuYsQDrmLIA65izAOuYtADrmLUA65i2AOuYtwDrmLgA65i5AOuYugDrmLsA65i8AOuYvQDrmL4A65i/AOuZgADrmYEA65mCAOuZgwDrmYQA65mFAOuZhgDrmYcA65mIAOuZiQDrmYoA65mLAOuZjADrmY0A65mOAOuZjwDrmZAA65mRAOuZkgDrmZMA65mUAOuZlQDrmZYA65mXAOuZmADrmZkA65maAOuZmwDrmZwA65mdAOuZngDrmZ8A65mgAOuZoQDrmaIA65mjAOuZpADrmaUA65mmAOuZpwDrmagA65mpAOuZqgDrmasA65msAOuZrQDrma4A65mvAOuZsADrmbEA65myAOuZswDrmbQA65m1AOuZtgDrmbcA65m4AOuZuQDrmboA65m7AOuZvADrmb0A65m+AOuZvwDrmoAA65qBAOuaggDrmoMA65qEAOuahQDrmoYA65qHAOuaiADrmokA65qKAOuaiwDrmowA65qNAOuajgDrmo8A65qQAOuakQDrmpIA65qTAOualADrmpUA65qWAOualwDrmpgA65qZAOuamgDrmpsA65qcAOuanQDrmp4A65qfAOuaoADrmqEA65qiAOuaowDrmqQA65qlAOuapgDrmqcA65qoAOuaqQDrmqoA65qrAOuarADrmq0A65quAOuarwDrmrAA65qxAOuasgDrmrMA65q0AOuatQDrmrYA65q3AOuauADrmrkA65q6AOuauwDrmrwA65q9AOuavgDrmr8A65uAAOubgQDrm4IA65uDAOubhADrm4UA65uGAOubhwDrm4gA65uJAOubigDrm4sA65uMAOubjQDrm44A65uPAOubkADrm5EA65uSAOubkwDrm5QA65uVAOublgDrm5cA65uYAOubmQDrm5oA65ubAOubnADrm50A65ueAOubnwDrm6AA65uhAOubogDrm6MA65ukAOubpQDrm6YA65unAOubqADrm6kA65uqAOubqwDrm6wA65utAOubrgDrm68A65uwAOubsQDrm7IA65uzAOubtADrm7UA65u2AOubtwDrm7gA65u5AOubugDrm7sA65u8AOubvQDrm74A65u/AOucgADrnIEA65yCAOucgwDrnIQA65yFAOuchgDrnIcA65yIAOuciQDrnIoA65yLAOucjADrnI0A65yOAOucjwDrnJAA65yRAOuckgDrnJMA65yUAOuclQDrnJYA65yXAOucmADrnJkA65yaAOucmwDrnJwA65ydAOucngDrnJ8A65ygAOucoQDrnKIA65yjAOucpADrnKUA65ymAOucpwDrnKgA65ypAOucqgDrnKsA65ysAOucrQDrnK4A65yvAOucsADrnLEA65yyAOucswDrnLQA65y1AOuctgDrnLcA65y4AOucuQDrnLoA65y7AOucvADrnL0A65y+AOucvwDrnYAA652BAOudggDrnYMA652EAOudhQDrnYYA652HAOudiADrnYkA652KAOudiwDrnYwA652NAOudjgDrnY8A652QAOudkQDrnZIA652TAOudlADrnZUA652WAOudlwDrnZgA652ZAOudmgDrnZsA652cAOudnQDrnZ4A652fAOudoADrnaEA652iAOudowDrnaQA652lAOudpgDrnacA652oAOudqQDrnaoA652rAOudrADrna0A652uAOudrwDrnbAA652xAOudsgDrnbMA6520AOudtQDrnbYA6523AOuduADrnbkA6526AOuduwDrnbwA6529AOudvgDrnb8A656AAOuegQDrnoIA656DAOuehADrnoUA656GAOuehwDrnogA656JAOueigDrnosA656MAOuejQDrno4A656PAOuekADrnpEA656SAOuekwDrnpQA656VAOuelgDrnpcA656YAOuemQDrnpoA656bAOuenADrnp0A656eAOuenwDrnqAA656hAOueogDrnqMA656kAOuepQDrnqYA656nAOueqADrnqkA656qAOueqwDrnqwA656tAOuergDrnq8A656wAOuesQDrnrIA656zAOuetADrnrUA6562AOuetwDrnrgA6565AOueugDrnrsA6568AOuevQDrnr4A656/AOufgADrn4EA65+CAOufgwDrn4QA65+FAOufhgDrn4cA65+IAOufiQDrn4oA65+LAOufjADrn40A65+OAOufjwDrn5AA65+RAOufkgDrn5MA65+UAOuflQDrn5YA65+XAOufmADrn5kA65+aAOufmwDrn5wA65+dAOufngDrn58A65+gAOufoQDrn6IA65+jAOufpADrn6UA65+mAOufpwDrn6gA65+pAOufqgDrn6sA65+sAOufrQDrn64A65+vAOufsADrn7EA65+yAOufswDrn7QA65+1AOuftgDrn7cA65+4AOufuQDrn7oA65+7AOufvADrn70A65++AOufvwDroIAA66CBAOugggDroIMA66CEAOughQDroIYA66CHAOugiADroIkA66CKAOugiwDroIwA66CNAOugjgDroI8A66CQAOugkQDroJIA66CTAOuglADroJUA66CWAOuglwDroJgA66CZAOugmgDroJsA66CcAOugnQDroJ4A66CfAOugoADroKEA66CiAOugowDroKQA66ClAOugpgDroKcA66CoAOugqQDroKoA66CrAOugrADroK0A66CuAOugrwDroLAA66CxAOugsgDroLMA66C0AOugtQDroLYA66C3AOuguADroLkA66C6AOuguwDroLwA66C9AOugvgDroL8A66GAAOuhgQDroYIA66GDAOuhhADroYUA66GGAOuhhwDroYgA66GJAOuhigDroYsA66GMAOuhjQDroY4A66GPAOuhkADroZEA66GSAOuhkwDroZQA66GVAOuhlgDroZcA66GYAOuhmQDroZoA66GbAOuhnADroZ0A66GeAOuhnwDroaAA66GhAOuhogDroaMA66GkAOuhpQDroaYA66GnAOuhqADroakA66GqAOuhqwDroawA66GtAOuhrgDroa8A66GwAOuhsQDrobIA66GzAOuhtADrobUA66G2AOuhtwDrobgA66G5AOuhugDrobsA66G8AOuhvQDrob4A66G/AOuigADrooEA66KCAOuigwDrooQA66KFAOuihgDroocA66KIAOuiiQDroooA66KLAOuijADroo0A66KOAOuijwDropAA66KRAOuikgDropMA66KUAOuilQDropYA66KXAOuimADropkA66KaAOuimwDropwA66KdAOuingDrop8A66KgAOuioQDroqIA66KjAOuipADroqUA66KmAOuipwDroqgA66KpAOuiqgDroqsA66KsAOuirQDroq4A66KvAOuisADrorEA66KyAOuiswDrorQA66K1AOuitgDrorcA66K4AOuiuQDroroA66K7AOuivADror0A66K+AOuivwDro4AA66OBAOujggDro4MA66OEAOujhQDro4YA66OHAOujiADro4kA66OKAOujiwDro4wA66ONAOujjgDro48A66OQAOujkQDro5IA66OTAOujlADro5UA66OWAOujlwDro5gA66OZAOujmgDro5sA66OcAOujnQDro54A66OfAOujoADro6EA66OiAOujowDro6QA66OlAOujpgDro6cA66OoAOujqQDro6oA66OrAOujrADro60A66OuAOujrwDro7AA66OxAOujsgDro7MA66O0AOujtQDro7YA66O3AOujuADro7kA66O6AOujuwDro7wA66O9AOujvgDro78A66SAAOukgQDrpIIA66SDAOukhADrpIUA66SGAOukhwDrpIgA66SJAOukigDrpIsA66SMAOukjQDrpI4A66SPAOukkADrpJEA66SSAOukkwDrpJQA66SVAOuklgDrpJcA66SYAOukmQDrpJoA66SbAOuknADrpJ0A66SeAOuknwDrpKAA66ShAOukogDrpKMA66SkAOukpQDrpKYA66SnAOukqADrpKkA66SqAOukqwDrpKwA66StAOukrgDrpK8A66SwAOuksQDrpLIA66SzAOuktADrpLUA66S2AOuktwDrpLgA66S5AOukugDrpLsA66S8AOukvQDrpL4A66S/AOulgADrpYEA66WCAOulgwDrpYQA66WFAOulhgDrpYcA66WIAOuliQDrpYoA66WLAOuljADrpY0A66WOAOuljwDrpZAA66WRAOulkgDrpZMA66WUAOullQDrpZYA66WXAOulmADrpZkA66WaAOulmwDrpZwA66WdAOulngDrpZ8A66WgAOuloQDrpaIA66WjAOulpADrpaUA66WmAOulpwDrpagA66WpAOulqgDrpasA66WsAOulrQDrpa4A66WvAOulsADrpbEA66WyAOulswDrpbQA66W1AOultgDrpbcA66W4AOuluQDrpboA66W7AOulvADrpb0A66W+AOulvwDrpoAA66aBAOumggDrpoMA66aEAOumhQDrpoYA66aHAOumiADrpokA66aKAOumiwDrpowA66aNAOumjgDrpo8A66aQAOumkQDrppIA66aTAOumlADrppUA66aWAOumlwDrppgA66aZAOummgDrppsA66acAOumnQDrpp4A66afAOumoADrpqEA66aiAOumowDrpqQA66alAOumpgDrpqcA66aoAOumqQDrpqoA66arAOumrADrpq0A66auAOumrwDrprAA66axAOumsgDrprMA66a0AOumtQDrprYA66a3AOumuADrprkA66a6AOumuwDrprwA66a9AOumvgDrpr8A66eAAOungQDrp4IA66eDAOunhADrp4UA66eGAOunhwDrp4gA66eJAOunigDrp4sA66eMAOunjQDrp44A66ePAOunkADrp5EA66eSAOunkwDrp5QA66eVAOunlgDrp5cA66eYAOunmQDrp5oA66ebAOunnADrp50A66eeAOunnwDrp6AA66ehAOunogDrp6MA66ekAOunpQDrp6YA66enAOunqADrp6kA66eqAOunqwDrp6wA66etAOunrgDrp68A66ewAOunsQDrp7IA66ezAOuntADrp7UA66e2AOuntwDrp7gA66e5AOunugDrp7sA66e8AOunvQDrp74A66e/AOuogADrqIEA66iCAOuogwDrqIQA66iFAOuohgDrqIcA66iIAOuoiQDrqIoA66iLAOuojADrqI0A66iOAOuojwDrqJAA66iRAOuokgDrqJMA66iUAOuolQDrqJYA66iXAOuomADrqJkA66iaAOuomwDrqJwA66idAOuongDrqJ8A66igAOuooQDrqKIA66ijAOuopADrqKUA66imAOuopwDrqKgA66ipAOuoqgDrqKsA66isAOuorQDrqK4A66ivAOuosADrqLEA66iyAOuoswDrqLQA66i1AOuotgDrqLcA66i4AOuouQDrqLoA66i7AOuovADrqL0A66i+AOuovwDrqYAA66mBAOupggDrqYMA66mEAOuphQDrqYYA66mHAOupiADrqYkA66mKAOupiwDrqYwA66mNAOupjgDrqY8A66mQAOupkQDrqZIA66mTAOuplADrqZUA66mWAOuplwDrqZgA66mZAOupmgDrqZsA66mcAOupnQDrqZ4A66mfAOupoADrqaEA66miAOupowDrqaQA66mlAOuppgDrqacA66moAOupqQDrqaoA66mrAOuprADrqa0A66muAOuprwDrqbAA66mxAOupsgDrqbMA66m0AOuptQDrqbYA66m3AOupuADrqbkA66m6AOupuwDrqbwA66m9AOupvgDrqb8A66qAAOuqgQDrqoIA66qDAOuqhADrqoUA66qGAOuqhwDrqogA66qJAOuqigDrqosA66qMAOuqjQDrqo4A66qPAOuqkADrqpEA66qSAOuqkwDrqpQA66qVAOuqlgDrqpcA66qYAOuqmQDrqpoA66qbAOuqnADrqp0A66qeAOuqnwDrqqAA66qhAOuqogDrqqMA66qkAOuqpQDrqqYA66qnAOuqqADrqqkA66qqAOuqqwDrqqwA66qtAOuqrgDrqq8A66qwAOuqsQDrqrIA66qzAOuqtADrqrUA66q2AOuqtwDrqrgA66q5AOuqugDrqrsA66q8AOuqvQDrqr4A66q/AOurgADrq4EA66uCAOurgwDrq4QA66uFAOurhgDrq4cA66uIAOuriQDrq4oA66uLAOurjADrq40A66uOAOurjwDrq5AA66uRAOurkgDrq5MA66uUAOurlQDrq5YA66uXAOurmADrq5kA66uaAOurmwDrq5wA66udAOurngDrq58A66ugAOuroQDrq6IA66ujAOurpADrq6UA66umAOurpwDrq6gA66upAOurqgDrq6sA66usAOurrQDrq64A66uvAOursADrq7EA66uyAOurswDrq7QA66u1AOurtgDrq7cA66u4AOuruQDrq7oA66u7AOurvADrq70A66u+AOurvwDrrIAA66yBAOusggDrrIMA66yEAOushQDrrIYA66yHAOusiADrrIkA66yKAOusiwDrrIwA66yNAOusjgDrrI8A66yQAOuskQDrrJIA66yTAOuslADrrJUA66yWAOuslwDrrJgA66yZAOusmgDrrJsA66ycAOusnQDrrJ4A66yfAOusoADrrKEA66yiAOusowDrrKQA66ylAOuspgDrrKcA66yoAOusqQDrrKoA66yrAOusrADrrK0A66yuAOusrwDrrLAA66yxAOussgDrrLMA66y0AOustQDrrLYA66y3AOusuADrrLkA66y6AOusuwDrrLwA66y9AOusvgDrrL8A662AAOutgQDrrYIA662DAOuthADrrYUA662GAOuthwDrrYgA662JAOutigDrrYsA662MAOutjQDrrY4A662PAOutkADrrZEA662SAOutkwDrrZQA662VAOutlgDrrZcA662YAOutmQDrrZoA662bAOutnADrrZ0A662eAOutnwDrraAA662hAOutogDrraMA662kAOutpQDrraYA662nAOutqADrrakA662qAOutqwDrrawA662tAOutrgDrra8A662wAOutsQDrrbIA662zAOuttADrrbUA6622AOuttwDrrbgA6625AOutugDrrbsA6628AOutvQDrrb4A662/AOuugADrroEA666CAOuugwDrroQA666FAOuuhgDrrocA666IAOuuiQDrrooA666LAOuujADrro0A666OAOuujwDrrpAA666RAOuukgDrrpMA666UAOuulQDrrpYA666XAOuumADrrpkA666aAOuumwDrrpwA666dAOuungDrrp8A666gAOuuoQDrrqIA666jAOuupADrrqUA666mAOuupwDrrqgA666pAOuuqgDrrqsA666sAOuurQDrrq4A666vAOuusADrrrEA666yAOuuswDrrrQA6661AOuutgDrrrcA6664AOuuuQDrrroA6667AOuuvADrrr0A666+AOuuvwDrr4AA66+BAOuvggDrr4MA66+EAOuvhQDrr4YA66+HAOuviADrr4kA66+KAOuviwDrr4wA66+NAOuvjgDrr48A66+QAOuvkQDrr5IA66+TAOuvlADrr5UA66+WAOuvlwDrr5gA66+ZAOuvmgDrr5sA66+cAOuvnQDrr54A66+fAOuvoADrr6EA66+iAOuvowDrr6QA66+lAOuvpgDrr6cA66+oAOuvqQDrr6oA66+rAOuvrADrr60A66+uAOuvrwDrr7AA66+xAOuvsgDrr7MA66+0AOuvtQDrr7YA66+3AOuvuADrr7kA66+6AOuvuwDrr7wA66+9AOuvvgDrr78A67CAAOuwgQDrsIIA67CDAOuwhADrsIUA67CGAOuwhwDrsIgA67CJAOuwigDrsIsA67CMAOuwjQDrsI4A67CPAOuwkADrsJEA67CSAOuwkwDrsJQA67CVAOuwlgDrsJcA67CYAOuwmQDrsJoA67CbAOuwnADrsJ0A67CeAOuwnwDrsKAA67ChAOuwogDrsKMA67CkAOuwpQDrsKYA67CnAOuwqADrsKkA67CqAOuwqwDrsKwA67CtAOuwrgDrsK8A67CwAOuwsQDrsLIA67CzAOuwtADrsLUA67C2AOuwtwDrsLgA67C5AOuwugDrsLsA67C8AOuwvQDrsL4A67C/AOuxgADrsYEA67GCAOuxgwDrsYQA67GFAOuxhgDrsYcA67GIAOuxiQDrsYoA67GLAOuxjADrsY0A67GOAOuxjwDrsZAA67GRAOuxkgDrsZMA67GUAOuxlQDrsZYA67GXAOuxmADrsZkA67GaAOuxmwDrsZwA67GdAOuxngDrsZ8A67GgAOuxoQDrsaIA67GjAOuxpADrsaUA67GmAOuxpwDrsagA67GpAOuxqgDrsasA67GsAOuxrQDrsa4A67GvAOuxsADrsbEA67GyAOuxswDrsbQA67G1AOuxtgDrsbcA67G4AOuxuQDrsboA67G7AOuxvADrsb0A67G+AOuxvwDrsoAA67KBAOuyggDrsoMA67KEAOuyhQDrsoYA67KHAOuyiADrsokA67KKAOuyiwDrsowA67KNAOuyjgDrso8A67KQAOuykQDrspIA67KTAOuylADrspUA67KWAOuylwDrspgA67KZAOuymgDrspsA67KcAOuynQDrsp4A67KfAOuyoADrsqEA67KiAOuyowDrsqQA67KlAOuypgDrsqcA67KoAOuyqQDrsqoA67KrAOuyrADrsq0A67KuAOuyrwDrsrAA67KxAOuysgDrsrMA67K0AOuytQDrsrYA67K3AOuyuADrsrkA67K6AOuyuwDrsrwA67K9AOuyvgDrsr8A67OAAOuzgQDrs4IA67ODAOuzhADrs4UA67OGAOuzhwDrs4gA67OJAOuzigDrs4sA67OMAOuzjQDrs44A67OPAOuzkADrs5EA67OSAOuzkwDrs5QA67OVAOuzlgDrs5cA67OYAOuzmQDrs5oA67ObAOuznADrs50A67OeAOuznwDrs6AA67OhAOuzogDrs6MA67OkAOuzpQDrs6YA67OnAOuzqADrs6kA67OqAOuzqwDrs6wA67OtAOuzrgDrs68A67OwAOuzsQDrs7IA67OzAOuztADrs7UA67O2AOuztwDrs7gA67O5AOuzugDrs7sA67O8AOuzvQDrs74A67O/AOu0gADrtIEA67SCAOu0gwDrtIQA67SFAOu0hgDrtIcA67SIAOu0iQDrtIoA67SLAOu0jADrtI0A67SOAOu0jwDrtJAA67SRAOu0kgDrtJMA67SUAOu0lQDrtJYA67SXAOu0mADrtJkA67SaAOu0mwDrtJwA67SdAOu0ngDrtJ8A67SgAOu0oQDrtKIA67SjAOu0pADrtKUA67SmAOu0pwDrtKgA67SpAOu0qgDrtKsA67SsAOu0rQDrtK4A67SvAOu0sADrtLEA67SyAOu0swDrtLQA67S1AOu0tgDrtLcA67S4AOu0uQDrtLoA67S7AOu0vADrtL0A67S+AOu0vwDrtYAA67WBAOu1ggDrtYMA67WEAOu1hQDrtYYA67WHAOu1iADrtYkA67WKAOu1iwDrtYwA67WNAOu1jgDrtY8A67WQAOu1kQDrtZIA67WTAOu1lADrtZUA67WWAOu1lwDrtZgA67WZAOu1mgDrtZsA67WcAOu1nQDrtZ4A67WfAOu1oADrtaEA67WiAOu1owDrtaQA67WlAOu1pgDrtacA67WoAOu1qQDrtaoA67WrAOu1rADrta0A67WuAOu1rwDrtbAA67WxAOu1sgDrtbMA67W0AOu1tQDrtbYA67W3AOu1uADrtbkA67W6AOu1uwDrtbwA67W9AOu1vgDrtb8A67aAAOu2gQDrtoIA67aDAOu2hADrtoUA67aGAOu2hwDrtogA67aJAOu2igDrtosA67aMAOu2jQDrto4A67aPAOu2kADrtpEA67aSAOu2kwDrtpQA67aVAOu2lgDrtpcA67aYAOu2mQDrtpoA67abAOu2nADrtp0A67aeAOu2nwDrtqAA67ahAOu2ogDrtqMA67akAOu2pQDrtqYA67anAOu2qADrtqkA67aqAOu2qwDrtqwA67atAOu2rgDrtq8A67awAOu2sQDrtrIA67azAOu2tADrtrUA67a2AOu2twDrtrgA67a5AOu2ugDrtrsA67a8AOu2vQDrtr4A67a/AOu3gADrt4EA67eCAOu3gwDrt4QA67eFAOu3hgDrt4cA67eIAOu3iQDrt4oA67eLAOu3jADrt40A67eOAOu3jwDrt5AA67eRAOu3kgDrt5MA67eUAOu3lQDrt5YA67eXAOu3mADrt5kA67eaAOu3mwDrt5wA67edAOu3ngDrt58A67egAOu3oQDrt6IA67ejAOu3pADrt6UA67emAOu3pwDrt6gA67epAOu3qgDrt6sA67esAOu3rQDrt64A67evAOu3sADrt7EA67eyAOu3swDrt7QA67e1AOu3tgDrt7cA67e4AOu3uQDrt7oA67e7AOu3vADrt70A67e+AOu3vwDruIAA67iBAOu4ggDruIMA67iEAOu4hQDruIYA67iHAOu4iADruIkA67iKAOu4iwDruIwA67iNAOu4jgDruI8A67iQAOu4kQDruJIA67iTAOu4lADruJUA67iWAOu4lwDruJgA67iZAOu4mgDruJsA67icAOu4nQDruJ4A67ifAOu4oADruKEA67iiAOu4owDruKQA67ilAOu4pgDruKcA67ioAOu4qQDruKoA67irAOu4rADruK0A67iuAOu4rwDruLAA67ixAOu4sgDruLMA67i0AOu4tQDruLYA67i3AOu4uADruLkA67i6AOu4uwDruLwA67i9AOu4vgDruL8A67mAAOu5gQDruYIA67mDAOu5hADruYUA67mGAOu5hwDruYgA67mJAOu5igDruYsA67mMAOu5jQDruY4A67mPAOu5kADruZEA67mSAOu5kwDruZQA67mVAOu5lgDruZcA67mYAOu5mQDruZoA67mbAOu5nADruZ0A67meAOu5nwDruaAA67mhAOu5ogDruaMA67mkAOu5pQDruaYA67mnAOu5qADruakA67mqAOu5qwDruawA67mtAOu5rgDrua8A67mwAOu5sQDrubIA67mzAOu5tADrubUA67m2AOu5twDrubgA67m5AOu5ugDrubsA67m8AOu5vQDrub4A67m/AOu6gADruoEA67qCAOu6gwDruoQA67qFAOu6hgDruocA67qIAOu6iQDruooA67qLAOu6jADruo0A67qOAOu6jwDrupAA67qRAOu6kgDrupMA67qUAOu6lQDrupYA67qXAOu6mADrupkA67qaAOu6mwDrupwA67qdAOu6ngDrup8A67qgAOu6oQDruqIA67qjAOu6pADruqUA67qmAOu6pwDruqgA67qpAOu6qgDruqsA67qsAOu6rQDruq4A67qvAOu6sADrurEA67qyAOu6swDrurQA67q1AOu6tgDrurcA67q4AOu6uQDruroA67q7AOu6vADrur0A67q+AOu6vwDru4AA67uBAOu7ggDru4MA67uEAOu7hQDru4YA67uHAOu7iADru4kA67uKAOu7iwDru4wA67uNAOu7jgDru48A67uQAOu7kQDru5IA67uTAOu7lADru5UA67uWAOu7lwDru5gA67uZAOu7mgDru5sA67ucAOu7nQDru54A67ufAOu7oADru6EA67uiAOu7owDru6QA67ulAOu7pgDru6cA67uoAOu7qQDru6oA67urAOu7rADru60A67uuAOu7rwDru7AA67uxAOu7sgDru7MA67u0AOu7tQDru7YA67u3AOu7uADru7kA67u6AOu7uwDru7wA67u9AOu7vgDru78A67yAAOu8gQDrvIIA67yDAOu8hADrvIUA67yGAOu8hwDrvIgA67yJAOu8igDrvIsA67yMAOu8jQDrvI4A67yPAOu8kADrvJEA67ySAOu8kwDrvJQA67yVAOu8lgDrvJcA67yYAOu8mQDrvJoA67ybAOu8nADrvJ0A67yeAOu8nwDrvKAA67yhAOu8ogDrvKMA67ykAOu8pQDrvKYA67ynAOu8qADrvKkA67yqAOu8qwDrvKwA67ytAOu8rgDrvK8A67ywAOu8sQDrvLIA67yzAOu8tADrvLUA67y2AOu8twDrvLgA67y5AOu8ugDrvLsA67y8AOu8vQDrvL4A67y/AOu9gADrvYEA672CAOu9gwDrvYQA672FAOu9hgDrvYcA672IAOu9iQDrvYoA672LAOu9jADrvY0A672OAOu9jwDrvZAA672RAOu9kgDrvZMA672UAOu9lQDrvZYA672XAOu9mADrvZkA672aAOu9mwDrvZwA672dAOu9ngDrvZ8A672gAOu9oQDrvaIA672jAOu9pADrvaUA672mAOu9pwDrvagA672pAOu9qgDrvasA672sAOu9rQDrva4A672vAOu9sADrvbEA672yAOu9swDrvbQA6721AOu9tgDrvbcA6724AOu9uQDrvboA6727AOu9vADrvb0A672+AOu9vwDrvoAA676BAOu+ggDrvoMA676EAOu+hQDrvoYA676HAOu+iADrvokA676KAOu+iwDrvowA676NAOu+jgDrvo8A676QAOu+kQDrvpIA676TAOu+lADrvpUA676WAOu+lwDrvpgA676ZAOu+mgDrvpsA676cAOu+nQDrvp4A676fAOu+oADrvqEA676iAOu+owDrvqQA676lAOu+pgDrvqcA676oAOu+qQDrvqoA676rAOu+rADrvq0A676uAOu+rwDrvrAA676xAOu+sgDrvrMA6760AOu+tQDrvrYA6763AOu+uADrvrkA6766AOu+uwDrvrwA6769AOu+vgDrvr8A67+AAOu/gQDrv4IA67+DAOu/hADrv4UA67+GAOu/hwDrv4gA67+JAOu/igDrv4sA67+MAOu/jQDrv44A67+PAOu/kADrv5EA67+SAOu/kwDrv5QA67+VAOu/lgDrv5cA67+YAOu/mQDrv5oA67+bAOu/nADrv50A67+eAOu/nwDrv6AA67+hAOu/ogDrv6MA67+kAOu/pQDrv6YA67+nAOu/qADrv6kA67+qAOu/qwDrv6wA67+tAOu/rgDrv68A67+wAOu/sQDrv7IA67+zAOu/tADrv7UA67+2AOu/twDrv7gA67+5AOu/ugDrv7sA67+8AOu/vQDrv74A67+/AOyAgADsgIEA7ICCAOyAgwDsgIQA7ICFAOyAhgDsgIcA7ICIAOyAiQDsgIoA7ICLAOyAjADsgI0A7ICOAOyAjwDsgJAA7ICRAOyAkgDsgJMA7ICUAOyAlQDsgJYA7ICXAOyAmADsgJkA7ICaAOyAmwDsgJwA7ICdAOyAngDsgJ8A7ICgAOyAoQDsgKIA7ICjAOyApADsgKUA7ICmAOyApwDsgKgA7ICpAOyAqgDsgKsA7ICsAOyArQDsgK4A7ICvAOyAsADsgLEA7ICyAOyAswDsgLQA7IC1AOyAtgDsgLcA7IC4AOyAuQDsgLoA7IC7AOyAvADsgL0A7IC+AOyAvwDsgYAA7IGBAOyBggDsgYMA7IGEAOyBhQDsgYYA7IGHAOyBiADsgYkA7IGKAOyBiwDsgYwA7IGNAOyBjgDsgY8A7IGQAOyBkQDsgZIA7IGTAOyBlADsgZUA7IGWAOyBlwDsgZgA7IGZAOyBmgDsgZsA7IGcAOyBnQDsgZ4A7IGfAOyBoADsgaEA7IGiAOyBowDsgaQA7IGlAOyBpgDsgacA7IGoAOyBqQDsgaoA7IGrAOyBrADsga0A7IGuAOyBrwDsgbAA7IGxAOyBsgDsgbMA7IG0AOyBtQDsgbYA7IG3AOyBuADsgbkA7IG6AOyBuwDsgbwA7IG9AOyBvgDsgb8A7IKAAOyCgQDsgoIA7IKDAOyChADsgoUA7IKGAOyChwDsgogA7IKJAOyCigDsgosA7IKMAOyCjQDsgo4A7IKPAOyCkADsgpEA7IKSAOyCkwDsgpQA7IKVAOyClgDsgpcA7IKYAOyCmQDsgpoA7IKbAOyCnADsgp0A7IKeAOyCnwDsgqAA7IKhAOyCogDsgqMA7IKkAOyCpQDsgqYA7IKnAOyCqADsgqkA7IKqAOyCqwDsgqwA7IKtAOyCrgDsgq8A7IKwAOyCsQDsgrIA7IKzAOyCtADsgrUA7IK2AOyCtwDsgrgA7IK5AOyCugDsgrsA7IK8AOyCvQDsgr4A7IK/AOyDgADsg4EA7IOCAOyDgwDsg4QA7IOFAOyDhgDsg4cA7IOIAOyDiQDsg4oA7IOLAOyDjADsg40A7IOOAOyDjwDsg5AA7IORAOyDkgDsg5MA7IOUAOyDlQDsg5YA7IOXAOyDmADsg5kA7IOaAOyDmwDsg5wA7IOdAOyDngDsg58A7IOgAOyDoQDsg6IA7IOjAOyDpADsg6UA7IOmAOyDpwDsg6gA7IOpAOyDqgDsg6sA7IOsAOyDrQDsg64A7IOvAOyDsADsg7EA7IOyAOyDswDsg7QA7IO1AOyDtgDsg7cA7IO4AOyDuQDsg7oA7IO7AOyDvADsg70A7IO+AOyDvwDshIAA7ISBAOyEggDshIMA7ISEAOyEhQDshIYA7ISHAOyEiADshIkA7ISKAOyEiwDshIwA7ISNAOyEjgDshI8A7ISQAOyEkQDshJIA7ISTAOyElADshJUA7ISWAOyElwDshJgA7ISZAOyEmgDshJsA7IScAOyEnQDshJ4A7ISfAOyEoADshKEA7ISiAOyEowDshKQA7ISlAOyEpgDshKcA7ISoAOyEqQDshKoA7ISrAOyErADshK0A7ISuAOyErwDshLAA7ISxAOyEsgDshLMA7IS0AOyEtQDshLYA7IS3AOyEuADshLkA7IS6AOyEuwDshLwA7IS9AOyEvgDshL8A7IWAAOyFgQDshYIA7IWDAOyFhADshYUA7IWGAOyFhwDshYgA7IWJAOyFigDshYsA7IWMAOyFjQDshY4A7IWPAOyFkADshZEA7IWSAOyFkwDshZQA7IWVAOyFlgDshZcA7IWYAOyFmQDshZoA7IWbAOyFnADshZ0A7IWeAOyFnwDshaAA7IWhAOyFogDshaMA7IWkAOyFpQDshaYA7IWnAOyFqADshakA7IWqAOyFqwDshawA7IWtAOyFrgDsha8A7IWwAOyFsQDshbIA7IWzAOyFtADshbUA7IW2AOyFtwDshbgA7IW5AOyFugDshbsA7IW8AOyFvQDshb4A7IW/AOyGgADshoEA7IaCAOyGgwDshoQA7IaFAOyGhgDshocA7IaIAOyGiQDshooA7IaLAOyGjADsho0A7IaOAOyGjwDshpAA7IaRAOyGkgDshpMA7IaUAOyGlQDshpYA7IaXAOyGmADshpkA7IaaAOyGmwDshpwA7IadAOyGngDshp8A7IagAOyGoQDshqIA7IajAOyGpADshqUA7IamAOyGpwDshqgA7IapAOyGqgDshqsA7IasAOyGrQDshq4A7IavAOyGsADshrEA7IayAOyGswDshrQA7Ia1AOyGtgDshrcA7Ia4AOyGuQDshroA7Ia7AOyGvADshr0A7Ia+AOyGvwDsh4AA7IeBAOyHggDsh4MA7IeEAOyHhQDsh4YA7IeHAOyHiADsh4kA7IeKAOyHiwDsh4wA7IeNAOyHjgDsh48A7IeQAOyHkQDsh5IA7IeTAOyHlADsh5UA7IeWAOyHlwDsh5gA7IeZAOyHmgDsh5sA7IecAOyHnQDsh54A7IefAOyHoADsh6EA7IeiAOyHowDsh6QA7IelAOyHpgDsh6cA7IeoAOyHqQDsh6oA7IerAOyHrADsh60A7IeuAOyHrwDsh7AA7IexAOyHsgDsh7MA7Ie0AOyHtQDsh7YA7Ie3AOyHuADsh7kA7Ie6AOyHuwDsh7wA7Ie9AOyHvgDsh78A7IiAAOyIgQDsiIIA7IiDAOyIhADsiIUA7IiGAOyIhwDsiIgA7IiJAOyIigDsiIsA7IiMAOyIjQDsiI4A7IiPAOyIkADsiJEA7IiSAOyIkwDsiJQA7IiVAOyIlgDsiJcA7IiYAOyImQDsiJoA7IibAOyInADsiJ0A7IieAOyInwDsiKAA7IihAOyIogDsiKMA7IikAOyIpQDsiKYA7IinAOyIqADsiKkA7IiqAOyIqwDsiKwA7IitAOyIrgDsiK8A7IiwAOyIsQDsiLIA7IizAOyItADsiLUA7Ii2AOyItwDsiLgA7Ii5AOyIugDsiLsA7Ii8AOyIvQDsiL4A7Ii/AOyJgADsiYEA7ImCAOyJgwDsiYQA7ImFAOyJhgDsiYcA7ImIAOyJiQDsiYoA7ImLAOyJjADsiY0A7ImOAOyJjwDsiZAA7ImRAOyJkgDsiZMA7ImUAOyJlQDsiZYA7ImXAOyJmADsiZkA7ImaAOyJmwDsiZwA7ImdAOyJngDsiZ8A7ImgAOyJoQDsiaIA7ImjAOyJpADsiaUA7ImmAOyJpwDsiagA7ImpAOyJqgDsiasA7ImsAOyJrQDsia4A7ImvAOyJsADsibEA7ImyAOyJswDsibQA7Im1AOyJtgDsibcA7Im4AOyJuQDsiboA7Im7AOyJvADsib0A7Im+AOyJvwDsioAA7IqBAOyKggDsioMA7IqEAOyKhQDsioYA7IqHAOyKiADsiokA7IqKAOyKiwDsiowA7IqNAOyKjgDsio8A7IqQAOyKkQDsipIA7IqTAOyKlADsipUA7IqWAOyKlwDsipgA7IqZAOyKmgDsipsA7IqcAOyKnQDsip4A7IqfAOyKoADsiqEA7IqiAOyKowDsiqQA7IqlAOyKpgDsiqcA7IqoAOyKqQDsiqoA7IqrAOyKrADsiq0A7IquAOyKrwDsirAA7IqxAOyKsgDsirMA7Iq0AOyKtQDsirYA7Iq3AOyKuADsirkA7Iq6AOyKuwDsirwA7Iq9AOyKvgDsir8A7IuAAOyLgQDsi4IA7IuDAOyLhADsi4UA7IuGAOyLhwDsi4gA7IuJAOyLigDsi4sA7IuMAOyLjQDsi44A7IuPAOyLkADsi5EA7IuSAOyLkwDsi5QA7IuVAOyLlgDsi5cA7IuYAOyLmQDsi5oA7IubAOyLnADsi50A7IueAOyLnwDsi6AA7IuhAOyLogDsi6MA7IukAOyLpQDsi6YA7IunAOyLqADsi6kA7IuqAOyLqwDsi6wA7IutAOyLrgDsi68A7IuwAOyLsQDsi7IA7IuzAOyLtADsi7UA7Iu2AOyLtwDsi7gA7Iu5AOyLugDsi7sA7Iu8AOyLvQDsi74A7Iu/AOyMgADsjIEA7IyCAOyMgwDsjIQA7IyFAOyMhgDsjIcA7IyIAOyMiQDsjIoA7IyLAOyMjADsjI0A7IyOAOyMjwDsjJAA7IyRAOyMkgDsjJMA7IyUAOyMlQDsjJYA7IyXAOyMmADsjJkA7IyaAOyMmwDsjJwA7IydAOyMngDsjJ8A7IygAOyMoQDsjKIA7IyjAOyMpADsjKUA7IymAOyMpwDsjKgA7IypAOyMqgDsjKsA7IysAOyMrQDsjK4A7IyvAOyMsADsjLEA7IyyAOyMswDsjLQA7Iy1AOyMtgDsjLcA7Iy4AOyMuQDsjLoA7Iy7AOyMvADsjL0A7Iy+AOyMvwDsjYAA7I2BAOyNggDsjYMA7I2EAOyNhQDsjYYA7I2HAOyNiADsjYkA7I2KAOyNiwDsjYwA7I2NAOyNjgDsjY8A7I2QAOyNkQDsjZIA7I2TAOyNlADsjZUA7I2WAOyNlwDsjZgA7I2ZAOyNmgDsjZsA7I2cAOyNnQDsjZ4A7I2fAOyNoADsjaEA7I2iAOyNowDsjaQA7I2lAOyNpgDsjacA7I2oAOyNqQDsjaoA7I2rAOyNrADsja0A7I2uAOyNrwDsjbAA7I2xAOyNsgDsjbMA7I20AOyNtQDsjbYA7I23AOyNuADsjbkA7I26AOyNuwDsjbwA7I29AOyNvgDsjb8A7I6AAOyOgQDsjoIA7I6DAOyOhADsjoUA7I6GAOyOhwDsjogA7I6JAOyOigDsjosA7I6MAOyOjQDsjo4A7I6PAOyOkADsjpEA7I6SAOyOkwDsjpQA7I6VAOyOlgDsjpcA7I6YAOyOmQDsjpoA7I6bAOyOnADsjp0A7I6eAOyOnwDsjqAA7I6hAOyOogDsjqMA7I6kAOyOpQDsjqYA7I6nAOyOqADsjqkA7I6qAOyOqwDsjqwA7I6tAOyOrgDsjq8A7I6wAOyOsQDsjrIA7I6zAOyOtADsjrUA7I62AOyOtwDsjrgA7I65AOyOugDsjrsA7I68AOyOvQDsjr4A7I6/AOyPgADsj4EA7I+CAOyPgwDsj4QA7I+FAOyPhgDsj4cA7I+IAOyPiQDsj4oA7I+LAOyPjADsj40A7I+OAOyPjwDsj5AA7I+RAOyPkgDsj5MA7I+UAOyPlQDsj5YA7I+XAOyPmADsj5kA7I+aAOyPmwDsj5wA7I+dAOyPngDsj58A7I+gAOyPoQDsj6IA7I+jAOyPpADsj6UA7I+mAOyPpwDsj6gA7I+pAOyPqgDsj6sA7I+sAOyPrQDsj64A7I+vAOyPsADsj7EA7I+yAOyPswDsj7QA7I+1AOyPtgDsj7cA7I+4AOyPuQDsj7oA7I+7AOyPvADsj70A7I++AOyPvwDskIAA7JCBAOyQggDskIMA7JCEAOyQhQDskIYA7JCHAOyQiADskIkA7JCKAOyQiwDskIwA7JCNAOyQjgDskI8A7JCQAOyQkQDskJIA7JCTAOyQlADskJUA7JCWAOyQlwDskJgA7JCZAOyQmgDskJsA7JCcAOyQnQDskJ4A7JCfAOyQoADskKEA7JCiAOyQowDskKQA7JClAOyQpgDskKcA7JCoAOyQqQDskKoA7JCrAOyQrADskK0A7JCuAOyQrwDskLAA7JCxAOyQsgDskLMA7JC0AOyQtQDskLYA7JC3AOyQuADskLkA7JC6AOyQuwDskLwA7JC9AOyQvgDskL8A7JGAAOyRgQDskYIA7JGDAOyRhADskYUA7JGGAOyRhwDskYgA7JGJAOyRigDskYsA7JGMAOyRjQDskY4A7JGPAOyRkADskZEA7JGSAOyRkwDskZQA7JGVAOyRlgDskZcA7JGYAOyRmQDskZoA7JGbAOyRnADskZ0A7JGeAOyRnwDskaAA7JGhAOyRogDskaMA7JGkAOyRpQDskaYA7JGnAOyRqADskakA7JGqAOyRqwDskawA7JGtAOyRrgDska8A7JGwAOyRsQDskbIA7JGzAOyRtADskbUA7JG2AOyRtwDskbgA7JG5AOyRugDskbsA7JG8AOyRvQDskb4A7JG/AOySgADskoEA7JKCAOySgwDskoQA7JKFAOyShgDskocA7JKIAOySiQDskooA7JKLAOySjADsko0A7JKOAOySjwDskpAA7JKRAOySkgDskpMA7JKUAOySlQDskpYA7JKXAOySmADskpkA7JKaAOySmwDskpwA7JKdAOySngDskp8A7JKgAOySoQDskqIA7JKjAOySpADskqUA7JKmAOySpwDskqgA7JKpAOySqgDskqsA7JKsAOySrQDskq4A7JKvAOySsADskrEA7JKyAOySswDskrQA7JK1AOyStgDskrcA7JK4AOySuQDskroA7JK7AOySvADskr0A7JK+AOySvwDsk4AA7JOBAOyTggDsk4MA7JOEAOyThQDsk4YA7JOHAOyTiADsk4kA7JOKAOyTiwDsk4wA7JONAOyTjgDsk48A7JOQAOyTkQDsk5IA7JOTAOyTlADsk5UA7JOWAOyTlwDsk5gA7JOZAOyTmgDsk5sA7JOcAOyTnQDsk54A7JOfAOyToADsk6EA7JOiAOyTowDsk6QA7JOlAOyTpgDsk6cA7JOoAOyTqQDsk6oA7JOrAOyTrADsk60A7JOuAOyTrwDsk7AA7JOxAOyTsgDsk7MA7JO0AOyTtQDsk7YA7JO3AOyTuADsk7kA7JO6AOyTuwDsk7wA7JO9AOyTvgDsk78A7JSAAOyUgQDslIIA7JSDAOyUhADslIUA7JSGAOyUhwDslIgA7JSJAOyUigDslIsA7JSMAOyUjQDslI4A7JSPAOyUkADslJEA7JSSAOyUkwDslJQA7JSVAOyUlgDslJcA7JSYAOyUmQDslJoA7JSbAOyUnADslJ0A7JSeAOyUnwDslKAA7JShAOyUogDslKMA7JSkAOyUpQDslKYA7JSnAOyUqADslKkA7JSqAOyUqwDslKwA7JStAOyUrgDslK8A7JSwAOyUsQDslLIA7JSzAOyUtADslLUA7JS2AOyUtwDslLgA7JS5AOyUugDslLsA7JS8AOyUvQDslL4A7JS/AOyVgADslYEA7JWCAOyVgwDslYQA7JWFAOyVhgDslYcA7JWIAOyViQDslYoA7JWLAOyVjADslY0A7JWOAOyVjwDslZAA7JWRAOyVkgDslZMA7JWUAOyVlQDslZYA7JWXAOyVmADslZkA7JWaAOyVmwDslZwA7JWdAOyVngDslZ8A7JWgAOyVoQDslaIA7JWjAOyVpADslaUA7JWmAOyVpwDslagA7JWpAOyVqgDslasA7JWsAOyVrQDsla4A7JWvAOyVsADslbEA7JWyAOyVswDslbQA7JW1AOyVtgDslbcA7JW4AOyVuQDslboA7JW7AOyVvADslb0A7JW+AOyVvwDsloAA7JaBAOyWggDsloMA7JaEAOyWhQDsloYA7JaHAOyWiADslokA7JaKAOyWiwDslowA7JaNAOyWjgDslo8A7JaQAOyWkQDslpIA7JaTAOyWlADslpUA7JaWAOyWlwDslpgA7JaZAOyWmgDslpsA7JacAOyWnQDslp4A7JafAOyWoADslqEA7JaiAOyWowDslqQA7JalAOyWpgDslqcA7JaoAOyWqQDslqoA7JarAOyWrADslq0A7JauAOyWrwDslrAA7JaxAOyWsgDslrMA7Ja0AOyWtQDslrYA7Ja3AOyWuADslrkA7Ja6AOyWuwDslrwA7Ja9AOyWvgDslr8A7JeAAOyXgQDsl4IA7JeDAOyXhADsl4UA7JeGAOyXhwDsl4gA7JeJAOyXigDsl4sA7JeMAOyXjQDsl44A7JePAOyXkADsl5EA7JeSAOyXkwDsl5QA7JeVAOyXlgDsl5cA7JeYAOyXmQDsl5oA7JebAOyXnADsl50A7JeeAOyXnwDsl6AA7JehAOyXogDsl6MA7JekAOyXpQDsl6YA7JenAOyXqADsl6kA7JeqAOyXqwDsl6wA7JetAOyXrgDsl68A7JewAOyXsQDsl7IA7JezAOyXtADsl7UA7Je2AOyXtwDsl7gA7Je5AOyXugDsl7sA7Je8AOyXvQDsl74A7Je/AOyYgADsmIEA7JiCAOyYgwDsmIQA7JiFAOyYhgDsmIcA7JiIAOyYiQDsmIoA7JiLAOyYjADsmI0A7JiOAOyYjwDsmJAA7JiRAOyYkgDsmJMA7JiUAOyYlQDsmJYA7JiXAOyYmADsmJkA7JiaAOyYmwDsmJwA7JidAOyYngDsmJ8A7JigAOyYoQDsmKIA7JijAOyYpADsmKUA7JimAOyYpwDsmKgA7JipAOyYqgDsmKsA7JisAOyYrQDsmK4A7JivAOyYsADsmLEA7JiyAOyYswDsmLQA7Ji1AOyYtgDsmLcA7Ji4AOyYuQDsmLoA7Ji7AOyYvADsmL0A7Ji+AOyYvwDsmYAA7JmBAOyZggDsmYMA7JmEAOyZhQDsmYYA7JmHAOyZiADsmYkA7JmKAOyZiwDsmYwA7JmNAOyZjgDsmY8A7JmQAOyZkQDsmZIA7JmTAOyZlADsmZUA7JmWAOyZlwDsmZgA7JmZAOyZmgDsmZsA7JmcAOyZnQDsmZ4A7JmfAOyZoADsmaEA7JmiAOyZowDsmaQA7JmlAOyZpgDsmacA7JmoAOyZqQDsmaoA7JmrAOyZrADsma0A7JmuAOyZrwDsmbAA7JmxAOyZsgDsmbMA7Jm0AOyZtQDsmbYA7Jm3AOyZuADsmbkA7Jm6AOyZuwDsmbwA7Jm9AOyZvgDsmb8A7JqAAOyagQDsmoIA7JqDAOyahADsmoUA7JqGAOyahwDsmogA7JqJAOyaigDsmosA7JqMAOyajQDsmo4A7JqPAOyakADsmpEA7JqSAOyakwDsmpQA7JqVAOyalgDsmpcA7JqYAOyamQDsmpoA7JqbAOyanADsmp0A7JqeAOyanwDsmqAA7JqhAOyaogDsmqMA7JqkAOyapQDsmqYA7JqnAOyaqADsmqkA7JqqAOyaqwDsmqwA7JqtAOyargDsmq8A7JqwAOyasQDsmrIA7JqzAOyatADsmrUA7Jq2AOyatwDsmrgA7Jq5AOyaugDsmrsA7Jq8AOyavQDsmr4A7Jq/AOybgADsm4EA7JuCAOybgwDsm4QA7JuFAOybhgDsm4cA7JuIAOybiQDsm4oA7JuLAOybjADsm40A7JuOAOybjwDsm5AA7JuRAOybkgDsm5MA7JuUAOyblQDsm5YA7JuXAOybmADsm5kA7JuaAOybmwDsm5wA7JudAOybngDsm58A7JugAOyboQDsm6IA7JujAOybpADsm6UA7JumAOybpwDsm6gA7JupAOybqgDsm6sA7JusAOybrQDsm64A7JuvAOybsADsm7EA7JuyAOybswDsm7QA7Ju1AOybtgDsm7cA7Ju4AOybuQDsm7oA7Ju7AOybvADsm70A7Ju+AOybvwDsnIAA7JyBAOycggDsnIMA7JyEAOychQDsnIYA7JyHAOyciADsnIkA7JyKAOyciwDsnIwA7JyNAOycjgDsnI8A7JyQAOyckQDsnJIA7JyTAOyclADsnJUA7JyWAOyclwDsnJgA7JyZAOycmgDsnJsA7JycAOycnQDsnJ4A7JyfAOycoADsnKEA7JyiAOycowDsnKQA7JylAOycpgDsnKcA7JyoAOycqQDsnKoA7JyrAOycrADsnK0A7JyuAOycrwDsnLAA7JyxAOycsgDsnLMA7Jy0AOyctQDsnLYA7Jy3AOycuADsnLkA7Jy6AOycuwDsnLwA7Jy9AOycvgDsnL8A7J2AAOydgQDsnYIA7J2DAOydhADsnYUA7J2GAOydhwDsnYgA7J2JAOydigDsnYsA7J2MAOydjQDsnY4A7J2PAOydkADsnZEA7J2SAOydkwDsnZQA7J2VAOydlgDsnZcA7J2YAOydmQDsnZoA7J2bAOydnADsnZ0A7J2eAOydnwDsnaAA7J2hAOydogDsnaMA7J2kAOydpQDsnaYA7J2nAOydqADsnakA7J2qAOydqwDsnawA7J2tAOydrgDsna8A7J2wAOydsQDsnbIA7J2zAOydtADsnbUA7J22AOydtwDsnbgA7J25AOydugDsnbsA7J28AOydvQDsnb4A7J2/AOyegADsnoEA7J6CAOyegwDsnoQA7J6FAOyehgDsnocA7J6IAOyeiQDsnooA7J6LAOyejADsno0A7J6OAOyejwDsnpAA7J6RAOyekgDsnpMA7J6UAOyelQDsnpYA7J6XAOyemADsnpkA7J6aAOyemwDsnpwA7J6dAOyengDsnp8A7J6gAOyeoQDsnqIA7J6jAOyepADsnqUA7J6mAOyepwDsnqgA7J6pAOyeqgDsnqsA7J6sAOyerQDsnq4A7J6vAOyesADsnrEA7J6yAOyeswDsnrQA7J61AOyetgDsnrcA7J64AOyeuQDsnroA7J67AOyevADsnr0A7J6+AOyevwDsn4AA7J+BAOyfggDsn4MA7J+EAOyfhQDsn4YA7J+HAOyfiADsn4kA7J+KAOyfiwDsn4wA7J+NAOyfjgDsn48A7J+QAOyfkQDsn5IA7J+TAOyflADsn5UA7J+WAOyflwDsn5gA7J+ZAOyfmgDsn5sA7J+cAOyfnQDsn54A7J+fAOyfoADsn6EA7J+iAOyfowDsn6QA7J+lAOyfpgDsn6cA7J+oAOyfqQDsn6oA7J+rAOyfrADsn60A7J+uAOyfrwDsn7AA7J+xAOyfsgDsn7MA7J+0AOyftQDsn7YA7J+3AOyfuADsn7kA7J+6AOyfuwDsn7wA7J+9AOyfvgDsn78A7KCAAOyggQDsoIIA7KCDAOyghADsoIUA7KCGAOyghwDsoIgA7KCJAOygigDsoIsA7KCMAOygjQDsoI4A7KCPAOygkADsoJEA7KCSAOygkwDsoJQA7KCVAOyglgDsoJcA7KCYAOygmQDsoJoA7KCbAOygnADsoJ0A7KCeAOygnwDsoKAA7KChAOygogDsoKMA7KCkAOygpQDsoKYA7KCnAOygqADsoKkA7KCqAOygqwDsoKwA7KCtAOygrgDsoK8A7KCwAOygsQDsoLIA7KCzAOygtADsoLUA7KC2AOygtwDsoLgA7KC5AOygugDsoLsA7KC8AOygvQDsoL4A7KC/AOyhgADsoYEA7KGCAOyhgwDsoYQA7KGFAOyhhgDsoYcA7KGIAOyhiQDsoYoA7KGLAOyhjADsoY0A7KGOAOyhjwDsoZAA7KGRAOyhkgDsoZMA7KGUAOyhlQDsoZYA7KGXAOyhmADsoZkA7KGaAOyhmwDsoZwA7KGdAOyhngDsoZ8A7KGgAOyhoQDsoaIA7KGjAOyhpADsoaUA7KGmAOyhpwDsoagA7KGpAOyhqgDsoasA7KGsAOyhrQDsoa4A7KGvAOyhsADsobEA7KGyAOyhswDsobQA7KG1AOyhtgDsobcA7KG4AOyhuQDsoboA7KG7AOyhvADsob0A7KG+AOyhvwDsooAA7KKBAOyiggDsooMA7KKEAOyihQDsooYA7KKHAOyiiADsookA7KKKAOyiiwDsoowA7KKNAOyijgDsoo8A7KKQAOyikQDsopIA7KKTAOyilADsopUA7KKWAOyilwDsopgA7KKZAOyimgDsopsA7KKcAOyinQDsop4A7KKfAOyioADsoqEA7KKiAOyiowDsoqQA7KKlAOyipgDsoqcA7KKoAOyiqQDsoqoA7KKrAOyirADsoq0A7KKuAOyirwDsorAA7KKxAOyisgDsorMA7KK0AOyitQDsorYA7KK3AOyiuADsorkA7KK6AOyiuwDsorwA7KK9AOyivgDsor8A7KOAAOyjgQDso4IA7KODAOyjhADso4UA7KOGAOyjhwDso4gA7KOJAOyjigDso4sA7KOMAOyjjQDso44A7KOPAOyjkADso5EA7KOSAOyjkwDso5QA7KOVAOyjlgDso5cA7KOYAOyjmQDso5oA7KObAOyjnADso50A7KOeAOyjnwDso6AA7KOhAOyjogDso6MA7KOkAOyjpQDso6YA7KOnAOyjqADso6kA7KOqAOyjqwDso6wA7KOtAOyjrgDso68A7KOwAOyjsQDso7IA7KOzAOyjtADso7UA7KO2AOyjtwDso7gA7KO5AOyjugDso7sA7KO8AOyjvOydmADso70A7KO+AOyjvwDspIAA7KSBAOykggDspIMA7KSEAOykhQDspIYA7KSHAOykiADspIkA7KSKAOykiwDspIwA7KSNAOykjgDspI8A7KSQAOykkQDspJIA7KSTAOyklADspJUA7KSWAOyklwDspJgA7KSZAOykmgDspJsA7KScAOyknQDspJ4A7KSfAOykoADspKEA7KSiAOykowDspKQA7KSlAOykpgDspKcA7KSoAOykqQDspKoA7KSrAOykrADspK0A7KSuAOykrwDspLAA7KSxAOyksgDspLMA7KS0AOyktQDspLYA7KS3AOykuADspLkA7KS6AOykuwDspLwA7KS9AOykvgDspL8A7KWAAOylgQDspYIA7KWDAOylhADspYUA7KWGAOylhwDspYgA7KWJAOyligDspYsA7KWMAOyljQDspY4A7KWPAOylkADspZEA7KWSAOylkwDspZQA7KWVAOyllgDspZcA7KWYAOylmQDspZoA7KWbAOylnADspZ0A7KWeAOylnwDspaAA7KWhAOylogDspaMA7KWkAOylpQDspaYA7KWnAOylqADspakA7KWqAOylqwDspawA7KWtAOylrgDspa8A7KWwAOylsQDspbIA7KWzAOyltADspbUA7KW2AOyltwDspbgA7KW5AOylugDspbsA7KW8AOylvQDspb4A7KW/AOymgADspoEA7KaCAOymgwDspoQA7KaFAOymhgDspocA7KaIAOymiQDspooA7KaLAOymjADspo0A7KaOAOymjwDsppAA7KaRAOymkgDsppMA7KaUAOymlQDsppYA7KaXAOymmADsppkA7KaaAOymmwDsppwA7KadAOymngDspp8A7KagAOymoQDspqIA7KajAOympADspqUA7KamAOympwDspqgA7KapAOymqgDspqsA7KasAOymrQDspq4A7KavAOymsADsprEA7KayAOymswDsprQA7Ka1AOymtgDsprcA7Ka4AOymuQDsproA7Ka7AOymvADspr0A7Ka+AOymvwDsp4AA7KeBAOynggDsp4MA7KeEAOynhQDsp4YA7KeHAOyniADsp4kA7KeKAOyniwDsp4wA7KeNAOynjgDsp48A7KeQAOynkQDsp5IA7KeTAOynlADsp5UA7KeWAOynlwDsp5gA7KeZAOynmgDsp5sA7KecAOynnQDsp54A7KefAOynoADsp6EA7KeiAOynowDsp6QA7KelAOynpgDsp6cA7KeoAOynqQDsp6oA7KerAOynrADsp60A7KeuAOynrwDsp7AA7KexAOynsgDsp7MA7Ke0AOyntQDsp7YA7Ke3AOynuADsp7kA7Ke6AOynuwDsp7wA7Ke9AOynvgDsp78A7KiAAOyogQDsqIIA7KiDAOyohADsqIUA7KiGAOyohwDsqIgA7KiJAOyoigDsqIsA7KiMAOyojQDsqI4A7KiPAOyokADsqJEA7KiSAOyokwDsqJQA7KiVAOyolgDsqJcA7KiYAOyomQDsqJoA7KibAOyonADsqJ0A7KieAOyonwDsqKAA7KihAOyoogDsqKMA7KikAOyopQDsqKYA7KinAOyoqADsqKkA7KiqAOyoqwDsqKwA7KitAOyorgDsqK8A7KiwAOyosQDsqLIA7KizAOyotADsqLUA7Ki2AOyotwDsqLgA7Ki5AOyougDsqLsA7Ki8AOyovQDsqL4A7Ki/AOypgADsqYEA7KmCAOypgwDsqYQA7KmFAOyphgDsqYcA7KmIAOypiQDsqYoA7KmLAOypjADsqY0A7KmOAOypjwDsqZAA7KmRAOypkgDsqZMA7KmUAOyplQDsqZYA7KmXAOypmADsqZkA7KmaAOypmwDsqZwA7KmdAOypngDsqZ8A7KmgAOypoQDsqaIA7KmjAOyppADsqaUA7KmmAOyppwDsqagA7KmpAOypqgDsqasA7KmsAOyprQDsqa4A7KmvAOypsADsqbEA7KmyAOypswDsqbQA7Km1AOyptgDsqbcA7Km4AOypuQDsqboA7Km7AOypvADsqb0A7Km+AOypvwDsqoAA7KqBAOyqggDsqoMA7KqEAOyqhQDsqoYA7KqHAOyqiADsqokA7KqKAOyqiwDsqowA7KqNAOyqjgDsqo8A7KqQAOyqkQDsqpIA7KqTAOyqlADsqpUA7KqWAOyqlwDsqpgA7KqZAOyqmgDsqpsA7KqcAOyqnQDsqp4A7KqfAOyqoADsqqEA7KqiAOyqowDsqqQA7KqlAOyqpgDsqqcA7KqoAOyqqQDsqqoA7KqrAOyqrADsqq0A7KquAOyqrwDsqrAA7KqxAOyqsgDsqrMA7Kq0AOyqtQDsqrYA7Kq3AOyquADsqrkA7Kq6AOyquwDsqrwA7Kq9AOyqvgDsqr8A7KuAAOyrgQDsq4IA7KuDAOyrhADsq4UA7KuGAOyrhwDsq4gA7KuJAOyrigDsq4sA7KuMAOyrjQDsq44A7KuPAOyrkADsq5EA7KuSAOyrkwDsq5QA7KuVAOyrlgDsq5cA7KuYAOyrmQDsq5oA7KubAOyrnADsq50A7KueAOyrnwDsq6AA7KuhAOyrogDsq6MA7KukAOyrpQDsq6YA7KunAOyrqADsq6kA7KuqAOyrqwDsq6wA7KutAOyrrgDsq68A7KuwAOyrsQDsq7IA7KuzAOyrtADsq7UA7Ku2AOyrtwDsq7gA7Ku5AOyrugDsq7sA7Ku8AOyrvQDsq74A7Ku/AOysgADsrIEA7KyCAOysgwDsrIQA7KyFAOyshgDsrIcA7KyIAOysiQDsrIoA7KyLAOysjADsrI0A7KyOAOysjwDsrJAA7KyRAOyskgDsrJMA7KyUAOyslQDsrJYA7KyXAOysmADsrJkA7KyaAOysmwDsrJwA7KydAOysngDsrJ8A7KygAOysoQDsrKIA7KyjAOyspADsrKUA7KymAOyspwDsrKgA7KypAOysqgDsrKsA7KysAOysrQDsrK4A7KyvAOyssADsrLEA7KyyAOysswDsrLQA7Ky1AOystgDsrLcA7Ky4AOysuQDsrLoA7Ky7AOysvADsrL0A7Ky+AOysvwDsrYAA7K2BAOytggDsrYMA7K2EAOythQDsrYYA7K2HAOytiADsrYkA7K2KAOytiwDsrYwA7K2NAOytjgDsrY8A7K2QAOytkQDsrZIA7K2TAOytlADsrZUA7K2WAOytlwDsrZgA7K2ZAOytmgDsrZsA7K2cAOytnQDsrZ4A7K2fAOytoADsraEA7K2iAOytowDsraQA7K2lAOytpgDsracA7K2oAOytqQDsraoA7K2rAOytrADsra0A7K2uAOytrwDsrbAA7K2xAOytsgDsrbMA7K20AOyttQDsrbYA7K23AOytuADsrbkA7K26AOytuwDsrbwA7K29AOytvgDsrb8A7K6AAOyugQDsroIA7K6DAOyuhADsroUA7K6GAOyuhwDsrogA7K6JAOyuigDsrosA7K6MAOyujQDsro4A7K6PAOyukADsrpEA7K6SAOyukwDsrpQA7K6VAOyulgDsrpcA7K6YAOyumQDsrpoA7K6bAOyunADsrp0A7K6eAOyunwDsrqAA7K6hAOyuogDsrqMA7K6kAOyupQDsrqYA7K6nAOyuqADsrqkA7K6qAOyuqwDsrqwA7K6tAOyurgDsrq8A7K6wAOyusQDsrrIA7K6zAOyutADsrrUA7K62AOyutwDsrrgA7K65AOyuugDsrrsA7K68AOyuvQDsrr4A7K6/AOyvgADsr4EA7K+CAOyvgwDsr4QA7K+FAOyvhgDsr4cA7K+IAOyviQDsr4oA7K+LAOyvjADsr40A7K+OAOyvjwDsr5AA7K+RAOyvkgDsr5MA7K+UAOyvlQDsr5YA7K+XAOyvmADsr5kA7K+aAOyvmwDsr5wA7K+dAOyvngDsr58A7K+gAOyvoQDsr6IA7K+jAOyvpADsr6UA7K+mAOyvpwDsr6gA7K+pAOyvqgDsr6sA7K+sAOyvrQDsr64A7K+vAOyvsADsr7EA7K+yAOyvswDsr7QA7K+1AOyvtgDsr7cA7K+4AOyvuQDsr7oA7K+7AOyvvADsr70A7K++AOyvvwDssIAA7LCBAOywggDssIMA7LCEAOywhQDssIYA7LCHAOywiADssIkA7LCKAOywiwDssIwA7LCNAOywjgDssI8A7LCQAOywkQDssJIA7LCTAOywlADssJUA7LCWAOywlwDssJgA7LCZAOywmgDssJsA7LCcAOywnQDssJ4A7LCfAOywoADssKEA7LCiAOywowDssKQA7LClAOywpgDssKcA7LCoAOywqQDssKoA7LCrAOywrADssK0A7LCuAOywrwDssLAA7LCxAOywsgDssLMA7LC0AOywtQDssLYA7LC3AOywuADssLjqs6AA7LC5AOywugDssLsA7LC8AOywvQDssL4A7LC/AOyxgADssYEA7LGCAOyxgwDssYQA7LGFAOyxhgDssYcA7LGIAOyxiQDssYoA7LGLAOyxjADssY0A7LGOAOyxjwDssZAA7LGRAOyxkgDssZMA7LGUAOyxlQDssZYA7LGXAOyxmADssZkA7LGaAOyxmwDssZwA7LGdAOyxngDssZ8A7LGgAOyxoQDssaIA7LGjAOyxpADssaUA7LGmAOyxpwDssagA7LGpAOyxqgDssasA7LGsAOyxrQDssa4A7LGvAOyxsADssbEA7LGyAOyxswDssbQA7LG1AOyxtgDssbcA7LG4AOyxuQDssboA7LG7AOyxvADssb0A7LG+AOyxvwDssoAA7LKBAOyyggDssoMA7LKEAOyyhQDssoYA7LKHAOyyiADssokA7LKKAOyyiwDssowA7LKNAOyyjgDsso8A7LKQAOyykQDsspIA7LKTAOyylADsspUA7LKWAOyylwDsspgA7LKZAOyymgDsspsA7LKcAOyynQDssp4A7LKfAOyyoADssqEA7LKiAOyyowDssqQA7LKlAOyypgDssqcA7LKoAOyyqQDssqoA7LKrAOyyrADssq0A7LKuAOyyrwDssrAA7LKxAOyysgDssrMA7LK0AOyytQDssrYA7LK3AOyyuADssrkA7LK6AOyyuwDssrwA7LK9AOyyvgDssr8A7LOAAOyzgQDss4IA7LODAOyzhADss4UA7LOGAOyzhwDss4gA7LOJAOyzigDss4sA7LOMAOyzjQDss44A7LOPAOyzkADss5EA7LOSAOyzkwDss5QA7LOVAOyzlgDss5cA7LOYAOyzmQDss5oA7LObAOyznADss50A7LOeAOyznwDss6AA7LOhAOyzogDss6MA7LOkAOyzpQDss6YA7LOnAOyzqADss6kA7LOqAOyzqwDss6wA7LOtAOyzrgDss68A7LOwAOyzsQDss7IA7LOzAOyztADss7UA7LO2AOyztwDss7gA7LO5AOyzugDss7sA7LO8AOyzvQDss74A7LO/AOy0gADstIEA7LSCAOy0gwDstIQA7LSFAOy0hgDstIcA7LSIAOy0iQDstIoA7LSLAOy0jADstI0A7LSOAOy0jwDstJAA7LSRAOy0kgDstJMA7LSUAOy0lQDstJYA7LSXAOy0mADstJkA7LSaAOy0mwDstJwA7LSdAOy0ngDstJ8A7LSgAOy0oQDstKIA7LSjAOy0pADstKUA7LSmAOy0pwDstKgA7LSpAOy0qgDstKsA7LSsAOy0rQDstK4A7LSvAOy0sADstLEA7LSyAOy0swDstLQA7LS1AOy0tgDstLcA7LS4AOy0uQDstLoA7LS7AOy0vADstL0A7LS+AOy0vwDstYAA7LWBAOy1ggDstYMA7LWEAOy1hQDstYYA7LWHAOy1iADstYkA7LWKAOy1iwDstYwA7LWNAOy1jgDstY8A7LWQAOy1kQDstZIA7LWTAOy1lADstZUA7LWWAOy1lwDstZgA7LWZAOy1mgDstZsA7LWcAOy1nQDstZ4A7LWfAOy1oADstaEA7LWiAOy1owDstaQA7LWlAOy1pgDstacA7LWoAOy1qQDstaoA7LWrAOy1rADsta0A7LWuAOy1rwDstbAA7LWxAOy1sgDstbMA7LW0AOy1tQDstbYA7LW3AOy1uADstbkA7LW6AOy1uwDstbwA7LW9AOy1vgDstb8A7LaAAOy2gQDstoIA7LaDAOy2hADstoUA7LaGAOy2hwDstogA7LaJAOy2igDstosA7LaMAOy2jQDsto4A7LaPAOy2kADstpEA7LaSAOy2kwDstpQA7LaVAOy2lgDstpcA7LaYAOy2mQDstpoA7LabAOy2nADstp0A7LaeAOy2nwDstqAA7LahAOy2ogDstqMA7LakAOy2pQDstqYA7LanAOy2qADstqkA7LaqAOy2qwDstqwA7LatAOy2rgDstq8A7LawAOy2sQDstrIA7LazAOy2tADstrUA7La2AOy2twDstrgA7La5AOy2ugDstrsA7La8AOy2vQDstr4A7La/AOy3gADst4EA7LeCAOy3gwDst4QA7LeFAOy3hgDst4cA7LeIAOy3iQDst4oA7LeLAOy3jADst40A7LeOAOy3jwDst5AA7LeRAOy3kgDst5MA7LeUAOy3lQDst5YA7LeXAOy3mADst5kA7LeaAOy3mwDst5wA7LedAOy3ngDst58A7LegAOy3oQDst6IA7LejAOy3pADst6UA7LemAOy3pwDst6gA7LepAOy3qgDst6sA7LesAOy3rQDst64A7LevAOy3sADst7EA7LeyAOy3swDst7QA7Le1AOy3tgDst7cA7Le4AOy3uQDst7oA7Le7AOy3vADst70A7Le+AOy3vwDsuIAA7LiBAOy4ggDsuIMA7LiEAOy4hQDsuIYA7LiHAOy4iADsuIkA7LiKAOy4iwDsuIwA7LiNAOy4jgDsuI8A7LiQAOy4kQDsuJIA7LiTAOy4lADsuJUA7LiWAOy4lwDsuJgA7LiZAOy4mgDsuJsA7LicAOy4nQDsuJ4A7LifAOy4oADsuKEA7LiiAOy4owDsuKQA7LilAOy4pgDsuKcA7LioAOy4qQDsuKoA7LirAOy4rADsuK0A7LiuAOy4rwDsuLAA7LixAOy4sgDsuLMA7Li0AOy4tQDsuLYA7Li3AOy4uADsuLkA7Li6AOy4uwDsuLwA7Li9AOy4vgDsuL8A7LmAAOy5gQDsuYIA7LmDAOy5hADsuYUA7LmGAOy5hwDsuYgA7LmJAOy5igDsuYsA7LmMAOy5jQDsuY4A7LmPAOy5kADsuZEA7LmSAOy5kwDsuZQA7LmVAOy5lgDsuZcA7LmYAOy5mQDsuZoA7LmbAOy5nADsuZ0A7LmeAOy5nwDsuaAA7LmhAOy5ogDsuaMA7LmkAOy5pQDsuaYA7LmnAOy5qADsuakA7LmqAOy5qwDsuawA7LmtAOy5rgDsua8A7LmwAOy5sQDsubIA7LmzAOy5tADsubUA7Lm2AOy5twDsubgA7Lm5AOy5ugDsubsA7Lm8AOy5vQDsub4A7Lm/AOy6gADsuoEA7LqCAOy6gwDsuoQA7LqFAOy6hgDsuocA7LqIAOy6iQDsuooA7LqLAOy6jADsuo0A7LqOAOy6jwDsupAA7LqRAOy6kgDsupMA7LqUAOy6lQDsupYA7LqXAOy6mADsupkA7LqaAOy6mwDsupwA7LqdAOy6ngDsup8A7LqgAOy6oQDsuqIA7LqjAOy6pADsuqUA7LqmAOy6pwDsuqgA7LqpAOy6qgDsuqsA7LqsAOy6rQDsuq4A7LqvAOy6sADsurEA7LqyAOy6swDsurQA7Lq1AOy6tgDsurcA7Lq4AOy6uQDsuroA7Lq7AOy6vADsur0A7Lq+AOy6vwDsu4AA7LuBAOy7ggDsu4MA7LuEAOy7hQDsu4YA7LuHAOy7iADsu4kA7LuKAOy7iwDsu4wA7LuNAOy7jgDsu48A7LuQAOy7kQDsu5IA7LuTAOy7lADsu5UA7LuWAOy7lwDsu5gA7LuZAOy7mgDsu5sA7LucAOy7nQDsu54A7LufAOy7oADsu6EA7LuiAOy7owDsu6QA7LulAOy7pgDsu6cA7LuoAOy7qQDsu6oA7LurAOy7rADsu60A7LuuAOy7rwDsu7AA7LuxAOy7sgDsu7MA7Lu0AOy7tQDsu7YA7Lu3AOy7uADsu7kA7Lu6AOy7uwDsu7wA7Lu9AOy7vgDsu78A7LyAAOy8gQDsvIIA7LyDAOy8hADsvIUA7LyGAOy8hwDsvIgA7LyJAOy8igDsvIsA7LyMAOy8jQDsvI4A7LyPAOy8kADsvJEA7LySAOy8kwDsvJQA7LyVAOy8lgDsvJcA7LyYAOy8mQDsvJoA7LybAOy8nADsvJ0A7LyeAOy8nwDsvKAA7LyhAOy8ogDsvKMA7LykAOy8pQDsvKYA7LynAOy8qADsvKkA7LyqAOy8qwDsvKwA7LytAOy8rgDsvK8A7LywAOy8sQDsvLIA7LyzAOy8tADsvLUA7Ly2AOy8twDsvLgA7Ly5AOy8ugDsvLsA7Ly8AOy8vQDsvL4A7Ly/AOy9gADsvYEA7L2CAOy9gwDsvYQA7L2FAOy9hgDsvYcA7L2IAOy9iQDsvYoA7L2LAOy9jADsvY0A7L2OAOy9jwDsvZAA7L2RAOy9kgDsvZMA7L2UAOy9lQDsvZYA7L2XAOy9mADsvZkA7L2aAOy9mwDsvZwA7L2dAOy9ngDsvZ8A7L2gAOy9oQDsvaIA7L2jAOy9pADsvaUA7L2mAOy9pwDsvagA7L2pAOy9qgDsvasA7L2sAOy9rQDsva4A7L2vAOy9sADsvbEA7L2yAOy9swDsvbQA7L21AOy9tgDsvbcA7L24AOy9uQDsvboA7L27AOy9vADsvb0A7L2+AOy9vwDsvoAA7L6BAOy+ggDsvoMA7L6EAOy+hQDsvoYA7L6HAOy+iADsvokA7L6KAOy+iwDsvowA7L6NAOy+jgDsvo8A7L6QAOy+kQDsvpIA7L6TAOy+lADsvpUA7L6WAOy+lwDsvpgA7L6ZAOy+mgDsvpsA7L6cAOy+nQDsvp4A7L6fAOy+oADsvqEA7L6iAOy+owDsvqQA7L6lAOy+pgDsvqcA7L6oAOy+qQDsvqoA7L6rAOy+rADsvq0A7L6uAOy+rwDsvrAA7L6xAOy+sgDsvrMA7L60AOy+tQDsvrYA7L63AOy+uADsvrkA7L66AOy+uwDsvrwA7L69AOy+vgDsvr8A7L+AAOy/gQDsv4IA7L+DAOy/hADsv4UA7L+GAOy/hwDsv4gA7L+JAOy/igDsv4sA7L+MAOy/jQDsv44A7L+PAOy/kADsv5EA7L+SAOy/kwDsv5QA7L+VAOy/lgDsv5cA7L+YAOy/mQDsv5oA7L+bAOy/nADsv50A7L+eAOy/nwDsv6AA7L+hAOy/ogDsv6MA7L+kAOy/pQDsv6YA7L+nAOy/qADsv6kA7L+qAOy/qwDsv6wA7L+tAOy/rgDsv68A7L+wAOy/sQDsv7IA7L+zAOy/tADsv7UA7L+2AOy/twDsv7gA7L+5AOy/ugDsv7sA7L+8AOy/vQDsv74A7L+/AO2AgADtgIEA7YCCAO2AgwDtgIQA7YCFAO2AhgDtgIcA7YCIAO2AiQDtgIoA7YCLAO2AjADtgI0A7YCOAO2AjwDtgJAA7YCRAO2AkgDtgJMA7YCUAO2AlQDtgJYA7YCXAO2AmADtgJkA7YCaAO2AmwDtgJwA7YCdAO2AngDtgJ8A7YCgAO2AoQDtgKIA7YCjAO2ApADtgKUA7YCmAO2ApwDtgKgA7YCpAO2AqgDtgKsA7YCsAO2ArQDtgK4A7YCvAO2AsADtgLEA7YCyAO2AswDtgLQA7YC1AO2AtgDtgLcA7YC4AO2AuQDtgLoA7YC7AO2AvADtgL0A7YC+AO2AvwDtgYAA7YGBAO2BggDtgYMA7YGEAO2BhQDtgYYA7YGHAO2BiADtgYkA7YGKAO2BiwDtgYwA7YGNAO2BjgDtgY8A7YGQAO2BkQDtgZIA7YGTAO2BlADtgZUA7YGWAO2BlwDtgZgA7YGZAO2BmgDtgZsA7YGcAO2BnQDtgZ4A7YGfAO2BoADtgaEA7YGiAO2BowDtgaQA7YGlAO2BpgDtgacA7YGoAO2BqQDtgaoA7YGrAO2BrADtga0A7YGuAO2BrwDtgbAA7YGxAO2BsgDtgbMA7YG0AO2BtQDtgbYA7YG3AO2BuADtgbkA7YG6AO2BuwDtgbwA7YG9AO2BvgDtgb8A7YKAAO2CgQDtgoIA7YKDAO2ChADtgoUA7YKGAO2ChwDtgogA7YKJAO2CigDtgosA7YKMAO2CjQDtgo4A7YKPAO2CkADtgpEA7YKSAO2CkwDtgpQA7YKVAO2ClgDtgpcA7YKYAO2CmQDtgpoA7YKbAO2CnADtgp0A7YKeAO2CnwDtgqAA7YKhAO2CogDtgqMA7YKkAO2CpQDtgqYA7YKnAO2CqADtgqkA7YKqAO2CqwDtgqwA7YKtAO2CrgDtgq8A7YKwAO2CsQDtgrIA7YKzAO2CtADtgrUA7YK2AO2CtwDtgrgA7YK5AO2CugDtgrsA7YK8AO2CvQDtgr4A7YK/AO2DgADtg4EA7YOCAO2DgwDtg4QA7YOFAO2DhgDtg4cA7YOIAO2DiQDtg4oA7YOLAO2DjADtg40A7YOOAO2DjwDtg5AA7YORAO2DkgDtg5MA7YOUAO2DlQDtg5YA7YOXAO2DmADtg5kA7YOaAO2DmwDtg5wA7YOdAO2DngDtg58A7YOgAO2DoQDtg6IA7YOjAO2DpADtg6UA7YOmAO2DpwDtg6gA7YOpAO2DqgDtg6sA7YOsAO2DrQDtg64A7YOvAO2DsADtg7EA7YOyAO2DswDtg7QA7YO1AO2DtgDtg7cA7YO4AO2DuQDtg7oA7YO7AO2DvADtg70A7YO+AO2DvwDthIAA7YSBAO2EggDthIMA7YSEAO2EhQDthIYA7YSHAO2EiADthIkA7YSKAO2EiwDthIwA7YSNAO2EjgDthI8A7YSQAO2EkQDthJIA7YSTAO2ElADthJUA7YSWAO2ElwDthJgA7YSZAO2EmgDthJsA7YScAO2EnQDthJ4A7YSfAO2EoADthKEA7YSiAO2EowDthKQA7YSlAO2EpgDthKcA7YSoAO2EqQDthKoA7YSrAO2ErADthK0A7YSuAO2ErwDthLAA7YSxAO2EsgDthLMA7YS0AO2EtQDthLYA7YS3AO2EuADthLkA7YS6AO2EuwDthLwA7YS9AO2EvgDthL8A7YWAAO2FgQDthYIA7YWDAO2FhADthYUA7YWGAO2FhwDthYgA7YWJAO2FigDthYsA7YWMAO2FjQDthY4A7YWPAO2FkADthZEA7YWSAO2FkwDthZQA7YWVAO2FlgDthZcA7YWYAO2FmQDthZoA7YWbAO2FnADthZ0A7YWeAO2FnwDthaAA7YWhAO2FogDthaMA7YWkAO2FpQDthaYA7YWnAO2FqADthakA7YWqAO2FqwDthawA7YWtAO2FrgDtha8A7YWwAO2FsQDthbIA7YWzAO2FtADthbUA7YW2AO2FtwDthbgA7YW5AO2FugDthbsA7YW8AO2FvQDthb4A7YW/AO2GgADthoEA7YaCAO2GgwDthoQA7YaFAO2GhgDthocA7YaIAO2GiQDthooA7YaLAO2GjADtho0A7YaOAO2GjwDthpAA7YaRAO2GkgDthpMA7YaUAO2GlQDthpYA7YaXAO2GmADthpkA7YaaAO2GmwDthpwA7YadAO2GngDthp8A7YagAO2GoQDthqIA7YajAO2GpADthqUA7YamAO2GpwDthqgA7YapAO2GqgDthqsA7YasAO2GrQDthq4A7YavAO2GsADthrEA7YayAO2GswDthrQA7Ya1AO2GtgDthrcA7Ya4AO2GuQDthroA7Ya7AO2GvADthr0A7Ya+AO2GvwDth4AA7YeBAO2HggDth4MA7YeEAO2HhQDth4YA7YeHAO2HiADth4kA7YeKAO2HiwDth4wA7YeNAO2HjgDth48A7YeQAO2HkQDth5IA7YeTAO2HlADth5UA7YeWAO2HlwDth5gA7YeZAO2HmgDth5sA7YecAO2HnQDth54A7YefAO2HoADth6EA7YeiAO2HowDth6QA7YelAO2HpgDth6cA7YeoAO2HqQDth6oA7YerAO2HrADth60A7YeuAO2HrwDth7AA7YexAO2HsgDth7MA7Ye0AO2HtQDth7YA7Ye3AO2HuADth7kA7Ye6AO2HuwDth7wA7Ye9AO2HvgDth78A7YiAAO2IgQDtiIIA7YiDAO2IhADtiIUA7YiGAO2IhwDtiIgA7YiJAO2IigDtiIsA7YiMAO2IjQDtiI4A7YiPAO2IkADtiJEA7YiSAO2IkwDtiJQA7YiVAO2IlgDtiJcA7YiYAO2ImQDtiJoA7YibAO2InADtiJ0A7YieAO2InwDtiKAA7YihAO2IogDtiKMA7YikAO2IpQDtiKYA7YinAO2IqADtiKkA7YiqAO2IqwDtiKwA7YitAO2IrgDtiK8A7YiwAO2IsQDtiLIA7YizAO2ItADtiLUA7Yi2AO2ItwDtiLgA7Yi5AO2IugDtiLsA7Yi8AO2IvQDtiL4A7Yi/AO2JgADtiYEA7YmCAO2JgwDtiYQA7YmFAO2JhgDtiYcA7YmIAO2JiQDtiYoA7YmLAO2JjADtiY0A7YmOAO2JjwDtiZAA7YmRAO2JkgDtiZMA7YmUAO2JlQDtiZYA7YmXAO2JmADtiZkA7YmaAO2JmwDtiZwA7YmdAO2JngDtiZ8A7YmgAO2JoQDtiaIA7YmjAO2JpADtiaUA7YmmAO2JpwDtiagA7YmpAO2JqgDtiasA7YmsAO2JrQDtia4A7YmvAO2JsADtibEA7YmyAO2JswDtibQA7Ym1AO2JtgDtibcA7Ym4AO2JuQDtiboA7Ym7AO2JvADtib0A7Ym+AO2JvwDtioAA7YqBAO2KggDtioMA7YqEAO2KhQDtioYA7YqHAO2KiADtiokA7YqKAO2KiwDtiowA7YqNAO2KjgDtio8A7YqQAO2KkQDtipIA7YqTAO2KlADtipUA7YqWAO2KlwDtipgA7YqZAO2KmgDtipsA7YqcAO2KnQDtip4A7YqfAO2KoADtiqEA7YqiAO2KowDtiqQA7YqlAO2KpgDtiqcA7YqoAO2KqQDtiqoA7YqrAO2KrADtiq0A7YquAO2KrwDtirAA7YqxAO2KsgDtirMA7Yq0AO2KtQDtirYA7Yq3AO2KuADtirkA7Yq6AO2KuwDtirwA7Yq9AO2KvgDtir8A7YuAAO2LgQDti4IA7YuDAO2LhADti4UA7YuGAO2LhwDti4gA7YuJAO2LigDti4sA7YuMAO2LjQDti44A7YuPAO2LkADti5EA7YuSAO2LkwDti5QA7YuVAO2LlgDti5cA7YuYAO2LmQDti5oA7YubAO2LnADti50A7YueAO2LnwDti6AA7YuhAO2LogDti6MA7YukAO2LpQDti6YA7YunAO2LqADti6kA7YuqAO2LqwDti6wA7YutAO2LrgDti68A7YuwAO2LsQDti7IA7YuzAO2LtADti7UA7Yu2AO2LtwDti7gA7Yu5AO2LugDti7sA7Yu8AO2LvQDti74A7Yu/AO2MgADtjIEA7YyCAO2MgwDtjIQA7YyFAO2MhgDtjIcA7YyIAO2MiQDtjIoA7YyLAO2MjADtjI0A7YyOAO2MjwDtjJAA7YyRAO2MkgDtjJMA7YyUAO2MlQDtjJYA7YyXAO2MmADtjJkA7YyaAO2MmwDtjJwA7YydAO2MngDtjJ8A7YygAO2MoQDtjKIA7YyjAO2MpADtjKUA7YymAO2MpwDtjKgA7YypAO2MqgDtjKsA7YysAO2MrQDtjK4A7YyvAO2MsADtjLEA7YyyAO2MswDtjLQA7Yy1AO2MtgDtjLcA7Yy4AO2MuQDtjLoA7Yy7AO2MvADtjL0A7Yy+AO2MvwDtjYAA7Y2BAO2NggDtjYMA7Y2EAO2NhQDtjYYA7Y2HAO2NiADtjYkA7Y2KAO2NiwDtjYwA7Y2NAO2NjgDtjY8A7Y2QAO2NkQDtjZIA7Y2TAO2NlADtjZUA7Y2WAO2NlwDtjZgA7Y2ZAO2NmgDtjZsA7Y2cAO2NnQDtjZ4A7Y2fAO2NoADtjaEA7Y2iAO2NowDtjaQA7Y2lAO2NpgDtjacA7Y2oAO2NqQDtjaoA7Y2rAO2NrADtja0A7Y2uAO2NrwDtjbAA7Y2xAO2NsgDtjbMA7Y20AO2NtQDtjbYA7Y23AO2NuADtjbkA7Y26AO2NuwDtjbwA7Y29AO2NvgDtjb8A7Y6AAO2OgQDtjoIA7Y6DAO2OhADtjoUA7Y6GAO2OhwDtjogA7Y6JAO2OigDtjosA7Y6MAO2OjQDtjo4A7Y6PAO2OkADtjpEA7Y6SAO2OkwDtjpQA7Y6VAO2OlgDtjpcA7Y6YAO2OmQDtjpoA7Y6bAO2OnADtjp0A7Y6eAO2OnwDtjqAA7Y6hAO2OogDtjqMA7Y6kAO2OpQDtjqYA7Y6nAO2OqADtjqkA7Y6qAO2OqwDtjqwA7Y6tAO2OrgDtjq8A7Y6wAO2OsQDtjrIA7Y6zAO2OtADtjrUA7Y62AO2OtwDtjrgA7Y65AO2OugDtjrsA7Y68AO2OvQDtjr4A7Y6/AO2PgADtj4EA7Y+CAO2PgwDtj4QA7Y+FAO2PhgDtj4cA7Y+IAO2PiQDtj4oA7Y+LAO2PjADtj40A7Y+OAO2PjwDtj5AA7Y+RAO2PkgDtj5MA7Y+UAO2PlQDtj5YA7Y+XAO2PmADtj5kA7Y+aAO2PmwDtj5wA7Y+dAO2PngDtj58A7Y+gAO2PoQDtj6IA7Y+jAO2PpADtj6UA7Y+mAO2PpwDtj6gA7Y+pAO2PqgDtj6sA7Y+sAO2PrQDtj64A7Y+vAO2PsADtj7EA7Y+yAO2PswDtj7QA7Y+1AO2PtgDtj7cA7Y+4AO2PuQDtj7oA7Y+7AO2PvADtj70A7Y++AO2PvwDtkIAA7ZCBAO2QggDtkIMA7ZCEAO2QhQDtkIYA7ZCHAO2QiADtkIkA7ZCKAO2QiwDtkIwA7ZCNAO2QjgDtkI8A7ZCQAO2QkQDtkJIA7ZCTAO2QlADtkJUA7ZCWAO2QlwDtkJgA7ZCZAO2QmgDtkJsA7ZCcAO2QnQDtkJ4A7ZCfAO2QoADtkKEA7ZCiAO2QowDtkKQA7ZClAO2QpgDtkKcA7ZCoAO2QqQDtkKoA7ZCrAO2QrADtkK0A7ZCuAO2QrwDtkLAA7ZCxAO2QsgDtkLMA7ZC0AO2QtQDtkLYA7ZC3AO2QuADtkLkA7ZC6AO2QuwDtkLwA7ZC9AO2QvgDtkL8A7ZGAAO2RgQDtkYIA7ZGDAO2RhADtkYUA7ZGGAO2RhwDtkYgA7ZGJAO2RigDtkYsA7ZGMAO2RjQDtkY4A7ZGPAO2RkADtkZEA7ZGSAO2RkwDtkZQA7ZGVAO2RlgDtkZcA7ZGYAO2RmQDtkZoA7ZGbAO2RnADtkZ0A7ZGeAO2RnwDtkaAA7ZGhAO2RogDtkaMA7ZGkAO2RpQDtkaYA7ZGnAO2RqADtkakA7ZGqAO2RqwDtkawA7ZGtAO2RrgDtka8A7ZGwAO2RsQDtkbIA7ZGzAO2RtADtkbUA7ZG2AO2RtwDtkbgA7ZG5AO2RugDtkbsA7ZG8AO2RvQDtkb4A7ZG/AO2SgADtkoEA7ZKCAO2SgwDtkoQA7ZKFAO2ShgDtkocA7ZKIAO2SiQDtkooA7ZKLAO2SjADtko0A7ZKOAO2SjwDtkpAA7ZKRAO2SkgDtkpMA7ZKUAO2SlQDtkpYA7ZKXAO2SmADtkpkA7ZKaAO2SmwDtkpwA7ZKdAO2SngDtkp8A7ZKgAO2SoQDtkqIA7ZKjAO2SpADtkqUA7ZKmAO2SpwDtkqgA7ZKpAO2SqgDtkqsA7ZKsAO2SrQDtkq4A7ZKvAO2SsADtkrEA7ZKyAO2SswDtkrQA7ZK1AO2StgDtkrcA7ZK4AO2SuQDtkroA7ZK7AO2SvADtkr0A7ZK+AO2SvwDtk4AA7ZOBAO2TggDtk4MA7ZOEAO2ThQDtk4YA7ZOHAO2TiADtk4kA7ZOKAO2TiwDtk4wA7ZONAO2TjgDtk48A7ZOQAO2TkQDtk5IA7ZOTAO2TlADtk5UA7ZOWAO2TlwDtk5gA7ZOZAO2TmgDtk5sA7ZOcAO2TnQDtk54A7ZOfAO2ToADtk6EA7ZOiAO2TowDtk6QA7ZOlAO2TpgDtk6cA7ZOoAO2TqQDtk6oA7ZOrAO2TrADtk60A7ZOuAO2TrwDtk7AA7ZOxAO2TsgDtk7MA7ZO0AO2TtQDtk7YA7ZO3AO2TuADtk7kA7ZO6AO2TuwDtk7wA7ZO9AO2TvgDtk78A7ZSAAO2UgQDtlIIA7ZSDAO2UhADtlIUA7ZSGAO2UhwDtlIgA7ZSJAO2UigDtlIsA7ZSMAO2UjQDtlI4A7ZSPAO2UkADtlJEA7ZSSAO2UkwDtlJQA7ZSVAO2UlgDtlJcA7ZSYAO2UmQDtlJoA7ZSbAO2UnADtlJ0A7ZSeAO2UnwDtlKAA7ZShAO2UogDtlKMA7ZSkAO2UpQDtlKYA7ZSnAO2UqADtlKkA7ZSqAO2UqwDtlKwA7ZStAO2UrgDtlK8A7ZSwAO2UsQDtlLIA7ZSzAO2UtADtlLUA7ZS2AO2UtwDtlLgA7ZS5AO2UugDtlLsA7ZS8AO2UvQDtlL4A7ZS/AO2VgADtlYEA7ZWCAO2VgwDtlYQA7ZWFAO2VhgDtlYcA7ZWIAO2ViQDtlYoA7ZWLAO2VjADtlY0A7ZWOAO2VjwDtlZAA7ZWRAO2VkgDtlZMA7ZWUAO2VlQDtlZYA7ZWXAO2VmADtlZkA7ZWaAO2VmwDtlZwA7ZWdAO2VngDtlZ8A7ZWgAO2VoQDtlaIA7ZWjAO2VpADtlaUA7ZWmAO2VpwDtlagA7ZWpAO2VqgDtlasA7ZWsAO2VrQDtla4A7ZWvAO2VsADtlbEA7ZWyAO2VswDtlbQA7ZW1AO2VtgDtlbcA7ZW4AO2VuQDtlboA7ZW7AO2VvADtlb0A7ZW+AO2VvwDtloAA7ZaBAO2WggDtloMA7ZaEAO2WhQDtloYA7ZaHAO2WiADtlokA7ZaKAO2WiwDtlowA7ZaNAO2WjgDtlo8A7ZaQAO2WkQDtlpIA7ZaTAO2WlADtlpUA7ZaWAO2WlwDtlpgA7ZaZAO2WmgDtlpsA7ZacAO2WnQDtlp4A7ZafAO2WoADtlqEA7ZaiAO2WowDtlqQA7ZalAO2WpgDtlqcA7ZaoAO2WqQDtlqoA7ZarAO2WrADtlq0A7ZauAO2WrwDtlrAA7ZaxAO2WsgDtlrMA7Za0AO2WtQDtlrYA7Za3AO2WuADtlrkA7Za6AO2WuwDtlrwA7Za9AO2WvgDtlr8A7ZeAAO2XgQDtl4IA7ZeDAO2XhADtl4UA7ZeGAO2XhwDtl4gA7ZeJAO2XigDtl4sA7ZeMAO2XjQDtl44A7ZePAO2XkADtl5EA7ZeSAO2XkwDtl5QA7ZeVAO2XlgDtl5cA7ZeYAO2XmQDtl5oA7ZebAO2XnADtl50A7ZeeAO2XnwDtl6AA7ZehAO2XogDtl6MA7ZekAO2XpQDtl6YA7ZenAO2XqADtl6kA7ZeqAO2XqwDtl6wA7ZetAO2XrgDtl68A7ZewAO2XsQDtl7IA7ZezAO2XtADtl7UA7Ze2AO2XtwDtl7gA7Ze5AO2XugDtl7sA7Ze8AO2XvQDtl74A7Ze/AO2YgADtmIEA7ZiCAO2YgwDtmIQA7ZiFAO2YhgDtmIcA7ZiIAO2YiQDtmIoA7ZiLAO2YjADtmI0A7ZiOAO2YjwDtmJAA7ZiRAO2YkgDtmJMA7ZiUAO2YlQDtmJYA7ZiXAO2YmADtmJkA7ZiaAO2YmwDtmJwA7ZidAO2YngDtmJ8A7ZigAO2YoQDtmKIA7ZijAO2YpADtmKUA7ZimAO2YpwDtmKgA7ZipAO2YqgDtmKsA7ZisAO2YrQDtmK4A7ZivAO2YsADtmLEA7ZiyAO2YswDtmLQA7Zi1AO2YtgDtmLcA7Zi4AO2YuQDtmLoA7Zi7AO2YvADtmL0A7Zi+AO2YvwDtmYAA7ZmBAO2ZggDtmYMA7ZmEAO2ZhQDtmYYA7ZmHAO2ZiADtmYkA7ZmKAO2ZiwDtmYwA7ZmNAO2ZjgDtmY8A7ZmQAO2ZkQDtmZIA7ZmTAO2ZlADtmZUA7ZmWAO2ZlwDtmZgA7ZmZAO2ZmgDtmZsA7ZmcAO2ZnQDtmZ4A7ZmfAO2ZoADtmaEA7ZmiAO2ZowDtmaQA7ZmlAO2ZpgDtmacA7ZmoAO2ZqQDtmaoA7ZmrAO2ZrADtma0A7ZmuAO2ZrwDtmbAA7ZmxAO2ZsgDtmbMA7Zm0AO2ZtQDtmbYA7Zm3AO2ZuADtmbkA7Zm6AO2ZuwDtmbwA7Zm9AO2ZvgDtmb8A7ZqAAO2agQDtmoIA7ZqDAO2ahADtmoUA7ZqGAO2ahwDtmogA7ZqJAO2aigDtmosA7ZqMAO2ajQDtmo4A7ZqPAO2akADtmpEA7ZqSAO2akwDtmpQA7ZqVAO2algDtmpcA7ZqYAO2amQDtmpoA7ZqbAO2anADtmp0A7ZqeAO2anwDtmqAA7ZqhAO2aogDtmqMA7ZqkAO2apQDtmqYA7ZqnAO2aqADtmqkA7ZqqAO2aqwDtmqwA7ZqtAO2argDtmq8A7ZqwAO2asQDtmrIA7ZqzAO2atADtmrUA7Zq2AO2atwDtmrgA7Zq5AO2augDtmrsA7Zq8AO2avQDtmr4A7Zq/AO2bgADtm4EA7ZuCAO2bgwDtm4QA7ZuFAO2bhgDtm4cA7ZuIAO2biQDtm4oA7ZuLAO2bjADtm40A7ZuOAO2bjwDtm5AA7ZuRAO2bkgDtm5MA7ZuUAO2blQDtm5YA7ZuXAO2bmADtm5kA7ZuaAO2bmwDtm5wA7ZudAO2bngDtm58A7ZugAO2boQDtm6IA7ZujAO2bpADtm6UA7ZumAO2bpwDtm6gA7ZupAO2bqgDtm6sA7ZusAO2brQDtm64A7ZuvAO2bsADtm7EA7ZuyAO2bswDtm7QA7Zu1AO2btgDtm7cA7Zu4AO2buQDtm7oA7Zu7AO2bvADtm70A7Zu+AO2bvwDtnIAA7ZyBAO2cggDtnIMA7ZyEAO2chQDtnIYA7ZyHAO2ciADtnIkA7ZyKAO2ciwDtnIwA7ZyNAO2cjgDtnI8A7ZyQAO2ckQDtnJIA7ZyTAO2clADtnJUA7ZyWAO2clwDtnJgA7ZyZAO2cmgDtnJsA7ZycAO2cnQDtnJ4A7ZyfAO2coADtnKEA7ZyiAO2cowDtnKQA7ZylAO2cpgDtnKcA7ZyoAO2cqQDtnKoA7ZyrAO2crADtnK0A7ZyuAO2crwDtnLAA7ZyxAO2csgDtnLMA7Zy0AO2ctQDtnLYA7Zy3AO2cuADtnLkA7Zy6AO2cuwDtnLwA7Zy9AO2cvgDtnL8A7Z2AAO2dgQDtnYIA7Z2DAO2dhADtnYUA7Z2GAO2dhwDtnYgA7Z2JAO2digDtnYsA7Z2MAO2djQDtnY4A7Z2PAO2dkADtnZEA7Z2SAO2dkwDtnZQA7Z2VAO2dlgDtnZcA7Z2YAO2dmQDtnZoA7Z2bAO2dnADtnZ0A7Z2eAO2dnwDtnaAA7Z2hAO2dogDtnaMA7Z2kAO2dpQDtnaYA7Z2nAO2dqADtnakA7Z2qAO2dqwDtnawA7Z2tAO2drgDtna8A7Z2wAO2dsQDtnbIA7Z2zAO2dtADtnbUA7Z22AO2dtwDtnbgA7Z25AO2dugDtnbsA7Z28AO2dvQDtnb4A7Z2/AO2egADtnoEA7Z6CAO2egwDtnoQA7Z6FAO2ehgDtnocA7Z6IAO2eiQDtnooA7Z6LAO2ejADtno0A7Z6OAO2ejwDtnpAA7Z6RAO2ekgDtnpMA7Z6UAO2elQDtnpYA7Z6XAO2emADtnpkA7Z6aAO2emwDtnpwA7Z6dAO2engDtnp8A7Z6gAO2eoQDtnqIA7Z6jAPCRgpoA8JGCnADwkYKrAPCRhK4A8JGErwDwkY2LAPCRjYwA8JGSuwDwkZK8APCRkr4A8JGWugDwkZa7APCdhZfwnYWlAPCdhZjwnYWlAPCdhZjwnYWl8J2FrgDwnYWY8J2FpfCdha8A8J2FmPCdhaXwnYWwAPCdhZjwnYWl8J2FsQDwnYWY8J2FpfCdhbIA8J2GufCdhaUA8J2GufCdhaXwnYWuAPCdhrnwnYWl8J2FrwDwnYa68J2FpQDwnYa68J2FpfCdha4A8J2GuvCdhaXwnYWvAPCghKIA8KCUnADwoJSlAPCglYsA8KCYugDwoKCEAPCgo54A8KCorADwoK2jAPChk6QA8KGaqADwoZuqAPChp4gA8KGsmADwobSLAPCht6QA8KG3pgDwooaDAPCihp8A8KKMsQDwopuUAPCioYQA8KKhigDwoqyMAPCir7EA8KOAigDwo4q4APCjjZ8A8KOOkwDwo46cAPCjj4MA8KOPlQDwo5GtAPCjmqMA8KOipwDwo6qNAPCjq7oA8KOyvADwo7SeAPCju5EA8KO9ngDwo76OAPCkiaMA8KSLrgDwpI6rAPCkmIgA8KSctQDwpKCUAPCksLYA8KSykgDwpL6hAPCkvrgA8KWBhADwpYOyAPClg7MA8KWEmQDwpYSzAPCliYkA8KWQnQDwpZimAPClmpoA8KWbhQDwpaW8APClqqcA8KWuqwDwpbKAAPCls5AA8KW+hgDwpoeaAPCmiKgA8KaJhwDwpouZAPCmjL4A8KaTmgDwppSjAPCmlqgA8KaepwDwpp61APCmrLwA8KawtgDwprOVAPCmtasA8Ka8rADwpr6xAPCng5IA8KePigDwp5mnAPCnoq4A8KelpgDwp7KoAPCnu5MA8Ke8rwDwqJeSAPCol60A8KicrgDwqK+6APCotbcA8KmFhQDwqYefAPCpiJoA8KmQigDwqZKWAPCplrYA8KmssADwqoOOAPCqhIUA8KqIjgDwqoqRAPCqjpIA8KqYgAA=" + }, + { + "type": "Replace", + "pattern": { + "Regex": " {2,}" + }, + "content": " " + } + ] + }, + "pre_tokenizer": { + "type": "Metaspace", + "replacement": "▁", + "prepend_scheme": "always", + "split": true + }, + "post_processor": { + "type": "TemplateProcessing", + "single": [ + { + "Sequence": { + "id": "A", + "type_id": 0 + } + }, + { + "SpecialToken": { + "id": "", + "type_id": 0 + } + } + ], + "pair": [ + { + "Sequence": { + "id": "A", + "type_id": 0 + } + }, + { + "SpecialToken": { + "id": "", + "type_id": 0 + } + }, + { + "Sequence": { + "id": "B", + "type_id": 0 + } + }, + { + "SpecialToken": { + "id": "", + "type_id": 0 + } + } + ], + "special_tokens": { + "": { + "id": "", + "ids": [ + 1 + ], + "tokens": [ + "" + ] + } + } + }, + "decoder": { + "type": "Metaspace", + "replacement": "▁", + "prepend_scheme": "always", + "split": true + }, + "model": { + "type": "Unigram", + "unk_id": 2, + "vocab": [ + [ + "", + 0.0 + ], + [ + "", + 0.0 + ], + [ + "", + 0.0 + ], + [ + "<0x00>", + 0.0 + ], + [ + "<0x01>", + 0.0 + ], + [ + "<0x02>", + 0.0 + ], + [ + "<0x03>", + 0.0 + ], + [ + "<0x04>", + 0.0 + ], + [ + "<0x05>", + 0.0 + ], + [ + "<0x06>", + 0.0 + ], + [ + "<0x07>", + 0.0 + ], + [ + "<0x08>", + 0.0 + ], + [ + "<0x09>", + 0.0 + ], + [ + "<0x0A>", + 0.0 + ], + [ + "<0x0B>", + 0.0 + ], + [ + "<0x0C>", + 0.0 + ], + [ + "<0x0D>", + 0.0 + ], + [ + "<0x0E>", + 0.0 + ], + [ + "<0x0F>", + 0.0 + ], + [ + "<0x10>", + 0.0 + ], + [ + "<0x11>", + 0.0 + ], + [ + "<0x12>", + 0.0 + ], + [ + "<0x13>", + 0.0 + ], + [ + "<0x14>", + 0.0 + ], + [ + "<0x15>", + 0.0 + ], + [ + "<0x16>", + 0.0 + ], + [ + "<0x17>", + 0.0 + ], + [ + "<0x18>", + 0.0 + ], + [ + "<0x19>", + 0.0 + ], + [ + "<0x1A>", + 0.0 + ], + [ + "<0x1B>", + 0.0 + ], + [ + "<0x1C>", + 0.0 + ], + [ + "<0x1D>", + 0.0 + ], + [ + "<0x1E>", + 0.0 + ], + [ + "<0x1F>", + 0.0 + ], + [ + "<0x20>", + 0.0 + ], + [ + "<0x21>", + 0.0 + ], + [ + "<0x22>", + 0.0 + ], + [ + "<0x23>", + 0.0 + ], + [ + "<0x24>", + 0.0 + ], + [ + "<0x25>", + 0.0 + ], + [ + "<0x26>", + 0.0 + ], + [ + "<0x27>", + 0.0 + ], + [ + "<0x28>", + 0.0 + ], + [ + "<0x29>", + 0.0 + ], + [ + "<0x2A>", + 0.0 + ], + [ + "<0x2B>", + 0.0 + ], + [ + "<0x2C>", + 0.0 + ], + [ + "<0x2D>", + 0.0 + ], + [ + "<0x2E>", + 0.0 + ], + [ + "<0x2F>", + 0.0 + ], + [ + "<0x30>", + 0.0 + ], + [ + "<0x31>", + 0.0 + ], + [ + "<0x32>", + 0.0 + ], + [ + "<0x33>", + 0.0 + ], + [ + "<0x34>", + 0.0 + ], + [ + "<0x35>", + 0.0 + ], + [ + "<0x36>", + 0.0 + ], + [ + "<0x37>", + 0.0 + ], + [ + "<0x38>", + 0.0 + ], + [ + "<0x39>", + 0.0 + ], + [ + "<0x3A>", + 0.0 + ], + [ + "<0x3B>", + 0.0 + ], + [ + "<0x3C>", + 0.0 + ], + [ + "<0x3D>", + 0.0 + ], + [ + "<0x3E>", + 0.0 + ], + [ + "<0x3F>", + 0.0 + ], + [ + "<0x40>", + 0.0 + ], + [ + "<0x41>", + 0.0 + ], + [ + "<0x42>", + 0.0 + ], + [ + "<0x43>", + 0.0 + ], + [ + "<0x44>", + 0.0 + ], + [ + "<0x45>", + 0.0 + ], + [ + "<0x46>", + 0.0 + ], + [ + "<0x47>", + 0.0 + ], + [ + "<0x48>", + 0.0 + ], + [ + "<0x49>", + 0.0 + ], + [ + "<0x4A>", + 0.0 + ], + [ + "<0x4B>", + 0.0 + ], + [ + "<0x4C>", + 0.0 + ], + [ + "<0x4D>", + 0.0 + ], + [ + "<0x4E>", + 0.0 + ], + [ + "<0x4F>", + 0.0 + ], + [ + "<0x50>", + 0.0 + ], + [ + "<0x51>", + 0.0 + ], + [ + "<0x52>", + 0.0 + ], + [ + "<0x53>", + 0.0 + ], + [ + "<0x54>", + 0.0 + ], + [ + "<0x55>", + 0.0 + ], + [ + "<0x56>", + 0.0 + ], + [ + "<0x57>", + 0.0 + ], + [ + "<0x58>", + 0.0 + ], + [ + "<0x59>", + 0.0 + ], + [ + "<0x5A>", + 0.0 + ], + [ + "<0x5B>", + 0.0 + ], + [ + "<0x5C>", + 0.0 + ], + [ + "<0x5D>", + 0.0 + ], + [ + "<0x5E>", + 0.0 + ], + [ + "<0x5F>", + 0.0 + ], + [ + "<0x60>", + 0.0 + ], + [ + "<0x61>", + 0.0 + ], + [ + "<0x62>", + 0.0 + ], + [ + "<0x63>", + 0.0 + ], + [ + "<0x64>", + 0.0 + ], + [ + "<0x65>", + 0.0 + ], + [ + "<0x66>", + 0.0 + ], + [ + "<0x67>", + 0.0 + ], + [ + "<0x68>", + 0.0 + ], + [ + "<0x69>", + 0.0 + ], + [ + "<0x6A>", + 0.0 + ], + [ + "<0x6B>", + 0.0 + ], + [ + "<0x6C>", + 0.0 + ], + [ + "<0x6D>", + 0.0 + ], + [ + "<0x6E>", + 0.0 + ], + [ + "<0x6F>", + 0.0 + ], + [ + "<0x70>", + 0.0 + ], + [ + "<0x71>", + 0.0 + ], + [ + "<0x72>", + 0.0 + ], + [ + "<0x73>", + 0.0 + ], + [ + "<0x74>", + 0.0 + ], + [ + "<0x75>", + 0.0 + ], + [ + "<0x76>", + 0.0 + ], + [ + "<0x77>", + 0.0 + ], + [ + "<0x78>", + 0.0 + ], + [ + "<0x79>", + 0.0 + ], + [ + "<0x7A>", + 0.0 + ], + [ + "<0x7B>", + 0.0 + ], + [ + "<0x7C>", + 0.0 + ], + [ + "<0x7D>", + 0.0 + ], + [ + "<0x7E>", + 0.0 + ], + [ + "<0x7F>", + 0.0 + ], + [ + "<0x80>", + 0.0 + ], + [ + "<0x81>", + 0.0 + ], + [ + "<0x82>", + 0.0 + ], + [ + "<0x83>", + 0.0 + ], + [ + "<0x84>", + 0.0 + ], + [ + "<0x85>", + 0.0 + ], + [ + "<0x86>", + 0.0 + ], + [ + "<0x87>", + 0.0 + ], + [ + "<0x88>", + 0.0 + ], + [ + "<0x89>", + 0.0 + ], + [ + "<0x8A>", + 0.0 + ], + [ + "<0x8B>", + 0.0 + ], + [ + "<0x8C>", + 0.0 + ], + [ + "<0x8D>", + 0.0 + ], + [ + "<0x8E>", + 0.0 + ], + [ + "<0x8F>", + 0.0 + ], + [ + "<0x90>", + 0.0 + ], + [ + "<0x91>", + 0.0 + ], + [ + "<0x92>", + 0.0 + ], + [ + "<0x93>", + 0.0 + ], + [ + "<0x94>", + 0.0 + ], + [ + "<0x95>", + 0.0 + ], + [ + "<0x96>", + 0.0 + ], + [ + "<0x97>", + 0.0 + ], + [ + "<0x98>", + 0.0 + ], + [ + "<0x99>", + 0.0 + ], + [ + "<0x9A>", + 0.0 + ], + [ + "<0x9B>", + 0.0 + ], + [ + "<0x9C>", + 0.0 + ], + [ + "<0x9D>", + 0.0 + ], + [ + "<0x9E>", + 0.0 + ], + [ + "<0x9F>", + 0.0 + ], + [ + "<0xA0>", + 0.0 + ], + [ + "<0xA1>", + 0.0 + ], + [ + "<0xA2>", + 0.0 + ], + [ + "<0xA3>", + 0.0 + ], + [ + "<0xA4>", + 0.0 + ], + [ + "<0xA5>", + 0.0 + ], + [ + "<0xA6>", + 0.0 + ], + [ + "<0xA7>", + 0.0 + ], + [ + "<0xA8>", + 0.0 + ], + [ + "<0xA9>", + 0.0 + ], + [ + "<0xAA>", + 0.0 + ], + [ + "<0xAB>", + 0.0 + ], + [ + "<0xAC>", + 0.0 + ], + [ + "<0xAD>", + 0.0 + ], + [ + "<0xAE>", + 0.0 + ], + [ + "<0xAF>", + 0.0 + ], + [ + "<0xB0>", + 0.0 + ], + [ + "<0xB1>", + 0.0 + ], + [ + "<0xB2>", + 0.0 + ], + [ + "<0xB3>", + 0.0 + ], + [ + "<0xB4>", + 0.0 + ], + [ + "<0xB5>", + 0.0 + ], + [ + "<0xB6>", + 0.0 + ], + [ + "<0xB7>", + 0.0 + ], + [ + "<0xB8>", + 0.0 + ], + [ + "<0xB9>", + 0.0 + ], + [ + "<0xBA>", + 0.0 + ], + [ + "<0xBB>", + 0.0 + ], + [ + "<0xBC>", + 0.0 + ], + [ + "<0xBD>", + 0.0 + ], + [ + "<0xBE>", + 0.0 + ], + [ + "<0xBF>", + 0.0 + ], + [ + "<0xC0>", + 0.0 + ], + [ + "<0xC1>", + 0.0 + ], + [ + "<0xC2>", + 0.0 + ], + [ + "<0xC3>", + 0.0 + ], + [ + "<0xC4>", + 0.0 + ], + [ + "<0xC5>", + 0.0 + ], + [ + "<0xC6>", + 0.0 + ], + [ + "<0xC7>", + 0.0 + ], + [ + "<0xC8>", + 0.0 + ], + [ + "<0xC9>", + 0.0 + ], + [ + "<0xCA>", + 0.0 + ], + [ + "<0xCB>", + 0.0 + ], + [ + "<0xCC>", + 0.0 + ], + [ + "<0xCD>", + 0.0 + ], + [ + "<0xCE>", + 0.0 + ], + [ + "<0xCF>", + 0.0 + ], + [ + "<0xD0>", + 0.0 + ], + [ + "<0xD1>", + 0.0 + ], + [ + "<0xD2>", + 0.0 + ], + [ + "<0xD3>", + 0.0 + ], + [ + "<0xD4>", + 0.0 + ], + [ + "<0xD5>", + 0.0 + ], + [ + "<0xD6>", + 0.0 + ], + [ + "<0xD7>", + 0.0 + ], + [ + "<0xD8>", + 0.0 + ], + [ + "<0xD9>", + 0.0 + ], + [ + "<0xDA>", + 0.0 + ], + [ + "<0xDB>", + 0.0 + ], + [ + "<0xDC>", + 0.0 + ], + [ + "<0xDD>", + 0.0 + ], + [ + "<0xDE>", + 0.0 + ], + [ + "<0xDF>", + 0.0 + ], + [ + "<0xE0>", + 0.0 + ], + [ + "<0xE1>", + 0.0 + ], + [ + "<0xE2>", + 0.0 + ], + [ + "<0xE3>", + 0.0 + ], + [ + "<0xE4>", + 0.0 + ], + [ + "<0xE5>", + 0.0 + ], + [ + "<0xE6>", + 0.0 + ], + [ + "<0xE7>", + 0.0 + ], + [ + "<0xE8>", + 0.0 + ], + [ + "<0xE9>", + 0.0 + ], + [ + "<0xEA>", + 0.0 + ], + [ + "<0xEB>", + 0.0 + ], + [ + "<0xEC>", + 0.0 + ], + [ + "<0xED>", + 0.0 + ], + [ + "<0xEE>", + 0.0 + ], + [ + "<0xEF>", + 0.0 + ], + [ + "<0xF0>", + 0.0 + ], + [ + "<0xF1>", + 0.0 + ], + [ + "<0xF2>", + 0.0 + ], + [ + "<0xF3>", + 0.0 + ], + [ + "<0xF4>", + 0.0 + ], + [ + "<0xF5>", + 0.0 + ], + [ + "<0xF6>", + 0.0 + ], + [ + "<0xF7>", + 0.0 + ], + [ + "<0xF8>", + 0.0 + ], + [ + "<0xF9>", + 0.0 + ], + [ + "<0xFA>", + 0.0 + ], + [ + "<0xFB>", + 0.0 + ], + [ + "<0xFC>", + 0.0 + ], + [ + "<0xFD>", + 0.0 + ], + [ + "<0xFE>", + 0.0 + ], + [ + "<0xFF>", + 0.0 + ], + [ + ".", + -3.2023584842681885 + ], + [ + "▁the", + -3.364069700241089 + ], + [ + ",", + -3.3711929321289062 + ], + [ + "▁", + -3.430966854095459 + ], + [ + "▁and", + -3.8377301692962646 + ], + [ + "s", + -3.8654253482818604 + ], + [ + "▁to", + -3.86620831489563 + ], + [ + "a", + -3.899904251098633 + ], + [ + "▁of", + -3.9952220916748047 + ], + [ + "▁in", + -4.394448280334473 + ], + [ + "▁is", + -4.701432228088379 + ], + [ + "▁for", + -4.8239850997924805 + ], + [ + "-", + -4.942785739898682 + ], + [ + "▁that", + -4.9980926513671875 + ], + [ + "▁you", + -5.0122575759887695 + ], + [ + "▁I", + -5.114060878753662 + ], + [ + "▁with", + -5.121949672698975 + ], + [ + "’", + -5.199695587158203 + ], + [ + "▁on", + -5.223159313201904 + ], + [ + "t", + -5.34583044052124 + ], + [ + "▁it", + -5.348077297210693 + ], + [ + "▁are", + -5.357232093811035 + ], + [ + "▁The", + -5.409670352935791 + ], + [ + "▁be", + -5.453668117523193 + ], + [ + "▁as", + -5.506962299346924 + ], + [ + "▁your", + -5.547610759735107 + ], + [ + "'", + -5.556434154510498 + ], + [ + "▁or", + -5.65031623840332 + ], + [ + "▁have", + -5.6985859870910645 + ], + [ + "e", + -5.734777450561523 + ], + [ + "▁at", + -5.740157604217529 + ], + [ + "▁from", + -5.769085884094238 + ], + [ + "▁this", + -5.7692131996154785 + ], + [ + "▁was", + -5.808231830596924 + ], + [ + "▁can", + -5.820746421813965 + ], + [ + "▁by", + -5.8441243171691895 + ], + [ + "▁will", + -5.851343154907227 + ], + [ + "n", + -5.857363224029541 + ], + [ + "▁(", + -5.896408557891846 + ], + [ + "o", + -5.936312675476074 + ], + [ + "▁an", + -5.958520889282227 + ], + [ + "▁not", + -6.023405075073242 + ], + [ + "▁we", + -6.078361511230469 + ], + [ + "i", + -6.093306541442871 + ], + [ + "d", + -6.103837966918945 + ], + [ + ":", + -6.151877403259277 + ], + [ + "▁has", + -6.198678970336914 + ], + [ + "!", + -6.211816310882568 + ], + [ + "▁all", + -6.219272136688232 + ], + [ + "?", + -6.280776023864746 + ], + [ + "ing", + -6.284286022186279 + ], + [ + "▁our", + -6.317816734313965 + ], + [ + "▁more", + -6.336761951446533 + ], + [ + ")", + -6.337009429931641 + ], + [ + "▁but", + -6.341323375701904 + ], + [ + "▁their", + -6.347039222717285 + ], + [ + "▁one", + -6.40566349029541 + ], + [ + "▁they", + -6.414764404296875 + ], + [ + "m", + -6.46182918548584 + ], + [ + "ed", + -6.493099689483643 + ], + [ + "▁about", + -6.498533725738525 + ], + [ + "▁my", + -6.5004472732543945 + ], + [ + "▁which", + -6.517055511474609 + ], + [ + "y", + -6.524401664733887 + ], + [ + "▁A", + -6.553309917449951 + ], + [ + "▁It", + -6.565123558044434 + ], + [ + "▁out", + -6.569912433624268 + ], + [ + "▁so", + -6.573856830596924 + ], + [ + "▁time", + -6.581578731536865 + ], + [ + "▁up", + -6.586670875549316 + ], + [ + "▁also", + -6.5869269371032715 + ], + [ + "▁This", + -6.6017937660217285 + ], + [ + "r", + -6.656627655029297 + ], + [ + "re", + -6.658642768859863 + ], + [ + "▁We", + -6.671380519866943 + ], + [ + "▁do", + -6.734364032745361 + ], + [ + "/", + -6.751723766326904 + ], + [ + "▁In", + -6.754616737365723 + ], + [ + "▁“", + -6.7565789222717285 + ], + [ + "▁his", + -6.768753528594971 + ], + [ + "▁who", + -6.7856550216674805 + ], + [ + "▁\"", + -6.789307594299316 + ], + [ + "▁like", + -6.791515350341797 + ], + [ + "▁he", + -6.795821189880371 + ], + [ + "▁if", + -6.796501159667969 + ], + [ + "▁other", + -6.796676158905029 + ], + [ + "▁when", + -6.798412799835205 + ], + [ + "▁been", + -6.811161518096924 + ], + [ + "▁what", + -6.852843761444092 + ], + [ + "▁new", + -6.88257360458374 + ], + [ + "▁get", + -6.890024662017822 + ], + [ + "▁some", + -6.892421722412109 + ], + [ + "▁were", + -6.897500991821289 + ], + [ + "▁any", + -6.907028675079346 + ], + [ + "▁would", + -6.913707256317139 + ], + [ + "▁there", + -6.913708209991455 + ], + [ + "▁them", + -6.940974712371826 + ], + [ + ";", + -6.943416595458984 + ], + [ + "▁just", + -6.952645301818848 + ], + [ + "▁had", + -6.960732460021973 + ], + [ + "▁into", + -6.962028503417969 + ], + [ + "▁make", + -7.010058879852295 + ], + [ + "▁than", + -7.013336181640625 + ], + [ + "▁You", + -7.0282697677612305 + ], + [ + "▁over", + -7.0521392822265625 + ], + [ + "▁how", + -7.059388160705566 + ], + [ + "er", + -7.061150074005127 + ], + [ + "▁If", + -7.062448024749756 + ], + [ + "in", + -7.067188262939453 + ], + [ + "▁people", + -7.071262836456299 + ], + [ + "▁me", + -7.075874328613281 + ], + [ + "▁work", + -7.0858941078186035 + ], + [ + "▁may", + -7.096367835998535 + ], + [ + "▁use", + -7.099398612976074 + ], + [ + "▁only", + -7.112382888793945 + ], + [ + "▁most", + -7.13123083114624 + ], + [ + "▁its", + -7.132454872131348 + ], + [ + "▁well", + -7.134829521179199 + ], + [ + "▁first", + -7.136438369750977 + ], + [ + "▁her", + -7.142535209655762 + ], + [ + "▁no", + -7.145441055297852 + ], + [ + "▁–", + -7.162117004394531 + ], + [ + "\"", + -7.168670177459717 + ], + [ + "▁us", + -7.176497936248779 + ], + [ + "▁these", + -7.178153991699219 + ], + [ + "▁need", + -7.180717945098877 + ], + [ + "ly", + -7.201466083526611 + ], + [ + "▁very", + -7.218252182006836 + ], + [ + "h", + -7.23167085647583 + ], + [ + "p", + -7.234610557556152 + ], + [ + "l", + -7.2512125968933105 + ], + [ + "on", + -7.262847423553467 + ], + [ + "”", + -7.270200252532959 + ], + [ + "▁many", + -7.270775318145752 + ], + [ + "▁through", + -7.2812395095825195 + ], + [ + "S", + -7.283292770385742 + ], + [ + "▁two", + -7.295241832733154 + ], + [ + "▁way", + -7.296388626098633 + ], + [ + "I", + -7.308082103729248 + ], + [ + ").", + -7.317436695098877 + ], + [ + "c", + -7.323712348937988 + ], + [ + "▁help", + -7.327799320220947 + ], + [ + "ve", + -7.343850612640381 + ], + [ + "b", + -7.356295108795166 + ], + [ + "▁years", + -7.357725620269775 + ], + [ + "▁best", + -7.368443489074707 + ], + [ + "▁good", + -7.3740339279174805 + ], + [ + "▁know", + -7.382932186126709 + ], + [ + "▁see", + -7.383909702301025 + ], + [ + "▁year", + -7.386817932128906 + ], + [ + "▁where", + -7.3996710777282715 + ], + [ + "▁such", + -7.427097797393799 + ], + [ + "f", + -7.430888652801514 + ], + [ + "▁should", + -7.431472301483154 + ], + [ + "▁back", + -7.435270309448242 + ], + [ + "▁now", + -7.43964958190918 + ], + [ + "g", + -7.43979024887085 + ], + [ + "▁could", + -7.4472832679748535 + ], + [ + "▁after", + -7.447574615478516 + ], + [ + "▁much", + -7.454396724700928 + ], + [ + "▁day", + -7.464763164520264 + ], + [ + "▁even", + -7.470591068267822 + ], + [ + "▁home", + -7.471315383911133 + ], + [ + "ll", + -7.474332809448242 + ], + [ + "▁want", + -7.474753379821777 + ], + [ + "▁take", + -7.476250171661377 + ], + [ + "able", + -7.485106945037842 + ], + [ + "▁He", + -7.4929585456848145 + ], + [ + "k", + -7.495151519775391 + ], + [ + "▁For", + -7.497325897216797 + ], + [ + "▁said", + -7.498598098754883 + ], + [ + "▁great", + -7.514589786529541 + ], + [ + "▁because", + -7.517975330352783 + ], + [ + "u", + -7.518996238708496 + ], + [ + "▁information", + -7.519284725189209 + ], + [ + "▁find", + -7.525424480438232 + ], + [ + "th", + -7.530240535736084 + ], + [ + "or", + -7.537253379821777 + ], + [ + "▁used", + -7.542159080505371 + ], + [ + "▁&", + -7.563538551330566 + ], + [ + "▁made", + -7.5691633224487305 + ], + [ + "▁she", + -7.578183650970459 + ], + [ + "▁right", + -7.584944725036621 + ], + [ + "▁here", + -7.597407817840576 + ], + [ + "▁don", + -7.609857082366943 + ], + [ + "▁being", + -7.611628532409668 + ], + [ + "▁before", + -7.612606048583984 + ], + [ + "▁those", + -7.612918376922607 + ], + [ + "is", + -7.616389274597168 + ], + [ + "▁business", + -7.620397090911865 + ], + [ + "▁go", + -7.627985954284668 + ], + [ + "▁And", + -7.6412034034729 + ], + [ + "▁each", + -7.648678779602051 + ], + [ + "an", + -7.649536609649658 + ], + [ + "▁life", + -7.652268886566162 + ], + [ + "▁2", + -7.657840728759766 + ], + [ + "▁3", + -7.673983097076416 + ], + [ + "▁There", + -7.679122447967529 + ], + [ + "▁1", + -7.688060283660889 + ], + [ + "▁own", + -7.70681619644165 + ], + [ + "▁world", + -7.707164764404297 + ], + [ + "▁while", + -7.718684673309326 + ], + [ + "▁high", + -7.7221527099609375 + ], + [ + "A", + -7.727860927581787 + ], + [ + "▁around", + -7.728450775146484 + ], + [ + "▁But", + -7.730518817901611 + ], + [ + "▁S", + -7.7461090087890625 + ], + [ + "▁really", + -7.749992847442627 + ], + [ + "),", + -7.761063098907471 + ], + [ + "▁As", + -7.761569023132324 + ], + [ + "▁different", + -7.768365859985352 + ], + [ + "▁think", + -7.7699785232543945 + ], + [ + "▁part", + -7.783398628234863 + ], + [ + "▁last", + -7.79232931137085 + ], + [ + "▁look", + -7.794530391693115 + ], + [ + "▁using", + -7.794963836669922 + ], + [ + "▁They", + -7.795846939086914 + ], + [ + "▁long", + -7.798611640930176 + ], + [ + "▁both", + -7.804934024810791 + ], + [ + "▁same", + -7.810230731964111 + ], + [ + "▁down", + -7.811037540435791 + ], + [ + "▁place", + -7.811369895935059 + ], + [ + "▁every", + -7.811471939086914 + ], + [ + "▁off", + -7.811760902404785 + ], + [ + "▁service", + -7.8143486976623535 + ], + [ + "v", + -7.821407318115234 + ], + [ + "▁So", + -7.8219828605651855 + ], + [ + "▁To", + -7.824888706207275 + ], + [ + "▁free", + -7.830121994018555 + ], + [ + "▁available", + -7.830729007720947 + ], + [ + "▁between", + -7.83139181137085 + ], + [ + "▁still", + -7.8355302810668945 + ], + [ + "▁love", + -7.841485977172852 + ], + [ + "—", + -7.846644878387451 + ], + [ + "▁going", + -7.8634443283081055 + ], + [ + "▁company", + -7.86700963973999 + ], + [ + "▁experience", + -7.877853870391846 + ], + [ + "▁What", + -7.877864837646484 + ], + [ + "x", + -7.879181385040283 + ], + [ + "C", + -7.8808488845825195 + ], + [ + "▁system", + -7.882213592529297 + ], + [ + "...", + -7.8839592933654785 + ], + [ + "▁data", + -7.896008491516113 + ], + [ + "▁set", + -7.898609638214111 + ], + [ + "▁under", + -7.916430950164795 + ], + [ + "▁am", + -7.917826175689697 + ], + [ + "▁When", + -7.921837329864502 + ], + [ + "▁few", + -7.92697286605835 + ], + [ + "to", + -7.927865982055664 + ], + [ + "al", + -7.927928447723389 + ], + [ + "▁provide", + -7.938974380493164 + ], + [ + "w", + -7.949774742126465 + ], + [ + "▁number", + -7.950848579406738 + ], + [ + "▁always", + -7.957900047302246 + ], + [ + "▁him", + -7.960877418518066 + ], + [ + "com", + -7.967016220092773 + ], + [ + "▁New", + -7.9680070877075195 + ], + [ + "▁including", + -7.969451427459717 + ], + [ + "▁team", + -7.970212936401367 + ], + [ + "▁water", + -7.973342418670654 + ], + [ + "▁come", + -7.977324962615967 + ], + [ + "▁during", + -7.9781646728515625 + ], + [ + "D", + -7.983567237854004 + ], + [ + "▁things", + -7.986267566680908 + ], + [ + "▁services", + -7.987058162689209 + ], + [ + "▁little", + -7.989128589630127 + ], + [ + "▁family", + -7.990901470184326 + ], + [ + "▁three", + -7.993311405181885 + ], + [ + "▁5", + -7.9943623542785645 + ], + [ + "▁without", + -7.9979376792907715 + ], + [ + "▁C", + -8.00173282623291 + ], + [ + "▁better", + -8.004629135131836 + ], + [ + "▁10", + -8.007047653198242 + ], + [ + "▁support", + -8.00879955291748 + ], + [ + "▁must", + -8.009655952453613 + ], + [ + "▁does", + -8.011739730834961 + ], + [ + "▁sure", + -8.019805908203125 + ], + [ + "▁M", + -8.0308837890625 + ], + [ + "▁4", + -8.031001091003418 + ], + [ + "▁did", + -8.032215118408203 + ], + [ + "ers", + -8.033283233642578 + ], + [ + "▁B", + -8.035361289978027 + ], + [ + "▁online", + -8.037674903869629 + ], + [ + "▁E", + -8.040668487548828 + ], + [ + "▁Our", + -8.04174518585205 + ], + [ + "▁end", + -8.059331893920898 + ], + [ + "▁next", + -8.070594787597656 + ], + [ + "▁important", + -8.073039054870605 + ], + [ + "▁lot", + -8.077868461608887 + ], + [ + "▁something", + -8.084932327270508 + ], + [ + "▁top", + -8.0853910446167 + ], + [ + "▁give", + -8.088569641113281 + ], + [ + "▁All", + -8.091230392456055 + ], + [ + "▁small", + -8.094334602355957 + ], + [ + "▁full", + -8.094596862792969 + ], + [ + "▁design", + -8.096598625183105 + ], + [ + "▁process", + -8.105284690856934 + ], + [ + "▁another", + -8.1060152053833 + ], + [ + "▁within", + -8.114518165588379 + ], + [ + "▁found", + -8.116018295288086 + ], + [ + "▁might", + -8.118355751037598 + ], + [ + "▁quality", + -8.118953704833984 + ], + [ + "▁With", + -8.126537322998047 + ], + [ + "and", + -8.127974510192871 + ], + [ + "▁order", + -8.142169952392578 + ], + [ + "▁keep", + -8.153923988342285 + ], + [ + "▁since", + -8.160852432250977 + ], + [ + "▁site", + -8.16108226776123 + ], + [ + "▁D", + -8.166118621826172 + ], + [ + "▁That", + -8.184609413146973 + ], + [ + "▁local", + -8.187448501586914 + ], + [ + "▁working", + -8.191598892211914 + ], + [ + "▁start", + -8.193610191345215 + ], + [ + "▁P", + -8.195890426635742 + ], + [ + "▁game", + -8.199524879455566 + ], + [ + "▁today", + -8.203958511352539 + ], + [ + "▁offer", + -8.205292701721191 + ], + [ + "▁‘", + -8.207386016845703 + ], + [ + "▁She", + -8.209266662597656 + ], + [ + "▁never", + -8.215818405151367 + ], + [ + "▁U", + -8.216754913330078 + ], + [ + "▁days", + -8.219094276428223 + ], + [ + "▁looking", + -8.223016738891602 + ], + [ + "▁products", + -8.224617004394531 + ], + [ + "B", + -8.224759101867676 + ], + [ + "▁feel", + -8.225506782531738 + ], + [ + "M", + -8.230082511901855 + ], + [ + "it", + -8.234219551086426 + ], + [ + "▁website", + -8.234328269958496 + ], + [ + "▁put", + -8.2354097366333 + ], + [ + "▁book", + -8.241498947143555 + ], + [ + "▁making", + -8.241512298583984 + ], + [ + "▁school", + -8.245353698730469 + ], + [ + "▁students", + -8.247751235961914 + ], + [ + "▁say", + -8.249082565307617 + ], + [ + "▁change", + -8.249330520629883 + ], + [ + "▁These", + -8.262072563171387 + ], + [ + "▁week", + -8.267455101013184 + ], + [ + "▁care", + -8.26911735534668 + ], + [ + "▁show", + -8.270676612854004 + ], + [ + "▁market", + -8.272296905517578 + ], + [ + "▁children", + -8.284977912902832 + ], + [ + "2", + -8.285783767700195 + ], + [ + "▁case", + -8.287611961364746 + ], + [ + "▁per", + -8.288951873779297 + ], + [ + "▁easy", + -8.289761543273926 + ], + [ + "▁money", + -8.290447235107422 + ], + [ + "▁T", + -8.29820728302002 + ], + [ + "▁course", + -8.301239967346191 + ], + [ + "▁project", + -8.305240631103516 + ], + [ + "▁got", + -8.306596755981445 + ], + [ + "▁needs", + -8.31442642211914 + ], + [ + "▁No", + -8.318490028381348 + ], + [ + "▁My", + -8.318806648254395 + ], + [ + "▁large", + -8.32027816772461 + ], + [ + "▁again", + -8.3318510055542 + ], + [ + "▁How", + -8.331901550292969 + ], + [ + "▁car", + -8.333620071411133 + ], + [ + "▁room", + -8.338515281677246 + ], + [ + "▁away", + -8.342880249023438 + ], + [ + "▁state", + -8.345171928405762 + ], + [ + "▁health", + -8.347867965698242 + ], + [ + "▁second", + -8.349309921264648 + ], + [ + "▁post", + -8.350981712341309 + ], + [ + "▁together", + -8.35266399383545 + ], + [ + "▁possible", + -8.35461139678955 + ], + [ + "▁often", + -8.355350494384766 + ], + [ + "▁create", + -8.356051445007324 + ], + [ + "▁food", + -8.356633186340332 + ], + [ + "▁un", + -8.36129379272461 + ], + [ + "▁open", + -8.361753463745117 + ], + [ + "▁until", + -8.362069129943848 + ], + [ + "▁point", + -8.363824844360352 + ], + [ + "▁name", + -8.364618301391602 + ], + [ + "▁program", + -8.36487865447998 + ], + [ + "▁area", + -8.366408348083496 + ], + [ + "▁At", + -8.372393608093262 + ], + [ + "▁One", + -8.373229026794434 + ], + [ + "▁On", + -8.376362800598145 + ], + [ + "▁real", + -8.376909255981445 + ], + [ + "▁group", + -8.379023551940918 + ], + [ + "▁why", + -8.382932662963867 + ], + [ + "▁person", + -8.383261680603027 + ], + [ + "▁include", + -8.387616157531738 + ], + [ + "▁de", + -8.389212608337402 + ], + [ + "▁power", + -8.389503479003906 + ], + [ + "▁based", + -8.395094871520996 + ], + [ + "▁community", + -8.401068687438965 + ], + [ + "▁having", + -8.406102180480957 + ], + [ + "▁product", + -8.408605575561523 + ], + [ + ".\"", + -8.410916328430176 + ], + [ + "man", + -8.411425590515137 + ], + [ + "▁call", + -8.41154956817627 + ], + [ + "▁F", + -8.4127197265625 + ], + [ + "▁level", + -8.41415786743164 + ], + [ + "▁6", + -8.414508819580078 + ], + [ + "▁page", + -8.416504859924316 + ], + [ + "▁against", + -8.419686317443848 + ], + [ + "▁play", + -8.420513153076172 + ], + [ + "▁thing", + -8.426117897033691 + ], + [ + "▁R", + -8.427506446838379 + ], + [ + "▁J", + -8.427657127380371 + ], + [ + "▁read", + -8.430461883544922 + ], + [ + "▁become", + -8.430808067321777 + ], + [ + "▁side", + -8.434793472290039 + ], + [ + "▁research", + -8.435675621032715 + ], + [ + "▁less", + -8.440485000610352 + ], + [ + "T", + -8.442431449890137 + ], + [ + "▁along", + -8.450817108154297 + ], + [ + "▁old", + -8.454556465148926 + ], + [ + "▁public", + -8.454704284667969 + ], + [ + "▁list", + -8.45499324798584 + ], + [ + "P", + -8.45933723449707 + ], + [ + "the", + -8.46035385131836 + ], + [ + "▁price", + -8.46194076538086 + ], + [ + "▁done", + -8.46419620513916 + ], + [ + "▁means", + -8.46448802947998 + ], + [ + "▁big", + -8.467167854309082 + ], + [ + "▁However", + -8.476615905761719 + ], + [ + "▁event", + -8.47692584991455 + ], + [ + "▁access", + -8.479130744934082 + ], + [ + "▁God", + -8.479907035827637 + ], + [ + "▁G", + -8.481569290161133 + ], + [ + "▁development", + -8.482935905456543 + ], + [ + "▁house", + -8.48306941986084 + ], + [ + "up", + -8.483793258666992 + ], + [ + "▁After", + -8.484527587890625 + ], + [ + "us", + -8.484881401062012 + ], + [ + "▁contact", + -8.485782623291016 + ], + [ + "▁space", + -8.48947811126709 + ], + [ + "▁job", + -8.491032600402832 + ], + [ + "▁body", + -8.49415397644043 + ], + [ + "▁light", + -8.49871826171875 + ], + [ + "▁enough", + -8.499299049377441 + ], + [ + "▁several", + -8.50335693359375 + ], + [ + "▁hard", + -8.505252838134766 + ], + [ + "▁range", + -8.515830039978027 + ], + [ + "▁University", + -8.518271446228027 + ], + [ + "▁Do", + -8.518776893615723 + ], + [ + "▁left", + -8.519610404968262 + ], + [ + "▁already", + -8.520464897155762 + ], + [ + "▁across", + -8.521450996398926 + ], + [ + "▁comes", + -8.523046493530273 + ], + [ + "▁live", + -8.523065567016602 + ], + [ + "▁cost", + -8.528708457946777 + ], + [ + "▁personal", + -8.52952766418457 + ], + [ + "▁20", + -8.532119750976562 + ], + [ + "▁plan", + -8.533548355102539 + ], + [ + "▁form", + -8.53389835357666 + ], + [ + "▁getting", + -8.53634262084961 + ], + [ + "▁An", + -8.536884307861328 + ], + [ + "▁L", + -8.536977767944336 + ], + [ + "▁try", + -8.540353775024414 + ], + [ + "K", + -8.543693542480469 + ], + [ + "▁hand", + -8.5440092086792 + ], + [ + "▁social", + -8.545568466186523 + ], + [ + "▁line", + -8.546478271484375 + ], + [ + "▁control", + -8.546635627746582 + ], + [ + "▁times", + -8.547179222106934 + ], + [ + "▁makes", + -8.547248840332031 + ], + [ + "▁below", + -8.551798820495605 + ], + [ + ",”", + -8.552921295166016 + ], + [ + "▁example", + -8.554241180419922 + ], + [ + "▁K", + -8.5559720993042 + ], + [ + "▁ever", + -8.556999206542969 + ], + [ + "E", + -8.558198928833008 + ], + [ + "▁run", + -8.56040096282959 + ], + [ + "▁future", + -8.560903549194336 + ], + [ + "1", + -8.56994342803955 + ], + [ + "▁18", + -8.572076797485352 + ], + [ + "F", + -8.57442569732666 + ], + [ + "▁perfect", + -8.577982902526855 + ], + [ + "▁industry", + -8.580424308776855 + ], + [ + "▁learn", + -8.582361221313477 + ], + [ + "▁value", + -8.582579612731934 + ], + [ + "▁12", + -8.584053993225098 + ], + [ + "▁let", + -8.585572242736816 + ], + [ + "ar", + -8.586841583251953 + ], + [ + "▁Your", + -8.588823318481445 + ], + [ + "▁non", + -8.592572212219238 + ], + [ + "▁country", + -8.593240737915039 + ], + [ + "▁add", + -8.593585968017578 + ], + [ + "▁city", + -8.593737602233887 + ], + [ + "▁doing", + -8.594898223876953 + ], + [ + "▁H", + -8.596445083618164 + ], + [ + "G", + -8.598662376403809 + ], + [ + "▁far", + -8.599390983581543 + ], + [ + "H", + -8.600007057189941 + ], + [ + "▁past", + -8.600038528442383 + ], + [ + "▁four", + -8.600704193115234 + ], + [ + "▁special", + -8.601924896240234 + ], + [ + "▁offers", + -8.602274894714355 + ], + [ + "▁7", + -8.603168487548828 + ], + [ + "▁8", + -8.605762481689453 + ], + [ + "▁companies", + -8.606710433959961 + ], + [ + "▁share", + -8.609116554260254 + ], + [ + "▁least", + -8.609861373901367 + ], + [ + "▁check", + -8.612970352172852 + ], + [ + "▁hours", + -8.616393089294434 + ], + [ + "3", + -8.617172241210938 + ], + [ + "▁once", + -8.617226600646973 + ], + [ + "▁bit", + -8.618367195129395 + ], + [ + "z", + -8.620715141296387 + ], + [ + "▁actually", + -8.621268272399902 + ], + [ + "▁called", + -8.625032424926758 + ], + [ + "▁others", + -8.626154899597168 + ], + [ + "▁N", + -8.629861831665039 + ], + [ + "▁night", + -8.631589889526367 + ], + [ + "▁though", + -8.631678581237793 + ], + [ + "▁video", + -8.634113311767578 + ], + [ + "▁problem", + -8.635151863098145 + ], + [ + "▁started", + -8.636165618896484 + ], + [ + "▁low", + -8.636419296264648 + ], + [ + "▁O", + -8.6478910446167 + ], + [ + "▁music", + -8.648380279541016 + ], + [ + "▁features", + -8.65058708190918 + ], + [ + "The", + -8.651021003723145 + ], + [ + "R", + -8.651228904724121 + ], + [ + "▁members", + -8.65129566192627 + ], + [ + "▁type", + -8.653581619262695 + ], + [ + "▁fact", + -8.653633117675781 + ], + [ + "▁didn", + -8.654239654541016 + ], + [ + "▁please", + -8.654290199279785 + ], + [ + "▁customers", + -8.655288696289062 + ], + [ + "▁minutes", + -8.657962799072266 + ], + [ + "▁fun", + -8.659144401550293 + ], + [ + "▁current", + -8.659852027893066 + ], + [ + "▁building", + -8.660152435302734 + ], + [ + "▁above", + -8.667118072509766 + ], + [ + "▁doesn", + -8.667428016662598 + ], + [ + "▁technology", + -8.667430877685547 + ], + [ + "▁short", + -8.667673110961914 + ], + [ + "▁content", + -8.668425559997559 + ], + [ + "▁ensure", + -8.673101425170898 + ], + [ + "▁results", + -8.674484252929688 + ], + [ + "▁won", + -8.67599105834961 + ], + [ + "▁pay", + -8.676445007324219 + ], + [ + "▁visit", + -8.677063941955566 + ], + [ + "▁single", + -8.682430267333984 + ], + [ + "▁complete", + -8.688796997070312 + ], + [ + "(", + -8.688909530639648 + ], + [ + "▁everything", + -8.690116882324219 + ], + [ + "▁story", + -8.690653800964355 + ], + [ + "▁kind", + -8.69205379486084 + ], + [ + "▁St", + -8.694620132446289 + ], + [ + "▁Re", + -8.699433326721191 + ], + [ + "▁professional", + -8.703174591064453 + ], + [ + "▁training", + -8.703954696655273 + ], + [ + "▁due", + -8.705799102783203 + ], + [ + "▁enjoy", + -8.706962585449219 + ], + [ + "▁given", + -8.708802223205566 + ], + [ + "▁property", + -8.709145545959473 + ], + [ + "▁understand", + -8.70969009399414 + ], + [ + "▁months", + -8.712593078613281 + ], + [ + "▁simple", + -8.713658332824707 + ], + [ + "▁yet", + -8.714555740356445 + ], + [ + "▁questions", + -8.714750289916992 + ], + [ + "▁buy", + -8.71731185913086 + ], + [ + "▁early", + -8.717365264892578 + ], + [ + "▁million", + -8.720799446105957 + ], + [ + "▁known", + -8.724167823791504 + ], + [ + "▁management", + -8.725505828857422 + ], + [ + "▁W", + -8.726944923400879 + ], + [ + "▁came", + -8.728188514709473 + ], + [ + "▁provides", + -8.73065185546875 + ], + [ + "▁season", + -8.732860565185547 + ], + [ + "▁beautiful", + -8.73488998413086 + ], + [ + "▁government", + -8.736333847045898 + ], + [ + "▁size", + -8.737588882446289 + ], + [ + "▁30", + -8.737666130065918 + ], + [ + "▁various", + -8.74066162109375 + ], + [ + "▁mind", + -8.743148803710938 + ], + [ + "▁15", + -8.743387222290039 + ], + [ + "▁American", + -8.745051383972168 + ], + [ + "▁issues", + -8.750088691711426 + ], + [ + "▁study", + -8.750945091247559 + ], + [ + "▁required", + -8.753222465515137 + ], + [ + "▁Please", + -8.753683090209961 + ], + [ + "▁idea", + -8.754352569580078 + ], + [ + "▁friends", + -8.756220817565918 + ], + [ + "▁result", + -8.756368637084961 + ], + [ + "▁following", + -8.757338523864746 + ], + [ + "▁took", + -8.757434844970703 + ], + [ + "▁addition", + -8.757516860961914 + ], + [ + "▁key", + -8.758504867553711 + ], + [ + "▁whether", + -8.761432647705078 + ], + [ + "▁air", + -8.763178825378418 + ], + [ + "▁thought", + -8.764568328857422 + ], + [ + "▁man", + -8.768447875976562 + ], + [ + "▁whole", + -8.769965171813965 + ], + [ + "▁media", + -8.77111530303955 + ], + [ + "▁performance", + -8.771259307861328 + ], + [ + "▁energy", + -8.771961212158203 + ], + [ + "N", + -8.771981239318848 + ], + [ + "L", + -8.774637222290039 + ], + [ + "4", + -8.775389671325684 + ], + [ + "▁living", + -8.775915145874023 + ], + [ + "▁While", + -8.776456832885742 + ], + [ + "le", + -8.780293464660645 + ], + [ + "▁head", + -8.782672882080078 + ], + [ + "▁choose", + -8.786304473876953 + ], + [ + "▁month", + -8.786903381347656 + ], + [ + "▁areas", + -8.787541389465332 + ], + [ + "▁taking", + -8.789318084716797 + ], + [ + "▁someone", + -8.791547775268555 + ], + [ + "▁amount", + -8.7924165725708 + ], + [ + "▁email", + -8.793359756469727 + ], + [ + "ness", + -8.799093246459961 + ], + [ + "▁Now", + -8.800976753234863 + ], + [ + "▁office", + -8.805281639099121 + ], + [ + "▁main", + -8.805949211120605 + ], + [ + "▁view", + -8.807328224182129 + ], + [ + "▁bring", + -8.808135986328125 + ], + [ + "▁unique", + -8.808924674987793 + ], + [ + "▁further", + -8.809021949768066 + ], + [ + "▁says", + -8.809309959411621 + ], + [ + "▁later", + -8.810429573059082 + ], + [ + "▁account", + -8.81074333190918 + ], + [ + "▁front", + -8.812167167663574 + ], + [ + "▁designed", + -8.814948081970215 + ], + [ + "▁either", + -8.818310737609863 + ], + [ + "▁believe", + -8.819707870483398 + ], + [ + "▁customer", + -8.819777488708496 + ], + [ + "▁major", + -8.826139450073242 + ], + [ + "▁V", + -8.82748031616211 + ], + [ + "▁went", + -8.827899932861328 + ], + [ + "▁close", + -8.828063011169434 + ], + [ + "▁staff", + -8.829449653625488 + ], + [ + "▁seen", + -8.82952880859375 + ], + [ + "ity", + -8.830188751220703 + ], + [ + "▁women", + -8.835476875305176 + ], + [ + "▁white", + -8.838882446289062 + ], + [ + "▁provided", + -8.840717315673828 + ], + [ + "▁five", + -8.840768814086914 + ], + [ + "▁specific", + -8.842765808105469 + ], + [ + "▁United", + -8.844937324523926 + ], + [ + "▁move", + -8.845407485961914 + ], + [ + "▁quite", + -8.84654712677002 + ], + [ + "▁child", + -8.84682559967041 + ], + [ + "▁history", + -8.848203659057617 + ], + [ + "▁needed", + -8.848591804504395 + ], + [ + "▁web", + -8.849143028259277 + ], + [ + "▁style", + -8.849266052246094 + ], + [ + "▁[", + -8.851451873779297 + ], + [ + "▁Some", + -8.852509498596191 + ], + [ + "▁software", + -8.853631973266602 + ], + [ + "▁simply", + -8.856295585632324 + ], + [ + "▁especially", + -8.860185623168945 + ], + [ + "▁Dr", + -8.862770080566406 + ], + [ + "▁City", + -8.863836288452148 + ], + [ + "▁writing", + -8.864251136779785 + ], + [ + "ation", + -8.864751815795898 + ], + [ + "▁series", + -8.865376472473145 + ], + [ + "V", + -8.868736267089844 + ], + [ + "▁present", + -8.869478225708008 + ], + [ + "▁9", + -8.87112808227539 + ], + [ + "▁pre", + -8.87185001373291 + ], + [ + "▁works", + -8.872475624084473 + ], + [ + "▁application", + -8.872885704040527 + ], + [ + "▁heart", + -8.874749183654785 + ], + [ + "▁yourself", + -8.875683784484863 + ], + [ + "▁art", + -8.875850677490234 + ], + [ + "▁phone", + -8.876500129699707 + ], + [ + "▁options", + -8.876614570617676 + ], + [ + "▁everyone", + -8.877249717712402 + ], + [ + "▁includes", + -8.87920093536377 + ], + [ + "W", + -8.87934684753418 + ], + [ + "▁natural", + -8.880987167358398 + ], + [ + "▁US", + -8.88215446472168 + ], + [ + "▁meet", + -8.882469177246094 + ], + [ + "▁May", + -8.883729934692383 + ], + [ + "▁By", + -8.884084701538086 + ], + [ + "co", + -8.888625144958496 + ], + [ + "▁hope", + -8.889167785644531 + ], + [ + "▁etc", + -8.893228530883789 + ], + [ + "▁law", + -8.893620491027832 + ], + [ + "ic", + -8.896039009094238 + ], + [ + "▁search", + -8.89692497253418 + ], + [ + "▁test", + -8.897639274597168 + ], + [ + "▁anything", + -8.89819049835205 + ], + [ + "▁face", + -8.901001930236816 + ], + [ + "▁class", + -8.904151916503906 + ], + [ + "▁Here", + -8.904470443725586 + ], + [ + "▁field", + -8.908400535583496 + ], + [ + "▁almost", + -8.91051197052002 + ], + [ + "▁human", + -8.910588264465332 + ], + [ + "▁report", + -8.911901473999023 + ], + [ + "▁issue", + -8.913503646850586 + ], + [ + "J", + -8.915949821472168 + ], + [ + "▁receive", + -8.917586326599121 + ], + [ + "▁build", + -8.91758918762207 + ], + [ + "▁clients", + -8.92270278930664 + ], + [ + "▁financial", + -8.92309284210205 + ], + [ + "▁added", + -8.923234939575195 + ], + [ + "▁ideas", + -8.924694061279297 + ], + [ + "▁deal", + -8.929991722106934 + ], + [ + ",\"", + -8.930522918701172 + ], + [ + "▁events", + -8.931548118591309 + ], + [ + "▁likely", + -8.931660652160645 + ], + [ + "▁however", + -8.931962013244629 + ], + [ + "▁problems", + -8.93199634552002 + ], + [ + "▁created", + -8.9332914352417 + ], + [ + "▁card", + -8.933816909790039 + ], + [ + "▁National", + -8.934141159057617 + ], + [ + "▁half", + -8.93465518951416 + ], + [ + "▁details", + -8.934700965881348 + ], + [ + "_", + -8.935104370117188 + ], + [ + "▁download", + -8.936765670776367 + ], + [ + "▁individual", + -8.937054634094238 + ], + [ + "▁systems", + -8.938164710998535 + ], + [ + "▁allow", + -8.939016342163086 + ], + [ + "▁third", + -8.94057559967041 + ], + [ + "▁among", + -8.941221237182617 + ], + [ + "▁games", + -8.94151496887207 + ], + [ + "▁ago", + -8.942778587341309 + ], + [ + "▁clear", + -8.942798614501953 + ], + [ + "▁increase", + -8.943182945251465 + ], + [ + "▁age", + -8.94426155090332 + ], + [ + "▁turn", + -8.946000099182129 + ], + [ + "▁forward", + -8.947303771972656 + ], + [ + "]", + -8.947552680969238 + ], + [ + "▁throughout", + -8.94755744934082 + ], + [ + "▁lead", + -8.949493408203125 + ], + [ + "▁security", + -8.951915740966797 + ], + [ + "▁model", + -8.954832077026367 + ], + [ + "▁taken", + -8.954835891723633 + ], + [ + "▁insurance", + -8.955148696899414 + ], + [ + "▁11", + -8.955718040466309 + ], + [ + "▁interest", + -8.955784797668457 + ], + [ + "▁black", + -8.955881118774414 + ], + [ + "▁stay", + -8.956637382507324 + ], + [ + "▁treatment", + -8.961831092834473 + ], + [ + "▁oil", + -8.963847160339355 + ], + [ + "▁From", + -8.964911460876465 + ], + [ + "▁common", + -8.965035438537598 + ], + [ + "▁young", + -8.965696334838867 + ], + [ + "▁ready", + -8.965767860412598 + ], + [ + "▁State", + -8.965814590454102 + ], + [ + "▁opportunity", + -8.966322898864746 + ], + [ + "▁self", + -8.96826457977295 + ], + [ + "▁learning", + -8.971219062805176 + ], + [ + "▁period", + -8.971394538879395 + ], + [ + "▁tell", + -8.972795486450195 + ], + [ + "0", + -8.973523139953613 + ], + [ + "▁file", + -8.973936080932617 + ], + [ + "▁matter", + -8.975010871887207 + ], + [ + "▁co", + -8.975582122802734 + ], + [ + "▁paper", + -8.97668170928955 + ], + [ + "▁reason", + -8.9769926071167 + ], + [ + "▁South", + -8.978043556213379 + ], + [ + "▁user", + -8.978585243225098 + ], + [ + "▁located", + -8.979504585266113 + ], + [ + "▁color", + -8.979950904846191 + ], + [ + "▁Not", + -8.980697631835938 + ], + [ + "▁focus", + -8.982589721679688 + ], + [ + "▁question", + -8.983993530273438 + ], + [ + "▁image", + -8.984613418579102 + ], + [ + "▁date", + -8.985162734985352 + ], + [ + "▁continue", + -8.985186576843262 + ], + [ + "▁certain", + -8.985651016235352 + ], + [ + "▁outside", + -8.986000061035156 + ], + [ + "&", + -8.986978530883789 + ], + [ + "▁risk", + -8.987908363342285 + ], + [ + "▁rather", + -8.989988327026367 + ], + [ + "▁rate", + -8.990721702575684 + ], + [ + "▁address", + -8.990829467773438 + ], + [ + "▁blog", + -8.992281913757324 + ], + [ + "▁original", + -8.99687671661377 + ], + [ + "▁strong", + -8.996902465820312 + ], + [ + "▁party", + -8.998319625854492 + ], + [ + "▁table", + -8.999154090881348 + ], + [ + "▁changes", + -9.000377655029297 + ], + [ + "▁His", + -9.00087833404541 + ], + [ + "▁probably", + -9.001724243164062 + ], + [ + "▁near", + -9.00225830078125 + ], + [ + "▁usually", + -9.003424644470215 + ], + [ + "▁education", + -9.003620147705078 + ], + [ + "▁store", + -9.00487232208252 + ], + [ + "▁coming", + -9.006255149841309 + ], + [ + "▁additional", + -9.007387161254883 + ], + [ + "▁knowledge", + -9.008857727050781 + ], + [ + "▁skills", + -9.009790420532227 + ], + [ + "▁trying", + -9.01058292388916 + ], + [ + "▁soon", + -9.010656356811523 + ], + [ + "▁member", + -9.012581825256348 + ], + [ + "▁version", + -9.01296329498291 + ], + [ + "▁skin", + -9.012994766235352 + ], + [ + "▁happy", + -9.01368522644043 + ], + [ + "▁step", + -9.014616012573242 + ], + [ + "▁currently", + -9.014761924743652 + ], + [ + "▁higher", + -9.015024185180664 + ], + [ + "▁practice", + -9.015847206115723 + ], + [ + "▁users", + -9.017732620239258 + ], + [ + "▁activities", + -9.019124984741211 + ], + [ + "▁total", + -9.021078109741211 + ], + [ + "▁role", + -9.021509170532227 + ], + [ + "▁potential", + -9.021513938903809 + ], + [ + "out", + -9.022254943847656 + ], + [ + "▁School", + -9.022683143615723 + ], + [ + "▁ways", + -9.022971153259277 + ], + [ + "▁private", + -9.025551795959473 + ], + [ + "▁popular", + -9.026144027709961 + ], + [ + "▁brand", + -9.027629852294922 + ], + [ + "▁sales", + -9.029403686523438 + ], + [ + "▁material", + -9.03156852722168 + ], + [ + "▁kids", + -9.03243637084961 + ], + [ + "▁choice", + -9.033684730529785 + ], + [ + "▁via", + -9.034821510314941 + ], + [ + "▁percent", + -9.03506851196289 + ], + [ + "▁pretty", + -9.035417556762695 + ], + [ + "▁wide", + -9.035444259643555 + ], + [ + "▁easily", + -9.035582542419434 + ], + [ + "▁wanted", + -9.035902976989746 + ], + [ + "▁York", + -9.036640167236328 + ], + [ + "▁particular", + -9.036789894104004 + ], + [ + "▁inside", + -9.038969993591309 + ], + [ + "time", + -9.03930950164795 + ], + [ + "▁ask", + -9.03945541381836 + ], + [ + "▁environment", + -9.039731979370117 + ], + [ + "▁items", + -9.040629386901855 + ], + [ + "▁save", + -9.041576385498047 + ], + [ + "▁review", + -9.042316436767578 + ], + [ + "▁2018", + -9.04331111907959 + ], + [ + "▁built", + -9.044222831726074 + ], + [ + "▁code", + -9.045252799987793 + ], + [ + "▁follow", + -9.047075271606445 + ], + [ + "▁production", + -9.048959732055664 + ], + [ + "▁running", + -9.049439430236816 + ], + [ + "▁North", + -9.050766944885254 + ], + [ + "O", + -9.05171012878418 + ], + [ + "▁true", + -9.051934242248535 + ], + [ + "▁leave", + -9.052101135253906 + ], + [ + "▁final", + -9.05247974395752 + ], + [ + "▁credit", + -9.052715301513672 + ], + [ + "▁Co", + -9.053377151489258 + ], + [ + "am", + -9.054903984069824 + ], + [ + "5", + -9.055554389953613 + ], + [ + "▁longer", + -9.055948257446289 + ], + [ + "▁growth", + -9.056262969970703 + ], + [ + "▁general", + -9.05636978149414 + ], + [ + "▁position", + -9.056486129760742 + ], + [ + "▁option", + -9.056510925292969 + ], + [ + "▁action", + -9.056550979614258 + ], + [ + "▁cannot", + -9.057330131530762 + ], + [ + "▁Can", + -9.05801773071289 + ], + [ + "▁received", + -9.059002876281738 + ], + [ + "▁points", + -9.059649467468262 + ], + [ + "▁extra", + -9.061477661132812 + ], + [ + "▁similar", + -9.061822891235352 + ], + [ + "mm", + -9.063325881958008 + ], + [ + "▁cover", + -9.063959121704102 + ], + [ + "▁variety", + -9.065303802490234 + ], + [ + "ment", + -9.065805435180664 + ], + [ + "be", + -9.066218376159668 + ], + [ + "▁World", + -9.067166328430176 + ], + [ + "▁stop", + -9.069062232971191 + ], + [ + "▁rest", + -9.070819854736328 + ], + [ + "▁held", + -9.071090698242188 + ], + [ + "%", + -9.071502685546875 + ], + [ + "▁network", + -9.073762893676758 + ], + [ + "▁location", + -9.07697582244873 + ], + [ + "▁Just", + -9.078783988952637 + ], + [ + "▁modern", + -9.079254150390625 + ], + [ + "j", + -9.079291343688965 + ], + [ + "▁Center", + -9.079754829406738 + ], + [ + "▁marketing", + -9.081634521484375 + ], + [ + "▁standard", + -9.08263111114502 + ], + [ + "▁behind", + -9.083740234375 + ], + [ + "▁drive", + -9.085525512695312 + ], + [ + "▁computer", + -9.086030960083008 + ], + [ + "▁patients", + -9.086124420166016 + ], + [ + "▁Be", + -9.086491584777832 + ], + [ + "▁nice", + -9.087723731994629 + ], + [ + "▁projects", + -9.088889122009277 + ], + [ + "▁told", + -9.091513633728027 + ], + [ + "▁takes", + -9.09152889251709 + ], + [ + "▁16", + -9.09322452545166 + ], + [ + "▁article", + -9.095621109008789 + ], + [ + "▁allows", + -9.096156120300293 + ], + [ + "▁purchase", + -9.096558570861816 + ], + [ + "–", + -9.09835433959961 + ], + [ + "▁return", + -9.098488807678223 + ], + [ + "▁John", + -9.099282264709473 + ], + [ + "▁film", + -9.099740028381348 + ], + [ + "▁quickly", + -9.09984016418457 + ], + [ + "▁reading", + -9.100050926208496 + ], + [ + "▁mean", + -9.100520133972168 + ], + [ + "based", + -9.102030754089355 + ], + [ + "▁medical", + -9.10313892364502 + ], + [ + "▁recent", + -9.10334587097168 + ], + [ + "▁couple", + -9.103842735290527 + ], + [ + "▁included", + -9.10415267944336 + ], + [ + "ur", + -9.104304313659668 + ], + [ + "▁latest", + -9.104572296142578 + ], + [ + "▁equipment", + -9.10865306854248 + ], + [ + "▁amazing", + -9.109139442443848 + ], + [ + "▁upon", + -9.109800338745117 + ], + [ + "▁providing", + -9.112297058105469 + ], + [ + "▁X", + -9.11238956451416 + ], + [ + "▁tax", + -9.115484237670898 + ], + [ + "▁app", + -9.117941856384277 + ], + [ + "▁consider", + -9.120036125183105 + ], + [ + "▁related", + -9.120091438293457 + ], + [ + "▁entire", + -9.120244979858398 + ], + [ + "▁14", + -9.121557235717773 + ], + [ + "▁words", + -9.121591567993164 + ], + [ + "▁shows", + -9.121650695800781 + ], + [ + "▁cut", + -9.122435569763184 + ], + [ + "▁impact", + -9.123831748962402 + ], + [ + "▁approach", + -9.123929023742676 + ], + [ + "▁travel", + -9.12519645690918 + ], + [ + "▁Of", + -9.127561569213867 + ], + [ + "▁materials", + -9.128982543945312 + ], + [ + "▁necessary", + -9.129897117614746 + ], + [ + "▁anyone", + -9.129959106445312 + ], + [ + "▁summer", + -9.13003921508789 + ], + [ + "▁international", + -9.132908821105957 + ], + [ + "▁effective", + -9.13432788848877 + ], + [ + "▁cause", + -9.136306762695312 + ], + [ + "▁kitchen", + -9.142069816589355 + ], + [ + "▁improve", + -9.14209270477295 + ], + [ + "▁States", + -9.142289161682129 + ], + [ + "▁weeks", + -9.142597198486328 + ], + [ + "▁click", + -9.145827293395996 + ], + [ + "▁solution", + -9.146024703979492 + ], + [ + "▁Also", + -9.146943092346191 + ], + [ + "▁Home", + -9.147116661071777 + ], + [ + "▁send", + -9.147232055664062 + ], + [ + "▁else", + -9.1472806930542 + ], + [ + "▁April", + -9.148112297058105 + ], + [ + "ch", + -9.148843765258789 + ], + [ + "▁Don", + -9.150440216064453 + ], + [ + "▁according", + -9.151470184326172 + ], + [ + "▁men", + -9.151984214782715 + ], + [ + "▁nothing", + -9.152294158935547 + ], + [ + "▁success", + -9.152408599853516 + ], + [ + "▁worked", + -9.152429580688477 + ], + [ + "▁conditions", + -9.152692794799805 + ], + [ + "▁ability", + -9.152925491333008 + ], + [ + "▁100", + -9.15385627746582 + ], + [ + "▁bad", + -9.154572486877441 + ], + [ + "▁meeting", + -9.155426979064941 + ], + [ + "▁costs", + -9.156404495239258 + ], + [ + "▁collection", + -9.15876579284668 + ], + [ + "X", + -9.159772872924805 + ], + [ + "▁student", + -9.160063743591309 + ], + [ + "▁recently", + -9.162210464477539 + ], + [ + "▁50", + -9.162981033325195 + ], + [ + "▁seems", + -9.164278030395508 + ], + [ + "▁device", + -9.164709091186523 + ], + [ + "▁UK", + -9.164987564086914 + ], + [ + "▁terms", + -9.165481567382812 + ], + [ + "▁sense", + -9.165531158447266 + ], + [ + "▁clean", + -9.166727066040039 + ], + [ + "▁lower", + -9.167302131652832 + ], + [ + "▁Thanks", + -9.16737174987793 + ], + [ + "▁sale", + -9.168206214904785 + ], + [ + "▁difficult", + -9.168242454528809 + ], + [ + "▁talk", + -9.168269157409668 + ], + [ + "▁County", + -9.169088363647461 + ], + [ + "one", + -9.169183731079102 + ], + [ + "▁mobile", + -9.170063018798828 + ], + [ + "▁policy", + -9.170343399047852 + ], + [ + "▁average", + -9.173422813415527 + ], + [ + "ling", + -9.175298690795898 + ], + [ + "▁Park", + -9.17644214630127 + ], + [ + "▁favorite", + -9.178406715393066 + ], + [ + "▁red", + -9.180729866027832 + ], + [ + "▁weight", + -9.180861473083496 + ], + [ + "▁tools", + -9.185505867004395 + ], + [ + "▁programs", + -9.187150955200195 + ], + [ + "▁fast", + -9.188740730285645 + ], + [ + "▁excellent", + -9.189179420471191 + ], + [ + "▁highly", + -9.189191818237305 + ], + [ + "▁subject", + -9.191350936889648 + ], + [ + "less", + -9.192230224609375 + ], + [ + "▁25", + -9.192790985107422 + ], + [ + "▁hair", + -9.193802833557129 + ], + [ + "▁board", + -9.19439697265625 + ], + [ + "▁lives", + -9.195076942443848 + ], + [ + "▁sound", + -9.19528865814209 + ], + [ + "▁safe", + -9.195588111877441 + ], + [ + "▁fit", + -9.195625305175781 + ], + [ + "▁morning", + -9.195879936218262 + ], + [ + "▁win", + -9.19729995727539 + ], + [ + "▁goal", + -9.19802188873291 + ], + [ + "▁asked", + -9.198620796203613 + ], + [ + "line", + -9.198872566223145 + ], + [ + "▁decision", + -9.199166297912598 + ], + [ + "▁March", + -9.199612617492676 + ], + [ + "▁chance", + -9.200167655944824 + ], + [ + "▁leading", + -9.201741218566895 + ], + [ + "year", + -9.202603340148926 + ], + [ + "▁types", + -9.204241752624512 + ], + [ + "▁Most", + -9.204442977905273 + ], + [ + "▁West", + -9.207830429077148 + ], + [ + "▁books", + -9.211610794067383 + ], + [ + "▁six", + -9.21499252319336 + ], + [ + "ate", + -9.215577125549316 + ], + [ + "▁Mr", + -9.215926170349121 + ], + [ + "▁road", + -9.215926170349121 + ], + [ + "▁itself", + -9.218199729919434 + ], + [ + "▁looks", + -9.218896865844727 + ], + [ + "://", + -9.219703674316406 + ], + [ + "▁box", + -9.219927787780762 + ], + [ + "▁benefits", + -9.221543312072754 + ], + [ + "▁involved", + -9.221819877624512 + ], + [ + "▁digital", + -9.222074508666992 + ], + [ + "▁link", + -9.224180221557617 + ], + [ + "me", + -9.224647521972656 + ], + [ + ".”", + -9.225759506225586 + ], + [ + "▁multiple", + -9.228203773498535 + ], + [ + "▁write", + -9.229455947875977 + ], + [ + "▁levels", + -9.229984283447266 + ], + [ + "▁walk", + -9.23058032989502 + ], + [ + "▁Many", + -9.230892181396484 + ], + [ + "▁career", + -9.231252670288086 + ], + [ + "▁resources", + -9.231517791748047 + ], + [ + "▁piece", + -9.231843948364258 + ], + [ + "▁national", + -9.231924057006836 + ], + [ + "▁solutions", + -9.23196792602539 + ], + [ + "age", + -9.23199462890625 + ], + [ + "▁word", + -9.23287582397461 + ], + [ + "▁shall", + -9.234130859375 + ], + [ + "▁safety", + -9.23420238494873 + ], + [ + "▁source", + -9.235118865966797 + ], + [ + "▁instead", + -9.235400199890137 + ], + [ + "▁feature", + -9.236014366149902 + ], + [ + "▁America", + -9.236920356750488 + ], + [ + "▁floor", + -9.239631652832031 + ], + [ + "▁parts", + -9.239832878112793 + ], + [ + "▁require", + -9.241966247558594 + ], + [ + "▁directly", + -9.24288272857666 + ], + [ + "▁door", + -9.243388175964355 + ], + [ + "▁Day", + -9.245477676391602 + ], + [ + "▁De", + -9.246062278747559 + ], + [ + "▁countries", + -9.246516227722168 + ], + [ + "▁San", + -9.24660587310791 + ], + [ + "▁daily", + -9.246822357177734 + ], + [ + "▁House", + -9.248001098632812 + ], + [ + "▁Or", + -9.249131202697754 + ], + [ + "▁24", + -9.250081062316895 + ], + [ + "▁themselves", + -9.251884460449219 + ], + [ + "▁Once", + -9.251895904541016 + ], + [ + "▁record", + -9.252947807312012 + ], + [ + "▁photo", + -9.253427505493164 + ], + [ + "▁loss", + -9.255729675292969 + ], + [ + "▁Google", + -9.257352828979492 + ], + [ + "▁worth", + -9.258187294006348 + ], + [ + "▁section", + -9.258322715759277 + ], + [ + "▁legal", + -9.260517120361328 + ], + [ + "▁--", + -9.260839462280273 + ], + [ + "▁develop", + -9.261404991149902 + ], + [ + "▁effect", + -9.261817932128906 + ], + [ + "▁hold", + -9.262033462524414 + ], + [ + "▁17", + -9.262158393859863 + ], + [ + "▁plans", + -9.264090538024902 + ], + [ + "▁written", + -9.264824867248535 + ], + [ + "▁wall", + -9.267130851745605 + ], + [ + "▁attention", + -9.268342018127441 + ], + [ + "▁machine", + -9.268743515014648 + ], + [ + "▁International", + -9.270354270935059 + ], + [ + "land", + -9.271149635314941 + ], + [ + "▁13", + -9.271645545959473 + ], + [ + "▁giving", + -9.273136138916016 + ], + [ + "6", + -9.27349853515625 + ], + [ + "▁First", + -9.273548126220703 + ], + [ + "▁saw", + -9.274171829223633 + ], + [ + "of", + -9.274784088134766 + ], + [ + "▁hot", + -9.274881362915039 + ], + [ + "▁planning", + -9.27517318725586 + ], + [ + "▁method", + -9.275801658630371 + ], + [ + "▁interesting", + -9.277406692504883 + ], + [ + "▁center", + -9.277502059936523 + ], + [ + "▁organization", + -9.278060913085938 + ], + [ + "▁trip", + -9.278867721557617 + ], + [ + "▁late", + -9.278959274291992 + ], + [ + "▁requirements", + -9.279081344604492 + ], + [ + "▁fully", + -9.281445503234863 + ], + [ + "▁fine", + -9.282132148742676 + ], + [ + "▁images", + -9.283768653869629 + ], + [ + "▁track", + -9.285524368286133 + ], + [ + "▁remember", + -9.285715103149414 + ], + [ + "▁cases", + -9.286971092224121 + ], + [ + "▁global", + -9.28806209564209 + ], + [ + "▁players", + -9.288725852966309 + ], + [ + "▁Free", + -9.290414810180664 + ], + [ + "ley", + -9.291790962219238 + ], + [ + "▁answer", + -9.2918701171875 + ], + [ + "▁Thank", + -9.29243278503418 + ], + [ + "▁news", + -9.292574882507324 + ], + [ + "▁moment", + -9.292881965637207 + ], + [ + "▁significant", + -9.293476104736328 + ], + [ + "▁apply", + -9.29391860961914 + ], + [ + "▁land", + -9.294843673706055 + ], + [ + "▁traditional", + -9.294913291931152 + ], + [ + "▁Why", + -9.296874046325684 + ], + [ + "▁town", + -9.297104835510254 + ], + [ + "▁picture", + -9.297224044799805 + ], + [ + "▁reduce", + -9.29838752746582 + ], + [ + "▁myself", + -9.300413131713867 + ], + [ + "▁completely", + -9.30069637298584 + ], + [ + "▁parents", + -9.300724029541016 + ], + [ + "▁huge", + -9.30154037475586 + ], + [ + "▁June", + -9.302245140075684 + ], + [ + "▁lost", + -9.302435874938965 + ], + [ + "▁spend", + -9.303169250488281 + ], + [ + "▁prices", + -9.305388450622559 + ], + [ + "nd", + -9.305922508239746 + ], + [ + "▁decided", + -9.306608200073242 + ], + [ + "est", + -9.307215690612793 + ], + [ + "for", + -9.30757999420166 + ], + [ + "▁tool", + -9.309388160705566 + ], + [ + "▁gives", + -9.310395240783691 + ], + [ + "▁base", + -9.310869216918945 + ], + [ + "▁reach", + -9.311386108398438 + ], + [ + "▁China", + -9.31144905090332 + ], + [ + "▁playing", + -9.316442489624023 + ], + [ + "▁friend", + -9.316913604736328 + ], + [ + "▁Even", + -9.317676544189453 + ], + [ + "ent", + -9.317834854125977 + ], + [ + "▁goes", + -9.318419456481934 + ], + [ + "▁Let", + -9.3193941116333 + ], + [ + "▁High", + -9.319680213928223 + ], + [ + "ies", + -9.319957733154297 + ], + [ + "▁India", + -9.320014953613281 + ], + [ + "ter", + -9.321702003479004 + ], + [ + "▁fresh", + -9.322691917419434 + ], + [ + "▁Go", + -9.322829246520996 + ], + [ + "▁hit", + -9.323325157165527 + ], + [ + "▁bar", + -9.323545455932617 + ], + [ + "▁benefit", + -9.32361125946045 + ], + [ + "▁ground", + -9.324932098388672 + ], + [ + "▁release", + -9.325338363647461 + ], + [ + "▁More", + -9.326334953308105 + ], + [ + "▁watch", + -9.326680183410645 + ], + [ + "▁Since", + -9.327309608459473 + ], + [ + "per", + -9.328938484191895 + ], + [ + "▁creating", + -9.32922077178955 + ], + [ + "▁English", + -9.329340934753418 + ], + [ + "▁pain", + -9.33022689819336 + ], + [ + "▁green", + -9.332656860351562 + ], + [ + "▁photos", + -9.33271312713623 + ], + [ + "um", + -9.33395767211914 + ], + [ + "▁La", + -9.334375381469727 + ], + [ + "▁term", + -9.33472728729248 + ], + [ + "▁client", + -9.336995124816895 + ], + [ + "▁developed", + -9.337542533874512 + ], + [ + "▁limited", + -9.338005065917969 + ], + [ + "▁commercial", + -9.339715003967285 + ], + [ + "▁Are", + -9.341541290283203 + ], + [ + "▁vehicle", + -9.341573715209961 + ], + [ + "▁successful", + -9.343073844909668 + ], + [ + "▁Pro", + -9.345949172973633 + ], + [ + "▁interested", + -9.346083641052246 + ], + [ + "▁storage", + -9.346695899963379 + ], + [ + "▁2019", + -9.34682559967041 + ], + [ + "▁London", + -9.34959602355957 + ], + [ + "▁hear", + -9.350407600402832 + ], + [ + "▁businesses", + -9.351183891296387 + ], + [ + "▁language", + -9.351338386535645 + ], + [ + "▁nature", + -9.352385520935059 + ], + [ + "▁groups", + -9.354498863220215 + ], + [ + "▁fire", + -9.356647491455078 + ], + [ + "▁sign", + -9.35671329498291 + ], + [ + "▁fall", + -9.358816146850586 + ], + [ + "▁construction", + -9.362560272216797 + ], + [ + "▁became", + -9.362632751464844 + ], + [ + "▁Service", + -9.363127708435059 + ], + [ + "▁TV", + -9.365975379943848 + ], + [ + "▁Great", + -9.366936683654785 + ], + [ + "▁thinking", + -9.366996765136719 + ], + [ + "▁Inc", + -9.367522239685059 + ], + [ + "▁request", + -9.367661476135254 + ], + [ + "▁Get", + -9.368447303771973 + ], + [ + "▁Each", + -9.371036529541016 + ], + [ + "▁towards", + -9.371715545654297 + ], + [ + "▁screen", + -9.372406005859375 + ], + [ + "▁Christmas", + -9.372727394104004 + ], + [ + "▁analysis", + -9.372734069824219 + ], + [ + "▁applications", + -9.372931480407715 + ], + [ + "!!", + -9.373116493225098 + ], + [ + "▁wish", + -9.373225212097168 + ], + [ + "▁2017", + -9.374988555908203 + ], + [ + "▁text", + -9.377215385437012 + ], + [ + "▁positive", + -9.378350257873535 + ], + [ + "▁Group", + -9.378418922424316 + ], + [ + "▁wonderful", + -9.379910469055176 + ], + [ + "▁regular", + -9.380145072937012 + ], + [ + "▁began", + -9.38156795501709 + ], + [ + "▁employees", + -9.382294654846191 + ], + [ + "▁pick", + -9.383211135864258 + ], + [ + "▁expected", + -9.383437156677246 + ], + [ + "8", + -9.38380241394043 + ], + [ + "▁physical", + -9.384592056274414 + ], + [ + "▁President", + -9.38503360748291 + ], + [ + "▁helps", + -9.385970115661621 + ], + [ + "▁heat", + -9.386231422424316 + ], + [ + "▁sometimes", + -9.386590003967285 + ], + [ + "▁considered", + -9.387118339538574 + ], + [ + "▁stock", + -9.39021110534668 + ], + [ + "▁message", + -9.390302658081055 + ], + [ + "▁eye", + -9.39039134979248 + ], + [ + "▁situation", + -9.390751838684082 + ], + [ + "▁understanding", + -9.391637802124023 + ], + [ + "▁sites", + -9.392740249633789 + ], + [ + "▁expect", + -9.394837379455566 + ], + [ + "▁plant", + -9.396398544311523 + ], + [ + "▁death", + -9.397340774536133 + ], + [ + "▁40", + -9.397624015808105 + ], + [ + "▁opportunities", + -9.398862838745117 + ], + [ + "▁begin", + -9.39886474609375 + ], + [ + "▁recommend", + -9.399065971374512 + ], + [ + "▁starting", + -9.399394035339355 + ], + [ + "▁guide", + -9.399587631225586 + ], + [ + "▁investment", + -9.399602890014648 + ], + [ + "▁Friday", + -9.40187931060791 + ], + [ + "▁quick", + -9.404631614685059 + ], + [ + "▁seem", + -9.406156539916992 + ], + [ + "▁January", + -9.40654182434082 + ], + [ + "▁definitely", + -9.406693458557129 + ], + [ + "day", + -9.407159805297852 + ], + [ + "▁exactly", + -9.407719612121582 + ], + [ + "▁difference", + -9.408140182495117 + ], + [ + "▁sub", + -9.408438682556152 + ], + [ + "▁healthy", + -9.408604621887207 + ], + [ + "▁grow", + -9.40884017944336 + ], + [ + "▁growing", + -9.408916473388672 + ], + [ + "▁posted", + -9.408958435058594 + ], + [ + "▁moving", + -9.412320137023926 + ], + [ + "▁*", + -9.412421226501465 + ], + [ + "▁break", + -9.412793159484863 + ], + [ + "▁Q", + -9.413464546203613 + ], + [ + "▁July", + -9.41408634185791 + ], + [ + "7", + -9.414834976196289 + ], + [ + "▁damage", + -9.415546417236328 + ], + [ + "▁individuals", + -9.415590286254883 + ], + [ + "▁Health", + -9.415745735168457 + ], + [ + "▁relationship", + -9.41659927368164 + ], + [ + "by", + -9.418608665466309 + ], + [ + "▁region", + -9.419302940368652 + ], + [ + "▁Black", + -9.420015335083008 + ], + [ + "▁speed", + -9.420950889587402 + ], + [ + "he", + -9.421341896057129 + ], + [ + "▁activity", + -9.422382354736328 + ], + [ + "▁function", + -9.424110412597656 + ], + [ + "▁stand", + -9.424229621887207 + ], + [ + "▁hotel", + -9.424729347229004 + ], + [ + "▁previous", + -9.425605773925781 + ], + [ + "▁offering", + -9.425771713256836 + ], + [ + "▁purpose", + -9.427708625793457 + ], + [ + "▁round", + -9.428811073303223 + ], + [ + "▁hands", + -9.429240226745605 + ], + [ + "▁response", + -9.430161476135254 + ], + [ + "▁September", + -9.430964469909668 + ], + [ + "▁pressure", + -9.432123184204102 + ], + [ + "▁platform", + -9.432324409484863 + ], + [ + "▁Well", + -9.432961463928223 + ], + [ + "▁Department", + -9.435503959655762 + ], + [ + "▁al", + -9.435795783996582 + ], + [ + "▁cash", + -9.437275886535645 + ], + [ + "▁hour", + -9.437335968017578 + ], + [ + "▁wait", + -9.43852424621582 + ], + [ + "▁published", + -9.440204620361328 + ], + [ + "▁sent", + -9.441132545471191 + ], + [ + "▁October", + -9.443803787231445 + ], + [ + "▁wood", + -9.444711685180664 + ], + [ + "▁multi", + -9.445110321044922 + ], + [ + "▁felt", + -9.447205543518066 + ], + [ + "▁wrong", + -9.447492599487305 + ], + [ + "ary", + -9.44788646697998 + ], + [ + "We", + -9.448989868164062 + ], + [ + "U", + -9.451055526733398 + ], + [ + "▁internet", + -9.451205253601074 + ], + [ + "▁goals", + -9.45160961151123 + ], + [ + "▁join", + -9.452970504760742 + ], + [ + "▁Facebook", + -9.454876899719238 + ], + [ + "▁match", + -9.45500373840332 + ], + [ + "▁entry", + -9.455023765563965 + ], + [ + "▁shop", + -9.455121040344238 + ], + [ + "▁serve", + -9.456490516662598 + ], + [ + "▁21", + -9.456711769104004 + ], + [ + "▁California", + -9.457929611206055 + ], + [ + "we", + -9.458756446838379 + ], + [ + "+", + -9.460139274597168 + ], + [ + "▁surface", + -9.46033763885498 + ], + [ + "▁unit", + -9.461697578430176 + ], + [ + "▁budget", + -9.464149475097656 + ], + [ + "▁Sunday", + -9.46504020690918 + ], + [ + "▁touch", + -9.465341567993164 + ], + [ + "9", + -9.465456008911133 + ], + [ + "▁display", + -9.466012954711914 + ], + [ + "▁culture", + -9.467117309570312 + ], + [ + "▁cool", + -9.468549728393555 + ], + [ + "▁blood", + -9.471626281738281 + ], + [ + "▁stage", + -9.472803115844727 + ], + [ + "▁gift", + -9.473905563354492 + ], + [ + "▁families", + -9.474701881408691 + ], + [ + "▁essential", + -9.4757080078125 + ], + [ + "▁paid", + -9.476698875427246 + ], + [ + "▁double", + -9.476822853088379 + ], + [ + "▁charge", + -9.478729248046875 + ], + [ + "▁easier", + -9.47915267944336 + ], + [ + "ive", + -9.479597091674805 + ], + [ + "▁feeling", + -9.483046531677246 + ], + [ + "▁Saturday", + -9.48396110534668 + ], + [ + "▁places", + -9.484292984008789 + ], + [ + "▁political", + -9.485857963562012 + ], + [ + "▁war", + -9.486143112182617 + ], + [ + "▁Al", + -9.489116668701172 + ], + [ + "▁December", + -9.489496231079102 + ], + [ + "▁advice", + -9.489534378051758 + ], + [ + "▁dog", + -9.489654541015625 + ], + [ + "▁beginning", + -9.48972225189209 + ], + [ + "▁direct", + -9.490886688232422 + ], + [ + "▁court", + -9.490965843200684 + ], + [ + "▁supply", + -9.491926193237305 + ], + [ + "▁trade", + -9.492326736450195 + ], + [ + "▁Services", + -9.492805480957031 + ], + [ + "▁Good", + -9.493297576904297 + ], + [ + "▁deep", + -9.49401569366455 + ], + [ + "▁happen", + -9.49458122253418 + ], + [ + "▁avoid", + -9.495729446411133 + ], + [ + "▁offered", + -9.4957857131958 + ], + [ + "▁setting", + -9.496121406555176 + ], + [ + "▁super", + -9.496638298034668 + ], + [ + "▁Make", + -9.496761322021484 + ], + [ + "▁basis", + -9.496883392333984 + ], + [ + "▁basic", + -9.496908187866211 + ], + [ + "▁active", + -9.497095108032227 + ], + [ + "▁former", + -9.497682571411133 + ], + [ + "▁delivery", + -9.497973442077637 + ], + [ + "▁degree", + -9.49820327758789 + ], + [ + "go", + -9.498677253723145 + ], + [ + "▁rates", + -9.498805046081543 + ], + [ + "▁pro", + -9.49893856048584 + ], + [ + "▁glass", + -9.49919319152832 + ], + [ + "▁2016", + -9.500511169433594 + ], + [ + "▁certainly", + -9.500815391540527 + ], + [ + "▁experienced", + -9.504364013671875 + ], + [ + "▁spent", + -9.505784034729004 + ], + [ + "▁gave", + -9.505854606628418 + ], + [ + "▁devices", + -9.507173538208008 + ], + [ + "▁select", + -9.507476806640625 + ], + [ + "▁rights", + -9.507742881774902 + ], + [ + "▁loved", + -9.508367538452148 + ], + [ + "end", + -9.508548736572266 + ], + [ + "▁overall", + -9.50879955291748 + ], + [ + "▁November", + -9.509913444519043 + ], + [ + "▁ideal", + -9.511178970336914 + ], + [ + "▁custom", + -9.511537551879883 + ], + [ + "▁condition", + -9.511834144592285 + ], + [ + "▁released", + -9.512720108032227 + ], + [ + "▁led", + -9.51290512084961 + ], + [ + "▁eat", + -9.513214111328125 + ], + [ + "if", + -9.51331901550293 + ], + [ + "▁Although", + -9.514365196228027 + ], + [ + "▁economic", + -9.514951705932617 + ], + [ + "▁Best", + -9.516215324401855 + ], + [ + "▁Z", + -9.516557693481445 + ], + [ + "▁College", + -9.516704559326172 + ], + [ + "▁feet", + -9.51697826385498 + ], + [ + "ke", + -9.518173217773438 + ], + [ + "▁Click", + -9.518372535705566 + ], + [ + "▁firm", + -9.518844604492188 + ], + [ + "▁Company", + -9.518896102905273 + ], + [ + "▁wedding", + -9.519343376159668 + ], + [ + "▁regarding", + -9.519749641418457 + ], + [ + "▁European", + -9.520121574401855 + ], + [ + "▁comfortable", + -9.520509719848633 + ], + [ + "▁tried", + -9.520563125610352 + ], + [ + "▁THE", + -9.520697593688965 + ], + [ + "▁sell", + -9.52305793762207 + ], + [ + "▁truly", + -9.523462295532227 + ], + [ + "▁Her", + -9.525137901306152 + ], + [ + "▁finish", + -9.52565860748291 + ], + [ + "old", + -9.527908325195312 + ], + [ + "ting", + -9.528334617614746 + ], + [ + "▁August", + -9.528434753417969 + ], + [ + "▁patient", + -9.528691291809082 + ], + [ + "▁note", + -9.529327392578125 + ], + [ + "▁existing", + -9.529706954956055 + ], + [ + "▁pictures", + -9.529902458190918 + ], + [ + "▁associated", + -9.530941009521484 + ], + [ + "▁shown", + -9.531280517578125 + ], + [ + "▁effects", + -9.531970024108887 + ], + [ + "▁produce", + -9.532916069030762 + ], + [ + "▁beyond", + -9.534292221069336 + ], + [ + "▁stories", + -9.535327911376953 + ], + [ + "▁pages", + -9.536358833312988 + ], + [ + "un", + -9.536849021911621 + ], + [ + "▁weather", + -9.537928581237793 + ], + [ + "▁heard", + -9.538393020629883 + ], + [ + "▁college", + -9.53894329071045 + ], + [ + "▁player", + -9.539115905761719 + ], + [ + "▁bed", + -9.539255142211914 + ], + [ + "▁East", + -9.539345741271973 + ], + [ + "▁baby", + -9.540112495422363 + ], + [ + "▁payment", + -9.540736198425293 + ], + [ + "▁weekend", + -9.542167663574219 + ], + [ + "▁protection", + -9.543136596679688 + ], + [ + "▁brought", + -9.544039726257324 + ], + [ + "▁played", + -9.546667098999023 + ], + [ + "▁highest", + -9.546773910522461 + ], + [ + "▁effort", + -9.547079086303711 + ], + [ + "▁Business", + -9.547941207885742 + ], + [ + "▁gas", + -9.548325538635254 + ], + [ + "▁structure", + -9.549692153930664 + ], + [ + "▁increased", + -9.550155639648438 + ], + [ + "▁appropriate", + -9.550557136535645 + ], + [ + "▁Check", + -9.550895690917969 + ], + [ + "▁maintain", + -9.5514497756958 + ], + [ + "▁selection", + -9.552355766296387 + ], + [ + "▁See", + -9.552391052246094 + ], + [ + "▁character", + -9.553130149841309 + ], + [ + "▁Street", + -9.553743362426758 + ], + [ + "▁claim", + -9.553776741027832 + ], + [ + "▁responsible", + -9.555275917053223 + ], + [ + "den", + -9.556777000427246 + ], + [ + "▁Windows", + -9.556818962097168 + ], + [ + "▁useful", + -9.55700397491455 + ], + [ + "▁Internet", + -9.558170318603516 + ], + [ + "▁Jesus", + -9.558210372924805 + ], + [ + "ization", + -9.558409690856934 + ], + [ + "▁bottom", + -9.558867454528809 + ], + [ + "der", + -9.55932903289795 + ], + [ + "▁creative", + -9.559764862060547 + ], + [ + "▁Car", + -9.560714721679688 + ], + [ + "off", + -9.56088638305664 + ], + [ + "▁largest", + -9.56129264831543 + ], + [ + "▁challenge", + -9.563684463500977 + ], + [ + "▁prior", + -9.564576148986816 + ], + [ + "▁pass", + -9.564720153808594 + ], + [ + "▁#", + -9.565264701843262 + ], + [ + "▁gold", + -9.566324234008789 + ], + [ + "▁achieve", + -9.566329956054688 + ], + [ + "▁completed", + -9.566672325134277 + ], + [ + "▁disease", + -9.566812515258789 + ], + [ + "▁particularly", + -9.568608283996582 + ], + [ + "▁remove", + -9.569610595703125 + ], + [ + "▁income", + -9.569735527038574 + ], + [ + "▁born", + -9.570405006408691 + ], + [ + "▁race", + -9.570931434631348 + ], + [ + "▁manage", + -9.570953369140625 + ], + [ + "▁stuff", + -9.571036338806152 + ], + [ + "▁coffee", + -9.572113037109375 + ], + [ + "▁schools", + -9.572396278381348 + ], + [ + "▁immediately", + -9.572929382324219 + ], + [ + "▁complex", + -9.57411003112793 + ], + [ + "®", + -9.574625968933105 + ], + [ + "▁repair", + -9.57618522644043 + ], + [ + "▁window", + -9.576993942260742 + ], + [ + "▁Today", + -9.577311515808105 + ], + [ + "▁blue", + -9.578078269958496 + ], + [ + "▁normal", + -9.578367233276367 + ], + [ + "▁warm", + -9.578536987304688 + ], + [ + "▁Use", + -9.578614234924316 + ], + [ + "▁journey", + -9.579440116882324 + ], + [ + "▁Canada", + -9.579506874084473 + ], + [ + "▁Europe", + -9.580268859863281 + ], + [ + "▁annual", + -9.580464363098145 + ], + [ + "▁determine", + -9.582685470581055 + ], + [ + "▁1.", + -9.583944320678711 + ], + [ + "▁estate", + -9.58590030670166 + ], + [ + "▁movie", + -9.586865425109863 + ], + [ + "▁Y", + -9.587899208068848 + ], + [ + "▁White", + -9.589080810546875 + ], + [ + "▁helping", + -9.58942699432373 + ], + [ + "▁strategy", + -9.589680671691895 + ], + [ + "▁Air", + -9.589997291564941 + ], + [ + "▁finally", + -9.59005355834961 + ], + [ + "▁files", + -9.590112686157227 + ], + [ + "▁extremely", + -9.590832710266113 + ], + [ + "▁powerful", + -9.592329978942871 + ], + [ + "▁lots", + -9.592733383178711 + ], + [ + "ha", + -9.592814445495605 + ], + [ + "▁item", + -9.594285011291504 + ], + [ + "▁protect", + -9.594301223754883 + ], + [ + "▁engine", + -9.596100807189941 + ], + [ + "▁garden", + -9.59847354888916 + ], + [ + "▁maybe", + -9.599095344543457 + ], + [ + "▁studies", + -9.600274085998535 + ], + [ + "▁eyes", + -9.600497245788574 + ], + [ + "▁plus", + -9.600692749023438 + ], + [ + "▁Red", + -9.601607322692871 + ], + [ + "▁Yes", + -9.601934432983398 + ], + [ + "▁evidence", + -9.60414981842041 + ], + [ + "▁tour", + -9.605339050292969 + ], + [ + "▁Because", + -9.606267929077148 + ], + [ + "▁Have", + -9.607072830200195 + ], + [ + "▁Art", + -9.607706069946289 + ], + [ + "▁wasn", + -9.60791015625 + ], + [ + "▁furniture", + -9.608010292053223 + ], + [ + "ally", + -9.608295440673828 + ], + [ + "▁mother", + -9.60889720916748 + ], + [ + "▁February", + -9.610000610351562 + ], + [ + "▁bank", + -9.610304832458496 + ], + [ + "▁|", + -9.611578941345215 + ], + [ + "ized", + -9.612539291381836 + ], + [ + "▁changed", + -9.61376667022705 + ], + [ + "▁19", + -9.614890098571777 + ], + [ + "▁thanks", + -9.61651611328125 + ], + [ + "▁Act", + -9.61662483215332 + ], + [ + "▁button", + -9.616703033447266 + ], + [ + "▁science", + -9.61721134185791 + ], + [ + "▁campaign", + -9.619575500488281 + ], + [ + "▁Green", + -9.6199312210083 + ], + [ + "▁dry", + -9.6204252243042 + ], + [ + "▁church", + -9.620695114135742 + ], + [ + "▁wear", + -9.622396469116211 + ], + [ + "▁knew", + -9.62328052520752 + ], + [ + "▁60", + -9.623727798461914 + ], + [ + "▁Me", + -9.623906135559082 + ], + [ + "▁prevent", + -9.624055862426758 + ], + [ + "▁trust", + -9.624703407287598 + ], + [ + "▁soft", + -9.624740600585938 + ], + [ + "▁Australia", + -9.62661361694336 + ], + [ + "▁compared", + -9.627198219299316 + ], + [ + "▁reasons", + -9.627425193786621 + ], + [ + "▁Man", + -9.627469062805176 + ], + [ + "▁Over", + -9.62793254852295 + ], + [ + "▁turned", + -9.628154754638672 + ], + [ + "▁Board", + -9.629225730895996 + ], + [ + "▁nearly", + -9.62981128692627 + ], + [ + "▁saying", + -9.630023002624512 + ], + [ + "▁Monday", + -9.630196571350098 + ], + [ + "▁served", + -9.63156509399414 + ], + [ + "▁greater", + -9.632061958312988 + ], + [ + "▁Design", + -9.632184028625488 + ], + [ + "▁pool", + -9.6322660446167 + ], + [ + "ge", + -9.63394832611084 + ], + [ + "▁War", + -9.634578704833984 + ], + [ + "▁ones", + -9.6346435546875 + ], + [ + "▁cold", + -9.634673118591309 + ], + [ + "▁reported", + -9.635139465332031 + ], + [ + "▁deliver", + -9.635981559753418 + ], + [ + "▁author", + -9.637428283691406 + ], + [ + "▁During", + -9.637823104858398 + ], + [ + "▁camera", + -9.637971878051758 + ], + [ + "▁•", + -9.638399124145508 + ], + [ + "uk", + -9.638846397399902 + ], + [ + "▁connection", + -9.640917778015137 + ], + [ + "▁sun", + -9.64108943939209 + ], + [ + "▁methods", + -9.641229629516602 + ], + [ + "▁partner", + -9.641362190246582 + ], + [ + "term", + -9.642053604125977 + ], + [ + "▁Association", + -9.642766952514648 + ], + [ + "▁Council", + -9.644166946411133 + ], + [ + "▁explore", + -9.644794464111328 + ], + [ + "▁models", + -9.644796371459961 + ], + [ + "▁band", + -9.64654541015625 + ], + [ + "▁sea", + -9.647100448608398 + ], + [ + "▁established", + -9.64832592010498 + ], + [ + "▁anti", + -9.648747444152832 + ], + [ + "▁lines", + -9.648785591125488 + ], + [ + "▁dis", + -9.648862838745117 + ], + [ + "▁agree", + -9.650550842285156 + ], + [ + "\".", + -9.651904106140137 + ], + [ + "▁son", + -9.651946067810059 + ], + [ + "▁pieces", + -9.652114868164062 + ], + [ + "▁balance", + -9.652120590209961 + ], + [ + "▁allowed", + -9.652288436889648 + ], + [ + "▁lack", + -9.652432441711426 + ], + [ + "▁cancer", + -9.652693748474121 + ], + [ + "▁title", + -9.653694152832031 + ], + [ + "lin", + -9.654731750488281 + ], + [ + "Y", + -9.654882431030273 + ], + [ + "▁larger", + -9.655251502990723 + ], + [ + "▁although", + -9.655627250671387 + ], + [ + "▁rules", + -9.65631103515625 + ], + [ + "▁alone", + -9.658210754394531 + ], + [ + "▁middle", + -9.658668518066406 + ], + [ + "▁helped", + -9.659010887145996 + ], + [ + "▁cards", + -9.65928840637207 + ], + [ + "▁communication", + -9.659754753112793 + ], + [ + "▁letter", + -9.660452842712402 + ], + [ + "▁2015", + -9.660874366760254 + ], + [ + "▁Office", + -9.66187858581543 + ], + [ + "▁sharing", + -9.662210464477539 + ], + [ + "▁welcome", + -9.662674903869629 + ], + [ + "”.", + -9.663086891174316 + ], + [ + "▁miles", + -9.663359642028809 + ], + [ + "@", + -9.664461135864258 + ], + [ + "ex", + -9.666608810424805 + ], + [ + "10", + -9.667344093322754 + ], + [ + "▁schedule", + -9.668607711791992 + ], + [ + "▁steps", + -9.669349670410156 + ], + [ + "▁sports", + -9.669713973999023 + ], + [ + "▁David", + -9.670975685119629 + ], + [ + "men", + -9.671329498291016 + ], + [ + "▁assist", + -9.671467781066895 + ], + [ + "▁Research", + -9.672443389892578 + ], + [ + "Z", + -9.673846244812012 + ], + [ + "▁ahead", + -9.674726486206055 + ], + [ + "▁spot", + -9.674824714660645 + ], + [ + "▁sleep", + -9.67587661743164 + ], + [ + "ner", + -9.676437377929688 + ], + [ + "▁Bar", + -9.676690101623535 + ], + [ + "▁driving", + -9.677116394042969 + ], + [ + "▁dark", + -9.677383422851562 + ], + [ + "org", + -9.6781644821167 + ], + [ + "▁Take", + -9.67818546295166 + ], + [ + "▁correct", + -9.678339958190918 + ], + [ + "▁steel", + -9.679618835449219 + ], + [ + "▁wine", + -9.681408882141113 + ], + [ + "▁uses", + -9.683541297912598 + ], + [ + "▁requires", + -9.683853149414062 + ], + [ + "▁print", + -9.684867858886719 + ], + [ + "ful", + -9.685938835144043 + ], + [ + "▁announced", + -9.686511039733887 + ], + [ + "▁tips", + -9.686777114868164 + ], + [ + "▁official", + -9.687578201293945 + ], + [ + "▁sold", + -9.688239097595215 + ], + [ + "▁serious", + -9.689345359802246 + ], + [ + "▁finished", + -9.689525604248047 + ], + [ + "▁numbers", + -9.690775871276855 + ], + [ + "▁states", + -9.690860748291016 + ], + [ + "▁handle", + -9.69128704071045 + ], + [ + "▁notice", + -9.691341400146484 + ], + [ + "▁police", + -9.691668510437012 + ], + [ + "▁task", + -9.692197799682617 + ], + [ + "▁voice", + -9.692268371582031 + ], + [ + "▁Le", + -9.692346572875977 + ], + [ + "▁traffic", + -9.692519187927246 + ], + [ + "▁earlier", + -9.693236351013184 + ], + [ + "▁technical", + -9.694053649902344 + ], + [ + "▁moved", + -9.694284439086914 + ], + [ + "▁owner", + -9.694452285766602 + ], + [ + "▁+", + -9.695082664489746 + ], + [ + "▁enter", + -9.695198059082031 + ], + [ + "▁According", + -9.696305274963379 + ], + [ + "▁advantage", + -9.696572303771973 + ], + [ + "▁cell", + -9.696843147277832 + ], + [ + "▁reports", + -9.697530746459961 + ], + [ + "▁update", + -9.698811531066895 + ], + [ + "▁met", + -9.699640274047852 + ], + [ + "▁woman", + -9.699846267700195 + ], + [ + "▁metal", + -9.701354026794434 + ], + [ + "▁covered", + -9.70140266418457 + ], + [ + "▁fish", + -9.701424598693848 + ], + [ + "net", + -9.70166301727295 + ], + [ + "▁appear", + -9.701854705810547 + ], + [ + "▁act", + -9.702134132385254 + ], + [ + "▁Paul", + -9.702349662780762 + ], + [ + "▁winter", + -9.704164505004883 + ], + [ + "▁primary", + -9.70421314239502 + ], + [ + "▁ball", + -9.704626083374023 + ], + [ + "▁22", + -9.704702377319336 + ], + [ + "▁carry", + -9.704874038696289 + ], + [ + "▁generally", + -9.70541763305664 + ], + [ + "▁drop", + -9.707053184509277 + ], + [ + "▁reviews", + -9.707816123962402 + ], + [ + "▁cleaning", + -9.709331512451172 + ], + [ + "▁sweet", + -9.710494995117188 + ], + [ + "▁target", + -9.711882591247559 + ], + [ + "▁capital", + -9.713027000427246 + ], + [ + "▁father", + -9.713884353637695 + ], + [ + "Q", + -9.713934898376465 + ], + [ + "▁experts", + -9.714544296264648 + ], + [ + "▁flow", + -9.714903831481934 + ], + [ + "▁remain", + -9.71496868133545 + ], + [ + "▁Any", + -9.715194702148438 + ], + [ + "▁tree", + -9.716161727905273 + ], + [ + "▁onto", + -9.717287063598633 + ], + [ + "▁path", + -9.717631340026855 + ], + [ + "▁shape", + -9.71790599822998 + ], + [ + "▁shopping", + -9.717964172363281 + ], + [ + "▁sort", + -9.718622207641602 + ], + [ + "▁teaching", + -9.718981742858887 + ], + [ + "▁looked", + -9.719220161437988 + ], + [ + "▁finding", + -9.7195463180542 + ], + [ + "▁Court", + -9.72068977355957 + ], + [ + "▁followed", + -9.720962524414062 + ], + [ + "▁holiday", + -9.722349166870117 + ], + [ + "▁cross", + -9.722433090209961 + ], + [ + "▁critical", + -9.72286319732666 + ], + [ + "▁efforts", + -9.723050117492676 + ], + [ + "▁respect", + -9.723258972167969 + ], + [ + "ating", + -9.72330093383789 + ], + [ + "▁actual", + -9.723430633544922 + ], + [ + "▁opening", + -9.724775314331055 + ], + [ + "side", + -9.725083351135254 + ], + [ + "▁views", + -9.726024627685547 + ], + [ + "▁park", + -9.726167678833008 + ], + [ + "back", + -9.72644329071045 + ], + [ + "▁teams", + -9.727733612060547 + ], + [ + "▁People", + -9.728370666503906 + ], + [ + "▁Add", + -9.728717803955078 + ], + [ + "free", + -9.72989559173584 + ], + [ + "▁server", + -9.73077392578125 + ], + [ + "▁therefore", + -9.731337547302246 + ], + [ + "▁Whether", + -9.731669425964355 + ], + [ + "▁mid", + -9.732162475585938 + ], + [ + "▁Another", + -9.7322359085083 + ], + [ + "▁Love", + -9.732422828674316 + ], + [ + "▁fill", + -9.732921600341797 + ], + [ + "▁Call", + -9.733405113220215 + ], + [ + "▁2.", + -9.733539581298828 + ], + [ + "▁organizations", + -9.733957290649414 + ], + [ + "▁perhaps", + -9.734700202941895 + ], + [ + "▁comfort", + -9.736032485961914 + ], + [ + "▁session", + -9.736299514770508 + ], + [ + "▁French", + -9.736489295959473 + ], + [ + "▁movement", + -9.73668098449707 + ], + [ + "▁loan", + -9.736740112304688 + ], + [ + "▁friendly", + -9.737281799316406 + ], + [ + "▁secure", + -9.737504005432129 + ], + [ + "▁stress", + -9.738334655761719 + ], + [ + "▁Club", + -9.73897933959961 + ], + [ + "▁advanced", + -9.739727020263672 + ], + [ + "▁dedicated", + -9.739786148071289 + ], + [ + "▁background", + -9.740192413330078 + ], + [ + "▁gets", + -9.740865707397461 + ], + [ + "▁elements", + -9.740891456604004 + ], + [ + "▁shared", + -9.743027687072754 + ], + [ + "▁force", + -9.743499755859375 + ], + [ + "▁Will", + -9.743979454040527 + ], + [ + "▁classic", + -9.745373725891113 + ], + [ + "▁River", + -9.74624252319336 + ], + [ + "▁billion", + -9.74631118774414 + ], + [ + "ated", + -9.746625900268555 + ], + [ + "▁copy", + -9.747743606567383 + ], + [ + "ca", + -9.747756958007812 + ], + [ + "▁parties", + -9.748046875 + ], + [ + "▁developing", + -9.748785018920898 + ], + [ + "▁statement", + -9.749634742736816 + ], + [ + "▁himself", + -9.750357627868652 + ], + [ + "▁standards", + -9.750587463378906 + ], + [ + "ill", + -9.75163459777832 + ], + [ + "▁talking", + -9.752769470214844 + ], + [ + "▁perform", + -9.753454208374023 + ], + [ + "▁professionals", + -9.755060195922852 + ], + [ + "▁jobs", + -9.755096435546875 + ], + [ + "▁population", + -9.755128860473633 + ], + [ + "▁club", + -9.755621910095215 + ], + [ + "▁Management", + -9.755870819091797 + ], + [ + "▁contract", + -9.755931854248047 + ], + [ + "▁challenges", + -9.756233215332031 + ], + [ + "▁host", + -9.756597518920898 + ], + [ + "▁Web", + -9.756776809692383 + ], + [ + "▁song", + -9.757061958312988 + ], + [ + "▁audience", + -9.757803916931152 + ], + [ + "pm", + -9.758549690246582 + ], + [ + "▁contains", + -9.758915901184082 + ], + [ + "▁facilities", + -9.759045600891113 + ], + [ + "▁memory", + -9.759801864624023 + ], + [ + "▁Washington", + -9.760104179382324 + ], + [ + "▁demand", + -9.762336730957031 + ], + [ + "▁cells", + -9.762579917907715 + ], + [ + "▁foot", + -9.762819290161133 + ], + [ + "▁exercise", + -9.762832641601562 + ], + [ + "▁solid", + -9.762999534606934 + ], + [ + "▁Other", + -9.763907432556152 + ], + [ + "▁listed", + -9.76391887664795 + ], + [ + "ster", + -9.764617919921875 + ], + [ + "▁spring", + -9.765630722045898 + ], + [ + "q", + -9.765999794006348 + ], + [ + "▁whose", + -9.766495704650879 + ], + [ + "ted", + -9.766958236694336 + ], + [ + "▁British", + -9.767172813415527 + ], + [ + "▁transfer", + -9.768298149108887 + ], + [ + "▁speak", + -9.768956184387207 + ], + [ + "▁colors", + -9.769484519958496 + ], + [ + "▁maintenance", + -9.769979476928711 + ], + [ + "▁presented", + -9.770581245422363 + ], + [ + "▁homes", + -9.77097225189209 + ], + [ + "▁produced", + -9.77100944519043 + ], + [ + "▁separate", + -9.7714204788208 + ], + [ + "▁discuss", + -9.772380828857422 + ], + [ + "▁Lake", + -9.773412704467773 + ], + [ + "▁Find", + -9.773578643798828 + ], + [ + "▁properties", + -9.774148941040039 + ], + [ + "▁selected", + -9.775176048278809 + ], + [ + "▁Every", + -9.776983261108398 + ], + [ + "▁heavy", + -9.777278900146484 + ], + [ + "▁plenty", + -9.77881145477295 + ], + [ + "▁mix", + -9.779882431030273 + ], + [ + "▁seven", + -9.781065940856934 + ], + [ + "▁fan", + -9.781076431274414 + ], + [ + "▁Hi", + -9.781251907348633 + ], + [ + "▁relevant", + -9.78257942199707 + ], + [ + "▁factors", + -9.78286361694336 + ], + [ + "▁wife", + -9.782888412475586 + ], + [ + "▁seeing", + -9.783754348754883 + ], + [ + "▁flat", + -9.783839225769043 + ], + [ + "▁learned", + -9.78433609008789 + ], + [ + "▁techniques", + -9.784878730773926 + ], + [ + "▁2014", + -9.786993026733398 + ], + [ + "▁comments", + -9.787418365478516 + ], + [ + "▁Florida", + -9.78748607635498 + ], + [ + "▁driver", + -9.787717819213867 + ], + [ + "▁couldn", + -9.787945747375488 + ], + [ + "▁thank", + -9.788562774658203 + ], + [ + "www", + -9.7886323928833 + ], + [ + "▁Road", + -9.788649559020996 + ], + [ + "▁placed", + -9.788715362548828 + ], + [ + "▁values", + -9.788780212402344 + ], + [ + "wood", + -9.790103912353516 + ], + [ + "▁General", + -9.79093074798584 + ], + [ + "▁fee", + -9.791122436523438 + ], + [ + "▁testing", + -9.791715621948242 + ], + [ + "▁evening", + -9.791890144348145 + ], + [ + "▁classes", + -9.793770790100098 + ], + [ + "▁buying", + -9.795112609863281 + ], + [ + "▁leaders", + -9.795304298400879 + ], + [ + "▁capacity", + -9.797255516052246 + ], + [ + "▁gain", + -9.797322273254395 + ], + [ + "▁Open", + -9.798030853271484 + ], + [ + "▁Life", + -9.798059463500977 + ], + [ + "▁communities", + -9.798772811889648 + ], + [ + "▁Institute", + -9.798894882202148 + ], + [ + "ier", + -9.799235343933105 + ], + [ + "▁keeping", + -9.800376892089844 + ], + [ + "▁brain", + -9.801084518432617 + ], + [ + "▁century", + -9.801430702209473 + ], + [ + "▁guests", + -9.801506996154785 + ], + [ + "▁status", + -9.801998138427734 + ], + [ + "▁Un", + -9.802183151245117 + ], + [ + "▁Con", + -9.802231788635254 + ], + [ + "▁waste", + -9.802892684936523 + ], + [ + "▁plants", + -9.802970886230469 + ], + [ + "ler", + -9.804646492004395 + ], + [ + "▁Apple", + -9.804654121398926 + ], + [ + "way", + -9.804691314697266 + ], + [ + "é", + -9.80516242980957 + ], + [ + "▁IT", + -9.805469512939453 + ], + [ + "▁named", + -9.807135581970215 + ], + [ + "▁famous", + -9.80876636505127 + ], + [ + "▁accept", + -9.809378623962402 + ], + [ + "▁figure", + -9.8093900680542 + ], + [ + "▁husband", + -9.810198783874512 + ], + [ + "▁installation", + -9.810410499572754 + ], + [ + "▁package", + -9.810551643371582 + ], + [ + "▁Mar", + -9.812118530273438 + ], + [ + "ance", + -9.812378883361816 + ], + [ + "▁competition", + -9.812416076660156 + ], + [ + "ten", + -9.812500953674316 + ], + [ + "▁director", + -9.814188003540039 + ], + [ + "▁prepared", + -9.814440727233887 + ], + [ + "▁conference", + -9.815613746643066 + ], + [ + "▁Christ", + -9.816632270812988 + ], + [ + "▁kept", + -9.816974639892578 + ], + [ + "▁bathroom", + -9.817850112915039 + ], + [ + "▁restaurant", + -9.818136215209961 + ], + [ + "▁comment", + -9.81861400604248 + ], + [ + "▁adding", + -9.8190279006958 + ], + [ + "▁funds", + -9.819427490234375 + ], + [ + "▁plastic", + -9.819793701171875 + ], + [ + "▁combination", + -9.82044506072998 + ], + [ + "▁biggest", + -9.820446014404297 + ], + [ + "▁shot", + -9.820455551147461 + ], + [ + "TM", + -9.820956230163574 + ], + [ + "▁decide", + -9.821073532104492 + ], + [ + "▁gone", + -9.822918891906738 + ], + [ + "▁dream", + -9.822931289672852 + ], + [ + "▁sector", + -9.822944641113281 + ], + [ + "▁direction", + -9.822969436645508 + ], + [ + "▁score", + -9.823592185974121 + ], + [ + "▁operations", + -9.82374095916748 + ], + [ + "▁helpful", + -9.82380199432373 + ], + [ + "▁operating", + -9.823887825012207 + ], + [ + "▁connect", + -9.823890686035156 + ], + [ + "▁Church", + -9.824389457702637 + ], + [ + "▁links", + -9.824673652648926 + ], + [ + "▁http", + -9.82490062713623 + ], + [ + "▁temperature", + -9.825087547302246 + ], + [ + "▁aware", + -9.825821876525879 + ], + [ + "▁core", + -9.826136589050293 + ], + [ + "▁concept", + -9.826398849487305 + ], + [ + "▁owners", + -9.829132080078125 + ], + [ + "▁initial", + -9.82948112487793 + ], + [ + "▁rich", + -9.830265998840332 + ], + [ + "▁visitors", + -9.83056640625 + ], + [ + "▁Texas", + -9.83080768585205 + ], + [ + "▁outdoor", + -9.83080768585205 + ], + [ + "▁ten", + -9.830838203430176 + ], + [ + "▁straight", + -9.830862045288086 + ], + [ + "▁mission", + -9.830923080444336 + ], + [ + "like", + -9.83272933959961 + ], + [ + "▁meaning", + -9.833927154541016 + ], + [ + "▁star", + -9.834000587463379 + ], + [ + "▁dinner", + -9.834382057189941 + ], + [ + "▁smaller", + -9.834567070007324 + ], + [ + "▁taste", + -9.835326194763184 + ], + [ + "▁expert", + -9.835617065429688 + ], + [ + "▁ice", + -9.836307525634766 + ], + [ + "▁strength", + -9.836614608764648 + ], + [ + "▁Post", + -9.837287902832031 + ], + [ + "▁Two", + -9.837631225585938 + ], + [ + "▁rooms", + -9.838598251342773 + ], + [ + "▁coverage", + -9.83911418914795 + ], + [ + "field", + -9.839794158935547 + ], + [ + "▁Bay", + -9.839832305908203 + ], + [ + "▁Thursday", + -9.84040355682373 + ], + [ + "▁map", + -9.84114933013916 + ], + [ + "▁vision", + -9.84181022644043 + ], + [ + "▁proper", + -9.842058181762695 + ], + [ + "ou", + -9.842243194580078 + ], + [ + "led", + -9.84225082397461 + ], + [ + "▁experiences", + -9.843277931213379 + ], + [ + "▁master", + -9.844053268432617 + ], + [ + "ver", + -9.844342231750488 + ], + [ + "▁medium", + -9.84437084197998 + ], + [ + "▁Water", + -9.844420433044434 + ], + [ + "▁numerous", + -9.844780921936035 + ], + [ + "han", + -9.844935417175293 + ], + [ + "▁sugar", + -9.845430374145508 + ], + [ + "▁tend", + -9.845702171325684 + ], + [ + "▁progress", + -9.846319198608398 + ], + [ + "▁press", + -9.84642219543457 + ], + [ + "▁essay", + -9.84807014465332 + ], + [ + "▁leader", + -9.848640441894531 + ], + [ + "▁23", + -9.848678588867188 + ], + [ + "▁Who", + -9.848864555358887 + ], + [ + "▁block", + -9.848992347717285 + ], + [ + "▁economy", + -9.849109649658203 + ], + [ + "▁military", + -9.849132537841797 + ], + [ + "over", + -9.849180221557617 + ], + [ + "▁waiting", + -9.849353790283203 + ], + [ + "▁beach", + -9.84970760345459 + ], + [ + "▁forms", + -9.85045337677002 + ], + [ + "▁bag", + -9.850504875183105 + ], + [ + "▁workers", + -9.851945877075195 + ], + [ + "▁Bank", + -9.85210132598877 + ], + [ + "▁older", + -9.852228164672852 + ], + [ + "▁Chinese", + -9.852956771850586 + ], + [ + "▁length", + -9.853474617004395 + ], + [ + "▁central", + -9.853681564331055 + ], + [ + "▁society", + -9.854039192199707 + ], + [ + "▁James", + -9.85405158996582 + ], + [ + "▁drug", + -9.854167938232422 + ], + [ + "▁reality", + -9.854558944702148 + ], + [ + "▁award", + -9.854920387268066 + ], + [ + "▁street", + -9.855208396911621 + ], + [ + "▁seek", + -9.85525131225586 + ], + [ + "▁promote", + -9.856552124023438 + ], + [ + "▁Mac", + -9.856589317321777 + ], + [ + "▁casino", + -9.856839179992676 + ], + [ + "▁Like", + -9.85739803314209 + ], + [ + "▁ex", + -9.857810974121094 + ], + [ + "▁beauty", + -9.858170509338379 + ], + [ + "▁document", + -9.858495712280273 + ], + [ + "▁passed", + -9.8587064743042 + ], + [ + "ham", + -9.859502792358398 + ], + [ + "▁cars", + -9.859847068786621 + ], + [ + "▁poor", + -9.86108112335205 + ], + [ + "▁install", + -9.863088607788086 + ], + [ + "▁otherwise", + -9.863982200622559 + ], + [ + "▁lose", + -9.865863800048828 + ], + [ + "▁expensive", + -9.866400718688965 + ], + [ + "▁PC", + -9.866446495056152 + ], + [ + "▁Last", + -9.866584777832031 + ], + [ + "▁connected", + -9.867010116577148 + ], + [ + "▁Online", + -9.8673095703125 + ], + [ + "▁Ma", + -9.867809295654297 + ], + [ + "▁Tuesday", + -9.868875503540039 + ], + [ + "▁mentioned", + -9.86893081665039 + ], + [ + "▁fantastic", + -9.869400978088379 + ], + [ + "▁changing", + -9.869476318359375 + ], + [ + "▁identify", + -9.869539260864258 + ], + [ + "ize", + -9.870033264160156 + ], + [ + "▁Law", + -9.870888710021973 + ], + [ + "▁format", + -9.871170997619629 + ], + [ + "con", + -9.871241569519043 + ], + [ + "house", + -9.87137222290039 + ], + [ + "▁Director", + -9.871691703796387 + ], + [ + "▁processes", + -9.871888160705566 + ], + [ + "▁frame", + -9.873092651367188 + ], + [ + "▁Time", + -9.873153686523438 + ], + [ + "▁stone", + -9.87579345703125 + ], + [ + "▁King", + -9.87594985961914 + ], + [ + "▁scale", + -9.8764009475708 + ], + [ + "ville", + -9.876529693603516 + ], + [ + "▁agreement", + -9.877272605895996 + ], + [ + "▁Lord", + -9.87732219696045 + ], + [ + "▁fans", + -9.87744140625 + ], + [ + "▁residents", + -9.877779006958008 + ], + [ + "▁wants", + -9.877781867980957 + ], + [ + "▁USA", + -9.877796173095703 + ], + [ + "▁auto", + -9.878161430358887 + ], + [ + "▁Africa", + -9.878170013427734 + ], + [ + "▁practices", + -9.878580093383789 + ], + [ + "▁maximum", + -9.880130767822266 + ], + [ + "▁wrote", + -9.880526542663574 + ], + [ + "▁Mark", + -9.881386756896973 + ], + [ + "▁Super", + -9.881404876708984 + ], + [ + "▁artist", + -9.88141918182373 + ], + [ + "▁happened", + -9.881591796875 + ], + [ + "▁eight", + -9.88254165649414 + ], + [ + "▁distance", + -9.882545471191406 + ], + [ + "▁forget", + -9.88283920288086 + ], + [ + "▁federal", + -9.883270263671875 + ], + [ + "▁recipe", + -9.883323669433594 + ], + [ + "▁becoming", + -9.883963584899902 + ], + [ + "▁Trump", + -9.884536743164062 + ], + [ + "▁independent", + -9.885196685791016 + ], + [ + "▁1,", + -9.887075424194336 + ], + [ + "▁menu", + -9.887205123901367 + ], + [ + "▁treat", + -9.8877592086792 + ], + [ + "▁applied", + -9.888043403625488 + ], + [ + "▁la", + -9.888397216796875 + ], + [ + "▁president", + -9.889305114746094 + ], + [ + "▁efficient", + -9.88941478729248 + ], + [ + "▁operation", + -9.890006065368652 + ], + [ + "▁di", + -9.89007568359375 + ], + [ + "▁station", + -9.891424179077148 + ], + [ + "▁$", + -9.891661643981934 + ], + [ + "▁rock", + -9.892268180847168 + ], + [ + "▁sit", + -9.89372730255127 + ], + [ + "▁whatever", + -9.893988609313965 + ], + [ + "*", + -9.89404582977295 + ], + [ + "▁detail", + -9.895092964172363 + ], + [ + "▁El", + -9.895845413208008 + ], + [ + "▁showing", + -9.8960599899292 + ], + [ + "▁characters", + -9.896181106567383 + ], + [ + "▁28", + -9.896350860595703 + ], + [ + "▁panel", + -9.896406173706055 + ], + [ + "▁alternative", + -9.897603988647461 + ], + [ + "е", + -9.897823333740234 + ], + [ + "▁2013", + -9.897906303405762 + ], + [ + "▁Wednesday", + -9.898791313171387 + ], + [ + "▁processing", + -9.89924430847168 + ], + [ + "▁thousands", + -9.899730682373047 + ], + [ + "▁con", + -9.899894714355469 + ], + [ + "▁slow", + -9.900164604187012 + ], + [ + "▁Both", + -9.900225639343262 + ], + [ + "▁$1", + -9.901796340942383 + ], + [ + "▁documents", + -9.902440071105957 + ], + [ + "▁happens", + -9.90259838104248 + ], + [ + "▁tea", + -9.903103828430176 + ], + [ + "▁thus", + -9.9041166305542 + ], + [ + "▁dining", + -9.904568672180176 + ], + [ + "▁Data", + -9.905250549316406 + ], + [ + "▁Top", + -9.905411720275879 + ], + [ + "ard", + -9.906315803527832 + ], + [ + "▁Education", + -9.906577110290527 + ], + [ + "!!!", + -9.907296180725098 + ], + [ + "▁excited", + -9.907577514648438 + ], + [ + "50", + -9.90847110748291 + ], + [ + "▁100%", + -9.908592224121094 + ], + [ + "▁selling", + -9.90925407409668 + ], + [ + "▁Blue", + -9.910014152526855 + ], + [ + "▁focused", + -9.910086631774902 + ], + [ + "▁described", + -9.910093307495117 + ], + [ + "▁train", + -9.9109525680542 + ], + [ + "▁paint", + -9.911972045898438 + ], + [ + "▁continued", + -9.912481307983398 + ], + [ + "▁fashion", + -9.912883758544922 + ], + [ + "▁minute", + -9.912939071655273 + ], + [ + "▁radio", + -9.913138389587402 + ], + [ + "▁Mo", + -9.913961410522461 + ], + [ + "▁album", + -9.91487979888916 + ], + [ + "▁Michael", + -9.91638469696045 + ], + [ + "▁Their", + -9.917425155639648 + ], + [ + "all", + -9.91782283782959 + ], + [ + "▁Science", + -9.91795539855957 + ], + [ + "▁26", + -9.918313980102539 + ], + [ + "▁pattern", + -9.91841983795166 + ], + [ + "▁bedroom", + -9.920763969421387 + ], + [ + "▁opened", + -9.921586990356445 + ], + [ + "▁Power", + -9.922029495239258 + ], + [ + "▁caused", + -9.922040939331055 + ], + [ + "▁cheap", + -9.922359466552734 + ], + [ + "▁units", + -9.92322826385498 + ], + [ + "▁corporate", + -9.923394203186035 + ], + [ + "▁awesome", + -9.923783302307129 + ], + [ + "▁prepare", + -9.924184799194336 + ], + [ + "ence", + -9.924579620361328 + ], + [ + "▁affordable", + -9.925323486328125 + ], + [ + "▁bought", + -9.925690650939941 + ], + [ + "▁truth", + -9.925806999206543 + ], + [ + "▁edge", + -9.926034927368164 + ], + [ + "▁Download", + -9.926337242126465 + ], + [ + "▁minimum", + -9.926473617553711 + ], + [ + "▁Pre", + -9.92651653289795 + ], + [ + "▁fees", + -9.92670726776123 + ], + [ + "her", + -9.926901817321777 + ], + [ + "▁Indian", + -9.92695140838623 + ], + [ + "▁absolutely", + -9.927777290344238 + ], + [ + "­", + -9.927851676940918 + ], + [ + "▁discover", + -9.927881240844727 + ], + [ + "▁exciting", + -9.928435325622559 + ], + [ + "▁fair", + -9.929047584533691 + ], + [ + "ger", + -9.929668426513672 + ], + [ + "▁daughter", + -9.930371284484863 + ], + [ + "▁Star", + -9.930877685546875 + ], + [ + "▁System", + -9.932388305664062 + ], + [ + "25", + -9.932921409606934 + ], + [ + "▁presence", + -9.932966232299805 + ], + [ + "▁manager", + -9.933679580688477 + ], + [ + "▁ride", + -9.933757781982422 + ], + [ + "▁Where", + -9.934202194213867 + ], + [ + "▁facility", + -9.934964179992676 + ], + [ + "▁Island", + -9.935123443603516 + ], + [ + "▁toward", + -9.935194969177246 + ], + [ + "▁spending", + -9.936227798461914 + ], + [ + "▁names", + -9.936466217041016 + ], + [ + "▁performed", + -9.93718147277832 + ], + [ + "▁remains", + -9.937667846679688 + ], + [ + "▁decisions", + -9.937995910644531 + ], + [ + "▁Year", + -9.938050270080566 + ], + [ + "▁majority", + -9.938130378723145 + ], + [ + "▁centre", + -9.939044952392578 + ], + [ + "▁2012", + -9.939264297485352 + ], + [ + "▁sources", + -9.939270973205566 + ], + [ + "▁enjoyed", + -9.939885139465332 + ], + [ + "▁records", + -9.9407320022583 + ], + [ + "▁properly", + -9.940875053405762 + ], + [ + "▁assistance", + -9.94214916229248 + ], + [ + "▁installed", + -9.942368507385254 + ], + [ + "▁reference", + -9.943730354309082 + ], + [ + "▁videos", + -9.94399356842041 + ], + [ + "▁becomes", + -9.9442138671875 + ], + [ + "▁corner", + -9.944304466247559 + ], + [ + "▁Big", + -9.944717407226562 + ], + [ + "▁leadership", + -9.946375846862793 + ], + [ + "▁recommended", + -9.946551322937012 + ], + [ + "▁teacher", + -9.94677448272705 + ], + [ + "▁designs", + -9.947125434875488 + ], + [ + "▁>", + -9.94880485534668 + ], + [ + "▁policies", + -9.949090003967285 + ], + [ + "▁updated", + -9.949371337890625 + ], + [ + "▁cream", + -9.949450492858887 + ], + [ + "▁manner", + -9.950039863586426 + ], + [ + "▁sounds", + -9.950851440429688 + ], + [ + "▁ingredients", + -9.951454162597656 + ], + [ + "▁Ha", + -9.95254898071289 + ], + [ + "▁suitable", + -9.952601432800293 + ], + [ + "tion", + -9.953384399414062 + ], + [ + "▁topic", + -9.953446388244629 + ], + [ + "▁exchange", + -9.953825950622559 + ], + [ + "ED", + -9.954071044921875 + ], + [ + "▁interview", + -9.954093933105469 + ], + [ + "use", + -9.955276489257812 + ], + [ + "▁square", + -9.956648826599121 + ], + [ + "▁seat", + -9.956932067871094 + ], + [ + "▁Before", + -9.957098007202148 + ], + [ + "▁diet", + -9.957592010498047 + ], + [ + "▁animals", + -9.957908630371094 + ], + [ + "▁managed", + -9.958877563476562 + ], + [ + "▁serving", + -9.959067344665527 + ], + [ + "▁Next", + -9.959421157836914 + ], + [ + "▁spread", + -9.959800720214844 + ], + [ + "▁Book", + -9.96008014678955 + ], + [ + "▁roof", + -9.960234642028809 + ], + [ + "▁department", + -9.960328102111816 + ], + [ + "▁Development", + -9.960371971130371 + ], + [ + "ING", + -9.961335182189941 + ], + [ + "▁injury", + -9.96136474609375 + ], + [ + "▁detailed", + -9.961461067199707 + ], + [ + "▁fight", + -9.961488723754883 + ], + [ + "▁Amazon", + -9.961710929870605 + ], + [ + "▁smart", + -9.962642669677734 + ], + [ + "ul", + -9.962801933288574 + ], + [ + "▁walking", + -9.96286678314209 + ], + [ + "▁England", + -9.963339805603027 + ], + [ + "▁Di", + -9.963467597961426 + ], + [ + "▁wind", + -9.9636869430542 + ], + [ + "▁artists", + -9.964488983154297 + ], + [ + "▁senior", + -9.966158866882324 + ], + [ + "Re", + -9.966903686523438 + ], + [ + "▁increasing", + -9.967275619506836 + ], + [ + "▁teachers", + -9.96768569946289 + ], + [ + "▁allowing", + -9.967951774597168 + ], + [ + "▁leaving", + -9.968621253967285 + ], + [ + "▁peace", + -9.969500541687012 + ], + [ + "▁info", + -9.969523429870605 + ], + [ + "▁registered", + -9.971013069152832 + ], + [ + "▁lovely", + -9.971550941467285 + ], + [ + "▁automatically", + -9.972155570983887 + ], + [ + "▁provider", + -9.973299980163574 + ], + [ + "▁closed", + -9.973494529724121 + ], + [ + "▁Foundation", + -9.975021362304688 + ], + [ + "▁components", + -9.975428581237793 + ], + [ + "▁windows", + -9.975467681884766 + ], + [ + "▁strategies", + -9.975802421569824 + ], + [ + "▁died", + -9.976675033569336 + ], + [ + "▁Program", + -9.976834297180176 + ], + [ + "▁clearly", + -9.976846694946289 + ], + [ + "▁girl", + -9.97729778289795 + ], + [ + "▁concerns", + -9.977422714233398 + ], + [ + "▁27", + -9.977423667907715 + ], + [ + "▁www", + -9.978472709655762 + ], + [ + "▁suggest", + -9.97887897491455 + ], + [ + "▁internal", + -9.979432106018066 + ], + [ + "▁claims", + -9.979470252990723 + ], + [ + "▁typically", + -9.979634284973145 + ], + [ + "▁agency", + -9.98052978515625 + ], + [ + "▁3.", + -9.981846809387207 + ], + [ + "▁TO", + -9.982412338256836 + ], + [ + "▁expertise", + -9.98243236541748 + ], + [ + "▁generation", + -9.982966423034668 + ], + [ + "ology", + -9.983118057250977 + ], + [ + "▁academic", + -9.983705520629883 + ], + [ + "▁filled", + -9.984545707702637 + ], + [ + "▁fuel", + -9.985239028930664 + ], + [ + "▁Central", + -9.9854097366333 + ], + [ + "▁calls", + -9.985468864440918 + ], + [ + "▁colour", + -9.985944747924805 + ], + [ + "▁foreign", + -9.986002922058105 + ], + [ + "▁previously", + -9.986297607421875 + ], + [ + "▁trees", + -9.986363410949707 + ], + [ + "▁negative", + -9.986599922180176 + ], + [ + "▁runs", + -9.986623764038086 + ], + [ + "▁environmental", + -9.986658096313477 + ], + [ + "▁approximately", + -9.987000465393066 + ], + [ + "▁pan", + -9.988052368164062 + ], + [ + "▁AND", + -9.990025520324707 + ], + [ + "▁cities", + -9.990362167358398 + ], + [ + "▁snow", + -9.990379333496094 + ], + [ + "▁doctor", + -9.990527153015137 + ], + [ + "▁Note", + -9.99069595336914 + ], + [ + "▁Social", + -9.991788864135742 + ], + [ + "▁eating", + -9.992640495300293 + ], + [ + "▁error", + -9.993085861206055 + ], + [ + "▁Team", + -9.993431091308594 + ], + [ + "▁Information", + -9.994560241699219 + ], + [ + "▁funding", + -9.995262145996094 + ], + [ + "gen", + -9.995316505432129 + ], + [ + "mer", + -9.995575904846191 + ], + [ + "▁category", + -9.99570369720459 + ], + [ + "▁micro", + -9.995718955993652 + ], + [ + "▁busy", + -9.99777889251709 + ], + [ + "▁courses", + -9.997784614562988 + ], + [ + "let", + -9.998106956481934 + ], + [ + "▁slightly", + -9.998457908630371 + ], + [ + "▁Government", + -9.998644828796387 + ], + [ + "▁discussion", + -9.99880599975586 + ], + [ + "▁relationships", + -9.999787330627441 + ], + [ + "▁practical", + -10.00046157836914 + ], + [ + "▁battery", + -10.001873016357422 + ], + [ + "▁shipping", + -10.00213623046875 + ], + [ + "▁interior", + -10.002632141113281 + ], + [ + "▁theme", + -10.002760887145996 + ], + [ + "▁Gold", + -10.00298023223877 + ], + [ + "▁continues", + -10.00307559967041 + ], + [ + "ability", + -10.003092765808105 + ], + [ + "▁attack", + -10.003547668457031 + ], + [ + "▁wouldn", + -10.00365924835205 + ], + [ + "▁bus", + -10.00633716583252 + ], + [ + "▁showed", + -10.006567001342773 + ], + [ + "▁football", + -10.006749153137207 + ], + [ + "▁Beach", + -10.007158279418945 + ], + [ + "▁delicious", + -10.007194519042969 + ], + [ + "▁combined", + -10.00761604309082 + ], + [ + "▁Se", + -10.007631301879883 + ], + [ + "▁species", + -10.00775146484375 + ], + [ + "▁volume", + -10.007782936096191 + ], + [ + "▁Hall", + -10.008437156677246 + ], + [ + "▁profile", + -10.009537696838379 + ], + [ + "▁pair", + -10.009781837463379 + ], + [ + "▁consist", + -10.010184288024902 + ], + [ + "▁faith", + -10.01089859008789 + ], + [ + "▁bill", + -10.010986328125 + ], + [ + "▁drink", + -10.011054992675781 + ], + [ + "▁climate", + -10.011351585388184 + ], + [ + "▁advance", + -10.012102127075195 + ], + [ + "▁debt", + -10.012269020080566 + ], + [ + "▁smooth", + -10.013031959533691 + ], + [ + "▁database", + -10.013054847717285 + ], + [ + "▁Music", + -10.013228416442871 + ], + [ + "▁vote", + -10.013617515563965 + ], + [ + "▁leaves", + -10.013729095458984 + ], + [ + "▁parking", + -10.014605522155762 + ], + [ + "▁depending", + -10.014616966247559 + ], + [ + "▁locations", + -10.01512336730957 + ], + [ + "▁net", + -10.01519775390625 + ], + [ + "▁responsibility", + -10.01550006866455 + ], + [ + "30", + -10.015692710876465 + ], + [ + "▁brings", + -10.015748977661133 + ], + [ + "▁vehicles", + -10.016168594360352 + ], + [ + "▁putting", + -10.01619815826416 + ], + [ + "▁Christian", + -10.016780853271484 + ], + [ + "▁prefer", + -10.01688289642334 + ], + [ + "▁technologies", + -10.017107963562012 + ], + [ + "▁raised", + -10.017642974853516 + ], + [ + "▁scene", + -10.01803207397461 + ], + [ + "▁reflect", + -10.018303871154785 + ], + [ + "▁importance", + -10.018306732177734 + ], + [ + "▁audio", + -10.018349647521973 + ], + [ + "▁dance", + -10.018474578857422 + ], + [ + "▁affect", + -10.019612312316895 + ], + [ + "▁unless", + -10.020166397094727 + ], + [ + "▁France", + -10.02038288116455 + ], + [ + "▁launch", + -10.021008491516113 + ], + [ + "▁feedback", + -10.021153450012207 + ], + [ + "▁nation", + -10.0214262008667 + ], + [ + "▁encourage", + -10.02165412902832 + ], + [ + "port", + -10.021778106689453 + ], + [ + "▁influence", + -10.022509574890137 + ], + [ + "▁proud", + -10.022564888000488 + ], + [ + "▁reliable", + -10.02414608001709 + ], + [ + "12", + -10.024251937866211 + ], + [ + "▁Community", + -10.024506568908691 + ], + [ + "▁Read", + -10.025447845458984 + ], + [ + "▁attempt", + -10.025790214538574 + ], + [ + "▁Microsoft", + -10.026036262512207 + ], + [ + "▁Committee", + -10.02643871307373 + ], + [ + "mp", + -10.026517868041992 + ], + [ + "▁miss", + -10.02653694152832 + ], + [ + "▁aspects", + -10.027325630187988 + ], + [ + "▁hospital", + -10.028353691101074 + ], + [ + "▁200", + -10.028534889221191 + ], + [ + "ji", + -10.02877140045166 + ], + [ + "▁visual", + -10.0304594039917 + ], + [ + "▁specifically", + -10.030601501464844 + ], + [ + "▁markets", + -10.030670166015625 + ], + [ + "▁@", + -10.031238555908203 + ], + [ + "▁quarter", + -10.031354904174805 + ], + [ + "▁innovative", + -10.031817436218262 + ], + [ + "ang", + -10.031902313232422 + ], + [ + "▁industrial", + -10.0320463180542 + ], + [ + "▁fabric", + -10.032262802124023 + ], + [ + "▁fat", + -10.033158302307129 + ], + [ + "▁stores", + -10.03349494934082 + ], + [ + "▁trading", + -10.034144401550293 + ], + [ + "▁Up", + -10.034324645996094 + ], + [ + "ear", + -10.03468132019043 + ], + [ + "▁Contact", + -10.034941673278809 + ], + [ + "▁fear", + -10.034992218017578 + ], + [ + "▁mental", + -10.035323143005371 + ], + [ + "▁German", + -10.036115646362305 + ], + [ + "▁attend", + -10.036189079284668 + ], + [ + "▁shower", + -10.036701202392578 + ], + [ + "▁obtain", + -10.037875175476074 + ], + [ + "▁Only", + -10.038636207580566 + ], + [ + "▁joined", + -10.03870677947998 + ], + [ + "▁=", + -10.03898811340332 + ], + [ + "▁pop", + -10.039443969726562 + ], + [ + "que", + -10.040877342224121 + ], + [ + "▁instance", + -10.040910720825195 + ], + [ + "▁guys", + -10.041051864624023 + ], + [ + "▁Lo", + -10.04113483428955 + ], + [ + "▁partners", + -10.041536331176758 + ], + [ + "▁rain", + -10.041549682617188 + ], + [ + "izing", + -10.041864395141602 + ], + [ + "ung", + -10.042401313781738 + ], + [ + "▁appears", + -10.043448448181152 + ], + [ + "▁thoughts", + -10.044322967529297 + ], + [ + "ze", + -10.044410705566406 + ], + [ + "▁watching", + -10.04448127746582 + ], + [ + "▁guarantee", + -10.045583724975586 + ], + [ + "▁ourselves", + -10.045863151550293 + ], + [ + "▁comprehensive", + -10.046427726745605 + ], + [ + "▁Project", + -10.04650592803955 + ], + [ + "▁Public", + -10.047235488891602 + ], + [ + "▁posts", + -10.048116683959961 + ], + [ + "▁sample", + -10.048576354980469 + ], + [ + "▁websites", + -10.049302101135254 + ], + [ + "▁mode", + -10.049639701843262 + ], + [ + "▁Learn", + -10.051651954650879 + ], + [ + "▁actions", + -10.053065299987793 + ], + [ + "▁factor", + -10.05329418182373 + ], + [ + "▁winning", + -10.053427696228027 + ], + [ + "▁hearing", + -10.054594993591309 + ], + [ + "▁mostly", + -10.055691719055176 + ], + [ + "▁IN", + -10.055936813354492 + ], + [ + "tic", + -10.056532859802246 + ], + [ + "▁salt", + -10.057714462280273 + ], + [ + "red", + -10.05823802947998 + ], + [ + "▁opinion", + -10.058506965637207 + ], + [ + "▁rise", + -10.058733940124512 + ], + [ + "20", + -10.05941104888916 + ], + [ + "▁90", + -10.060168266296387 + ], + [ + "▁enhance", + -10.060322761535645 + ], + [ + "▁anywhere", + -10.060619354248047 + ], + [ + "▁south", + -10.061077117919922 + ], + [ + "▁OF", + -10.061814308166504 + ], + [ + "but", + -10.061951637268066 + ], + [ + "well", + -10.062453269958496 + ], + [ + "▁sets", + -10.0640869140625 + ], + [ + "▁ended", + -10.065143585205078 + ], + [ + "▁Ho", + -10.065873146057129 + ], + [ + "▁flight", + -10.065948486328125 + ], + [ + "▁grade", + -10.066171646118164 + ], + [ + "▁enable", + -10.06621265411377 + ], + [ + "▁contain", + -10.067121505737305 + ], + [ + "▁fix", + -10.067632675170898 + ], + [ + "▁limit", + -10.067909240722656 + ], + [ + "▁rule", + -10.067940711975098 + ], + [ + "▁committed", + -10.068286895751953 + ], + [ + "▁valuable", + -10.06936264038086 + ], + [ + "▁fruit", + -10.069419860839844 + ], + [ + "▁housing", + -10.07252025604248 + ], + [ + "▁measure", + -10.072824478149414 + ], + [ + "▁worry", + -10.073486328125 + ], + [ + "▁counter", + -10.073972702026367 + ], + [ + "▁Valley", + -10.07461166381836 + ], + [ + "▁trial", + -10.074885368347168 + ], + [ + "▁Care", + -10.075264930725098 + ], + [ + "▁Twitter", + -10.076300621032715 + ], + [ + "not", + -10.076424598693848 + ], + [ + "▁catch", + -10.077289581298828 + ], + [ + "ship", + -10.07812786102295 + ], + [ + "▁Those", + -10.079669952392578 + ], + [ + "▁confidence", + -10.081510543823242 + ], + [ + "▁cultural", + -10.081754684448242 + ], + [ + "▁earth", + -10.082154273986816 + ], + [ + "mail", + -10.082375526428223 + ], + [ + "▁employee", + -10.082706451416016 + ], + [ + "ng", + -10.082990646362305 + ], + [ + "▁pet", + -10.083138465881348 + ], + [ + "ER", + -10.08495807647705 + ], + [ + "▁layer", + -10.085282325744629 + ], + [ + "▁island", + -10.085478782653809 + ], + [ + "▁bike", + -10.08565616607666 + ], + [ + "▁ship", + -10.085786819458008 + ], + [ + "▁context", + -10.085841178894043 + ], + [ + "▁II", + -10.085862159729004 + ], + [ + "▁delivered", + -10.086145401000977 + ], + [ + "ial", + -10.086463928222656 + ], + [ + "▁aim", + -10.087336540222168 + ], + [ + "00", + -10.087509155273438 + ], + [ + "=", + -10.087614059448242 + ], + [ + "▁functions", + -10.087841987609863 + ], + [ + "▁purposes", + -10.088460922241211 + ], + [ + "▁doors", + -10.0886869430542 + ], + [ + "▁competitive", + -10.088869094848633 + ], + [ + "▁participants", + -10.088977813720703 + ], + [ + "▁die", + -10.089427947998047 + ], + [ + "our", + -10.089458465576172 + ], + [ + "▁notes", + -10.089786529541016 + ], + [ + "art", + -10.089917182922363 + ], + [ + "▁tickets", + -10.090389251708984 + ], + [ + "▁Long", + -10.090543746948242 + ], + [ + "▁Centre", + -10.09061336517334 + ], + [ + "▁meal", + -10.090925216674805 + ], + [ + "▁leads", + -10.091261863708496 + ], + [ + "▁register", + -10.091660499572754 + ], + [ + "▁cheese", + -10.092291831970215 + ], + [ + "▁supported", + -10.09251594543457 + ], + [ + "▁faster", + -10.092967987060547 + ], + [ + "▁31", + -10.093293190002441 + ], + [ + "▁visiting", + -10.093413352966309 + ], + [ + "▁replace", + -10.093636512756348 + ], + [ + "▁cloud", + -10.094050407409668 + ], + [ + "▁library", + -10.09486198425293 + ], + [ + "▁District", + -10.095982551574707 + ], + [ + "les", + -10.09599494934082 + ], + [ + "▁measures", + -10.097171783447266 + ], + [ + "▁lunch", + -10.098099708557129 + ], + [ + "▁starts", + -10.098297119140625 + ], + [ + "▁Security", + -10.098475456237793 + ], + [ + "▁draw", + -10.098882675170898 + ], + [ + "▁totally", + -10.098979949951172 + ], + [ + "▁reached", + -10.099052429199219 + ], + [ + "▁realize", + -10.099266052246094 + ], + [ + "▁dead", + -10.099313735961914 + ], + [ + "▁80", + -10.099493026733398 + ], + [ + "ping", + -10.100149154663086 + ], + [ + "▁distribution", + -10.100238800048828 + ], + [ + "▁north", + -10.10075569152832 + ], + [ + "▁Society", + -10.101258277893066 + ], + [ + "▁boat", + -10.101341247558594 + ], + [ + "▁meant", + -10.101395606994629 + ], + [ + "▁object", + -10.10144329071045 + ], + [ + "▁choices", + -10.101541519165039 + ], + [ + "▁articles", + -10.10157585144043 + ], + [ + "▁chicken", + -10.101593017578125 + ], + [ + "▁girls", + -10.101786613464355 + ], + [ + "▁doubt", + -10.102252960205078 + ], + [ + "apos", + -10.102510452270508 + ], + [ + "▁aid", + -10.102956771850586 + ], + [ + "▁Using", + -10.103378295898438 + ], + [ + "▁Japan", + -10.103547096252441 + ], + [ + "▁songs", + -10.103880882263184 + ], + [ + "▁Keep", + -10.10398006439209 + ], + [ + "▁emergency", + -10.104315757751465 + ], + [ + "▁inspired", + -10.10495376586914 + ], + [ + "▁rental", + -10.105286598205566 + ], + [ + "▁listen", + -10.105981826782227 + ], + [ + "▁chair", + -10.106361389160156 + ], + [ + "▁extensive", + -10.106411933898926 + ], + [ + "▁missing", + -10.106879234313965 + ], + [ + "▁replacement", + -10.107023239135742 + ], + [ + "▁Play", + -10.107185363769531 + ], + [ + "▁mine", + -10.107190132141113 + ], + [ + "▁providers", + -10.107670783996582 + ], + [ + "▁Does", + -10.108086585998535 + ], + [ + "▁2010", + -10.108098983764648 + ], + [ + "▁breakfast", + -10.108293533325195 + ], + [ + "▁En", + -10.109102249145508 + ], + [ + "▁despite", + -10.109234809875488 + ], + [ + "▁advertising", + -10.109442710876465 + ], + [ + "▁survey", + -10.109747886657715 + ], + [ + "▁holding", + -10.109790802001953 + ], + [ + "▁appreciate", + -10.1097993850708 + ], + [ + "▁load", + -10.10982894897461 + ], + [ + "▁output", + -10.109843254089355 + ], + [ + "▁Android", + -10.11009693145752 + ], + [ + "▁deals", + -10.110445022583008 + ], + [ + "▁Ne", + -10.110603332519531 + ], + [ + "▁fixed", + -10.11187744140625 + ], + [ + "▁eventually", + -10.112177848815918 + ], + [ + "11", + -10.112457275390625 + ], + [ + "▁Show", + -10.112699508666992 + ], + [ + "▁returned", + -10.112971305847168 + ], + [ + "▁explain", + -10.113227844238281 + ], + [ + "▁educational", + -10.113802909851074 + ], + [ + "▁asking", + -10.114619255065918 + ], + [ + "▁laws", + -10.115706443786621 + ], + [ + "▁removed", + -10.11571216583252 + ], + [ + "fer", + -10.115818977355957 + ], + [ + "▁passion", + -10.115975379943848 + ], + [ + "▁adults", + -10.11613655090332 + ], + [ + "▁70", + -10.116460800170898 + ], + [ + "▁roll", + -10.117169380187988 + ], + [ + "▁raise", + -10.117392539978027 + ], + [ + "▁suit", + -10.11762523651123 + ], + [ + "car", + -10.118714332580566 + ], + [ + "▁Master", + -10.11878776550293 + ], + [ + "▁approved", + -10.119393348693848 + ], + [ + "▁brands", + -10.119779586791992 + ], + [ + "my", + -10.119817733764648 + ], + [ + "▁Work", + -10.120759963989258 + ], + [ + "▁Rock", + -10.121048927307129 + ], + [ + "▁possibly", + -10.121502876281738 + ], + [ + "▁refer", + -10.121636390686035 + ], + [ + "▁inter", + -10.122122764587402 + ], + [ + "▁flowers", + -10.122587203979492 + ], + [ + "▁resolution", + -10.122949600219727 + ], + [ + "▁2011", + -10.123221397399902 + ], + [ + "▁Bill", + -10.123924255371094 + ], + [ + "▁treated", + -10.125798225402832 + ], + [ + "▁cat", + -10.126643180847168 + ], + [ + "▁cast", + -10.12664794921875 + ], + [ + "ja", + -10.127178192138672 + ], + [ + "▁guess", + -10.127891540527344 + ], + [ + "▁iPhone", + -10.128255844116211 + ], + [ + "▁Technology", + -10.128536224365234 + ], + [ + "▁chocolate", + -10.129411697387695 + ], + [ + "▁electronic", + -10.129522323608398 + ], + [ + "▁dress", + -10.129547119140625 + ], + [ + "ring", + -10.129557609558105 + ], + [ + "▁animal", + -10.129984855651855 + ], + [ + "▁CO", + -10.130411148071289 + ], + [ + "▁switch", + -10.130587577819824 + ], + [ + ">", + -10.130825996398926 + ], + [ + "▁resource", + -10.132555961608887 + ], + [ + "▁consumers", + -10.132689476013184 + ], + [ + "▁introduced", + -10.132716178894043 + ], + [ + "▁monthly", + -10.133288383483887 + ], + [ + "▁consumer", + -10.133907318115234 + ], + [ + "▁therapy", + -10.134258270263672 + ], + [ + "▁administration", + -10.135537147521973 + ], + [ + "▁agent", + -10.135729789733887 + ], + [ + "▁electric", + -10.135747909545898 + ], + [ + "▁signed", + -10.136749267578125 + ], + [ + "▁Plus", + -10.136946678161621 + ], + [ + "▁effectively", + -10.138009071350098 + ], + [ + "▁chain", + -10.138564109802246 + ], + [ + "▁George", + -10.138910293579102 + ], + [ + "▁route", + -10.13891887664795 + ], + [ + "▁500", + -10.139854431152344 + ], + [ + "▁push", + -10.140520095825195 + ], + [ + "▁Sun", + -10.140679359436035 + ], + [ + "▁participate", + -10.141098022460938 + ], + [ + "▁Ar", + -10.141470909118652 + ], + [ + "see", + -10.142295837402344 + ], + [ + "▁Sea", + -10.14236068725586 + ], + [ + "pro", + -10.142608642578125 + ], + [ + "▁license", + -10.142824172973633 + ], + [ + "▁desire", + -10.143213272094727 + ], + [ + "▁afternoon", + -10.143704414367676 + ], + [ + "▁registration", + -10.143926620483398 + ], + [ + "▁CD", + -10.144824028015137 + ], + [ + "▁35", + -10.147428512573242 + ], + [ + "▁PM", + -10.14765453338623 + ], + [ + "▁CA", + -10.14816951751709 + ], + [ + "▁29", + -10.148223876953125 + ], + [ + "▁improved", + -10.148431777954102 + ], + [ + "▁meat", + -10.149019241333008 + ], + [ + "▁Part", + -10.14909839630127 + ], + [ + "▁Union", + -10.149309158325195 + ], + [ + "▁milk", + -10.149540901184082 + ], + [ + "▁hire", + -10.150229454040527 + ], + [ + "▁cutting", + -10.150541305541992 + ], + [ + "which", + -10.150740623474121 + ], + [ + "▁appointment", + -10.150754928588867 + ], + [ + "▁Ka", + -10.151436805725098 + ], + [ + "▁Germany", + -10.151491165161133 + ], + [ + "air", + -10.151758193969727 + ], + [ + "▁restaurants", + -10.151863098144531 + ], + [ + "▁lighting", + -10.152369499206543 + ], + [ + "▁Chicago", + -10.1527738571167 + ], + [ + "▁commitment", + -10.152874946594238 + ], + [ + "▁Real", + -10.153458595275879 + ], + [ + "▁Maybe", + -10.153740882873535 + ], + [ + "▁feed", + -10.154041290283203 + ], + [ + "▁accounts", + -10.154681205749512 + ], + [ + "▁retail", + -10.154790878295898 + ], + [ + "work", + -10.15479564666748 + ], + [ + "▁settings", + -10.155569076538086 + ], + [ + "▁Hill", + -10.155852317810059 + ], + [ + "▁birthday", + -10.156355857849121 + ], + [ + "▁intended", + -10.156416893005371 + ], + [ + "▁surrounding", + -10.15708065032959 + ], + [ + "▁domain", + -10.157709121704102 + ], + [ + "▁conversation", + -10.158051490783691 + ], + [ + "▁guest", + -10.158246994018555 + ], + [ + "▁pull", + -10.158964157104492 + ], + [ + "▁paying", + -10.159662246704102 + ], + [ + "▁exam", + -10.159761428833008 + ], + [ + "▁appearance", + -10.16122817993164 + ], + [ + "▁Out", + -10.161806106567383 + ], + [ + "▁updates", + -10.16185474395752 + ], + [ + "▁sitting", + -10.162333488464355 + ], + [ + "▁Hotel", + -10.162487030029297 + ], + [ + "▁Peter", + -10.162534713745117 + ], + [ + "▁purchased", + -10.162649154663086 + ], + [ + "▁seconds", + -10.164819717407227 + ], + [ + "▁seemed", + -10.164959907531738 + ], + [ + "set", + -10.165521621704102 + ], + [ + "▁respond", + -10.165556907653809 + ], + [ + "▁glad", + -10.165987014770508 + ], + [ + "▁Museum", + -10.16650104522705 + ], + [ + "▁calling", + -10.166540145874023 + ], + [ + "▁Under", + -10.166674613952637 + ], + [ + "▁coach", + -10.167129516601562 + ], + [ + "▁procedure", + -10.167195320129395 + ], + [ + "min", + -10.167348861694336 + ], + [ + "▁birth", + -10.167984008789062 + ], + [ + "▁fund", + -10.168391227722168 + ], + [ + "▁manufacturing", + -10.168664932250977 + ], + [ + "▁creation", + -10.168797492980957 + ], + [ + "▁Family", + -10.168922424316406 + ], + [ + "▁se", + -10.169045448303223 + ], + [ + "▁clinical", + -10.169962882995605 + ], + [ + "▁Ko", + -10.170387268066406 + ], + [ + "▁News", + -10.170774459838867 + ], + [ + "ible", + -10.171043395996094 + ], + [ + "▁Commission", + -10.171324729919434 + ], + [ + "▁surgery", + -10.171822547912598 + ], + [ + "board", + -10.17203140258789 + ], + [ + "▁reduced", + -10.172135353088379 + ], + [ + "▁rent", + -10.173334121704102 + ], + [ + "▁infrastructure", + -10.173611640930176 + ], + [ + "▁Head", + -10.175057411193848 + ], + [ + "▁efficiency", + -10.17516040802002 + ], + [ + "▁instructions", + -10.175362586975098 + ], + [ + "▁cooking", + -10.175420761108398 + ], + [ + "▁iron", + -10.17632007598877 + ], + [ + "▁Oh", + -10.176361083984375 + ], + [ + "▁regularly", + -10.176911354064941 + ], + [ + "▁mark", + -10.17734146118164 + ], + [ + "▁bringing", + -10.17735767364502 + ], + [ + "▁4.", + -10.177928924560547 + ], + [ + "▁except", + -10.17813491821289 + ], + [ + "▁supplies", + -10.178159713745117 + ], + [ + "▁wonder", + -10.178260803222656 + ], + [ + "▁saving", + -10.179635047912598 + ], + [ + "▁presentation", + -10.179656028747559 + ], + [ + "▁2018.", + -10.180106163024902 + ], + [ + "▁accurate", + -10.181527137756348 + ], + [ + "▁revenue", + -10.181572914123535 + ], + [ + "ities", + -10.181645393371582 + ], + [ + "▁engineering", + -10.181927680969238 + ], + [ + "▁Instead", + -10.1822509765625 + ], + [ + "▁perfectly", + -10.182506561279297 + ], + [ + "▁Manager", + -10.18269157409668 + ], + [ + "▁covers", + -10.183115005493164 + ], + [ + "▁familiar", + -10.183444023132324 + ], + [ + "▁African", + -10.183560371398926 + ], + [ + "▁Wall", + -10.183895111083984 + ], + [ + "▁bright", + -10.184335708618164 + ], + [ + "15", + -10.184486389160156 + ], + [ + "▁manual", + -10.184735298156738 + ], + [ + "▁ring", + -10.185647010803223 + ], + [ + "45", + -10.185778617858887 + ], + [ + "▁landscape", + -10.186001777648926 + ], + [ + "▁readers", + -10.186196327209473 + ], + [ + "▁Mary", + -10.186277389526367 + ], + [ + "▁behavior", + -10.186284065246582 + ], + [ + "▁greatest", + -10.186321258544922 + ], + [ + "▁Medical", + -10.187213897705078 + ], + [ + "▁spirit", + -10.187225341796875 + ], + [ + "ware", + -10.187440872192383 + ], + [ + "▁perspective", + -10.187458038330078 + ], + [ + "▁Grand", + -10.187610626220703 + ], + [ + "can", + -10.187653541564941 + ], + [ + "▁teach", + -10.187750816345215 + ], + [ + "▁Party", + -10.188172340393066 + ], + [ + "▁transport", + -10.188590049743652 + ], + [ + "ists", + -10.188664436340332 + ], + [ + "▁View", + -10.189528465270996 + ], + [ + "▁Place", + -10.189671516418457 + ], + [ + "▁university", + -10.189739227294922 + ], + [ + "▁Ben", + -10.190506935119629 + ], + [ + "▁seeking", + -10.191046714782715 + ], + [ + "▁chosen", + -10.191174507141113 + ], + [ + "▁launched", + -10.191436767578125 + ], + [ + "▁Food", + -10.191879272460938 + ], + [ + "▁discovered", + -10.192448616027832 + ], + [ + "▁failure", + -10.193533897399902 + ], + [ + "▁Western", + -10.194038391113281 + ], + [ + "▁significantly", + -10.194695472717285 + ], + [ + "▁count", + -10.194819450378418 + ], + [ + "▁Media", + -10.195436477661133 + ], + [ + "▁channel", + -10.19554615020752 + ], + [ + "▁guy", + -10.195615768432617 + ], + [ + "▁cook", + -10.195775032043457 + ], + [ + "▁portion", + -10.196490287780762 + ], + [ + "▁element", + -10.197799682617188 + ], + [ + "▁Fire", + -10.197933197021484 + ], + [ + "▁incredible", + -10.198173522949219 + ], + [ + "▁Australian", + -10.198216438293457 + ], + [ + "▁district", + -10.198766708374023 + ], + [ + "▁combine", + -10.199372291564941 + ], + [ + "▁supporting", + -10.199753761291504 + ], + [ + "▁Brown", + -10.199783325195312 + ], + [ + "▁Per", + -10.199784278869629 + ], + [ + "▁Los", + -10.2006196975708 + ], + [ + "▁hundreds", + -10.201416969299316 + ], + [ + "▁Set", + -10.201446533203125 + ], + [ + "▁nor", + -10.201774597167969 + ], + [ + "▁teeth", + -10.201908111572266 + ], + [ + "down", + -10.20223617553711 + ], + [ + "ure", + -10.202718734741211 + ], + [ + "▁Tom", + -10.202909469604492 + ], + [ + "▁mention", + -10.202959060668945 + ], + [ + "▁Li", + -10.202970504760742 + ], + [ + "▁recovery", + -10.203173637390137 + ], + [ + "▁standing", + -10.203635215759277 + ], + [ + "▁protein", + -10.203841209411621 + ], + [ + "▁lights", + -10.204028129577637 + ], + [ + "-1", + -10.204601287841797 + ], + [ + "▁organic", + -10.205221176147461 + ], + [ + "▁32", + -10.205266952514648 + ], + [ + "▁Wi", + -10.205913543701172 + ], + [ + "▁Ltd", + -10.206915855407715 + ], + [ + "ran", + -10.207136154174805 + ], + [ + "▁determined", + -10.207139015197754 + ], + [ + "▁Sa", + -10.20766544342041 + ], + [ + "▁equal", + -10.207947731018066 + ], + [ + "▁Press", + -10.208134651184082 + ], + [ + "▁Global", + -10.208250045776367 + ], + [ + "▁bowl", + -10.208599090576172 + ], + [ + "▁Israel", + -10.209148406982422 + ], + [ + "▁inspiration", + -10.209226608276367 + ], + [ + "▁novel", + -10.210171699523926 + ], + [ + "▁Ad", + -10.210173606872559 + ], + [ + "▁Am", + -10.210671424865723 + ], + [ + "▁assets", + -10.210700988769531 + ], + [ + "▁Earth", + -10.210880279541016 + ], + [ + "▁carried", + -10.210890769958496 + ], + [ + "▁Robert", + -10.210945129394531 + ], + [ + "▁interests", + -10.211031913757324 + ], + [ + "▁discount", + -10.21129322052002 + ], + [ + "▁Award", + -10.211668014526367 + ], + [ + "bar", + -10.211952209472656 + ], + [ + "▁mass", + -10.212630271911621 + ], + [ + "ong", + -10.212679862976074 + ], + [ + "▁apps", + -10.212803840637207 + ], + [ + "▁sheet", + -10.213125228881836 + ], + [ + "▁Plan", + -10.213630676269531 + ], + [ + "▁dogs", + -10.214032173156738 + ], + [ + "▁truck", + -10.214512825012207 + ], + [ + "▁signal", + -10.214855194091797 + ], + [ + "▁Dan", + -10.215005874633789 + ], + [ + "▁leather", + -10.215315818786621 + ], + [ + "▁Sometimes", + -10.215350151062012 + ], + [ + "▁drivers", + -10.216050148010254 + ], + [ + "▁mini", + -10.216108322143555 + ], + [ + "▁solar", + -10.217226028442383 + ], + [ + "▁painting", + -10.218299865722656 + ], + [ + "▁rear", + -10.218453407287598 + ], + [ + "▁tough", + -10.219032287597656 + ], + [ + "▁Therefore", + -10.219321250915527 + ], + [ + "▁considering", + -10.220314025878906 + ], + [ + "▁buildings", + -10.220427513122559 + ], + [ + "▁Which", + -10.220507621765137 + ], + [ + "▁silver", + -10.220611572265625 + ], + [ + "▁sauce", + -10.220643043518066 + ], + [ + "▁signs", + -10.2208890914917 + ], + [ + "▁brown", + -10.221220970153809 + ], + [ + "▁Ni", + -10.22131061553955 + ], + [ + "▁earn", + -10.22153091430664 + ], + [ + "ray", + -10.221830368041992 + ], + [ + "▁owned", + -10.22214126586914 + ], + [ + "▁occur", + -10.222197532653809 + ], + [ + "▁yes", + -10.223180770874023 + ], + [ + "▁fields", + -10.223235130310059 + ], + [ + "▁topics", + -10.22336483001709 + ], + [ + "▁Canadian", + -10.223592758178711 + ], + [ + "▁Women", + -10.223674774169922 + ], + [ + "▁lived", + -10.223873138427734 + ], + [ + "▁Jan", + -10.224072456359863 + ], + [ + "▁pack", + -10.225400924682617 + ], + [ + "▁battle", + -10.225470542907715 + ], + [ + "▁Ke", + -10.22596263885498 + ], + [ + "▁contemporary", + -10.227364540100098 + ], + [ + "▁port", + -10.228018760681152 + ], + [ + "▁symptoms", + -10.228020668029785 + ], + [ + "16", + -10.228131294250488 + ], + [ + "▁remaining", + -10.230725288391113 + ], + [ + "ney", + -10.231212615966797 + ], + [ + "▁edition", + -10.231653213500977 + ], + [ + "▁Bo", + -10.231718063354492 + ], + [ + "▁Having", + -10.232538223266602 + ], + [ + "▁luxury", + -10.232949256896973 + ], + [ + "▁Live", + -10.234853744506836 + ], + [ + "▁Code", + -10.234930038452148 + ], + [ + "▁ease", + -10.235042572021484 + ], + [ + "▁contribute", + -10.235197067260742 + ], + [ + "▁Old", + -10.235407829284668 + ], + [ + "▁cup", + -10.236052513122559 + ], + [ + "▁Minister", + -10.236059188842773 + ], + [ + "▁farm", + -10.23723316192627 + ], + [ + "▁45", + -10.23745059967041 + ], + [ + "▁dating", + -10.23806095123291 + ], + [ + "▁Special", + -10.238541603088379 + ], + [ + "▁collect", + -10.239141464233398 + ], + [ + "▁Journal", + -10.239449501037598 + ], + [ + "▁walls", + -10.239843368530273 + ], + [ + "▁wild", + -10.240174293518066 + ], + [ + "▁Finally", + -10.240429878234863 + ], + [ + "▁broken", + -10.240640640258789 + ], + [ + "This", + -10.241448402404785 + ], + [ + "▁bigger", + -10.241494178771973 + ], + [ + "▁lifestyle", + -10.242424964904785 + ], + [ + "▁Very", + -10.242530822753906 + ], + [ + "▁Full", + -10.242780685424805 + ], + [ + "▁submit", + -10.243351936340332 + ], + [ + "▁decades", + -10.243945121765137 + ], + [ + "▁premium", + -10.244291305541992 + ], + [ + "▁external", + -10.244339942932129 + ], + [ + "▁proposed", + -10.244556427001953 + ], + [ + "▁tests", + -10.244558334350586 + ], + [ + "▁village", + -10.244574546813965 + ], + [ + "ette", + -10.245379447937012 + ], + [ + "town", + -10.24586009979248 + ], + [ + "▁Back", + -10.245943069458008 + ], + [ + "book", + -10.246357917785645 + ], + [ + "▁adult", + -10.247305870056152 + ], + [ + "▁upper", + -10.248671531677246 + ], + [ + "▁reasonable", + -10.249523162841797 + ], + [ + "▁mouth", + -10.249723434448242 + ], + [ + "▁successfully", + -10.249788284301758 + ], + [ + "▁cake", + -10.250259399414062 + ], + [ + "▁trained", + -10.250365257263184 + ], + [ + "18", + -10.250380516052246 + ], + [ + "▁river", + -10.250478744506836 + ], + [ + "▁Japanese", + -10.250690460205078 + ], + [ + "▁charges", + -10.250997543334961 + ], + [ + "ative", + -10.251255989074707 + ], + [ + "▁Pa", + -10.251272201538086 + ], + [ + "▁identified", + -10.251394271850586 + ], + [ + "▁examples", + -10.251518249511719 + ], + [ + "▁soil", + -10.251725196838379 + ], + [ + "▁Smith", + -10.251995086669922 + ], + [ + "▁assessment", + -10.25289535522461 + ], + [ + "▁represent", + -10.253499031066895 + ], + [ + "nes", + -10.253890037536621 + ], + [ + "▁garage", + -10.254100799560547 + ], + [ + "▁affected", + -10.254220962524414 + ], + [ + "▁issued", + -10.254301071166992 + ], + [ + "▁whom", + -10.254323959350586 + ], + [ + "▁writer", + -10.254655838012695 + ], + [ + "▁dollars", + -10.255054473876953 + ], + [ + "▁hardware", + -10.255290985107422 + ], + [ + "▁improvement", + -10.25554084777832 + ], + [ + "▁knows", + -10.255661010742188 + ], + [ + "▁motion", + -10.255724906921387 + ], + [ + "▁carefully", + -10.255773544311523 + ], + [ + "▁Royal", + -10.256078720092773 + ], + [ + "▁studio", + -10.256556510925293 + ], + [ + "▁arrived", + -10.257096290588379 + ], + [ + "▁dumpster", + -10.257573127746582 + ], + [ + "▁tasks", + -10.257925987243652 + ], + [ + "▁sizes", + -10.25869369506836 + ], + [ + "▁Asia", + -10.258938789367676 + ], + [ + "▁input", + -10.260088920593262 + ], + [ + "▁receiving", + -10.260436058044434 + ], + [ + "▁causes", + -10.261713027954102 + ], + [ + "▁cycle", + -10.261892318725586 + ], + [ + "▁kinds", + -10.26218318939209 + ], + [ + "19", + -10.262202262878418 + ], + [ + "don", + -10.262866020202637 + ], + [ + "▁sessions", + -10.263888359069824 + ], + [ + "▁historical", + -10.265275001525879 + ], + [ + "▁gear", + -10.265290260314941 + ], + [ + "о", + -10.26530933380127 + ], + [ + "▁accepted", + -10.265421867370605 + ], + [ + "▁Russian", + -10.265777587890625 + ], + [ + "▁Wood", + -10.265839576721191 + ], + [ + "▁rare", + -10.266111373901367 + ], + [ + "▁EU", + -10.267071723937988 + ], + [ + "▁Da", + -10.26766586303711 + ], + [ + "▁sport", + -10.268440246582031 + ], + [ + "▁Conference", + -10.268610954284668 + ], + [ + "▁Market", + -10.268861770629883 + ], + [ + "▁Ver", + -10.269200325012207 + ], + [ + "▁procedures", + -10.269526481628418 + ], + [ + "▁About", + -10.26966667175293 + ], + [ + "▁Ex", + -10.269701957702637 + ], + [ + "▁Table", + -10.269978523254395 + ], + [ + "▁crusher", + -10.270380973815918 + ], + [ + "▁worldwide", + -10.27048110961914 + ], + [ + "▁Students", + -10.270525932312012 + ], + [ + "▁League", + -10.270597457885742 + ], + [ + "▁Na", + -10.271199226379395 + ], + [ + "▁expand", + -10.271909713745117 + ], + [ + "▁prove", + -10.272412300109863 + ], + [ + "▁parent", + -10.272829055786133 + ], + [ + "▁shoes", + -10.27365493774414 + ], + [ + "▁knowing", + -10.273985862731934 + ], + [ + "▁investors", + -10.27609634399414 + ], + [ + "▁willing", + -10.2766695022583 + ], + [ + "▁phase", + -10.277668952941895 + ], + [ + "▁extend", + -10.277896881103516 + ], + [ + "▁patterns", + -10.277973175048828 + ], + [ + "▁sides", + -10.278177261352539 + ], + [ + "▁constantly", + -10.278464317321777 + ], + [ + "point", + -10.27856731414795 + ], + [ + "▁implementation", + -10.278651237487793 + ], + [ + "▁ticket", + -10.27904224395752 + ], + [ + "▁remote", + -10.279402732849121 + ], + [ + "▁engage", + -10.279465675354004 + ], + [ + "▁exclusive", + -10.280171394348145 + ], + [ + "che", + -10.280561447143555 + ], + [ + "▁freedom", + -10.280869483947754 + ], + [ + "▁collaboration", + -10.281264305114746 + ], + [ + "▁Control", + -10.28127670288086 + ], + [ + "light", + -10.281322479248047 + ], + [ + "▁accident", + -10.28137493133545 + ], + [ + "▁Men", + -10.282439231872559 + ], + [ + "▁vacation", + -10.282483100891113 + ], + [ + "▁command", + -10.282976150512695 + ], + [ + "▁impressive", + -10.283384323120117 + ], + [ + "▁agencies", + -10.284008979797363 + ], + [ + "▁brother", + -10.284186363220215 + ], + [ + "▁stick", + -10.284533500671387 + ], + [ + "▁motor", + -10.28504753112793 + ], + [ + "▁ID", + -10.285299301147461 + ], + [ + "▁quiet", + -10.286249160766602 + ], + [ + "▁interface", + -10.286917686462402 + ], + [ + "▁relatively", + -10.28700065612793 + ], + [ + "ach", + -10.287243843078613 + ], + [ + "▁nine", + -10.287580490112305 + ], + [ + "▁residential", + -10.287766456604004 + ], + [ + "▁theory", + -10.288593292236328 + ], + [ + "▁beat", + -10.289458274841309 + ], + [ + "▁employment", + -10.289657592773438 + ], + [ + "▁Light", + -10.290926933288574 + ], + [ + "▁innovation", + -10.291037559509277 + ], + [ + "▁candidates", + -10.291254997253418 + ], + [ + "▁regional", + -10.292065620422363 + ], + [ + "▁cent", + -10.292250633239746 + ], + [ + "▁exact", + -10.292282104492188 + ], + [ + "▁OR", + -10.292530059814453 + ], + [ + "▁feels", + -10.293015480041504 + ], + [ + "▁married", + -10.294011116027832 + ], + [ + "14", + -10.2942476272583 + ], + [ + "▁twice", + -10.294666290283203 + ], + [ + "▁engagement", + -10.29517650604248 + ], + [ + "▁answers", + -10.295241355895996 + ], + [ + "▁failed", + -10.295978546142578 + ], + [ + "▁planned", + -10.296282768249512 + ], + [ + "▁transition", + -10.296348571777344 + ], + [ + "▁exist", + -10.296591758728027 + ], + [ + "”,", + -10.296826362609863 + ], + [ + "....", + -10.297065734863281 + ], + [ + "▁awareness", + -10.298711776733398 + ], + [ + "▁defined", + -10.298996925354004 + ], + [ + "▁vital", + -10.299530982971191 + ], + [ + "▁concern", + -10.299554824829102 + ], + [ + "▁payments", + -10.299673080444336 + ], + [ + "▁machines", + -10.299683570861816 + ], + [ + "▁imagine", + -10.300328254699707 + ], + [ + "bit", + -10.300924301147461 + ], + [ + "▁concerned", + -10.300944328308105 + ], + [ + "▁officials", + -10.30097484588623 + ], + [ + "ward", + -10.301523208618164 + ], + [ + "▁defense", + -10.301883697509766 + ], + [ + "▁frequently", + -10.303300857543945 + ], + [ + "32", + -10.303421020507812 + ], + [ + ",000", + -10.303608894348145 + ], + [ + "▁grown", + -10.303810119628906 + ], + [ + "kin", + -10.304023742675781 + ], + [ + "▁Dis", + -10.30461311340332 + ], + [ + "▁CEO", + -10.30470085144043 + ], + [ + "▁$2", + -10.304950714111328 + ], + [ + "▁election", + -10.305207252502441 + ], + [ + "▁Congress", + -10.305468559265137 + ], + [ + "▁native", + -10.305598258972168 + ], + [ + "▁privacy", + -10.305743217468262 + ], + [ + "▁Children", + -10.306209564208984 + ], + [ + "▁expectations", + -10.306577682495117 + ], + [ + "▁recorded", + -10.306750297546387 + ], + [ + "tel", + -10.307004928588867 + ], + [ + "▁HD", + -10.307161331176758 + ], + [ + "▁accessible", + -10.307609558105469 + ], + [ + "▁compare", + -10.307618141174316 + ], + [ + "▁Italian", + -10.309001922607422 + ], + [ + "▁kit", + -10.309468269348145 + ], + [ + "▁circumstances", + -10.309528350830078 + ], + [ + "▁plate", + -10.31010627746582 + ], + [ + "▁executive", + -10.310276985168457 + ], + [ + "king", + -10.31049633026123 + ], + [ + "▁default", + -10.310517311096191 + ], + [ + "▁Ta", + -10.311129570007324 + ], + [ + "▁youth", + -10.311188697814941 + ], + [ + "▁taught", + -10.31119441986084 + ], + [ + "▁stated", + -10.311525344848633 + ], + [ + "▁Arts", + -10.311745643615723 + ], + [ + "▁Jo", + -10.311924934387207 + ], + [ + "▁secret", + -10.311935424804688 + ], + [ + "▁domestic", + -10.311951637268066 + ], + [ + "head", + -10.312267303466797 + ], + [ + "▁browser", + -10.312743186950684 + ], + [ + "▁foods", + -10.312882423400879 + ], + [ + "lan", + -10.313586235046387 + ], + [ + "▁removal", + -10.314059257507324 + ], + [ + "▁trouble", + -10.314453125 + ], + [ + "▁Series", + -10.314550399780273 + ], + [ + "▁NOT", + -10.314560890197754 + ], + [ + "▁foundation", + -10.314966201782227 + ], + [ + "▁yellow", + -10.314994812011719 + ], + [ + "▁PA", + -10.31578540802002 + ], + [ + "▁Po", + -10.315851211547852 + ], + [ + "▁destination", + -10.31588077545166 + ], + [ + "▁integrated", + -10.316231727600098 + ], + [ + "▁diverse", + -10.31657886505127 + ], + [ + "▁begins", + -10.316634178161621 + ], + [ + "▁appeared", + -10.317033767700195 + ], + [ + "а", + -10.317154884338379 + ], + [ + "▁Support", + -10.317228317260742 + ], + [ + "▁stunning", + -10.317873001098633 + ], + [ + "▁bath", + -10.31806468963623 + ], + [ + "▁conducted", + -10.318381309509277 + ], + [ + "▁Search", + -10.318387985229492 + ], + [ + "▁description", + -10.318416595458984 + ], + [ + "▁entertainment", + -10.319172859191895 + ], + [ + "▁cable", + -10.319189071655273 + ], + [ + "▁mountain", + -10.320086479187012 + ], + [ + "▁Did", + -10.320489883422852 + ], + [ + "tal", + -10.32061767578125 + ], + [ + "▁operate", + -10.321383476257324 + ], + [ + "▁Buy", + -10.321920394897461 + ], + [ + "chi", + -10.322310447692871 + ], + [ + "▁outstanding", + -10.322338104248047 + ], + [ + "▁holds", + -10.322989463806152 + ], + [ + "▁institutions", + -10.323127746582031 + ], + [ + "▁fourth", + -10.323633193969727 + ], + [ + "▁Du", + -10.324358940124512 + ], + [ + "▁camp", + -10.324614524841309 + ], + [ + "▁apart", + -10.324844360351562 + ], + [ + "▁challenging", + -10.324884414672852 + ], + [ + "gar", + -10.325244903564453 + ], + [ + "▁everyday", + -10.325305938720703 + ], + [ + "▁massive", + -10.325364112854004 + ], + [ + "▁featured", + -10.325447082519531 + ], + [ + "▁typical", + -10.325759887695312 + ], + [ + "▁female", + -10.325881004333496 + ], + [ + "ble", + -10.325981140136719 + ], + [ + "▁forces", + -10.326130867004395 + ], + [ + "▁flexible", + -10.326139450073242 + ], + [ + "za", + -10.326438903808594 + ], + [ + "▁trail", + -10.326836585998535 + ], + [ + "▁houses", + -10.327463150024414 + ], + [ + "▁favourite", + -10.328641891479492 + ], + [ + "▁messages", + -10.328944206237793 + ], + [ + "▁emotional", + -10.328956604003906 + ], + [ + "▁Network", + -10.32988166809082 + ], + [ + "▁qualified", + -10.33031177520752 + ], + [ + "▁Festival", + -10.330562591552734 + ], + [ + "▁searching", + -10.330816268920898 + ], + [ + "▁ma", + -10.33127498626709 + ], + [ + "You", + -10.331294059753418 + ], + [ + "▁solve", + -10.331823348999023 + ], + [ + "with", + -10.332118034362793 + ], + [ + "ery", + -10.332808494567871 + ], + [ + "▁Room", + -10.332977294921875 + ], + [ + "▁extended", + -10.333998680114746 + ], + [ + "▁height", + -10.334256172180176 + ], + [ + "▁hosting", + -10.334357261657715 + ], + [ + "▁Come", + -10.334388732910156 + ], + [ + "▁situations", + -10.334506034851074 + ], + [ + "▁Sam", + -10.334684371948242 + ], + [ + "▁adventure", + -10.33484172821045 + ], + [ + "▁Review", + -10.335160255432129 + ], + [ + "▁Martin", + -10.335371017456055 + ], + [ + "▁butter", + -10.335586547851562 + ], + [ + "ised", + -10.336642265319824 + ], + [ + "▁matters", + -10.336771965026855 + ], + [ + "▁speaking", + -10.337139129638672 + ], + [ + "▁conduct", + -10.337895393371582 + ], + [ + "ice", + -10.338356971740723 + ], + [ + "▁closer", + -10.338449478149414 + ], + [ + "ties", + -10.338486671447754 + ], + [ + "▁joint", + -10.338579177856445 + ], + [ + "▁chat", + -10.338850975036621 + ], + [ + "▁Enjoy", + -10.339981079101562 + ], + [ + "▁App", + -10.340753555297852 + ], + [ + "▁mail", + -10.341562271118164 + ], + [ + "▁programme", + -10.341611862182617 + ], + [ + "▁joy", + -10.341617584228516 + ], + [ + "▁aspect", + -10.341625213623047 + ], + [ + "▁skill", + -10.34178638458252 + ], + [ + "▁shares", + -10.341974258422852 + ], + [ + "▁happening", + -10.34201431274414 + ], + [ + "▁concrete", + -10.342819213867188 + ], + [ + "▁electrical", + -10.342825889587402 + ], + [ + "▁degrees", + -10.342851638793945 + ], + [ + "ped", + -10.343358993530273 + ], + [ + "▁caught", + -10.344209671020508 + ], + [ + "▁medicine", + -10.344236373901367 + ], + [ + "▁depth", + -10.344285011291504 + ], + [ + "▁Thomas", + -10.344378471374512 + ], + [ + "▁technique", + -10.345001220703125 + ], + [ + "▁apartment", + -10.345945358276367 + ], + [ + "▁template", + -10.347600936889648 + ], + [ + "75", + -10.348018646240234 + ], + [ + "▁manufacturer", + -10.348678588867188 + ], + [ + "▁Looking", + -10.34990119934082 + ], + [ + "▁Ro", + -10.350107192993164 + ], + [ + "stone", + -10.35031509399414 + ], + [ + "▁scheduled", + -10.35098934173584 + ], + [ + "▁Through", + -10.351046562194824 + ], + [ + "▁golf", + -10.352315902709961 + ], + [ + "▁Game", + -10.35293197631836 + ], + [ + "▁choosing", + -10.353135108947754 + ], + [ + "ven", + -10.353676795959473 + ], + [ + "▁Russia", + -10.354166030883789 + ], + [ + "▁reduction", + -10.354642868041992 + ], + [ + "room", + -10.354752540588379 + ], + [ + "▁airport", + -10.354965209960938 + ], + [ + "▁boy", + -10.355584144592285 + ], + [ + "▁recognized", + -10.355659484863281 + ], + [ + "▁Watch", + -10.356141090393066 + ], + [ + "▁television", + -10.356253623962402 + ], + [ + "▁featuring", + -10.356371879577637 + ], + [ + "▁agreed", + -10.356900215148926 + ], + [ + "▁atmosphere", + -10.35787296295166 + ], + [ + "▁scientific", + -10.358712196350098 + ], + [ + "▁protected", + -10.359505653381348 + ], + [ + "▁ran", + -10.359943389892578 + ], + [ + "▁300", + -10.360018730163574 + ], + [ + "▁closely", + -10.360020637512207 + ], + [ + "▁Auto", + -10.360218048095703 + ], + [ + "▁healthcare", + -10.360455513000488 + ], + [ + "▁entirely", + -10.360883712768555 + ], + [ + "▁designer", + -10.360966682434082 + ], + [ + "▁Energy", + -10.361116409301758 + ], + [ + "▁Town", + -10.361295700073242 + ], + [ + "▁nearby", + -10.361395835876465 + ], + [ + "▁formed", + -10.361560821533203 + ], + [ + "▁Human", + -10.361865043640137 + ], + [ + "▁usual", + -10.361933708190918 + ], + [ + "▁upcoming", + -10.362009048461914 + ], + [ + "▁monitor", + -10.362639427185059 + ], + [ + "▁Hu", + -10.363813400268555 + ], + [ + "▁loans", + -10.364250183105469 + ], + [ + "▁boost", + -10.36482048034668 + ], + [ + "▁log", + -10.36550235748291 + ], + [ + "IT", + -10.36550521850586 + ], + [ + "▁wheel", + -10.365663528442383 + ], + [ + "▁oven", + -10.366507530212402 + ], + [ + "▁Chris", + -10.366626739501953 + ], + [ + "▁objects", + -10.36667537689209 + ], + [ + "▁agents", + -10.367241859436035 + ], + [ + "▁architecture", + -10.3675537109375 + ], + [ + "▁arm", + -10.368572235107422 + ], + [ + "▁2008", + -10.36894416809082 + ], + [ + "▁capable", + -10.369059562683105 + ], + [ + "▁Look", + -10.369382858276367 + ], + [ + "▁fell", + -10.369563102722168 + ], + [ + "▁bio", + -10.369843482971191 + ], + [ + "▁2017.", + -10.369977951049805 + ], + [ + "▁component", + -10.370022773742676 + ], + [ + "▁regulations", + -10.370110511779785 + ], + [ + "▁worse", + -10.37035083770752 + ], + [ + "▁exposure", + -10.371423721313477 + ], + [ + "▁Cor", + -10.371627807617188 + ], + [ + "▁identity", + -10.372025489807129 + ], + [ + "▁surprise", + -10.372123718261719 + ], + [ + "▁Lu", + -10.372754096984863 + ], + [ + "▁expression", + -10.373135566711426 + ], + [ + "▁informed", + -10.373252868652344 + ], + [ + "▁throw", + -10.374017715454102 + ], + [ + "▁Mi", + -10.374330520629883 + ], + [ + "▁facing", + -10.374361038208008 + ], + [ + "era", + -10.375237464904785 + ], + [ + "▁serves", + -10.376042366027832 + ], + [ + "▁missed", + -10.37610149383545 + ], + [ + "▁deck", + -10.376152992248535 + ], + [ + "▁membership", + -10.376971244812012 + ], + [ + "▁Tri", + -10.377243995666504 + ], + [ + "▁generate", + -10.37743091583252 + ], + [ + "▁certified", + -10.377496719360352 + ], + [ + "▁sister", + -10.378080368041992 + ], + [ + "▁Academy", + -10.378575325012207 + ], + [ + "▁mixed", + -10.379258155822754 + ], + [ + "▁partnership", + -10.379514694213867 + ], + [ + "▁2009", + -10.37967586517334 + ], + [ + "▁collected", + -10.380446434020996 + ], + [ + "▁fly", + -10.380837440490723 + ], + [ + "OR", + -10.381056785583496 + ], + [ + "▁Step", + -10.381305694580078 + ], + [ + "▁celebrate", + -10.381325721740723 + ], + [ + "▁bread", + -10.38179874420166 + ], + [ + "row", + -10.381842613220215 + ], + [ + "▁liquid", + -10.382046699523926 + ], + [ + "27", + -10.38249397277832 + ], + [ + "ck", + -10.382935523986816 + ], + [ + "▁dental", + -10.384218215942383 + ], + [ + "▁desk", + -10.385050773620605 + ], + [ + "ker", + -10.385107040405273 + ], + [ + "water", + -10.385644912719727 + ], + [ + "▁Har", + -10.386040687561035 + ], + [ + "▁personally", + -10.386139869689941 + ], + [ + "▁Shop", + -10.386171340942383 + ], + [ + "▁meetings", + -10.386445045471191 + ], + [ + "▁Small", + -10.386701583862305 + ], + [ + "▁religious", + -10.388097763061523 + ], + [ + "▁killed", + -10.389240264892578 + ], + [ + "▁gun", + -10.389693260192871 + ], + [ + "▁mortgage", + -10.38976001739502 + ], + [ + "▁monitoring", + -10.389814376831055 + ], + [ + "▁savings", + -10.389928817749023 + ], + [ + "▁Site", + -10.389941215515137 + ], + [ + "▁Mexico", + -10.390690803527832 + ], + [ + "▁vast", + -10.3909330368042 + ], + [ + "▁researchers", + -10.391395568847656 + ], + [ + "▁stopped", + -10.392158508300781 + ], + [ + "▁Should", + -10.39226245880127 + ], + [ + "▁Line", + -10.392345428466797 + ], + [ + "\\", + -10.39367389678955 + ], + [ + "▁guidance", + -10.394057273864746 + ], + [ + "▁drugs", + -10.394331932067871 + ], + [ + "▁winner", + -10.394634246826172 + ], + [ + "▁quote", + -10.394779205322266 + ], + [ + "▁trend", + -10.39495849609375 + ], + [ + "▁convenient", + -10.395532608032227 + ], + [ + "▁authority", + -10.39611530303955 + ], + [ + "▁styles", + -10.396294593811035 + ], + [ + "▁IP", + -10.396306991577148 + ], + [ + "Despite", + -10.396964073181152 + ], + [ + "▁plays", + -10.3974027633667 + ], + [ + "long", + -10.398245811462402 + ], + [ + "▁consistent", + -10.398653030395508 + ], + [ + "▁crucial", + -10.39996337890625 + ], + [ + "▁finance", + -10.400278091430664 + ], + [ + "▁attached", + -10.40062427520752 + ], + [ + "▁dangerous", + -10.40108871459961 + ], + [ + "▁comparison", + -10.401399612426758 + ], + [ + "▁Paris", + -10.40177059173584 + ], + [ + "▁William", + -10.401867866516113 + ], + [ + "tri", + -10.402261734008789 + ], + [ + "▁appeal", + -10.40242862701416 + ], + [ + "▁soul", + -10.40279483795166 + ], + [ + "▁normally", + -10.402801513671875 + ], + [ + "▁Unfortunately", + -10.402812957763672 + ], + [ + "▁talent", + -10.402975082397461 + ], + [ + "▁equipped", + -10.403279304504395 + ], + [ + "▁2019.", + -10.404197692871094 + ], + [ + "▁leg", + -10.404319763183594 + ], + [ + "▁charged", + -10.405011177062988 + ], + [ + "ging", + -10.40524673461914 + ], + [ + "▁noticed", + -10.40538501739502 + ], + [ + "▁dealing", + -10.40551471710205 + ], + [ + "▁Su", + -10.405648231506348 + ], + [ + "▁mainly", + -10.405779838562012 + ], + [ + "▁cute", + -10.406153678894043 + ], + [ + "▁orders", + -10.406416893005371 + ], + [ + "iz", + -10.406664848327637 + ], + [ + "▁musical", + -10.406782150268555 + ], + [ + "▁resume", + -10.407418251037598 + ], + [ + "▁mis", + -10.40777587890625 + ], + [ + "▁dish", + -10.407819747924805 + ], + [ + "▁mom", + -10.408241271972656 + ], + [ + "▁inches", + -10.4085111618042 + ], + [ + "ram", + -10.40854549407959 + ], + [ + "▁positions", + -10.408682823181152 + ], + [ + "▁obvious", + -10.408921241760254 + ], + [ + "▁Spring", + -10.40983772277832 + ], + [ + "▁jump", + -10.409878730773926 + ], + [ + "▁bonus", + -10.410247802734375 + ], + [ + "▁Store", + -10.410481452941895 + ], + [ + "▁Cup", + -10.410515785217285 + ], + [ + "▁framework", + -10.410639762878418 + ], + [ + "▁improving", + -10.411233901977539 + ], + [ + "▁reputation", + -10.411689758300781 + ], + [ + "▁Welcome", + -10.41181468963623 + ], + [ + "▁express", + -10.412435531616211 + ], + [ + "▁turns", + -10.412540435791016 + ], + [ + ");", + -10.412866592407227 + ], + [ + "▁obtained", + -10.412943840026855 + ], + [ + "▁urban", + -10.413037300109863 + ], + [ + "▁Right", + -10.413276672363281 + ], + [ + "▁cap", + -10.413433074951172 + ], + [ + "gan", + -10.414026260375977 + ], + [ + "▁border", + -10.414163589477539 + ], + [ + "class", + -10.414253234863281 + ], + [ + "▁logo", + -10.414533615112305 + ], + [ + "site", + -10.41458511352539 + ], + [ + "▁picked", + -10.414896965026855 + ], + [ + "▁organized", + -10.415233612060547 + ], + [ + "▁ancient", + -10.415772438049316 + ], + [ + "▁lessons", + -10.416686058044434 + ], + [ + "quality", + -10.417065620422363 + ], + [ + "related", + -10.41728401184082 + ], + [ + "▁portfolio", + -10.417298316955566 + ], + [ + "▁movies", + -10.4173583984375 + ], + [ + "▁fishing", + -10.417390823364258 + ], + [ + "▁bi", + -10.417452812194824 + ], + [ + "▁expenses", + -10.417569160461426 + ], + [ + "▁trends", + -10.417715072631836 + ], + [ + "▁Digital", + -10.417915344238281 + ], + [ + "▁carbon", + -10.417954444885254 + ], + [ + "ade", + -10.419280052185059 + ], + [ + "▁clothes", + -10.419327735900879 + ], + [ + "▁implement", + -10.419331550598145 + ], + [ + "▁tested", + -10.419638633728027 + ], + [ + "▁mixture", + -10.420221328735352 + ], + [ + "ID", + -10.420340538024902 + ], + [ + "▁fitness", + -10.42072582244873 + ], + [ + "35", + -10.421228408813477 + ], + [ + "▁Start", + -10.421326637268066 + ], + [ + "▁noise", + -10.421706199645996 + ], + [ + "US", + -10.421831130981445 + ], + [ + "▁dynamic", + -10.421934127807617 + ], + [ + "▁strategic", + -10.422370910644531 + ], + [ + "▁ongoing", + -10.422465324401855 + ], + [ + "▁stars", + -10.42318058013916 + ], + [ + "▁wearing", + -10.423295021057129 + ], + [ + "ez", + -10.425703048706055 + ], + [ + "▁Guide", + -10.426061630249023 + ], + [ + "▁Video", + -10.426129341125488 + ], + [ + "▁discussed", + -10.426140785217285 + ], + [ + "▁transportation", + -10.426202774047852 + ], + [ + "▁virtual", + -10.426284790039062 + ], + [ + "▁goods", + -10.426458358764648 + ], + [ + "▁Thus", + -10.426759719848633 + ], + [ + "▁filter", + -10.426788330078125 + ], + [ + "▁Price", + -10.427416801452637 + ], + [ + "▁5.", + -10.427518844604492 + ], + [ + "▁pm", + -10.427680969238281 + ], + [ + "▁Land", + -10.428455352783203 + ], + [ + "▁grew", + -10.428499221801758 + ], + [ + "▁honest", + -10.428515434265137 + ], + [ + "▁spaces", + -10.428813934326172 + ], + [ + "▁stands", + -10.428844451904297 + ], + [ + "▁vary", + -10.429228782653809 + ], + [ + "▁crew", + -10.429976463317871 + ], + [ + "▁workshop", + -10.430360794067383 + ], + [ + "▁investigation", + -10.43114185333252 + ], + [ + "▁Try", + -10.431554794311523 + ], + [ + "▁turning", + -10.431841850280762 + ], + [ + "▁gallery", + -10.432141304016113 + ], + [ + "▁capture", + -10.432278633117676 + ], + [ + "°", + -10.432394027709961 + ], + [ + "49", + -10.43246078491211 + ], + [ + "▁returns", + -10.432509422302246 + ], + [ + "▁powder", + -10.432516098022461 + ], + [ + "▁wire", + -10.43292236328125 + ], + [ + "▁gifts", + -10.433087348937988 + ], + [ + "▁earned", + -10.433212280273438 + ], + [ + "▁entered", + -10.434056282043457 + ], + [ + "▁Middle", + -10.434285163879395 + ], + [ + "▁noted", + -10.434556007385254 + ], + [ + "▁candidate", + -10.434728622436523 + ], + [ + "▁campus", + -10.43501091003418 + ], + [ + "▁pleased", + -10.43597412109375 + ], + [ + "▁unable", + -10.436403274536133 + ], + [ + "▁arrive", + -10.436904907226562 + ], + [ + "▁Professional", + -10.43695068359375 + ], + [ + "▁labor", + -10.437057495117188 + ], + [ + "▁chemical", + -10.437337875366211 + ], + [ + "▁banks", + -10.437928199768066 + ], + [ + "▁shift", + -10.43828010559082 + ], + [ + "▁managing", + -10.438348770141602 + ], + [ + "▁moments", + -10.438629150390625 + ], + [ + "▁slot", + -10.438740730285645 + ], + [ + "▁recognize", + -10.439406394958496 + ], + [ + "box", + -10.439455032348633 + ], + [ + "▁printed", + -10.4397611618042 + ], + [ + "▁tiny", + -10.43982219696045 + ], + [ + "▁constant", + -10.440055847167969 + ], + [ + "▁Hospital", + -10.44007682800293 + ], + [ + "▁sustainable", + -10.440284729003906 + ], + [ + "jo", + -10.440337181091309 + ], + [ + "▁Join", + -10.442527770996094 + ], + [ + "▁yesterday", + -10.443306922912598 + ], + [ + "▁mill", + -10.443720817565918 + ], + [ + "▁brief", + -10.44379711151123 + ], + [ + "▁bottle", + -10.443949699401855 + ], + [ + "▁acid", + -10.444433212280273 + ], + [ + "you", + -10.44534969329834 + ], + [ + "$", + -10.445363998413086 + ], + [ + "▁resulting", + -10.446002960205078 + ], + [ + "▁desired", + -10.446282386779785 + ], + [ + "▁Library", + -10.44654655456543 + ], + [ + "▁spiritual", + -10.446609497070312 + ], + [ + "▁fellow", + -10.447397232055664 + ], + [ + "▁tank", + -10.447464942932129 + ], + [ + "▁attorney", + -10.447796821594238 + ], + [ + "▁civil", + -10.447945594787598 + ], + [ + "13", + -10.448280334472656 + ], + [ + "24", + -10.448304176330566 + ], + [ + "▁risks", + -10.448318481445312 + ], + [ + "▁Lee", + -10.448443412780762 + ], + [ + "▁Mike", + -10.4486083984375 + ], + [ + "▁communicate", + -10.448648452758789 + ], + [ + "▁tech", + -10.44865894317627 + ], + [ + "▁2000", + -10.44874382019043 + ], + [ + "▁craft", + -10.448833465576172 + ], + [ + "▁indeed", + -10.449094772338867 + ], + [ + "▁minor", + -10.449341773986816 + ], + [ + "▁fairly", + -10.449423789978027 + ], + [ + "▁mining", + -10.449572563171387 + ], + [ + "▁alcohol", + -10.44963264465332 + ], + [ + "▁citizens", + -10.449699401855469 + ], + [ + "▁broad", + -10.44970703125 + ], + [ + "▁Ra", + -10.449874877929688 + ], + [ + "▁Class", + -10.450243949890137 + ], + [ + "▁honor", + -10.45069694519043 + ], + [ + "▁filed", + -10.450699806213379 + ], + [ + "▁percentage", + -10.45074462890625 + ], + [ + "list", + -10.451144218444824 + ], + [ + "▁Federal", + -10.451446533203125 + ], + [ + "▁achieved", + -10.451498985290527 + ], + [ + "▁graduate", + -10.451674461364746 + ], + [ + "▁(19", + -10.452066421508789 + ], + [ + "▁Dec", + -10.452593803405762 + ], + [ + "▁zone", + -10.453146934509277 + ], + [ + "▁Te", + -10.45350456237793 + ], + [ + "▁poker", + -10.453641891479492 + ], + [ + "ide", + -10.453716278076172 + ], + [ + "▁MS", + -10.454092979431152 + ], + [ + "▁Port", + -10.455119132995605 + ], + [ + "40", + -10.455290794372559 + ], + [ + "▁Ba", + -10.455382347106934 + ], + [ + "▁pure", + -10.455490112304688 + ], + [ + "▁Mill", + -10.455537796020508 + ], + [ + "▁Santa", + -10.455818176269531 + ], + [ + "▁photography", + -10.455886840820312 + ], + [ + "▁reporting", + -10.456290245056152 + ], + [ + "500", + -10.45655632019043 + ], + [ + "▁pot", + -10.456897735595703 + ], + [ + "▁Spanish", + -10.456901550292969 + ], + [ + "▁speech", + -10.456995010375977 + ], + [ + "▁profit", + -10.457019805908203 + ], + [ + "MS", + -10.457140922546387 + ], + [ + "▁neighborhood", + -10.457467079162598 + ], + [ + "▁Ab", + -10.457618713378906 + ], + [ + "▁possibility", + -10.457717895507812 + ], + [ + "▁contrast", + -10.45810317993164 + ], + [ + "▁Inter", + -10.458877563476562 + ], + [ + "▁preparation", + -10.459543228149414 + ], + [ + "▁networks", + -10.460061073303223 + ], + [ + "▁approval", + -10.460112571716309 + ], + [ + "▁thread", + -10.460238456726074 + ], + [ + "▁Little", + -10.460350036621094 + ], + [ + "▁Such", + -10.460355758666992 + ], + [ + "▁Yet", + -10.460630416870117 + ], + [ + "100", + -10.460799217224121 + ], + [ + "?\"", + -10.460965156555176 + ], + [ + "▁revealed", + -10.461365699768066 + ], + [ + "▁resistance", + -10.46172046661377 + ], + [ + "level", + -10.461874008178711 + ], + [ + "▁Jersey", + -10.462320327758789 + ], + [ + "▁Angeles", + -10.46253776550293 + ], + [ + "28", + -10.462581634521484 + ], + [ + "▁gorgeous", + -10.462822914123535 + ], + [ + "▁marriage", + -10.462985038757324 + ], + [ + "uff", + -10.463860511779785 + ], + [ + "▁west", + -10.464092254638672 + ], + [ + "▁36", + -10.464187622070312 + ], + [ + "▁explained", + -10.46477222442627 + ], + [ + "▁manufacturers", + -10.465210914611816 + ], + [ + "▁linked", + -10.465289115905762 + ], + [ + "▁committee", + -10.465388298034668 + ], + [ + "▁impossible", + -10.465821266174316 + ], + [ + "▁whenever", + -10.466092109680176 + ], + [ + "▁increases", + -10.466232299804688 + ], + [ + "▁RE", + -10.466264724731445 + ], + [ + "38", + -10.467788696289062 + ], + [ + "▁attractive", + -10.4678955078125 + ], + [ + "▁officer", + -10.46873950958252 + ], + [ + "▁performing", + -10.46920108795166 + ], + [ + "▁End", + -10.469904899597168 + ], + [ + "▁suggested", + -10.469939231872559 + ], + [ + "▁spa", + -10.470463752746582 + ], + [ + "▁Though", + -10.470884323120117 + ], + [ + "more", + -10.471342086791992 + ], + [ + "▁consultation", + -10.471455574035645 + ], + [ + "rate", + -10.472356796264648 + ], + [ + "▁array", + -10.472620964050293 + ], + [ + "▁forced", + -10.472882270812988 + ], + [ + "▁accessories", + -10.472979545593262 + ], + [ + "▁Being", + -10.473016738891602 + ], + [ + "▁<", + -10.473809242248535 + ], + [ + "▁deposit", + -10.473995208740234 + ], + [ + "▁Richard", + -10.475286483764648 + ], + [ + "▁Chief", + -10.475464820861816 + ], + [ + "▁boys", + -10.475849151611328 + ], + [ + "▁Gi", + -10.476396560668945 + ], + [ + "▁taxes", + -10.476531982421875 + ], + [ + "▁immediate", + -10.476598739624023 + ], + [ + "▁Bible", + -10.476842880249023 + ], + [ + "▁Virginia", + -10.477083206176758 + ], + [ + "▁extension", + -10.477151870727539 + ], + [ + "▁MP", + -10.477727890014648 + ], + [ + "90", + -10.478833198547363 + ], + [ + "▁valid", + -10.4788818359375 + ], + [ + "48", + -10.479337692260742 + ], + [ + "▁proven", + -10.48036003112793 + ], + [ + "ium", + -10.480768203735352 + ], + [ + "▁Police", + -10.481365203857422 + ], + [ + "▁relief", + -10.481437683105469 + ], + [ + "▁calendar", + -10.481738090515137 + ], + [ + "▁Three", + -10.48181438446045 + ], + [ + "▁Travel", + -10.48181438446045 + ], + [ + "isation", + -10.48279094696045 + ], + [ + "▁Building", + -10.48279857635498 + ], + [ + "▁listening", + -10.483404159545898 + ], + [ + "lie", + -10.484209060668945 + ], + [ + "▁specialist", + -10.484553337097168 + ], + [ + "▁originally", + -10.48461627960205 + ], + [ + "▁telling", + -10.484702110290527 + ], + [ + "ical", + -10.48482894897461 + ], + [ + "SE", + -10.484990119934082 + ], + [ + "▁crisis", + -10.48508358001709 + ], + [ + "ture", + -10.486002922058105 + ], + [ + "▁Would", + -10.486486434936523 + ], + [ + "▁root", + -10.486492156982422 + ], + [ + "▁$3", + -10.488471031188965 + ], + [ + "▁supports", + -10.489374160766602 + ], + [ + "▁chief", + -10.489776611328125 + ], + [ + "▁Italy", + -10.489972114562988 + ], + [ + "▁Remember", + -10.490067481994629 + ], + [ + "▁visited", + -10.490106582641602 + ], + [ + "▁availability", + -10.490147590637207 + ], + [ + "▁horse", + -10.49075698852539 + ], + [ + "▁superior", + -10.490930557250977 + ], + [ + "▁Key", + -10.491183280944824 + ], + [ + "▁folks", + -10.491326332092285 + ], + [ + "▁establish", + -10.49172306060791 + ], + [ + "▁injuries", + -10.49194049835205 + ], + [ + "▁Mobile", + -10.492410659790039 + ], + [ + "▁Garden", + -10.49267578125 + ], + [ + "39", + -10.49354362487793 + ], + [ + "▁shops", + -10.49359130859375 + ], + [ + "▁dates", + -10.493757247924805 + ], + [ + "▁label", + -10.494751930236816 + ], + [ + "▁Fund", + -10.494758605957031 + ], + [ + "▁stored", + -10.49480152130127 + ], + [ + "ries", + -10.494921684265137 + ], + [ + "▁describe", + -10.494927406311035 + ], + [ + "▁represents", + -10.495096206665039 + ], + [ + "▁afford", + -10.49510383605957 + ], + [ + "▁Ca", + -10.495116233825684 + ], + [ + "▁historic", + -10.495186805725098 + ], + [ + "▁formal", + -10.495307922363281 + ], + [ + "▁Second", + -10.495903968811035 + ], + [ + "▁Ireland", + -10.496196746826172 + ], + [ + "▁ends", + -10.496646881103516 + ], + [ + "▁drawing", + -10.496665954589844 + ], + [ + "▁invest", + -10.496749877929688 + ], + [ + "▁dust", + -10.496758460998535 + ], + [ + "▁recording", + -10.496793746948242 + ], + [ + "60", + -10.49782657623291 + ], + [ + "▁Insurance", + -10.49785327911377 + ], + [ + "▁Pi", + -10.498233795166016 + ], + [ + "▁crowd", + -10.498602867126465 + ], + [ + "▁severe", + -10.498849868774414 + ], + [ + "▁Bi", + -10.49932861328125 + ], + [ + "▁smile", + -10.49941349029541 + ], + [ + "▁episode", + -10.501773834228516 + ], + [ + "▁Scott", + -10.501890182495117 + ], + [ + "▁Mor", + -10.501982688903809 + ], + [ + "▁AM", + -10.502165794372559 + ], + [ + "friendly", + -10.502394676208496 + ], + [ + "▁index", + -10.502674102783203 + ], + [ + "sel", + -10.503071784973145 + ], + [ + "ding", + -10.503098487854004 + ], + [ + "▁criminal", + -10.50334358215332 + ], + [ + "▁arts", + -10.503656387329102 + ], + [ + "▁none", + -10.504491806030273 + ], + [ + "▁county", + -10.504663467407227 + ], + [ + "▁attract", + -10.504875183105469 + ], + [ + "▁Report", + -10.504934310913086 + ], + [ + "▁industries", + -10.505537033081055 + ], + [ + "▁clothing", + -10.506749153137207 + ], + [ + "▁Trust", + -10.506937026977539 + ], + [ + "á", + -10.507129669189453 + ], + [ + "▁flavor", + -10.507218360900879 + ], + [ + "▁Additionally", + -10.507229804992676 + ], + [ + "▁tip", + -10.507291793823242 + ], + [ + "▁Vi", + -10.507534980773926 + ], + [ + "▁LED", + -10.507583618164062 + ], + [ + "▁Carolina", + -10.507975578308105 + ], + [ + "▁Instagram", + -10.508074760437012 + ], + [ + "▁meals", + -10.508463859558105 + ], + [ + "-19", + -10.508752822875977 + ], + [ + "▁replaced", + -10.509039878845215 + ], + [ + "▁Obama", + -10.50911808013916 + ], + [ + "▁History", + -10.509137153625488 + ], + [ + "▁48", + -10.509140014648438 + ], + [ + "▁km", + -10.509157180786133 + ], + [ + "▁Boston", + -10.509233474731445 + ], + [ + "21", + -10.50927448272705 + ], + [ + "▁hidden", + -10.509430885314941 + ], + [ + "▁split", + -10.509730339050293 + ], + [ + "):", + -10.510481834411621 + ], + [ + "▁Local", + -10.510595321655273 + ], + [ + "▁referred", + -10.51110553741455 + ], + [ + "▁routine", + -10.511432647705078 + ], + [ + "▁DC", + -10.511490821838379 + ], + [ + "▁attended", + -10.511807441711426 + ], + [ + "▁weekly", + -10.51184368133545 + ], + [ + "▁Executive", + -10.511914253234863 + ], + [ + "▁enterprise", + -10.512127876281738 + ], + [ + "ball", + -10.512301445007324 + ], + [ + "▁ages", + -10.512391090393066 + ], + [ + "▁rice", + -10.512651443481445 + ], + [ + "▁Kitchen", + -10.512791633605957 + ], + [ + "▁luck", + -10.513042449951172 + ], + [ + "▁thin", + -10.513127326965332 + ], + [ + "▁printing", + -10.513250350952148 + ], + [ + "▁platforms", + -10.514052391052246 + ], + [ + "▁Americans", + -10.514310836791992 + ], + [ + "▁shooting", + -10.514330863952637 + ], + [ + "▁Still", + -10.5143461227417 + ], + [ + "▁assume", + -10.514690399169922 + ], + [ + "▁invited", + -10.51471996307373 + ], + [ + "▁ST", + -10.514968872070312 + ], + [ + "▁bags", + -10.515519142150879 + ], + [ + "▁widely", + -10.515769004821777 + ], + [ + "▁tells", + -10.51597785949707 + ], + [ + "▁pricing", + -10.51622486114502 + ], + [ + "▁Machine", + -10.51657772064209 + ], + [ + "▁thick", + -10.5166015625 + ], + [ + "▁2016.", + -10.518157005310059 + ], + [ + "▁introduction", + -10.518415451049805 + ], + [ + "cat", + -10.518577575683594 + ], + [ + "▁ocean", + -10.51884651184082 + ], + [ + "▁Pe", + -10.518917083740234 + ], + [ + "▁stream", + -10.518963813781738 + ], + [ + "▁losing", + -10.519538879394531 + ], + [ + "▁muscle", + -10.519580841064453 + ], + [ + "▁communications", + -10.519584655761719 + ], + [ + "form", + -10.519719123840332 + ], + [ + "▁magazine", + -10.519865989685059 + ], + [ + "▁yard", + -10.520195960998535 + ], + [ + "▁chapter", + -10.520410537719727 + ], + [ + "▁grant", + -10.521074295043945 + ], + [ + "▁Financial", + -10.521080017089844 + ], + [ + "▁primarily", + -10.521455764770508 + ], + [ + "▁hurt", + -10.521713256835938 + ], + [ + "▁scheme", + -10.521919250488281 + ], + [ + "▁ordered", + -10.522656440734863 + ], + [ + "▁east", + -10.522764205932617 + ], + [ + "ash", + -10.523484230041504 + ], + [ + "▁letters", + -10.523764610290527 + ], + [ + "sch", + -10.524374008178711 + ], + [ + "▁fail", + -10.524611473083496 + ], + [ + "▁reader", + -10.525252342224121 + ], + [ + "▁enables", + -10.525614738464355 + ], + [ + "▁ultimate", + -10.525728225708008 + ], + [ + "▁submitted", + -10.525879859924316 + ], + [ + "ably", + -10.526107788085938 + ], + [ + "▁·", + -10.52661418914795 + ], + [ + "▁Website", + -10.526711463928223 + ], + [ + "ick", + -10.527244567871094 + ], + [ + "▁principles", + -10.527596473693848 + ], + [ + "▁neck", + -10.528044700622559 + ], + [ + "▁conflict", + -10.528271675109863 + ], + [ + "?”", + -10.528478622436523 + ], + [ + "▁bridge", + -10.528481483459473 + ], + [ + "▁bodies", + -10.528857231140137 + ], + [ + "▁applicable", + -10.528985023498535 + ], + [ + "▁differences", + -10.529600143432617 + ], + [ + "lar", + -10.529851913452148 + ], + [ + "▁inner", + -10.529963493347168 + ], + [ + "▁transaction", + -10.53028678894043 + ], + [ + "ign", + -10.530497550964355 + ], + [ + "▁Southern", + -10.530940055847168 + ], + [ + "▁beer", + -10.531122207641602 + ], + [ + "▁papers", + -10.532676696777344 + ], + [ + "▁lock", + -10.532805442810059 + ], + [ + "▁Perhaps", + -10.533244132995605 + ], + [ + "▁decade", + -10.533307075500488 + ], + [ + "▁Area", + -10.533501625061035 + ], + [ + "▁consideration", + -10.533645629882812 + ], + [ + "▁reducing", + -10.534163475036621 + ], + [ + "▁surprised", + -10.5343599319458 + ], + [ + "▁festival", + -10.534380912780762 + ], + [ + "▁Young", + -10.534635543823242 + ], + [ + "mar", + -10.534778594970703 + ], + [ + "▁Systems", + -10.535842895507812 + ], + [ + "▁proof", + -10.535993576049805 + ], + [ + "▁capabilities", + -10.535999298095703 + ], + [ + "▁league", + -10.536060333251953 + ], + [ + "istic", + -10.536820411682129 + ], + [ + "▁Help", + -10.537008285522461 + ], + [ + "▁permanent", + -10.537129402160645 + ], + [ + "▁ultimately", + -10.537203788757324 + ], + [ + "].", + -10.537371635437012 + ], + [ + "▁versions", + -10.537985801696777 + ], + [ + "star", + -10.538061141967773 + ], + [ + "▁Card", + -10.53833293914795 + ], + [ + "▁seriously", + -10.538355827331543 + ], + [ + "▁compliance", + -10.5383882522583 + ], + [ + "▁Visit", + -10.538789749145508 + ], + [ + "low", + -10.539046287536621 + ], + [ + "▁eligible", + -10.539163589477539 + ], + [ + "▁realized", + -10.539237976074219 + ], + [ + "▁tables", + -10.539292335510254 + ], + [ + "▁founded", + -10.539681434631348 + ], + [ + "▁NY", + -10.539884567260742 + ], + [ + "▁healing", + -10.54013729095459 + ], + [ + "▁carpet", + -10.540162086486816 + ], + [ + "▁abuse", + -10.540735244750977 + ], + [ + "▁handling", + -10.541156768798828 + ], + [ + "▁wireless", + -10.541279792785645 + ], + [ + "44", + -10.541342735290527 + ], + [ + "▁https", + -10.54141616821289 + ], + [ + "▁Ti", + -10.541431427001953 + ], + [ + "▁chart", + -10.541786193847656 + ], + [ + "▁van", + -10.54198932647705 + ], + [ + "▁keeps", + -10.541997909545898 + ], + [ + "▁SEO", + -10.542051315307617 + ], + [ + "▁FOR", + -10.542290687561035 + ], + [ + "▁spoke", + -10.542329788208008 + ], + [ + "▁estimated", + -10.542720794677734 + ], + [ + "▁supposed", + -10.54274845123291 + ], + [ + "▁developers", + -10.542885780334473 + ], + [ + "▁duty", + -10.543160438537598 + ], + [ + "▁narrow", + -10.543486595153809 + ], + [ + "▁pleasure", + -10.54356861114502 + ], + [ + "ki", + -10.543588638305664 + ], + [ + "▁creates", + -10.543671607971191 + ], + [ + "▁ski", + -10.543761253356934 + ], + [ + "▁inform", + -10.543783187866211 + ], + [ + "▁depends", + -10.544224739074707 + ], + [ + "▁films", + -10.544953346252441 + ], + [ + "▁passing", + -10.545378684997559 + ], + [ + "▁awarded", + -10.545880317687988 + ], + [ + "▁raw", + -10.546452522277832 + ], + [ + "▁household", + -10.54660701751709 + ], + [ + "▁Ph", + -10.546772956848145 + ], + [ + "▁functional", + -10.546844482421875 + ], + [ + "TC", + -10.547383308410645 + ], + [ + "01", + -10.547574996948242 + ], + [ + "▁kid", + -10.548157691955566 + ], + [ + "▁chose", + -10.548429489135742 + ], + [ + "▁Section", + -10.548487663269043 + ], + [ + "▁categories", + -10.549701690673828 + ], + [ + "▁rating", + -10.550034523010254 + ], + [ + "▁extent", + -10.550573348999023 + ], + [ + "▁Page", + -10.55078125 + ], + [ + "▁Coast", + -10.550970077514648 + ], + [ + "▁guitar", + -10.550986289978027 + ], + [ + "▁satisfaction", + -10.551092147827148 + ], + [ + "56", + -10.551470756530762 + ], + [ + "▁Van", + -10.551673889160156 + ], + [ + "▁figures", + -10.551891326904297 + ], + [ + "▁hang", + -10.55190658569336 + ], + [ + "▁boxes", + -10.551921844482422 + ], + [ + "▁elegant", + -10.552314758300781 + ], + [ + "▁UN", + -10.552573204040527 + ], + [ + "▁Times", + -10.552717208862305 + ], + [ + "ensuring", + -10.552810668945312 + ], + [ + "ix", + -10.553667068481445 + ], + [ + "▁examine", + -10.553672790527344 + ], + [ + "▁purchasing", + -10.553894996643066 + ], + [ + "▁integration", + -10.55398178100586 + ], + [ + "22", + -10.554786682128906 + ], + [ + "▁doctors", + -10.554854393005371 + ], + [ + "▁Jack", + -10.55500602722168 + ], + [ + "▁clock", + -10.555059432983398 + ], + [ + "▁Cat", + -10.555583000183105 + ], + [ + "▁saved", + -10.555933952331543 + ], + [ + "▁MA", + -10.556076049804688 + ], + [ + "▁Photo", + -10.557043075561523 + ], + [ + "▁kick", + -10.557136535644531 + ], + [ + "▁usage", + -10.557263374328613 + ], + [ + "▁Marketing", + -10.557734489440918 + ], + [ + "▁recipes", + -10.557766914367676 + ], + [ + "making", + -10.557865142822266 + ], + [ + "34", + -10.55797004699707 + ], + [ + "▁sending", + -10.558409690856934 + ], + [ + "▁firms", + -10.558443069458008 + ], + [ + "▁Stone", + -10.558618545532227 + ], + [ + "▁recommendations", + -10.558629989624023 + ], + [ + "▁guidelines", + -10.55871868133545 + ], + [ + "▁producing", + -10.559052467346191 + ], + [ + "run", + -10.559257507324219 + ], + [ + "▁justice", + -10.559492111206055 + ], + [ + "▁authorities", + -10.560150146484375 + ], + [ + "▁tomorrow", + -10.560194969177246 + ], + [ + "▁confirmed", + -10.560346603393555 + ], + [ + "▁blend", + -10.560751914978027 + ], + [ + "▁setup", + -10.561224937438965 + ], + [ + "MP", + -10.561670303344727 + ], + [ + "▁password", + -10.562163352966309 + ], + [ + "▁violence", + -10.562492370605469 + ], + [ + "SA", + -10.562745094299316 + ], + [ + "top", + -10.562777519226074 + ], + [ + "▁Chi", + -10.562800407409668 + ], + [ + "▁displayed", + -10.562919616699219 + ], + [ + "▁generated", + -10.563109397888184 + ], + [ + "▁magic", + -10.563501358032227 + ], + [ + "17", + -10.563732147216797 + ], + [ + "▁priority", + -10.564062118530273 + ], + [ + "▁slowly", + -10.564117431640625 + ], + [ + "▁sofa", + -10.564141273498535 + ], + [ + "▁pace", + -10.56428050994873 + ], + [ + "▁Ideas", + -10.564587593078613 + ], + [ + "▁Zealand", + -10.564678192138672 + ], + [ + "▁tight", + -10.564902305603027 + ], + [ + "▁arms", + -10.565055847167969 + ], + [ + "▁Mon", + -10.565207481384277 + ], + [ + "ug", + -10.565908432006836 + ], + [ + "▁authors", + -10.566060066223145 + ], + [ + "kar", + -10.566183090209961 + ], + [ + "▁tap", + -10.566533088684082 + ], + [ + "80", + -10.566657066345215 + ], + [ + "▁PDF", + -10.566680908203125 + ], + [ + "▁Engineering", + -10.566734313964844 + ], + [ + "ile", + -10.566773414611816 + ], + [ + "▁FREE", + -10.567065238952637 + ], + [ + "▁somewhere", + -10.56711196899414 + ], + [ + "▁extreme", + -10.56733512878418 + ], + [ + "▁confident", + -10.56817626953125 + ], + [ + "▁Night", + -10.568403244018555 + ], + [ + "▁promise", + -10.568641662597656 + ], + [ + "▁crime", + -10.569290161132812 + ], + [ + "▁Sha", + -10.569613456726074 + ], + [ + "▁memories", + -10.569757461547852 + ], + [ + "▁Space", + -10.56983470916748 + ], + [ + "▁officers", + -10.570003509521484 + ], + [ + "▁2007", + -10.570034980773926 + ], + [ + "▁Test", + -10.5706205368042 + ], + [ + "hat", + -10.570777893066406 + ], + [ + "▁heating", + -10.57104778289795 + ], + [ + "▁Sports", + -10.57111644744873 + ], + [ + "▁YOU", + -10.571764945983887 + ], + [ + "▁pink", + -10.572407722473145 + ], + [ + "▁suffering", + -10.57263469696045 + ], + [ + "▁par", + -10.572654724121094 + ], + [ + "▁inch", + -10.572765350341797 + ], + [ + "▁Order", + -10.57281494140625 + ], + [ + "▁wooden", + -10.5731782913208 + ], + [ + "AS", + -10.574228286743164 + ], + [ + "▁grand", + -10.574363708496094 + ], + [ + "▁aside", + -10.574959754943848 + ], + [ + "▁Model", + -10.575167655944824 + ], + [ + "log", + -10.575411796569824 + ], + [ + "▁involves", + -10.57577133178711 + ], + [ + "▁requirement", + -10.575872421264648 + ], + [ + "▁400", + -10.575892448425293 + ], + [ + "▁seats", + -10.576151847839355 + ], + [ + "▁lucky", + -10.576183319091797 + ], + [ + "▁row", + -10.576484680175781 + ], + [ + "▁upgrade", + -10.577308654785156 + ], + [ + "▁IS", + -10.577630043029785 + ], + [ + "▁structures", + -10.57768726348877 + ], + [ + "▁Word", + -10.578152656555176 + ], + [ + "Fi", + -10.578259468078613 + ], + [ + "▁le", + -10.578878402709961 + ], + [ + "ace", + -10.578906059265137 + ], + [ + "▁increasingly", + -10.579185485839844 + ], + [ + "du", + -10.57931900024414 + ], + [ + "▁Need", + -10.579402923583984 + ], + [ + "ification", + -10.579438209533691 + ], + [ + "ological", + -10.57974910736084 + ], + [ + "▁AC", + -10.579792976379395 + ], + [ + "▁viewed", + -10.58083438873291 + ], + [ + "▁debate", + -10.58146858215332 + ], + [ + "▁male", + -10.581708908081055 + ], + [ + "style", + -10.581713676452637 + ], + [ + "▁channels", + -10.582184791564941 + ], + [ + "ions", + -10.582500457763672 + ], + [ + "▁posting", + -10.582571983337402 + ], + [ + "▁tradition", + -10.583033561706543 + ], + [ + "▁Summer", + -10.583417892456055 + ], + [ + "▁booking", + -10.5835599899292 + ], + [ + "▁lay", + -10.583990097045898 + ], + [ + "▁tape", + -10.584739685058594 + ], + [ + "▁incredibly", + -10.585480690002441 + ], + [ + "▁younger", + -10.585545539855957 + ], + [ + "▁Way", + -10.586294174194336 + ], + [ + "▁hoping", + -10.586920738220215 + ], + [ + "▁entrance", + -10.58712387084961 + ], + [ + "37", + -10.58753776550293 + ], + [ + "▁commonly", + -10.587844848632812 + ], + [ + "▁covering", + -10.58791732788086 + ], + [ + "▁struggle", + -10.587956428527832 + ], + [ + "▁rely", + -10.588346481323242 + ], + [ + "whilst", + -10.588630676269531 + ], + [ + "▁Software", + -10.588896751403809 + ], + [ + "▁alongside", + -10.588982582092285 + ], + [ + "▁Si", + -10.589262962341309 + ], + [ + "▁definition", + -10.589543342590332 + ], + [ + "▁planet", + -10.589944839477539 + ], + [ + "▁utilize", + -10.589964866638184 + ], + [ + "▁$5", + -10.590899467468262 + ], + [ + "▁exhibition", + -10.59167766571045 + ], + [ + "▁swimming", + -10.591684341430664 + ], + [ + "▁Nov", + -10.591788291931152 + ], + [ + "▁Casino", + -10.592004776000977 + ], + [ + "▁Bio", + -10.592682838439941 + ], + [ + "▁2,", + -10.59305477142334 + ], + [ + "▁attacks", + -10.593414306640625 + ], + [ + "▁engaged", + -10.59359359741211 + ], + [ + "▁confirm", + -10.593648910522461 + ], + [ + "▁enjoying", + -10.594322204589844 + ], + [ + "ST", + -10.594430923461914 + ], + [ + "▁wealth", + -10.59472370147705 + ], + [ + "▁behalf", + -10.594754219055176 + ], + [ + "▁Living", + -10.59486198425293 + ], + [ + "▁tab", + -10.595325469970703 + ], + [ + "▁Happy", + -10.59547233581543 + ], + [ + "▁anyway", + -10.595623016357422 + ], + [ + "▁king", + -10.595717430114746 + ], + [ + "▁treatments", + -10.596027374267578 + ], + [ + "▁potentially", + -10.596485137939453 + ], + [ + "▁hole", + -10.596559524536133 + ], + [ + "▁du", + -10.59715461730957 + ], + [ + "▁Fair", + -10.597210884094238 + ], + [ + "rie", + -10.59724235534668 + ], + [ + "tech", + -10.597321510314941 + ], + [ + "▁consumption", + -10.59755802154541 + ], + [ + "47", + -10.597869873046875 + ], + [ + "▁believed", + -10.598146438598633 + ], + [ + "▁coast", + -10.598312377929688 + ], + [ + "▁Oil", + -10.598603248596191 + ], + [ + "▁managers", + -10.599282264709473 + ], + [ + "▁concerning", + -10.599590301513672 + ], + [ + "▁pride", + -10.599952697753906 + ], + [ + "▁worst", + -10.600607872009277 + ], + [ + "▁Access", + -10.600659370422363 + ], + [ + "▁forest", + -10.600842475891113 + ], + [ + "▁venture", + -10.600915908813477 + ], + [ + "To", + -10.60122299194336 + ], + [ + "▁expansion", + -10.601795196533203 + ], + [ + "▁Training", + -10.601948738098145 + ], + [ + "CO", + -10.602012634277344 + ], + [ + "▁Cross", + -10.603116035461426 + ], + [ + "▁Games", + -10.603175163269043 + ], + [ + "64", + -10.60317611694336 + ], + [ + "▁preferred", + -10.603713989257812 + ], + [ + "▁exceptional", + -10.604167938232422 + ], + [ + "▁filling", + -10.604235649108887 + ], + [ + "▁hotels", + -10.604260444641113 + ], + [ + "▁Modern", + -10.604372024536133 + ], + [ + "▁Hope", + -10.60483169555664 + ], + [ + "▁causing", + -10.605106353759766 + ], + [ + "▁objective", + -10.606444358825684 + ], + [ + "▁visible", + -10.607207298278809 + ], + [ + "▁samples", + -10.607322692871094 + ], + [ + "▁programming", + -10.607970237731934 + ], + [ + "▁resort", + -10.608146667480469 + ], + [ + "▁controlled", + -10.60822868347168 + ], + [ + "▁basically", + -10.60875129699707 + ], + [ + "▁tag", + -10.60887336730957 + ], + [ + "▁Johnson", + -10.608893394470215 + ], + [ + "▁150", + -10.609169006347656 + ], + [ + "▁YouTube", + -10.609679222106934 + ], + [ + "▁buyers", + -10.610122680664062 + ], + [ + "▁threat", + -10.6104736328125 + ], + [ + "▁Gu", + -10.610627174377441 + ], + [ + "▁offices", + -10.611261367797852 + ], + [ + "▁Pacific", + -10.611315727233887 + ], + [ + "▁Rose", + -10.611804962158203 + ], + [ + "▁classroom", + -10.611810684204102 + ], + [ + "ight", + -10.61274242401123 + ], + [ + "▁writers", + -10.613044738769531 + ], + [ + "▁suggestions", + -10.613330841064453 + ], + [ + "▁Steve", + -10.614424705505371 + ], + [ + "99", + -10.614471435546875 + ], + [ + "▁HP", + -10.614679336547852 + ], + [ + "26", + -10.614716529846191 + ], + [ + "▁Hand", + -10.615212440490723 + ], + [ + "▁Ru", + -10.615781784057617 + ], + [ + "del", + -10.615821838378906 + ], + [ + "▁Michigan", + -10.615910530090332 + ], + [ + "including", + -10.616416931152344 + ], + [ + "▁sensitive", + -10.616863250732422 + ], + [ + "▁connections", + -10.617070198059082 + ], + [ + "▁statements", + -10.617281913757324 + ], + [ + "▁Joe", + -10.61731243133545 + ], + [ + "▁Professor", + -10.617568969726562 + ], + [ + "▁recognition", + -10.617593765258789 + ], + [ + "berg", + -10.617708206176758 + ], + [ + "BA", + -10.617746353149414 + ], + [ + "▁Mc", + -10.617914199829102 + ], + [ + "▁occasion", + -10.61811351776123 + ], + [ + "▁Steel", + -10.618471145629883 + ], + [ + "▁evaluation", + -10.618661880493164 + ], + [ + "zi", + -10.618693351745605 + ], + [ + "▁Drive", + -10.618756294250488 + ], + [ + "▁cookies", + -10.618921279907227 + ], + [ + "▁faculty", + -10.618999481201172 + ], + [ + "▁eggs", + -10.619361877441406 + ], + [ + "▁regardless", + -10.61939525604248 + ], + [ + "▁maintaining", + -10.619500160217285 + ], + [ + "▁crazy", + -10.620159149169922 + ], + [ + "Do", + -10.620264053344727 + ], + [ + "▁careful", + -10.6202974319458 + ], + [ + "▁naturally", + -10.620372772216797 + ], + [ + "▁liked", + -10.621423721313477 + ], + [ + "act", + -10.62155532836914 + ], + [ + "▁giant", + -10.62193775177002 + ], + [ + "!\"", + -10.62208366394043 + ], + [ + "PA", + -10.622147560119629 + ], + [ + "65", + -10.622389793395996 + ], + [ + "▁Pan", + -10.622390747070312 + ], + [ + "▁joining", + -10.62243938446045 + ], + [ + "ute", + -10.623517990112305 + ], + [ + "▁legs", + -10.623618125915527 + ], + [ + "▁adds", + -10.62382984161377 + ], + [ + "▁suffer", + -10.623880386352539 + ], + [ + "▁relax", + -10.624032020568848 + ], + [ + "▁Northern", + -10.62421703338623 + ], + [ + "▁stable", + -10.624964714050293 + ], + [ + "▁relative", + -10.625253677368164 + ], + [ + "▁residence", + -10.625731468200684 + ], + [ + "▁hate", + -10.625870704650879 + ], + [ + "TS", + -10.626977920532227 + ], + [ + "▁Point", + -10.627141952514648 + ], + [ + "▁2015.", + -10.627240180969238 + ], + [ + "95", + -10.627494812011719 + ], + [ + "▁bone", + -10.627557754516602 + ], + [ + "▁rose", + -10.6287260055542 + ], + [ + "▁continuing", + -10.62934684753418 + ], + [ + "▁empty", + -10.629356384277344 + ], + [ + "▁somewhat", + -10.629512786865234 + ], + [ + "ken", + -10.629644393920898 + ], + [ + "▁streets", + -10.629656791687012 + ], + [ + "▁Ohio", + -10.629941940307617 + ], + [ + "▁applying", + -10.630496978759766 + ], + [ + "▁USB", + -10.630539894104004 + ], + [ + "▁Quality", + -10.630712509155273 + ], + [ + "gate", + -10.630755424499512 + ], + [ + "▁Airport", + -10.631178855895996 + ], + [ + "▁adjust", + -10.631895065307617 + ], + [ + "▁forever", + -10.632461547851562 + ], + [ + "▁ho", + -10.632559776306152 + ], + [ + "▁hundred", + -10.632808685302734 + ], + [ + "▁ads", + -10.632905960083008 + ], + [ + "▁Made", + -10.632962226867676 + ], + [ + "▁venue", + -10.63365364074707 + ], + [ + "SP", + -10.63435173034668 + ], + [ + "▁herself", + -10.634514808654785 + ], + [ + "▁birds", + -10.634658813476562 + ], + [ + "▁outcome", + -10.634918212890625 + ], + [ + "▁factory", + -10.634936332702637 + ], + [ + "inch", + -10.635146141052246 + ], + [ + "▁codes", + -10.635993957519531 + ], + [ + "▁dishes", + -10.636815071105957 + ], + [ + "▁requests", + -10.636917114257812 + ], + [ + "▁amounts", + -10.637495994567871 + ], + [ + "▁orange", + -10.637629508972168 + ], + [ + "▁Col", + -10.637630462646484 + ], + [ + "new", + -10.63809585571289 + ], + [ + "▁lift", + -10.638715744018555 + ], + [ + "▁breath", + -10.638721466064453 + ], + [ + "har", + -10.638829231262207 + ], + [ + "▁regions", + -10.638973236083984 + ], + [ + "▁Farm", + -10.639086723327637 + ], + [ + "▁opposite", + -10.63918685913086 + ], + [ + "▁lake", + -10.64030933380127 + ], + [ + "▁remind", + -10.640795707702637 + ], + [ + "▁egg", + -10.640800476074219 + ], + [ + "▁Camp", + -10.64110279083252 + ], + [ + "▁SO", + -10.641295433044434 + ], + [ + "42", + -10.641395568847656 + ], + [ + "▁vegetables", + -10.641580581665039 + ], + [ + "val", + -10.641827583312988 + ], + [ + "▁blocks", + -10.64184856414795 + ], + [ + "▁sky", + -10.641988754272461 + ], + [ + "par", + -10.642035484313965 + ], + [ + "▁Matt", + -10.642339706420898 + ], + [ + "▁Tim", + -10.642402648925781 + ], + [ + "▁script", + -10.64267349243164 + ], + [ + "▁newly", + -10.642687797546387 + ], + [ + "▁pp", + -10.643692016601562 + ], + [ + "▁graphics", + -10.644058227539062 + ], + [ + "▁liability", + -10.644200325012207 + ], + [ + "▁scored", + -10.644238471984863 + ], + [ + "▁eliminate", + -10.644365310668945 + ], + [ + "uck", + -10.64439868927002 + ], + [ + "▁outcomes", + -10.645049095153809 + ], + [ + "▁Select", + -10.645524024963379 + ], + [ + "04", + -10.645585060119629 + ], + [ + "▁awards", + -10.645980834960938 + ], + [ + "▁editor", + -10.646282196044922 + ], + [ + "46", + -10.646627426147461 + ], + [ + "▁Spirit", + -10.646992683410645 + ], + [ + "▁Bridge", + -10.64727783203125 + ], + [ + "▁bird", + -10.647284507751465 + ], + [ + "CC", + -10.647560119628906 + ], + [ + "33", + -10.6476469039917 + ], + [ + "▁Ki", + -10.647778511047363 + ], + [ + "▁storm", + -10.647810935974121 + ], + [ + "lock", + -10.647958755493164 + ], + [ + "▁Francisco", + -10.648648262023926 + ], + [ + "▁concepts", + -10.648760795593262 + ], + [ + "▁Want", + -10.649664878845215 + ], + [ + "▁bars", + -10.649848937988281 + ], + [ + "▁packages", + -10.649909973144531 + ], + [ + "▁Hot", + -10.650129318237305 + ], + [ + "len", + -10.650252342224121 + ], + [ + "nic", + -10.650259971618652 + ], + [ + "ever", + -10.650522232055664 + ], + [ + "▁pen", + -10.650735855102539 + ], + [ + "▁licensed", + -10.65074348449707 + ], + [ + "▁tissue", + -10.650996208190918 + ], + [ + "▁Andrew", + -10.651000022888184 + ], + [ + "▁permission", + -10.651036262512207 + ], + [ + "▁fighting", + -10.651166915893555 + ], + [ + "▁Mountain", + -10.651604652404785 + ], + [ + "bra", + -10.651618003845215 + ], + [ + "▁errors", + -10.651626586914062 + ], + [ + "He", + -10.6522798538208 + ], + [ + "▁judge", + -10.652435302734375 + ], + [ + "▁victory", + -10.652609825134277 + ], + [ + "van", + -10.653111457824707 + ], + [ + "▁listing", + -10.653115272521973 + ], + [ + "▁2006", + -10.65456485748291 + ], + [ + "▁approaches", + -10.654692649841309 + ], + [ + "▁rid", + -10.654935836791992 + ], + [ + "▁Williams", + -10.655022621154785 + ], + [ + "▁beneficial", + -10.655078887939453 + ], + [ + "▁proposal", + -10.655498504638672 + ], + [ + "▁intelligence", + -10.655710220336914 + ], + [ + "lic", + -10.655810356140137 + ], + [ + "▁Catholic", + -10.656111717224121 + ], + [ + "▁indicate", + -10.656312942504883 + ], + [ + "What", + -10.656352043151855 + ], + [ + "▁ceiling", + -10.656391143798828 + ], + [ + "ming", + -10.656427383422852 + ], + [ + "36", + -10.656512260437012 + ], + [ + "▁zero", + -10.656830787658691 + ], + [ + "▁flower", + -10.656907081604004 + ], + [ + "▁checking", + -10.657079696655273 + ], + [ + "▁Cover", + -10.657130241394043 + ], + [ + "des", + -10.65736198425293 + ], + [ + "▁stuck", + -10.657777786254883 + ], + [ + "▁Him", + -10.657975196838379 + ], + [ + "▁sufficient", + -10.658101081848145 + ], + [ + "▁lawyer", + -10.658285140991211 + ], + [ + "▁Ball", + -10.658406257629395 + ], + [ + "▁organisation", + -10.658427238464355 + ], + [ + "▁Sign", + -10.658620834350586 + ], + [ + "▁dropped", + -10.659110069274902 + ], + [ + "app", + -10.659249305725098 + ], + [ + "▁Colorado", + -10.659565925598145 + ], + [ + "▁spray", + -10.6597261428833 + ], + [ + "▁driven", + -10.660704612731934 + ], + [ + "ston", + -10.66109561920166 + ], + [ + "▁warranty", + -10.661153793334961 + ], + [ + "▁matches", + -10.66134262084961 + ], + [ + "▁division", + -10.662006378173828 + ], + [ + "▁Silver", + -10.662184715270996 + ], + [ + "▁suggests", + -10.662208557128906 + ], + [ + "▁Jones", + -10.662650108337402 + ], + [ + "▁LLC", + -10.662768363952637 + ], + [ + "▁Main", + -10.662930488586426 + ], + [ + "▁arrival", + -10.66312313079834 + ], + [ + "-10", + -10.663435935974121 + ], + [ + "▁container", + -10.663570404052734 + ], + [ + "▁lesson", + -10.663729667663574 + ], + [ + "▁Division", + -10.663898468017578 + ], + [ + "cu", + -10.665989875793457 + ], + [ + "▁transmission", + -10.665999412536621 + ], + [ + "▁laptop", + -10.66671085357666 + ], + [ + "▁vintage", + -10.666866302490234 + ], + [ + "Be", + -10.6670503616333 + ], + [ + "▁directed", + -10.667272567749023 + ], + [ + "▁Kingdom", + -10.667476654052734 + ], + [ + "▁kill", + -10.668349266052246 + ], + [ + "▁shoot", + -10.66843318939209 + ], + [ + "▁anxiety", + -10.668717384338379 + ], + [ + "▁electricity", + -10.66905403137207 + ], + [ + "life", + -10.66942310333252 + ], + [ + "▁Win", + -10.669434547424316 + ], + [ + "▁suppliers", + -10.669757843017578 + ], + [ + "▁limits", + -10.669809341430664 + ], + [ + "▁layout", + -10.6700439453125 + ], + [ + "▁marks", + -10.670393943786621 + ], + [ + "▁convenience", + -10.670536994934082 + ], + [ + "▁interactive", + -10.67056941986084 + ], + [ + "▁wave", + -10.670738220214844 + ], + [ + "▁sight", + -10.670846939086914 + ], + [ + "▁Holy", + -10.67086124420166 + ], + [ + "sion", + -10.670872688293457 + ], + [ + "▁functionality", + -10.671003341674805 + ], + [ + "▁favor", + -10.671343803405762 + ], + [ + "▁wash", + -10.671662330627441 + ], + [ + "▁Smart", + -10.671777725219727 + ], + [ + "OS", + -10.671907424926758 + ], + [ + "▁compensation", + -10.67204475402832 + ], + [ + "▁till", + -10.672167778015137 + ], + [ + "▁pump", + -10.672268867492676 + ], + [ + "▁OS", + -10.672611236572266 + ], + [ + "▁legislation", + -10.672769546508789 + ], + [ + "▁sum", + -10.672961235046387 + ], + [ + "▁breast", + -10.673094749450684 + ], + [ + "▁juice", + -10.673439979553223 + ], + [ + "▁funny", + -10.673702239990234 + ], + [ + "▁criteria", + -10.67375659942627 + ], + [ + "▁Medicine", + -10.673774719238281 + ], + [ + "▁walked", + -10.674378395080566 + ], + [ + "▁tracking", + -10.674712181091309 + ], + [ + "▁Give", + -10.674827575683594 + ], + [ + "▁Product", + -10.674850463867188 + ], + [ + "▁tone", + -10.67489242553711 + ], + [ + "▁Save", + -10.675175666809082 + ], + [ + "▁edit", + -10.675324440002441 + ], + [ + "▁correctly", + -10.675436019897461 + ], + [ + "▁drinking", + -10.675479888916016 + ], + [ + "SC", + -10.67553997039795 + ], + [ + "▁roles", + -10.675771713256836 + ], + [ + "▁telephone", + -10.67593765258789 + ], + [ + "▁Charles", + -10.675965309143066 + ], + [ + "▁feelings", + -10.675982475280762 + ], + [ + "23", + -10.676274299621582 + ], + [ + "▁draft", + -10.676416397094727 + ], + [ + "▁steam", + -10.676671981811523 + ], + [ + "▁Image", + -10.676919937133789 + ], + [ + "▁33", + -10.67726993560791 + ], + [ + "▁stretch", + -10.677486419677734 + ], + [ + "law", + -10.67763614654541 + ], + [ + "▁forum", + -10.677931785583496 + ], + [ + "▁certificate", + -10.678311347961426 + ], + [ + "▁harm", + -10.678498268127441 + ], + [ + "cal", + -10.678512573242188 + ], + [ + "▁observed", + -10.678866386413574 + ], + [ + "▁necessarily", + -10.679190635681152 + ], + [ + "▁Ford", + -10.679226875305176 + ], + [ + "▁lens", + -10.680818557739258 + ], + [ + "▁Customer", + -10.681297302246094 + ], + [ + "▁Without", + -10.681432723999023 + ], + [ + "▁employer", + -10.681443214416504 + ], + [ + "▁participation", + -10.681451797485352 + ], + [ + "▁Prime", + -10.681539535522461 + ], + [ + "▁facts", + -10.681568145751953 + ], + [ + "▁Heart", + -10.681652069091797 + ], + [ + "▁everywhere", + -10.682320594787598 + ], + [ + "▁6.", + -10.682388305664062 + ], + [ + "vi", + -10.682443618774414 + ], + [ + "▁module", + -10.68248462677002 + ], + [ + "▁retirement", + -10.682509422302246 + ], + [ + "▁sharp", + -10.682565689086914 + ], + [ + "▁Roman", + -10.682597160339355 + ], + [ + "▁bear", + -10.682841300964355 + ], + [ + "▁flexibility", + -10.683112144470215 + ], + [ + "▁Studies", + -10.68325424194336 + ], + [ + "▁po", + -10.683307647705078 + ], + [ + "▁Four", + -10.6834077835083 + ], + [ + "▁formula", + -10.68364143371582 + ], + [ + "▁association", + -10.683675765991211 + ], + [ + "▁literature", + -10.68385124206543 + ], + [ + "Pro", + -10.684168815612793 + ], + [ + "▁DO", + -10.684701919555664 + ], + [ + "▁ratio", + -10.684762954711914 + ], + [ + "▁Jewish", + -10.684814453125 + ], + [ + "▁lifetime", + -10.684928894042969 + ], + [ + "▁presents", + -10.685518264770508 + ], + [ + "▁volunteers", + -10.685558319091797 + ], + [ + "▁politics", + -10.685580253601074 + ], + [ + "▁Senior", + -10.685689926147461 + ], + [ + "▁random", + -10.68576431274414 + ], + [ + "▁regard", + -10.685846328735352 + ], + [ + "AC", + -10.685891151428223 + ], + [ + "pur", + -10.68590259552002 + ], + [ + "▁dreams", + -10.686090469360352 + ], + [ + "▁pocket", + -10.686751365661621 + ], + [ + "31", + -10.686929702758789 + ], + [ + "▁certification", + -10.687017440795898 + ], + [ + "AL", + -10.68704891204834 + ], + [ + "▁semi", + -10.687088012695312 + ], + [ + "▁contained", + -10.687226295471191 + ], + [ + "▁tie", + -10.687286376953125 + ], + [ + "▁Based", + -10.687528610229492 + ], + [ + "▁skilled", + -10.687618255615234 + ], + [ + "No", + -10.687722206115723 + ], + [ + "pre", + -10.687840461730957 + ], + [ + "69", + -10.68798828125 + ], + [ + "▁Singapore", + -10.689021110534668 + ], + [ + "If", + -10.689131736755371 + ], + [ + "▁aircraft", + -10.689216613769531 + ], + [ + "43", + -10.689266204833984 + ], + [ + "war", + -10.689302444458008 + ], + [ + "▁^", + -10.689375877380371 + ], + [ + "▁Box", + -10.689447402954102 + ], + [ + "▁asset", + -10.689576148986816 + ], + [ + "▁nuclear", + -10.690266609191895 + ], + [ + "▁specified", + -10.690380096435547 + ], + [ + "▁cruise", + -10.690433502197266 + ], + [ + "▁Week", + -10.690567016601562 + ], + [ + "▁complicated", + -10.690653800964355 + ], + [ + "▁Cal", + -10.690683364868164 + ], + [ + "▁Has", + -10.6908540725708 + ], + [ + "▁automatic", + -10.691091537475586 + ], + [ + "▁Plant", + -10.691149711608887 + ], + [ + "▁traveling", + -10.69150161743164 + ], + [ + ".00", + -10.691510200500488 + ], + [ + "▁Off", + -10.692020416259766 + ], + [ + "▁tracks", + -10.6921968460083 + ], + [ + "▁peak", + -10.69236946105957 + ], + [ + "▁Asian", + -10.69237232208252 + ], + [ + "hour", + -10.693376541137695 + ], + [ + "▁Everyone", + -10.693750381469727 + ], + [ + "▁accommodation", + -10.693900108337402 + ], + [ + "that", + -10.694059371948242 + ], + [ + "▁NO", + -10.694563865661621 + ], + [ + "▁exposed", + -10.694791793823242 + ], + [ + "▁Bur", + -10.69480037689209 + ], + [ + "▁incorporate", + -10.694941520690918 + ], + [ + "▁prize", + -10.69510555267334 + ], + [ + "view", + -10.695509910583496 + ], + [ + "▁rural", + -10.696370124816895 + ], + [ + "▁flash", + -10.696560859680176 + ], + [ + "▁marked", + -10.696576118469238 + ], + [ + "▁finest", + -10.696598052978516 + ], + [ + "IN", + -10.696701049804688 + ], + [ + "▁false", + -10.697283744812012 + ], + [ + "pri", + -10.697453498840332 + ], + [ + "▁34", + -10.697522163391113 + ], + [ + "▁holidays", + -10.697542190551758 + ], + [ + "▁Ten", + -10.697765350341797 + ], + [ + "▁Ed", + -10.697844505310059 + ], + [ + "vis", + -10.698049545288086 + ], + [ + "▁millions", + -10.698071479797363 + ], + [ + "57", + -10.698360443115234 + ], + [ + "▁utility", + -10.69848346710205 + ], + [ + "!)", + -10.698741912841797 + ], + [ + "cer", + -10.69914436340332 + ], + [ + "▁Cap", + -10.699150085449219 + ], + [ + "▁0.", + -10.699397087097168 + ], + [ + "stra", + -10.699463844299316 + ], + [ + "▁patio", + -10.699701309204102 + ], + [ + "▁involving", + -10.700444221496582 + ], + [ + "▁trans", + -10.700532913208008 + ], + [ + "▁hosted", + -10.70083999633789 + ], + [ + "▁requested", + -10.701225280761719 + ], + [ + "key", + -10.701363563537598 + ], + [ + "made", + -10.701624870300293 + ], + [ + "For", + -10.701696395874023 + ], + [ + "▁reaction", + -10.702012062072754 + ], + [ + "▁concert", + -10.702125549316406 + ], + [ + "▁Tour", + -10.702476501464844 + ], + [ + "pp", + -10.702479362487793 + ], + [ + "▁colours", + -10.702914237976074 + ], + [ + "▁museum", + -10.70297908782959 + ], + [ + "▁mirror", + -10.703277587890625 + ], + [ + "и", + -10.703564643859863 + ], + [ + "mat", + -10.704063415527344 + ], + [ + "▁Brand", + -10.704455375671387 + ], + [ + "▁retain", + -10.70460319519043 + ], + [ + "▁carrying", + -10.704989433288574 + ], + [ + "▁announce", + -10.705514907836914 + ], + [ + "▁baking", + -10.705523490905762 + ], + [ + "▁respectively", + -10.705887794494629 + ], + [ + "▁scope", + -10.706090927124023 + ], + [ + "▁mood", + -10.706433296203613 + ], + [ + "▁staying", + -10.706546783447266 + ], + [ + "76", + -10.706850051879883 + ], + [ + "▁Film", + -10.707098960876465 + ], + [ + "▁characteristics", + -10.70753288269043 + ], + [ + "▁containing", + -10.707573890686035 + ], + [ + "55", + -10.707880973815918 + ], + [ + "▁assistant", + -10.708205223083496 + ], + [ + "▁examination", + -10.708395004272461 + ], + [ + "▁initiative", + -10.70850944519043 + ], + [ + "▁encouraged", + -10.708620071411133 + ], + [ + "▁publication", + -10.708647727966309 + ], + [ + "▁smoke", + -10.708944320678711 + ], + [ + "▁shouldn", + -10.708989143371582 + ], + [ + "▁Sky", + -10.709203720092773 + ], + [ + "med", + -10.70921516418457 + ], + [ + "▁Choose", + -10.70921802520752 + ], + [ + "▁debut", + -10.710368156433105 + ], + [ + "ole", + -10.710795402526855 + ], + [ + "bel", + -10.710808753967285 + ], + [ + "▁panels", + -10.711146354675293 + ], + [ + "▁acts", + -10.711153030395508 + ], + [ + "▁accommodate", + -10.711223602294922 + ], + [ + "▁maintained", + -10.711686134338379 + ], + [ + "▁grab", + -10.711840629577637 + ], + [ + "▁council", + -10.711886405944824 + ], + [ + "▁insight", + -10.711923599243164 + ], + [ + "▁damaged", + -10.71202564239502 + ], + [ + "▁Son", + -10.71212100982666 + ], + [ + "▁chairs", + -10.712483406066895 + ], + [ + "MO", + -10.712514877319336 + ], + [ + "▁Daniel", + -10.712697982788086 + ], + [ + "▁string", + -10.713085174560547 + ], + [ + "ments", + -10.713122367858887 + ], + [ + "ified", + -10.713459968566895 + ], + [ + "▁minimal", + -10.71346664428711 + ], + [ + "▁Jim", + -10.71357536315918 + ], + [ + "▁guaranteed", + -10.713651657104492 + ], + [ + "▁tile", + -10.71445083618164 + ], + [ + "▁personality", + -10.714468955993652 + ], + [ + "▁speaker", + -10.714654922485352 + ], + [ + "▁Sh", + -10.714715003967285 + ], + [ + "▁depend", + -10.714733123779297 + ], + [ + "▁cabinet", + -10.714789390563965 + ], + [ + "▁equivalent", + -10.714794158935547 + ], + [ + "▁Com", + -10.715702056884766 + ], + [ + "41", + -10.715782165527344 + ], + [ + "▁expressed", + -10.716127395629883 + ], + [ + "▁List", + -10.716529846191406 + ], + [ + "▁gap", + -10.717100143432617 + ], + [ + "▁plain", + -10.717459678649902 + ], + [ + "▁closing", + -10.71754264831543 + ], + [ + "▁tall", + -10.717740058898926 + ], + [ + "▁transactions", + -10.718029975891113 + ], + [ + "▁obviously", + -10.718221664428711 + ], + [ + "▁Georgia", + -10.718520164489746 + ], + [ + "▁Agreement", + -10.71863842010498 + ], + [ + "AM", + -10.718657493591309 + ], + [ + "-12", + -10.718868255615234 + ], + [ + "DS", + -10.718894004821777 + ], + [ + "▁tagged", + -10.71939468383789 + ], + [ + "▁Due", + -10.719499588012695 + ], + [ + "▁bound", + -10.719740867614746 + ], + [ + "▁©", + -10.720218658447266 + ], + [ + "▁highlight", + -10.720407485961914 + ], + [ + "▁configuration", + -10.720429420471191 + ], + [ + "▁Bob", + -10.72059440612793 + ], + [ + "▁laser", + -10.720663070678711 + ], + [ + "▁Par", + -10.721049308776855 + ], + [ + "▁assess", + -10.721057891845703 + ], + [ + "▁convert", + -10.721156120300293 + ], + [ + "▁Sch", + -10.721871376037598 + ], + [ + "▁ca", + -10.721908569335938 + ], + [ + "▁literally", + -10.722647666931152 + ], + [ + "rant", + -10.722774505615234 + ], + [ + "▁Anti", + -10.723142623901367 + ], + [ + "AP", + -10.723344802856445 + ], + [ + "▁downtown", + -10.72408390045166 + ], + [ + "CA", + -10.724088668823242 + ], + [ + "▁Station", + -10.724096298217773 + ], + [ + "▁cotton", + -10.724306106567383 + ], + [ + "▁Sub", + -10.724555969238281 + ], + [ + "70", + -10.72482681274414 + ], + [ + "▁preparing", + -10.724929809570312 + ], + [ + "▁drinks", + -10.7250337600708 + ], + [ + "▁Radio", + -10.725144386291504 + ], + [ + "▁Greek", + -10.72534465789795 + ], + [ + "▁upload", + -10.725347518920898 + ], + [ + "▁greatly", + -10.725512504577637 + ], + [ + "▁Army", + -10.726086616516113 + ], + [ + "▁BE", + -10.726091384887695 + ], + [ + "▁Pass", + -10.726923942565918 + ], + [ + "▁yoga", + -10.727161407470703 + ], + [ + "▁LA", + -10.727632522583008 + ], + [ + "▁Personal", + -10.727864265441895 + ], + [ + "▁dad", + -10.727994918823242 + ], + [ + "▁moves", + -10.728032112121582 + ], + [ + "▁Cloud", + -10.728083610534668 + ], + [ + "▁2018,", + -10.728371620178223 + ], + [ + "▁gaming", + -10.728689193725586 + ], + [ + "▁representative", + -10.728958129882812 + ], + [ + "▁stainless", + -10.729339599609375 + ], + [ + "cha", + -10.729730606079102 + ], + [ + "▁shots", + -10.73013973236084 + ], + [ + "▁sick", + -10.730562210083008 + ], + [ + "▁Spain", + -10.73067855834961 + ], + [ + "▁accordance", + -10.730761528015137 + ], + [ + "▁improvements", + -10.73079776763916 + ], + [ + "▁sad", + -10.73108196258545 + ], + [ + "58", + -10.731579780578613 + ], + [ + "▁delivering", + -10.731704711914062 + ], + [ + "▁volunteer", + -10.732858657836914 + ], + [ + "▁fundamental", + -10.733499526977539 + ], + [ + "known", + -10.73359489440918 + ], + [ + "▁drawn", + -10.733662605285645 + ], + [ + "▁controls", + -10.733709335327148 + ], + [ + "▁interaction", + -10.733731269836426 + ], + [ + "▁plug", + -10.73377513885498 + ], + [ + "▁photographs", + -10.733781814575195 + ], + [ + "▁(1", + -10.733838081359863 + ], + [ + "▁SE", + -10.73387622833252 + ], + [ + "▁Following", + -10.733901977539062 + ], + [ + "right", + -10.733909606933594 + ], + [ + "▁Learning", + -10.734475135803223 + ], + [ + "▁DVD", + -10.734779357910156 + ], + [ + "▁Sale", + -10.73479175567627 + ], + [ + "▁Queen", + -10.735082626342773 + ], + [ + "▁satisfied", + -10.735325813293457 + ], + [ + "▁introduce", + -10.73582935333252 + ], + [ + "▁branch", + -10.735832214355469 + ], + [ + "#", + -10.735953330993652 + ], + [ + "▁focuses", + -10.736212730407715 + ], + [ + "▁Non", + -10.73624324798584 + ], + [ + "▁brilliant", + -10.73634147644043 + ], + [ + "ising", + -10.73671817779541 + ], + [ + "▁occurs", + -10.737228393554688 + ], + [ + "▁completion", + -10.737269401550293 + ], + [ + "▁implemented", + -10.737353324890137 + ], + [ + "▁largely", + -10.737510681152344 + ], + [ + "▁scientists", + -10.73777961730957 + ], + [ + "▁Che", + -10.73785400390625 + ], + [ + "▁DE", + -10.738038063049316 + ], + [ + "▁Type", + -10.738316535949707 + ], + [ + "▁twenty", + -10.738452911376953 + ], + [ + "200", + -10.73875904083252 + ], + [ + "▁secondary", + -10.739452362060547 + ], + [ + "▁circuit", + -10.73984432220459 + ], + [ + "▁pe", + -10.740494728088379 + ], + [ + "▁Corporation", + -10.740525245666504 + ], + [ + "▁Gar", + -10.740999221801758 + ], + [ + "▁stronger", + -10.741000175476074 + ], + [ + "▁2014.", + -10.741256713867188 + ], + [ + "▁Repair", + -10.741260528564453 + ], + [ + "▁heading", + -10.741297721862793 + ], + [ + "LY", + -10.741748809814453 + ], + [ + "▁durable", + -10.742395401000977 + ], + [ + "▁1990", + -10.74255657196045 + ], + [ + "▁#1", + -10.743103981018066 + ], + [ + "▁addresses", + -10.743522644042969 + ], + [ + "▁frequency", + -10.743884086608887 + ], + [ + "▁diseases", + -10.744032859802246 + ], + [ + "▁Collection", + -10.744046211242676 + ], + [ + "▁2005", + -10.744227409362793 + ], + [ + "▁desktop", + -10.74455738067627 + ], + [ + "86", + -10.744592666625977 + ], + [ + "51", + -10.745295524597168 + ], + [ + "▁existence", + -10.745708465576172 + ], + [ + "▁pulled", + -10.745929718017578 + ], + [ + "▁consent", + -10.74605655670166 + ], + [ + "▁Safety", + -10.746386528015137 + ], + [ + "98", + -10.746683120727539 + ], + [ + "▁grass", + -10.747817039489746 + ], + [ + "▁yards", + -10.747849464416504 + ], + [ + "▁occurred", + -10.747893333435059 + ], + [ + "▁Frank", + -10.748215675354004 + ], + [ + "ele", + -10.748292922973633 + ], + [ + "▁Pat", + -10.748321533203125 + ], + [ + "▁strange", + -10.748384475708008 + ], + [ + "▁designers", + -10.748713493347168 + ], + [ + "▁Form", + -10.748845100402832 + ], + [ + "cle", + -10.749349594116211 + ], + [ + "▁Estate", + -10.74939250946045 + ], + [ + "▁chances", + -10.74959945678711 + ], + [ + "qu", + -10.75031566619873 + ], + [ + "▁sections", + -10.751019477844238 + ], + [ + "▁Furthermore", + -10.752278327941895 + ], + [ + "▁hip", + -10.75263786315918 + ], + [ + "89", + -10.752695083618164 + ], + [ + "▁humans", + -10.752702713012695 + ], + [ + "uri", + -10.753643989562988 + ], + [ + "▁engaging", + -10.753665924072266 + ], + [ + "85", + -10.753677368164062 + ], + [ + "▁escape", + -10.75428295135498 + ], + [ + "▁Natural", + -10.754426956176758 + ], + [ + "▁texture", + -10.754429817199707 + ], + [ + "▁studying", + -10.754977226257324 + ], + [ + "state", + -10.755489349365234 + ], + [ + "▁follows", + -10.755704879760742 + ], + [ + "▁spots", + -10.75573444366455 + ], + [ + "▁pa", + -10.755992889404297 + ], + [ + "▁seeds", + -10.756021499633789 + ], + [ + "▁delay", + -10.756515502929688 + ], + [ + "▁lowest", + -10.757050514221191 + ], + [ + "▁Pen", + -10.757081985473633 + ], + [ + "▁contribution", + -10.757400512695312 + ], + [ + "▁ha", + -10.757615089416504 + ], + [ + "▁Country", + -10.757718086242676 + ], + [ + "▁Easy", + -10.757743835449219 + ], + [ + "▁strongly", + -10.757790565490723 + ], + [ + "▁demonstrate", + -10.75803279876709 + ], + [ + "▁define", + -10.758252143859863 + ], + [ + "▁estimate", + -10.758438110351562 + ], + [ + "▁icon", + -10.758578300476074 + ], + [ + "ell", + -10.758759498596191 + ], + [ + "▁dollar", + -10.759027481079102 + ], + [ + "▁Disney", + -10.7593355178833 + ], + [ + "▁speakers", + -10.759354591369629 + ], + [ + "ender", + -10.759763717651367 + ], + [ + "▁entering", + -10.759806632995605 + ], + [ + "▁exploring", + -10.760287284851074 + ], + [ + "ations", + -10.760397911071777 + ], + [ + "▁gained", + -10.760404586791992 + ], + [ + "▁repairs", + -10.760648727416992 + ], + [ + "▁opt", + -10.760866165161133 + ], + [ + "▁Cu", + -10.761649131774902 + ], + [ + "lam", + -10.761968612670898 + ], + [ + "▁granted", + -10.762091636657715 + ], + [ + "▁42", + -10.762134552001953 + ], + [ + "cher", + -10.762267112731934 + ], + [ + "ail", + -10.762713432312012 + ], + [ + "▁pounds", + -10.76295280456543 + ], + [ + "▁calm", + -10.76329231262207 + ], + [ + "▁loves", + -10.763744354248047 + ], + [ + "▁workplace", + -10.763876914978027 + ], + [ + "79", + -10.763935089111328 + ], + [ + "▁instant", + -10.76418685913086 + ], + [ + "▁demands", + -10.764632225036621 + ], + [ + "▁Think", + -10.76463794708252 + ], + [ + "78", + -10.764876365661621 + ], + [ + "▁dual", + -10.764925956726074 + ], + [ + "▁Custom", + -10.765311241149902 + ], + [ + "▁argument", + -10.765897750854492 + ], + [ + "▁Experience", + -10.766060829162598 + ], + [ + "▁Low", + -10.766064643859863 + ], + [ + "▁talks", + -10.766203880310059 + ], + [ + "▁relate", + -10.766290664672852 + ], + [ + "▁packed", + -10.766629219055176 + ], + [ + "▁mi", + -10.767894744873047 + ], + [ + "▁facilitate", + -10.768356323242188 + ], + [ + "▁pepper", + -10.768577575683594 + ], + [ + "▁provision", + -10.768698692321777 + ], + [ + "▁2017,", + -10.76907730102539 + ], + [ + "▁Again", + -10.76909351348877 + ], + [ + "▁assigned", + -10.769159317016602 + ], + [ + "▁fits", + -10.769380569458008 + ], + [ + "▁Credit", + -10.769429206848145 + ], + [ + "▁checked", + -10.76945686340332 + ], + [ + "▁centers", + -10.769510269165039 + ], + [ + "▁lease", + -10.770204544067383 + ], + [ + "PC", + -10.770415306091309 + ], + [ + "▁accuracy", + -10.770687103271484 + ], + [ + "een", + -10.770927429199219 + ], + [ + "▁Father", + -10.770997047424316 + ], + [ + "▁smell", + -10.771319389343262 + ], + [ + "▁colleagues", + -10.771562576293945 + ], + [ + "▁prayer", + -10.771642684936523 + ], + [ + "▁flying", + -10.771740913391113 + ], + [ + "▁Mal", + -10.771769523620605 + ], + [ + "▁entitled", + -10.771970748901367 + ], + [ + "▁acting", + -10.77202320098877 + ], + [ + "▁focusing", + -10.772034645080566 + ], + [ + "▁Capital", + -10.772089958190918 + ], + [ + "▁mg", + -10.772314071655273 + ], + [ + "▁Multi", + -10.772465705871582 + ], + [ + "▁para", + -10.773616790771484 + ], + [ + "▁alive", + -10.773782730102539 + ], + [ + "▁represented", + -10.77446460723877 + ], + [ + "▁temporary", + -10.774653434753418 + ], + [ + "▁celebration", + -10.77475643157959 + ], + [ + "▁explains", + -10.774889945983887 + ], + [ + "▁repeat", + -10.775176048278809 + ], + [ + "▁Tu", + -10.775257110595703 + ], + [ + "▁pin", + -10.77542495727539 + ], + [ + "▁passionate", + -10.775431632995605 + ], + [ + "▁talked", + -10.775588035583496 + ], + [ + "▁Name", + -10.775904655456543 + ], + [ + "▁subjects", + -10.77595329284668 + ], + [ + "▁Micro", + -10.776031494140625 + ], + [ + "▁absolute", + -10.77649211883545 + ], + [ + "▁mile", + -10.77690601348877 + ], + [ + "▁stages", + -10.77730941772461 + ], + [ + "▁Mer", + -10.77741527557373 + ], + [ + "▁loving", + -10.777652740478516 + ], + [ + "▁flooring", + -10.77791690826416 + ], + [ + "▁(2", + -10.77796459197998 + ], + [ + "▁trips", + -10.778081893920898 + ], + [ + "▁Limited", + -10.778312683105469 + ], + [ + "▁personnel", + -10.778797149658203 + ], + [ + "▁aims", + -10.778975486755371 + ], + [ + "▁deeper", + -10.77914810180664 + ], + [ + "▁Britain", + -10.7792387008667 + ], + [ + "▁creativity", + -10.77945613861084 + ], + [ + "▁OK", + -10.779512405395508 + ], + [ + "she", + -10.77963924407959 + ], + [ + "▁visitor", + -10.779818534851074 + ], + [ + "▁findings", + -10.780329704284668 + ], + [ + "▁Private", + -10.780587196350098 + ], + [ + "win", + -10.781150817871094 + ], + [ + "▁lies", + -10.781591415405273 + ], + [ + "▁rapidly", + -10.781710624694824 + ], + [ + "▁seed", + -10.781837463378906 + ], + [ + "▁75", + -10.781845092773438 + ], + [ + "profit", + -10.781990051269531 + ], + [ + "▁rising", + -10.78287410736084 + ], + [ + "▁Republic", + -10.784064292907715 + ], + [ + "▁Standard", + -10.784346580505371 + ], + [ + "▁sensor", + -10.784401893615723 + ], + [ + "Con", + -10.78444766998291 + ], + [ + "▁AI", + -10.784991264343262 + ], + [ + "▁7.", + -10.785573959350586 + ], + [ + "▁relations", + -10.785962104797363 + ], + [ + "▁succeed", + -10.786223411560059 + ], + [ + "▁packaging", + -10.786340713500977 + ], + [ + "▁Kit", + -10.786808967590332 + ], + [ + "▁Gen", + -10.78726577758789 + ], + [ + "▁boot", + -10.787323951721191 + ], + [ + "▁WordPress", + -10.788311004638672 + ], + [ + "▁harder", + -10.788403511047363 + ], + [ + "▁Ge", + -10.788494110107422 + ], + [ + "▁backup", + -10.78860092163086 + ], + [ + "til", + -10.78862190246582 + ], + [ + "▁incident", + -10.788644790649414 + ], + [ + "▁formation", + -10.788703918457031 + ], + [ + "▁Joseph", + -10.788926124572754 + ], + [ + "▁Sand", + -10.789153099060059 + ], + [ + "▁strive", + -10.789249420166016 + ], + [ + "▁sole", + -10.789414405822754 + ], + [ + "▁decor", + -10.789998054504395 + ], + [ + "▁refund", + -10.7900972366333 + ], + [ + "▁illegal", + -10.790254592895508 + ], + [ + "▁Moreover", + -10.790291786193848 + ], + [ + "▁Color", + -10.790640830993652 + ], + [ + "▁ending", + -10.790801048278809 + ], + [ + "▁bunch", + -10.791211128234863 + ], + [ + "▁remained", + -10.791217803955078 + ], + [ + "▁illness", + -10.791257858276367 + ], + [ + "▁ceremony", + -10.791291236877441 + ], + [ + "▁evaluate", + -10.791301727294922 + ], + [ + "▁Max", + -10.791674613952637 + ], + [ + "MA", + -10.791747093200684 + ], + [ + "▁attending", + -10.792170524597168 + ], + [ + "▁acquire", + -10.792189598083496 + ], + [ + "▁Cook", + -10.792621612548828 + ], + [ + "▁Guys", + -10.792737007141113 + ], + [ + "▁responses", + -10.792768478393555 + ], + [ + "▁scores", + -10.793173789978027 + ], + [ + "▁massage", + -10.793641090393066 + ], + [ + "▁admit", + -10.793700218200684 + ], + [ + "▁Perfect", + -10.794149398803711 + ], + [ + "▁Simply", + -10.794346809387207 + ], + [ + "▁Computer", + -10.794508934020996 + ], + [ + "bed", + -10.795073509216309 + ], + [ + "GB", + -10.795111656188965 + ], + [ + "▁riding", + -10.795629501342773 + ], + [ + "▁API", + -10.796098709106445 + ], + [ + "ric", + -10.796144485473633 + ], + [ + "▁promotion", + -10.796165466308594 + ], + [ + "▁graphic", + -10.796335220336914 + ], + [ + "▁Policy", + -10.796772956848145 + ], + [ + "▁Large", + -10.796866416931152 + ], + [ + "rim", + -10.79689884185791 + ], + [ + "ches", + -10.79703426361084 + ], + [ + "▁FL", + -10.797192573547363 + ], + [ + "▁anymore", + -10.797212600708008 + ], + [ + "▁persons", + -10.797273635864258 + ], + [ + "▁statistics", + -10.797322273254395 + ], + [ + "▁clicking", + -10.79736042022705 + ], + [ + "▁bills", + -10.797649383544922 + ], + [ + "▁studied", + -10.79803466796875 + ], + [ + "▁Studio", + -10.798130989074707 + ], + [ + "▁phones", + -10.798394203186035 + ], + [ + "▁signature", + -10.798409461975098 + ], + [ + "▁column", + -10.798445701599121 + ], + [ + "▁Rights", + -10.798674583435059 + ], + [ + "▁Korea", + -10.798904418945312 + ], + [ + "▁iPad", + -10.798942565917969 + ], + [ + "gent", + -10.799017906188965 + ], + [ + "PS", + -10.799513816833496 + ], + [ + "▁Oct", + -10.799659729003906 + ], + [ + "foot", + -10.800047874450684 + ], + [ + "▁Square", + -10.800198554992676 + ], + [ + "▁compete", + -10.800267219543457 + ], + [ + "▁currency", + -10.800267219543457 + ], + [ + "▁Field", + -10.800281524658203 + ], + [ + "▁afraid", + -10.800426483154297 + ], + [ + "get", + -10.800454139709473 + ], + [ + "▁PS", + -10.801252365112305 + ], + [ + "97", + -10.801328659057617 + ], + [ + "▁Justice", + -10.801353454589844 + ], + [ + "▁Del", + -10.802010536193848 + ], + [ + "▁hanging", + -10.802420616149902 + ], + [ + "▁flour", + -10.80268383026123 + ], + [ + "eng", + -10.802925109863281 + ], + [ + "▁Fe", + -10.803132057189941 + ], + [ + "▁Working", + -10.803295135498047 + ], + [ + "▁transform", + -10.803546905517578 + ], + [ + "▁indoor", + -10.80363655090332 + ], + [ + "▁falling", + -10.80383586883545 + ], + [ + "▁accounting", + -10.803908348083496 + ], + [ + "▁SC", + -10.803963661193848 + ], + [ + "▁3-", + -10.804051399230957 + ], + [ + "▁Create", + -10.80431842803955 + ], + [ + "▁Sp", + -10.804619789123535 + ], + [ + "▁understood", + -10.804841995239258 + ], + [ + "▁brush", + -10.80484390258789 + ], + [ + "▁excess", + -10.804987907409668 + ], + [ + "▁des", + -10.805130004882812 + ], + [ + "▁Administration", + -10.805230140686035 + ], + [ + "▁Irish", + -10.805315971374512 + ], + [ + "ES", + -10.805985450744629 + ], + [ + "▁prime", + -10.806201934814453 + ], + [ + "▁inventory", + -10.806370735168457 + ], + [ + "63", + -10.80678939819336 + ], + [ + "▁initially", + -10.806930541992188 + ], + [ + "▁Pay", + -10.807029724121094 + ], + [ + "▁Everything", + -10.80708122253418 + ], + [ + "▁principal", + -10.807093620300293 + ], + [ + "▁workshops", + -10.807121276855469 + ], + [ + "RP", + -10.807135581970215 + ], + [ + "▁$4", + -10.807254791259766 + ], + [ + "▁Force", + -10.807379722595215 + ], + [ + "▁interact", + -10.807454109191895 + ], + [ + "▁conventional", + -10.807821273803711 + ], + [ + "▁Annual", + -10.808075904846191 + ], + [ + "53", + -10.80852222442627 + ], + [ + "ura", + -10.808696746826172 + ], + [ + "gle", + -10.808806419372559 + ], + [ + "mann", + -10.809062957763672 + ], + [ + "▁chronic", + -10.809612274169922 + ], + [ + "▁painted", + -10.809649467468262 + ], + [ + "▁exit", + -10.80970573425293 + ], + [ + "▁Secretary", + -10.809967994689941 + ], + [ + "▁Va", + -10.810093879699707 + ], + [ + "▁contest", + -10.810114860534668 + ], + [ + "▁diversity", + -10.8106689453125 + ], + [ + "29", + -10.810708999633789 + ], + [ + "▁Available", + -10.8108491897583 + ], + [ + "▁Wa", + -10.811066627502441 + ], + [ + "▁headed", + -10.811782836914062 + ], + [ + "▁hopes", + -10.811922073364258 + ], + [ + "96", + -10.81212043762207 + ], + [ + "▁Server", + -10.812125205993652 + ], + [ + "▁50%", + -10.812353134155273 + ], + [ + "▁Turn", + -10.812481880187988 + ], + [ + "▁stylish", + -10.81309700012207 + ], + [ + "▁Tor", + -10.8131103515625 + ], + [ + "▁conversion", + -10.813535690307617 + ], + [ + "▁Beautiful", + -10.813735008239746 + ], + [ + "▁acquired", + -10.813846588134766 + ], + [ + "▁MO", + -10.813894271850586 + ], + [ + "▁believes", + -10.814275741577148 + ], + [ + "▁laid", + -10.81484603881836 + ], + [ + "▁Vol", + -10.814875602722168 + ], + [ + "pan", + -10.814960479736328 + ], + [ + "▁substantial", + -10.815452575683594 + ], + [ + "▁Sal", + -10.815571784973145 + ], + [ + "▁subscription", + -10.815914154052734 + ], + [ + "▁Products", + -10.816350936889648 + ], + [ + "▁Fall", + -10.816384315490723 + ], + [ + "▁shirt", + -10.816496849060059 + ], + [ + "▁appointed", + -10.81655216217041 + ], + [ + "IP", + -10.816605567932129 + ], + [ + "▁Gallery", + -10.817095756530762 + ], + [ + "▁decent", + -10.817119598388672 + ], + [ + "▁neither", + -10.817692756652832 + ], + [ + "▁resolve", + -10.817824363708496 + ], + [ + "▁equally", + -10.817872047424316 + ], + [ + "▁decline", + -10.818807601928711 + ], + [ + "▁journal", + -10.818869590759277 + ], + [ + "je", + -10.818942070007324 + ], + [ + "67", + -10.81912612915039 + ], + [ + "▁gender", + -10.819281578063965 + ], + [ + "▁viewing", + -10.819345474243164 + ], + [ + "68", + -10.819368362426758 + ], + [ + "▁Net", + -10.819523811340332 + ], + [ + "▁reaching", + -10.819585800170898 + ], + [ + "▁continuous", + -10.819758415222168 + ], + [ + "▁gather", + -10.819798469543457 + ], + [ + "▁Agency", + -10.82010269165039 + ], + [ + "▁Cha", + -10.820237159729004 + ], + [ + "AD", + -10.820316314697266 + ], + [ + "TA", + -10.8204984664917 + ], + [ + "▁documentation", + -10.820600509643555 + ], + [ + "pin", + -10.82099723815918 + ], + [ + "▁twin", + -10.82103443145752 + ], + [ + "▁intellectual", + -10.821353912353516 + ], + [ + "how", + -10.821393966674805 + ], + [ + "▁Awards", + -10.821431159973145 + ], + [ + "▁Mount", + -10.821619033813477 + ], + [ + "▁Below", + -10.822113037109375 + ], + [ + "▁unknown", + -10.822124481201172 + ], + [ + "▁permit", + -10.822381973266602 + ], + [ + "05", + -10.82254695892334 + ], + [ + "54", + -10.823068618774414 + ], + [ + "▁engines", + -10.823128700256348 + ], + [ + "bri", + -10.823222160339355 + ], + [ + "▁stability", + -10.823235511779785 + ], + [ + "▁pit", + -10.823240280151367 + ], + [ + "▁guard", + -10.823328018188477 + ], + [ + "03", + -10.823341369628906 + ], + [ + "▁reveal", + -10.823359489440918 + ], + [ + "▁stations", + -10.823553085327148 + ], + [ + "▁heads", + -10.823626518249512 + ], + [ + "▁breaking", + -10.823749542236328 + ], + [ + "▁Er", + -10.823790550231934 + ], + [ + "▁roads", + -10.823810577392578 + ], + [ + "TO", + -10.824118614196777 + ], + [ + "▁2013.", + -10.824636459350586 + ], + [ + "▁Tax", + -10.824893951416016 + ], + [ + "home", + -10.825030326843262 + ], + [ + "▁invite", + -10.825124740600586 + ], + [ + "▁rapid", + -10.825549125671387 + ], + [ + "▁shade", + -10.825634002685547 + ], + [ + "▁55", + -10.826436996459961 + ], + [ + "wan", + -10.826760292053223 + ], + [ + "ON", + -10.82680606842041 + ], + [ + "BC", + -10.826923370361328 + ], + [ + "▁faced", + -10.82699203491211 + ], + [ + "▁adopted", + -10.82778549194336 + ], + [ + "▁Was", + -10.827861785888672 + ], + [ + "▁professor", + -10.828177452087402 + ], + [ + "▁angle", + -10.828211784362793 + ], + [ + "▁operated", + -10.828546524047852 + ], + [ + "▁wake", + -10.828560829162598 + ], + [ + "▁Age", + -10.828573226928711 + ], + [ + "▁Run", + -10.828691482543945 + ], + [ + "▁participating", + -10.828753471374512 + ], + [ + "▁portable", + -10.828944206237793 + ], + [ + "▁layers", + -10.829130172729492 + ], + [ + "▁mechanical", + -10.829873085021973 + ], + [ + "▁deeply", + -10.830082893371582 + ], + [ + "▁Village", + -10.830107688903809 + ], + [ + "▁tired", + -10.830141067504883 + ], + [ + "▁01", + -10.830297470092773 + ], + [ + "▁farmers", + -10.830304145812988 + ], + [ + "rry", + -10.830726623535156 + ], + [ + "▁Spa", + -10.83127212524414 + ], + [ + "▁tournament", + -10.831290245056152 + ], + [ + "▁Crusher", + -10.83205509185791 + ], + [ + "▁Number", + -10.832235336303711 + ], + [ + "▁imp", + -10.832494735717773 + ], + [ + "ا", + -10.83258056640625 + ], + [ + "▁Far", + -10.832856178283691 + ], + [ + "▁smartphone", + -10.832890510559082 + ], + [ + "▁floors", + -10.832906723022461 + ], + [ + "▁coat", + -10.833161354064941 + ], + [ + "▁institution", + -10.833450317382812 + ], + [ + "▁depression", + -10.833749771118164 + ], + [ + "▁emphasis", + -10.83378791809082 + ], + [ + "ual", + -10.833879470825195 + ], + [ + "▁advise", + -10.833974838256836 + ], + [ + "▁Vegas", + -10.834173202514648 + ], + [ + "▁objectives", + -10.834210395812988 + ], + [ + "▁advantages", + -10.834657669067383 + ], + [ + "ella", + -10.835053443908691 + ], + [ + "▁Creek", + -10.835126876831055 + ], + [ + "▁Ocean", + -10.835725784301758 + ], + [ + "qui", + -10.8358793258667 + ], + [ + "▁consequences", + -10.836007118225098 + ], + [ + "▁AS", + -10.836233139038086 + ], + [ + "▁ALL", + -10.836236000061035 + ], + [ + "▁rubber", + -10.836450576782227 + ], + [ + "▁Ga", + -10.836688995361328 + ], + [ + "NA", + -10.836902618408203 + ], + [ + "▁Las", + -10.837035179138184 + ], + [ + "▁plane", + -10.83743667602539 + ], + [ + "▁User", + -10.83763599395752 + ], + [ + "▁blow", + -10.83789348602295 + ], + [ + "▁Change", + -10.838151931762695 + ], + [ + "▁fabulous", + -10.838415145874023 + ], + [ + "▁productivity", + -10.838438034057617 + ], + [ + "▁relation", + -10.838464736938477 + ], + [ + "Le", + -10.838580131530762 + ], + [ + "▁experiment", + -10.838617324829102 + ], + [ + "▁claimed", + -10.83880615234375 + ], + [ + "oz", + -10.838834762573242 + ], + [ + "▁assembly", + -10.838910102844238 + ], + [ + "▁Avenue", + -10.839012145996094 + ], + [ + "cast", + -10.83914566040039 + ], + [ + "▁tooth", + -10.839241981506348 + ], + [ + "cip", + -10.839652061462402 + ], + [ + "▁su", + -10.83967399597168 + ], + [ + "▁childhood", + -10.839805603027344 + ], + [ + "[", + -10.839818000793457 + ], + [ + "▁insights", + -10.839890480041504 + ], + [ + "▁cm", + -10.840215682983398 + ], + [ + "▁Ram", + -10.840307235717773 + ], + [ + "▁wondering", + -10.840344429016113 + ], + [ + "fish", + -10.840483665466309 + ], + [ + "▁Senate", + -10.840679168701172 + ], + [ + "▁inspection", + -10.84074878692627 + ], + [ + "▁returning", + -10.841156959533691 + ], + [ + "▁sought", + -10.84125804901123 + ], + [ + "▁indicated", + -10.841280937194824 + ], + [ + "▁Ask", + -10.841511726379395 + ], + [ + "▁authentic", + -10.841754913330078 + ], + [ + "▁ba", + -10.84177017211914 + ], + [ + "▁promoting", + -10.84216022491455 + ], + [ + "▁climb", + -10.842167854309082 + ], + [ + "card", + -10.842265129089355 + ], + [ + "▁Sales", + -10.84242057800293 + ], + [ + "gu", + -10.84245491027832 + ], + [ + "▁arrange", + -10.842485427856445 + ], + [ + "▁ban", + -10.842524528503418 + ], + [ + "▁Ve", + -10.842668533325195 + ], + [ + "▁attitude", + -10.84280776977539 + ], + [ + "▁emails", + -10.843233108520508 + ], + [ + "▁pizza", + -10.843306541442871 + ], + [ + "▁artwork", + -10.84335994720459 + ], + [ + "▁suite", + -10.843550682067871 + ], + [ + "▁Toronto", + -10.843839645385742 + ], + [ + "▁Eastern", + -10.844093322753906 + ], + [ + "nce", + -10.844328880310059 + ], + [ + "▁lists", + -10.844378471374512 + ], + [ + "▁quotes", + -10.844683647155762 + ], + [ + "▁exterior", + -10.844907760620117 + ], + [ + "rid", + -10.845342636108398 + ], + [ + "07", + -10.845616340637207 + ], + [ + "▁Shi", + -10.845698356628418 + ], + [ + "2.", + -10.846207618713379 + ], + [ + "▁Band", + -10.846587181091309 + ], + [ + "▁gym", + -10.847070693969727 + ], + [ + "-2", + -10.84707260131836 + ], + [ + "▁decrease", + -10.847155570983887 + ], + [ + "ants", + -10.847604751586914 + ], + [ + "▁reception", + -10.847664833068848 + ], + [ + "▁latter", + -10.84771728515625 + ], + [ + "▁trusted", + -10.847825050354004 + ], + [ + "▁grateful", + -10.847929000854492 + ], + [ + "▁flights", + -10.847944259643555 + ], + [ + "▁investments", + -10.848337173461914 + ], + [ + "▁wallpaper", + -10.84836483001709 + ], + [ + "▁safely", + -10.848922729492188 + ], + [ + "▁1998", + -10.848960876464844 + ], + [ + "▁initiatives", + -10.849061012268066 + ], + [ + "▁bedrooms", + -10.84912395477295 + ], + [ + "▁bid", + -10.849174499511719 + ], + [ + "▁southern", + -10.849313735961914 + ], + [ + "▁computers", + -10.84970760345459 + ], + [ + "▁organisations", + -10.849721908569336 + ], + [ + "▁medication", + -10.850095748901367 + ], + [ + "▁Action", + -10.850152015686035 + ], + [ + "relating", + -10.850410461425781 + ], + [ + "qua", + -10.850447654724121 + ], + [ + "▁golden", + -10.850547790527344 + ], + [ + "▁encounter", + -10.850570678710938 + ], + [ + "▁sink", + -10.85070514678955 + ], + [ + "▁segment", + -10.851045608520508 + ], + [ + "date", + -10.85135269165039 + ], + [ + "08", + -10.851576805114746 + ], + [ + "▁tele", + -10.851710319519043 + ], + [ + "▁DNA", + -10.851901054382324 + ], + [ + "▁philosophy", + -10.852059364318848 + ], + [ + "ban", + -10.852499961853027 + ], + [ + "▁und", + -10.852840423583984 + ], + [ + "uch", + -10.85300064086914 + ], + [ + "▁religion", + -10.853530883789062 + ], + [ + "▁hide", + -10.853538513183594 + ], + [ + "▁temperatures", + -10.853540420532227 + ], + [ + "▁AT", + -10.853874206542969 + ], + [ + "▁hiring", + -10.853934288024902 + ], + [ + "zy", + -10.853958129882812 + ], + [ + "▁foam", + -10.853961944580078 + ], + [ + "▁math", + -10.854011535644531 + ], + [ + "▁Student", + -10.854043006896973 + ], + [ + "▁restore", + -10.854052543640137 + ], + [ + "FA", + -10.854535102844238 + ], + [ + "▁37", + -10.85467529296875 + ], + [ + "▁1000", + -10.854992866516113 + ], + [ + "▁belt", + -10.85500717163086 + ], + [ + "▁Tree", + -10.855306625366211 + ], + [ + "some", + -10.855329513549805 + ], + [ + "▁NC", + -10.855438232421875 + ], + [ + "▁meets", + -10.855473518371582 + ], + [ + "kan", + -10.85580825805664 + ], + [ + "▁Ku", + -10.855881690979004 + ], + [ + "▁min", + -10.855947494506836 + ], + [ + "▁Forest", + -10.856284141540527 + ], + [ + "▁injured", + -10.856694221496582 + ], + [ + "▁buyer", + -10.856762886047363 + ], + [ + "▁tackle", + -10.856902122497559 + ], + [ + "▁cart", + -10.857037544250488 + ], + [ + "▁supplier", + -10.85715389251709 + ], + [ + "▁Ya", + -10.857403755187988 + ], + [ + "ich", + -10.857613563537598 + ], + [ + "▁bond", + -10.857616424560547 + ], + [ + "part", + -10.857746124267578 + ], + [ + "▁shut", + -10.857904434204102 + ], + [ + "die", + -10.858047485351562 + ], + [ + "▁themes", + -10.85818099975586 + ], + [ + "▁Mid", + -10.859910011291504 + ], + [ + "▁Val", + -10.860023498535156 + ], + [ + "▁(1)", + -10.860379219055176 + ], + [ + "▁Kim", + -10.860530853271484 + ], + [ + "▁employ", + -10.860631942749023 + ], + [ + "▁watched", + -10.860769271850586 + ], + [ + "▁composition", + -10.861294746398926 + ], + [ + "ters", + -10.86137866973877 + ], + [ + "▁2016,", + -10.862083435058594 + ], + [ + "▁Ann", + -10.862133026123047 + ], + [ + "▁reform", + -10.862326622009277 + ], + [ + "▁servers", + -10.862504959106445 + ], + [ + "▁mold", + -10.862714767456055 + ], + [ + "▁Mother", + -10.862733840942383 + ], + [ + "▁contributions", + -10.86313533782959 + ], + [ + "▁trash", + -10.86317253112793 + ], + [ + "▁exists", + -10.863239288330078 + ], + [ + "▁Samsung", + -10.864063262939453 + ], + [ + "▁Follow", + -10.864115715026855 + ], + [ + "SU", + -10.864455223083496 + ], + [ + "ju", + -10.864545822143555 + ], + [ + "aka", + -10.86478328704834 + ], + [ + "▁Trade", + -10.864943504333496 + ], + [ + "▁Ken", + -10.86515998840332 + ], + [ + "▁moral", + -10.865406036376953 + ], + [ + "rich", + -10.865543365478516 + ], + [ + "▁corn", + -10.865555763244629 + ], + [ + "▁ownership", + -10.865946769714355 + ], + [ + "▁argue", + -10.866259574890137 + ], + [ + "▁compact", + -10.86632251739502 + ], + [ + "▁importantly", + -10.86715030670166 + ], + [ + "59", + -10.867205619812012 + ], + [ + "▁tube", + -10.867321014404297 + ], + [ + "ving", + -10.867352485656738 + ], + [ + "▁Officer", + -10.867467880249023 + ], + [ + "▁genuine", + -10.8674955368042 + ], + [ + "▁holes", + -10.868071556091309 + ], + [ + "▁forth", + -10.86837387084961 + ], + [ + "▁thousand", + -10.868489265441895 + ], + [ + "▁fence", + -10.868494987487793 + ], + [ + "▁involve", + -10.868701934814453 + ], + [ + "▁abilities", + -10.868742942810059 + ], + [ + "▁Feb", + -10.86876392364502 + ], + [ + "▁warning", + -10.868789672851562 + ], + [ + "▁loose", + -10.869203567504883 + ], + [ + "66", + -10.86921215057373 + ], + [ + "▁Description", + -10.869404792785645 + ], + [ + "▁belief", + -10.869427680969238 + ], + [ + "aries", + -10.86943531036377 + ], + [ + "▁Min", + -10.869649887084961 + ], + [ + "▁languages", + -10.869688987731934 + ], + [ + "lay", + -10.86978816986084 + ], + [ + "▁circle", + -10.869912147521973 + ], + [ + "▁developer", + -10.869955062866211 + ], + [ + "▁SP", + -10.870012283325195 + ], + [ + "▁Golden", + -10.870110511779785 + ], + [ + "▁mechanism", + -10.870380401611328 + ], + [ + "▁Louis", + -10.870427131652832 + ], + [ + "▁raising", + -10.871038436889648 + ], + [ + "72", + -10.871094703674316 + ], + [ + "mark", + -10.871118545532227 + ], + [ + "▁38", + -10.871230125427246 + ], + [ + "▁employed", + -10.87126636505127 + ], + [ + "▁Wild", + -10.871642112731934 + ], + [ + "▁mistake", + -10.871657371520996 + ], + [ + "▁unexpected", + -10.872209548950195 + ], + [ + "▁applies", + -10.872295379638672 + ], + [ + "▁survive", + -10.873165130615234 + ], + [ + "▁Bell", + -10.873176574707031 + ], + [ + "▁consistently", + -10.873641014099121 + ], + [ + "▁Kids", + -10.874107360839844 + ], + [ + "▁wanting", + -10.874302864074707 + ], + [ + "▁prescription", + -10.874553680419922 + ], + [ + "▁2-", + -10.874698638916016 + ], + [ + "mate", + -10.875137329101562 + ], + [ + "▁lets", + -10.87523078918457 + ], + [ + "▁alarm", + -10.87574577331543 + ], + [ + "amongst", + -10.875747680664062 + ], + [ + "▁pitch", + -10.875791549682617 + ], + [ + "▁jewelry", + -10.875825881958008 + ], + [ + "▁soup", + -10.875882148742676 + ], + [ + "▁exception", + -10.876036643981934 + ], + [ + "▁fault", + -10.876070022583008 + ], + [ + "▁networking", + -10.876561164855957 + ], + [ + "▁behaviour", + -10.876604080200195 + ], + [ + "type", + -10.876688957214355 + ], + [ + "▁contracts", + -10.87678337097168 + ], + [ + "▁distributed", + -10.876823425292969 + ], + [ + "52", + -10.876973152160645 + ], + [ + "▁emerging", + -10.877254486083984 + ], + [ + "▁Arizona", + -10.877537727355957 + ], + [ + "▁unusual", + -10.877986907958984 + ], + [ + "▁transformation", + -10.87813663482666 + ], + [ + "▁lab", + -10.878137588500977 + ], + [ + "▁racing", + -10.878149032592773 + ], + [ + "▁Sydney", + -10.878181457519531 + ], + [ + "▁2004", + -10.878257751464844 + ], + [ + "▁respective", + -10.878262519836426 + ], + [ + "dale", + -10.878294944763184 + ], + [ + "▁worship", + -10.878388404846191 + ], + [ + "▁MD", + -10.878555297851562 + ], + [ + "▁anniversary", + -10.878900527954102 + ], + [ + "▁infection", + -10.879262924194336 + ], + [ + "▁bold", + -10.879562377929688 + ], + [ + "▁pilot", + -10.879655838012695 + ], + [ + "scale", + -10.879708290100098 + ], + [ + "dal", + -10.880136489868164 + ], + [ + "Among", + -10.88019847869873 + ], + [ + "▁reserve", + -10.880607604980469 + ], + [ + "▁Share", + -10.881546974182129 + ], + [ + "▁emotions", + -10.882206916809082 + ], + [ + "▁maps", + -10.882227897644043 + ], + [ + "▁merely", + -10.882227897644043 + ], + [ + "▁hall", + -10.88239860534668 + ], + [ + "2,", + -10.882549285888672 + ], + [ + "▁showcase", + -10.882810592651367 + ], + [ + "▁resident", + -10.882903099060059 + ], + [ + "▁pipe", + -10.882984161376953 + ], + [ + "▁ranging", + -10.883101463317871 + ], + [ + "▁evil", + -10.883357048034668 + ], + [ + "▁prison", + -10.883429527282715 + ], + [ + "▁flag", + -10.883475303649902 + ], + [ + "▁Content", + -10.883644104003906 + ], + [ + "▁coloring", + -10.88366985321045 + ], + [ + "▁instrument", + -10.883671760559082 + ], + [ + "und", + -10.883931159973145 + ], + [ + "▁abroad", + -10.883977890014648 + ], + [ + "wing", + -10.884079933166504 + ], + [ + "MC", + -10.884130477905273 + ], + [ + "▁2.0", + -10.884150505065918 + ], + [ + "▁faces", + -10.884291648864746 + ], + [ + "▁Level", + -10.884342193603516 + ], + [ + "▁Tech", + -10.884389877319336 + ], + [ + "▁talented", + -10.884404182434082 + ], + [ + "▁cameras", + -10.884455680847168 + ], + [ + "ome", + -10.884456634521484 + ], + [ + "▁coaching", + -10.884684562683105 + ], + [ + "▁enforcement", + -10.884723663330078 + ], + [ + "▁pursue", + -10.884838104248047 + ], + [ + "▁Ri", + -10.884908676147461 + ], + [ + "tim", + -10.885102272033691 + ], + [ + "▁reserved", + -10.88513469696045 + ], + [ + "cho", + -10.885228157043457 + ], + [ + "▁plot", + -10.885274887084961 + ], + [ + "▁Fast", + -10.885726928710938 + ], + [ + "▁shoulder", + -10.88573169708252 + ], + [ + "▁comprise", + -10.88595199584961 + ], + [ + "▁Within", + -10.886063575744629 + ], + [ + "▁Illinois", + -10.886180877685547 + ], + [ + "rick", + -10.886787414550781 + ], + [ + "▁recall", + -10.886929512023926 + ], + [ + "▁investing", + -10.887042045593262 + ], + [ + "▁grey", + -10.887048721313477 + ], + [ + "▁drain", + -10.887598991394043 + ], + [ + "▁Scotland", + -10.887641906738281 + ], + [ + "▁possibilities", + -10.88768482208252 + ], + [ + "1,", + -10.888120651245117 + ], + [ + "▁Ryan", + -10.888120651245117 + ], + [ + "▁gene", + -10.888176918029785 + ], + [ + "service", + -10.888235092163086 + ], + [ + "▁Down", + -10.888337135314941 + ], + [ + "try", + -10.888519287109375 + ], + [ + "▁Season", + -10.888888359069824 + ], + [ + "▁mistakes", + -10.8892183303833 + ], + [ + "My", + -10.889278411865234 + ], + [ + "cul", + -10.889484405517578 + ], + [ + "▁mountains", + -10.889735221862793 + ], + [ + "▁nursing", + -10.889755249023438 + ], + [ + "▁sequence", + -10.890533447265625 + ], + [ + "▁Em", + -10.890813827514648 + ], + [ + "▁specialists", + -10.891035079956055 + ], + [ + "▁employers", + -10.89111042022705 + ], + [ + "▁65", + -10.89118480682373 + ], + [ + "▁equity", + -10.891255378723145 + ], + [ + "▁impression", + -10.8914794921875 + ], + [ + "▁weapons", + -10.891596794128418 + ], + [ + "▁120", + -10.891634941101074 + ], + [ + "gra", + -10.891850471496582 + ], + [ + "▁Express", + -10.891968727111816 + ], + [ + "▁distinct", + -10.892048835754395 + ], + [ + "ä", + -10.892107963562012 + ], + [ + "▁diagram", + -10.893017768859863 + ], + [ + "▁1980", + -10.893328666687012 + ], + [ + "▁adapt", + -10.89344596862793 + ], + [ + "▁Ministry", + -10.893624305725098 + ], + [ + "IS", + -10.893818855285645 + ], + [ + "high", + -10.894142150878906 + ], + [ + "mel", + -10.89417552947998 + ], + [ + "▁MI", + -10.894258499145508 + ], + [ + "▁spectacular", + -10.894441604614258 + ], + [ + "▁meaningful", + -10.894697189331055 + ], + [ + "test", + -10.894972801208496 + ], + [ + "▁targeted", + -10.895049095153809 + ], + [ + "▁displays", + -10.896151542663574 + ], + [ + "▁tons", + -10.896320343017578 + ], + [ + "▁operational", + -10.8963623046875 + ], + [ + "▁directions", + -10.896467208862305 + ], + [ + "▁recover", + -10.896690368652344 + ], + [ + "▁exceed", + -10.896750450134277 + ], + [ + "▁burn", + -10.896759033203125 + ], + [ + "▁wheels", + -10.897015571594238 + ], + [ + "-3", + -10.897221565246582 + ], + [ + "300", + -10.89737319946289 + ], + [ + "▁slip", + -10.897655487060547 + ], + [ + "▁spare", + -10.897675514221191 + ], + [ + "▁Nor", + -10.898764610290527 + ], + [ + "▁folder", + -10.8988618850708 + ], + [ + "▁instruction", + -10.899038314819336 + ], + [ + "▁matching", + -10.899140357971191 + ], + [ + "▁olive", + -10.899380683898926 + ], + [ + "▁SA", + -10.899469375610352 + ], + [ + "▁Meanwhile", + -10.900039672851562 + ], + [ + "▁coal", + -10.900433540344238 + ], + [ + "▁directory", + -10.90074634552002 + ], + [ + "There", + -10.90119457244873 + ], + [ + "▁drama", + -10.901435852050781 + ], + [ + "DC", + -10.901803970336914 + ], + [ + "▁regulatory", + -10.902481079101562 + ], + [ + "▁elected", + -10.902573585510254 + ], + [ + "▁Saint", + -10.902596473693848 + ], + [ + "▁2012.", + -10.90286922454834 + ], + [ + "▁contractors", + -10.903039932250977 + ], + [ + "▁10%", + -10.903046607971191 + ], + [ + "▁sorry", + -10.903067588806152 + ], + [ + "▁nose", + -10.903303146362305 + ], + [ + "▁charity", + -10.903572082519531 + ], + [ + "▁environments", + -10.903728485107422 + ], + [ + "▁Glass", + -10.90373420715332 + ], + [ + "▁hits", + -10.905004501342773 + ], + [ + "▁globe", + -10.905349731445312 + ], + [ + "▁extract", + -10.905364036560059 + ], + [ + "▁Iran", + -10.906109809875488 + ], + [ + "▁Mass", + -10.906134605407715 + ], + [ + "▁combat", + -10.906166076660156 + ], + [ + "▁banking", + -10.906326293945312 + ], + [ + "▁Rob", + -10.906513214111328 + ], + [ + "▁measured", + -10.906859397888184 + ], + [ + "▁essentially", + -10.907090187072754 + ], + [ + "▁fluid", + -10.907402038574219 + ], + [ + "care", + -10.908512115478516 + ], + [ + "▁copyright", + -10.908692359924316 + ], + [ + "▁specialize", + -10.908773422241211 + ], + [ + "▁stayed", + -10.908843040466309 + ], + [ + "▁Fox", + -10.908963203430176 + ], + [ + "▁trick", + -10.909035682678223 + ], + [ + "▁Henry", + -10.909486770629883 + ], + [ + "▁differ", + -10.909625053405762 + ], + [ + "▁mount", + -10.909849166870117 + ], + [ + "▁overcome", + -10.910065650939941 + ], + [ + "LA", + -10.910115242004395 + ], + [ + "▁compatible", + -10.910587310791016 + ], + [ + "▁expanded", + -10.910663604736328 + ], + [ + "▁founder", + -10.91085433959961 + ], + [ + "mor", + -10.910988807678223 + ], + [ + "▁Stock", + -10.911320686340332 + ], + [ + "▁Bal", + -10.911994934082031 + ], + [ + "▁lie", + -10.912109375 + ], + [ + "▁highlights", + -10.912452697753906 + ], + [ + "▁Chapter", + -10.912553787231445 + ], + [ + "▁templates", + -10.912785530090332 + ], + [ + "▁flu", + -10.91339111328125 + ], + [ + "▁conclusion", + -10.91340160369873 + ], + [ + "▁Grant", + -10.913413047790527 + ], + [ + "mus", + -10.913469314575195 + ], + [ + "▁curriculum", + -10.913755416870117 + ], + [ + "84", + -10.913857460021973 + ], + [ + "0%", + -10.914054870605469 + ], + [ + "▁Civil", + -10.914203643798828 + ], + [ + "▁cheaper", + -10.914512634277344 + ], + [ + "▁western", + -10.914813041687012 + ], + [ + "▁tail", + -10.914838790893555 + ], + [ + "▁1/2", + -10.914907455444336 + ], + [ + "▁copies", + -10.915061950683594 + ], + [ + "▁tri", + -10.915125846862793 + ], + [ + "▁Hong", + -10.915412902832031 + ], + [ + "▁twist", + -10.915443420410156 + ], + [ + "ika", + -10.915631294250488 + ], + [ + "▁losses", + -10.916180610656738 + ], + [ + "▁Put", + -10.916230201721191 + ], + [ + "▁patch", + -10.916509628295898 + ], + [ + "▁Currently", + -10.916542053222656 + ], + [ + "▁39", + -10.916664123535156 + ], + [ + "▁Mini", + -10.916805267333984 + ], + [ + "▁fiber", + -10.916933059692383 + ], + [ + "▁Taylor", + -10.916946411132812 + ], + [ + "▁diabetes", + -10.917183876037598 + ], + [ + "▁intense", + -10.91771411895752 + ], + [ + "▁Kong", + -10.917800903320312 + ], + [ + "▁constructed", + -10.917915344238281 + ], + [ + "▁suffered", + -10.918063163757324 + ], + [ + "rian", + -10.91806697845459 + ], + [ + "▁enhanced", + -10.918498039245605 + ], + [ + "▁reply", + -10.918649673461914 + ], + [ + "▁Protection", + -10.919045448303223 + ], + [ + "world", + -10.919116973876953 + ], + [ + "▁CT", + -10.919225692749023 + ], + [ + "▁Short", + -10.919438362121582 + ], + [ + "▁designing", + -10.91994857788086 + ], + [ + "▁acquisition", + -10.920084953308105 + ], + [ + "▁expense", + -10.92027473449707 + ], + [ + "▁tension", + -10.920293807983398 + ], + [ + "-8", + -10.92033576965332 + ], + [ + "▁suddenly", + -10.920429229736328 + ], + [ + "▁solo", + -10.920646667480469 + ], + [ + "▁editing", + -10.920743942260742 + ], + [ + "▁screening", + -10.920858383178711 + ], + [ + "▁instruments", + -10.920862197875977 + ], + [ + "▁analyze", + -10.920912742614746 + ], + [ + "▁Dream", + -10.920978546142578 + ], + [ + "▁Solutions", + -10.921004295349121 + ], + [ + "bal", + -10.921233177185059 + ], + [ + "▁Jackson", + -10.92133903503418 + ], + [ + "▁situated", + -10.921539306640625 + ], + [ + "▁Winter", + -10.921866416931152 + ], + [ + "month", + -10.92241382598877 + ], + [ + "▁PR", + -10.922439575195312 + ], + [ + "aid", + -10.922752380371094 + ], + [ + "▁boards", + -10.922891616821289 + ], + [ + "▁Dar", + -10.92304515838623 + ], + [ + "▁2003", + -10.923298835754395 + ], + [ + "ple", + -10.923307418823242 + ], + [ + "▁Houston", + -10.923336029052734 + ], + [ + "▁cooked", + -10.92357349395752 + ], + [ + "400", + -10.923583030700684 + ], + [ + "▁handy", + -10.923640251159668 + ], + [ + "▁lemon", + -10.923765182495117 + ], + [ + "▁representation", + -10.923951148986816 + ], + [ + "▁representatives", + -10.92398738861084 + ], + [ + "▁Hard", + -10.924097061157227 + ], + [ + "power", + -10.92413330078125 + ], + [ + "▁satellite", + -10.924155235290527 + ], + [ + "from", + -10.924208641052246 + ], + [ + "▁Adam", + -10.924298286437988 + ], + [ + "▁Kar", + -10.924356460571289 + ], + [ + "▁rough", + -10.9245023727417 + ], + [ + "▁nights", + -10.925082206726074 + ], + [ + "onic", + -10.925480842590332 + ], + [ + "▁casual", + -10.925482749938965 + ], + [ + "▁northern", + -10.925524711608887 + ], + [ + "▁muscles", + -10.925878524780273 + ], + [ + "RC", + -10.92602825164795 + ], + [ + "OL", + -10.926169395446777 + ], + [ + "▁bug", + -10.926393508911133 + ], + [ + "▁coupon", + -10.92732048034668 + ], + [ + "▁flood", + -10.927510261535645 + ], + [ + "▁Blog", + -10.927532196044922 + ], + [ + "▁frequent", + -10.9276123046875 + ], + [ + "▁rarely", + -10.927793502807617 + ], + [ + "▁broke", + -10.927823066711426 + ], + [ + "92", + -10.929081916809082 + ], + [ + "▁Cool", + -10.929646492004395 + ], + [ + "▁Oak", + -10.929649353027344 + ], + [ + "▁demo", + -10.929927825927734 + ], + [ + "▁accomplish", + -10.930516242980957 + ], + [ + "▁salad", + -10.93087387084961 + ], + [ + "▁sentence", + -10.930948257446289 + ], + [ + "▁universities", + -10.931242942810059 + ], + [ + "▁letting", + -10.93130111694336 + ], + [ + "▁Stephen", + -10.93148422241211 + ], + [ + "▁murder", + -10.931822776794434 + ], + [ + "▁Columbia", + -10.931825637817383 + ], + [ + "▁rolling", + -10.932143211364746 + ], + [ + "▁prompt", + -10.932147026062012 + ], + [ + "▁Sound", + -10.932430267333984 + ], + [ + "▁principle", + -10.932607650756836 + ], + [ + "▁2015,", + -10.932634353637695 + ], + [ + "▁modified", + -10.932962417602539 + ], + [ + "ction", + -10.93331241607666 + ], + [ + "▁financing", + -10.933869361877441 + ], + [ + "91", + -10.934417724609375 + ], + [ + "▁Classic", + -10.934731483459473 + ], + [ + "▁overnight", + -10.934844017028809 + ], + [ + "▁locally", + -10.934905052185059 + ], + [ + "▁symbol", + -10.935248374938965 + ], + [ + "▁iOS", + -10.935279846191406 + ], + [ + "▁parameters", + -10.935530662536621 + ], + [ + "▁experiencing", + -10.935730934143066 + ], + [ + "▁Bre", + -10.935884475708008 + ], + [ + "▁Exchange", + -10.936429023742676 + ], + [ + "▁stood", + -10.936594009399414 + ], + [ + "77", + -10.93667221069336 + ], + [ + "▁shock", + -10.937019348144531 + ], + [ + "▁beautifully", + -10.93713092803955 + ], + [ + "▁Forum", + -10.937313079833984 + ], + [ + "▁struggling", + -10.937334060668945 + ], + [ + "▁strike", + -10.937417030334473 + ], + [ + "▁quantity", + -10.937824249267578 + ], + [ + "▁artificial", + -10.93791389465332 + ], + [ + "▁wiring", + -10.938129425048828 + ], + [ + "▁Za", + -10.938264846801758 + ], + [ + "ache", + -10.938486099243164 + ], + [ + "▁printer", + -10.938544273376465 + ], + [ + "▁Course", + -10.93862533569336 + ], + [ + "▁Member", + -10.938667297363281 + ], + [ + "cut", + -10.938830375671387 + ], + [ + "87", + -10.939069747924805 + ], + [ + "▁trigger", + -10.939152717590332 + ], + [ + "▁64", + -10.939995765686035 + ], + [ + "minute", + -10.940237998962402 + ], + [ + "â", + -10.940446853637695 + ], + [ + "▁keyboard", + -10.940500259399414 + ], + [ + "late", + -10.940571784973145 + ], + [ + "▁grace", + -10.940613746643066 + ], + [ + "code", + -10.940792083740234 + ], + [ + "game", + -10.940834999084473 + ], + [ + "▁fifth", + -10.940921783447266 + ], + [ + "▁newspaper", + -10.940937995910645 + ], + [ + "▁divided", + -10.94129753112793 + ], + [ + "▁spacious", + -10.941555976867676 + ], + [ + "And", + -10.942052841186523 + ], + [ + "▁removing", + -10.94235897064209 + ], + [ + "▁Latin", + -10.942641258239746 + ], + [ + "▁Ag", + -10.94283390045166 + ], + [ + "▁officially", + -10.942849159240723 + ], + [ + "▁Brian", + -10.943303108215332 + ], + [ + "▁Chair", + -10.943333625793457 + ], + [ + "▁yield", + -10.943343162536621 + ], + [ + "▁Ray", + -10.94339656829834 + ], + [ + "even", + -10.943527221679688 + ], + [ + "▁Cut", + -10.94392204284668 + ], + [ + "▁uniform", + -10.943927764892578 + ], + [ + "▁del", + -10.94394588470459 + ], + [ + "▁efficiently", + -10.944042205810547 + ], + [ + "▁generic", + -10.944258689880371 + ], + [ + "▁moon", + -10.944350242614746 + ], + [ + "1.", + -10.944493293762207 + ], + [ + "▁tub", + -10.944580078125 + ], + [ + "▁mattress", + -10.944620132446289 + ], + [ + "▁Theatre", + -10.944732666015625 + ], + [ + "▁Boy", + -10.945367813110352 + ], + [ + "▁surely", + -10.9453763961792 + ], + [ + "LE", + -10.945435523986816 + ], + [ + "▁Never", + -10.9454984664917 + ], + [ + "▁hike", + -10.945589065551758 + ], + [ + "▁specialized", + -10.945920944213867 + ], + [ + "▁Paper", + -10.945945739746094 + ], + [ + "DP", + -10.946219444274902 + ], + [ + "▁narrative", + -10.9462890625 + ], + [ + "▁addressed", + -10.946629524230957 + ], + [ + "dic", + -10.94664478302002 + ], + [ + "▁visits", + -10.946793556213379 + ], + [ + "▁Pakistan", + -10.946882247924805 + ], + [ + "▁Mrs", + -10.946898460388184 + ], + [ + "logy", + -10.946914672851562 + ], + [ + "▁Pack", + -10.947285652160645 + ], + [ + "▁Figure", + -10.947296142578125 + ], + [ + "iness", + -10.947342872619629 + ], + [ + "ied", + -10.947630882263184 + ], + [ + "▁scan", + -10.948278427124023 + ], + [ + "▁genetic", + -10.948841094970703 + ], + [ + "▁finishing", + -10.94930362701416 + ], + [ + "▁instantly", + -10.949345588684082 + ], + [ + "▁fewer", + -10.949370384216309 + ], + [ + "▁placement", + -10.949508666992188 + ], + [ + "??", + -10.949649810791016 + ], + [ + "▁connecting", + -10.949764251708984 + ], + [ + "▁actively", + -10.949800491333008 + ], + [ + "▁odd", + -10.949870109558105 + ], + [ + "▁Ash", + -10.95007610321045 + ], + [ + "mal", + -10.95019817352295 + ], + [ + "▁boast", + -10.95042610168457 + ], + [ + "▁Nick", + -10.950467109680176 + ], + [ + "▁campaigns", + -10.95064926147461 + ], + [ + "▁Size", + -10.950838088989258 + ], + [ + "▁tablet", + -10.951062202453613 + ], + [ + "▁appliances", + -10.951203346252441 + ], + [ + "TV", + -10.951268196105957 + ], + [ + "▁processed", + -10.951271057128906 + ], + [ + "▁250", + -10.95130443572998 + ], + [ + "▁proceed", + -10.951783180236816 + ], + [ + "RE", + -10.951805114746094 + ], + [ + "▁supplied", + -10.952361106872559 + ], + [ + "Retrieved", + -10.952390670776367 + ], + [ + "▁gentle", + -10.95283317565918 + ], + [ + "▁lo", + -10.952983856201172 + ], + [ + "▁customized", + -10.953039169311523 + ], + [ + "▁difficulty", + -10.953086853027344 + ], + [ + "▁scenes", + -10.953254699707031 + ], + [ + "▁heavily", + -10.953263282775879 + ], + [ + "▁inspire", + -10.953659057617188 + ], + [ + "ump", + -10.953768730163574 + ], + [ + "▁gotten", + -10.953779220581055 + ], + [ + "▁wise", + -10.953875541687012 + ], + [ + "‘", + -10.954115867614746 + ], + [ + "▁variable", + -10.954623222351074 + ], + [ + "▁swing", + -10.95471477508545 + ], + [ + "▁Alex", + -10.95494556427002 + ], + [ + "▁Bra", + -10.954970359802246 + ], + [ + "▁auction", + -10.95506763458252 + ], + [ + "▁sheets", + -10.955072402954102 + ], + [ + "▁minister", + -10.955135345458984 + ], + [ + "▁thoroughly", + -10.955148696899414 + ], + [ + "▁Miami", + -10.955381393432617 + ], + [ + "thi", + -10.955487251281738 + ], + [ + "▁Nu", + -10.956314086914062 + ], + [ + "▁vertical", + -10.956339836120605 + ], + [ + "▁cooperation", + -10.956623077392578 + ], + [ + "▁diagnosis", + -10.956771850585938 + ], + [ + "▁arrangements", + -10.957429885864258 + ], + [ + "▁chest", + -10.957542419433594 + ], + [ + "74", + -10.957566261291504 + ], + [ + "matic", + -10.95846939086914 + ], + [ + "▁periods", + -10.958494186401367 + ], + [ + "▁mouse", + -10.958612442016602 + ], + [ + "▁ministry", + -10.959037780761719 + ], + [ + "▁':", + -10.95925235748291 + ], + [ + "▁impressed", + -10.959260940551758 + ], + [ + "▁roots", + -10.959270477294922 + ], + [ + "▁wider", + -10.959348678588867 + ], + [ + "▁invention", + -10.959444046020508 + ], + [ + "▁weak", + -10.959548950195312 + ], + [ + "62", + -10.960036277770996 + ], + [ + "▁opinions", + -10.960078239440918 + ], + [ + "▁relaxing", + -10.960100173950195 + ], + [ + "HS", + -10.960175514221191 + ], + [ + "▁settlement", + -10.960259437561035 + ], + [ + "IR", + -10.960363388061523 + ], + [ + "▁Mu", + -10.960554122924805 + ], + [ + "▁Ch", + -10.960565567016602 + ], + [ + "▁apparently", + -10.960688591003418 + ], + [ + "▁cuts", + -10.96108341217041 + ], + [ + "88", + -10.961309432983398 + ], + [ + "▁falls", + -10.961564064025879 + ], + [ + "▁Republican", + -10.961759567260742 + ], + [ + "IC", + -10.962225914001465 + ], + [ + "▁Interior", + -10.962335586547852 + ], + [ + "▁copper", + -10.962445259094238 + ], + [ + "▁pleasant", + -10.962664604187012 + ], + [ + "▁union", + -10.962902069091797 + ], + [ + "▁robust", + -10.963358879089355 + ], + [ + "PO", + -10.96337604522705 + ], + [ + "▁subsequent", + -10.963376998901367 + ], + [ + "▁beds", + -10.963678359985352 + ], + [ + "▁heritage", + -10.963873863220215 + ], + [ + "▁administrative", + -10.96395492553711 + ], + [ + "▁precious", + -10.964054107666016 + ], + [ + "▁aluminum", + -10.964831352233887 + ], + [ + "▁ought", + -10.964879989624023 + ], + [ + "▁Besides", + -10.96504020690918 + ], + [ + "▁(2)", + -10.965056419372559 + ], + [ + "▁1)", + -10.965476036071777 + ], + [ + "▁contractor", + -10.965479850769043 + ], + [ + "▁Pennsylvania", + -10.965486526489258 + ], + [ + "▁vendors", + -10.965559959411621 + ], + [ + "▁alert", + -10.965723037719727 + ], + [ + "oli", + -10.965903282165527 + ], + [ + "71", + -10.966031074523926 + ], + [ + "▁Golf", + -10.966279029846191 + ], + [ + "▁titles", + -10.966348648071289 + ], + [ + "▁dose", + -10.96645736694336 + ], + [ + "▁sophisticated", + -10.966540336608887 + ], + [ + "▁ON", + -10.967008590698242 + ], + [ + "▁pi", + -10.967435836791992 + ], + [ + "▁duration", + -10.9674711227417 + ], + [ + "▁1997", + -10.96764850616455 + ], + [ + "bound", + -10.967720985412598 + ], + [ + "▁edited", + -10.967780113220215 + ], + [ + "▁loop", + -10.967851638793945 + ], + [ + "ili", + -10.968241691589355 + ], + [ + "ü", + -10.968429565429688 + ], + [ + "▁grid", + -10.968734741210938 + ], + [ + "worth", + -10.96960735321045 + ], + [ + "▁HR", + -10.969925880432129 + ], + [ + "▁shapes", + -10.969940185546875 + ], + [ + "▁garlic", + -10.969944953918457 + ], + [ + "▁Resort", + -10.970059394836426 + ], + [ + "▁stack", + -10.970210075378418 + ], + [ + "table", + -10.970254898071289 + ], + [ + "sky", + -10.970317840576172 + ], + [ + "▁everybody", + -10.970919609069824 + ], + [ + "burn", + -10.97097396850586 + ], + [ + "▁Pet", + -10.971308708190918 + ], + [ + "▁BC", + -10.971986770629883 + ], + [ + "cro", + -10.972127914428711 + ], + [ + "▁overview", + -10.972283363342285 + ], + [ + "▁worn", + -10.97339153289795 + ], + [ + "▁Study", + -10.973711967468262 + ], + [ + "▁Dark", + -10.973745346069336 + ], + [ + "▁concentration", + -10.973974227905273 + ], + [ + "09", + -10.974210739135742 + ], + [ + "▁Construction", + -10.974263191223145 + ], + [ + "▁Bor", + -10.974507331848145 + ], + [ + "▁$10", + -10.974557876586914 + ], + [ + "RO", + -10.974732398986816 + ], + [ + "▁bra", + -10.97490406036377 + ], + [ + "▁Practice", + -10.975034713745117 + ], + [ + "▁Application", + -10.975130081176758 + ], + [ + "UR", + -10.975436210632324 + ], + [ + "▁engineers", + -10.975606918334961 + ], + [ + "▁discussions", + -10.975805282592773 + ], + [ + "AR", + -10.976058006286621 + ], + [ + "ude", + -10.97618579864502 + ], + [ + "play", + -10.976191520690918 + ], + [ + "▁amenities", + -10.976216316223145 + ], + [ + "▁scenario", + -10.976482391357422 + ], + [ + "tur", + -10.976603507995605 + ], + [ + "94", + -10.97661018371582 + ], + [ + "▁honey", + -10.976616859436035 + ], + [ + "▁disk", + -10.976888656616211 + ], + [ + "83", + -10.97690486907959 + ], + [ + "▁Pick", + -10.976905822753906 + ], + [ + "link", + -10.977149963378906 + ], + [ + "▁Trans", + -10.977386474609375 + ], + [ + "▁slots", + -10.977410316467285 + ], + [ + "▁intend", + -10.977463722229004 + ], + [ + "ense", + -10.977629661560059 + ], + [ + "▁Double", + -10.977783203125 + ], + [ + "▁bacteria", + -10.97791862487793 + ], + [ + "▁Clean", + -10.97797679901123 + ], + [ + "▁Property", + -10.9780912399292 + ], + [ + "▁Hello", + -10.978155136108398 + ], + [ + "▁Much", + -10.978188514709473 + ], + [ + "oil", + -10.978219032287598 + ], + [ + "▁reverse", + -10.978273391723633 + ], + [ + "▁Euro", + -10.978503227233887 + ], + [ + "▁Jr", + -10.978714942932129 + ], + [ + "▁Date", + -10.979204177856445 + ], + [ + "▁franchise", + -10.97921371459961 + ], + [ + "▁describes", + -10.98002815246582 + ], + [ + "▁44", + -10.980775833129883 + ], + [ + "▁seller", + -10.981197357177734 + ], + [ + "▁Daily", + -10.98127555847168 + ], + [ + "í", + -10.98129653930664 + ], + [ + "▁NA", + -10.981419563293457 + ], + [ + "▁agenda", + -10.981866836547852 + ], + [ + "▁aged", + -10.981955528259277 + ], + [ + "▁discounts", + -10.982001304626465 + ], + [ + "Com", + -10.982062339782715 + ], + [ + "▁picking", + -10.982094764709473 + ], + [ + "▁gathering", + -10.9823579788208 + ], + [ + "600", + -10.982522010803223 + ], + [ + "▁1:", + -10.982951164245605 + ], + [ + "Al", + -10.98313045501709 + ], + [ + "page", + -10.983180046081543 + ], + [ + "▁Tra", + -10.98355484008789 + ], + [ + "▁regulation", + -10.983667373657227 + ], + [ + "▁Gr", + -10.983804702758789 + ], + [ + "RI", + -10.984009742736816 + ], + [ + "http", + -10.98408317565918 + ], + [ + "▁mess", + -10.984550476074219 + ], + [ + "▁signing", + -10.984578132629395 + ], + [ + "Ex", + -10.984611511230469 + ], + [ + "▁pets", + -10.984657287597656 + ], + [ + "▁Miss", + -10.984660148620605 + ], + [ + "▁victim", + -10.98508358001709 + ], + [ + "▁virtually", + -10.985159873962402 + ], + [ + "read", + -10.985334396362305 + ], + [ + "▁optimal", + -10.985433578491211 + ], + [ + "▁8.", + -10.985438346862793 + ], + [ + "▁Challenge", + -10.985462188720703 + ], + [ + "▁FIG", + -10.985548973083496 + ], + [ + "▁oral", + -10.985575675964355 + ], + [ + "▁(“", + -10.985696792602539 + ], + [ + "▁Quick", + -10.985774993896484 + ], + [ + "▁surrounded", + -10.986465454101562 + ], + [ + "▁Mad", + -10.986653327941895 + ], + [ + "▁Always", + -10.986898422241211 + ], + [ + "▁integrate", + -10.986957550048828 + ], + [ + "▁ME", + -10.986991882324219 + ], + [ + "▁completing", + -10.987241744995117 + ], + [ + "▁Moon", + -10.987360000610352 + ], + [ + "▁podcast", + -10.98748779296875 + ], + [ + "▁III", + -10.987822532653809 + ], + [ + "▁grip", + -10.988061904907227 + ], + [ + "▁strengthen", + -10.988155364990234 + ], + [ + "▁opposed", + -10.988184928894043 + ], + [ + "▁universe", + -10.98852252960205 + ], + [ + "€", + -10.988640785217285 + ], + [ + "▁crystal", + -10.988716125488281 + ], + [ + "▁lawn", + -10.98893928527832 + ], + [ + "▁Finance", + -10.988999366760254 + ], + [ + "▁DJ", + -10.989021301269531 + ], + [ + "▁moisture", + -10.989258766174316 + ], + [ + "▁Oregon", + -10.989429473876953 + ], + [ + "▁Unlike", + -10.98951530456543 + ], + [ + "▁remarkable", + -10.989741325378418 + ], + [ + "▁600", + -10.989969253540039 + ], + [ + "▁laugh", + -10.990232467651367 + ], + [ + "▁wildlife", + -10.990238189697266 + ], + [ + "▁commission", + -10.9904146194458 + ], + [ + "Located", + -10.99059009552002 + ], + [ + "▁attempts", + -10.990833282470703 + ], + [ + "▁Vo", + -10.991342544555664 + ], + [ + "ington", + -10.991393089294434 + ], + [ + "▁keys", + -10.991527557373047 + ], + [ + "▁theatre", + -10.991584777832031 + ], + [ + "▁targets", + -10.991593360900879 + ], + [ + "▁rated", + -10.991809844970703 + ], + [ + "name", + -10.991888999938965 + ], + [ + "▁pl", + -10.992193222045898 + ], + [ + "▁Baby", + -10.992280960083008 + ], + [ + "▁Prior", + -10.99230670928955 + ], + [ + "▁vibrant", + -10.99285888671875 + ], + [ + "ect", + -10.99298095703125 + ], + [ + "▁tender", + -10.993830680847168 + ], + [ + "fully", + -10.993934631347656 + ], + [ + ":00", + -10.993988037109375 + ], + [ + "▁grill", + -10.994158744812012 + ], + [ + "▁passes", + -10.994227409362793 + ], + [ + "▁shell", + -10.994284629821777 + ], + [ + "▁Author", + -10.994325637817383 + ], + [ + "▁appreciated", + -10.994650840759277 + ], + [ + "▁Case", + -10.994658470153809 + ], + [ + "▁Several", + -10.994709014892578 + ], + [ + "▁closet", + -10.994746208190918 + ], + [ + "dar", + -10.994868278503418 + ], + [ + "▁profession", + -10.994881629943848 + ], + [ + "▁cord", + -10.995760917663574 + ], + [ + "ates", + -10.995766639709473 + ], + [ + "▁Complete", + -10.996615409851074 + ], + [ + "▁integrity", + -10.996638298034668 + ], + [ + "OT", + -10.996795654296875 + ], + [ + "▁balanced", + -10.9970703125 + ], + [ + "73", + -10.997374534606934 + ], + [ + "▁fireplace", + -10.997427940368652 + ], + [ + "▁Supreme", + -10.99750804901123 + ], + [ + "▁clubs", + -10.99771499633789 + ], + [ + "▁wrap", + -10.99774169921875 + ], + [ + "▁victims", + -10.997857093811035 + ], + [ + "▁Gas", + -10.997922897338867 + ], + [ + "▁1999", + -10.997936248779297 + ], + [ + "▁exercises", + -10.998002052307129 + ], + [ + "▁tours", + -10.998008728027344 + ], + [ + "▁damages", + -10.998130798339844 + ], + [ + "▁crash", + -10.998146057128906 + ], + [ + "▁Mix", + -10.998160362243652 + ], + [ + "▁mild", + -10.998647689819336 + ], + [ + "▁artistic", + -10.998751640319824 + ], + [ + "▁blind", + -10.998906135559082 + ], + [ + "▁wisdom", + -10.999079704284668 + ], + [ + "▁happiness", + -10.999419212341309 + ], + [ + "▁Unit", + -10.999836921691895 + ], + [ + "▁washing", + -10.999975204467773 + ], + [ + "▁finger", + -11.000336647033691 + ], + [ + "▁den", + -11.000493049621582 + ], + [ + "▁makeup", + -11.000956535339355 + ], + [ + "▁personalized", + -11.001229286193848 + ], + [ + "▁mat", + -11.001289367675781 + ], + [ + "▁vice", + -11.00129508972168 + ], + [ + "▁meters", + -11.001648902893066 + ], + [ + "▁interviews", + -11.001653671264648 + ], + [ + "dom", + -11.001805305480957 + ], + [ + "-20", + -11.002161979675293 + ], + [ + "▁origin", + -11.002185821533203 + ], + [ + "▁cooling", + -11.002877235412598 + ], + [ + "▁2)", + -11.00290584564209 + ], + [ + "▁Cost", + -11.004010200500488 + ], + [ + "▁Victoria", + -11.004076957702637 + ], + [ + "▁restoration", + -11.00440788269043 + ], + [ + "▁singing", + -11.004533767700195 + ], + [ + "▁translation", + -11.004716873168945 + ], + [ + "▁poly", + -11.004953384399414 + ], + [ + "▁Stay", + -11.00533676147461 + ], + [ + "61", + -11.005425453186035 + ], + [ + "▁preserve", + -11.005560874938965 + ], + [ + "ski", + -11.006281852722168 + ], + [ + "▁Further", + -11.006692886352539 + ], + [ + "▁Source", + -11.00670337677002 + ], + [ + "▁photographer", + -11.007180213928223 + ], + [ + "▁Austin", + -11.007635116577148 + ], + [ + "▁cur", + -11.008402824401855 + ], + [ + "▁versus", + -11.008441925048828 + ], + [ + "▁BA", + -11.008455276489258 + ], + [ + "▁investigate", + -11.00850772857666 + ], + [ + "shi", + -11.008605003356934 + ], + [ + "▁1996", + -11.008649826049805 + ], + [ + "▁Sarah", + -11.008838653564453 + ], + [ + "BS", + -11.00908088684082 + ], + [ + "▁Jeff", + -11.009224891662598 + ], + [ + "82", + -11.00996208190918 + ], + [ + "02", + -11.009974479675293 + ], + [ + "▁tonight", + -11.010025024414062 + ], + [ + "▁Overall", + -11.010026931762695 + ], + [ + "▁Early", + -11.010108947753906 + ], + [ + "▁delivers", + -11.010214805603027 + ], + [ + "▁ordinary", + -11.010334968566895 + ], + [ + "▁elsewhere", + -11.010416030883789 + ], + [ + "▁capability", + -11.010824203491211 + ], + [ + "ious", + -11.011326789855957 + ], + [ + "▁apple", + -11.011656761169434 + ], + [ + "▁Diego", + -11.012280464172363 + ], + [ + "▁basketball", + -11.01236629486084 + ], + [ + "▁discovery", + -11.012417793273926 + ], + [ + "▁neutral", + -11.012511253356934 + ], + [ + "1)", + -11.012683868408203 + ], + [ + "▁Donald", + -11.012980461120605 + ], + [ + "▁Self", + -11.012982368469238 + ], + [ + "▁competitors", + -11.013067245483398 + ], + [ + "▁pray", + -11.013395309448242 + ], + [ + "ode", + -11.013585090637207 + ], + [ + "▁tourist", + -11.013725280761719 + ], + [ + "▁parallel", + -11.013819694519043 + ], + [ + "CU", + -11.014089584350586 + ], + [ + "▁restrictions", + -11.014094352722168 + ], + [ + "▁disaster", + -11.01413631439209 + ], + [ + "▁publish", + -11.014451026916504 + ], + [ + "▁rack", + -11.014472007751465 + ], + [ + "▁sleeping", + -11.014854431152344 + ], + [ + "▁publishing", + -11.015013694763184 + ], + [ + "▁Edition", + -11.01522445678711 + ], + [ + "▁mounted", + -11.015654563903809 + ], + [ + "fire", + -11.01583194732666 + ], + [ + "▁representing", + -11.015859603881836 + ], + [ + "▁spin", + -11.016491889953613 + ], + [ + "▁duties", + -11.017032623291016 + ], + [ + "▁bench", + -11.017419815063477 + ], + [ + "▁producer", + -11.017455101013184 + ], + [ + "▁reviewed", + -11.017489433288574 + ], + [ + "▁hopefully", + -11.017609596252441 + ], + [ + "▁Easter", + -11.01761531829834 + ], + [ + "▁suspect", + -11.017681121826172 + ], + [ + "▁1970", + -11.017715454101562 + ], + [ + "▁jaw", + -11.017731666564941 + ], + [ + "▁Mat", + -11.017908096313477 + ], + [ + "▁fascinating", + -11.01791763305664 + ], + [ + "▁indicates", + -11.018036842346191 + ], + [ + "▁Bed", + -11.018182754516602 + ], + [ + "▁trailer", + -11.018301963806152 + ], + [ + "▁romantic", + -11.01832103729248 + ], + [ + "RA", + -11.01889419555664 + ], + [ + "▁interpretation", + -11.019027709960938 + ], + [ + "▁pointed", + -11.019071578979492 + ], + [ + "ME", + -11.019265174865723 + ], + [ + "▁Fresh", + -11.019400596618652 + ], + [ + "81", + -11.019506454467773 + ], + [ + "▁Advanced", + -11.019533157348633 + ], + [ + "▁substance", + -11.019580841064453 + ], + [ + "▁gambling", + -11.019620895385742 + ], + [ + "oriented", + -11.02040958404541 + ], + [ + "amp", + -11.020483016967773 + ], + [ + "▁dramatic", + -11.020513534545898 + ], + [ + "▁Rev", + -11.020540237426758 + ], + [ + "▁Ste", + -11.020822525024414 + ], + [ + "▁wins", + -11.021041870117188 + ], + [ + "▁drives", + -11.02127742767334 + ], + [ + "▁ver", + -11.021295547485352 + ], + [ + "▁bulk", + -11.021425247192383 + ], + [ + "▁piano", + -11.021557807922363 + ], + [ + "▁Magazine", + -11.021722793579102 + ], + [ + "▁earnings", + -11.022010803222656 + ], + [ + "ement", + -11.022221565246582 + ], + [ + "tru", + -11.022318840026855 + ], + [ + "▁Child", + -11.022509574890137 + ], + [ + "aimed", + -11.022696495056152 + ], + [ + "▁Could", + -11.02274227142334 + ], + [ + "▁AD", + -11.022753715515137 + ], + [ + "▁bass", + -11.022810935974121 + ], + [ + "wide", + -11.023002624511719 + ], + [ + "▁arrangement", + -11.023017883300781 + ], + [ + "▁toilet", + -11.023293495178223 + ], + [ + "▁sectors", + -11.023297309875488 + ], + [ + "▁2011.", + -11.023502349853516 + ], + [ + "▁productive", + -11.023526191711426 + ], + [ + "▁Organization", + -11.024415016174316 + ], + [ + "hal", + -11.024430274963379 + ], + [ + "▁somehow", + -11.024557113647461 + ], + [ + "▁knee", + -11.024768829345703 + ], + [ + "▁chemicals", + -11.02487564086914 + ], + [ + "▁hub", + -11.025450706481934 + ], + [ + "▁structural", + -11.025866508483887 + ], + [ + "▁absence", + -11.026155471801758 + ], + [ + "▁Eric", + -11.026166915893555 + ], + [ + "▁filing", + -11.02617073059082 + ], + [ + "round", + -11.026520729064941 + ], + [ + "vel", + -11.02656078338623 + ], + [ + "▁chip", + -11.026957511901855 + ], + [ + "week", + -11.027122497558594 + ], + [ + "▁Industry", + -11.027196884155273 + ], + [ + "PM", + -11.027295112609863 + ], + [ + "▁Nature", + -11.027331352233887 + ], + [ + "▁ultra", + -11.027474403381348 + ], + [ + "▁shine", + -11.027792930603027 + ], + [ + "▁dirt", + -11.02784252166748 + ], + [ + "gue", + -11.028165817260742 + ], + [ + "▁endless", + -11.028460502624512 + ], + [ + "▁Members", + -11.028556823730469 + ], + [ + "▁Minnesota", + -11.028592109680176 + ], + [ + "▁Roll", + -11.028701782226562 + ], + [ + "▁gate", + -11.028716087341309 + ], + [ + "▁Nothing", + -11.028838157653809 + ], + [ + "▁hook", + -11.028840065002441 + ], + [ + "ö", + -11.028878211975098 + ], + [ + "▁nutrition", + -11.029037475585938 + ], + [ + "▁burden", + -11.029061317443848 + ], + [ + "▁mono", + -11.0291748046875 + ], + [ + "▁Enterprise", + -11.029390335083008 + ], + [ + "▁manufactured", + -11.029425621032715 + ], + [ + "▁Turkey", + -11.029501914978027 + ], + [ + "hol", + -11.030153274536133 + ], + [ + "▁Ju", + -11.030228614807129 + ], + [ + "▁salary", + -11.030645370483398 + ], + [ + "elle", + -11.030706405639648 + ], + [ + "DA", + -11.030803680419922 + ], + [ + "▁width", + -11.031150817871094 + ], + [ + "▁Nice", + -11.031591415405273 + ], + [ + "▁Wedding", + -11.031749725341797 + ], + [ + "▁beef", + -11.031774520874023 + ], + [ + "winning", + -11.031785011291504 + ], + [ + "▁Iron", + -11.031814575195312 + ], + [ + "7%", + -11.031824111938477 + ], + [ + "▁Lin", + -11.031951904296875 + ], + [ + "▁Update", + -11.031956672668457 + ], + [ + "▁1.5", + -11.032085418701172 + ], + [ + "▁broadcast", + -11.032258987426758 + ], + [ + "′′", + -11.032285690307617 + ], + [ + "▁hill", + -11.032363891601562 + ], + [ + "▁burning", + -11.032637596130371 + ], + [ + "▁demonstrated", + -11.032676696777344 + ], + [ + "▁immune", + -11.032689094543457 + ], + [ + "▁newest", + -11.032967567443848 + ], + [ + "▁proved", + -11.033242225646973 + ], + [ + "▁beaches", + -11.03361988067627 + ], + [ + "▁habits", + -11.034421920776367 + ], + [ + "▁Seattle", + -11.034424781799316 + ], + [ + "ante", + -11.034509658813477 + ], + [ + "▁evolution", + -11.034714698791504 + ], + [ + "▁Elizabeth", + -11.035157203674316 + ], + [ + "▁Copyright", + -11.035545349121094 + ], + [ + "▁shoe", + -11.035998344421387 + ], + [ + "▁signals", + -11.036215782165527 + ], + [ + "▁export", + -11.036247253417969 + ], + [ + "???", + -11.036581993103027 + ], + [ + "▁parks", + -11.036897659301758 + ], + [ + "▁thorough", + -11.03725528717041 + ], + [ + "▁adequate", + -11.037343978881836 + ], + [ + "▁chips", + -11.037578582763672 + ], + [ + "mos", + -11.03761100769043 + ], + [ + "▁Core", + -11.037627220153809 + ], + [ + "GA", + -11.037849426269531 + ], + [ + "▁Jordan", + -11.03818130493164 + ], + [ + "▁operator", + -11.038470268249512 + ], + [ + "▁dough", + -11.038668632507324 + ], + [ + "▁Trail", + -11.039572715759277 + ], + [ + "▁estimates", + -11.0396728515625 + ], + [ + "▁summary", + -11.039772987365723 + ], + [ + "▁clip", + -11.03987979888916 + ], + [ + "▁McC", + -11.039958953857422 + ], + [ + "▁pregnancy", + -11.039974212646484 + ], + [ + "▁collections", + -11.039986610412598 + ], + [ + "▁workout", + -11.040205001831055 + ], + [ + "▁superb", + -11.040325164794922 + ], + [ + "lim", + -11.040432929992676 + ], + [ + "▁Davis", + -11.040596961975098 + ], + [ + "▁placing", + -11.040844917297363 + ], + [ + "store", + -11.040938377380371 + ], + [ + "▁File", + -11.04106330871582 + ], + [ + "▁opens", + -11.041128158569336 + ], + [ + "▁Tea", + -11.041251182556152 + ], + [ + "▁intervention", + -11.041253089904785 + ], + [ + "▁supplement", + -11.041367530822754 + ], + [ + "▁Single", + -11.042134284973145 + ], + [ + "▁processor", + -11.042215347290039 + ], + [ + "▁survival", + -11.04223346710205 + ], + [ + "▁Kevin", + -11.042317390441895 + ], + [ + "93", + -11.042376518249512 + ], + [ + "▁fruits", + -11.04249382019043 + ], + [ + "bu", + -11.042723655700684 + ], + [ + "piece", + -11.042792320251465 + ], + [ + "ique", + -11.042832374572754 + ], + [ + "▁enjoyable", + -11.042970657348633 + ], + [ + "▁Meeting", + -11.043230056762695 + ], + [ + "▁produces", + -11.043252944946289 + ], + [ + "▁precise", + -11.043262481689453 + ], + [ + "▁navigate", + -11.043295860290527 + ], + [ + "▁Consider", + -11.04349136352539 + ], + [ + "▁Je", + -11.043498992919922 + ], + [ + "▁gathered", + -11.043608665466309 + ], + [ + "▁mar", + -11.043862342834473 + ], + [ + "▁dive", + -11.043946266174316 + ], + [ + "▁Simon", + -11.043976783752441 + ], + [ + "▁performances", + -11.044114112854004 + ], + [ + "▁delete", + -11.044126510620117 + ], + [ + "▁mask", + -11.044198989868164 + ], + [ + "▁Money", + -11.044356346130371 + ], + [ + "▁enabled", + -11.044561386108398 + ], + [ + "▁edges", + -11.044585227966309 + ], + [ + "▁Dave", + -11.044992446899414 + ], + [ + "▁dependent", + -11.045126914978027 + ], + [ + "wear", + -11.045220375061035 + ], + [ + "▁Final", + -11.04541015625 + ], + [ + "CE", + -11.045722961425781 + ], + [ + "▁arranged", + -11.04597282409668 + ], + [ + "uring", + -11.046643257141113 + ], + [ + "▁Bus", + -11.046813011169434 + ], + [ + "▁2014,", + -11.046974182128906 + ], + [ + "▁selecting", + -11.047579765319824 + ], + [ + "▁pdf", + -11.047933578491211 + ], + [ + "lton", + -11.047951698303223 + ], + [ + "▁fleet", + -11.048050880432129 + ], + [ + "▁army", + -11.048267364501953 + ], + [ + "EC", + -11.048293113708496 + ], + [ + "vers", + -11.048295021057129 + ], + [ + "▁danger", + -11.048310279846191 + ], + [ + "▁rank", + -11.048405647277832 + ], + [ + "▁Round", + -11.048415184020996 + ], + [ + "▁generations", + -11.048446655273438 + ], + [ + "▁worried", + -11.048469543457031 + ], + [ + "▁URL", + -11.04870891571045 + ], + [ + "▁Along", + -11.048819541931152 + ], + [ + "▁killing", + -11.04891586303711 + ], + [ + "▁Eye", + -11.049063682556152 + ], + [ + "source", + -11.049084663391113 + ], + [ + "▁landing", + -11.049444198608398 + ], + [ + "▁settle", + -11.049686431884766 + ], + [ + "▁Ap", + -11.049744606018066 + ], + [ + "▁Things", + -11.050124168395996 + ], + [ + "▁beans", + -11.05018424987793 + ], + [ + "3,", + -11.050206184387207 + ], + [ + "▁opposition", + -11.050761222839355 + ], + [ + "▁whereas", + -11.050813674926758 + ], + [ + "▁crack", + -11.051522254943848 + ], + [ + "▁diameter", + -11.051629066467285 + ], + [ + "▁strain", + -11.051631927490234 + ], + [ + "▁voltage", + -11.051743507385254 + ], + [ + "▁Vice", + -11.051876068115234 + ], + [ + "▁~", + -11.051990509033203 + ], + [ + "▁pie", + -11.052238464355469 + ], + [ + "▁lady", + -11.052825927734375 + ], + [ + "▁Environmental", + -11.053105354309082 + ], + [ + "▁amp", + -11.05366039276123 + ], + [ + "▁Bu", + -11.053683280944824 + ], + [ + "▁mod", + -11.05391788482666 + ], + [ + "▁admission", + -11.054370880126953 + ], + [ + "▁lawyers", + -11.054530143737793 + ], + [ + "▁poverty", + -11.0545654296875 + ], + [ + "▁Planning", + -11.05472183227539 + ], + [ + "NO", + -11.05479907989502 + ], + [ + "▁explanation", + -11.055177688598633 + ], + [ + "8%", + -11.055249214172363 + ], + [ + "▁lasting", + -11.05541706085205 + ], + [ + "tter", + -11.055646896362305 + ], + [ + "sized", + -11.055827140808105 + ], + [ + "▁timing", + -11.055891990661621 + ], + [ + "▁sing", + -11.056023597717285 + ], + [ + "UM", + -11.05604362487793 + ], + [ + "▁fiction", + -11.05643367767334 + ], + [ + "▁surfaces", + -11.056553840637207 + ], + [ + "▁Fi", + -11.056602478027344 + ], + [ + "▁slide", + -11.056736946105957 + ], + [ + "▁Bathroom", + -11.056918144226074 + ], + [ + "screen", + -11.057320594787598 + ], + [ + "ello", + -11.057565689086914 + ], + [ + "▁deserve", + -11.05774974822998 + ], + [ + "▁20%", + -11.057853698730469 + ], + [ + "▁Hollywood", + -11.057957649230957 + ], + [ + "▁Ontario", + -11.058077812194824 + ], + [ + "▁41", + -11.058183670043945 + ], + [ + "rine", + -11.058341026306152 + ], + [ + "avi", + -11.058794975280762 + ], + [ + "▁adoption", + -11.058836936950684 + ], + [ + "▁Ac", + -11.058913230895996 + ], + [ + "▁motivation", + -11.058943748474121 + ], + [ + "▁2002", + -11.05915641784668 + ], + [ + "▁Direct", + -11.059231758117676 + ], + [ + "▁okay", + -11.059528350830078 + ], + [ + "▁hyper", + -11.05966854095459 + ], + [ + "this", + -11.059844970703125 + ], + [ + "▁corresponding", + -11.05993938446045 + ], + [ + "RS", + -11.059946060180664 + ], + [ + "▁captured", + -11.05999755859375 + ], + [ + "▁toys", + -11.060047149658203 + ], + [ + "▁graduated", + -11.0601167678833 + ], + [ + "▁scratch", + -11.0601224899292 + ], + [ + "▁consulting", + -11.060267448425293 + ], + [ + "SD", + -11.060347557067871 + ], + [ + "▁fraud", + -11.060434341430664 + ], + [ + "▁generous", + -11.060474395751953 + ], + [ + "▁grounds", + -11.060608863830566 + ], + [ + "▁Industrial", + -11.06086540222168 + ], + [ + "▁Remove", + -11.061290740966797 + ], + [ + "▁reflection", + -11.061551094055176 + ], + [ + "▁rail", + -11.061625480651855 + ], + [ + "▁forecast", + -11.06180191040039 + ], + [ + "▁announcement", + -11.062715530395508 + ], + [ + "▁bay", + -11.062734603881836 + ], + [ + "▁Sri", + -11.062854766845703 + ], + [ + "▁extraordinary", + -11.062858581542969 + ], + [ + "▁cabinets", + -11.063297271728516 + ], + [ + "▁Miller", + -11.06351375579834 + ], + [ + "▁Sport", + -11.063580513000488 + ], + [ + "So", + -11.063746452331543 + ], + [ + "post", + -11.063875198364258 + ], + [ + "▁£", + -11.064142227172852 + ], + [ + "var", + -11.06441593170166 + ], + [ + "▁Assistant", + -11.064653396606445 + ], + [ + "cor", + -11.06471061706543 + ], + [ + "▁discipline", + -11.064770698547363 + ], + [ + "▁protecting", + -11.0650053024292 + ], + [ + "▁measurement", + -11.065238952636719 + ], + [ + "step", + -11.06524658203125 + ], + [ + "▁alike", + -11.065707206726074 + ], + [ + "▁hybrid", + -11.06572151184082 + ], + [ + "▁li", + -11.06603717803955 + ], + [ + "▁audit", + -11.066195487976074 + ], + [ + "ition", + -11.066471099853516 + ], + [ + "burg", + -11.06708812713623 + ], + [ + "▁winners", + -11.06781005859375 + ], + [ + "▁courts", + -11.068116188049316 + ], + [ + "unt", + -11.068252563476562 + ], + [ + "▁Front", + -11.068779945373535 + ], + [ + "▁fitted", + -11.068804740905762 + ], + [ + "▁comply", + -11.069091796875 + ], + [ + "▁detect", + -11.069165229797363 + ], + [ + "▁52", + -11.069416046142578 + ], + [ + "ister", + -11.069572448730469 + ], + [ + "now", + -11.069584846496582 + ], + [ + "▁Memorial", + -11.06977653503418 + ], + [ + "▁rep", + -11.069805145263672 + ], + [ + "▁advised", + -11.06988525390625 + ], + [ + "▁predict", + -11.069893836975098 + ], + [ + "▁bands", + -11.070573806762695 + ], + [ + "▁VA", + -11.070892333984375 + ], + [ + "yard", + -11.070960998535156 + ], + [ + "▁organize", + -11.070980072021484 + ], + [ + "▁manufacture", + -11.071134567260742 + ], + [ + "▁provisions", + -11.071454048156738 + ], + [ + "▁entity", + -11.071517944335938 + ], + [ + "lot", + -11.071572303771973 + ], + [ + "▁Jay", + -11.071629524230957 + ], + [ + "ral", + -11.072102546691895 + ], + [ + "▁gardens", + -11.072219848632812 + ], + [ + "grade", + -11.072346687316895 + ], + [ + "▁Link", + -11.072482109069824 + ], + [ + "▁Connect", + -11.072514533996582 + ], + [ + "▁Body", + -11.072617530822754 + ], + [ + "▁breed", + -11.072748184204102 + ], + [ + "▁expanding", + -11.07280158996582 + ], + [ + "▁Performance", + -11.072810173034668 + ], + [ + "ddy", + -11.07284927368164 + ], + [ + "space", + -11.07290267944336 + ], + [ + "▁Yu", + -11.073208808898926 + ], + [ + "ale", + -11.073482513427734 + ], + [ + "5,000", + -11.07351016998291 + ], + [ + "▁movements", + -11.073640823364258 + ], + [ + "▁passengers", + -11.073648452758789 + ], + [ + "▁execution", + -11.073654174804688 + ], + [ + "FC", + -11.073848724365234 + ], + [ + "ency", + -11.074078559875488 + ], + [ + "▁import", + -11.07408618927002 + ], + [ + "▁athletes", + -11.074092864990234 + ], + [ + "▁locate", + -11.0748291015625 + ], + [ + "itz", + -11.07484245300293 + ], + [ + "▁assured", + -11.07516860961914 + ], + [ + "▁zip", + -11.075183868408203 + ], + [ + "▁dentist", + -11.075424194335938 + ], + [ + "▁inspiring", + -11.075552940368652 + ], + [ + "▁Pin", + -11.075590133666992 + ], + [ + "800", + -11.075745582580566 + ], + [ + "▁Cur", + -11.075758934020996 + ], + [ + "any", + -11.075838088989258 + ], + [ + "▁qualify", + -11.075946807861328 + ], + [ + "▁underlying", + -11.076101303100586 + ], + [ + "▁wishes", + -11.076160430908203 + ], + [ + "▁cats", + -11.076419830322266 + ], + [ + "▁trim", + -11.076715469360352 + ], + [ + "▁coconut", + -11.076918601989746 + ], + [ + "AT", + -11.077174186706543 + ], + [ + "▁Premier", + -11.077756881713867 + ], + [ + "▁controller", + -11.07788372039795 + ], + [ + "▁visa", + -11.07800006866455 + ], + [ + "▁1995", + -11.07805347442627 + ], + [ + "tail", + -11.078181266784668 + ], + [ + "▁installing", + -11.078453063964844 + ], + [ + "▁Style", + -11.078493118286133 + ], + [ + "▁reward", + -11.078548431396484 + ], + [ + "▁nervous", + -11.078857421875 + ], + [ + "ush", + -11.078967094421387 + ], + [ + "▁disorder", + -11.079057693481445 + ], + [ + "▁profits", + -11.07950496673584 + ], + [ + "▁breaks", + -11.079671859741211 + ], + [ + "born", + -11.079859733581543 + ], + [ + "▁curious", + -11.08008861541748 + ], + [ + "▁carrier", + -11.080256462097168 + ], + [ + "▁acknowledge", + -11.080406188964844 + ], + [ + "▁rescue", + -11.080482482910156 + ], + [ + "▁magical", + -11.08074951171875 + ], + [ + "cent", + -11.08077621459961 + ], + [ + "TE", + -11.08078670501709 + ], + [ + "▁Creative", + -11.080804824829102 + ], + [ + "responsibilities", + -11.080863952636719 + ], + [ + "▁shelf", + -11.08120346069336 + ], + [ + "▁nations", + -11.081564903259277 + ], + [ + "▁Aug", + -11.082077026367188 + ], + [ + "mir", + -11.082077980041504 + ], + [ + "▁excellence", + -11.082209587097168 + ], + [ + "▁acres", + -11.082380294799805 + ], + [ + "▁exclusively", + -11.082427024841309 + ], + [ + "▁Marine", + -11.082527160644531 + ], + [ + "▁unlike", + -11.082788467407227 + ], + [ + "▁answered", + -11.0828218460083 + ], + [ + "▁cancel", + -11.083054542541504 + ], + [ + "▁Rome", + -11.083185195922852 + ], + [ + "у", + -11.083301544189453 + ], + [ + "▁charm", + -11.083661079406738 + ], + [ + "such", + -11.083972930908203 + ], + [ + "▁adopt", + -11.083977699279785 + ], + [ + "3.", + -11.084014892578125 + ], + [ + "▁Dog", + -11.084059715270996 + ], + [ + "▁Making", + -11.084237098693848 + ], + [ + "ku", + -11.084464073181152 + ], + [ + "▁assignment", + -11.084538459777832 + ], + [ + "▁ratings", + -11.084566116333008 + ], + [ + "ink", + -11.084568977355957 + ], + [ + "▁console", + -11.084920883178711 + ], + [ + "▁enormous", + -11.084957122802734 + ], + [ + "▁Brazil", + -11.085060119628906 + ], + [ + "▁Den", + -11.085126876831055 + ], + [ + "▁Prince", + -11.085235595703125 + ], + [ + "ica", + -11.085603713989258 + ], + [ + "▁Us", + -11.086236953735352 + ], + [ + "▁identification", + -11.086369514465332 + ], + [ + "▁solely", + -11.086454391479492 + ], + [ + "▁browse", + -11.086484909057617 + ], + [ + "roll", + -11.086593627929688 + ], + [ + "▁Hol", + -11.087020874023438 + ], + [ + "▁seasons", + -11.087042808532715 + ], + [ + "▁mu", + -11.087514877319336 + ], + [ + "▁outfit", + -11.087607383728027 + ], + [ + "▁Economic", + -11.087847709655762 + ], + [ + "▁Ze", + -11.088020324707031 + ], + [ + "▁lounge", + -11.088088989257812 + ], + [ + "▁Five", + -11.088102340698242 + ], + [ + "▁Future", + -11.088205337524414 + ], + [ + "▁enemy", + -11.088263511657715 + ], + [ + "▁knowledgeable", + -11.088343620300293 + ], + [ + "▁seal", + -11.088351249694824 + ], + [ + "▁actor", + -11.08838939666748 + ], + [ + "▁judgment", + -11.088459014892578 + ], + [ + "FS", + -11.088468551635742 + ], + [ + "▁conversations", + -11.088939666748047 + ], + [ + "▁resist", + -11.089098930358887 + ], + [ + "▁Atlanta", + -11.089308738708496 + ], + [ + "▁contents", + -11.0894136428833 + ], + [ + "▁couch", + -11.08945083618164 + ], + [ + "cus", + -11.089635848999023 + ], + [ + "MB", + -11.09004020690918 + ], + [ + "▁oldest", + -11.090398788452148 + ], + [ + "▁involvement", + -11.090494155883789 + ], + [ + "!”", + -11.0907564163208 + ], + [ + "▁Cape", + -11.090923309326172 + ], + [ + "▁2001", + -11.091062545776367 + ], + [ + "▁Enter", + -11.091134071350098 + ], + [ + "▁dealer", + -11.091278076171875 + ], + [ + "▁Pop", + -11.091383934020996 + ], + [ + "▁Cancer", + -11.091415405273438 + ], + [ + "▁powered", + -11.091585159301758 + ], + [ + "▁Wind", + -11.091723442077637 + ], + [ + "km", + -11.091826438903809 + ], + [ + "▁Mel", + -11.091861724853516 + ], + [ + "▁guides", + -11.092140197753906 + ], + [ + "▁loaded", + -11.092164993286133 + ], + [ + "▁encouraging", + -11.092196464538574 + ], + [ + "face", + -11.092308044433594 + ], + [ + "▁04", + -11.092588424682617 + ], + [ + "▁crown", + -11.092700004577637 + ], + [ + "▁»", + -11.092743873596191 + ], + [ + "▁Pu", + -11.092846870422363 + ], + [ + "▁conservation", + -11.093047142028809 + ], + [ + "▁versatile", + -11.09310245513916 + ], + [ + "-9", + -11.093177795410156 + ], + [ + "-5", + -11.093647956848145 + ], + [ + "▁insert", + -11.09395980834961 + ], + [ + "▁contributed", + -11.09407901763916 + ], + [ + "▁donation", + -11.094399452209473 + ], + [ + "▁Ci", + -11.094528198242188 + ], + [ + "▁sacrifice", + -11.09477710723877 + ], + [ + "▁lightweight", + -11.094923973083496 + ], + [ + "▁batteries", + -11.095220565795898 + ], + [ + "▁2010.", + -11.09568977355957 + ], + [ + "▁CC", + -11.095697402954102 + ], + [ + "▁Linux", + -11.095780372619629 + ], + [ + "emi", + -11.096070289611816 + ], + [ + "▁commit", + -11.096088409423828 + ], + [ + "▁prevention", + -11.096161842346191 + ], + [ + "-18", + -11.096426963806152 + ], + [ + "▁Side", + -11.096500396728516 + ], + [ + "ula", + -11.096510887145996 + ], + [ + "rel", + -11.09663200378418 + ], + [ + "”)", + -11.096834182739258 + ], + [ + "▁operators", + -11.096941947937012 + ], + [ + "chen", + -11.096954345703125 + ], + [ + "▁elections", + -11.097160339355469 + ], + [ + "▁cloth", + -11.097251892089844 + ], + [ + "▁Given", + -11.097253799438477 + ], + [ + "▁dialogue", + -11.097497940063477 + ], + [ + "▁complaint", + -11.097555160522461 + ], + [ + "▁designated", + -11.097564697265625 + ], + [ + "▁babies", + -11.097622871398926 + ], + [ + "▁relaxed", + -11.098352432250977 + ], + [ + "▁permitted", + -11.098431587219238 + ], + [ + "▁43", + -11.09871768951416 + ], + [ + "▁Philadelphia", + -11.099047660827637 + ], + [ + "etic", + -11.099165916442871 + ], + [ + "▁effectiveness", + -11.099302291870117 + ], + [ + "▁hosts", + -11.099814414978027 + ], + [ + "▁Cash", + -11.100008010864258 + ], + [ + "▁automated", + -11.100225448608398 + ], + [ + "▁diamond", + -11.100382804870605 + ], + [ + "▁entries", + -11.100404739379883 + ], + [ + "▁Democratic", + -11.100687980651855 + ], + [ + "▁transferred", + -11.100703239440918 + ], + [ + "▁vulnerable", + -11.100720405578613 + ], + [ + "▁Furniture", + -11.100908279418945 + ], + [ + "▁shaped", + -11.101219177246094 + ], + [ + "▁Halloween", + -11.101444244384766 + ], + [ + "▁hearts", + -11.10168743133545 + ], + [ + "▁hunting", + -11.102080345153809 + ], + [ + "▁waves", + -11.102190971374512 + ], + [ + "▁Palm", + -11.102548599243164 + ], + [ + "▁dimensions", + -11.102913856506348 + ], + [ + "▁Tell", + -11.103087425231934 + ], + [ + "La", + -11.103352546691895 + ], + [ + "las", + -11.103557586669922 + ], + [ + "▁46", + -11.103675842285156 + ], + [ + "▁Matthew", + -11.103909492492676 + ], + [ + "▁Stop", + -11.104007720947266 + ], + [ + "▁coating", + -11.104249000549316 + ], + [ + "▁Manchester", + -11.104303359985352 + ], + [ + "▁technological", + -11.10433292388916 + ], + [ + "▁portal", + -11.10444164276123 + ], + [ + "being", + -11.104458808898926 + ], + [ + "▁Resume", + -11.104625701904297 + ], + [ + "▁boots", + -11.104850769042969 + ], + [ + "▁Orange", + -11.10486125946045 + ], + [ + "▁Bush", + -11.104927062988281 + ], + [ + "▁Story", + -11.104952812194824 + ], + [ + "▁gr", + -11.105056762695312 + ], + [ + "▁shed", + -11.105109214782715 + ], + [ + "▁mineral", + -11.105403900146484 + ], + [ + "▁timely", + -11.10581111907959 + ], + [ + "▁Lady", + -11.10598087310791 + ], + [ + "▁49", + -11.106063842773438 + ], + [ + "▁fake", + -11.106127738952637 + ], + [ + "TER", + -11.106216430664062 + ], + [ + "▁weird", + -11.106450080871582 + ], + [ + "▁optional", + -11.10657787322998 + ], + [ + "і", + -11.106689453125 + ], + [ + "▁struck", + -11.106689453125 + ], + [ + "▁ranked", + -11.106868743896484 + ], + [ + "▁purchases", + -11.107065200805664 + ], + [ + "▁detection", + -11.107220649719238 + ], + [ + "▁Korean", + -11.1072416305542 + ], + [ + "▁Dallas", + -11.10752010345459 + ], + [ + "▁Hills", + -11.107564926147461 + ], + [ + "▁heaven", + -11.107897758483887 + ], + [ + "rat", + -11.108540534973145 + ], + [ + "▁Bring", + -11.108610153198242 + ], + [ + "fit", + -11.1087646484375 + ], + [ + "▁keen", + -11.108787536621094 + ], + [ + "▁Anyone", + -11.108799934387207 + ], + [ + "▁WA", + -11.108981132507324 + ], + [ + "▁popularity", + -11.109112739562988 + ], + [ + "▁embodiment", + -11.109493255615234 + ], + [ + "▁photograph", + -11.109574317932129 + ], + [ + "▁GA", + -11.109575271606445 + ], + [ + "▁Metal", + -11.109879493713379 + ], + [ + "▁occasions", + -11.110215187072754 + ], + [ + "▁physician", + -11.110785484313965 + ], + [ + "▁physically", + -11.110847473144531 + ], + [ + "▁prominent", + -11.111635208129883 + ], + [ + "▁Fo", + -11.112030029296875 + ], + [ + "▁Regional", + -11.112114906311035 + ], + [ + "▁tune", + -11.112269401550293 + ], + [ + "▁witness", + -11.112530708312988 + ], + [ + "▁Terms", + -11.112894058227539 + ], + [ + "▁soap", + -11.112982749938965 + ], + [ + "▁Getting", + -11.113066673278809 + ], + [ + "▁celebrated", + -11.113431930541992 + ], + [ + "▁grinding", + -11.113545417785645 + ], + [ + "▁brick", + -11.113606452941895 + ], + [ + "▁pad", + -11.113687515258789 + ], + [ + "▁followers", + -11.11372184753418 + ], + [ + "▁spouse", + -11.113908767700195 + ], + [ + "▁spectrum", + -11.113977432250977 + ], + [ + "▁collective", + -11.114018440246582 + ], + [ + "▁entertaining", + -11.114444732666016 + ], + [ + "▁operates", + -11.115340232849121 + ], + [ + "effective", + -11.115524291992188 + ], + [ + "▁Know", + -11.115701675415039 + ], + [ + "bury", + -11.115863800048828 + ], + [ + "cri", + -11.116003036499023 + ], + [ + "▁paintings", + -11.116076469421387 + ], + [ + "▁Melbourne", + -11.116114616394043 + ], + [ + "▁lamp", + -11.116327285766602 + ], + [ + "take", + -11.116334915161133 + ], + [ + "▁72", + -11.11650562286377 + ], + [ + "▁Ever", + -11.1171875 + ], + [ + "▁embrace", + -11.117228507995605 + ], + [ + "▁references", + -11.117246627807617 + ], + [ + "▁4-", + -11.117257118225098 + ], + [ + "▁specifications", + -11.117257118225098 + ], + [ + "▁boss", + -11.117319107055664 + ], + [ + "06", + -11.117510795593262 + ], + [ + "▁Panel", + -11.117646217346191 + ], + [ + "▁achieving", + -11.11764907836914 + ], + [ + "▁jam", + -11.117751121520996 + ], + [ + "▁emissions", + -11.117894172668457 + ], + [ + "▁Th", + -11.11933708190918 + ], + [ + "▁£1", + -11.119401931762695 + ], + [ + "▁jet", + -11.119477272033691 + ], + [ + "How", + -11.119571685791016 + ], + [ + "▁Ji", + -11.119824409484863 + ], + [ + "▁baseball", + -11.120271682739258 + ], + [ + "▁basement", + -11.120537757873535 + ], + [ + "▁divorce", + -11.120537757873535 + ], + [ + "▁tower", + -11.120612144470215 + ], + [ + "party", + -11.12098217010498 + ], + [ + "EE", + -11.121197700500488 + ], + [ + "▁stocks", + -11.121528625488281 + ], + [ + "cap", + -11.121664047241211 + ], + [ + "▁horses", + -11.121743202209473 + ], + [ + "elli", + -11.121744155883789 + ], + [ + "▁fastest", + -11.121825218200684 + ], + [ + "▁possess", + -11.121979713439941 + ], + [ + "▁subtle", + -11.122252464294434 + ], + [ + "▁Sciences", + -11.12237548828125 + ], + [ + "-4", + -11.122779846191406 + ], + [ + "spect", + -11.123019218444824 + ], + [ + "▁settled", + -11.12319278717041 + ], + [ + "▁singer", + -11.123236656188965 + ], + [ + "▁disc", + -11.123815536499023 + ], + [ + "mont", + -11.124001502990723 + ], + [ + "▁streaming", + -11.124213218688965 + ], + [ + "▁glasses", + -11.12448787689209 + ], + [ + "▁destroy", + -11.124565124511719 + ], + [ + "▁Third", + -11.124692916870117 + ], + [ + "▁Atlantic", + -11.124829292297363 + ], + [ + "▁intention", + -11.124946594238281 + ], + [ + "▁Ali", + -11.125006675720215 + ], + [ + "▁Sir", + -11.125167846679688 + ], + [ + "▁strict", + -11.125561714172363 + ], + [ + "rol", + -11.126143455505371 + ], + [ + "▁regards", + -11.12627124786377 + ], + [ + "▁Israeli", + -11.12648868560791 + ], + [ + "▁exploration", + -11.12660026550293 + ], + [ + "IL", + -11.126945495605469 + ], + [ + "▁occasionally", + -11.126982688903809 + ], + [ + "lia", + -11.12723159790039 + ], + [ + "▁ga", + -11.127479553222656 + ], + [ + "▁Authority", + -11.12767505645752 + ], + [ + "▁frames", + -11.12804126739502 + ], + [ + "▁nail", + -11.12828254699707 + ], + [ + "▁neuro", + -11.128417015075684 + ], + [ + "lip", + -11.12842845916748 + ], + [ + "mic", + -11.128593444824219 + ], + [ + "▁condo", + -11.12862491607666 + ], + [ + "▁Youth", + -11.128661155700684 + ], + [ + "▁territory", + -11.128843307495117 + ], + [ + "▁charging", + -11.129327774047852 + ], + [ + "OC", + -11.12936019897461 + ], + [ + "▁desert", + -11.12943172454834 + ], + [ + "▁unlikely", + -11.129565238952637 + ], + [ + "▁pushed", + -11.12962532043457 + ], + [ + "▁laundry", + -11.129932403564453 + ], + [ + "▁excessive", + -11.130024909973145 + ], + [ + "ges", + -11.130159378051758 + ], + [ + "▁Arm", + -11.13017749786377 + ], + [ + "▁Para", + -11.130457878112793 + ], + [ + "▁Equipment", + -11.130525588989258 + ], + [ + "▁difficulties", + -11.130855560302734 + ], + [ + "▁Wilson", + -11.130922317504883 + ], + [ + "size", + -11.13113784790039 + ], + [ + "▁Phone", + -11.131163597106934 + ], + [ + "▁Cell", + -11.131267547607422 + ], + [ + "▁interactions", + -11.131288528442383 + ], + [ + "-7", + -11.131346702575684 + ], + [ + "▁Map", + -11.131375312805176 + ], + [ + "▁ignore", + -11.131512641906738 + ], + [ + "bell", + -11.131665229797363 + ], + [ + "▁grain", + -11.131756782531738 + ], + [ + "▁stomach", + -11.131810188293457 + ], + [ + "col", + -11.131990432739258 + ], + [ + "▁Len", + -11.132155418395996 + ], + [ + "▁Apr", + -11.132373809814453 + ], + [ + "▁virus", + -11.13259506225586 + ], + [ + "▁Title", + -11.133040428161621 + ], + [ + "▁sorts", + -11.133201599121094 + ], + [ + "pet", + -11.133511543273926 + ], + [ + "▁secured", + -11.133581161499023 + ], + [ + "▁terminal", + -11.133723258972168 + ], + [ + "bank", + -11.133771896362305 + ], + [ + "▁pushing", + -11.133933067321777 + ], + [ + "▁Dutch", + -11.133978843688965 + ], + [ + "▁sized", + -11.134223937988281 + ], + [ + "▁universal", + -11.134363174438477 + ], + [ + "▁arrested", + -11.134400367736816 + ], + [ + "▁regime", + -11.134551048278809 + ], + [ + "hose", + -11.13457202911377 + ], + [ + "▁Massachusetts", + -11.134592056274414 + ], + [ + "▁exhibit", + -11.135210037231445 + ], + [ + "▁NEW", + -11.135686874389648 + ], + [ + "▁2013,", + -11.135912895202637 + ], + [ + "▁roughly", + -11.135931015014648 + ], + [ + "▁marine", + -11.136054039001465 + ], + [ + "▁imagination", + -11.136103630065918 + ], + [ + "▁deadline", + -11.136442184448242 + ], + [ + "▁blogs", + -11.137176513671875 + ], + [ + "▁arch", + -11.137456893920898 + ], + [ + "▁reliability", + -11.138284683227539 + ], + [ + "▁hospitals", + -11.13832950592041 + ], + [ + "▁Six", + -11.138480186462402 + ], + [ + "▁vitamin", + -11.138490676879883 + ], + [ + "▁limitations", + -11.13899040222168 + ], + [ + "▁fulfill", + -11.139228820800781 + ], + [ + "▁Sen", + -11.139382362365723 + ], + [ + "▁Talk", + -11.139446258544922 + ], + [ + "▁oils", + -11.139760971069336 + ], + [ + "▁differently", + -11.139765739440918 + ], + [ + "▁Provide", + -11.13985824584961 + ], + [ + "LS", + -11.140016555786133 + ], + [ + "▁Bowl", + -11.140148162841797 + ], + [ + "met", + -11.14017391204834 + ], + [ + "American", + -11.140475273132324 + ], + [ + "▁Discover", + -11.141031265258789 + ], + [ + "▁Certified", + -11.141181945800781 + ], + [ + "gal", + -11.141220092773438 + ], + [ + "▁Ty", + -11.141581535339355 + ], + [ + "▁tutorial", + -11.141833305358887 + ], + [ + "▁Sure", + -11.142184257507324 + ], + [ + "ock", + -11.142226219177246 + ], + [ + "ET", + -11.142273902893066 + ], + [ + "▁Simple", + -11.142287254333496 + ], + [ + "▁retailers", + -11.142312049865723 + ], + [ + "pol", + -11.14232349395752 + ], + [ + "▁Harry", + -11.142440795898438 + ], + [ + "▁plates", + -11.142444610595703 + ], + [ + "▁Tony", + -11.14280891418457 + ], + [ + "just", + -11.143218040466309 + ], + [ + "▁retreat", + -11.143509864807129 + ], + [ + "▁tied", + -11.14356517791748 + ], + [ + "▁marketplace", + -11.143752098083496 + ], + [ + "specific", + -11.143753051757812 + ], + [ + "▁FA", + -11.143933296203613 + ], + [ + "▁disorders", + -11.144102096557617 + ], + [ + "▁Writing", + -11.144234657287598 + ], + [ + "▁consult", + -11.144289016723633 + ], + [ + "▁accomplished", + -11.144793510437012 + ], + [ + "▁workforce", + -11.145054817199707 + ], + [ + "▁vinyl", + -11.145418167114258 + ], + [ + "▁worker", + -11.145493507385254 + ], + [ + "under", + -11.145862579345703 + ], + [ + "▁Restaurant", + -11.145936965942383 + ], + [ + "▁authorized", + -11.146096229553223 + ], + [ + "rest", + -11.146233558654785 + ], + [ + "stop", + -11.14635944366455 + ], + [ + "▁attractions", + -11.146467208862305 + ], + [ + "▁Door", + -11.146896362304688 + ], + [ + "▁complement", + -11.147005081176758 + ], + [ + "▁listings", + -11.147189140319824 + ], + [ + "▁Books", + -11.147533416748047 + ], + [ + "▁Rs", + -11.147644996643066 + ], + [ + "ound", + -11.147847175598145 + ], + [ + "hard", + -11.147871017456055 + ], + [ + "▁observe", + -11.148041725158691 + ], + [ + "fro", + -11.148152351379395 + ], + [ + "▁vacuum", + -11.148463249206543 + ], + [ + "pel", + -11.148518562316895 + ], + [ + "▁SD", + -11.148714065551758 + ], + [ + "▁NFL", + -11.148883819580078 + ], + [ + "▁implementing", + -11.14897632598877 + ], + [ + "▁seating", + -11.148999214172363 + ], + [ + "▁legacy", + -11.149032592773438 + ], + [ + "▁Reading", + -11.149041175842285 + ], + [ + "▁Job", + -11.149139404296875 + ], + [ + "▁chamber", + -11.14914608001709 + ], + [ + "▁Cam", + -11.149320602416992 + ], + [ + "▁Resources", + -11.149397850036621 + ], + [ + "▁excitement", + -11.149620056152344 + ], + [ + "cra", + -11.149651527404785 + ], + [ + "▁Chamber", + -11.149693489074707 + ], + [ + "▁Wales", + -11.14988899230957 + ], + [ + "▁Delhi", + -11.15013313293457 + ], + [ + "▁Maryland", + -11.150324821472168 + ], + [ + "▁priced", + -11.1505765914917 + ], + [ + "num", + -11.151026725769043 + ], + [ + "master", + -11.151233673095703 + ], + [ + "▁minimize", + -11.15123462677002 + ], + [ + "TP", + -11.151368141174316 + ], + [ + "▁disability", + -11.151395797729492 + ], + [ + "▁2:", + -11.151424407958984 + ], + [ + "▁outer", + -11.151777267456055 + ], + [ + "▁Commercial", + -11.15178394317627 + ], + [ + "▁Magic", + -11.151792526245117 + ], + [ + "▁Kansas", + -11.151848793029785 + ], + [ + "▁$6", + -11.15209674835205 + ], + [ + "nate", + -11.152338981628418 + ], + [ + "▁loud", + -11.152652740478516 + ], + [ + "▁caring", + -11.152711868286133 + ], + [ + "▁tourism", + -11.153172492980957 + ], + [ + "▁poll", + -11.15383243560791 + ], + [ + "▁trials", + -11.15401840209961 + ], + [ + "▁gray", + -11.154024124145508 + ], + [ + "▁churches", + -11.154056549072266 + ], + [ + "pping", + -11.154155731201172 + ], + [ + "TH", + -11.154387474060059 + ], + [ + "▁highway", + -11.154499053955078 + ], + [ + "▁strip", + -11.154637336730957 + ], + [ + "▁resistant", + -11.154657363891602 + ], + [ + "▁travelling", + -11.154684066772461 + ], + [ + "▁Hey", + -11.154906272888184 + ], + [ + "▁iconic", + -11.155195236206055 + ], + [ + "▁newsletter", + -11.155491828918457 + ], + [ + "▁jacket", + -11.155781745910645 + ], + [ + "▁Attorney", + -11.155838966369629 + ], + [ + "▁collaborative", + -11.155966758728027 + ], + [ + "▁intent", + -11.156502723693848 + ], + [ + "▁arrest", + -11.156658172607422 + ], + [ + "▁rec", + -11.157204627990723 + ], + [ + "▁declared", + -11.157906532287598 + ], + [ + "away", + -11.157927513122559 + ], + [ + "▁TX", + -11.158199310302734 + ], + [ + "▁Email", + -11.158233642578125 + ], + [ + "▁admitted", + -11.15835952758789 + ], + [ + "▁analytics", + -11.158437728881836 + ], + [ + "▁addiction", + -11.158747673034668 + ], + [ + "ack", + -11.158748626708984 + ], + [ + "▁4,", + -11.1587553024292 + ], + [ + "▁Wisconsin", + -11.158958435058594 + ], + [ + "▁Snow", + -11.1590576171875 + ], + [ + "▁Whatever", + -11.159123420715332 + ], + [ + "▁1994", + -11.159384727478027 + ], + [ + "▁fold", + -11.159659385681152 + ], + [ + "▁buttons", + -11.159719467163086 + ], + [ + "▁smoking", + -11.159913063049316 + ], + [ + "called", + -11.160141944885254 + ], + [ + "▁Sc", + -11.160195350646973 + ], + [ + "▁Ban", + -11.160354614257812 + ], + [ + "▁memorable", + -11.160393714904785 + ], + [ + "ux", + -11.160407066345215 + ], + [ + "▁Language", + -11.16080379486084 + ], + [ + "▁wherever", + -11.160872459411621 + ], + [ + "▁Account", + -11.161005020141602 + ], + [ + "▁composed", + -11.161591529846191 + ], + [ + "▁que", + -11.161625862121582 + ], + [ + "path", + -11.161675453186035 + ], + [ + "▁moderate", + -11.162053108215332 + ], + [ + "IE", + -11.162308692932129 + ], + [ + "range", + -11.162761688232422 + ], + [ + "ily", + -11.162941932678223 + ], + [ + "▁foster", + -11.16322135925293 + ], + [ + "▁luxurious", + -11.16345500946045 + ], + [ + "gli", + -11.163567543029785 + ], + [ + "▁Jon", + -11.163569450378418 + ], + [ + "atic", + -11.163650512695312 + ], + [ + "▁Bitcoin", + -11.163816452026367 + ], + [ + "▁alumni", + -11.164058685302734 + ], + [ + "▁PRO", + -11.164121627807617 + ], + [ + "▁Common", + -11.164451599121094 + ], + [ + "▁Mom", + -11.164909362792969 + ], + [ + "▁hydro", + -11.164910316467285 + ], + [ + "▁animation", + -11.1649169921875 + ], + [ + "▁Manual", + -11.16496753692627 + ], + [ + "pal", + -11.165628433227539 + ], + [ + "▁Technical", + -11.165764808654785 + ], + [ + "▁Total", + -11.165802001953125 + ], + [ + "▁calories", + -11.165862083435059 + ], + [ + "▁shipped", + -11.165902137756348 + ], + [ + "▁Ye", + -11.166011810302734 + ], + [ + "▁patent", + -11.166077613830566 + ], + [ + "ography", + -11.166142463684082 + ], + [ + "▁leverage", + -11.166236877441406 + ], + [ + "▁Berlin", + -11.166505813598633 + ], + [ + "▁crop", + -11.166627883911133 + ], + [ + "▁rings", + -11.166993141174316 + ], + [ + "▁identifying", + -11.167107582092285 + ], + [ + "▁Iraq", + -11.167291641235352 + ], + [ + "▁Wow", + -11.16740608215332 + ], + [ + "put", + -11.167561531066895 + ], + [ + "▁vi", + -11.16757869720459 + ], + [ + "▁sexual", + -11.167884826660156 + ], + [ + "▁(3", + -11.168432235717773 + ], + [ + "HA", + -11.168434143066406 + ], + [ + "▁overseas", + -11.168617248535156 + ], + [ + "▁verify", + -11.168806076049805 + ], + [ + "▁Jean", + -11.168816566467285 + ], + [ + "▁funded", + -11.168898582458496 + ], + [ + "▁enabling", + -11.168904304504395 + ], + [ + "who", + -11.169074058532715 + ], + [ + "▁consultant", + -11.169950485229492 + ], + [ + "▁Lewis", + -11.170145988464355 + ], + [ + "▁2012,", + -11.170235633850098 + ], + [ + "▁terrible", + -11.170339584350586 + ], + [ + "▁fitting", + -11.170977592468262 + ], + [ + "▁acceptable", + -11.171041488647461 + ], + [ + "▁Upon", + -11.171391487121582 + ], + [ + "▁Mission", + -11.171455383300781 + ], + [ + "▁champion", + -11.171878814697266 + ], + [ + "▁Sony", + -11.172029495239258 + ], + [ + "berry", + -11.172283172607422 + ], + [ + "▁Event", + -11.172362327575684 + ], + [ + "▁releases", + -11.172465324401855 + ], + [ + "▁Oxford", + -11.172524452209473 + ], + [ + "▁bow", + -11.172630310058594 + ], + [ + "▁laboratory", + -11.17273235321045 + ], + [ + "▁aggressive", + -11.173051834106445 + ], + [ + "▁binding", + -11.17338752746582 + ], + [ + "▁pour", + -11.173432350158691 + ], + [ + "NC", + -11.173768043518066 + ], + [ + "▁blast", + -11.173948287963867 + ], + [ + "▁clinic", + -11.174078941345215 + ], + [ + "▁presentations", + -11.174114227294922 + ], + [ + "▁meditation", + -11.174298286437988 + ], + [ + "▁apartments", + -11.174684524536133 + ], + [ + "izer", + -11.175019264221191 + ], + [ + "▁AL", + -11.175065994262695 + ], + [ + "▁engineer", + -11.175406455993652 + ], + [ + "▁producers", + -11.175447463989258 + ], + [ + "▁retired", + -11.175545692443848 + ], + [ + "▁leaf", + -11.175694465637207 + ], + [ + "▁loads", + -11.175700187683105 + ], + [ + "▁tennis", + -11.17586898803711 + ], + [ + "5%", + -11.17601490020752 + ], + [ + "▁fingers", + -11.176092147827148 + ], + [ + "▁pregnant", + -11.17656421661377 + ], + [ + "▁peer", + -11.176712036132812 + ], + [ + "▁Cre", + -11.176804542541504 + ], + [ + "▁Fu", + -11.176926612854004 + ], + [ + "vent", + -11.177348136901855 + ], + [ + "PL", + -11.177410125732422 + ], + [ + "▁Bel", + -11.177696228027344 + ], + [ + "▁achievement", + -11.177732467651367 + ], + [ + "▁Jason", + -11.17776870727539 + ], + [ + "▁voter", + -11.177814483642578 + ], + [ + "▁Dance", + -11.178206443786621 + ], + [ + "▁Mont", + -11.178207397460938 + ], + [ + "▁admin", + -11.17833423614502 + ], + [ + "“", + -11.178506851196289 + ], + [ + "▁handled", + -11.178873062133789 + ], + [ + "anti", + -11.179001808166504 + ], + [ + "hole", + -11.179055213928223 + ], + [ + "▁cookie", + -11.180126190185547 + ], + [ + "▁voters", + -11.180158615112305 + ], + [ + "ille", + -11.180179595947266 + ], + [ + "▁governments", + -11.180885314941406 + ], + [ + "▁thesis", + -11.18092155456543 + ], + [ + "▁shortly", + -11.181012153625488 + ], + [ + "▁hence", + -11.18127155303955 + ], + [ + "▁Investment", + -11.181313514709473 + ], + [ + "▁directors", + -11.181381225585938 + ], + [ + "LT", + -11.181791305541992 + ], + [ + "▁destroyed", + -11.181819915771484 + ], + [ + "▁associate", + -11.181859016418457 + ], + [ + "▁junior", + -11.181925773620605 + ], + [ + "▁swim", + -11.18209171295166 + ], + [ + "▁realistic", + -11.182469367980957 + ], + [ + "▁hardly", + -11.182905197143555 + ], + [ + "▁Phil", + -11.183016777038574 + ], + [ + "▁1960", + -11.183060646057129 + ], + [ + "▁stops", + -11.183349609375 + ], + [ + "CS", + -11.183403968811035 + ], + [ + "pper", + -11.183557510375977 + ], + [ + "▁coin", + -11.1837158203125 + ], + [ + "▁trails", + -11.184147834777832 + ], + [ + "▁betting", + -11.184226989746094 + ], + [ + "requiring", + -11.184283256530762 + ], + [ + "▁varied", + -11.184453010559082 + ], + [ + "▁shake", + -11.185235023498535 + ], + [ + "ivity", + -11.185487747192383 + ], + [ + "▁gently", + -11.185541152954102 + ], + [ + "▁intelligent", + -11.185769081115723 + ], + [ + "▁Really", + -11.18609619140625 + ], + [ + "▁dressing", + -11.18620491027832 + ], + [ + "Man", + -11.186211585998535 + ], + [ + "▁championship", + -11.18651294708252 + ], + [ + "▁defeat", + -11.18680477142334 + ], + [ + "▁Yo", + -11.187057495117188 + ], + [ + "pot", + -11.18705940246582 + ], + [ + "▁Ave", + -11.187142372131348 + ], + [ + "▁Egypt", + -11.187228202819824 + ], + [ + "▁habit", + -11.187426567077637 + ], + [ + "vit", + -11.187439918518066 + ], + [ + "person", + -11.187470436096191 + ], + [ + "▁hesitate", + -11.187583923339844 + ], + [ + "▁hired", + -11.187825202941895 + ], + [ + "▁Tower", + -11.188353538513184 + ], + [ + "▁wines", + -11.188396453857422 + ], + [ + "bus", + -11.188499450683594 + ], + [ + "▁considerable", + -11.188647270202637 + ], + [ + "▁poetry", + -11.188647270202637 + ], + [ + "▁colorful", + -11.189014434814453 + ], + [ + "▁Channel", + -11.189411163330078 + ], + [ + "▁accompanied", + -11.189852714538574 + ], + [ + "▁participated", + -11.19010066986084 + ], + [ + "▁Ring", + -11.190269470214844 + ], + [ + "▁ISO", + -11.190471649169922 + ], + [ + "▁conditioning", + -11.190546035766602 + ], + [ + "▁tiles", + -11.190674781799316 + ], + [ + "▁penalty", + -11.190784454345703 + ], + [ + "▁Bad", + -11.191052436828613 + ], + [ + "▁anytime", + -11.191119194030762 + ], + [ + "▁dear", + -11.191268920898438 + ], + [ + "▁mixing", + -11.191357612609863 + ], + [ + "▁phrase", + -11.19155216217041 + ], + [ + "DE", + -11.191581726074219 + ], + [ + "▁establishment", + -11.191733360290527 + ], + [ + "▁dancing", + -11.192208290100098 + ], + [ + "▁Often", + -11.192505836486816 + ], + [ + "▁Clinton", + -11.192713737487793 + ], + [ + "▁arise", + -11.192903518676758 + ], + [ + "▁2.5", + -11.193108558654785 + ], + [ + "▁Han", + -11.193134307861328 + ], + [ + "lig", + -11.19320011138916 + ], + [ + "▁sh", + -11.193546295166016 + ], + [ + "bol", + -11.193700790405273 + ], + [ + "▁offense", + -11.193720817565918 + ], + [ + "▁confirmation", + -11.19373893737793 + ], + [ + "▁blame", + -11.193960189819336 + ], + [ + "▁threats", + -11.193995475769043 + ], + [ + "▁Analysis", + -11.194046020507812 + ], + [ + "▁valley", + -11.19424057006836 + ], + [ + "▁downloaded", + -11.194258689880371 + ], + [ + "▁PhD", + -11.194311141967773 + ], + [ + "▁refuse", + -11.194327354431152 + ], + [ + "▁Animal", + -11.19459056854248 + ], + [ + "▁musicians", + -11.194669723510742 + ], + [ + "▁oxygen", + -11.194925308227539 + ], + [ + "▁technicians", + -11.194938659667969 + ], + [ + "▁brothers", + -11.195107460021973 + ], + [ + "gov", + -11.19533920288086 + ], + [ + "▁fiscal", + -11.195560455322266 + ], + [ + "▁Governor", + -11.195633888244629 + ], + [ + "▁affects", + -11.195693969726562 + ], + [ + "▁cr", + -11.195712089538574 + ], + [ + "▁immigration", + -11.195791244506836 + ], + [ + "▁Wine", + -11.195822715759277 + ], + [ + "▁Walk", + -11.195941925048828 + ], + [ + "▁logic", + -11.196083068847656 + ], + [ + "▁Patrick", + -11.196223258972168 + ], + [ + "▁Additional", + -11.196255683898926 + ], + [ + "▁nicely", + -11.196429252624512 + ], + [ + "▁stir", + -11.196503639221191 + ], + [ + "▁Bag", + -11.196642875671387 + ], + [ + "▁profiles", + -11.196742057800293 + ], + [ + "▁measurements", + -11.1969575881958 + ], + [ + "▁stakeholders", + -11.197526931762695 + ], + [ + "▁Cambridge", + -11.197667121887207 + ], + [ + "emb", + -11.197747230529785 + ], + [ + "▁agricultural", + -11.197815895080566 + ], + [ + "▁donations", + -11.19791030883789 + ], + [ + "▁branches", + -11.198145866394043 + ], + [ + "▁reserves", + -11.198453903198242 + ], + [ + "▁annually", + -11.198484420776367 + ], + [ + "▁delight", + -11.198596954345703 + ], + [ + "▁cuisine", + -11.198894500732422 + ], + [ + "▁9.", + -11.199045181274414 + ], + [ + "▁bearing", + -11.199188232421875 + ], + [ + "▁Motor", + -11.199483871459961 + ], + [ + "▁translate", + -11.199504852294922 + ], + [ + "ó", + -11.199784278869629 + ], + [ + "▁bottles", + -11.199929237365723 + ], + [ + "▁constitute", + -11.199983596801758 + ], + [ + "UN", + -11.200054168701172 + ], + [ + "▁Med", + -11.20019245147705 + ], + [ + "▁800", + -11.200271606445312 + ], + [ + "▁surprising", + -11.200357437133789 + ], + [ + "▁Muslim", + -11.200393676757812 + ], + [ + "une", + -11.200435638427734 + ], + [ + "▁Sol", + -11.200705528259277 + ], + [ + "▁Print", + -11.200800895690918 + ], + [ + "▁Castle", + -11.200810432434082 + ], + [ + "▁incorporated", + -11.201350212097168 + ], + [ + "-11", + -11.201501846313477 + ], + [ + "▁5-", + -11.201567649841309 + ], + [ + "▁warrant", + -11.201905250549316 + ], + [ + "▁entrepreneurs", + -11.202088356018066 + ], + [ + "real", + -11.202241897583008 + ], + [ + "▁feeding", + -11.202479362487793 + ], + [ + "▁Anyway", + -11.20250415802002 + ], + [ + "▁Nations", + -11.202876091003418 + ], + [ + "▁protocol", + -11.20306396484375 + ], + [ + "▁Clear", + -11.203105926513672 + ], + [ + "▁receiver", + -11.203129768371582 + ], + [ + "▁utilizing", + -11.203145027160645 + ], + [ + "▁trucks", + -11.20340347290039 + ], + [ + "▁Had", + -11.203432083129883 + ], + [ + "▁precisely", + -11.203450202941895 + ], + [ + "▁Say", + -11.203765869140625 + ], + [ + "▁harmful", + -11.203909873962402 + ], + [ + "▁soldiers", + -11.204096794128418 + ], + [ + "ERS", + -11.204253196716309 + ], + [ + "OP", + -11.204323768615723 + ], + [ + "▁query", + -11.204413414001465 + ], + [ + "▁Vietnam", + -11.204427719116211 + ], + [ + "SS", + -11.204436302185059 + ], + [ + "▁Springs", + -11.204586029052734 + ], + [ + "▁Bro", + -11.204745292663574 + ], + [ + "▁canvas", + -11.204843521118164 + ], + [ + "bad", + -11.204874038696289 + ], + [ + "verse", + -11.204886436462402 + ], + [ + "▁collecting", + -11.204916000366211 + ], + [ + "▁plumbing", + -11.20606517791748 + ], + [ + "▁hunt", + -11.206258773803711 + ], + [ + "▁YOUR", + -11.20650863647461 + ], + [ + "▁$100", + -11.206701278686523 + ], + [ + "sol", + -11.206758499145508 + ], + [ + "ration", + -11.207143783569336 + ], + [ + "▁Allen", + -11.207147598266602 + ], + [ + "▁walks", + -11.207178115844727 + ], + [ + "▁suited", + -11.207184791564941 + ], + [ + "▁Fun", + -11.2075777053833 + ], + [ + "▁pub", + -11.207616806030273 + ], + [ + "▁Bon", + -11.207659721374512 + ], + [ + "▁somebody", + -11.207840919494629 + ], + [ + "ali", + -11.207870483398438 + ], + [ + "▁sustainability", + -11.207893371582031 + ], + [ + "▁hitting", + -11.20822811126709 + ], + [ + "▁seasonal", + -11.208359718322754 + ], + [ + "▁dig", + -11.20854663848877 + ], + [ + "PE", + -11.208562850952148 + ], + [ + "▁gel", + -11.208608627319336 + ], + [ + "▁Ross", + -11.208717346191406 + ], + [ + "▁painful", + -11.208849906921387 + ], + [ + "▁ceramic", + -11.20895004272461 + ], + [ + "▁Deep", + -11.208986282348633 + ], + [ + "▁magnetic", + -11.209000587463379 + ], + [ + "▁hiking", + -11.209264755249023 + ], + [ + "▁nest", + -11.209297180175781 + ], + [ + "bas", + -11.209493637084961 + ], + [ + "▁essays", + -11.20952320098877 + ], + [ + "▁pension", + -11.209577560424805 + ], + [ + "▁liver", + -11.209632873535156 + ], + [ + "▁calculated", + -11.20995044708252 + ], + [ + "▁1-", + -11.210005760192871 + ], + [ + "▁actors", + -11.210118293762207 + ], + [ + "▁crushing", + -11.21047592163086 + ], + [ + "▁tailored", + -11.21077823638916 + ], + [ + "▁holder", + -11.211007118225098 + ], + [ + "erie", + -11.211018562316895 + ], + [ + "▁Cleaning", + -11.211195945739746 + ], + [ + "▁drill", + -11.211358070373535 + ], + [ + "school", + -11.211368560791016 + ], + [ + "gel", + -11.211641311645508 + ], + [ + "▁shorter", + -11.211674690246582 + ], + [ + "▁departments", + -11.211729049682617 + ], + [ + "▁frozen", + -11.211756706237793 + ], + [ + "▁Better", + -11.211877822875977 + ], + [ + "tem", + -11.211918830871582 + ], + [ + "▁nurse", + -11.211928367614746 + ], + [ + "▁construct", + -11.211966514587402 + ], + [ + "▁10-", + -11.212090492248535 + ], + [ + "▁Posted", + -11.212417602539062 + ], + [ + "▁True", + -11.212596893310547 + ], + [ + "▁stopping", + -11.212730407714844 + ], + [ + "▁Reserve", + -11.212894439697266 + ], + [ + "▁Coffee", + -11.212973594665527 + ], + [ + "▁mystery", + -11.213507652282715 + ], + [ + "▁Diamond", + -11.213520050048828 + ], + [ + "▁theater", + -11.213618278503418 + ], + [ + "RT", + -11.21367073059082 + ], + [ + "what", + -11.213818550109863 + ], + [ + "▁eco", + -11.213869094848633 + ], + [ + "▁satisfy", + -11.213913917541504 + ], + [ + "`", + -11.213958740234375 + ], + [ + "1%", + -11.214058876037598 + ], + [ + "▁Storage", + -11.214219093322754 + ], + [ + "pad", + -11.21423625946045 + ], + [ + "▁acceptance", + -11.214473724365234 + ], + [ + "▁potatoes", + -11.21455192565918 + ], + [ + "order", + -11.214631080627441 + ], + [ + "EP", + -11.214642524719238 + ], + [ + "▁medications", + -11.2147216796875 + ], + [ + "▁routes", + -11.214824676513672 + ], + [ + "▁temple", + -11.214927673339844 + ], + [ + "▁drops", + -11.214983940124512 + ], + [ + "core", + -11.215444564819336 + ], + [ + "▁DIY", + -11.215517044067383 + ], + [ + "▁Comp", + -11.2157564163208 + ], + [ + "zen", + -11.215770721435547 + ], + [ + "▁cleaner", + -11.215947151184082 + ], + [ + "▁guided", + -11.215980529785156 + ], + [ + "▁peaceful", + -11.216340065002441 + ], + [ + "▁Later", + -11.21645736694336 + ], + [ + "▁Sorry", + -11.21688175201416 + ], + [ + "▁Previous", + -11.21721076965332 + ], + [ + "▁carries", + -11.217534065246582 + ], + [ + "▁Gun", + -11.217795372009277 + ], + [ + "▁qualities", + -11.21793270111084 + ], + [ + "▁plugin", + -11.218311309814453 + ], + [ + "▁scoring", + -11.218335151672363 + ], + [ + "▁guilty", + -11.218466758728027 + ], + [ + "▁ships", + -11.218486785888672 + ], + [ + "▁modify", + -11.218509674072266 + ], + [ + "▁Base", + -11.219048500061035 + ], + [ + "2)", + -11.21905517578125 + ], + [ + "▁density", + -11.219099998474121 + ], + [ + "▁suits", + -11.219200134277344 + ], + [ + "▁suspension", + -11.219379425048828 + ], + [ + "▁scrap", + -11.219696044921875 + ], + [ + "▁47", + -11.219819068908691 + ], + [ + "▁maximize", + -11.220178604125977 + ], + [ + "▁login", + -11.220478057861328 + ], + [ + "▁renowned", + -11.220539093017578 + ], + [ + "▁passage", + -11.220610618591309 + ], + [ + "▁Mexican", + -11.220706939697266 + ], + [ + "▁cyber", + -11.220746994018555 + ], + [ + "▁shelter", + -11.220965385437012 + ], + [ + "▁costly", + -11.22108268737793 + ], + [ + "▁odds", + -11.22120475769043 + ], + [ + "▁Bedroom", + -11.221564292907715 + ], + [ + "▁bake", + -11.221625328063965 + ], + [ + "lit", + -11.221884727478027 + ], + [ + "▁voting", + -11.222055435180664 + ], + [ + "▁recommendation", + -11.222146034240723 + ], + [ + "▁Ice", + -11.22232723236084 + ], + [ + "▁apparent", + -11.222372055053711 + ], + [ + "▁Bookmark", + -11.222495079040527 + ], + [ + "▁obligation", + -11.222525596618652 + ], + [ + "▁Dun", + -11.222969055175781 + ], + [ + "▁Ok", + -11.223051071166992 + ], + [ + "▁Got", + -11.223383903503418 + ], + [ + "▁treasure", + -11.223579406738281 + ], + [ + "▁stem", + -11.223700523376465 + ], + [ + "▁flavors", + -11.223773956298828 + ], + [ + "▁Close", + -11.224186897277832 + ], + [ + "▁passenger", + -11.22420883178711 + ], + [ + "▁utilized", + -11.22428035736084 + ], + [ + "с", + -11.224316596984863 + ], + [ + "▁Clark", + -11.224556922912598 + ], + [ + "▁promises", + -11.224569320678711 + ], + [ + "▁knife", + -11.22465705871582 + ], + [ + "▁transparent", + -11.224775314331055 + ], + [ + "▁coaches", + -11.225085258483887 + ], + [ + "ENT", + -11.22520637512207 + ], + [ + "gram", + -11.225229263305664 + ], + [ + "▁delighted", + -11.225279808044434 + ], + [ + "▁abstract", + -11.22531509399414 + ], + [ + "▁delicate", + -11.225406646728516 + ], + [ + "▁Metro", + -11.22595500946045 + ], + [ + "▁€", + -11.225974082946777 + ], + [ + "▁Arab", + -11.2260103225708 + ], + [ + "▁Electric", + -11.226156234741211 + ], + [ + "lib", + -11.226297378540039 + ], + [ + "CD", + -11.226958274841309 + ], + [ + "▁pile", + -11.227104187011719 + ], + [ + "▁Anna", + -11.22716999053955 + ], + [ + "▁voted", + -11.227240562438965 + ], + [ + "▁weapon", + -11.227519035339355 + ], + [ + "▁1,000", + -11.22793960571289 + ], + [ + "▁Bri", + -11.227967262268066 + ], + [ + "▁fancy", + -11.22800350189209 + ], + [ + "▁Ultra", + -11.228144645690918 + ], + [ + "▁outdoors", + -11.228171348571777 + ], + [ + "▁alternatives", + -11.228333473205566 + ], + [ + "▁Death", + -11.228668212890625 + ], + [ + "▁absorb", + -11.228890419006348 + ], + [ + "▁Galaxy", + -11.228897094726562 + ], + [ + "▁purple", + -11.229167938232422 + ], + [ + "▁attorneys", + -11.22951602935791 + ], + [ + "▁snap", + -11.230220794677734 + ], + [ + "▁conservative", + -11.230504989624023 + ], + [ + "▁Convention", + -11.230801582336426 + ], + [ + "▁minds", + -11.230997085571289 + ], + [ + "▁prints", + -11.231010437011719 + ], + [ + "▁AR", + -11.231122970581055 + ], + [ + "▁computing", + -11.23127555847168 + ], + [ + "▁sits", + -11.23194694519043 + ], + [ + "▁Fan", + -11.232014656066895 + ], + [ + "▁drove", + -11.232409477233887 + ], + [ + "▁steady", + -11.233480453491211 + ], + [ + "▁substitute", + -11.233643531799316 + ], + [ + "▁containers", + -11.233827590942383 + ], + [ + "▁alter", + -11.233938217163086 + ], + [ + "▁pal", + -11.233966827392578 + ], + [ + "owned", + -11.234448432922363 + ], + [ + "▁Pal", + -11.23460578918457 + ], + [ + "▁BBC", + -11.234639167785645 + ], + [ + "▁Char", + -11.23476791381836 + ], + [ + "▁Companies", + -11.235221862792969 + ], + [ + "▁determination", + -11.2353515625 + ], + [ + "▁Rather", + -11.235435485839844 + ], + [ + "▁Cro", + -11.235508918762207 + ], + [ + "PP", + -11.235708236694336 + ], + [ + "▁Indeed", + -11.236005783081055 + ], + [ + "GE", + -11.236032485961914 + ], + [ + "▁wa", + -11.236058235168457 + ], + [ + "▁GPS", + -11.236540794372559 + ], + [ + "bot", + -11.236719131469727 + ], + [ + "▁treating", + -11.237044334411621 + ], + [ + "▁nonprofit", + -11.237236022949219 + ], + [ + "▁Hair", + -11.237239837646484 + ], + [ + "▁fridge", + -11.237339973449707 + ], + [ + "▁Des", + -11.237439155578613 + ], + [ + "▁neighbors", + -11.237531661987305 + ], + [ + "▁mature", + -11.237545013427734 + ], + [ + "▁CR", + -11.237563133239746 + ], + [ + "▁publications", + -11.237597465515137 + ], + [ + "▁barely", + -11.237626075744629 + ], + [ + "▁Yeah", + -11.237884521484375 + ], + [ + "▁Kelly", + -11.237935066223145 + ], + [ + "▁Christians", + -11.238006591796875 + ], + [ + "000", + -11.238036155700684 + ], + [ + "▁Solar", + -11.238183975219727 + ], + [ + "▁preferences", + -11.238368034362793 + ], + [ + "ult", + -11.238515853881836 + ], + [ + "▁wing", + -11.238689422607422 + ], + [ + "▁centuries", + -11.238937377929688 + ], + [ + "▁agreements", + -11.239148139953613 + ], + [ + "▁Corp", + -11.239225387573242 + ], + [ + "▁Ren", + -11.23961067199707 + ], + [ + "▁shades", + -11.239632606506348 + ], + [ + "▁Java", + -11.23974323272705 + ], + [ + "▁maker", + -11.239923477172852 + ], + [ + "▁stamp", + -11.239956855773926 + ], + [ + "ening", + -11.240398406982422 + ], + [ + "maker", + -11.240649223327637 + ], + [ + "▁Flash", + -11.240787506103516 + ], + [ + "▁confused", + -11.240896224975586 + ], + [ + "▁54", + -11.241470336914062 + ], + [ + "▁distinctive", + -11.241687774658203 + ], + [ + "▁Staff", + -11.24196720123291 + ], + [ + "▁psychological", + -11.242348670959473 + ], + [ + "▁converted", + -11.242377281188965 + ], + [ + "▁Kan", + -11.24251651763916 + ], + [ + "lac", + -11.24262809753418 + ], + [ + "▁rush", + -11.242764472961426 + ], + [ + "▁ANY", + -11.242877960205078 + ], + [ + "▁tear", + -11.243000030517578 + ], + [ + "CL", + -11.243023872375488 + ], + [ + "?!", + -11.24322509765625 + ], + [ + "▁cultures", + -11.24357795715332 + ], + [ + "▁slight", + -11.243669509887695 + ], + [ + "▁Article", + -11.243720054626465 + ], + [ + "EL", + -11.243721008300781 + ], + [ + "▁360", + -11.243776321411133 + ], + [ + "only", + -11.244041442871094 + ], + [ + "▁ladies", + -11.244222640991211 + ], + [ + "▁measuring", + -11.244319915771484 + ], + [ + "▁Engine", + -11.244566917419434 + ], + [ + "▁specialty", + -11.244649887084961 + ], + [ + "hill", + -11.244819641113281 + ], + [ + "▁begun", + -11.245147705078125 + ], + [ + "▁promised", + -11.245159149169922 + ], + [ + "▁developments", + -11.245192527770996 + ], + [ + "▁Championship", + -11.245388984680176 + ], + [ + "als", + -11.245560646057129 + ], + [ + "bridge", + -11.245996475219727 + ], + [ + "▁USD", + -11.246100425720215 + ], + [ + "▁replacing", + -11.246147155761719 + ], + [ + "▁hell", + -11.246357917785645 + ], + [ + "▁scholarship", + -11.246467590332031 + ], + [ + "shire", + -11.247612953186035 + ], + [ + "▁Mind", + -11.247864723205566 + ], + [ + "zer", + -11.247962951660156 + ], + [ + "▁soccer", + -11.247979164123535 + ], + [ + "active", + -11.248233795166016 + ], + [ + "All", + -11.248306274414062 + ], + [ + "▁palm", + -11.248387336730957 + ], + [ + "▁breathing", + -11.248421669006348 + ], + [ + "lies", + -11.2485990524292 + ], + [ + "▁Anne", + -11.24924373626709 + ], + [ + "▁tablets", + -11.249391555786133 + ], + [ + "▁defend", + -11.24946403503418 + ], + [ + "ico", + -11.249622344970703 + ], + [ + "iest", + -11.24964427947998 + ], + [ + "▁intimate", + -11.249696731567383 + ], + [ + "rium", + -11.249959945678711 + ], + [ + "▁Race", + -11.250151634216309 + ], + [ + "ttle", + -11.250216484069824 + ], + [ + "▁adjustable", + -11.250407218933105 + ], + [ + "CP", + -11.25047779083252 + ], + [ + "▁nuts", + -11.250787734985352 + ], + [ + "▁filters", + -11.251192092895508 + ], + [ + "▁Islamic", + -11.251197814941406 + ], + [ + "▁blessed", + -11.251343727111816 + ], + [ + "▁unlimited", + -11.251832962036133 + ], + [ + "▁Lock", + -11.252130508422852 + ], + [ + "▁revolution", + -11.252190589904785 + ], + [ + "▁Angel", + -11.252213478088379 + ], + [ + "mol", + -11.25224781036377 + ], + [ + "▁Temple", + -11.252264976501465 + ], + [ + "LD", + -11.25229263305664 + ], + [ + "▁cave", + -11.252538681030273 + ], + [ + "▁Ham", + -11.252548217773438 + ], + [ + "They", + -11.253389358520508 + ], + [ + "▁dozen", + -11.253397941589355 + ], + [ + "▁checks", + -11.253410339355469 + ], + [ + "▁ranking", + -11.2535982131958 + ], + [ + "▁Wal", + -11.253636360168457 + ], + [ + "tric", + -11.253885269165039 + ], + [ + "▁beliefs", + -11.254251480102539 + ], + [ + "▁lid", + -11.254349708557129 + ], + [ + "▁vendor", + -11.254715919494629 + ], + [ + "▁Vancouver", + -11.254767417907715 + ], + [ + "▁Navy", + -11.255375862121582 + ], + [ + "▁Villa", + -11.25540542602539 + ], + [ + "▁biological", + -11.255916595458984 + ], + [ + "tive", + -11.25592041015625 + ], + [ + "fall", + -11.256037712097168 + ], + [ + "pen", + -11.256199836730957 + ], + [ + "▁grants", + -11.256243705749512 + ], + [ + "speed", + -11.256261825561523 + ], + [ + "▁intake", + -11.256438255310059 + ], + [ + "▁architectural", + -11.256793975830078 + ], + [ + "▁powers", + -11.256988525390625 + ], + [ + "CT", + -11.256994247436523 + ], + [ + "▁je", + -11.257075309753418 + ], + [ + "▁Sat", + -11.25715160369873 + ], + [ + "html", + -11.25722599029541 + ], + [ + "▁Ros", + -11.25725269317627 + ], + [ + "▁separately", + -11.257492065429688 + ], + [ + "▁automation", + -11.257741928100586 + ], + [ + "▁Heat", + -11.258035659790039 + ], + [ + "ava", + -11.258227348327637 + ], + [ + "▁Throughout", + -11.258275032043457 + ], + [ + "▁Battle", + -11.258291244506836 + ], + [ + "▁7,", + -11.258548736572266 + ], + [ + "ending", + -11.258709907531738 + ], + [ + "▁cabin", + -11.258757591247559 + ], + [ + "▁precision", + -11.258967399597168 + ], + [ + "▁quilt", + -11.2593994140625 + ], + [ + "lad", + -11.259466171264648 + ], + [ + "▁colored", + -11.259605407714844 + ], + [ + "▁excuse", + -11.259714126586914 + ], + [ + "▁bite", + -11.25971508026123 + ], + [ + "▁Together", + -11.25989055633545 + ], + [ + "▁tourists", + -11.259916305541992 + ], + [ + "cur", + -11.260103225708008 + ], + [ + "▁instructor", + -11.260369300842285 + ], + [ + "▁Indiana", + -11.260394096374512 + ], + [ + "▁rewards", + -11.26054573059082 + ], + [ + "▁labels", + -11.260645866394043 + ], + [ + "▁homeowners", + -11.261002540588379 + ], + [ + "craft", + -11.26102352142334 + ], + [ + "▁complexity", + -11.261103630065918 + ], + [ + "▁flip", + -11.2611665725708 + ], + [ + "▁complaints", + -11.261441230773926 + ], + [ + "▁Doctor", + -11.261627197265625 + ], + [ + "▁CS", + -11.261691093444824 + ], + [ + "▁responded", + -11.261940956115723 + ], + [ + "▁simultaneously", + -11.261959075927734 + ], + [ + "▁warehouse", + -11.2622709274292 + ], + [ + "▁taxi", + -11.262625694274902 + ], + [ + "Depending", + -11.26267147064209 + ], + [ + "open", + -11.26290225982666 + ], + [ + "▁drag", + -11.262932777404785 + ], + [ + "▁Inside", + -11.26335334777832 + ], + [ + "lash", + -11.263655662536621 + ], + [ + "▁Lane", + -11.263916969299316 + ], + [ + "▁marijuana", + -11.263936042785645 + ], + [ + "▁disabled", + -11.26413631439209 + ], + [ + "▁Friends", + -11.264276504516602 + ], + [ + "▁Safe", + -11.264444351196289 + ], + [ + "▁Rick", + -11.264554023742676 + ], + [ + "aci", + -11.264573097229004 + ], + [ + "NET", + -11.264798164367676 + ], + [ + "▁overwhelming", + -11.265073776245117 + ], + [ + "▁classical", + -11.265236854553223 + ], + [ + "▁IBM", + -11.265241622924805 + ], + [ + "▁lap", + -11.265260696411133 + ], + [ + "▁CI", + -11.26590633392334 + ], + [ + "▁thermal", + -11.265974998474121 + ], + [ + "▁wellness", + -11.266098022460938 + ], + [ + "▁navigation", + -11.26610279083252 + ], + [ + "▁bin", + -11.266315460205078 + ], + [ + "▁pollution", + -11.266451835632324 + ], + [ + "ching", + -11.266453742980957 + ], + [ + "▁Cho", + -11.266595840454102 + ], + [ + "▁tries", + -11.266661643981934 + ], + [ + "▁Iowa", + -11.266703605651855 + ], + [ + "New", + -11.266792297363281 + ], + [ + "▁vent", + -11.266922950744629 + ], + [ + "▁derived", + -11.267181396484375 + ], + [ + "CH", + -11.267308235168457 + ], + [ + "far", + -11.267888069152832 + ], + [ + "▁disappointed", + -11.267894744873047 + ], + [ + "▁1993", + -11.268000602722168 + ], + [ + "▁Tre", + -11.268335342407227 + ], + [ + "▁Assembly", + -11.268599510192871 + ], + [ + "▁paste", + -11.268712997436523 + ], + [ + "▁Ol", + -11.268842697143555 + ], + [ + "▁additionally", + -11.269190788269043 + ], + [ + "▁receipt", + -11.269440650939941 + ], + [ + "▁Gift", + -11.2694673538208 + ], + [ + "▁roller", + -11.269676208496094 + ], + [ + "▁antique", + -11.26979923248291 + ], + [ + "▁consume", + -11.270045280456543 + ], + [ + "▁cluster", + -11.270716667175293 + ], + [ + "▁Value", + -11.27104377746582 + ], + [ + "▁Pool", + -11.271103858947754 + ], + [ + "▁wi", + -11.271183013916016 + ], + [ + "▁instances", + -11.271599769592285 + ], + [ + "wick", + -11.271994590759277 + ], + [ + "▁identical", + -11.272705078125 + ], + [ + "3%", + -11.27291202545166 + ], + [ + "▁continuously", + -11.273067474365234 + ], + [ + "▁quest", + -11.273140907287598 + ], + [ + "▁spoken", + -11.273211479187012 + ], + [ + "▁motivated", + -11.273249626159668 + ], + [ + "▁lean", + -11.273256301879883 + ], + [ + "▁towns", + -11.273305892944336 + ], + [ + "▁Alliance", + -11.273526191711426 + ], + [ + "▁backyard", + -11.273534774780273 + ], + [ + "▁valve", + -11.274003982543945 + ], + [ + "▁IL", + -11.274054527282715 + ], + [ + "▁Lab", + -11.274481773376465 + ], + [ + "▁Eco", + -11.274581909179688 + ], + [ + "▁Letter", + -11.274596214294434 + ], + [ + "▁possession", + -11.274900436401367 + ], + [ + "▁Fine", + -11.274950981140137 + ], + [ + "▁disposal", + -11.27497386932373 + ], + [ + "▁Toyota", + -11.27502155303955 + ], + [ + "▁2020", + -11.275528907775879 + ], + [ + "▁gross", + -11.275603294372559 + ], + [ + "▁notification", + -11.275778770446777 + ], + [ + "▁prospect", + -11.27582836151123 + ], + [ + "los", + -11.275922775268555 + ], + [ + "EN", + -11.276090621948242 + ], + [ + "▁Highway", + -11.276122093200684 + ], + [ + "▁snack", + -11.276198387145996 + ], + [ + "▁Rich", + -11.276297569274902 + ], + [ + "▁dial", + -11.276342391967773 + ], + [ + "▁publicly", + -11.276374816894531 + ], + [ + "anna", + -11.276412010192871 + ], + [ + "vol", + -11.276453018188477 + ], + [ + "▁legitimate", + -11.276505470275879 + ], + [ + "▁motorcycle", + -11.276700019836426 + ], + [ + "▁nutrients", + -11.276703834533691 + ], + [ + "▁expecting", + -11.276711463928223 + ], + [ + "▁camping", + -11.276726722717285 + ], + [ + "▁Communications", + -11.276758193969727 + ], + [ + "▁Prize", + -11.276810646057129 + ], + [ + "▁fur", + -11.276935577392578 + ], + [ + "▁Block", + -11.277070045471191 + ], + [ + "▁semester", + -11.27711296081543 + ], + [ + "▁Leave", + -11.277164459228516 + ], + [ + "▁jo", + -11.277190208435059 + ], + [ + "▁comic", + -11.27721118927002 + ], + [ + "▁BR", + -11.27727222442627 + ], + [ + "▁experimental", + -11.277294158935547 + ], + [ + "after", + -11.277445793151855 + ], + [ + "hir", + -11.27753734588623 + ], + [ + "▁sponsored", + -11.27763843536377 + ], + [ + "▁protest", + -11.2777738571167 + ], + [ + "▁Oklahoma", + -11.278440475463867 + ], + [ + "▁Sweet", + -11.278504371643066 + ], + [ + "place", + -11.278675079345703 + ], + [ + "▁grocery", + -11.2787446975708 + ], + [ + "▁steep", + -11.278841018676758 + ], + [ + "▁premier", + -11.278983116149902 + ], + [ + "▁countless", + -11.279011726379395 + ], + [ + "▁airline", + -11.27914810180664 + ], + [ + "▁Ron", + -11.279202461242676 + ], + [ + "AA", + -11.279627799987793 + ], + [ + "▁modules", + -11.279644966125488 + ], + [ + "▁Send", + -11.279666900634766 + ], + [ + "▁Major", + -11.279780387878418 + ], + [ + "▁2009.", + -11.27982234954834 + ], + [ + "determining", + -11.279898643493652 + ], + [ + "▁loading", + -11.279902458190918 + ], + [ + "▁Girl", + -11.280054092407227 + ], + [ + "▁Peace", + -11.280322074890137 + ], + [ + "depth", + -11.280769348144531 + ], + [ + "▁hassle", + -11.280964851379395 + ], + [ + "rated", + -11.280965805053711 + ], + [ + "▁Gre", + -11.281070709228516 + ], + [ + "▁Certificate", + -11.28127670288086 + ], + [ + "▁ears", + -11.281290054321289 + ], + [ + "▁Denver", + -11.28133487701416 + ], + [ + "lect", + -11.281533241271973 + ], + [ + "LL", + -11.2816162109375 + ], + [ + "wal", + -11.281638145446777 + ], + [ + "▁Used", + -11.28168773651123 + ], + [ + "▁decorative", + -11.282072067260742 + ], + [ + "▁Nigeria", + -11.282108306884766 + ], + [ + "▁breach", + -11.282259941101074 + ], + [ + "▁ge", + -11.282503128051758 + ], + [ + "lant", + -11.282569885253906 + ], + [ + "▁terrace", + -11.282877922058105 + ], + [ + "▁Anderson", + -11.28294849395752 + ], + [ + "▁Urban", + -11.283358573913574 + ], + [ + "ough", + -11.283394813537598 + ], + [ + "▁EP", + -11.283538818359375 + ], + [ + "▁Heritage", + -11.283815383911133 + ], + [ + "▁homework", + -11.283889770507812 + ], + [ + "▁boundaries", + -11.283931732177734 + ], + [ + "▁Bureau", + -11.283944129943848 + ], + [ + "looking", + -11.284107208251953 + ], + [ + "▁illustrate", + -11.284154891967773 + ], + [ + "base", + -11.284229278564453 + ], + [ + "eal", + -11.284247398376465 + ], + [ + "▁tags", + -11.284326553344727 + ], + [ + "▁Jane", + -11.2843656539917 + ], + [ + "▁locked", + -11.28445816040039 + ], + [ + "п", + -11.284592628479004 + ], + [ + "▁obligations", + -11.284943580627441 + ], + [ + "▁injection", + -11.284957885742188 + ], + [ + "▁disclosure", + -11.28501033782959 + ], + [ + "▁Dragon", + -11.285370826721191 + ], + [ + "wise", + -11.285486221313477 + ], + [ + "▁invitation", + -11.285510063171387 + ], + [ + "▁Craft", + -11.286312103271484 + ], + [ + "▁individually", + -11.286675453186035 + ], + [ + "▁submission", + -11.286815643310547 + ], + [ + "▁discussing", + -11.286881446838379 + ], + [ + "▁jazz", + -11.286986351013184 + ], + [ + "▁climbing", + -11.286991119384766 + ], + [ + "▁invested", + -11.28709602355957 + ], + [ + "▁Bear", + -11.287162780761719 + ], + [ + "▁essence", + -11.287458419799805 + ], + [ + "▁surgical", + -11.287534713745117 + ], + [ + "▁credits", + -11.287787437438965 + ], + [ + "▁accidents", + -11.28836727142334 + ], + [ + "▁Judge", + -11.288407325744629 + ], + [ + "-6", + -11.288723945617676 + ], + [ + "▁balls", + -11.288772583007812 + ], + [ + "▁Chairman", + -11.288982391357422 + ], + [ + "▁cure", + -11.289153099060059 + ], + [ + "▁tomatoes", + -11.289616584777832 + ], + [ + "▁province", + -11.289641380310059 + ], + [ + "hood", + -11.289657592773438 + ], + [ + "▁automotive", + -11.290206909179688 + ], + [ + "▁11.", + -11.290288925170898 + ], + [ + "▁specially", + -11.290369987487793 + ], + [ + "bert", + -11.290380477905273 + ], + [ + "▁AP", + -11.290510177612305 + ], + [ + "▁departure", + -11.290531158447266 + ], + [ + "▁dried", + -11.290576934814453 + ], + [ + "▁1992", + -11.290820121765137 + ], + [ + "▁offerings", + -11.290919303894043 + ], + [ + "▁Lincoln", + -11.29105281829834 + ], + [ + "▁cater", + -11.291083335876465 + ], + [ + "▁striking", + -11.291264533996582 + ], + [ + "phone", + -11.291276931762695 + ], + [ + "▁refrigerator", + -11.291292190551758 + ], + [ + "▁makers", + -11.29145336151123 + ], + [ + "▁Floor", + -11.291582107543945 + ], + [ + "▁celebrating", + -11.291730880737305 + ], + [ + "▁progressive", + -11.292030334472656 + ], + [ + "▁attendance", + -11.292198181152344 + ], + [ + "▁impacts", + -11.292333602905273 + ], + [ + "▁google", + -11.292362213134766 + ], + [ + "bil", + -11.292457580566406 + ], + [ + "lum", + -11.292986869812012 + ], + [ + "▁punch", + -11.293021202087402 + ], + [ + "DR", + -11.293106079101562 + ], + [ + "▁prospective", + -11.293302536010742 + ], + [ + "stick", + -11.293497085571289 + ], + [ + "▁Edward", + -11.293925285339355 + ], + [ + "utter", + -11.293985366821289 + ], + [ + "fold", + -11.294168472290039 + ], + [ + "▁concentrate", + -11.294172286987305 + ], + [ + "▁Olympic", + -11.294344902038574 + ], + [ + "▁react", + -11.294539451599121 + ], + [ + "▁6,", + -11.29455280303955 + ], + [ + "▁2011,", + -11.294598579406738 + ], + [ + "When", + -11.294793128967285 + ], + [ + "▁harsh", + -11.29482364654541 + ], + [ + "▁supporters", + -11.294843673706055 + ], + [ + "▁unfortunately", + -11.29501724243164 + ], + [ + "▁Speed", + -11.295086860656738 + ], + [ + "▁tasty", + -11.295222282409668 + ], + [ + "▁thereby", + -11.2952299118042 + ], + [ + "▁optical", + -11.295323371887207 + ], + [ + "▁comp", + -11.29544734954834 + ], + [ + "▁Sim", + -11.295473098754883 + ], + [ + "▁Mil", + -11.2954740524292 + ], + [ + "exp", + -11.295548439025879 + ], + [ + "inter", + -11.295724868774414 + ], + [ + "▁races", + -11.296299934387207 + ], + [ + "▁fantasy", + -11.296313285827637 + ], + [ + "▁Mas", + -11.296520233154297 + ], + [ + "▁56", + -11.296884536743164 + ], + [ + "▁THIS", + -11.297157287597656 + ], + [ + "▁notion", + -11.297407150268555 + ], + [ + "▁beloved", + -11.297478675842285 + ], + [ + "tics", + -11.297922134399414 + ], + [ + "▁internationally", + -11.2979736328125 + ], + [ + "▁Feel", + -11.2981538772583 + ], + [ + "OD", + -11.29826831817627 + ], + [ + "▁defensive", + -11.298368453979492 + ], + [ + "watch", + -11.298452377319336 + ], + [ + "rom", + -11.298580169677734 + ], + [ + "▁31,", + -11.298641204833984 + ], + [ + "▁NJ", + -11.298805236816406 + ], + [ + "▁easiest", + -11.299249649047852 + ], + [ + "▁max", + -11.299612045288086 + ], + [ + "▁stake", + -11.300098419189453 + ], + [ + "▁destinations", + -11.30010986328125 + ], + [ + "▁HTML", + -11.300480842590332 + ], + [ + "▁forgotten", + -11.300548553466797 + ], + [ + "▁catalog", + -11.300880432128906 + ], + [ + "▁permalink", + -11.300901412963867 + ], + [ + "▁Official", + -11.300943374633789 + ], + [ + "▁Maria", + -11.300976753234863 + ], + [ + "▁Innovation", + -11.300983428955078 + ], + [ + "▁rolled", + -11.300994873046875 + ], + [ + "mond", + -11.301092147827148 + ], + [ + "▁blank", + -11.30109691619873 + ], + [ + "▁hi", + -11.301345825195312 + ], + [ + "▁attach", + -11.301743507385254 + ], + [ + "▁gains", + -11.30177116394043 + ], + [ + "▁tick", + -11.301773071289062 + ], + [ + "▁appreciation", + -11.301851272583008 + ], + [ + "▁Consumer", + -11.30211353302002 + ], + [ + "▁diagnostic", + -11.302818298339844 + ], + [ + "deemed", + -11.302939414978027 + ], + [ + "▁earning", + -11.30301284790039 + ], + [ + "▁blogging", + -11.303044319152832 + ], + [ + "▁ethical", + -11.303338050842285 + ], + [ + "▁2010,", + -11.30335521697998 + ], + [ + "▁CV", + -11.303533554077148 + ], + [ + "▁wrapped", + -11.303574562072754 + ], + [ + "FP", + -11.303898811340332 + ], + [ + "▁Cla", + -11.304006576538086 + ], + [ + "▁boats", + -11.304195404052734 + ], + [ + "CR", + -11.304574012756348 + ], + [ + "▁Football", + -11.304693222045898 + ], + [ + "▁ordering", + -11.304718017578125 + ], + [ + "▁significance", + -11.304952621459961 + ], + [ + "wall", + -11.305033683776855 + ], + [ + "▁RO", + -11.305428504943848 + ], + [ + "▁Hor", + -11.305512428283691 + ], + [ + "▁rocks", + -11.30553150177002 + ], + [ + "where", + -11.30555248260498 + ], + [ + "▁gradually", + -11.305583000183105 + ], + [ + "ctor", + -11.3059663772583 + ], + [ + "▁investor", + -11.306085586547852 + ], + [ + "▁fed", + -11.306264877319336 + ], + [ + "▁tropical", + -11.306351661682129 + ], + [ + "▁durability", + -11.306360244750977 + ], + [ + "oul", + -11.306561470031738 + ], + [ + "cover", + -11.306596755981445 + ], + [ + "▁Malaysia", + -11.306778907775879 + ], + [ + "ites", + -11.307317733764648 + ], + [ + "▁51", + -11.307504653930664 + ], + [ + "via", + -11.307530403137207 + ], + [ + "▁affiliate", + -11.307825088500977 + ], + [ + "most", + -11.308076858520508 + ], + [ + "pic", + -11.308357238769531 + ], + [ + "▁mutual", + -11.308395385742188 + ], + [ + "▁indication", + -11.308525085449219 + ], + [ + "▁varieties", + -11.308623313903809 + ], + [ + "▁Survey", + -11.309053421020508 + ], + [ + "4.", + -11.309408187866211 + ], + [ + "▁broker", + -11.309581756591797 + ], + [ + "▁Drug", + -11.309639930725098 + ], + [ + "▁wallet", + -11.309782981872559 + ], + [ + "▁backed", + -11.30981159210205 + ], + [ + "▁stove", + -11.310065269470215 + ], + [ + "lat", + -11.310128211975098 + ], + [ + "▁corporations", + -11.310150146484375 + ], + [ + "▁Rep", + -11.310235023498535 + ], + [ + "▁closure", + -11.310522079467773 + ], + [ + "▁stroke", + -11.310892105102539 + ], + [ + "▁Junior", + -11.31090259552002 + ], + [ + "▁Audio", + -11.311683654785156 + ], + [ + "▁oak", + -11.311799049377441 + ], + [ + "▁TR", + -11.311860084533691 + ], + [ + "▁Holiday", + -11.31189250946045 + ], + [ + "▁tremendous", + -11.312047004699707 + ], + [ + "\")", + -11.31218433380127 + ], + [ + "▁sensors", + -11.312203407287598 + ], + [ + "▁Tro", + -11.312432289123535 + ], + [ + "iva", + -11.312469482421875 + ], + [ + "▁unlock", + -11.312485694885254 + ], + [ + "▁convey", + -11.312562942504883 + ], + [ + "▁Alaska", + -11.312743186950684 + ], + [ + "▁deployment", + -11.31300163269043 + ], + [ + "▁Syria", + -11.313309669494629 + ], + [ + "mber", + -11.313725471496582 + ], + [ + "front", + -11.313752174377441 + ], + [ + "▁Tennessee", + -11.313898086547852 + ], + [ + "ground", + -11.313963890075684 + ], + [ + "SO", + -11.314129829406738 + ], + [ + "▁promotional", + -11.314236640930176 + ], + [ + "▁agriculture", + -11.314379692077637 + ], + [ + "▁Must", + -11.31459903717041 + ], + [ + "▁geo", + -11.314786911010742 + ], + [ + "▁teaches", + -11.314892768859863 + ], + [ + "▁denied", + -11.315025329589844 + ], + [ + "▁LOVE", + -11.315059661865234 + ], + [ + "▁radical", + -11.315170288085938 + ], + [ + "4,", + -11.31523323059082 + ], + [ + "▁Jews", + -11.315418243408203 + ], + [ + "▁batch", + -11.31567096710205 + ], + [ + "▁Pr", + -11.315773010253906 + ], + [ + "▁Outdoor", + -11.316104888916016 + ], + [ + "uz", + -11.31613826751709 + ], + [ + "▁Foreign", + -11.316143035888672 + ], + [ + "▁accused", + -11.31651496887207 + ], + [ + "▁Thailand", + -11.316686630249023 + ], + [ + "ATION", + -11.31668758392334 + ], + [ + "▁variations", + -11.316838264465332 + ], + [ + "▁Affairs", + -11.317152976989746 + ], + [ + "▁straightforward", + -11.317401885986328 + ], + [ + "SM", + -11.317582130432129 + ], + [ + "▁restricted", + -11.317602157592773 + ], + [ + "▁wax", + -11.31767749786377 + ], + [ + "▁Recently", + -11.317721366882324 + ], + [ + "▁fallen", + -11.317998886108398 + ], + [ + "▁dec", + -11.318015098571777 + ], + [ + "▁formats", + -11.318275451660156 + ], + [ + "▁regret", + -11.319192886352539 + ], + [ + "▁Payment", + -11.319228172302246 + ], + [ + "▁entities", + -11.319242477416992 + ], + [ + "▁concluded", + -11.31928825378418 + ], + [ + "▁inclusion", + -11.319328308105469 + ], + [ + "▁prospects", + -11.319337844848633 + ], + [ + "▁Tar", + -11.319360733032227 + ], + [ + "▁mechanisms", + -11.31937313079834 + ], + [ + "▁WE", + -11.319485664367676 + ], + [ + "▁EC", + -11.319560050964355 + ], + [ + "case", + -11.319878578186035 + ], + [ + "▁Bachelor", + -11.320085525512695 + ], + [ + "pir", + -11.32011604309082 + ], + [ + "▁algorithm", + -11.320352554321289 + ], + [ + "▁Records", + -11.320513725280762 + ], + [ + "▁Dor", + -11.320581436157227 + ], + [ + "▁tunnel", + -11.320585250854492 + ], + [ + "▁recycling", + -11.320886611938477 + ], + [ + "▁Qu", + -11.320974349975586 + ], + [ + "▁Netherlands", + -11.3209867477417 + ], + [ + "▁weigh", + -11.321145057678223 + ], + [ + "▁Greg", + -11.321195602416992 + ], + [ + "anne", + -11.321208000183105 + ], + [ + "▁coupons", + -11.321640968322754 + ], + [ + "▁ja", + -11.321659088134766 + ], + [ + "▁Saudi", + -11.321910858154297 + ], + [ + "▁facial", + -11.322089195251465 + ], + [ + "▁Legal", + -11.322149276733398 + ], + [ + "▁Portland", + -11.322638511657715 + ], + [ + "▁Tan", + -11.322661399841309 + ], + [ + "▁outlet", + -11.322896957397461 + ], + [ + "pat", + -11.322919845581055 + ], + [ + "▁SW", + -11.322931289672852 + ], + [ + "▁independence", + -11.322992324829102 + ], + [ + "▁Missouri", + -11.323226928710938 + ], + [ + "EX", + -11.32325267791748 + ], + [ + "▁corporation", + -11.323397636413574 + ], + [ + "night", + -11.3234224319458 + ], + [ + "▁aging", + -11.323528289794922 + ], + [ + "Go", + -11.323575019836426 + ], + [ + "▁hadn", + -11.32404613494873 + ], + [ + ".....", + -11.324124336242676 + ], + [ + "▁shadow", + -11.32418155670166 + ], + [ + "▁treats", + -11.324488639831543 + ], + [ + "▁Sept", + -11.324786186218262 + ], + [ + "shop", + -11.324827194213867 + ], + [ + "▁reveals", + -11.324846267700195 + ], + [ + "▁thirty", + -11.324934959411621 + ], + [ + "▁cry", + -11.325175285339355 + ], + [ + "wer", + -11.325417518615723 + ], + [ + "its", + -11.32544231414795 + ], + [ + "▁Meet", + -11.325506210327148 + ], + [ + "word", + -11.326172828674316 + ], + [ + "▁kits", + -11.326254844665527 + ], + [ + "▁liberal", + -11.326345443725586 + ], + [ + "▁variables", + -11.326460838317871 + ], + [ + "▁libraries", + -11.32651138305664 + ], + [ + "▁Pages", + -11.326566696166992 + ], + [ + "LO", + -11.3267240524292 + ], + [ + "▁Thanksgiving", + -11.326852798461914 + ], + [ + "▁optimization", + -11.326948165893555 + ], + [ + "▁demanding", + -11.327024459838867 + ], + [ + "sho", + -11.327035903930664 + ], + [ + "▁lighter", + -11.32707405090332 + ], + [ + "▁Mining", + -11.327291488647461 + ], + [ + "▁Coach", + -11.327404022216797 + ], + [ + "▁adjusted", + -11.327444076538086 + ], + [ + "▁belong", + -11.327454566955566 + ], + [ + "▁Fashion", + -11.327476501464844 + ], + [ + "▁solving", + -11.327635765075684 + ], + [ + "▁readily", + -11.32788372039795 + ], + [ + "dle", + -11.327889442443848 + ], + [ + "▁Zi", + -11.32789134979248 + ], + [ + "▁Usually", + -11.328411102294922 + ], + [ + "cel", + -11.328592300415039 + ], + [ + "▁experiments", + -11.328638076782227 + ], + [ + "▁floral", + -11.328770637512207 + ], + [ + "▁niche", + -11.328861236572266 + ], + [ + "▁nobody", + -11.32903003692627 + ], + [ + "▁Excellent", + -11.329057693481445 + ], + [ + "hold", + -11.329106330871582 + ], + [ + "▁wage", + -11.3296480178833 + ], + [ + "▁dimension", + -11.329744338989258 + ], + [ + "▁funeral", + -11.329849243164062 + ], + [ + "▁manually", + -11.329863548278809 + ], + [ + "▁heated", + -11.33013916015625 + ], + [ + "-15", + -11.330196380615234 + ], + [ + "▁applicants", + -11.3302001953125 + ], + [ + "▁booth", + -11.330331802368164 + ], + [ + "▁skip", + -11.33056926727295 + ], + [ + "phy", + -11.330709457397461 + ], + [ + "print", + -11.330941200256348 + ], + [ + "▁genre", + -11.33128547668457 + ], + [ + "▁180", + -11.331490516662598 + ], + [ + "▁writes", + -11.331588745117188 + ], + [ + "▁perception", + -11.331683158874512 + ], + [ + "▁venues", + -11.331769943237305 + ], + [ + "▁recipient", + -11.331793785095215 + ], + [ + "▁Works", + -11.332341194152832 + ], + [ + "market", + -11.332502365112305 + ], + [ + "▁vegetable", + -11.332602500915527 + ], + [ + "▁pipeline", + -11.3331937789917 + ], + [ + "▁preventing", + -11.333220481872559 + ], + [ + "▁radiation", + -11.333221435546875 + ], + [ + "▁Morgan", + -11.333252906799316 + ], + [ + "▁mobility", + -11.333389282226562 + ], + [ + "▁Cy", + -11.333403587341309 + ], + [ + "▁refused", + -11.333455085754395 + ], + [ + "▁protective", + -11.333475112915039 + ], + [ + "▁liable", + -11.333489418029785 + ], + [ + "▁res", + -11.33385181427002 + ], + [ + "▁handful", + -11.333961486816406 + ], + [ + "▁tire", + -11.334017753601074 + ], + [ + "▁Valentine", + -11.334097862243652 + ], + [ + "▁execute", + -11.334113121032715 + ], + [ + "thro", + -11.33448600769043 + ], + [ + "▁implications", + -11.334789276123047 + ], + [ + "▁intensity", + -11.334859848022461 + ], + [ + "▁subscribe", + -11.334964752197266 + ], + [ + "awa", + -11.335238456726074 + ], + [ + "▁anger", + -11.335240364074707 + ], + [ + "▁Baker", + -11.335433006286621 + ], + [ + "ular", + -11.335541725158691 + ], + [ + "▁diagnosed", + -11.335752487182617 + ], + [ + "▁lying", + -11.335932731628418 + ], + [ + "()", + -11.335997581481934 + ], + [ + "▁responsive", + -11.336182594299316 + ], + [ + "load", + -11.33644962310791 + ], + [ + "▁relie", + -11.336615562438965 + ], + [ + "▁recruitment", + -11.336771011352539 + ], + [ + "▁Ob", + -11.336865425109863 + ], + [ + "▁promo", + -11.337281227111816 + ], + [ + "▁adjacent", + -11.337553024291992 + ], + [ + "▁audiences", + -11.3378324508667 + ], + [ + "▁skirt", + -11.33791732788086 + ], + [ + "good", + -11.337958335876465 + ], + [ + "▁candy", + -11.337992668151855 + ], + [ + "▁athletic", + -11.338113784790039 + ], + [ + "mid", + -11.338163375854492 + ], + [ + "▁repeated", + -11.338264465332031 + ], + [ + "▁praise", + -11.338435173034668 + ], + [ + "hot", + -11.338716506958008 + ], + [ + "▁blade", + -11.338728904724121 + ], + [ + "▁documentary", + -11.338833808898926 + ], + [ + "▁proposals", + -11.33889389038086 + ], + [ + "▁Dubai", + -11.338915824890137 + ], + [ + "▁Parliament", + -11.338959693908691 + ], + [ + "▁roofing", + -11.339143753051758 + ], + [ + "ark", + -11.339200019836426 + ], + [ + "lation", + -11.339231491088867 + ], + [ + "▁closest", + -11.339484214782715 + ], + [ + "▁basket", + -11.33961009979248 + ], + [ + "▁reminder", + -11.339644432067871 + ], + [ + "▁Mag", + -11.339689254760742 + ], + [ + "▁comedy", + -11.340164184570312 + ], + [ + "▁presenting", + -11.340359687805176 + ], + [ + "▁dedication", + -11.340496063232422 + ], + [ + "sure", + -11.340557098388672 + ], + [ + "▁DR", + -11.340577125549316 + ], + [ + "▁votes", + -11.340760231018066 + ], + [ + "EA", + -11.340948104858398 + ], + [ + "▁influenced", + -11.341031074523926 + ], + [ + "▁Arch", + -11.341217994689941 + ], + [ + "▁compound", + -11.341248512268066 + ], + [ + "▁alien", + -11.341460227966309 + ], + [ + "▁magnificent", + -11.341516494750977 + ], + [ + "▁welcoming", + -11.341552734375 + ], + [ + "▁alleged", + -11.341840744018555 + ], + [ + "PT", + -11.34190559387207 + ], + [ + "▁Dumpster", + -11.341946601867676 + ], + [ + "▁Paint", + -11.342042922973633 + ], + [ + "▁heal", + -11.342086791992188 + ], + [ + "▁drum", + -11.342306137084961 + ], + [ + "▁Democrats", + -11.342313766479492 + ], + [ + "▁$7", + -11.342555046081543 + ], + [ + "▁attempting", + -11.342768669128418 + ], + [ + "▁tires", + -11.34281063079834 + ], + [ + "▁Scottish", + -11.343052864074707 + ], + [ + "▁dispute", + -11.34315013885498 + ], + [ + "▁Visual", + -11.343219757080078 + ], + [ + "sur", + -11.343330383300781 + ], + [ + "▁thrown", + -11.343509674072266 + ], + [ + "cia", + -11.343656539916992 + ], + [ + "▁imaging", + -11.343803405761719 + ], + [ + "▁gut", + -11.344221115112305 + ], + [ + "▁Greece", + -11.344319343566895 + ], + [ + "|", + -11.34432315826416 + ], + [ + "▁generating", + -11.344393730163574 + ], + [ + "▁Basic", + -11.344501495361328 + ], + [ + "edge", + -11.34464168548584 + ], + [ + "▁Salt", + -11.344649314880371 + ], + [ + "▁Fit", + -11.344733238220215 + ], + [ + "▁Mail", + -11.344820976257324 + ], + [ + "aging", + -11.34493350982666 + ], + [ + "▁decorating", + -11.345263481140137 + ], + [ + "▁labour", + -11.345273971557617 + ], + [ + "▁spell", + -11.345635414123535 + ], + [ + "▁competing", + -11.34595775604248 + ], + [ + "▁deciding", + -11.346095085144043 + ], + [ + "▁Alexander", + -11.346264839172363 + ], + [ + "stein", + -11.346388816833496 + ], + [ + "▁undergraduate", + -11.346461296081543 + ], + [ + "▁Fish", + -11.346817970275879 + ], + [ + "tern", + -11.346829414367676 + ], + [ + "▁Islands", + -11.346907615661621 + ], + [ + "VI", + -11.347061157226562 + ], + [ + "▁criticism", + -11.347088813781738 + ], + [ + "bling", + -11.347097396850586 + ], + [ + "had", + -11.347228050231934 + ], + [ + "yes", + -11.347354888916016 + ], + [ + "other", + -11.34738540649414 + ], + [ + "cell", + -11.347406387329102 + ], + [ + "▁compromise", + -11.347512245178223 + ], + [ + "▁shame", + -11.34787654876709 + ], + [ + "▁stones", + -11.347980499267578 + ], + [ + "main", + -11.348119735717773 + ], + [ + "▁premises", + -11.348608016967773 + ], + [ + "▁nationwide", + -11.348625183105469 + ], + [ + "▁distribute", + -11.348660469055176 + ], + [ + "▁Au", + -11.348661422729492 + ], + [ + "▁Carl", + -11.348710060119629 + ], + [ + "rock", + -11.348734855651855 + ], + [ + "▁islands", + -11.348797798156738 + ], + [ + "▁trace", + -11.348844528198242 + ], + [ + "▁preference", + -11.348946571350098 + ], + [ + "▁Culture", + -11.348955154418945 + ], + [ + "▁serial", + -11.348989486694336 + ], + [ + "▁startup", + -11.349298477172852 + ], + [ + "▁ebook", + -11.349689483642578 + ], + [ + "▁Cas", + -11.349784851074219 + ], + [ + "▁establishing", + -11.349888801574707 + ], + [ + "proof", + -11.34993839263916 + ], + [ + "▁offensive", + -11.35002326965332 + ], + [ + "▁healthier", + -11.350059509277344 + ], + [ + "▁preview", + -11.350356101989746 + ], + [ + "▁span", + -11.35071849822998 + ], + [ + "▁($", + -11.350804328918457 + ], + [ + "▁veteran", + -11.350826263427734 + ], + [ + "▁02", + -11.3512601852417 + ], + [ + "▁HERE", + -11.351329803466797 + ], + [ + "▁meter", + -11.351494789123535 + ], + [ + "CM", + -11.35172176361084 + ], + [ + "▁advocate", + -11.3517427444458 + ], + [ + "▁bones", + -11.351910591125488 + ], + [ + "FT", + -11.352005958557129 + ], + [ + "Cha", + -11.352007865905762 + ], + [ + "▁Results", + -11.352190017700195 + ], + [ + "▁supplements", + -11.35239028930664 + ], + [ + "▁MC", + -11.352426528930664 + ], + [ + "▁habitat", + -11.3524808883667 + ], + [ + "ces", + -11.352561950683594 + ], + [ + "▁Pra", + -11.352733612060547 + ], + [ + "aki", + -11.35328197479248 + ], + [ + "▁traditions", + -11.353328704833984 + ], + [ + "▁Op", + -11.353419303894043 + ], + [ + "▁Yoga", + -11.353570938110352 + ], + [ + "rous", + -11.353986740112305 + ], + [ + "▁PO", + -11.354080200195312 + ], + [ + "▁pr", + -11.354199409484863 + ], + [ + "rum", + -11.354545593261719 + ], + [ + "▁onion", + -11.35462474822998 + ], + [ + "▁Nat", + -11.354679107666016 + ], + [ + "press", + -11.354806900024414 + ], + [ + "▁Original", + -11.354973793029785 + ], + [ + "teen", + -11.35510540008545 + ], + [ + "action", + -11.35518741607666 + ], + [ + "▁curve", + -11.355405807495117 + ], + [ + "ulation", + -11.355427742004395 + ], + [ + "▁inflation", + -11.355485916137695 + ], + [ + "MENT", + -11.35549259185791 + ], + [ + "aria", + -11.355502128601074 + ], + [ + "▁transit", + -11.355531692504883 + ], + [ + "▁VPN", + -11.355552673339844 + ], + [ + "▁EX", + -11.35559368133545 + ], + [ + "▁ruling", + -11.355642318725586 + ], + [ + "▁automobile", + -11.355667114257812 + ], + [ + "▁dip", + -11.355839729309082 + ], + [ + "road", + -11.355844497680664 + ], + [ + "▁customize", + -11.355854034423828 + ], + [ + "▁Kentucky", + -11.356075286865234 + ], + [ + "ICE", + -11.356091499328613 + ], + [ + "3)", + -11.356119155883789 + ], + [ + "▁1991", + -11.35627269744873 + ], + [ + "▁fraction", + -11.356386184692383 + ], + [ + "text", + -11.35648250579834 + ], + [ + "ر", + -11.35672378540039 + ], + [ + "▁cleaned", + -11.356880187988281 + ], + [ + "▁devoted", + -11.357046127319336 + ], + [ + "▁Dead", + -11.357245445251465 + ], + [ + "▁Taking", + -11.357427597045898 + ], + [ + "▁figured", + -11.35788631439209 + ], + [ + "▁fired", + -11.35810661315918 + ], + [ + "▁lit", + -11.358187675476074 + ], + [ + "▁scent", + -11.35859203338623 + ], + [ + "▁vegan", + -11.358614921569824 + ], + [ + "they", + -11.358759880065918 + ], + [ + "▁accessed", + -11.358813285827637 + ], + [ + "▁god", + -11.358930587768555 + ], + [ + "▁titled", + -11.358953475952148 + ], + [ + "nish", + -11.359189987182617 + ], + [ + "▁renewable", + -11.359612464904785 + ], + [ + "▁addressing", + -11.359735488891602 + ], + [ + "rod", + -11.359869956970215 + ], + [ + "▁Medicare", + -11.360260009765625 + ], + [ + "▁supportive", + -11.36038875579834 + ], + [ + "▁Row", + -11.36043643951416 + ], + [ + "▁fails", + -11.3607177734375 + ], + [ + "▁Hat", + -11.360810279846191 + ], + [ + "▁crisp", + -11.360856056213379 + ], + [ + "▁bonds", + -11.360897064208984 + ], + [ + "▁Falls", + -11.361356735229492 + ], + [ + "▁8,", + -11.361407279968262 + ], + [ + "▁Virtual", + -11.361413955688477 + ], + [ + "kg", + -11.361547470092773 + ], + [ + "▁Anthony", + -11.361712455749512 + ], + [ + "▁poster", + -11.361885070800781 + ], + [ + "▁Susan", + -11.362268447875977 + ], + [ + "meter", + -11.362272262573242 + ], + [ + "▁continually", + -11.362276077270508 + ], + [ + "▁garbage", + -11.362285614013672 + ], + [ + "AN", + -11.362299919128418 + ], + [ + "than", + -11.362497329711914 + ], + [ + "▁charming", + -11.362568855285645 + ], + [ + "▁Premium", + -11.362704277038574 + ], + [ + "▁destruction", + -11.362741470336914 + ], + [ + "▁convinced", + -11.363151550292969 + ], + [ + "▁Mayor", + -11.363195419311523 + ], + [ + "One", + -11.363265037536621 + ], + [ + "▁pockets", + -11.363290786743164 + ], + [ + "▁CH", + -11.363348960876465 + ], + [ + "▁Tin", + -11.363370895385742 + ], + [ + "▁speaks", + -11.364123344421387 + ], + [ + "▁clarity", + -11.364289283752441 + ], + [ + "▁observation", + -11.364311218261719 + ], + [ + "rag", + -11.3644380569458 + ], + [ + "▁Pinterest", + -11.364678382873535 + ], + [ + "▁sudden", + -11.3646821975708 + ], + [ + "▁speeds", + -11.365045547485352 + ], + [ + "▁spark", + -11.365257263183594 + ], + [ + "▁pulling", + -11.365470886230469 + ], + [ + "▁reset", + -11.365486145019531 + ], + [ + "▁separated", + -11.365506172180176 + ], + [ + "▁11,", + -11.365632057189941 + ], + [ + "▁vessel", + -11.366076469421387 + ], + [ + "▁variation", + -11.366106033325195 + ], + [ + "▁toxic", + -11.366146087646484 + ], + [ + "through", + -11.36628532409668 + ], + [ + "▁beneath", + -11.366313934326172 + ], + [ + "▁Empire", + -11.366436958312988 + ], + [ + "▁chef", + -11.36647891998291 + ], + [ + "▁calculate", + -11.366488456726074 + ], + [ + "▁lenses", + -11.366604804992676 + ], + [ + "▁CON", + -11.366748809814453 + ], + [ + "0.00", + -11.367330551147461 + ], + [ + "ago", + -11.367449760437012 + ], + [ + "▁migration", + -11.36783504486084 + ], + [ + "▁particles", + -11.368043899536133 + ], + [ + "▁informative", + -11.368252754211426 + ], + [ + "ural", + -11.36838436126709 + ], + [ + "▁failing", + -11.368781089782715 + ], + [ + "▁Face", + -11.368824005126953 + ], + [ + "ged", + -11.368958473205566 + ], + [ + "▁genes", + -11.369037628173828 + ], + [ + "▁Labor", + -11.369551658630371 + ], + [ + "Th", + -11.369786262512207 + ], + [ + "EST", + -11.369904518127441 + ], + [ + "▁85", + -11.369938850402832 + ], + [ + "nut", + -11.369975090026855 + ], + [ + "▁Intel", + -11.37038803100586 + ], + [ + "▁Index", + -11.37044906616211 + ], + [ + "▁Dad", + -11.370922088623047 + ], + [ + "▁Ser", + -11.371012687683105 + ], + [ + "▁jail", + -11.371021270751953 + ], + [ + "sburg", + -11.37108039855957 + ], + [ + "::", + -11.371373176574707 + ], + [ + "system", + -11.371580123901367 + ], + [ + "body", + -11.371711730957031 + ], + [ + "▁tears", + -11.371927261352539 + ], + [ + "▁visibility", + -11.371962547302246 + ], + [ + "▁2008.", + -11.372030258178711 + ], + [ + "ering", + -11.372040748596191 + ], + [ + "▁obtaining", + -11.372674942016602 + ], + [ + "▁anybody", + -11.373046875 + ], + [ + "▁Excel", + -11.373108863830566 + ], + [ + "tag", + -11.373196601867676 + ], + [ + "▁valued", + -11.373542785644531 + ], + [ + "▁floating", + -11.373846054077148 + ], + [ + "▁Grade", + -11.373946189880371 + ], + [ + "▁Dental", + -11.374054908752441 + ], + [ + "▁Math", + -11.374298095703125 + ], + [ + "going", + -11.374319076538086 + ], + [ + "▁disabilities", + -11.374464988708496 + ], + [ + "▁junk", + -11.374503135681152 + ], + [ + "using", + -11.374886512756348 + ], + [ + "chin", + -11.374921798706055 + ], + [ + "▁accurately", + -11.374960899353027 + ], + [ + "▁machinery", + -11.37505054473877 + ], + [ + "TR", + -11.375337600708008 + ], + [ + "▁functioning", + -11.37552261352539 + ], + [ + "SN", + -11.375762939453125 + ], + [ + "▁assisted", + -11.376093864440918 + ], + [ + "▁adverse", + -11.376218795776367 + ], + [ + "▁rotation", + -11.37675666809082 + ], + [ + "▁horror", + -11.376764297485352 + ], + [ + "▁Captain", + -11.376800537109375 + ], + [ + "▁elite", + -11.376812934875488 + ], + [ + "▁assault", + -11.376912117004395 + ], + [ + "▁clever", + -11.377035140991211 + ], + [ + "▁Region", + -11.377092361450195 + ], + [ + "▁Wolf", + -11.377137184143066 + ], + [ + "▁proteins", + -11.377525329589844 + ], + [ + "▁electronics", + -11.37755298614502 + ], + [ + "SL", + -11.377730369567871 + ], + [ + "▁(3)", + -11.377860069274902 + ], + [ + "▁dozens", + -11.378003120422363 + ], + [ + "edu", + -11.378190994262695 + ], + [ + "▁Soft", + -11.378287315368652 + ], + [ + "dig", + -11.378381729125977 + ], + [ + "eria", + -11.378558158874512 + ], + [ + "▁thrive", + -11.37882137298584 + ], + [ + "▁Century", + -11.378852844238281 + ], + [ + "▁contributing", + -11.37889289855957 + ], + [ + "▁Gulf", + -11.379068374633789 + ], + [ + "▁bull", + -11.379186630249023 + ], + [ + "▁consistency", + -11.379228591918945 + ], + [ + "▁pants", + -11.37928581237793 + ], + [ + "▁barrier", + -11.379353523254395 + ], + [ + "▁programmes", + -11.379417419433594 + ], + [ + "▁Detroit", + -11.379823684692383 + ], + [ + "▁bucket", + -11.379849433898926 + ], + [ + "itch", + -11.38021469116211 + ], + [ + "▁Skin", + -11.380311012268066 + ], + [ + "▁gaining", + -11.380504608154297 + ], + [ + "▁cottage", + -11.380839347839355 + ], + [ + "▁Process", + -11.38109302520752 + ], + [ + "▁compelling", + -11.381117820739746 + ], + [ + "sville", + -11.381291389465332 + ], + [ + "▁hack", + -11.381391525268555 + ], + [ + "▁anticipated", + -11.381491661071777 + ], + [ + "▁Dean", + -11.381651878356934 + ], + [ + "▁cognitive", + -11.38168716430664 + ], + [ + "▁coastal", + -11.381952285766602 + ], + [ + "▁Location", + -11.38202953338623 + ], + [ + "▁Between", + -11.382060050964355 + ], + [ + "▁110", + -11.382120132446289 + ], + [ + "▁350", + -11.382156372070312 + ], + [ + "▁Transfer", + -11.382156372070312 + ], + [ + "BO", + -11.38223934173584 + ], + [ + "▁Phoenix", + -11.38241195678711 + ], + [ + "kind", + -11.382604598999023 + ], + [ + "▁violation", + -11.382722854614258 + ], + [ + "▁Moore", + -11.382781982421875 + ], + [ + "▁highlighted", + -11.382949829101562 + ], + [ + "▁refreshing", + -11.382981300354004 + ], + [ + "▁integral", + -11.38322925567627 + ], + [ + "▁cups", + -11.383334159851074 + ], + [ + "▁asks", + -11.383657455444336 + ], + [ + "▁HE", + -11.383797645568848 + ], + [ + "▁Editor", + -11.383816719055176 + ], + [ + "lands", + -11.383981704711914 + ], + [ + "▁quit", + -11.38408088684082 + ], + [ + "▁crossing", + -11.384112358093262 + ], + [ + "▁unnecessary", + -11.384222984313965 + ], + [ + "▁lip", + -11.384288787841797 + ], + [ + "▁Rent", + -11.384507179260254 + ], + [ + "▁honestly", + -11.384711265563965 + ], + [ + "▁PE", + -11.384719848632812 + ], + [ + "▁therapeutic", + -11.384736061096191 + ], + [ + "▁shelves", + -11.384740829467773 + ], + [ + "▁symbols", + -11.384783744812012 + ], + [ + "▁undergo", + -11.38486385345459 + ], + [ + "▁Ter", + -11.384984016418457 + ], + [ + "▁Register", + -11.385297775268555 + ], + [ + "bul", + -11.385390281677246 + ], + [ + "▁Sy", + -11.385589599609375 + ], + [ + "ridge", + -11.385616302490234 + ], + [ + "▁Details", + -11.385616302490234 + ], + [ + "▁Bull", + -11.385621070861816 + ], + [ + "▁Honda", + -11.385869026184082 + ], + [ + "gas", + -11.385909080505371 + ], + [ + "▁Until", + -11.386076927185059 + ], + [ + "▁pest", + -11.386297225952148 + ], + [ + "els", + -11.386592864990234 + ], + [ + "▁Shipping", + -11.386601448059082 + ], + [ + "▁appealing", + -11.38664436340332 + ], + [ + "▁UV", + -11.38670539855957 + ], + [ + "▁Exam", + -11.38674545288086 + ], + [ + "▁embedded", + -11.386773109436035 + ], + [ + "▁conjunction", + -11.386847496032715 + ], + [ + "ook", + -11.38718032836914 + ], + [ + "▁reflected", + -11.387198448181152 + ], + [ + "▁pickup", + -11.38748836517334 + ], + [ + "▁WI", + -11.387532234191895 + ], + [ + "▁keywords", + -11.387737274169922 + ], + [ + "▁lovers", + -11.387757301330566 + ], + [ + "▁1950", + -11.387765884399414 + ], + [ + "▁Active", + -11.38778018951416 + ], + [ + "▁aesthetic", + -11.388116836547852 + ], + [ + "▁contacted", + -11.38818645477295 + ], + [ + "▁packing", + -11.388365745544434 + ], + [ + "LC", + -11.388603210449219 + ], + [ + "▁merchandise", + -11.388681411743164 + ], + [ + "▁counsel", + -11.388708114624023 + ], + [ + "▁logical", + -11.388792037963867 + ], + [ + "▁glory", + -11.38900375366211 + ], + [ + "▁educate", + -11.389017105102539 + ], + [ + "▁Sample", + -11.389501571655273 + ], + [ + "lines", + -11.3897705078125 + ], + [ + "▁Focus", + -11.389795303344727 + ], + [ + "flow", + -11.3898286819458 + ], + [ + "▁tasting", + -11.389918327331543 + ], + [ + "▁crafted", + -11.390040397644043 + ], + [ + "▁Fla", + -11.390117645263672 + ], + [ + "▁epi", + -11.390337944030762 + ], + [ + "▁margin", + -11.390843391418457 + ], + [ + "lou", + -11.39117431640625 + ], + [ + "▁queen", + -11.391213417053223 + ], + [ + "▁Treatment", + -11.391256332397461 + ], + [ + "▁NE", + -11.391435623168945 + ], + [ + "PD", + -11.391608238220215 + ], + [ + "▁humanity", + -11.391858100891113 + ], + [ + "▁Philippines", + -11.392032623291016 + ], + [ + "▁finishes", + -11.392159461975098 + ], + [ + "▁Sweden", + -11.392171859741211 + ], + [ + "▁tent", + -11.392440795898438 + ], + [ + "▁blocked", + -11.392539978027344 + ], + [ + "ators", + -11.392662048339844 + ], + [ + "logical", + -11.393004417419434 + ], + [ + "dem", + -11.39309024810791 + ], + [ + "▁66", + -11.39315128326416 + ], + [ + "▁Indonesia", + -11.393219947814941 + ], + [ + "▁elderly", + -11.393270492553711 + ], + [ + "▁lately", + -11.393325805664062 + ], + [ + "▁anchor", + -11.393489837646484 + ], + [ + "▁charter", + -11.393582344055176 + ], + [ + "▁Target", + -11.393819808959961 + ], + [ + "▁Current", + -11.393876075744629 + ], + [ + "▁microwave", + -11.394678115844727 + ], + [ + "▁correction", + -11.394862174987793 + ], + [ + "▁Pad", + -11.39493465423584 + ], + [ + "▁IV", + -11.395023345947266 + ], + [ + "▁companion", + -11.395065307617188 + ], + [ + "▁Cl", + -11.395210266113281 + ], + [ + "VE", + -11.39531421661377 + ], + [ + "mod", + -11.395400047302246 + ], + [ + "▁Ur", + -11.395418167114258 + ], + [ + "▁Apply", + -11.395448684692383 + ], + [ + "-16", + -11.395721435546875 + ], + [ + "▁bride", + -11.39619255065918 + ], + [ + "▁disappear", + -11.39626693725586 + ], + [ + "▁Alabama", + -11.396394729614258 + ], + [ + "▁08", + -11.39667797088623 + ], + [ + "▁queries", + -11.396760940551758 + ], + [ + "▁affairs", + -11.396965026855469 + ], + [ + "▁Adult", + -11.397022247314453 + ], + [ + "arian", + -11.39727783203125 + ], + [ + "▁rope", + -11.397369384765625 + ], + [ + "eva", + -11.397435188293457 + ], + [ + "▁Pur", + -11.39745807647705 + ], + [ + "▁fortunate", + -11.397539138793945 + ], + [ + "▁priorities", + -11.39776611328125 + ], + [ + "▁herbs", + -11.397769927978516 + ], + [ + "▁Screen", + -11.39780044555664 + ], + [ + "arm", + -11.397833824157715 + ], + [ + "Star", + -11.39786148071289 + ], + [ + "nation", + -11.398179054260254 + ], + [ + "▁pound", + -11.398624420166016 + ], + [ + "▁Wars", + -11.398697853088379 + ], + [ + "▁reaches", + -11.39881420135498 + ], + [ + "▁CBD", + -11.39885425567627 + ], + [ + "▁reminded", + -11.399007797241211 + ], + [ + "▁coins", + -11.399036407470703 + ], + [ + "▁dock", + -11.399539947509766 + ], + [ + "700", + -11.399575233459473 + ], + [ + "ѕ", + -11.399608612060547 + ], + [ + "shot", + -11.399636268615723 + ], + [ + "▁practicing", + -11.399730682373047 + ], + [ + "▁separation", + -11.399803161621094 + ], + [ + "▁trauma", + -11.39997386932373 + ], + [ + "EM", + -11.400102615356445 + ], + [ + "▁eastern", + -11.40027904510498 + ], + [ + "▁Allow", + -11.400341033935547 + ], + [ + "▁Caribbean", + -11.400381088256836 + ], + [ + "▁Jet", + -11.400615692138672 + ], + [ + "▁Amazing", + -11.40070915222168 + ], + [ + "stock", + -11.400715827941895 + ], + [ + "UL", + -11.400761604309082 + ], + [ + "▁Hence", + -11.400764465332031 + ], + [ + "▁partial", + -11.400850296020508 + ], + [ + "ened", + -11.400883674621582 + ], + [ + "▁adventures", + -11.40125846862793 + ], + [ + "▁bundle", + -11.401445388793945 + ], + [ + "▁pond", + -11.40147876739502 + ], + [ + "aud", + -11.401643753051758 + ], + [ + "▁Kate", + -11.401841163635254 + ], + [ + "▁(4", + -11.402327537536621 + ], + [ + "▁sq", + -11.4024019241333 + ], + [ + "▁silence", + -11.40255355834961 + ], + [ + "▁castle", + -11.402559280395508 + ], + [ + "▁rhythm", + -11.402594566345215 + ], + [ + "▁shield", + -11.402626037597656 + ], + [ + "topped", + -11.40263843536377 + ], + [ + "nch", + -11.402685165405273 + ], + [ + "▁dessert", + -11.402909278869629 + ], + [ + "nnie", + -11.403115272521973 + ], + [ + "But", + -11.40336799621582 + ], + [ + "▁DI", + -11.403433799743652 + ], + [ + "▁Harris", + -11.403539657592773 + ], + [ + "▁attributes", + -11.403743743896484 + ], + [ + "▁Address", + -11.40378475189209 + ], + [ + "▁consecutive", + -11.403985023498535 + ], + [ + "▁cement", + -11.404047012329102 + ], + [ + "▁dirty", + -11.404106140136719 + ], + [ + "▁specify", + -11.40429973602295 + ], + [ + "▁handles", + -11.404434204101562 + ], + [ + "▁linear", + -11.404594421386719 + ], + [ + "▁Bat", + -11.404887199401855 + ], + [ + "▁screens", + -11.405441284179688 + ], + [ + "▁seemingly", + -11.405576705932617 + ], + [ + "▁affecting", + -11.405598640441895 + ], + [ + "▁paragraph", + -11.405776023864746 + ], + [ + "▁clay", + -11.40587043762207 + ], + [ + "▁Build", + -11.40615177154541 + ], + [ + "▁3:", + -11.406185150146484 + ], + [ + "▁Lead", + -11.406811714172363 + ], + [ + "▁cannabis", + -11.406867980957031 + ], + [ + "▁petition", + -11.407093048095703 + ], + [ + "uni", + -11.407195091247559 + ], + [ + "▁attempted", + -11.407360076904297 + ], + [ + "▁95", + -11.407466888427734 + ], + [ + "pos", + -11.407510757446289 + ], + [ + "emia", + -11.407585144042969 + ], + [ + "worm", + -11.40767765045166 + ], + [ + "▁colleges", + -11.407896041870117 + ], + [ + "▁collar", + -11.408143043518066 + ], + [ + "▁tale", + -11.408284187316895 + ], + [ + "▁governor", + -11.408452033996582 + ], + [ + "▁Corporate", + -11.408513069152832 + ], + [ + "bro", + -11.408720016479492 + ], + [ + "▁mesh", + -11.408869743347168 + ], + [ + "▁Alan", + -11.409112930297852 + ], + [ + "▁receives", + -11.409153938293457 + ], + [ + "▁trademark", + -11.409173011779785 + ], + [ + "start", + -11.409317016601562 + ], + [ + "▁charts", + -11.409380912780762 + ], + [ + "▁granite", + -11.409591674804688 + ], + [ + "▁Utah", + -11.409737586975098 + ], + [ + "▁3)", + -11.410056114196777 + ], + [ + "▁donate", + -11.410181999206543 + ], + [ + "dimensional", + -11.41028881072998 + ], + [ + "▁debris", + -11.410491943359375 + ], + [ + "▁Edge", + -11.41063404083252 + ], + [ + "▁decreased", + -11.41098403930664 + ], + [ + "▁conducting", + -11.411160469055176 + ], + [ + "▁Sar", + -11.41130542755127 + ], + [ + "▁$50", + -11.411367416381836 + ], + [ + "▁Francis", + -11.411382675170898 + ], + [ + "▁nearest", + -11.411510467529297 + ], + [ + "▁grades", + -11.41162109375 + ], + [ + "kes", + -11.411704063415527 + ], + [ + "▁adjustment", + -11.412038803100586 + ], + [ + "▁Jun", + -11.412343978881836 + ], + [ + "AND", + -11.412447929382324 + ], + [ + "▁GM", + -11.412468910217285 + ], + [ + "▁Met", + -11.41252613067627 + ], + [ + "driven", + -11.412572860717773 + ], + [ + "▁Imagine", + -11.4127197265625 + ], + [ + "▁Defense", + -11.412872314453125 + ], + [ + "▁1989", + -11.413012504577637 + ], + [ + "▁Template", + -11.413036346435547 + ], + [ + "aire", + -11.41312313079834 + ], + [ + "▁screw", + -11.41318416595459 + ], + [ + "▁snacks", + -11.413269996643066 + ], + [ + "have", + -11.413463592529297 + ], + [ + "▁violent", + -11.413735389709473 + ], + [ + "bor", + -11.413912773132324 + ], + [ + "▁booked", + -11.413968086242676 + ], + [ + "▁2019,", + -11.414032936096191 + ], + [ + "Our", + -11.414141654968262 + ], + [ + "ept", + -11.414525032043457 + ], + [ + "▁AB", + -11.414676666259766 + ], + [ + "è", + -11.414689064025879 + ], + [ + "▁withdrawal", + -11.41472053527832 + ], + [ + "...\"", + -11.414877891540527 + ], + [ + "▁citizen", + -11.414973258972168 + ], + [ + "▁throwing", + -11.415072441101074 + ], + [ + "▁Users", + -11.41524887084961 + ], + [ + "▁Blood", + -11.415277481079102 + ], + [ + "▁worthy", + -11.415387153625488 + ], + [ + "▁viagra", + -11.415409088134766 + ], + [ + "▁discretion", + -11.415696144104004 + ], + [ + "jan", + -11.415863990783691 + ], + [ + "cing", + -11.416001319885254 + ], + [ + "▁episodes", + -11.416094779968262 + ], + [ + "▁boring", + -11.416258811950684 + ], + [ + "▁Gray", + -11.41629409790039 + ], + [ + "▁Sin", + -11.416357040405273 + ], + [ + "▁Geo", + -11.416423797607422 + ], + [ + "cess", + -11.416424751281738 + ], + [ + "▁gluten", + -11.416475296020508 + ], + [ + "▁Luke", + -11.416703224182129 + ], + [ + "▁Dur", + -11.416790962219238 + ], + [ + "▁enemies", + -11.416803359985352 + ], + [ + "▁proportion", + -11.417132377624512 + ], + [ + "▁contacts", + -11.417417526245117 + ], + [ + "▁hop", + -11.417421340942383 + ], + [ + "▁arguments", + -11.417561531066895 + ], + [ + "▁patience", + -11.41761589050293 + ], + [ + "▁careers", + -11.417622566223145 + ], + [ + "▁underground", + -11.417738914489746 + ], + [ + "chu", + -11.417829513549805 + ], + [ + "▁Glen", + -11.417990684509277 + ], + [ + "▁scam", + -11.418349266052246 + ], + [ + "▁Hopefully", + -11.418865203857422 + ], + [ + "▁Chrome", + -11.41891098022461 + ], + [ + "rite", + -11.418912887573242 + ], + [ + "▁Player", + -11.418998718261719 + ], + [ + "▁confusion", + -11.41903018951416 + ], + [ + "▁classified", + -11.419711112976074 + ], + [ + "▁eager", + -11.419899940490723 + ], + [ + "▁Bath", + -11.419978141784668 + ], + [ + "▁onions", + -11.420132637023926 + ], + [ + "▁Something", + -11.42017936706543 + ], + [ + "▁Ridge", + -11.4203462600708 + ], + [ + "▁litigation", + -11.420506477355957 + ], + [ + "▁reasonably", + -11.420977592468262 + ], + [ + "That", + -11.421130180358887 + ], + [ + "▁triple", + -11.421330451965332 + ], + [ + "▁mall", + -11.421619415283203 + ], + [ + "▁Kal", + -11.421774864196777 + ], + [ + "plo", + -11.421969413757324 + ], + [ + "▁Grace", + -11.422050476074219 + ], + [ + "▁footage", + -11.422104835510254 + ], + [ + "▁twelve", + -11.422183990478516 + ], + [ + "▁Guard", + -11.422266006469727 + ], + [ + "!).", + -11.422298431396484 + ], + [ + "▁Dev", + -11.422369956970215 + ], + [ + "▁SQL", + -11.42251205444336 + ], + [ + "▁Includes", + -11.422698020935059 + ], + [ + "walk", + -11.422718048095703 + ], + [ + "IVE", + -11.422945022583008 + ], + [ + "▁permits", + -11.422961235046387 + ], + [ + "▁Entertainment", + -11.423203468322754 + ], + [ + "▁Text", + -11.423267364501953 + ], + [ + "▁Wil", + -11.4233980178833 + ], + [ + "▁conscious", + -11.423480987548828 + ], + [ + "shirt", + -11.423537254333496 + ], + [ + "▁binary", + -11.42357063293457 + ], + [ + "▁puzzle", + -11.423877716064453 + ], + [ + "▁Fill", + -11.423882484436035 + ], + [ + "ians", + -11.424086570739746 + ], + [ + "▁float", + -11.424399375915527 + ], + [ + "Tech", + -11.424561500549316 + ], + [ + "▁governance", + -11.425244331359863 + ], + [ + "show", + -11.425281524658203 + ], + [ + "Car", + -11.425472259521484 + ], + [ + "▁homemade", + -11.425620079040527 + ], + [ + "▁peers", + -11.425664901733398 + ], + [ + "▁synthetic", + -11.426063537597656 + ], + [ + "▁couples", + -11.426151275634766 + ], + [ + "▁coupled", + -11.42617416381836 + ], + [ + "▁pork", + -11.426203727722168 + ], + [ + "▁Tickets", + -11.426655769348145 + ], + [ + "▁(5", + -11.42704963684082 + ], + [ + "referring", + -11.427241325378418 + ], + [ + "▁Die", + -11.427309036254883 + ], + [ + "On", + -11.427440643310547 + ], + [ + "▁supervisor", + -11.427444458007812 + ], + [ + "▁promising", + -11.42750072479248 + ], + [ + "▁Swiss", + -11.427576065063477 + ], + [ + "▁villa", + -11.427623748779297 + ], + [ + "▁cooler", + -11.427811622619629 + ], + [ + "▁paths", + -11.427906036376953 + ], + [ + "▁outline", + -11.428138732910156 + ], + [ + "▁Song", + -11.428308486938477 + ], + [ + "▁bicycle", + -11.428451538085938 + ], + [ + "▁Tool", + -11.42853832244873 + ], + [ + "▁assure", + -11.428542137145996 + ], + [ + "▁organ", + -11.428635597229004 + ], + [ + "▁CL", + -11.428799629211426 + ], + [ + "▁$20", + -11.428810119628906 + ], + [ + "ically", + -11.428834915161133 + ], + [ + "/8", + -11.429032325744629 + ], + [ + "▁threshold", + -11.429080963134766 + ], + [ + "zz", + -11.42938232421875 + ], + [ + "▁tricks", + -11.42956256866455 + ], + [ + "sum", + -11.429600715637207 + ], + [ + "▁Ly", + -11.429606437683105 + ], + [ + "▁Voice", + -11.429692268371582 + ], + [ + "▁62", + -11.429693222045898 + ], + [ + "▁indicator", + -11.429823875427246 + ], + [ + "weight", + -11.429859161376953 + ], + [ + "▁accepting", + -11.429866790771484 + ], + [ + "▁SH", + -11.4299955368042 + ], + [ + "▁Switzerland", + -11.430215835571289 + ], + [ + "▁gauge", + -11.430319786071777 + ], + [ + "AB", + -11.4304838180542 + ], + [ + "▁adorable", + -11.430526733398438 + ], + [ + "UT", + -11.430747985839844 + ], + [ + "▁13,", + -11.43084716796875 + ], + [ + "▁Match", + -11.430901527404785 + ], + [ + "▁Summit", + -11.431150436401367 + ], + [ + "ress", + -11.431647300720215 + ], + [ + "▁prestigious", + -11.43168830871582 + ], + [ + "ffer", + -11.431740760803223 + ], + [ + "building", + -11.431903839111328 + ], + [ + "▁transformed", + -11.43191909790039 + ], + [ + "▁welcomed", + -11.432010650634766 + ], + [ + "▁stimulate", + -11.432360649108887 + ], + [ + "dian", + -11.432415008544922 + ], + [ + "▁meta", + -11.432470321655273 + ], + [ + "bing", + -11.432862281799316 + ], + [ + "▁Leadership", + -11.432954788208008 + ], + [ + "▁Tam", + -11.43299388885498 + ], + [ + "▁53", + -11.433006286621094 + ], + [ + "▁RV", + -11.433100700378418 + ], + [ + "▁executed", + -11.433316230773926 + ], + [ + "▁combining", + -11.433425903320312 + ], + [ + "▁angry", + -11.433481216430664 + ], + [ + "▁(18", + -11.433911323547363 + ], + [ + "▁SS", + -11.433939933776855 + ], + [ + "▁ES", + -11.434537887573242 + ], + [ + "▁troops", + -11.434961318969727 + ], + [ + "-17", + -11.435152053833008 + ], + [ + "▁acute", + -11.435297012329102 + ], + [ + "▁NYC", + -11.435454368591309 + ], + [ + "LM", + -11.43558406829834 + ], + [ + "▁Universal", + -11.435647010803223 + ], + [ + "▁slim", + -11.435773849487305 + ], + [ + "▁bits", + -11.435850143432617 + ], + [ + "▁Bit", + -11.435998916625977 + ], + [ + "▁Palace", + -11.436382293701172 + ], + [ + "▁Horse", + -11.436972618103027 + ], + [ + "▁Grey", + -11.437082290649414 + ], + [ + "▁router", + -11.43710708618164 + ], + [ + "▁gonna", + -11.437176704406738 + ], + [ + "▁forming", + -11.437223434448242 + ], + [ + "▁decoration", + -11.437225341796875 + ], + [ + "▁barriers", + -11.437249183654785 + ], + [ + "н", + -11.437305450439453 + ], + [ + "▁WITH", + -11.437512397766113 + ], + [ + "▁07", + -11.437562942504883 + ], + [ + "▁sixth", + -11.437775611877441 + ], + [ + "▁printable", + -11.437801361083984 + ], + [ + "▁tray", + -11.438066482543945 + ], + [ + "▁Technologies", + -11.438200950622559 + ], + [ + "zel", + -11.438333511352539 + ], + [ + "▁Schools", + -11.438362121582031 + ], + [ + "▁resolved", + -11.438385009765625 + ], + [ + "▁ingredient", + -11.43890380859375 + ], + [ + "▁Track", + -11.439074516296387 + ], + [ + "ines", + -11.439412117004395 + ], + [ + "got", + -11.439537048339844 + ], + [ + "▁suggestion", + -11.439779281616211 + ], + [ + "▁Philip", + -11.439903259277344 + ], + [ + "▁prizes", + -11.439910888671875 + ], + [ + "▁archive", + -11.439931869506836 + ], + [ + "dam", + -11.440276145935059 + ], + [ + "▁nap", + -11.44033432006836 + ], + [ + "▁upset", + -11.440363883972168 + ], + [ + "▁tomato", + -11.440398216247559 + ], + [ + "▁Notice", + -11.44041633605957 + ], + [ + "ched", + -11.440526008605957 + ], + [ + "▁reactions", + -11.440569877624512 + ], + [ + "pu", + -11.440811157226562 + ], + [ + "▁kidney", + -11.440864562988281 + ], + [ + "liter", + -11.440885543823242 + ], + [ + "group", + -11.440923690795898 + ], + [ + "▁donated", + -11.441079139709473 + ], + [ + "▁EN", + -11.441147804260254 + ], + [ + "▁24/7", + -11.441264152526855 + ], + [ + "commerce", + -11.441364288330078 + ], + [ + "▁Ak", + -11.4415922164917 + ], + [ + "▁Ber", + -11.441610336303711 + ], + [ + "▁Kenya", + -11.441719055175781 + ], + [ + "▁Charlotte", + -11.442140579223633 + ], + [ + "kel", + -11.442671775817871 + ], + [ + "▁decorated", + -11.442859649658203 + ], + [ + "pack", + -11.44289779663086 + ], + [ + "▁CE", + -11.443077087402344 + ], + [ + "▁tongue", + -11.444207191467285 + ], + [ + "▁HA", + -11.444263458251953 + ], + [ + "▁Gary", + -11.444375991821289 + ], + [ + "▁hint", + -11.444526672363281 + ], + [ + "member", + -11.444784164428711 + ], + [ + "▁isolated", + -11.444811820983887 + ], + [ + "ced", + -11.445046424865723 + ], + [ + "his", + -11.445051193237305 + ], + [ + "ل", + -11.445089340209961 + ], + [ + "▁rejected", + -11.445096969604492 + ], + [ + "▁mainstream", + -11.445487976074219 + ], + [ + "▁minerals", + -11.44550895690918 + ], + [ + "▁Extra", + -11.445547103881836 + ], + [ + "jun", + -11.445596694946289 + ], + [ + "▁ju", + -11.446009635925293 + ], + [ + "▁structured", + -11.446114540100098 + ], + [ + "▁03", + -11.446131706237793 + ], + [ + "▁Beyond", + -11.446236610412598 + ], + [ + "▁restored", + -11.446236610412598 + ], + [ + "▁Client", + -11.446237564086914 + ], + [ + "▁graduates", + -11.446383476257324 + ], + [ + "stan", + -11.446490287780762 + ], + [ + "▁vector", + -11.446557998657227 + ], + [ + "▁Native", + -11.446637153625488 + ], + [ + "▁armed", + -11.446710586547852 + ], + [ + "uma", + -11.446805953979492 + ], + [ + "▁sweat", + -11.446961402893066 + ], + [ + "▁dying", + -11.447161674499512 + ], + [ + "▁friendship", + -11.447199821472168 + ], + [ + "▁Raj", + -11.447613716125488 + ], + [ + "▁Hawaii", + -11.447747230529785 + ], + [ + "UD", + -11.447842597961426 + ], + [ + "▁suppose", + -11.447895050048828 + ], + [ + "▁spine", + -11.448041915893555 + ], + [ + "▁wardrobe", + -11.448314666748047 + ], + [ + "▁glue", + -11.44853401184082 + ], + [ + "▁Thai", + -11.448922157287598 + ], + [ + "▁stays", + -11.449361801147461 + ], + [ + "▁pumpkin", + -11.449490547180176 + ], + [ + "▁retro", + -11.449801445007324 + ], + [ + "▁theoretical", + -11.450023651123047 + ], + [ + "▁corners", + -11.450300216674805 + ], + [ + "▁Cheap", + -11.450353622436523 + ], + [ + "▁sunny", + -11.450410842895508 + ], + [ + "▁CP", + -11.450690269470215 + ], + [ + "▁regarded", + -11.450762748718262 + ], + [ + "▁Seven", + -11.450987815856934 + ], + [ + "▁suicide", + -11.451111793518066 + ], + [ + "▁Gra", + -11.451216697692871 + ], + [ + "lian", + -11.451432228088379 + ], + [ + "▁font", + -11.451534271240234 + ], + [ + "▁Nevertheless", + -11.451620101928711 + ], + [ + "ND", + -11.451831817626953 + ], + [ + "ova", + -11.451955795288086 + ], + [ + "▁wholesale", + -11.45202922821045 + ], + [ + "▁Actually", + -11.452286720275879 + ], + [ + "▁aggregate", + -11.452354431152344 + ], + [ + "▁politicians", + -11.452404975891113 + ], + [ + "!!!!", + -11.452449798583984 + ], + [ + "▁Adobe", + -11.452497482299805 + ], + [ + "▁reservation", + -11.452582359313965 + ], + [ + "▁cone", + -11.452651023864746 + ], + [ + "▁globally", + -11.452857971191406 + ], + [ + "▁favorites", + -11.452860832214355 + ], + [ + "▁welfare", + -11.45302963256836 + ], + [ + "м", + -11.45332145690918 + ], + [ + "▁fare", + -11.453530311584473 + ], + [ + "▁dressed", + -11.453940391540527 + ], + [ + "▁3.5", + -11.453944206237793 + ], + [ + "▁Designed", + -11.454201698303223 + ], + [ + "▁Rental", + -11.454373359680176 + ], + [ + "▁accordingly", + -11.454450607299805 + ], + [ + "▁Jose", + -11.45453929901123 + ], + [ + "▁creatures", + -11.454627990722656 + ], + [ + "▁dresses", + -11.454673767089844 + ], + [ + "▁presidential", + -11.454700469970703 + ], + [ + "▁Sep", + -11.454910278320312 + ], + [ + "▁Cold", + -11.455039024353027 + ], + [ + "▁30,", + -11.45517635345459 + ], + [ + "▁organizing", + -11.455211639404297 + ], + [ + "▁relaxation", + -11.455316543579102 + ], + [ + "▁marble", + -11.455430030822754 + ], + [ + "▁intensive", + -11.455476760864258 + ], + [ + "▁democracy", + -11.455491065979004 + ], + [ + "▁inexpensive", + -11.455696105957031 + ], + [ + "▁complimentary", + -11.455698013305664 + ], + [ + "▁heater", + -11.455713272094727 + ], + [ + "▁connectivity", + -11.455809593200684 + ], + [ + "erson", + -11.45600414276123 + ], + [ + "acy", + -11.456060409545898 + ], + [ + "▁10,000", + -11.456072807312012 + ], + [ + "▁Registration", + -11.45640754699707 + ], + [ + "▁Crystal", + -11.456928253173828 + ], + [ + "trans", + -11.457141876220703 + ], + [ + "▁squad", + -11.457175254821777 + ], + [ + "▁advisor", + -11.457256317138672 + ], + [ + "▁graduation", + -11.457459449768066 + ], + [ + "▁viewers", + -11.45748233795166 + ], + [ + "▁handed", + -11.457528114318848 + ], + [ + "love", + -11.458059310913086 + ], + [ + "ike", + -11.45813274383545 + ], + [ + "▁Eli", + -11.45842170715332 + ], + [ + "▁conferences", + -11.458511352539062 + ], + [ + "▁voices", + -11.458624839782715 + ], + [ + "▁Hunter", + -11.458775520324707 + ], + [ + "▁assumed", + -11.458993911743164 + ], + [ + "▁dramatically", + -11.459000587463379 + ], + [ + "▁propose", + -11.459039688110352 + ], + [ + "wel", + -11.459137916564941 + ], + [ + "▁Rod", + -11.459153175354004 + ], + [ + "▁grows", + -11.45927619934082 + ], + [ + "▁wheat", + -11.459379196166992 + ], + [ + "▁Write", + -11.45941162109375 + ], + [ + "▁independently", + -11.45946979522705 + ], + [ + "ounce", + -11.459614753723145 + ], + [ + "▁courtesy", + -11.460047721862793 + ], + [ + "▁institute", + -11.46020793914795 + ], + [ + "▁steering", + -11.460416793823242 + ], + [ + "▁farming", + -11.460660934448242 + ], + [ + "▁dropping", + -11.46072006225586 + ], + [ + "▁transparency", + -11.46085262298584 + ], + [ + "▁Workshop", + -11.461145401000977 + ], + [ + "▁Andy", + -11.461206436157227 + ], + [ + "cost", + -11.461288452148438 + ], + [ + "▁brass", + -11.461336135864258 + ], + [ + "▁Lan", + -11.461607933044434 + ], + [ + "▁flavour", + -11.461631774902344 + ], + [ + "gri", + -11.461791038513184 + ], + [ + "▁defence", + -11.4618558883667 + ], + [ + "▁dairy", + -11.462082862854004 + ], + [ + "zu", + -11.462355613708496 + ], + [ + "▁DA", + -11.462850570678711 + ], + [ + "▁Ger", + -11.463102340698242 + ], + [ + "eller", + -11.463278770446777 + ], + [ + "lang", + -11.463285446166992 + ], + [ + "▁Bond", + -11.463299751281738 + ], + [ + "▁silent", + -11.463301658630371 + ], + [ + "▁Secret", + -11.463348388671875 + ], + [ + "rac", + -11.46346378326416 + ], + [ + "▁abandoned", + -11.46364974975586 + ], + [ + "▁BMW", + -11.46374225616455 + ], + [ + "▁Fat", + -11.463809967041016 + ], + [ + "▁Question", + -11.463812828063965 + ], + [ + "▁Published", + -11.463825225830078 + ], + [ + "▁Res", + -11.463908195495605 + ], + [ + "▁cycling", + -11.463909149169922 + ], + [ + "yer", + -11.464096069335938 + ], + [ + "▁evident", + -11.464119911193848 + ], + [ + "▁syndrome", + -11.464122772216797 + ], + [ + "▁Years", + -11.464247703552246 + ], + [ + "▁Fortunately", + -11.464296340942383 + ], + [ + "▁broader", + -11.464459419250488 + ], + [ + "▁attendees", + -11.464491844177246 + ], + [ + "▁Twin", + -11.464888572692871 + ], + [ + "▁ports", + -11.465100288391113 + ], + [ + "▁9,", + -11.465568542480469 + ], + [ + "▁proceedings", + -11.465666770935059 + ], + [ + "wind", + -11.46572208404541 + ], + [ + "▁Blu", + -11.465806007385254 + ], + [ + "grad", + -11.465850830078125 + ], + [ + "▁Coloring", + -11.466096878051758 + ], + [ + "▁58", + -11.466104507446289 + ], + [ + "live", + -11.466170310974121 + ], + [ + "ways", + -11.466456413269043 + ], + [ + "▁lined", + -11.467029571533203 + ], + [ + "▁Zone", + -11.467042922973633 + ], + [ + "▁occupation", + -11.467207908630371 + ], + [ + "▁Clinical", + -11.467217445373535 + ], + [ + "▁smoothly", + -11.467253684997559 + ], + [ + "▁$8", + -11.467351913452148 + ], + [ + "▁Purchase", + -11.467415809631348 + ], + [ + "▁Gene", + -11.46742057800293 + ], + [ + "▁mad", + -11.467717170715332 + ], + [ + "▁freely", + -11.4678316116333 + ], + [ + "▁placeholder", + -11.46790599822998 + ], + [ + "▁harvest", + -11.467911720275879 + ], + [ + "▁Bluetooth", + -11.468072891235352 + ], + [ + "▁sunset", + -11.468100547790527 + ], + [ + "▁renovation", + -11.468183517456055 + ], + [ + "▁Sleep", + -11.468376159667969 + ], + [ + "▁gig", + -11.468488693237305 + ], + [ + "udi", + -11.468852996826172 + ], + [ + "▁lawsuit", + -11.468953132629395 + ], + [ + "▁Release", + -11.469161987304688 + ], + [ + "▁30%", + -11.4691743850708 + ], + [ + "▁surf", + -11.46939754486084 + ], + [ + "▁coil", + -11.469884872436523 + ], + [ + "▁offset", + -11.470178604125977 + ], + [ + "▁generator", + -11.470343589782715 + ], + [ + "DL", + -11.470512390136719 + ], + [ + "▁underneath", + -11.470637321472168 + ], + [ + "▁kingdom", + -11.470718383789062 + ], + [ + "▁hungry", + -11.470813751220703 + ], + [ + "▁Fin", + -11.471095085144043 + ], + [ + "▁Bas", + -11.47115421295166 + ], + [ + "▁Hamilton", + -11.471199989318848 + ], + [ + "▁steal", + -11.471572875976562 + ], + [ + "▁institutional", + -11.471627235412598 + ], + [ + "▁beta", + -11.471768379211426 + ], + [ + "▁vessels", + -11.472007751464844 + ], + [ + "▁chairman", + -11.472070693969727 + ], + [ + "ancy", + -11.472150802612305 + ], + [ + "▁poem", + -11.472318649291992 + ], + [ + "/10", + -11.472442626953125 + ], + [ + "▁workflow", + -11.472442626953125 + ], + [ + "▁Starting", + -11.472468376159668 + ], + [ + "cca", + -11.472511291503906 + ], + [ + "▁folk", + -11.472589492797852 + ], + [ + "▁organised", + -11.472652435302734 + ], + [ + "▁hills", + -11.473184585571289 + ], + [ + "▁Fr", + -11.473306655883789 + ], + [ + "▁slice", + -11.47333812713623 + ], + [ + "▁cu", + -11.47437858581543 + ], + [ + "block", + -11.474385261535645 + ], + [ + "▁ribbon", + -11.474388122558594 + ], + [ + "▁arrow", + -11.474435806274414 + ], + [ + "▁//", + -11.474629402160645 + ], + [ + "host", + -11.474802017211914 + ], + [ + "▁Fred", + -11.47480297088623 + ], + [ + "▁Congratulations", + -11.474874496459961 + ], + [ + "▁Dining", + -11.474885940551758 + ], + [ + "▁Ukraine", + -11.475010871887207 + ], + [ + "-14", + -11.475021362304688 + ], + [ + "about", + -11.475051879882812 + ], + [ + "▁vanilla", + -11.475071907043457 + ], + [ + "▁jurisdiction", + -11.475204467773438 + ], + [ + "minded", + -11.475247383117676 + ], + [ + "▁flows", + -11.47546672821045 + ], + [ + "▁baked", + -11.475841522216797 + ], + [ + "▁urge", + -11.475966453552246 + ], + [ + "▁15,", + -11.47610855102539 + ], + [ + "▁loyalty", + -11.476205825805664 + ], + [ + "▁Girls", + -11.476334571838379 + ], + [ + "▁profitable", + -11.47640609741211 + ], + [ + "▁inflammation", + -11.47641372680664 + ], + [ + "▁Hay", + -11.476426124572754 + ], + [ + "▁epic", + -11.476530075073242 + ], + [ + "▁bathrooms", + -11.476540565490723 + ], + [ + "▁honored", + -11.476785659790039 + ], + [ + "▁bankruptcy", + -11.47697925567627 + ], + [ + "soft", + -11.477144241333008 + ], + [ + "▁manifest", + -11.477246284484863 + ], + [ + "▁exams", + -11.477433204650879 + ], + [ + "▁Package", + -11.477449417114258 + ], + [ + "▁Route", + -11.477460861206055 + ], + [ + "▁consciousness", + -11.477493286132812 + ], + [ + "▁thickness", + -11.477609634399414 + ], + [ + "▁ranks", + -11.47765064239502 + ], + [ + "▁tattoo", + -11.477741241455078 + ], + [ + "▁Environment", + -11.477948188781738 + ], + [ + "▁19,", + -11.478023529052734 + ], + [ + "▁61", + -11.478242874145508 + ], + [ + "▁Lisa", + -11.478401184082031 + ], + [ + "▁winds", + -11.478424072265625 + ], + [ + "▁legendary", + -11.478586196899414 + ], + [ + "▁inclusive", + -11.478646278381348 + ], + [ + "▁urgent", + -11.478779792785645 + ], + [ + "▁assignments", + -11.478886604309082 + ], + [ + "0.0", + -11.478924751281738 + ], + [ + "tile", + -11.479060173034668 + ], + [ + "▁bat", + -11.479172706604004 + ], + [ + "▁Images", + -11.479206085205078 + ], + [ + "rail", + -11.479238510131836 + ], + [ + "▁Albert", + -11.479426383972168 + ], + [ + "▁partnerships", + -11.479541778564453 + ], + [ + "▁mandatory", + -11.479598045349121 + ], + [ + "~", + -11.47962760925293 + ], + [ + "▁Choice", + -11.479808807373047 + ], + [ + "▁2009,", + -11.479940414428711 + ], + [ + "rov", + -11.480061531066895 + ], + [ + "vat", + -11.480175018310547 + ], + [ + "induced", + -11.480182647705078 + ], + [ + "▁Kin", + -11.480358123779297 + ], + [ + "▁Ry", + -11.480527877807617 + ], + [ + "▁magnet", + -11.481091499328613 + ], + [ + "▁Awesome", + -11.481125831604004 + ], + [ + "rav", + -11.48133659362793 + ], + [ + "▁pillow", + -11.48137092590332 + ], + [ + "▁sponsor", + -11.481613159179688 + ], + [ + "▁buzz", + -11.481679916381836 + ], + [ + "▁wool", + -11.48181438446045 + ], + [ + "mil", + -11.481842041015625 + ], + [ + "▁cozy", + -11.481942176818848 + ], + [ + "▁bugs", + -11.4819917678833 + ], + [ + "▁pros", + -11.482227325439453 + ], + [ + "position", + -11.482231140136719 + ], + [ + "▁faithful", + -11.4822359085083 + ], + [ + "▁thankful", + -11.482275009155273 + ], + [ + "▁Commissioner", + -11.482304573059082 + ], + [ + "▁professionally", + -11.48236083984375 + ], + [ + "▁GP", + -11.482402801513672 + ], + [ + "▁veterans", + -11.482427597045898 + ], + [ + "stage", + -11.48262882232666 + ], + [ + "▁besides", + -11.482780456542969 + ], + [ + "▁21,", + -11.482804298400879 + ], + [ + "▁populations", + -11.482887268066406 + ], + [ + "▁Brooklyn", + -11.482927322387695 + ], + [ + "clo", + -11.482959747314453 + ], + [ + "▁22,", + -11.482965469360352 + ], + [ + "▁99", + -11.482985496520996 + ], + [ + "▁Plans", + -11.483095169067383 + ], + [ + "▁detected", + -11.483197212219238 + ], + [ + "ule", + -11.483202934265137 + ], + [ + "leg", + -11.483236312866211 + ], + [ + "▁hammer", + -11.483333587646484 + ], + [ + "▁Rio", + -11.48360538482666 + ], + [ + "▁organizational", + -11.483624458312988 + ], + [ + "▁Harvard", + -11.483990669250488 + ], + [ + "▁boil", + -11.484007835388184 + ], + [ + "▁composite", + -11.484403610229492 + ], + [ + "▁Mis", + -11.484642028808594 + ], + [ + "▁districts", + -11.484763145446777 + ], + [ + "▁Record", + -11.484864234924316 + ], + [ + "▁adapted", + -11.48546314239502 + ], + [ + "▁Events", + -11.485477447509766 + ], + [ + "▁Maine", + -11.485520362854004 + ], + [ + "▁cho", + -11.485767364501953 + ], + [ + "▁peel", + -11.485767364501953 + ], + [ + "user", + -11.486336708068848 + ], + [ + "▁drawings", + -11.48651123046875 + ], + [ + "▁deaths", + -11.486671447753906 + ], + [ + "▁pencil", + -11.48684310913086 + ], + [ + "keeper", + -11.486903190612793 + ], + [ + "▁stolen", + -11.486973762512207 + ], + [ + "bid", + -11.48740291595459 + ], + [ + "FL", + -11.487601280212402 + ], + [ + "IF", + -11.487648963928223 + ], + [ + "mmer", + -11.487763404846191 + ], + [ + "▁14,", + -11.487909317016602 + ], + [ + "▁emerge", + -11.488125801086426 + ], + [ + "▁Specialist", + -11.488188743591309 + ], + [ + "▁tuned", + -11.488319396972656 + ], + [ + "▁Homes", + -11.488844871520996 + ], + [ + "▁Antonio", + -11.488916397094727 + ], + [ + "▁thumb", + -11.488931655883789 + ], + [ + "▁Commerce", + -11.488977432250977 + ], + [ + "▁optimize", + -11.489265441894531 + ], + [ + "GO", + -11.48947811126709 + ], + [ + "▁Costa", + -11.48952865600586 + ], + [ + "charge", + -11.489592552185059 + ], + [ + "▁headquarters", + -11.489609718322754 + ], + [ + "▁nano", + -11.489981651306152 + ], + [ + "▁24-", + -11.490245819091797 + ], + [ + "▁physics", + -11.490274429321289 + ], + [ + "▁Cer", + -11.490317344665527 + ], + [ + "▁legally", + -11.490438461303711 + ], + [ + "▁gang", + -11.490762710571289 + ], + [ + "▁Regardless", + -11.490873336791992 + ], + [ + "▁configured", + -11.490944862365723 + ], + [ + "▁emerged", + -11.491180419921875 + ], + [ + "▁subsequently", + -11.491239547729492 + ], + [ + "▁costume", + -11.491290092468262 + ], + [ + "kill", + -11.491483688354492 + ], + [ + "ander", + -11.491653442382812 + ], + [ + "▁thrilled", + -11.491719245910645 + ], + [ + "rise", + -11.491724967956543 + ], + [ + "▁notify", + -11.491774559020996 + ], + [ + "▁physicians", + -11.491774559020996 + ], + [ + "▁theft", + -11.491829872131348 + ], + [ + "▁ethnic", + -11.491894721984863 + ], + [ + "▁dense", + -11.492298126220703 + ], + [ + "▁introducing", + -11.492597579956055 + ], + [ + "▁57", + -11.492650985717773 + ], + [ + "▁ghost", + -11.492694854736328 + ], + [ + "▁Greater", + -11.492711067199707 + ], + [ + "▁targeting", + -11.493011474609375 + ], + [ + "▁applicant", + -11.493266105651855 + ], + [ + "▁Dam", + -11.493287086486816 + ], + [ + "door", + -11.493322372436523 + ], + [ + "▁Born", + -11.493328094482422 + ], + [ + "▁explaining", + -11.493428230285645 + ], + [ + "ELL", + -11.493471145629883 + ], + [ + "▁varying", + -11.493488311767578 + ], + [ + "pass", + -11.493754386901855 + ], + [ + "▁pressing", + -11.493805885314941 + ], + [ + "NY", + -11.493837356567383 + ], + [ + "▁Sheet", + -11.493945121765137 + ], + [ + "▁Pink", + -11.494192123413086 + ], + [ + "900", + -11.494218826293945 + ], + [ + "▁nerve", + -11.494283676147461 + ], + [ + "▁Br", + -11.494553565979004 + ], + [ + "▁MB", + -11.4945650100708 + ], + [ + "▁Vision", + -11.494643211364746 + ], + [ + "▁launching", + -11.494800567626953 + ], + [ + "url", + -11.494832038879395 + ], + [ + "▁Spin", + -11.495607376098633 + ], + [ + "▁Return", + -11.495684623718262 + ], + [ + "eli", + -11.495705604553223 + ], + [ + "resulted", + -11.495818138122559 + ], + [ + "▁Sk", + -11.495892524719238 + ], + [ + "▁2007.", + -11.496191024780273 + ], + [ + "▁basics", + -11.49621295928955 + ], + [ + "vid", + -11.496397972106934 + ], + [ + "enc", + -11.496628761291504 + ], + [ + "▁controlling", + -11.496744155883789 + ], + [ + "▁Tele", + -11.496904373168945 + ], + [ + "▁Howard", + -11.496932029724121 + ], + [ + "▁Schedule", + -11.497048377990723 + ], + [ + "▁RAM", + -11.497279167175293 + ], + [ + "▁buried", + -11.497442245483398 + ], + [ + "▁Senator", + -11.497639656066895 + ], + [ + "▁Display", + -11.497648239135742 + ], + [ + "NS", + -11.497803688049316 + ], + [ + "▁Dy", + -11.49796199798584 + ], + [ + "▁executives", + -11.498336791992188 + ], + [ + "▁cylinder", + -11.498353004455566 + ], + [ + "▁header", + -11.49871826171875 + ], + [ + "MM", + -11.498778343200684 + ], + [ + "▁assign", + -11.498818397521973 + ], + [ + "▁temp", + -11.498969078063965 + ], + [ + "▁static", + -11.499055862426758 + ], + [ + "▁captain", + -11.49908447265625 + ], + [ + "▁Tokyo", + -11.499220848083496 + ], + [ + "▁educated", + -11.499723434448242 + ], + [ + "▁practitioners", + -11.499808311462402 + ], + [ + "▁NI", + -11.499818801879883 + ], + [ + "▁Hub", + -11.499942779541016 + ], + [ + "▁sensitivity", + -11.500027656555176 + ], + [ + "▁node", + -11.50004768371582 + ], + [ + "NT", + -11.500160217285156 + ], + [ + "▁Walker", + -11.500296592712402 + ], + [ + "▁scenarios", + -11.5003080368042 + ], + [ + "к", + -11.500368118286133 + ], + [ + "ATE", + -11.500415802001953 + ], + [ + "▁cinema", + -11.500480651855469 + ], + [ + "▁mice", + -11.500587463378906 + ], + [ + "▁safer", + -11.500632286071777 + ], + [ + "▁evolved", + -11.500951766967773 + ], + [ + "▁Especially", + -11.500977516174316 + ], + [ + "lite", + -11.501089096069336 + ], + [ + "▁Almost", + -11.501113891601562 + ], + [ + "▁cl", + -11.501136779785156 + ], + [ + "▁mud", + -11.501224517822266 + ], + [ + "▁silk", + -11.501461029052734 + ], + [ + "▁cor", + -11.502259254455566 + ], + [ + "▁waters", + -11.502259254455566 + ], + [ + "Col", + -11.502299308776855 + ], + [ + "▁Flat", + -11.502347946166992 + ], + [ + "▁Touch", + -11.50242805480957 + ], + [ + "▁1988", + -11.502460479736328 + ], + [ + "▁pc", + -11.502518653869629 + ], + [ + "▁pose", + -11.502584457397461 + ], + [ + "▁Bruce", + -11.502799034118652 + ], + [ + "▁newer", + -11.502864837646484 + ], + [ + "ech", + -11.502898216247559 + ], + [ + "EF", + -11.502909660339355 + ], + [ + "▁tastes", + -11.503019332885742 + ], + [ + "PR", + -11.503195762634277 + ], + [ + "▁infections", + -11.503328323364258 + ], + [ + "▁Ground", + -11.503352165222168 + ], + [ + "▁09", + -11.503783226013184 + ], + [ + "▁pursuit", + -11.503827095031738 + ], + [ + "▁cab", + -11.503902435302734 + ], + [ + "AF", + -11.504091262817383 + ], + [ + "▁Communication", + -11.504185676574707 + ], + [ + "▁Josh", + -11.504595756530762 + ], + [ + "GS", + -11.504663467407227 + ], + [ + "▁loyal", + -11.504781723022461 + ], + [ + "▁orientation", + -11.504846572875977 + ], + [ + "FF", + -11.505291938781738 + ], + [ + "▁favour", + -11.50538444519043 + ], + [ + "▁hospitality", + -11.505523681640625 + ], + [ + "▁poet", + -11.505539894104004 + ], + [ + "▁Fri", + -11.50554370880127 + ], + [ + "▁Soviet", + -11.505768775939941 + ], + [ + "sign", + -11.505813598632812 + ], + [ + "city", + -11.506030082702637 + ], + [ + "tting", + -11.506061553955078 + ], + [ + "▁timber", + -11.506067276000977 + ], + [ + "▁qu", + -11.50617790222168 + ], + [ + "DD", + -11.50622844696045 + ], + [ + "▁backpack", + -11.506303787231445 + ], + [ + "▁Otherwise", + -11.506361961364746 + ], + [ + "▁Apart", + -11.506390571594238 + ], + [ + "She", + -11.506394386291504 + ], + [ + "▁Lang", + -11.50646686553955 + ], + [ + "▁respected", + -11.506675720214844 + ], + [ + "▁cheapest", + -11.5068941116333 + ], + [ + "▁FDA", + -11.506965637207031 + ], + [ + "▁rewarding", + -11.506990432739258 + ], + [ + "▁Alt", + -11.507113456726074 + ], + [ + "▁timeline", + -11.507359504699707 + ], + [ + "▁sooner", + -11.507577896118164 + ], + [ + "▁dryer", + -11.507850646972656 + ], + [ + "▁railway", + -11.508001327514648 + ], + [ + "▁wings", + -11.508007049560547 + ], + [ + "lab", + -11.508061408996582 + ], + [ + "▁Lots", + -11.508074760437012 + ], + [ + "▁bikes", + -11.508204460144043 + ], + [ + "▁sake", + -11.508270263671875 + ], + [ + "▁6-", + -11.508312225341797 + ], + [ + "▁mentor", + -11.508338928222656 + ], + [ + "click", + -11.508520126342773 + ], + [ + "amine", + -11.508610725402832 + ], + [ + "▁cons", + -11.509017944335938 + ], + [ + "▁Yellow", + -11.509307861328125 + ], + [ + "▁SM", + -11.509337425231934 + ], + [ + "vil", + -11.509344100952148 + ], + [ + "oke", + -11.50947380065918 + ], + [ + "gging", + -11.50948715209961 + ], + [ + "▁Beauty", + -11.50981330871582 + ], + [ + "▁pharmaceutical", + -11.509840965270996 + ], + [ + "▁Hart", + -11.509845733642578 + ], + [ + "▁Window", + -11.51004409790039 + ], + [ + "sting", + -11.510138511657715 + ], + [ + "▁boiler", + -11.510149955749512 + ], + [ + "▁breathe", + -11.510204315185547 + ], + [ + "data", + -11.510588645935059 + ], + [ + ":15", + -11.5106201171875 + ], + [ + "▁Justin", + -11.510748863220215 + ], + [ + "▁Risk", + -11.510891914367676 + ], + [ + "▁Rh", + -11.5109281539917 + ], + [ + "▁insulation", + -11.510941505432129 + ], + [ + "▁Finding", + -11.510994911193848 + ], + [ + "Up", + -11.511285781860352 + ], + [ + "▁talents", + -11.511333465576172 + ], + [ + "▁fu", + -11.511359214782715 + ], + [ + "dog", + -11.511445045471191 + ], + [ + "▁Canon", + -11.511488914489746 + ], + [ + "AGE", + -11.51157283782959 + ], + [ + "▁pioneer", + -11.511907577514648 + ], + [ + "▁uploaded", + -11.51192569732666 + ], + [ + "▁magazines", + -11.512035369873047 + ], + [ + "▁alternate", + -11.512083053588867 + ], + [ + "web", + -11.512161254882812 + ], + [ + "▁Fre", + -11.512299537658691 + ], + [ + "▁Cra", + -11.512372970581055 + ], + [ + "▁comparable", + -11.512417793273926 + ], + [ + "▁adjustments", + -11.512650489807129 + ], + [ + "▁occasional", + -11.512860298156738 + ], + [ + "mile", + -11.513008117675781 + ], + [ + "loc", + -11.513056755065918 + ], + [ + "makers", + -11.513153076171875 + ], + [ + "▁Chef", + -11.513248443603516 + ], + [ + "▁UC", + -11.513948440551758 + ], + [ + "operative", + -11.51396656036377 + ], + [ + "▁cocktail", + -11.514120101928711 + ], + [ + "▁jar", + -11.514196395874023 + ], + [ + "▁Independent", + -11.514366149902344 + ], + [ + "▁summit", + -11.514404296875 + ], + [ + "▁Amy", + -11.514439582824707 + ], + [ + "ONE", + -11.514496803283691 + ], + [ + "▁PT", + -11.5147066116333 + ], + [ + "(1)", + -11.514730453491211 + ], + [ + "▁vocal", + -11.514755249023438 + ], + [ + "▁mounting", + -11.51488208770752 + ], + [ + "▁Cleveland", + -11.514887809753418 + ], + [ + "▁Stadium", + -11.51488971710205 + ], + [ + "▁ecosystem", + -11.514927864074707 + ], + [ + "▁hardwood", + -11.514930725097656 + ], + [ + "▁ramp", + -11.515159606933594 + ], + [ + "▁tailor", + -11.51517105102539 + ], + [ + "▁warming", + -11.515220642089844 + ], + [ + "▁ye", + -11.515242576599121 + ], + [ + "map", + -11.515416145324707 + ], + [ + "▁lime", + -11.5154390335083 + ], + [ + "▁UP", + -11.515453338623047 + ], + [ + "mine", + -11.515966415405273 + ], + [ + "▁Reg", + -11.515971183776855 + ], + [ + "▁fundraising", + -11.516073226928711 + ], + [ + "▁examined", + -11.516678810119629 + ], + [ + "▁Graduate", + -11.516694068908691 + ], + [ + "bio", + -11.51695728302002 + ], + [ + "IX", + -11.517037391662598 + ], + [ + "boy", + -11.51705551147461 + ], + [ + "▁greet", + -11.517111778259277 + ], + [ + "▁CF", + -11.517280578613281 + ], + [ + "▁VI", + -11.517393112182617 + ], + [ + "▁cha", + -11.517463684082031 + ], + [ + "▁corruption", + -11.517494201660156 + ], + [ + "quin", + -11.517841339111328 + ], + [ + "▁vol", + -11.5178804397583 + ], + [ + "▁dissertation", + -11.517891883850098 + ], + [ + "▁insist", + -11.51793384552002 + ], + [ + "▁Laura", + -11.518595695495605 + ], + [ + "▁partially", + -11.51871395111084 + ], + [ + "▁Bla", + -11.518715858459473 + ], + [ + "▁appliance", + -11.51887321472168 + ], + [ + "▁comm", + -11.519013404846191 + ], + [ + "▁16,", + -11.519142150878906 + ], + [ + "▁scar", + -11.519145965576172 + ], + [ + "roid", + -11.519227981567383 + ], + [ + "mad", + -11.519332885742188 + ], + [ + "▁retention", + -11.519357681274414 + ], + [ + "▁pulse", + -11.519763946533203 + ], + [ + "▁perceived", + -11.519980430603027 + ], + [ + "▁negotiations", + -11.520063400268555 + ], + [ + "▁prescribed", + -11.520146369934082 + ], + [ + "▁survived", + -11.520233154296875 + ], + [ + "▁psychology", + -11.520369529724121 + ], + [ + "▁forums", + -11.520387649536133 + ], + [ + "▁browsing", + -11.520556449890137 + ], + [ + "▁Housing", + -11.520875930786133 + ], + [ + "▁Arabia", + -11.52099895477295 + ], + [ + "gam", + -11.521612167358398 + ], + [ + "▁Info", + -11.521614074707031 + ], + [ + "▁Ship", + -11.521632194519043 + ], + [ + "▁Directors", + -11.52168083190918 + ], + [ + "track", + -11.522071838378906 + ], + [ + "▁portrait", + -11.522212028503418 + ], + [ + "▁encourages", + -11.522265434265137 + ], + [ + "▁BY", + -11.522451400756836 + ], + [ + "▁membrane", + -11.522564888000488 + ], + [ + "cru", + -11.522642135620117 + ], + [ + "▁surroundings", + -11.522737503051758 + ], + [ + "▁Movie", + -11.523065567016602 + ], + [ + "▁counts", + -11.523133277893066 + ], + [ + "▁chemistry", + -11.523386001586914 + ], + [ + "▁Whit", + -11.52350902557373 + ], + [ + "▁Kam", + -11.523557662963867 + ], + [ + "nov", + -11.523612022399902 + ], + [ + "tier", + -11.52362060546875 + ], + [ + "▁strengths", + -11.523807525634766 + ], + [ + "▁guns", + -11.524072647094727 + ], + [ + "▁2008,", + -11.524190902709961 + ], + [ + "▁30-", + -11.524312973022461 + ], + [ + "▁Truck", + -11.524325370788574 + ], + [ + "▁volumes", + -11.524662017822266 + ], + [ + "▁Unless", + -11.524755477905273 + ], + [ + "▁courage", + -11.524889945983887 + ], + [ + "▁picnic", + -11.524935722351074 + ], + [ + "▁judges", + -11.525166511535645 + ], + [ + "▁trainer", + -11.525245666503906 + ], + [ + "▁uncomfortable", + -11.525443077087402 + ], + [ + "▁EM", + -11.52590274810791 + ], + [ + "▁Julie", + -11.526178359985352 + ], + [ + "▁Ky", + -11.526326179504395 + ], + [ + "▁sync", + -11.52652645111084 + ], + [ + "▁widespread", + -11.526684761047363 + ], + [ + "▁freelance", + -11.52688217163086 + ], + [ + "▁brake", + -11.526886940002441 + ], + [ + "▁lung", + -11.526973724365234 + ], + [ + "▁activate", + -11.52712345123291 + ], + [ + "▁bullet", + -11.527375221252441 + ], + [ + "9)", + -11.527554512023926 + ], + [ + "▁stairs", + -11.527563095092773 + ], + [ + "▁porch", + -11.527616500854492 + ], + [ + "▁intuitive", + -11.527634620666504 + ], + [ + "▁abundance", + -11.527637481689453 + ], + [ + "check", + -11.527698516845703 + ], + [ + "aga", + -11.527871131896973 + ], + [ + "▁remembered", + -11.528032302856445 + ], + [ + "HD", + -11.528057098388672 + ], + [ + "▁Clinic", + -11.528312683105469 + ], + [ + "▁Document", + -11.528335571289062 + ], + [ + "▁dynamics", + -11.528546333312988 + ], + [ + "▁literary", + -11.528585433959961 + ], + [ + "▁CB", + -11.52863597869873 + ], + [ + "▁(10", + -11.528724670410156 + ], + [ + "▁Cons", + -11.528767585754395 + ], + [ + "▁FI", + -11.528871536254883 + ], + [ + "WA", + -11.529006004333496 + ], + [ + "▁royal", + -11.52967357635498 + ], + [ + "▁bump", + -11.530170440673828 + ], + [ + "▁outlets", + -11.530171394348145 + ], + [ + "▁Mod", + -11.530202865600586 + ], + [ + "▁pairs", + -11.530261039733887 + ], + [ + "▁Jam", + -11.53028678894043 + ], + [ + "▁Polish", + -11.530537605285645 + ], + [ + "nam", + -11.530569076538086 + ], + [ + "ked", + -11.530587196350098 + ], + [ + "▁Weight", + -11.530977249145508 + ], + [ + "▁sketch", + -11.531237602233887 + ], + [ + "▁Vehicle", + -11.531257629394531 + ], + [ + "DM", + -11.531332015991211 + ], + [ + "▁leap", + -11.531514167785645 + ], + [ + "▁neat", + -11.531522750854492 + ], + [ + "▁achievements", + -11.531608581542969 + ], + [ + "▁envelope", + -11.531882286071777 + ], + [ + "tron", + -11.531954765319824 + ], + [ + "▁Therapy", + -11.532048225402832 + ], + [ + "will", + -11.532136917114258 + ], + [ + "▁architect", + -11.532339096069336 + ], + [ + "▁arising", + -11.532567977905273 + ], + [ + "▁complications", + -11.53272533416748 + ], + [ + "▁Oracle", + -11.532952308654785 + ], + [ + "▁rod", + -11.532963752746582 + ], + [ + "▁longest", + -11.533059120178223 + ], + [ + "▁Republicans", + -11.533123016357422 + ], + [ + "▁seminar", + -11.533132553100586 + ], + [ + "radi", + -11.533402442932129 + ], + [ + "▁Islam", + -11.533432006835938 + ], + [ + "RM", + -11.53366756439209 + ], + [ + "▁MT", + -11.533806800842285 + ], + [ + "▁strap", + -11.533854484558105 + ], + [ + "▁fixtures", + -11.534109115600586 + ], + [ + "▁Driver", + -11.534185409545898 + ], + [ + "▁lace", + -11.534358978271484 + ], + [ + "▁Partners", + -11.534547805786133 + ], + [ + "▁assessed", + -11.534730911254883 + ], + [ + "▁Poland", + -11.535032272338867 + ], + [ + "▁trains", + -11.535055160522461 + ], + [ + "▁sustain", + -11.535204887390137 + ], + [ + "▁marking", + -11.535210609436035 + ], + [ + "▁rig", + -11.535319328308105 + ], + [ + "▁Continue", + -11.535387992858887 + ], + [ + "▁Organic", + -11.535452842712402 + ], + [ + "▁Associate", + -11.5355224609375 + ], + [ + "▁Shin", + -11.53589153289795 + ], + [ + "▁enthusiasm", + -11.535904884338379 + ], + [ + "▁surveys", + -11.535958290100098 + ], + [ + "▁hood", + -11.5360689163208 + ], + [ + "▁positioned", + -11.536088943481445 + ], + [ + "▁Seat", + -11.536089897155762 + ], + [ + "▁lecture", + -11.536262512207031 + ], + [ + "turn", + -11.536295890808105 + ], + [ + "▁planting", + -11.536402702331543 + ], + [ + "▁promptly", + -11.536638259887695 + ], + [ + "eat", + -11.536688804626465 + ], + [ + "bag", + -11.536720275878906 + ], + [ + "▁batter", + -11.536870956420898 + ], + [ + "▁fought", + -11.536888122558594 + ], + [ + "MD", + -11.536921501159668 + ], + [ + "▁manuscript", + -11.537023544311523 + ], + [ + "▁GO", + -11.53707218170166 + ], + [ + "▁Orleans", + -11.537148475646973 + ], + [ + "▁acids", + -11.5372896194458 + ], + [ + "▁Aid", + -11.537470817565918 + ], + [ + "▁Netflix", + -11.537479400634766 + ], + [ + "▁59", + -11.53749942779541 + ], + [ + "▁lyrics", + -11.537572860717773 + ], + [ + "▁mysterious", + -11.53758716583252 + ], + [ + "▁Buck", + -11.538091659545898 + ], + [ + "ska", + -11.538124084472656 + ], + [ + "scape", + -11.538230895996094 + ], + [ + "▁jack", + -11.538291931152344 + ], + [ + "▁distinction", + -11.538573265075684 + ], + [ + "▁23,", + -11.538885116577148 + ], + [ + "▁Range", + -11.539016723632812 + ], + [ + "▁potato", + -11.539240837097168 + ], + [ + "pit", + -11.539371490478516 + ], + [ + "▁freeze", + -11.53941822052002 + ], + [ + "▁sellers", + -11.53945541381836 + ], + [ + "▁draws", + -11.539761543273926 + ], + [ + "▁composer", + -11.539984703063965 + ], + [ + "LU", + -11.54030990600586 + ], + [ + "cycl", + -11.540364265441895 + ], + [ + "▁GB", + -11.540461540222168 + ], + [ + "logist", + -11.540493965148926 + ], + [ + "▁attraction", + -11.540581703186035 + ], + [ + "▁killer", + -11.540858268737793 + ], + [ + "▁updating", + -11.541007995605469 + ], + [ + "HR", + -11.54102611541748 + ], + [ + "▁Architecture", + -11.541064262390137 + ], + [ + "▁BO", + -11.541064262390137 + ], + [ + "▁Designer", + -11.541217803955078 + ], + [ + "bat", + -11.541229248046875 + ], + [ + "▁fabrics", + -11.541383743286133 + ], + [ + "▁alignment", + -11.541690826416016 + ], + [ + "▁700", + -11.541837692260742 + ], + [ + "▁Hy", + -11.541894912719727 + ], + [ + "▁monetary", + -11.542197227478027 + ], + [ + "▁inviting", + -11.542375564575195 + ], + [ + "lly", + -11.542853355407715 + ], + [ + "▁teens", + -11.543218612670898 + ], + [ + "▁Opera", + -11.5432767868042 + ], + [ + "▁Jonathan", + -11.54338550567627 + ], + [ + "▁stupid", + -11.54338550567627 + ], + [ + "▁strictly", + -11.543461799621582 + ], + [ + "▁Switch", + -11.543493270874023 + ], + [ + "rig", + -11.543497085571289 + ], + [ + "bird", + -11.54354476928711 + ], + [ + "▁Afghanistan", + -11.543594360351562 + ], + [ + "▁101", + -11.543600082397461 + ], + [ + "▁lightly", + -11.543877601623535 + ], + [ + "▁deficit", + -11.543970108032227 + ], + [ + "▁Speaking", + -11.544089317321777 + ], + [ + "▁continent", + -11.544185638427734 + ], + [ + "▁Install", + -11.544241905212402 + ], + [ + "▁avoiding", + -11.54448127746582 + ], + [ + "kov", + -11.544652938842773 + ], + [ + "▁surprisingly", + -11.544702529907227 + ], + [ + "ILL", + -11.544819831848145 + ], + [ + "▁prayers", + -11.544901847839355 + ], + [ + "▁Poly", + -11.545005798339844 + ], + [ + "last", + -11.545090675354004 + ], + [ + "▁Generally", + -11.545127868652344 + ], + [ + "▁sisters", + -11.545310974121094 + ], + [ + "▁switching", + -11.545431137084961 + ], + [ + "▁HIV", + -11.54574966430664 + ], + [ + "▁lining", + -11.546083450317383 + ], + [ + "shaped", + -11.546339988708496 + ], + [ + "▁texts", + -11.546348571777344 + ], + [ + "▁Cruise", + -11.546393394470215 + ], + [ + "▁revenues", + -11.546483993530273 + ], + [ + "▁Picture", + -11.546504974365234 + ], + [ + "▁barrel", + -11.546716690063477 + ], + [ + "▁demographic", + -11.546810150146484 + ], + [ + "vision", + -11.546903610229492 + ], + [ + "▁villages", + -11.546916961669922 + ], + [ + "▁statistical", + -11.546931266784668 + ], + [ + "eck", + -11.546957969665527 + ], + [ + "▁Train", + -11.547224044799805 + ], + [ + "▁Helen", + -11.54731273651123 + ], + [ + "▁metres", + -11.547345161437988 + ], + [ + "▁Primary", + -11.54742431640625 + ], + [ + "▁horizontal", + -11.547640800476074 + ], + [ + "▁mum", + -11.547689437866211 + ], + [ + "▁clearance", + -11.547808647155762 + ], + [ + "▁spec", + -11.548065185546875 + ], + [ + "▁privilege", + -11.54819107055664 + ], + [ + "▁badly", + -11.548338890075684 + ], + [ + "blo", + -11.54847526550293 + ], + [ + "▁Cast", + -11.548479080200195 + ], + [ + "▁declined", + -11.5485258102417 + ], + [ + "Whenever", + -11.54881477355957 + ], + [ + "▁Dublin", + -11.548829078674316 + ], + [ + "▁sustained", + -11.548851013183594 + ], + [ + "HC", + -11.548933982849121 + ], + [ + "▁opponent", + -11.54898452758789 + ], + [ + "▁lender", + -11.549086570739746 + ], + [ + "▁Browse", + -11.549128532409668 + ], + [ + "▁Ready", + -11.549242973327637 + ], + [ + "▁leisure", + -11.549283027648926 + ], + [ + "▁Month", + -11.549342155456543 + ], + [ + "<", + -11.549640655517578 + ], + [ + "▁CPU", + -11.549996376037598 + ], + [ + "VA", + -11.550041198730469 + ], + [ + "▁competent", + -11.550341606140137 + ], + [ + "▁28,", + -11.550538063049316 + ], + [ + "vas", + -11.550572395324707 + ], + [ + "nik", + -11.550639152526855 + ], + [ + "▁Questions", + -11.550758361816406 + ], + [ + "kat", + -11.550950050354004 + ], + [ + "▁needing", + -11.550996780395508 + ], + [ + "▁consuming", + -11.551031112670898 + ], + [ + "▁Either", + -11.551090240478516 + ], + [ + "▁Lower", + -11.55114459991455 + ], + [ + "▁phenomenon", + -11.55119514465332 + ], + [ + "tell", + -11.55124568939209 + ], + [ + "▁align", + -11.551413536071777 + ], + [ + "▁pipes", + -11.551438331604004 + ], + [ + "▁Disease", + -11.551474571228027 + ], + [ + "▁advancement", + -11.551506042480469 + ], + [ + "▁Rec", + -11.55153751373291 + ], + [ + "▁Constitution", + -11.551607131958008 + ], + [ + "▁robot", + -11.551681518554688 + ], + [ + "▁Gal", + -11.551838874816895 + ], + [ + "▁riders", + -11.55201244354248 + ], + [ + "▁cheer", + -11.552139282226562 + ], + [ + "▁Birthday", + -11.552326202392578 + ], + [ + "▁disclose", + -11.552389144897461 + ], + [ + "UP", + -11.55284309387207 + ], + [ + "▁suggesting", + -11.552957534790039 + ], + [ + "▁Kat", + -11.5530366897583 + ], + [ + "rob", + -11.553106307983398 + ], + [ + "▁Kra", + -11.553256034851074 + ], + [ + "DO", + -11.553339004516602 + ], + [ + "pay", + -11.553439140319824 + ], + [ + "▁trap", + -11.553462028503418 + ], + [ + "▁Installation", + -11.553479194641113 + ], + [ + "▁towel", + -11.553547859191895 + ], + [ + "▁Federation", + -11.553558349609375 + ], + [ + "▁Sur", + -11.553567886352539 + ], + [ + "▁Applications", + -11.553680419921875 + ], + [ + "▁benchmark", + -11.553707122802734 + ], + [ + "cker", + -11.55374526977539 + ], + [ + "DF", + -11.553787231445312 + ], + [ + "▁publisher", + -11.553832054138184 + ], + [ + "▁predicted", + -11.5538911819458 + ], + [ + "▁searches", + -11.55390453338623 + ], + [ + "▁pics", + -11.553998947143555 + ], + [ + "▁modest", + -11.554007530212402 + ], + [ + "▁Khan", + -11.554082870483398 + ], + [ + "▁Jennifer", + -11.554373741149902 + ], + [ + "▁badge", + -11.554397583007812 + ], + [ + "rad", + -11.55453872680664 + ], + [ + "▁comparing", + -11.554586410522461 + ], + [ + "▁wound", + -11.554638862609863 + ], + [ + "▁sail", + -11.554719924926758 + ], + [ + "▁fin", + -11.554996490478516 + ], + [ + "▁empower", + -11.555280685424805 + ], + [ + "very", + -11.555318832397461 + ], + [ + "▁evaluated", + -11.55540943145752 + ], + [ + "▁Physical", + -11.555551528930664 + ], + [ + "pes", + -11.555736541748047 + ], + [ + "TY", + -11.556092262268066 + ], + [ + "COM", + -11.55610179901123 + ], + [ + "▁ARE", + -11.55625057220459 + ], + [ + "▁pupils", + -11.556428909301758 + ], + [ + "▁25%", + -11.556685447692871 + ], + [ + "▁Past", + -11.55703353881836 + ], + [ + "▁Stand", + -11.557077407836914 + ], + [ + "▁accent", + -11.557276725769043 + ], + [ + "▁Coll", + -11.557290077209473 + ], + [ + "▁exotic", + -11.557585716247559 + ], + [ + "▁frustration", + -11.558051109313965 + ], + [ + "▁Version", + -11.558185577392578 + ], + [ + "▁melt", + -11.558334350585938 + ], + [ + "stead", + -11.558343887329102 + ], + [ + "▁pine", + -11.558560371398926 + ], + [ + "▁Emergency", + -11.55866527557373 + ], + [ + "▁suspended", + -11.558810234069824 + ], + [ + "▁$15", + -11.559616088867188 + ], + [ + "▁Mall", + -11.55970573425293 + ], + [ + "▁knock", + -11.559810638427734 + ], + [ + "there", + -11.55984878540039 + ], + [ + "▁FC", + -11.560097694396973 + ], + [ + "▁divide", + -11.56014347076416 + ], + [ + "RD", + -11.56019115447998 + ], + [ + "lop", + -11.560256958007812 + ], + [ + "RB", + -11.560629844665527 + ], + [ + "▁discharge", + -11.56067180633545 + ], + [ + "▁Jerusalem", + -11.560784339904785 + ], + [ + "DU", + -11.56117057800293 + ], + [ + "▁AG", + -11.561212539672852 + ], + [ + "▁candle", + -11.561413764953613 + ], + [ + "▁pic", + -11.561573028564453 + ], + [ + "▁Kings", + -11.561806678771973 + ], + [ + "▁branding", + -11.562060356140137 + ], + [ + "▁illustrated", + -11.562183380126953 + ], + [ + "oxy", + -11.562298774719238 + ], + [ + "▁4:", + -11.562341690063477 + ], + [ + "▁invoice", + -11.56258487701416 + ], + [ + "▁rolls", + -11.562602996826172 + ], + [ + "▁Bin", + -11.562761306762695 + ], + [ + "▁undertake", + -11.56296443939209 + ], + [ + "▁Avoid", + -11.563078880310059 + ], + [ + "▁rounds", + -11.56309986114502 + ], + [ + "▁segments", + -11.563554763793945 + ], + [ + "▁Hack", + -11.563690185546875 + ], + [ + "▁washer", + -11.563761711120605 + ], + [ + "▁rides", + -11.564061164855957 + ], + [ + "▁proprietary", + -11.564079284667969 + ], + [ + "▁5%", + -11.564108848571777 + ], + [ + "▁Mur", + -11.56417179107666 + ], + [ + "▁wh", + -11.56429386138916 + ], + [ + "Net", + -11.564311027526855 + ], + [ + "▁scary", + -11.564643859863281 + ], + [ + "▁sporting", + -11.564821243286133 + ], + [ + "▁17,", + -11.564857482910156 + ], + [ + "atory", + -11.564997673034668 + ], + [ + "▁weekends", + -11.565091133117676 + ], + [ + "▁sheep", + -11.5651273727417 + ], + [ + "mission", + -11.565237998962402 + ], + [ + "▁waterproof", + -11.565252304077148 + ], + [ + "▁mailing", + -11.56556224822998 + ], + [ + "▁humor", + -11.565643310546875 + ], + [ + "▁cosmetic", + -11.565730094909668 + ], + [ + "indicating", + -11.565762519836426 + ], + [ + "▁spam", + -11.565831184387207 + ], + [ + "......", + -11.566017150878906 + ], + [ + "▁Half", + -11.566070556640625 + ], + [ + "▁Features", + -11.566222190856934 + ], + [ + "▁1986", + -11.566557884216309 + ], + [ + "▁uncertainty", + -11.56659984588623 + ], + [ + "ops", + -11.566604614257812 + ], + [ + "▁fried", + -11.566615104675293 + ], + [ + "▁terrain", + -11.566760063171387 + ], + [ + "▁holy", + -11.566764831542969 + ], + [ + "▁parameter", + -11.566804885864258 + ], + [ + "▁assists", + -11.56689453125 + ], + [ + "▁Dating", + -11.567066192626953 + ], + [ + "▁Log", + -11.567505836486816 + ], + [ + "▁**", + -11.567550659179688 + ], + [ + "▁observations", + -11.567655563354492 + ], + [ + "▁divine", + -11.567744255065918 + ], + [ + "▁limitation", + -11.56775951385498 + ], + [ + "▁bomb", + -11.567838668823242 + ], + [ + "▁recognised", + -11.567854881286621 + ], + [ + "▁gal", + -11.568061828613281 + ], + [ + "▁substantially", + -11.568103790283203 + ], + [ + "▁Chat", + -11.568108558654785 + ], + [ + "▁Bird", + -11.568256378173828 + ], + [ + "hem", + -11.568276405334473 + ], + [ + "▁sentiment", + -11.568401336669922 + ], + [ + "▁diesel", + -11.568564414978027 + ], + [ + "▁buses", + -11.568608283996582 + ], + [ + "▁#2", + -11.56877326965332 + ], + [ + "▁scroll", + -11.5687837600708 + ], + [ + "▁collaborate", + -11.568845748901367 + ], + [ + "▁promoted", + -11.568861961364746 + ], + [ + "▁scholars", + -11.568868637084961 + ], + [ + "▁intra", + -11.569007873535156 + ], + [ + "▁Break", + -11.569245338439941 + ], + [ + "▁pursuing", + -11.569330215454102 + ], + [ + "▁HI", + -11.569398880004883 + ], + [ + "phil", + -11.569597244262695 + ], + [ + "▁Similarly", + -11.569660186767578 + ], + [ + "▁RSS", + -11.56967544555664 + ], + [ + "▁mapping", + -11.56975269317627 + ], + [ + "▁26,", + -11.569841384887695 + ], + [ + "▁fatigue", + -11.569881439208984 + ], + [ + "▁Obviously", + -11.569884300231934 + ], + [ + "▁1987", + -11.5700101852417 + ], + [ + "▁63", + -11.570161819458008 + ], + [ + "ML", + -11.570185661315918 + ], + [ + "▁Bow", + -11.570188522338867 + ], + [ + "▁DS", + -11.570296287536621 + ], + [ + "▁lane", + -11.570362091064453 + ], + [ + "▁crossed", + -11.570538520812988 + ], + [ + "▁internship", + -11.570564270019531 + ], + [ + "▁Freedom", + -11.570586204528809 + ], + [ + "▁Stage", + -11.570658683776855 + ], + [ + "▁darkness", + -11.570828437805176 + ], + [ + "▁confidential", + -11.571233749389648 + ], + [ + "▁honour", + -11.571414947509766 + ], + [ + "▁appointments", + -11.571514129638672 + ], + [ + "2-", + -11.571565628051758 + ], + [ + "▁flush", + -11.571743965148926 + ], + [ + "▁crust", + -11.57178020477295 + ], + [ + "▁yarn", + -11.571788787841797 + ], + [ + "▁argued", + -11.57201862335205 + ], + [ + "▁classification", + -11.572035789489746 + ], + [ + "▁unwanted", + -11.572052955627441 + ], + [ + "zar", + -11.57221794128418 + ], + [ + "▁grasp", + -11.572356224060059 + ], + [ + "▁Bet", + -11.572477340698242 + ], + [ + "frame", + -11.572790145874023 + ], + [ + "▁notified", + -11.572981834411621 + ], + [ + "▁duck", + -11.573169708251953 + ], + [ + "▁combo", + -11.573175430297852 + ], + [ + "▁mac", + -11.573190689086914 + ], + [ + "eous", + -11.57327651977539 + ], + [ + "dine", + -11.573412895202637 + ], + [ + "▁participant", + -11.573484420776367 + ], + [ + "▁joke", + -11.573628425598145 + ], + [ + "▁sewing", + -11.573747634887695 + ], + [ + "thing", + -11.573958396911621 + ], + [ + "▁97", + -11.5740385055542 + ], + [ + "▁80%", + -11.574132919311523 + ], + [ + "▁Grove", + -11.574226379394531 + ], + [ + "▁upgraded", + -11.57492446899414 + ], + [ + "▁PI", + -11.575034141540527 + ], + [ + "▁flesh", + -11.575112342834473 + ], + [ + "BB", + -11.575149536132812 + ], + [ + "php", + -11.575297355651855 + ], + [ + "▁lenders", + -11.575515747070312 + ], + [ + "▁Tip", + -11.575560569763184 + ], + [ + "wit", + -11.575568199157715 + ], + [ + "▁:)", + -11.575844764709473 + ], + [ + "▁shirts", + -11.576043128967285 + ], + [ + "▁Rad", + -11.5761137008667 + ], + [ + "eye", + -11.576153755187988 + ], + [ + "share", + -11.576178550720215 + ], + [ + "▁oz", + -11.576231956481934 + ], + [ + "wire", + -11.576306343078613 + ], + [ + "▁momentum", + -11.576316833496094 + ], + [ + "▁Lar", + -11.57647705078125 + ], + [ + "▁Mode", + -11.576480865478516 + ], + [ + "white", + -11.576641082763672 + ], + [ + "▁mere", + -11.576669692993164 + ], + [ + "▁holders", + -11.576705932617188 + ], + [ + "▁journalist", + -11.57672119140625 + ], + [ + "▁circles", + -11.576922416687012 + ], + [ + "▁warmth", + -11.57692813873291 + ], + [ + "▁THAT", + -11.576945304870605 + ], + [ + "▁cargo", + -11.576995849609375 + ], + [ + "▁encountered", + -11.577303886413574 + ], + [ + "▁circulation", + -11.577454566955566 + ], + [ + "▁blockchain", + -11.577591896057129 + ], + [ + "▁electro", + -11.577752113342285 + ], + [ + "BR", + -11.578521728515625 + ], + [ + "▁challenged", + -11.578730583190918 + ], + [ + "tract", + -11.578753471374512 + ], + [ + "lift", + -11.57876968383789 + ], + [ + "%)", + -11.578838348388672 + ], + [ + "value", + -11.578983306884766 + ], + [ + "books", + -11.579339981079102 + ], + [ + "▁cellular", + -11.579458236694336 + ], + [ + "ggy", + -11.579484939575195 + ], + [ + "wheel", + -11.57959270477295 + ], + [ + "▁delightful", + -11.57976245880127 + ], + [ + "▁Going", + -11.57978343963623 + ], + [ + "▁polar", + -11.57978630065918 + ], + [ + "flu", + -11.57983112335205 + ], + [ + "▁Duke", + -11.579954147338867 + ], + [ + "▁Lodge", + -11.580066680908203 + ], + [ + "mini", + -11.580108642578125 + ], + [ + "▁Louisiana", + -11.58011245727539 + ], + [ + "▁Gil", + -11.580244064331055 + ], + [ + "▁Suite", + -11.580338478088379 + ], + [ + "EG", + -11.58041763305664 + ], + [ + "▁ignored", + -11.580536842346191 + ], + [ + "▁secrets", + -11.581154823303223 + ], + [ + "▁orchestra", + -11.581216812133789 + ], + [ + "wash", + -11.581226348876953 + ], + [ + "tec", + -11.581347465515137 + ], + [ + "▁fri", + -11.581369400024414 + ], + [ + "▁shoulders", + -11.581449508666992 + ], + [ + "▁dated", + -11.581650733947754 + ], + [ + "▁adapter", + -11.581687927246094 + ], + [ + "▁12-", + -11.581711769104004 + ], + [ + "▁cancellation", + -11.581953048706055 + ], + [ + "▁Jacob", + -11.582060813903809 + ], + [ + "▁stressed", + -11.582062721252441 + ], + [ + "▁Garage", + -11.582233428955078 + ], + [ + "▁Baltimore", + -11.582256317138672 + ], + [ + "▁tuition", + -11.582300186157227 + ], + [ + "▁securities", + -11.582322120666504 + ], + [ + "▁pharmacy", + -11.582452774047852 + ], + [ + "▁fears", + -11.582711219787598 + ], + [ + "mouth", + -11.583003997802734 + ], + [ + "▁nurses", + -11.583390235900879 + ], + [ + "▁travelers", + -11.583792686462402 + ], + [ + "▁consultants", + -11.583857536315918 + ], + [ + "▁likewise", + -11.583903312683105 + ], + [ + "▁undertaking", + -11.583985328674316 + ], + [ + "▁Soul", + -11.584134101867676 + ], + [ + "▁GT", + -11.584209442138672 + ], + [ + "▁simulation", + -11.584297180175781 + ], + [ + "▁submitting", + -11.584390640258789 + ], + [ + "▁pastor", + -11.584577560424805 + ], + [ + "chy", + -11.58458423614502 + ], + [ + "▁considerably", + -11.584589958190918 + ], + [ + "▁informal", + -11.584736824035645 + ], + [ + "▁adhere", + -11.584794998168945 + ], + [ + "▁handmade", + -11.585030555725098 + ], + [ + "▁Delivery", + -11.585177421569824 + ], + [ + "century", + -11.585205078125 + ], + [ + "▁Rules", + -11.585511207580566 + ], + [ + "kins", + -11.5855131149292 + ], + [ + "▁rehabilitation", + -11.58554744720459 + ], + [ + "▁Neuro", + -11.585843086242676 + ], + [ + "▁Brad", + -11.585855484008789 + ], + [ + "▁rally", + -11.585968017578125 + ], + [ + "▁attachment", + -11.585968971252441 + ], + [ + "▁Zo", + -11.585976600646973 + ], + [ + "▁Barcelona", + -11.586189270019531 + ], + [ + "▁planted", + -11.586315155029297 + ], + [ + "iki", + -11.5863618850708 + ], + [ + "▁Les", + -11.586393356323242 + ], + [ + "▁romance", + -11.586556434631348 + ], + [ + "▁leak", + -11.586724281311035 + ], + [ + "-13", + -11.586729049682617 + ], + [ + "▁spoon", + -11.587137222290039 + ], + [ + "▁12,", + -11.587141036987305 + ], + [ + "▁jury", + -11.587162017822266 + ], + [ + "▁beam", + -11.587367057800293 + ], + [ + "▁locks", + -11.587386131286621 + ], + [ + "▁Charlie", + -11.587489128112793 + ], + [ + "▁promotions", + -11.587718963623047 + ], + [ + "▁cited", + -11.587894439697266 + ], + [ + "▁curtains", + -11.588005065917969 + ], + [ + "▁afterwards", + -11.58821964263916 + ], + [ + "▁Moscow", + -11.588237762451172 + ], + [ + "▁methodology", + -11.588269233703613 + ], + [ + "▁rug", + -11.588356018066406 + ], + [ + "▁fortune", + -11.588370323181152 + ], + [ + "ppy", + -11.588554382324219 + ], + [ + "▁$25", + -11.588591575622559 + ], + [ + "▁Eat", + -11.589168548583984 + ], + [ + "▁emotion", + -11.589357376098633 + ], + [ + "▁statue", + -11.589400291442871 + ], + [ + "MF", + -11.589722633361816 + ], + [ + "▁sliding", + -11.589776992797852 + ], + [ + "▁boutique", + -11.589940071105957 + ], + [ + "▁hoped", + -11.59014892578125 + ], + [ + "▁deleted", + -11.590198516845703 + ], + [ + "▁brave", + -11.590222358703613 + ], + [ + "▁Marvel", + -11.590415954589844 + ], + [ + "▁Barbara", + -11.59049129486084 + ], + [ + "park", + -11.590550422668457 + ], + [ + "▁Liverpool", + -11.590596199035645 + ], + [ + "▁traveled", + -11.590680122375488 + ], + [ + "lus", + -11.590682983398438 + ], + [ + "▁Ranch", + -11.59070110321045 + ], + [ + "section", + -11.590742111206055 + ], + [ + "ASS", + -11.590750694274902 + ], + [ + "cious", + -11.590750694274902 + ], + [ + "▁Mars", + -11.5907621383667 + ], + [ + "INE", + -11.590806007385254 + ], + [ + "▁actress", + -11.590808868408203 + ], + [ + "▁giveaway", + -11.59089183807373 + ], + [ + "▁waist", + -11.590929985046387 + ], + [ + "▁activation", + -11.59093189239502 + ], + [ + "▁Nevada", + -11.590947151184082 + ], + [ + "▁Host", + -11.5910062789917 + ], + [ + "▁crops", + -11.591060638427734 + ], + [ + "▁Cream", + -11.591195106506348 + ], + [ + "▁vitamins", + -11.591254234313965 + ], + [ + "▁matched", + -11.591300964355469 + ], + [ + "▁Left", + -11.591525077819824 + ], + [ + "▁Pot", + -11.591719627380371 + ], + [ + "▁confusing", + -11.591842651367188 + ], + [ + "▁pole", + -11.592028617858887 + ], + [ + "▁enrolled", + -11.592233657836914 + ], + [ + "▁cope", + -11.592269897460938 + ], + [ + "▁acoustic", + -11.592449188232422 + ], + [ + "▁approached", + -11.592477798461914 + ], + [ + "▁Mus", + -11.592606544494629 + ], + [ + "TF", + -11.592866897583008 + ], + [ + "▁chi", + -11.592884063720703 + ], + [ + "mut", + -11.59315299987793 + ], + [ + "▁Eve", + -11.59323501586914 + ], + [ + "▁associations", + -11.593526840209961 + ], + [ + "▁Tools", + -11.593585014343262 + ], + [ + "each", + -11.593685150146484 + ], + [ + "▁sons", + -11.5936861038208 + ], + [ + "▁logistics", + -11.593729972839355 + ], + [ + "▁WiFi", + -11.593840599060059 + ], + [ + "▁salmon", + -11.594225883483887 + ], + [ + "▁upgrades", + -11.594300270080566 + ], + [ + "▁Mediterranean", + -11.594320297241211 + ], + [ + "▁Others", + -11.594442367553711 + ], + [ + "▁ABC", + -11.594759941101074 + ], + [ + "▁barn", + -11.594927787780762 + ], + [ + "7)", + -11.595044136047363 + ], + [ + "▁Chicken", + -11.595060348510742 + ], + [ + "▁prep", + -11.595250129699707 + ], + [ + "▁licence", + -11.595553398132324 + ], + [ + "▁buffer", + -11.595647811889648 + ], + [ + "▁necklace", + -11.595681190490723 + ], + [ + "▁assurance", + -11.595703125 + ], + [ + "▁chapters", + -11.595829010009766 + ], + [ + "sley", + -11.595980644226074 + ], + [ + "▁paired", + -11.596206665039062 + ], + [ + "▁Dry", + -11.596244812011719 + ], + [ + "ibility", + -11.596263885498047 + ], + [ + "▁schemes", + -11.596305847167969 + ], + [ + "mount", + -11.596389770507812 + ], + [ + "▁borders", + -11.596406936645508 + ], + [ + "▁offline", + -11.59653377532959 + ], + [ + "▁curtain", + -11.596553802490234 + ], + [ + "▁modes", + -11.59684944152832 + ], + [ + "▁builds", + -11.59685230255127 + ], + [ + "▁sturdy", + -11.597023010253906 + ], + [ + "vine", + -11.597127914428711 + ], + [ + "▁occupied", + -11.597346305847168 + ], + [ + "▁Production", + -11.597430229187012 + ], + [ + "▁Connecticut", + -11.597485542297363 + ], + [ + "▁harness", + -11.597503662109375 + ], + [ + "▁Impact", + -11.59766674041748 + ], + [ + "sses", + -11.597814559936523 + ], + [ + "▁bun", + -11.59791088104248 + ], + [ + "▁tactics", + -11.598045349121094 + ], + [ + "▁Mumbai", + -11.598322868347168 + ], + [ + "NR", + -11.59837532043457 + ], + [ + "т", + -11.598458290100098 + ], + [ + "▁13.", + -11.598526000976562 + ], + [ + "writer", + -11.598751068115234 + ], + [ + "RY", + -11.598807334899902 + ], + [ + "▁thoughtful", + -11.599051475524902 + ], + [ + "▁keyword", + -11.599276542663574 + ], + [ + "▁supervision", + -11.599481582641602 + ], + [ + "▁Camera", + -11.599530220031738 + ], + [ + "story", + -11.599678039550781 + ], + [ + "▁repeatedly", + -11.599992752075195 + ], + [ + "▁recreational", + -11.600167274475098 + ], + [ + "gger", + -11.600193977355957 + ], + [ + "▁Wayne", + -11.600229263305664 + ], + [ + "▁excel", + -11.600353240966797 + ], + [ + "▁conviction", + -11.600451469421387 + ], + [ + "▁disagree", + -11.600515365600586 + ], + [ + "▁drew", + -11.600687980651855 + ], + [ + "▁Delta", + -11.600728988647461 + ], + [ + "una", + -11.600800514221191 + ], + [ + "▁Drop", + -11.600918769836426 + ], + [ + "▁attribute", + -11.601004600524902 + ], + [ + "▁Path", + -11.601035118103027 + ], + [ + "▁diving", + -11.601035118103027 + ], + [ + "hil", + -11.601201057434082 + ], + [ + "▁needle", + -11.60128402709961 + ], + [ + "▁Photography", + -11.601489067077637 + ], + [ + "▁Moving", + -11.601961135864258 + ], + [ + "ré", + -11.602291107177734 + ], + [ + "▁bon", + -11.60244369506836 + ], + [ + "▁enterprises", + -11.602469444274902 + ], + [ + "iko", + -11.60247802734375 + ], + [ + "▁TA", + -11.602673530578613 + ], + [ + "▁Uni", + -11.603117942810059 + ], + [ + "omb", + -11.603419303894043 + ], + [ + "▁arena", + -11.603569984436035 + ], + [ + "▁Kent", + -11.603671073913574 + ], + [ + "▁graph", + -11.603811264038086 + ], + [ + "▁Electronic", + -11.603839874267578 + ], + [ + "▁counseling", + -11.604039192199707 + ], + [ + "▁cartoon", + -11.60417366027832 + ], + [ + "▁pools", + -11.604177474975586 + ], + [ + "▁goodness", + -11.604180335998535 + ], + [ + "▁arriving", + -11.604268074035645 + ], + [ + "▁rustic", + -11.60428237915039 + ], + [ + "▁77", + -11.60460090637207 + ], + [ + "▁tra", + -11.604683876037598 + ], + [ + "▁Steven", + -11.604779243469238 + ], + [ + "▁Request", + -11.604937553405762 + ], + [ + "▁Transportation", + -11.605196952819824 + ], + [ + "fla", + -11.605613708496094 + ], + [ + "▁joints", + -11.605690956115723 + ], + [ + "▁Str", + -11.60583209991455 + ], + [ + "ncing", + -11.605875968933105 + ], + [ + "▁surprises", + -11.606064796447754 + ], + [ + "▁Explore", + -11.60612964630127 + ], + [ + "▁License", + -11.606222152709961 + ], + [ + "▁Jen", + -11.606240272521973 + ], + [ + "▁crawl", + -11.606822967529297 + ], + [ + "▁zones", + -11.606847763061523 + ], + [ + "▁Parker", + -11.606934547424316 + ], + [ + "▁centres", + -11.606961250305176 + ], + [ + "▁Partner", + -11.606965065002441 + ], + [ + "▁def", + -11.60708999633789 + ], + [ + "▁doll", + -11.60722541809082 + ], + [ + "say", + -11.607242584228516 + ], + [ + "▁tribute", + -11.607304573059082 + ], + [ + "▁cre", + -11.607359886169434 + ], + [ + "▁bronze", + -11.607364654541016 + ], + [ + "▁Degree", + -11.6076021194458 + ], + [ + "▁billing", + -11.607860565185547 + ], + [ + "▁Marc", + -11.608003616333008 + ], + [ + "Hi", + -11.608047485351562 + ], + [ + "serv", + -11.608072280883789 + ], + [ + "note", + -11.608115196228027 + ], + [ + "▁Contract", + -11.608257293701172 + ], + [ + "▁checkout", + -11.608329772949219 + ], + [ + "eel", + -11.608354568481445 + ], + [ + "▁warned", + -11.608692169189453 + ], + [ + "CG", + -11.608729362487793 + ], + [ + "▁Retail", + -11.608774185180664 + ], + [ + "▁convince", + -11.608918190002441 + ], + [ + "▁Glad", + -11.609033584594727 + ], + [ + "▁Kha", + -11.609237670898438 + ], + [ + "▁shaft", + -11.609313011169434 + ], + [ + "▁stressful", + -11.60936164855957 + ], + [ + "▁emphasize", + -11.609365463256836 + ], + [ + "▁Turkish", + -11.609514236450195 + ], + [ + "▁Gro", + -11.609597206115723 + ], + [ + "chan", + -11.609637260437012 + ], + [ + "▁RT", + -11.60966968536377 + ], + [ + "▁traders", + -11.609674453735352 + ], + [ + "▁Cabinet", + -11.609813690185547 + ], + [ + "▁molecular", + -11.609903335571289 + ], + [ + "▁Hal", + -11.609947204589844 + ], + [ + "▁Crown", + -11.610067367553711 + ], + [ + "▁Mine", + -11.61007022857666 + ], + [ + "▁wages", + -11.610075950622559 + ], + [ + "plan", + -11.610172271728516 + ], + [ + "fel", + -11.610296249389648 + ], + [ + "▁neighbor", + -11.61037826538086 + ], + [ + "▁Assessment", + -11.61054515838623 + ], + [ + "▁Chance", + -11.610557556152344 + ], + [ + "▁surveillance", + -11.61058235168457 + ], + [ + "▁27,", + -11.610793113708496 + ], + [ + "▁NBA", + -11.610834121704102 + ], + [ + "▁touches", + -11.61100959777832 + ], + [ + "▁(6", + -11.6110258102417 + ], + [ + "▁Associates", + -11.611148834228516 + ], + [ + "▁Programme", + -11.611187934875488 + ], + [ + "▁Gordon", + -11.611308097839355 + ], + [ + "▁boom", + -11.611459732055664 + ], + [ + "▁stepped", + -11.61150074005127 + ], + [ + "▁gum", + -11.611572265625 + ], + [ + "▁Brain", + -11.61166000366211 + ], + [ + "oxi", + -11.611750602722168 + ], + [ + "▁Cooper", + -11.611799240112305 + ], + [ + "4)", + -11.611878395080566 + ], + [ + "▁casinos", + -11.61188793182373 + ], + [ + "logic", + -11.611905097961426 + ], + [ + "▁replica", + -11.611927032470703 + ], + [ + "▁Mun", + -11.611942291259766 + ], + [ + "▁render", + -11.612030982971191 + ], + [ + "▁Different", + -11.61209774017334 + ], + [ + "▁relieve", + -11.612131118774414 + ], + [ + "▁burst", + -11.61250114440918 + ], + [ + "graph", + -11.61266803741455 + ], + [ + "▁Fed", + -11.612838745117188 + ], + [ + "dent", + -11.612876892089844 + ], + [ + "▁Mah", + -11.612911224365234 + ], + [ + "▁fate", + -11.612916946411133 + ], + [ + "▁Wide", + -11.612937927246094 + ], + [ + "▁sneak", + -11.613038063049316 + ], + [ + "▁Douglas", + -11.613368034362793 + ], + [ + "▁Platform", + -11.613505363464355 + ], + [ + "ope", + -11.613649368286133 + ], + [ + "dies", + -11.613727569580078 + ], + [ + "gro", + -11.613741874694824 + ], + [ + "lav", + -11.613747596740723 + ], + [ + "▁tumor", + -11.613954544067383 + ], + [ + "ific", + -11.613999366760254 + ], + [ + "TT", + -11.614039421081543 + ], + [ + "▁76", + -11.614090919494629 + ], + [ + "nite", + -11.614275932312012 + ], + [ + "▁substances", + -11.614298820495605 + ], + [ + "▁realise", + -11.614335060119629 + ], + [ + "ather", + -11.614355087280273 + ], + [ + "▁FM", + -11.614465713500977 + ], + [ + "▁rub", + -11.614725112915039 + ], + [ + "▁insured", + -11.614818572998047 + ], + [ + "▁realm", + -11.614835739135742 + ], + [ + "▁Nelson", + -11.614887237548828 + ], + [ + "▁Pine", + -11.615035057067871 + ], + [ + "▁descriptions", + -11.615079879760742 + ], + [ + "▁pale", + -11.615116119384766 + ], + [ + "▁Days", + -11.615364074707031 + ], + [ + "▁households", + -11.615436553955078 + ], + [ + "▁CAN", + -11.615467071533203 + ], + [ + "▁packs", + -11.615589141845703 + ], + [ + "▁decorations", + -11.615635871887207 + ], + [ + "▁Bee", + -11.615765571594238 + ], + [ + "▁Beijing", + -11.616085052490234 + ], + [ + "▁68", + -11.616130828857422 + ], + [ + "▁autumn", + -11.616151809692383 + ], + [ + "▁peanut", + -11.61648941040039 + ], + [ + "▁passport", + -11.616499900817871 + ], + [ + "▁Labour", + -11.616545677185059 + ], + [ + "▁crimes", + -11.616633415222168 + ], + [ + "green", + -11.616680145263672 + ], + [ + "used", + -11.616734504699707 + ], + [ + "в", + -11.616859436035156 + ], + [ + "▁Craig", + -11.616888046264648 + ], + [ + "▁25,", + -11.617049217224121 + ], + [ + "NN", + -11.617057800292969 + ], + [ + "▁desires", + -11.617158889770508 + ], + [ + "▁streams", + -11.617199897766113 + ], + [ + "▁intersection", + -11.617364883422852 + ], + [ + "▁ample", + -11.617385864257812 + ], + [ + "▁Dress", + -11.617586135864258 + ], + [ + "stream", + -11.617652893066406 + ], + [ + "▁Poker", + -11.617915153503418 + ], + [ + "▁shore", + -11.618346214294434 + ], + [ + "▁regulate", + -11.61838436126709 + ], + [ + "▁Edit", + -11.61844253540039 + ], + [ + "ality", + -11.618585586547852 + ], + [ + "▁turkey", + -11.618780136108398 + ], + [ + "▁polish", + -11.618816375732422 + ], + [ + "▁Masters", + -11.618892669677734 + ], + [ + "brook", + -11.618956565856934 + ], + [ + "▁bargain", + -11.619012832641602 + ], + [ + "▁Nation", + -11.619209289550781 + ], + [ + "▁evolve", + -11.619260787963867 + ], + [ + "▁analyzed", + -11.619283676147461 + ], + [ + "▁safeguard", + -11.619414329528809 + ], + [ + "▁dash", + -11.619569778442383 + ], + [ + "▁breakdown", + -11.619610786437988 + ], + [ + "▁sword", + -11.619614601135254 + ], + [ + "▁convention", + -11.619800567626953 + ], + [ + "▁backing", + -11.619880676269531 + ], + [ + "▁vibe", + -11.619887351989746 + ], + [ + "▁characteristic", + -11.62010383605957 + ], + [ + "▁proceeds", + -11.620406150817871 + ], + [ + "▁retailer", + -11.620430946350098 + ], + [ + "▁Lou", + -11.620512008666992 + ], + [ + "has", + -11.620548248291016 + ], + [ + "holder", + -11.62085247039795 + ], + [ + "ool", + -11.620906829833984 + ], + [ + "DT", + -11.620914459228516 + ], + [ + "▁Vitamin", + -11.620944023132324 + ], + [ + "▁chic", + -11.621025085449219 + ], + [ + "IV", + -11.6214017868042 + ], + [ + "▁modeling", + -11.621477127075195 + ], + [ + "▁SI", + -11.621797561645508 + ], + [ + "▁seniors", + -11.621828079223633 + ], + [ + "▁1984", + -11.621829986572266 + ], + [ + "ether", + -11.621931076049805 + ], + [ + "▁prototype", + -11.622136116027832 + ], + [ + "▁Intelligence", + -11.62236213684082 + ], + [ + "▁freezer", + -11.62304973602295 + ], + [ + "▁RS", + -11.623183250427246 + ], + [ + "cept", + -11.62324047088623 + ], + [ + "▁Tap", + -11.623245239257812 + ], + [ + "▁annoying", + -11.623377799987793 + ], + [ + "▁Russell", + -11.623481750488281 + ], + [ + "▁bother", + -11.623793601989746 + ], + [ + "hun", + -11.624056816101074 + ], + [ + "kal", + -11.62417984008789 + ], + [ + "▁Beat", + -11.624198913574219 + ], + [ + "▁nutritional", + -11.624554634094238 + ], + [ + "aged", + -11.624899864196777 + ], + [ + "▁1985", + -11.624929428100586 + ], + [ + "▁approve", + -11.625070571899414 + ], + [ + "inal", + -11.625262260437012 + ], + [ + "▁palette", + -11.625275611877441 + ], + [ + "▁Nike", + -11.625418663024902 + ], + [ + "▁collapse", + -11.625577926635742 + ], + [ + "▁Christopher", + -11.625807762145996 + ], + [ + "▁HS", + -11.625954627990723 + ], + [ + "▁bracelet", + -11.626092910766602 + ], + [ + "tum", + -11.626350402832031 + ], + [ + "▁varies", + -11.626422882080078 + ], + [ + "▁adaptation", + -11.626434326171875 + ], + [ + "▁Shu", + -11.62649154663086 + ], + [ + "▁blanket", + -11.626733779907227 + ], + [ + "▁Sie", + -11.626890182495117 + ], + [ + "▁OH", + -11.627134323120117 + ], + [ + "▁spice", + -11.627227783203125 + ], + [ + "etti", + -11.627293586730957 + ], + [ + "▁elementary", + -11.627372741699219 + ], + [ + "▁grave", + -11.627394676208496 + ], + [ + "▁bacon", + -11.627467155456543 + ], + [ + "▁catering", + -11.627564430236816 + ], + [ + "▁desirable", + -11.62763500213623 + ], + [ + "▁cushions", + -11.627791404724121 + ], + [ + "▁Soon", + -11.627880096435547 + ], + [ + "▁translated", + -11.628135681152344 + ], + [ + "▁activated", + -11.628232955932617 + ], + [ + "▁Strong", + -11.628276824951172 + ], + [ + "color", + -11.628466606140137 + ], + [ + "▁reviewing", + -11.628475189208984 + ], + [ + "▁Foot", + -11.62849235534668 + ], + [ + "▁inquiry", + -11.628715515136719 + ], + [ + "150", + -11.62879753112793 + ], + [ + "▁deposits", + -11.6288423538208 + ], + [ + "▁occurring", + -11.628985404968262 + ], + [ + "coming", + -11.628990173339844 + ], + [ + "▁Deck", + -11.62906265258789 + ], + [ + "▁teen", + -11.62962818145752 + ], + [ + "▁Built", + -11.62977123260498 + ], + [ + "▁Rain", + -11.629952430725098 + ], + [ + "▁ruled", + -11.629965782165527 + ], + [ + "▁2-3", + -11.630104064941406 + ], + [ + "▁29,", + -11.630221366882324 + ], + [ + "▁linen", + -11.63036060333252 + ], + [ + "ometer", + -11.630385398864746 + ], + [ + "▁Rd", + -11.630630493164062 + ], + [ + "▁fragrance", + -11.630952835083008 + ], + [ + "▁Factory", + -11.630977630615234 + ], + [ + "▁Profile", + -11.631002426147461 + ], + [ + "-30", + -11.631074905395508 + ], + [ + "▁Essay", + -11.631095886230469 + ], + [ + "▁forests", + -11.631172180175781 + ], + [ + "▁balcony", + -11.631226539611816 + ], + [ + "▁recycled", + -11.631265640258789 + ], + [ + "pool", + -11.63127326965332 + ], + [ + "▁bang", + -11.631298065185547 + ], + [ + "▁Rule", + -11.63134765625 + ], + [ + "▁circular", + -11.631362915039062 + ], + [ + "▁jumping", + -11.631400108337402 + ], + [ + "▁bell", + -11.631487846374512 + ], + [ + "▁tricky", + -11.632050514221191 + ], + [ + "▁Firm", + -11.632088661193848 + ], + [ + "▁opera", + -11.632238388061523 + ], + [ + "▁approaching", + -11.632269859313965 + ], + [ + "▁touched", + -11.632984161376953 + ], + [ + "▁Gardens", + -11.633035659790039 + ], + [ + "▁Thompson", + -11.63311767578125 + ], + [ + "▁sci", + -11.63317584991455 + ], + [ + "▁appearing", + -11.63322639465332 + ], + [ + "▁lbs", + -11.633349418640137 + ], + [ + "▁antenna", + -11.633357048034668 + ], + [ + "▁shortage", + -11.633530616760254 + ], + [ + "▁nails", + -11.633618354797363 + ], + [ + "▁overhead", + -11.633618354797363 + ], + [ + "Mon", + -11.634024620056152 + ], + [ + "▁learners", + -11.634148597717285 + ], + [ + "▁oversee", + -11.634221076965332 + ], + [ + "BE", + -11.634281158447266 + ], + [ + "▁Tips", + -11.634345054626465 + ], + [ + "also", + -11.634376525878906 + ], + [ + "▁Designs", + -11.634378433227539 + ], + [ + "ogen", + -11.634403228759766 + ], + [ + "▁bookmark", + -11.63441276550293 + ], + [ + "TL", + -11.634594917297363 + ], + [ + ":30", + -11.63481616973877 + ], + [ + "▁LE", + -11.635305404663086 + ], + [ + "▁smartphones", + -11.635340690612793 + ], + [ + "▁NASA", + -11.635507583618164 + ], + [ + "▁aroma", + -11.635687828063965 + ], + [ + "▁Adams", + -11.63575553894043 + ], + [ + "▁satisfying", + -11.635794639587402 + ], + [ + "▁obstacles", + -11.635797500610352 + ], + [ + "▁memorial", + -11.636091232299805 + ], + [ + "▁deployed", + -11.63625717163086 + ], + [ + "▁Prepare", + -11.63632583618164 + ], + [ + "cott", + -11.636494636535645 + ], + [ + "▁staple", + -11.636517524719238 + ], + [ + "hop", + -11.636534690856934 + ], + [ + "▁crafts", + -11.636754035949707 + ], + [ + "▁84", + -11.636847496032715 + ], + [ + "▁advances", + -11.636880874633789 + ], + [ + "▁combinations", + -11.636899948120117 + ], + [ + "▁refresh", + -11.63693618774414 + ], + [ + "ACE", + -11.636937141418457 + ], + [ + "▁tanks", + -11.637091636657715 + ], + [ + "cid", + -11.637115478515625 + ], + [ + "arch", + -11.637202262878418 + ], + [ + "eld", + -11.63729476928711 + ], + [ + "▁Leather", + -11.637296676635742 + ], + [ + "▁Protect", + -11.637504577636719 + ], + [ + "AG", + -11.637592315673828 + ], + [ + "▁horizon", + -11.637598991394043 + ], + [ + "▁revised", + -11.637618064880371 + ], + [ + "▁tier", + -11.637776374816895 + ], + [ + "ographic", + -11.63794231414795 + ], + [ + "MG", + -11.638258934020996 + ], + [ + "▁progression", + -11.63828182220459 + ], + [ + "▁jeans", + -11.63846492767334 + ], + [ + "▁enhancing", + -11.638665199279785 + ], + [ + "▁bloom", + -11.638712882995605 + ], + [ + "plus", + -11.63879108428955 + ], + [ + "▁forgot", + -11.638907432556152 + ], + [ + "▁delayed", + -11.639074325561523 + ], + [ + "▁col", + -11.639083862304688 + ], + [ + "therapy", + -11.639091491699219 + ], + [ + "lets", + -11.639092445373535 + ], + [ + "▁transfers", + -11.639108657836914 + ], + [ + "▁Trading", + -11.639152526855469 + ], + [ + "▁gaps", + -11.639172554016113 + ], + [ + "ages", + -11.639253616333008 + ], + [ + "▁rocket", + -11.639396667480469 + ], + [ + "250", + -11.63947868347168 + ], + [ + "▁blessing", + -11.639521598815918 + ], + [ + "▁lifting", + -11.639552116394043 + ], + [ + "▁eternal", + -11.639554023742676 + ], + [ + "pop", + -11.639680862426758 + ], + [ + "tiv", + -11.63972282409668 + ], + [ + "eek", + -11.639791488647461 + ], + [ + "▁perspectives", + -11.640308380126953 + ], + [ + "▁Offer", + -11.640325546264648 + ], + [ + "HP", + -11.640371322631836 + ], + [ + "▁flo", + -11.640535354614258 + ], + [ + "▁notable", + -11.640539169311523 + ], + [ + "▁firmly", + -11.640750885009766 + ], + [ + "▁Ore", + -11.640990257263184 + ], + [ + "▁Mississippi", + -11.640996932983398 + ], + [ + "▁controversial", + -11.641066551208496 + ], + [ + "▁administrator", + -11.641161918640137 + ], + [ + "▁cow", + -11.64136791229248 + ], + [ + "▁dominant", + -11.641407012939453 + ], + [ + "▁BS", + -11.641423225402832 + ], + [ + "▁LP", + -11.641484260559082 + ], + [ + "▁Revolution", + -11.641497611999512 + ], + [ + "▁wipe", + -11.641643524169922 + ], + [ + "▁deserves", + -11.641671180725098 + ], + [ + "▁rentals", + -11.641905784606934 + ], + [ + "▁frustrating", + -11.641940116882324 + ], + [ + "riv", + -11.642118453979492 + ], + [ + "▁VR", + -11.642155647277832 + ], + [ + "▁unemployment", + -11.642196655273438 + ], + [ + "▁sensation", + -11.642348289489746 + ], + [ + "▁coding", + -11.642388343811035 + ], + [ + "▁Okay", + -11.642401695251465 + ], + [ + "AU", + -11.642430305480957 + ], + [ + "▁Plastic", + -11.642581939697266 + ], + [ + "▁iTunes", + -11.642999649047852 + ], + [ + "/4", + -11.643027305603027 + ], + [ + "max", + -11.643144607543945 + ], + [ + "ega", + -11.643181800842285 + ], + [ + "▁influences", + -11.643216133117676 + ], + [ + "▁dealers", + -11.643279075622559 + ], + [ + "▁scenery", + -11.643654823303223 + ], + [ + "▁Madison", + -11.643672943115234 + ], + [ + "▁mag", + -11.64383602142334 + ], + [ + "▁locksmith", + -11.644248008728027 + ], + [ + "▁glance", + -11.644248962402344 + ], + [ + "rou", + -11.644257545471191 + ], + [ + "▁por", + -11.644288063049316 + ], + [ + "▁eBay", + -11.644292831420898 + ], + [ + "▁Sl", + -11.644407272338867 + ], + [ + "stro", + -11.644449234008789 + ], + [ + "▁Bishop", + -11.644474983215332 + ], + [ + "▁bubble", + -11.644547462463379 + ], + [ + "50,000", + -11.644641876220703 + ], + [ + "▁pixels", + -11.644767761230469 + ], + [ + "▁ankle", + -11.644770622253418 + ], + [ + "▁Cab", + -11.644787788391113 + ], + [ + "▁Stir", + -11.644941329956055 + ], + [ + "LP", + -11.645008087158203 + ], + [ + "▁probe", + -11.645039558410645 + ], + [ + "quit", + -11.64505672454834 + ], + [ + "▁macro", + -11.645089149475098 + ], + [ + "▁Operations", + -11.645150184631348 + ], + [ + "▁Career", + -11.645244598388672 + ], + [ + "▁verified", + -11.645299911499023 + ], + [ + "morph", + -11.645477294921875 + ], + [ + "▁Reference", + -11.645492553710938 + ], + [ + "▁prohibited", + -11.645574569702148 + ], + [ + "▁contrary", + -11.645585060119629 + ], + [ + "▁verification", + -11.645682334899902 + ], + [ + "▁cleared", + -11.645718574523926 + ], + [ + "▁sunlight", + -11.645861625671387 + ], + [ + "▁dam", + -11.64615535736084 + ], + [ + "▁simpler", + -11.64616870880127 + ], + [ + "▁struggles", + -11.646321296691895 + ], + [ + "▁lending", + -11.646344184875488 + ], + [ + "▁swap", + -11.6464204788208 + ], + [ + "▁Graham", + -11.646444320678711 + ], + [ + "▁flowing", + -11.646489143371582 + ], + [ + "▁describing", + -11.646506309509277 + ], + [ + "▁founding", + -11.646509170532227 + ], + [ + "▁lend", + -11.646553993225098 + ], + [ + "▁Sara", + -11.646601676940918 + ], + [ + "▁Material", + -11.646632194519043 + ], + [ + "▁recognise", + -11.64669418334961 + ], + [ + "▁secretary", + -11.64736270904541 + ], + [ + "▁counting", + -11.647502899169922 + ], + [ + "▁AN", + -11.647509574890137 + ], + [ + "▁000", + -11.647578239440918 + ], + [ + "▁caution", + -11.647735595703125 + ], + [ + "▁clause", + -11.647880554199219 + ], + [ + "▁implant", + -11.64798355102539 + ], + [ + "▁Move", + -11.648038864135742 + ], + [ + "▁median", + -11.648093223571777 + ], + [ + "▁cache", + -11.648219108581543 + ], + [ + "▁None", + -11.648238182067871 + ], + [ + "6,", + -11.64848804473877 + ], + [ + "▁therapist", + -11.64870548248291 + ], + [ + "ifier", + -11.648795127868652 + ], + [ + "TU", + -11.648813247680664 + ], + [ + "rill", + -11.648819923400879 + ], + [ + "Mar", + -11.648834228515625 + ], + [ + "▁helmet", + -11.64885425567627 + ], + [ + "▁documented", + -11.648870468139648 + ], + [ + "▁Birmingham", + -11.648985862731934 + ], + [ + "▁scheduling", + -11.649333000183105 + ], + [ + "▁24,", + -11.649380683898926 + ], + [ + "ssen", + -11.649384498596191 + ], + [ + "▁elevated", + -11.649413108825684 + ], + [ + "sheet", + -11.649811744689941 + ], + [ + "▁96", + -11.650050163269043 + ], + [ + "▁wrist", + -11.65012264251709 + ], + [ + "▁rust", + -11.650147438049316 + ], + [ + "▁bias", + -11.650160789489746 + ], + [ + "▁90%", + -11.650485038757324 + ], + [ + "▁Chocolate", + -11.650493621826172 + ], + [ + "▁Franklin", + -11.650504112243652 + ], + [ + "▁BBQ", + -11.650618553161621 + ], + [ + "▁Around", + -11.65065860748291 + ], + [ + "▁Manhattan", + -11.65084171295166 + ], + [ + "▁Upper", + -11.650968551635742 + ], + [ + "▁Alternatively", + -11.651399612426758 + ], + [ + "SH", + -11.65141773223877 + ], + [ + "▁Ski", + -11.651573181152344 + ], + [ + "▁cherry", + -11.651728630065918 + ], + [ + "▁panic", + -11.651758193969727 + ], + [ + "▁refined", + -11.651914596557617 + ], + [ + "▁analysts", + -11.651922225952148 + ], + [ + "▁festivals", + -11.65196418762207 + ], + [ + "gun", + -11.652022361755371 + ], + [ + "▁musician", + -11.652071952819824 + ], + [ + "▁40%", + -11.652105331420898 + ], + [ + "▁AA", + -11.652462005615234 + ], + [ + "▁Morning", + -11.652621269226074 + ], + [ + "▁polymer", + -11.652704238891602 + ], + [ + "▁Orlando", + -11.652982711791992 + ], + [ + "▁sealed", + -11.65304946899414 + ], + [ + "▁Knowledge", + -11.653176307678223 + ], + [ + "▁Serve", + -11.653335571289062 + ], + [ + "pies", + -11.653594017028809 + ], + [ + "▁Flight", + -11.65361499786377 + ], + [ + "▁compounds", + -11.653670310974121 + ], + [ + "▁behaviors", + -11.653852462768555 + ], + [ + "▁spill", + -11.654024124145508 + ], + [ + "▁quicker", + -11.654403686523438 + ], + [ + "fil", + -11.654446601867676 + ], + [ + "▁Worth", + -11.654559135437012 + ], + [ + "rang", + -11.654808044433594 + ], + [ + "MT", + -11.655091285705566 + ], + [ + "▁soda", + -11.655133247375488 + ], + [ + "▁lands", + -11.655488014221191 + ], + [ + "ales", + -11.655491828918457 + ], + [ + "▁viable", + -11.655577659606934 + ], + [ + "▁rational", + -11.655648231506348 + ], + [ + "wards", + -11.655730247497559 + ], + [ + "▁explored", + -11.6560697555542 + ], + [ + "▁drying", + -11.656179428100586 + ], + [ + "▁Var", + -11.656288146972656 + ], + [ + "ered", + -11.656332015991211 + ], + [ + "▁catching", + -11.656380653381348 + ], + [ + "fest", + -11.656580924987793 + ], + [ + "▁albums", + -11.656661033630371 + ], + [ + "exe", + -11.656747817993164 + ], + [ + "tch", + -11.656866073608398 + ], + [ + "▁Pittsburgh", + -11.65692138671875 + ], + [ + "▁SMS", + -11.657003402709961 + ], + [ + "UB", + -11.65709400177002 + ], + [ + "▁seamless", + -11.657380104064941 + ], + [ + "▁necessity", + -11.657411575317383 + ], + [ + "▁Penn", + -11.657417297363281 + ], + [ + "▁NOTE", + -11.657685279846191 + ], + [ + "▁algorithms", + -11.657808303833008 + ], + [ + "▁enforce", + -11.65783405303955 + ], + [ + "lier", + -11.657927513122559 + ], + [ + "▁Stra", + -11.65793514251709 + ], + [ + "▁declare", + -11.657999038696289 + ], + [ + "▁Materials", + -11.658385276794434 + ], + [ + "▁Clo", + -11.658479690551758 + ], + [ + "▁Prices", + -11.658498764038086 + ], + [ + "▁breeze", + -11.658581733703613 + ], + [ + "▁outlook", + -11.658638000488281 + ], + [ + "▁indicators", + -11.658699989318848 + ], + [ + "▁tobacco", + -11.658699989318848 + ], + [ + "llen", + -11.658794403076172 + ], + [ + "itude", + -11.658930778503418 + ], + [ + "▁wondered", + -11.658939361572266 + ], + [ + "▁Rachel", + -11.6589937210083 + ], + [ + "▁mindset", + -11.6589994430542 + ], + [ + "▁clouds", + -11.65932846069336 + ], + [ + "▁fool", + -11.659329414367676 + ], + [ + "▁coordination", + -11.659496307373047 + ], + [ + "▁milestone", + -11.659554481506348 + ], + [ + "Time", + -11.65968132019043 + ], + [ + "▁amazed", + -11.659682273864746 + ], + [ + "▁UI", + -11.659947395324707 + ], + [ + "▁Contemporary", + -11.659993171691895 + ], + [ + "▁$9", + -11.660006523132324 + ], + [ + "▁Tile", + -11.660077095031738 + ], + [ + "▁accredited", + -11.660392761230469 + ], + [ + "▁Resource", + -11.660398483276367 + ], + [ + "▁Chu", + -11.660417556762695 + ], + [ + "▁Healthcare", + -11.661263465881348 + ], + [ + "▁Lawrence", + -11.661323547363281 + ], + [ + "▁awful", + -11.661476135253906 + ], + [ + "▁commands", + -11.661548614501953 + ], + [ + "▁Compare", + -11.661555290222168 + ], + [ + "▁counties", + -11.661827087402344 + ], + [ + "▁sandwich", + -11.661867141723633 + ], + [ + "filled", + -11.661869049072266 + ], + [ + ".99", + -11.661969184875488 + ], + [ + "▁pointing", + -11.661979675292969 + ], + [ + "▁Comments", + -11.662031173706055 + ], + [ + "▁polished", + -11.662071228027344 + ], + [ + "▁ONE", + -11.662800788879395 + ], + [ + "▁gospel", + -11.663008689880371 + ], + [ + "ape", + -11.663047790527344 + ], + [ + "RR", + -11.663129806518555 + ], + [ + "ARD", + -11.663180351257324 + ], + [ + "▁Carol", + -11.663188934326172 + ], + [ + "▁1920", + -11.66324520111084 + ], + [ + "▁calcium", + -11.663296699523926 + ], + [ + "▁Aaron", + -11.663358688354492 + ], + [ + "▁earthquake", + -11.663414001464844 + ], + [ + "▁theories", + -11.663468360900879 + ], + [ + "▁creamy", + -11.663508415222168 + ], + [ + "▁glimpse", + -11.663625717163086 + ], + [ + "▁watches", + -11.663883209228516 + ], + [ + "two", + -11.663993835449219 + ], + [ + "▁wore", + -11.664010047912598 + ], + [ + "▁terrific", + -11.66407299041748 + ], + [ + "▁Visa", + -11.664203643798828 + ], + [ + "Qu", + -11.664222717285156 + ], + [ + "▁ballot", + -11.664301872253418 + ], + [ + "▁vanity", + -11.664302825927734 + ], + [ + "▁dragon", + -11.664307594299316 + ], + [ + "▁stadium", + -11.664360046386719 + ], + [ + "▁licensing", + -11.66437816619873 + ], + [ + "▁pays", + -11.664408683776855 + ], + [ + "season", + -11.664548873901367 + ], + [ + "hara", + -11.664551734924316 + ], + [ + "▁Rest", + -11.664756774902344 + ], + [ + "▁prevents", + -11.665101051330566 + ], + [ + "threw", + -11.665175437927246 + ], + [ + "▁140", + -11.665189743041992 + ], + [ + "file", + -11.665221214294434 + ], + [ + "▁mit", + -11.665310859680176 + ], + [ + "▁practically", + -11.665325164794922 + ], + [ + "▁Flo", + -11.66533374786377 + ], + [ + "▁profound", + -11.66549015045166 + ], + [ + "ics", + -11.66551399230957 + ], + [ + "▁06", + -11.665685653686523 + ], + [ + "▁anticipate", + -11.665788650512695 + ], + [ + "▁sailing", + -11.665952682495117 + ], + [ + "hel", + -11.665986061096191 + ], + [ + "▁syrup", + -11.666169166564941 + ], + [ + "▁cakes", + -11.666229248046875 + ], + [ + "▁Jazz", + -11.666322708129883 + ], + [ + "▁solved", + -11.666460990905762 + ], + [ + "trip", + -11.666692733764648 + ], + [ + "corn", + -11.666915893554688 + ], + [ + "▁exhaust", + -11.666951179504395 + ], + [ + "▁Listen", + -11.667160034179688 + ], + [ + "▁Supply", + -11.667202949523926 + ], + [ + "▁equi", + -11.667314529418945 + ], + [ + "▁Swedish", + -11.667372703552246 + ], + [ + "▁ladder", + -11.667590141296387 + ], + [ + "▁chill", + -11.667718887329102 + ], + [ + "▁Analytics", + -11.667777061462402 + ], + [ + "▁picks", + -11.667818069458008 + ], + [ + "▁arc", + -11.668249130249023 + ], + [ + "▁Jobs", + -11.668316841125488 + ], + [ + "▁Arthur", + -11.668326377868652 + ], + [ + "▁Hell", + -11.66833782196045 + ], + [ + "▁Pure", + -11.668339729309082 + ], + [ + ":10", + -11.668384552001953 + ], + [ + "▁Buyer", + -11.66877555847168 + ], + [ + "▁chains", + -11.66893196105957 + ], + [ + "▁TH", + -11.669204711914062 + ], + [ + "▁clue", + -11.669210433959961 + ], + [ + "▁Barn", + -11.669325828552246 + ], + [ + "▁lineup", + -11.669527053833008 + ], + [ + "▁releasing", + -11.669570922851562 + ], + [ + "arra", + -11.66957950592041 + ], + [ + "▁editorial", + -11.669697761535645 + ], + [ + "▁remedy", + -11.669949531555176 + ], + [ + "zone", + -11.670371055603027 + ], + [ + "=\"", + -11.67060375213623 + ], + [ + "▁Steam", + -11.670796394348145 + ], + [ + "App", + -11.670880317687988 + ], + [ + "▁relatives", + -11.670988082885742 + ], + [ + "▁illustrations", + -11.671027183532715 + ], + [ + "design", + -11.671031951904297 + ], + [ + "ying", + -11.671159744262695 + ], + [ + "nine", + -11.671289443969727 + ], + [ + "▁sleeve", + -11.671357154846191 + ], + [ + "▁immigrants", + -11.671422958374023 + ], + [ + "▁compassion", + -11.671520233154297 + ], + [ + "▁glow", + -11.671642303466797 + ], + [ + "▁distant", + -11.671707153320312 + ], + [ + "standing", + -11.671738624572754 + ], + [ + "▁abundant", + -11.671797752380371 + ], + [ + "▁Climate", + -11.671821594238281 + ], + [ + "▁interpret", + -11.672065734863281 + ], + [ + "▁2007,", + -11.67219352722168 + ], + [ + "▁squeeze", + -11.67238998413086 + ], + [ + "MU", + -11.672405242919922 + ], + [ + "▁Bike", + -11.672626495361328 + ], + [ + "▁Military", + -11.67286491394043 + ], + [ + "▁farms", + -11.672933578491211 + ], + [ + "▁permanently", + -11.673253059387207 + ], + [ + "▁Karen", + -11.673277854919434 + ], + [ + "▁130", + -11.673369407653809 + ], + [ + "▁playground", + -11.673392295837402 + ], + [ + "zing", + -11.673514366149902 + ], + [ + "▁entrepreneur", + -11.67378044128418 + ], + [ + "▁threatened", + -11.673890113830566 + ], + [ + "smith", + -11.673972129821777 + ], + [ + "▁Pictures", + -11.674049377441406 + ], + [ + "media", + -11.674115180969238 + ], + [ + "▁vinegar", + -11.674148559570312 + ], + [ + "▁Tr", + -11.674189567565918 + ], + [ + "works", + -11.67457389831543 + ], + [ + "stat", + -11.674659729003906 + ], + [ + "inder", + -11.674870491027832 + ], + [ + "▁landed", + -11.674976348876953 + ], + [ + "▁specification", + -11.675302505493164 + ], + [ + "▁Pic", + -11.6754789352417 + ], + [ + "▁belongs", + -11.675487518310547 + ], + [ + "▁Sil", + -11.675619125366211 + ], + [ + "▁Gospel", + -11.676054954528809 + ], + [ + "▁Norway", + -11.676104545593262 + ], + [ + "▁educators", + -11.676156997680664 + ], + [ + "▁Expert", + -11.676198959350586 + ], + [ + "▁spreading", + -11.676207542419434 + ], + [ + "▁RC", + -11.676328659057617 + ], + [ + "▁haul", + -11.676839828491211 + ], + [ + "your", + -11.676886558532715 + ], + [ + "race", + -11.676952362060547 + ], + [ + "▁downloading", + -11.677017211914062 + ], + [ + "▁steak", + -11.67707633972168 + ], + [ + "▁Canyon", + -11.67763900756836 + ], + [ + "▁installations", + -11.677742958068848 + ], + [ + "▁ET", + -11.677823066711426 + ], + [ + "rent", + -11.677950859069824 + ], + [ + "▁improves", + -11.678010940551758 + ], + [ + "▁LinkedIn", + -11.678125381469727 + ], + [ + "▁fixing", + -11.678130149841309 + ], + [ + "alia", + -11.678370475769043 + ], + [ + "▁Nar", + -11.678410530090332 + ], + [ + "▁Corner", + -11.678488731384277 + ], + [ + "OO", + -11.67856502532959 + ], + [ + "▁duo", + -11.678628921508789 + ], + [ + "/2", + -11.6790771484375 + ], + [ + "▁Circle", + -11.679265975952148 + ], + [ + "▁runner", + -11.679275512695312 + ], + [ + "▁demonstrates", + -11.679338455200195 + ], + [ + "SON", + -11.679363250732422 + ], + [ + "▁Xbox", + -11.679367065429688 + ], + [ + "▁Chan", + -11.679553985595703 + ], + [ + "▁quoted", + -11.67969799041748 + ], + [ + "▁scared", + -11.679764747619629 + ], + [ + "▁backgrounds", + -11.67979621887207 + ], + [ + "▁Eagle", + -11.679892539978027 + ], + [ + "▁dietary", + -11.67990493774414 + ], + [ + "▁spices", + -11.679937362670898 + ], + [ + "▁assessments", + -11.680049896240234 + ], + [ + "▁incorrect", + -11.680267333984375 + ], + [ + "▁legend", + -11.680306434631348 + ], + [ + "▁(\"", + -11.680325508117676 + ], + [ + "▁connects", + -11.680347442626953 + ], + [ + "▁Economics", + -11.680404663085938 + ], + [ + "▁carriers", + -11.68045711517334 + ], + [ + "▁XP", + -11.680625915527344 + ], + [ + "force", + -11.680679321289062 + ], + [ + "▁newspapers", + -11.680828094482422 + ], + [ + "▁icons", + -11.681035995483398 + ], + [ + "▁IRS", + -11.681302070617676 + ], + [ + "SR", + -11.6813383102417 + ], + [ + "▁Success", + -11.681406021118164 + ], + [ + "▁partly", + -11.681501388549805 + ], + [ + "▁cables", + -11.681638717651367 + ], + [ + "uli", + -11.681639671325684 + ], + [ + "▁Parts", + -11.681680679321289 + ], + [ + "▁160", + -11.681844711303711 + ], + [ + "▁Prof", + -11.681851387023926 + ], + [ + "guard", + -11.681856155395508 + ], + [ + "▁TN", + -11.682169914245605 + ], + [ + "▁Lanka", + -11.682207107543945 + ], + [ + "▁Conditions", + -11.682366371154785 + ], + [ + "▁lips", + -11.6824312210083 + ], + [ + "▁Temp", + -11.682515144348145 + ], + [ + "▁Shore", + -11.683124542236328 + ], + [ + "▁Honor", + -11.683212280273438 + ], + [ + "▁dim", + -11.683287620544434 + ], + [ + "▁cop", + -11.683488845825195 + ], + [ + "vic", + -11.683710098266602 + ], + [ + "▁salon", + -11.68393325805664 + ], + [ + "cial", + -11.683956146240234 + ], + [ + "lag", + -11.684000968933105 + ], + [ + "▁legislative", + -11.684133529663086 + ], + [ + "hom", + -11.68439769744873 + ], + [ + "With", + -11.684476852416992 + ], + [ + "▁Options", + -11.684566497802734 + ], + [ + "▁Frame", + -11.684755325317383 + ], + [ + "▁driveway", + -11.684946060180664 + ], + [ + "▁renewal", + -11.685036659240723 + ], + [ + "▁Cyber", + -11.68523120880127 + ], + [ + "▁mothers", + -11.685454368591309 + ], + [ + "▁miracle", + -11.685599327087402 + ], + [ + "▁Transport", + -11.685624122619629 + ], + [ + "▁conditioner", + -11.685981750488281 + ], + [ + "▁pasta", + -11.685993194580078 + ], + [ + "▁damp", + -11.686239242553711 + ], + [ + "▁SUV", + -11.68636703491211 + ], + [ + "▁animated", + -11.686670303344727 + ], + [ + "▁collision", + -11.686729431152344 + ], + [ + "▁Faith", + -11.686958312988281 + ], + [ + "▁Kon", + -11.687023162841797 + ], + [ + "▁columns", + -11.687045097351074 + ], + [ + "▁Singh", + -11.687112808227539 + ], + [ + "▁Robin", + -11.687216758728027 + ], + [ + "▁demonstration", + -11.687238693237305 + ], + [ + "Art", + -11.687253952026367 + ], + [ + "▁Leader", + -11.687311172485352 + ], + [ + "▁ambitious", + -11.687403678894043 + ], + [ + "▁Yard", + -11.687421798706055 + ], + [ + "▁characterized", + -11.687490463256836 + ], + [ + "eric", + -11.687542915344238 + ], + [ + "▁performs", + -11.687589645385742 + ], + [ + "self", + -11.687616348266602 + ], + [ + "▁Command", + -11.687788009643555 + ], + [ + "nge", + -11.687844276428223 + ], + [ + "▁Wash", + -11.688029289245605 + ], + [ + "igan", + -11.688447952270508 + ], + [ + "▁shifting", + -11.688447952270508 + ], + [ + "▁sacred", + -11.688458442687988 + ], + [ + "▁Wright", + -11.688460350036621 + ], + [ + "▁mandate", + -11.688586235046387 + ], + [ + "▁portions", + -11.68859577178955 + ], + [ + "info", + -11.688705444335938 + ], + [ + "▁opponents", + -11.68885612487793 + ], + [ + "▁arrives", + -11.688972473144531 + ], + [ + "▁Customers", + -11.689103126525879 + ], + [ + "▁Kh", + -11.689200401306152 + ], + [ + "SB", + -11.689352035522461 + ], + [ + "▁Reviews", + -11.689401626586914 + ], + [ + "▁compression", + -11.689462661743164 + ], + [ + "▁organise", + -11.68950366973877 + ], + [ + "▁banner", + -11.689525604248047 + ], + [ + "hang", + -11.689603805541992 + ], + [ + "▁Ran", + -11.689725875854492 + ], + [ + "▁minority", + -11.689788818359375 + ], + [ + "▁elevation", + -11.689839363098145 + ], + [ + "▁Parents", + -11.690003395080566 + ], + [ + "л", + -11.69001293182373 + ], + [ + "?)", + -11.690285682678223 + ], + [ + "▁Strategy", + -11.690443992614746 + ], + [ + "▁Luc", + -11.690730094909668 + ], + [ + "▁2006.", + -11.690958976745605 + ], + [ + "▁tweet", + -11.690979957580566 + ], + [ + "▁analyses", + -11.691004753112793 + ], + [ + "ifying", + -11.691067695617676 + ], + [ + "vir", + -11.691070556640625 + ], + [ + "▁quantities", + -11.691266059875488 + ], + [ + "▁struggled", + -11.691488265991211 + ], + [ + "▁runners", + -11.691529273986816 + ], + [ + "▁styling", + -11.69172477722168 + ], + [ + "▁deny", + -11.69178581237793 + ], + [ + "▁finances", + -11.691924095153809 + ], + [ + "▁Weather", + -11.69200325012207 + ], + [ + "▁Earlier", + -11.692152976989746 + ], + [ + "▁SL", + -11.692278861999512 + ], + [ + "▁DM", + -11.69231128692627 + ], + [ + "▁foil", + -11.692346572875977 + ], + [ + "▁67", + -11.692384719848633 + ], + [ + "▁nut", + -11.69244384765625 + ], + [ + "▁jumped", + -11.692492485046387 + ], + [ + "igh", + -11.6929931640625 + ], + [ + "▁78", + -11.69301986694336 + ], + [ + "▁Vista", + -11.693094253540039 + ], + [ + "▁SB", + -11.693115234375 + ], + [ + "▁cholesterol", + -11.69329833984375 + ], + [ + "▁biology", + -11.693452835083008 + ], + [ + "▁probability", + -11.693735122680664 + ], + [ + "-25", + -11.693741798400879 + ], + [ + "▁MY", + -11.693741798400879 + ], + [ + "▁ethics", + -11.693906784057617 + ], + [ + "▁outlined", + -11.693961143493652 + ], + [ + "▁recovered", + -11.694279670715332 + ], + [ + "▁Heaven", + -11.694419860839844 + ], + [ + "▁metrics", + -11.69450855255127 + ], + [ + "▁consumed", + -11.694743156433105 + ], + [ + "▁Same", + -11.694755554199219 + ], + [ + "▁Pri", + -11.695362091064453 + ], + [ + "sub", + -11.69543743133545 + ], + [ + "▁GE", + -11.695508003234863 + ], + [ + "▁slower", + -11.695514678955078 + ], + [ + "mph", + -11.69558334350586 + ], + [ + "▁footprint", + -11.69571304321289 + ], + [ + "▁delays", + -11.695791244506836 + ], + [ + "▁syn", + -11.695845603942871 + ], + [ + "▁woods", + -11.695894241333008 + ], + [ + "▁Morris", + -11.696040153503418 + ], + [ + "▁mint", + -11.696081161499023 + ], + [ + "▁Victorian", + -11.696128845214844 + ], + [ + "▁daughters", + -11.696213722229004 + ], + [ + "▁hung", + -11.696329116821289 + ], + [ + "▁messaging", + -11.696455001831055 + ], + [ + "▁casting", + -11.696537971496582 + ], + [ + "DB", + -11.69654369354248 + ], + [ + "▁von", + -11.696976661682129 + ], + [ + "▁preliminary", + -11.697110176086426 + ], + [ + "▁nowhere", + -11.697150230407715 + ], + [ + "▁Fig", + -11.697186470031738 + ], + [ + "▁disciplines", + -11.697199821472168 + ], + [ + "▁sponsors", + -11.697395324707031 + ], + [ + "▁museums", + -11.69784164428711 + ], + [ + "▁Scout", + -11.697879791259766 + ], + [ + "▁Cr", + -11.697975158691406 + ], + [ + "cos", + -11.698322296142578 + ], + [ + "▁homeless", + -11.698386192321777 + ], + [ + "founder", + -11.698413848876953 + ], + [ + "▁Budget", + -11.698493957519531 + ], + [ + "▁nationally", + -11.698563575744629 + ], + [ + "rator", + -11.698678970336914 + ], + [ + "▁plaintiff", + -11.698698997497559 + ], + [ + "pha", + -11.698716163635254 + ], + [ + "▁defendant", + -11.69873046875 + ], + [ + "▁vibration", + -11.698742866516113 + ], + [ + "▁bare", + -11.698744773864746 + ], + [ + "▁proximity", + -11.699301719665527 + ], + [ + "▁flame", + -11.699416160583496 + ], + [ + "▁guarantees", + -11.699535369873047 + ], + [ + "umble", + -11.69954776763916 + ], + [ + "dec", + -11.69963264465332 + ], + [ + "▁resemble", + -11.699691772460938 + ], + [ + "▁Competition", + -11.699740409851074 + ], + [ + "▁lodge", + -11.6998291015625 + ], + [ + "▁Volume", + -11.699830055236816 + ], + [ + "▁existed", + -11.699917793273926 + ], + [ + "▁funnel", + -11.700104713439941 + ], + [ + "first", + -11.700105667114258 + ], + [ + "▁Planet", + -11.700343132019043 + ], + [ + "▁pads", + -11.700379371643066 + ], + [ + "▁responding", + -11.70039176940918 + ], + [ + "glu", + -11.700407981872559 + ], + [ + "lish", + -11.700562477111816 + ], + [ + "dell", + -11.700590133666992 + ], + [ + "▁(8", + -11.7007474899292 + ], + [ + "▁resin", + -11.700927734375 + ], + [ + "▁tendency", + -11.700936317443848 + ], + [ + "▁Syn", + -11.701027870178223 + ], + [ + "▁dashboard", + -11.701169967651367 + ], + [ + "▁starter", + -11.701309204101562 + ], + [ + "▁Nursing", + -11.701632499694824 + ], + [ + "▁march", + -11.702001571655273 + ], + [ + "▁passive", + -11.70219898223877 + ], + [ + "kle", + -11.702337265014648 + ], + [ + "▁Princess", + -11.702742576599121 + ], + [ + "▁Joint", + -11.702760696411133 + ], + [ + "▁rankings", + -11.702795028686523 + ], + [ + "▁86", + -11.70280647277832 + ], + [ + "▁pause", + -11.702836990356445 + ], + [ + "HL", + -11.702886581420898 + ], + [ + "▁qualifications", + -11.702957153320312 + ], + [ + "▁earliest", + -11.703062057495117 + ], + [ + "▁strikes", + -11.70360279083252 + ], + [ + "did", + -11.70368480682373 + ], + [ + "▁Decor", + -11.703810691833496 + ], + [ + "rop", + -11.703857421875 + ], + [ + "mill", + -11.703939437866211 + ], + [ + "▁Artist", + -11.703996658325195 + ], + [ + "attracted", + -11.704047203063965 + ], + [ + "mbo", + -11.704414367675781 + ], + [ + "discusses", + -11.704567909240723 + ], + [ + "▁Shower", + -11.704581260681152 + ], + [ + "▁supermarket", + -11.704641342163086 + ], + [ + "▁Traditional", + -11.704649925231934 + ], + [ + "▁shallow", + -11.70468807220459 + ], + [ + "ente", + -11.704895973205566 + ], + [ + "▁HVAC", + -11.704936027526855 + ], + [ + "change", + -11.70495319366455 + ], + [ + "mers", + -11.704965591430664 + ], + [ + "▁fossil", + -11.704972267150879 + ], + [ + "ION", + -11.705078125 + ], + [ + "▁Sw", + -11.705117225646973 + ], + [ + "▁LI", + -11.705126762390137 + ], + [ + "▁bitter", + -11.705281257629395 + ], + [ + "▁Walter", + -11.705320358276367 + ], + [ + "▁projected", + -11.705395698547363 + ], + [ + "ponent", + -11.705670356750488 + ], + [ + "▁hockey", + -11.705782890319824 + ], + [ + "▁Sugar", + -11.705886840820312 + ], + [ + "▁beside", + -11.706012725830078 + ], + [ + "▁regulated", + -11.706021308898926 + ], + [ + "▁Palestinian", + -11.70604133605957 + ], + [ + "▁fibre", + -11.706050872802734 + ], + [ + "▁Def", + -11.706056594848633 + ], + [ + "▁sleek", + -11.70622444152832 + ], + [ + "angle", + -11.70639419555664 + ], + [ + "▁briefly", + -11.706514358520508 + ], + [ + "▁Belgium", + -11.706665992736816 + ], + [ + "fect", + -11.706733703613281 + ], + [ + "hart", + -11.706802368164062 + ], + [ + "▁Wing", + -11.706833839416504 + ], + [ + "▁Speaker", + -11.706897735595703 + ], + [ + "▁Roger", + -11.706929206848145 + ], + [ + "▁webinar", + -11.707306861877441 + ], + [ + "▁spr", + -11.70739459991455 + ], + [ + "▁74", + -11.707881927490234 + ], + [ + "ional", + -11.707985877990723 + ], + [ + "▁Hawk", + -11.708075523376465 + ], + [ + "▁compiled", + -11.708209991455078 + ], + [ + "hawk", + -11.708245277404785 + ], + [ + "▁Oscar", + -11.708281517028809 + ], + [ + "▁builder", + -11.708306312561035 + ], + [ + "▁duct", + -11.708362579345703 + ], + [ + "▁VIP", + -11.708883285522461 + ], + [ + "▁Baptist", + -11.709197998046875 + ], + [ + "▁spicy", + -11.709249496459961 + ], + [ + "▁silly", + -11.709260940551758 + ], + [ + "▁Scar", + -11.709305763244629 + ], + [ + "▁sells", + -11.709308624267578 + ], + [ + "▁Rail", + -11.70954704284668 + ], + [ + "▁Qua", + -11.70958137512207 + ], + [ + "▁beating", + -11.70974349975586 + ], + [ + "▁consequence", + -11.709747314453125 + ], + [ + "▁Campbell", + -11.71015739440918 + ], + [ + "version", + -11.710365295410156 + ], + [ + "▁extraction", + -11.710409164428711 + ], + [ + "heat", + -11.710511207580566 + ], + [ + "▁Wireless", + -11.710561752319336 + ], + [ + "2.1", + -11.710615158081055 + ], + [ + "icle", + -11.710710525512695 + ], + [ + "▁Aqua", + -11.710929870605469 + ], + [ + "▁bachelor", + -11.711318016052246 + ], + [ + "▁correlation", + -11.711318969726562 + ], + [ + "Luckily", + -11.71135425567627 + ], + [ + "▁SF", + -11.711496353149414 + ], + [ + "▁unfold", + -11.711528778076172 + ], + [ + "▁GR", + -11.711548805236816 + ], + [ + "graphic", + -11.711676597595215 + ], + [ + "▁Dakota", + -11.711769104003906 + ], + [ + "▁drift", + -11.71194076538086 + ], + [ + "▁creator", + -11.712284088134766 + ], + [ + "▁15%", + -11.712324142456055 + ], + [ + "▁Kennedy", + -11.71252727508545 + ], + [ + "▁Gor", + -11.712532997131348 + ], + [ + "WD", + -11.713242530822754 + ], + [ + "▁expose", + -11.713393211364746 + ], + [ + "▁lacking", + -11.71341609954834 + ], + [ + "▁Zen", + -11.713700294494629 + ], + [ + "▁broth", + -11.713723182678223 + ], + [ + "▁relay", + -11.713735580444336 + ], + [ + "▁journalists", + -11.713762283325195 + ], + [ + "▁meantime", + -11.71381664276123 + ], + [ + "▁databases", + -11.713841438293457 + ], + [ + "▁Someone", + -11.713875770568848 + ], + [ + "▁nominated", + -11.7139253616333 + ], + [ + "▁namely", + -11.71395206451416 + ], + [ + "▁grandmother", + -11.713953018188477 + ], + [ + "▁incidents", + -11.714051246643066 + ], + [ + "▁CM", + -11.714241027832031 + ], + [ + "▁pedestrian", + -11.714306831359863 + ], + [ + "▁Wave", + -11.714395523071289 + ], + [ + "▁washed", + -11.714449882507324 + ], + [ + "▁Corn", + -11.714452743530273 + ], + [ + "▁Emily", + -11.71451473236084 + ], + [ + "▁apples", + -11.714654922485352 + ], + [ + "owner", + -11.714715003967285 + ], + [ + "▁affiliated", + -11.714726448059082 + ], + [ + "▁Rapid", + -11.714863777160645 + ], + [ + "▁Builder", + -11.714971542358398 + ], + [ + "ryl", + -11.715023040771484 + ], + [ + "▁Provider", + -11.715073585510254 + ], + [ + "▁curl", + -11.71514892578125 + ], + [ + "▁beverage", + -11.715182304382324 + ], + [ + "flower", + -11.715324401855469 + ], + [ + "▁Higher", + -11.71536922454834 + ], + [ + "▁yeah", + -11.71547794342041 + ], + [ + "▁Lauren", + -11.715760231018066 + ], + [ + "ologist", + -11.715786933898926 + ], + [ + "▁Person", + -11.71639633178711 + ], + [ + "uke", + -11.716449737548828 + ], + [ + "▁Meta", + -11.716545104980469 + ], + [ + "▁Diet", + -11.716706275939941 + ], + [ + "▁Academic", + -11.716711044311523 + ], + [ + "▁05", + -11.716885566711426 + ], + [ + "▁vis", + -11.717058181762695 + ], + [ + "▁Storm", + -11.7174072265625 + ], + [ + "▁Sab", + -11.717684745788574 + ], + [ + "Typically", + -11.717702865600586 + ], + [ + "TED", + -11.717926979064941 + ], + [ + "BM", + -11.717931747436523 + ], + [ + "▁financially", + -11.71829605102539 + ], + [ + "8)", + -11.718317031860352 + ], + [ + "▁deploy", + -11.71838092803955 + ], + [ + "May", + -11.71847152709961 + ], + [ + "lich", + -11.718615531921387 + ], + [ + "▁forex", + -11.718616485595703 + ], + [ + "▁Tur", + -11.718688011169434 + ], + [ + "▁comprising", + -11.718753814697266 + ], + [ + "▁Carbon", + -11.718836784362793 + ], + [ + "working", + -11.71899127960205 + ], + [ + "may", + -11.719173431396484 + ], + [ + "▁hypo", + -11.719391822814941 + ], + [ + "2014", + -11.719507217407227 + ], + [ + "▁exploit", + -11.719600677490234 + ], + [ + "mination", + -11.719765663146973 + ], + [ + "▁tissues", + -11.719829559326172 + ], + [ + "▁Wear", + -11.719991683959961 + ], + [ + "▁OP", + -11.720014572143555 + ], + [ + "▁Bright", + -11.72005558013916 + ], + [ + "▁incentives", + -11.72005558013916 + ], + [ + "▁Wheel", + -11.720535278320312 + ], + [ + "▁SU", + -11.72059154510498 + ], + [ + "▁Bonus", + -11.720719337463379 + ], + [ + "▁bot", + -11.720808982849121 + ], + [ + "▁bloggers", + -11.721019744873047 + ], + [ + "▁alloy", + -11.721070289611816 + ], + [ + "▁Potter", + -11.721110343933105 + ], + [ + "▁Cable", + -11.721240043640137 + ], + [ + "itter", + -11.721446990966797 + ], + [ + "▁extensions", + -11.721508979797363 + ], + [ + "▁dealership", + -11.721543312072754 + ], + [ + "buy", + -11.721813201904297 + ], + [ + "▁Stream", + -11.722142219543457 + ], + [ + "▁Residential", + -11.722171783447266 + ], + [ + "▁humble", + -11.722367286682129 + ], + [ + "▁tenants", + -11.722565650939941 + ], + [ + "stic", + -11.722735404968262 + ], + [ + "▁socks", + -11.722752571105957 + ], + [ + "▁Chelsea", + -11.722855567932129 + ], + [ + "evi", + -11.722869873046875 + ], + [ + "▁refugees", + -11.722919464111328 + ], + [ + "lain", + -11.723214149475098 + ], + [ + "▁protects", + -11.723337173461914 + ], + [ + "▁Honey", + -11.723454475402832 + ], + [ + "▁liner", + -11.72350025177002 + ], + [ + "▁avoided", + -11.723670959472656 + ], + [ + "▁Kid", + -11.723747253417969 + ], + [ + "5,", + -11.723791122436523 + ], + [ + "▁18,", + -11.723799705505371 + ], + [ + "▁clips", + -11.724013328552246 + ], + [ + "▁illustration", + -11.724166870117188 + ], + [ + "NU", + -11.72421932220459 + ], + [ + "▁acne", + -11.724231719970703 + ], + [ + "▁priest", + -11.72459888458252 + ], + [ + "▁Looks", + -11.724709510803223 + ], + [ + "▁blogger", + -11.724749565124512 + ], + [ + "around", + -11.724910736083984 + ], + [ + "▁perfection", + -11.725065231323242 + ], + [ + "▁Phase", + -11.725098609924316 + ], + [ + "▁anxious", + -11.725255012512207 + ], + [ + "▁comfortably", + -11.725299835205078 + ], + [ + "▁concerts", + -11.725472450256348 + ], + [ + "▁zoom", + -11.72553825378418 + ], + [ + "▁Marie", + -11.725664138793945 + ], + [ + "borough", + -11.725729942321777 + ], + [ + "▁parish", + -11.726054191589355 + ], + [ + "▁brochure", + -11.726079940795898 + ], + [ + "▁schedules", + -11.726101875305176 + ], + [ + "cum", + -11.726106643676758 + ], + [ + "▁Cri", + -11.726144790649414 + ], + [ + "▁withdraw", + -11.726155281066895 + ], + [ + "spi", + -11.72616958618164 + ], + [ + "▁eliminating", + -11.726180076599121 + ], + [ + "hit", + -11.726511001586914 + ], + [ + "▁hiding", + -11.726511001586914 + ], + [ + "especially", + -11.726556777954102 + ], + [ + "lem", + -11.726632118225098 + ], + [ + "▁simplicity", + -11.726731300354004 + ], + [ + "▁Cisco", + -11.726826667785645 + ], + [ + "lux", + -11.727020263671875 + ], + [ + "▁pumps", + -11.727044105529785 + ], + [ + "▁Pour", + -11.727067947387695 + ], + [ + "▁advocacy", + -11.727357864379883 + ], + [ + "▁evolving", + -11.727428436279297 + ], + [ + "▁sheer", + -11.727466583251953 + ], + [ + "dling", + -11.727745056152344 + ], + [ + "▁£2", + -11.727749824523926 + ], + [ + "▁conflicts", + -11.72782039642334 + ], + [ + "6)", + -11.727875709533691 + ], + [ + "▁eaten", + -11.727890014648438 + ], + [ + "▁14.", + -11.727909088134766 + ], + [ + "▁economics", + -11.728137969970703 + ], + [ + "▁Taiwan", + -11.728224754333496 + ], + [ + "▁Mercedes", + -11.728235244750977 + ], + [ + "▁Teacher", + -11.728800773620605 + ], + [ + "▁INC", + -11.728880882263184 + ], + [ + "▁influential", + -11.729214668273926 + ], + [ + "doc", + -11.729580879211426 + ], + [ + "▁Certification", + -11.729591369628906 + ], + [ + "▁Breakfast", + -11.729650497436523 + ], + [ + "▁premiere", + -11.72966194152832 + ], + [ + "▁novels", + -11.729694366455078 + ], + [ + "▁Photos", + -11.730071067810059 + ], + [ + "▁Warren", + -11.730094909667969 + ], + [ + "▁Stewart", + -11.730170249938965 + ], + [ + "▁bounce", + -11.730196952819824 + ], + [ + "▁Faculty", + -11.730219841003418 + ], + [ + "▁bend", + -11.730399131774902 + ], + [ + "▁colon", + -11.730412483215332 + ], + [ + "▁consensus", + -11.73042106628418 + ], + [ + "▁assembled", + -11.730521202087402 + ], + [ + "▁Explorer", + -11.730650901794434 + ], + [ + "▁seafood", + -11.730758666992188 + ], + [ + "▁neighborhoods", + -11.730775833129883 + ], + [ + "RN", + -11.73080062866211 + ], + [ + "bud", + -11.730855941772461 + ], + [ + "▁listened", + -11.730920791625977 + ], + [ + "▁toast", + -11.731014251708984 + ], + [ + "▁travels", + -11.731025695800781 + ], + [ + "best", + -11.731101989746094 + ], + [ + "▁ranges", + -11.731130599975586 + ], + [ + "▁Dal", + -11.731178283691406 + ], + [ + "para", + -11.73133373260498 + ], + [ + "▁Mari", + -11.73134708404541 + ], + [ + "▁dye", + -11.731392860412598 + ], + [ + "consisting", + -11.731489181518555 + ], + [ + "▁altogether", + -11.731515884399414 + ], + [ + "IES", + -11.731673240661621 + ], + [ + "▁Alice", + -11.73169231414795 + ], + [ + "▁smallest", + -11.731751441955566 + ], + [ + "▁bush", + -11.731908798217773 + ], + [ + "▁bur", + -11.732099533081055 + ], + [ + "▁distinguish", + -11.732632637023926 + ], + [ + "▁mechanics", + -11.732695579528809 + ], + [ + "▁acrylic", + -11.733039855957031 + ], + [ + "▁throat", + -11.733077049255371 + ], + [ + "▁Audi", + -11.733080863952637 + ], + [ + "▁explosion", + -11.733115196228027 + ], + [ + "▁LG", + -11.73322868347168 + ], + [ + "▁Egyptian", + -11.733266830444336 + ], + [ + "▁adhesive", + -11.733330726623535 + ], + [ + "lau", + -11.733389854431152 + ], + [ + "▁rival", + -11.733526229858398 + ], + [ + "▁Standards", + -11.73354434967041 + ], + [ + "▁backdrop", + -11.733914375305176 + ], + [ + "▁Harbor", + -11.733975410461426 + ], + [ + "▁Discussion", + -11.733978271484375 + ], + [ + "▁penalties", + -11.734124183654785 + ], + [ + "▁saves", + -11.734261512756348 + ], + [ + "train", + -11.734312057495117 + ], + [ + "▁Muslims", + -11.734326362609863 + ], + [ + "enberg", + -11.734428405761719 + ], + [ + "▁camps", + -11.734539031982422 + ], + [ + "▁Luxury", + -11.734580993652344 + ], + [ + "▁gloves", + -11.734644889831543 + ], + [ + "▁Gate", + -11.734984397888184 + ], + [ + "▁Guest", + -11.734992980957031 + ], + [ + "was", + -11.735060691833496 + ], + [ + "NE", + -11.735087394714355 + ], + [ + "▁Notes", + -11.735103607177734 + ], + [ + "family", + -11.735122680664062 + ], + [ + "▁modification", + -11.735176086425781 + ], + [ + "▁cage", + -11.735265731811523 + ], + [ + "▁shareholders", + -11.735932350158691 + ], + [ + "▁snake", + -11.735950469970703 + ], + [ + "▁custody", + -11.736120223999023 + ], + [ + "▁energetic", + -11.736221313476562 + ], + [ + "▁20,", + -11.736226081848145 + ], + [ + "▁Qui", + -11.736437797546387 + ], + [ + "stor", + -11.73647689819336 + ], + [ + "▁coated", + -11.736669540405273 + ], + [ + "▁coordinate", + -11.73670768737793 + ], + [ + "▁subscribers", + -11.737015724182129 + ], + [ + "NG", + -11.737027168273926 + ], + [ + "▁diploma", + -11.737175941467285 + ], + [ + "▁Gov", + -11.737343788146973 + ], + [ + "▁certificates", + -11.737617492675781 + ], + [ + "▁$500", + -11.737649917602539 + ], + [ + "▁notebook", + -11.737804412841797 + ], + [ + "▁elephant", + -11.737866401672363 + ], + [ + "▁Sean", + -11.737937927246094 + ], + [ + "▁Teaching", + -11.738068580627441 + ], + [ + "▁Thi", + -11.738136291503906 + ], + [ + "disciplinary", + -11.73814582824707 + ], + [ + "▁Carter", + -11.738265991210938 + ], + [ + "built", + -11.738377571105957 + ], + [ + "▁trunk", + -11.738425254821777 + ], + [ + "▁reside", + -11.738804817199707 + ], + [ + "IST", + -11.738818168640137 + ], + [ + "▁coordinator", + -11.73910140991211 + ], + [ + "lick", + -11.739105224609375 + ], + [ + "▁testimony", + -11.73910903930664 + ], + [ + "▁conveniently", + -11.739184379577637 + ], + [ + "▁stain", + -11.739302635192871 + ], + [ + "▁71", + -11.739554405212402 + ], + [ + "▁Essential", + -11.739631652832031 + ], + [ + "▁stereo", + -11.739686012268066 + ], + [ + "▁avail", + -11.739827156066895 + ], + [ + "▁Edinburgh", + -11.740022659301758 + ], + [ + "▁Circuit", + -11.740174293518066 + ], + [ + "▁WILL", + -11.740193367004395 + ], + [ + "ANT", + -11.740256309509277 + ], + [ + "▁medal", + -11.740262985229492 + ], + [ + "▁discomfort", + -11.740419387817383 + ], + [ + "▁strips", + -11.740509033203125 + ], + [ + "▁democratic", + -11.740514755249023 + ], + [ + "▁CAR", + -11.740720748901367 + ], + [ + "▁Lot", + -11.741116523742676 + ], + [ + "▁(9", + -11.741125106811523 + ], + [ + "▁infected", + -11.74117660522461 + ], + [ + "▁analyst", + -11.741205215454102 + ], + [ + "Don", + -11.741267204284668 + ], + [ + "▁Theater", + -11.741292953491211 + ], + [ + "/1", + -11.741338729858398 + ], + [ + "▁partition", + -11.74142837524414 + ], + [ + "▁tenant", + -11.741584777832031 + ], + [ + "6,000", + -11.741596221923828 + ], + [ + "▁1930", + -11.741657257080078 + ], + [ + "▁switches", + -11.741729736328125 + ], + [ + "▁Sci", + -11.741948127746582 + ], + [ + "▁gratitude", + -11.742080688476562 + ], + [ + "▁outreach", + -11.742130279541016 + ], + [ + "AV", + -11.742223739624023 + ], + [ + "▁reject", + -11.742274284362793 + ], + [ + "▁countryside", + -11.7423095703125 + ], + [ + "▁1983", + -11.742377281188965 + ], + [ + "vie", + -11.742453575134277 + ], + [ + "▁congregation", + -11.742513656616211 + ], + [ + "▁Shopping", + -11.74254035949707 + ], + [ + "▁photographers", + -11.74273681640625 + ], + [ + "▁spotted", + -11.742907524108887 + ], + [ + "▁terrorist", + -11.743046760559082 + ], + [ + "pul", + -11.743091583251953 + ], + [ + "▁pending", + -11.743182182312012 + ], + [ + "gged", + -11.743358612060547 + ], + [ + "▁modifications", + -11.743389129638672 + ], + [ + "▁Deal", + -11.743490219116211 + ], + [ + "▁Kir", + -11.744098663330078 + ], + [ + "▁adviser", + -11.744102478027344 + ], + [ + "▁Linda", + -11.74413013458252 + ], + [ + "ident", + -11.74413776397705 + ], + [ + "rose", + -11.744279861450195 + ], + [ + "▁Initiative", + -11.744525909423828 + ], + [ + "▁Hop", + -11.74460220336914 + ], + [ + "▁Xi", + -11.744630813598633 + ], + [ + "dry", + -11.744766235351562 + ], + [ + "▁supplying", + -11.744830131530762 + ], + [ + "▁imported", + -11.745074272155762 + ], + [ + "▁Category", + -11.745495796203613 + ], + [ + "kers", + -11.745718002319336 + ], + [ + "],", + -11.745804786682129 + ], + [ + "▁Format", + -11.745804786682129 + ], + [ + "▁prim", + -11.745806694030762 + ], + [ + "metry", + -11.746000289916992 + ], + [ + "▁Statement", + -11.746031761169434 + ], + [ + "▁insulin", + -11.74611759185791 + ], + [ + "CN", + -11.746201515197754 + ], + [ + "▁Answer", + -11.746214866638184 + ], + [ + "▁Madrid", + -11.746268272399902 + ], + [ + "dict", + -11.746609687805176 + ], + [ + "nell", + -11.746798515319824 + ], + [ + "pid", + -11.746837615966797 + ], + [ + "▁0.5", + -11.746914863586426 + ], + [ + "▁MBA", + -11.746992111206055 + ], + [ + "▁accessing", + -11.747035026550293 + ], + [ + "▁Boot", + -11.747114181518555 + ], + [ + "ault", + -11.747349739074707 + ], + [ + "fici", + -11.747580528259277 + ], + [ + "▁Pearl", + -11.747608184814453 + ], + [ + "▁Agent", + -11.747637748718262 + ], + [ + "▁Recovery", + -11.747796058654785 + ], + [ + "▁69", + -11.747808456420898 + ], + [ + "▁Unique", + -11.747941970825195 + ], + [ + "▁duplicate", + -11.748025894165039 + ], + [ + "▁complain", + -11.748188018798828 + ], + [ + "▁cliff", + -11.748418807983398 + ], + [ + "▁Bake", + -11.748466491699219 + ], + [ + "▁Fellow", + -11.748931884765625 + ], + [ + "▁defeated", + -11.748934745788574 + ], + [ + "▁Truth", + -11.74911117553711 + ], + [ + "▁Solid", + -11.749242782592773 + ], + [ + "▁lover", + -11.749299049377441 + ], + [ + "east", + -11.749403953552246 + ], + [ + "▁holistic", + -11.749412536621094 + ], + [ + "▁drawer", + -11.749537467956543 + ], + [ + "▁witnessed", + -11.749648094177246 + ], + [ + "▁greenhouse", + -11.75027084350586 + ], + [ + "▁caps", + -11.750365257263184 + ], + [ + "▁fond", + -11.750443458557129 + ], + [ + "▁Studios", + -11.75049877166748 + ], + [ + "▁phrases", + -11.750675201416016 + ], + [ + "▁seventh", + -11.750687599182129 + ], + [ + "▁Brexit", + -11.750694274902344 + ], + [ + "script", + -11.750800132751465 + ], + [ + "▁Cultural", + -11.750871658325195 + ], + [ + "▁NHS", + -11.75091552734375 + ], + [ + "▁rivers", + -11.7509183883667 + ], + [ + "▁mph", + -11.750962257385254 + ], + [ + "▁Trip", + -11.75104808807373 + ], + [ + "▁recruit", + -11.75109577178955 + ], + [ + "▁imposed", + -11.751263618469238 + ], + [ + "▁cal", + -11.751286506652832 + ], + [ + "▁faucet", + -11.751333236694336 + ], + [ + "▁worries", + -11.751564025878906 + ], + [ + "▁Various", + -11.75173568725586 + ], + [ + "tens", + -11.751782417297363 + ], + [ + "OM", + -11.752129554748535 + ], + [ + "▁365", + -11.75228500366211 + ], + [ + "▁remodeling", + -11.752432823181152 + ], + [ + "▁tones", + -11.752552032470703 + ], + [ + "own", + -11.752554893493652 + ], + [ + "▁Egg", + -11.752875328063965 + ], + [ + "▁inevitable", + -11.752978324890137 + ], + [ + "▁bears", + -11.752996444702148 + ], + [ + "▁thereof", + -11.753127098083496 + ], + [ + "▁Czech", + -11.753158569335938 + ], + [ + "when", + -11.753230094909668 + ], + [ + "▁cam", + -11.753412246704102 + ], + [ + "▁Wonder", + -11.753538131713867 + ], + [ + "▁chrome", + -11.753585815429688 + ], + [ + "▁discrimination", + -11.753915786743164 + ], + [ + "▁sticks", + -11.754034042358398 + ], + [ + "▁Rice", + -11.75415325164795 + ], + [ + "▁92", + -11.75416374206543 + ], + [ + "ndra", + -11.75430965423584 + ], + [ + "▁88", + -11.75436019897461 + ], + [ + "▁poorly", + -11.754376411437988 + ], + [ + "▁investigating", + -11.75444507598877 + ], + [ + "▁happily", + -11.754470825195312 + ], + [ + "▁spirits", + -11.754518508911133 + ], + [ + "Min", + -11.754571914672852 + ], + [ + "▁gay", + -11.755073547363281 + ], + [ + "▁Lev", + -11.755209922790527 + ], + [ + "▁traded", + -11.755209922790527 + ], + [ + "▁Archives", + -11.755218505859375 + ], + [ + "▁knit", + -11.755430221557617 + ], + [ + "▁3.0", + -11.755475044250488 + ], + [ + "hid", + -11.755825996398926 + ], + [ + "char", + -11.75583553314209 + ], + [ + "▁burned", + -11.755988121032715 + ], + [ + "▁investigations", + -11.756071090698242 + ], + [ + "OW", + -11.756446838378906 + ], + [ + "▁researching", + -11.756546974182129 + ], + [ + "▁admire", + -11.756641387939453 + ], + [ + "▁Privacy", + -11.756662368774414 + ], + [ + "▁heroes", + -11.756733894348145 + ], + [ + "lex", + -11.756763458251953 + ], + [ + "▁Lighting", + -11.757002830505371 + ], + [ + "▁technician", + -11.757133483886719 + ], + [ + "▁mixer", + -11.757184028625488 + ], + [ + "ALL", + -11.757349967956543 + ], + [ + "suit", + -11.757678031921387 + ], + [ + "▁Samuel", + -11.757688522338867 + ], + [ + "human", + -11.757772445678711 + ], + [ + "cil", + -11.757804870605469 + ], + [ + "▁moist", + -11.757952690124512 + ], + [ + "▁tolerance", + -11.757957458496094 + ], + [ + "▁bonuses", + -11.757980346679688 + ], + [ + "▁Dollar", + -11.758034706115723 + ], + [ + "▁Emma", + -11.758100509643555 + ], + [ + "▁innovations", + -11.75815200805664 + ], + [ + "▁initiated", + -11.758332252502441 + ], + [ + "▁Response", + -11.758349418640137 + ], + [ + "▁spoil", + -11.758487701416016 + ], + [ + "emon", + -11.75853157043457 + ], + [ + "▁linking", + -11.75857162475586 + ], + [ + "plex", + -11.758574485778809 + ], + [ + "changing", + -11.758711814880371 + ], + [ + "▁sciences", + -11.758866310119629 + ], + [ + "▁Kil", + -11.758996963500977 + ], + [ + "▁rigid", + -11.759255409240723 + ], + [ + "▁elect", + -11.759385108947754 + ], + [ + "add", + -11.759749412536621 + ], + [ + "▁pur", + -11.75992202758789 + ], + [ + "purpose", + -11.759930610656738 + ], + [ + "2018", + -11.75993824005127 + ], + [ + "▁Heavy", + -11.760170936584473 + ], + [ + "▁traditionally", + -11.760523796081543 + ], + [ + "azi", + -11.760581016540527 + ], + [ + "▁facebook", + -11.760621070861816 + ], + [ + "▁warmer", + -11.760812759399414 + ], + [ + "▁Advisor", + -11.760968208312988 + ], + [ + "▁Rat", + -11.761065483093262 + ], + [ + "▁mega", + -11.761200904846191 + ], + [ + "▁loft", + -11.761468887329102 + ], + [ + "▁configure", + -11.76147747039795 + ], + [ + "asse", + -11.761482238769531 + ], + [ + "▁Din", + -11.761512756347656 + ], + [ + "duc", + -11.761618614196777 + ], + [ + "pra", + -11.761619567871094 + ], + [ + "▁Mirror", + -11.761735916137695 + ], + [ + "cen", + -11.76193618774414 + ], + [ + "▁consolidation", + -11.76209831237793 + ], + [ + "▁pedal", + -11.762139320373535 + ], + [ + "▁Michelle", + -11.762168884277344 + ], + [ + "▁Boat", + -11.762228012084961 + ], + [ + "▁Managing", + -11.762491226196289 + ], + [ + "▁helicopter", + -11.762539863586426 + ], + [ + "▁cycles", + -11.762540817260742 + ], + [ + "pli", + -11.762554168701172 + ], + [ + "▁compartment", + -11.762592315673828 + ], + [ + "▁Crew", + -11.762654304504395 + ], + [ + "▁substrate", + -11.762883186340332 + ], + [ + "▁mor", + -11.76302719116211 + ], + [ + "drop", + -11.76307201385498 + ], + [ + "▁Deputy", + -11.76308536529541 + ], + [ + "▁fever", + -11.763094902038574 + ], + [ + "tree", + -11.763218879699707 + ], + [ + "▁reputable", + -11.76331901550293 + ], + [ + "Featuring", + -11.763455390930176 + ], + [ + "▁Boys", + -11.763474464416504 + ], + [ + "▁Multiple", + -11.763486862182617 + ], + [ + "▁acknowledged", + -11.763606071472168 + ], + [ + "▁Comment", + -11.76390266418457 + ], + [ + "▁sentences", + -11.763904571533203 + ], + [ + "▁angel", + -11.763909339904785 + ], + [ + "▁mirrors", + -11.764030456542969 + ], + [ + "▁Highland", + -11.7641019821167 + ], + [ + "▁fracture", + -11.764124870300293 + ], + [ + "▁galleries", + -11.764124870300293 + ], + [ + "▁Buffalo", + -11.764185905456543 + ], + [ + "DAY", + -11.764342308044434 + ], + [ + "▁1/4", + -11.764507293701172 + ], + [ + "▁Av", + -11.764730453491211 + ], + [ + "▁exquisite", + -11.764749526977539 + ], + [ + "▁Monte", + -11.764932632446289 + ], + [ + "▁Cafe", + -11.765138626098633 + ], + [ + "cci", + -11.765156745910645 + ], + [ + "▁likelihood", + -11.765192031860352 + ], + [ + "▁1982", + -11.765236854553223 + ], + [ + "▁advertise", + -11.765539169311523 + ], + [ + "rik", + -11.765568733215332 + ], + [ + "▁plasma", + -11.765623092651367 + ], + [ + "▁Agriculture", + -11.765740394592285 + ], + [ + "▁deer", + -11.765913963317871 + ], + [ + "tex", + -11.76595687866211 + ], + [ + "▁Tel", + -11.76622200012207 + ], + [ + "▁instrumental", + -11.76629638671875 + ], + [ + "▁gro", + -11.766335487365723 + ], + [ + "ario", + -11.766390800476074 + ], + [ + "▁Gin", + -11.766435623168945 + ], + [ + "▁PP", + -11.766489028930664 + ], + [ + "glo", + -11.766694068908691 + ], + [ + "income", + -11.766786575317383 + ], + [ + "▁scientist", + -11.766833305358887 + ], + [ + "▁Cole", + -11.766961097717285 + ], + [ + "▁bedding", + -11.766977310180664 + ], + [ + "boat", + -11.767258644104004 + ], + [ + "▁82", + -11.767403602600098 + ], + [ + "Whilst", + -11.767409324645996 + ], + [ + "▁Austria", + -11.76772689819336 + ], + [ + "▁Basically", + -11.767865180969238 + ], + [ + "kie", + -11.768098831176758 + ], + [ + "▁mug", + -11.768138885498047 + ], + [ + "▁temporarily", + -11.768217086791992 + ], + [ + "▁innocent", + -11.76834774017334 + ], + [ + "UE", + -11.768608093261719 + ], + [ + "▁Mit", + -11.768708229064941 + ], + [ + "bble", + -11.76880168914795 + ], + [ + "▁recreation", + -11.768823623657227 + ], + [ + "lumin", + -11.76891803741455 + ], + [ + "▁gateway", + -11.768936157226562 + ], + [ + "▁73", + -11.769234657287598 + ], + [ + "four", + -11.769338607788086 + ], + [ + "ride", + -11.769442558288574 + ], + [ + "▁Count", + -11.769463539123535 + ], + [ + "▁researcher", + -11.769478797912598 + ], + [ + "▁mock", + -11.769491195678711 + ], + [ + "tation", + -11.769591331481934 + ], + [ + "▁2005.", + -11.76962661743164 + ], + [ + "▁fellowship", + -11.769758224487305 + ], + [ + "▁medicines", + -11.76981258392334 + ], + [ + "▁wires", + -11.770048141479492 + ], + [ + "▁Nutrition", + -11.770302772521973 + ], + [ + "arri", + -11.7703275680542 + ], + [ + "▁buffet", + -11.770490646362305 + ], + [ + "▁Fra", + -11.770502090454102 + ], + [ + "▁Brothers", + -11.77051067352295 + ], + [ + "(2)", + -11.770513534545898 + ], + [ + "▁Brook", + -11.770849227905273 + ], + [ + "quot", + -11.770859718322754 + ], + [ + "▁cease", + -11.77092170715332 + ], + [ + "▁parade", + -11.770988464355469 + ], + [ + "▁switched", + -11.771230697631836 + ], + [ + "▁Scan", + -11.771247863769531 + ], + [ + "▁puppy", + -11.771313667297363 + ], + [ + "▁ginger", + -11.771332740783691 + ], + [ + "▁Reserved", + -11.771342277526855 + ], + [ + "▁echo", + -11.771391868591309 + ], + [ + "▁Less", + -11.77165412902832 + ], + [ + "▁Tab", + -11.771677017211914 + ], + [ + "▁blocking", + -11.77168083190918 + ], + [ + "▁elaborate", + -11.77180004119873 + ], + [ + "▁attacked", + -11.77183723449707 + ], + [ + "▁defects", + -11.77183723449707 + ], + [ + "▁rap", + -11.771934509277344 + ], + [ + "▁roster", + -11.772116661071777 + ], + [ + "▁correspond", + -11.772187232971191 + ], + [ + "hall", + -11.772189140319824 + ], + [ + "▁vegetarian", + -11.772377967834473 + ], + [ + "▁Related", + -11.772465705871582 + ], + [ + "held", + -11.772583961486816 + ], + [ + "▁nevertheless", + -11.772587776184082 + ], + [ + "▁Crime", + -11.772758483886719 + ], + [ + "р", + -11.772971153259277 + ], + [ + "▁Richmond", + -11.773079872131348 + ], + [ + "▁connector", + -11.773086547851562 + ], + [ + "▁credentials", + -11.773270606994629 + ], + [ + "▁qualification", + -11.77327823638916 + ], + [ + "▁Collins", + -11.773658752441406 + ], + [ + "▁microphone", + -11.773658752441406 + ], + [ + "ulator", + -11.773741722106934 + ], + [ + "hou", + -11.773751258850098 + ], + [ + "▁Der", + -11.773848533630371 + ], + [ + "▁paperwork", + -11.773914337158203 + ], + [ + "▁dump", + -11.77395248413086 + ], + [ + "▁EV", + -11.774023056030273 + ], + [ + "▁lengthy", + -11.774066925048828 + ], + [ + "▁elder", + -11.774154663085938 + ], + [ + "▁answering", + -11.774248123168945 + ], + [ + "▁rounded", + -11.774348258972168 + ], + [ + "▁1979", + -11.774515151977539 + ], + [ + "▁lamps", + -11.774680137634277 + ], + [ + "▁absent", + -11.77479362487793 + ], + [ + "▁domains", + -11.77486515045166 + ], + [ + "▁enrollment", + -11.774877548217773 + ], + [ + "MR", + -11.774986267089844 + ], + [ + "▁altered", + -11.7750883102417 + ], + [ + "aste", + -11.775335311889648 + ], + [ + "▁calculator", + -11.775371551513672 + ], + [ + "▁Dell", + -11.775424003601074 + ], + [ + "Free", + -11.775785446166992 + ], + [ + "▁horn", + -11.775890350341797 + ], + [ + "▁Discount", + -11.775904655456543 + ], + [ + "big", + -11.77592658996582 + ], + [ + "rating", + -11.776209831237793 + ], + [ + "eem", + -11.776225090026855 + ], + [ + "▁Partnership", + -11.77624225616455 + ], + [ + "▁Jul", + -11.776280403137207 + ], + [ + "uel", + -11.776294708251953 + ], + [ + "▁cancelled", + -11.7763032913208 + ], + [ + "▁AV", + -11.776395797729492 + ], + [ + "▁appropriately", + -11.776657104492188 + ], + [ + "▁pearl", + -11.776802062988281 + ], + [ + "▁mathematics", + -11.777082443237305 + ], + [ + "▁quad", + -11.777109146118164 + ], + [ + "▁incentive", + -11.77714729309082 + ], + [ + "2013", + -11.777220726013184 + ], + [ + "▁Duration", + -11.777266502380371 + ], + [ + "▁trades", + -11.777292251586914 + ], + [ + "▁bro", + -11.777457237243652 + ], + [ + "▁5:", + -11.777544975280762 + ], + [ + "▁forgive", + -11.777583122253418 + ], + [ + "▁SEC", + -11.777605056762695 + ], + [ + "▁Mai", + -11.777742385864258 + ], + [ + "▁happier", + -11.7777681350708 + ], + [ + "▁Ven", + -11.777852058410645 + ], + [ + "▁accelerate", + -11.778185844421387 + ], + [ + "▁lesser", + -11.778223991394043 + ], + [ + "▁Task", + -11.778260231018066 + ], + [ + "▁investigated", + -11.77828598022461 + ], + [ + "▁sometime", + -11.778363227844238 + ], + [ + "▁Murray", + -11.778367042541504 + ], + [ + "▁pat", + -11.778449058532715 + ], + [ + "▁lobby", + -11.778631210327148 + ], + [ + "▁Million", + -11.779106140136719 + ], + [ + "▁PayPal", + -11.779121398925781 + ], + [ + "gers", + -11.779131889343262 + ], + [ + "▁girlfriend", + -11.779158592224121 + ], + [ + "▁alliance", + -11.779356956481934 + ], + [ + "▁8-", + -11.779616355895996 + ], + [ + "comprised", + -11.77963924407959 + ], + [ + "▁Guardian", + -11.77971363067627 + ], + [ + "▁referral", + -11.779723167419434 + ], + [ + "▁Bru", + -11.77981948852539 + ], + [ + "▁Chemical", + -11.779936790466309 + ], + [ + "▁racial", + -11.779956817626953 + ], + [ + "▁scanning", + -11.78007698059082 + ], + [ + "▁midnight", + -11.780291557312012 + ], + [ + "▁Ideal", + -11.780652046203613 + ], + [ + "▁poems", + -11.780773162841797 + ], + [ + "aux", + -11.780919075012207 + ], + [ + "▁monster", + -11.78106689453125 + ], + [ + "▁Joy", + -11.78118896484375 + ], + [ + "▁painter", + -11.781543731689453 + ], + [ + "ABLE", + -11.781634330749512 + ], + [ + "poli", + -11.781757354736328 + ], + [ + "▁shifts", + -11.78201961517334 + ], + [ + "zan", + -11.782261848449707 + ], + [ + "▁lamb", + -11.782358169555664 + ], + [ + "▁verse", + -11.78237533569336 + ], + [ + "▁pu", + -11.782443046569824 + ], + [ + "▁pressed", + -11.782444953918457 + ], + [ + "▁environmentally", + -11.782585144042969 + ], + [ + "▁recruiting", + -11.782588958740234 + ], + [ + "gil", + -11.782608032226562 + ], + [ + "▁behavioral", + -11.782637596130371 + ], + [ + "▁McG", + -11.782736778259277 + ], + [ + "▁Wy", + -11.782803535461426 + ], + [ + "▁infinite", + -11.782816886901855 + ], + [ + "▁visually", + -11.782965660095215 + ], + [ + "д", + -11.783246040344238 + ], + [ + "▁waited", + -11.783246040344238 + ], + [ + "5)", + -11.783284187316895 + ], + [ + "Gen", + -11.783345222473145 + ], + [ + "▁prone", + -11.783373832702637 + ], + [ + "▁landscaping", + -11.783612251281738 + ], + [ + "▁shy", + -11.78371524810791 + ], + [ + "▁folding", + -11.78372859954834 + ], + [ + "▁roast", + -11.7837495803833 + ], + [ + "RL", + -11.78381633758545 + ], + [ + "writing", + -11.784109115600586 + ], + [ + "▁Liberty", + -11.7845458984375 + ], + [ + "▁ref", + -11.784600257873535 + ], + [ + "▁Northwest", + -11.784647941589355 + ], + [ + "cup", + -11.784947395324707 + ], + [ + "▁LCD", + -11.78496265411377 + ], + [ + "▁harmony", + -11.784968376159668 + ], + [ + "▁Shanghai", + -11.785151481628418 + ], + [ + "▁95%", + -11.78515625 + ], + [ + "▁Present", + -11.785225868225098 + ], + [ + "IND", + -11.78522777557373 + ], + [ + "▁unto", + -11.785258293151855 + ], + [ + "▁zu", + -11.785264015197754 + ], + [ + "▁scenic", + -11.785337448120117 + ], + [ + "▁gravity", + -11.785416603088379 + ], + [ + "▁viewer", + -11.785531044006348 + ], + [ + "aught", + -11.785677909851074 + ], + [ + "▁beads", + -11.78581428527832 + ], + [ + "LR", + -11.785818099975586 + ], + [ + "▁celebrity", + -11.785841941833496 + ], + [ + "Book", + -11.785980224609375 + ], + [ + "BL", + -11.786090850830078 + ], + [ + "▁negotiate", + -11.786202430725098 + ], + [ + "▁farmer", + -11.786210060119629 + ], + [ + "▁drilling", + -11.78625202178955 + ], + [ + "fill", + -11.786520957946777 + ], + [ + "▁dominated", + -11.786624908447266 + ], + [ + "▁laminate", + -11.786652565002441 + ], + [ + "▁Internal", + -11.786811828613281 + ], + [ + "▁queue", + -11.786826133728027 + ], + [ + "▁metals", + -11.786852836608887 + ], + [ + "vac", + -11.786916732788086 + ], + [ + "▁Chile", + -11.787233352661133 + ], + [ + "▁rows", + -11.78723430633545 + ], + [ + "▁Robinson", + -11.787342071533203 + ], + [ + "▁stating", + -11.787347793579102 + ], + [ + "▁athlete", + -11.787358283996582 + ], + [ + "▁administrators", + -11.78775405883789 + ], + [ + "▁Maintenance", + -11.787917137145996 + ], + [ + "▁storing", + -11.78792667388916 + ], + [ + "NK", + -11.787943840026855 + ], + [ + "▁Kor", + -11.788125038146973 + ], + [ + "EAR", + -11.7881498336792 + ], + [ + "▁lectures", + -11.788215637207031 + ], + [ + "▁marathon", + -11.788430213928223 + ], + [ + "▁festive", + -11.788482666015625 + ], + [ + "▁Roy", + -11.788595199584961 + ], + [ + "five", + -11.788599014282227 + ], + [ + "▁valuation", + -11.788644790649414 + ], + [ + "▁sculpture", + -11.78889274597168 + ], + [ + "▁RM", + -11.789156913757324 + ], + [ + "▁breathtaking", + -11.789167404174805 + ], + [ + "▁Belt", + -11.789246559143066 + ], + [ + "▁chaos", + -11.789511680603027 + ], + [ + "▁singles", + -11.78954029083252 + ], + [ + "▁lively", + -11.789754867553711 + ], + [ + "▁Larry", + -11.789782524108887 + ], + [ + "▁umbrella", + -11.789783477783203 + ], + [ + "▁gesture", + -11.789839744567871 + ], + [ + "▁Fl", + -11.78991985321045 + ], + [ + "▁Sounds", + -11.790045738220215 + ], + [ + "boro", + -11.790200233459473 + ], + [ + "tical", + -11.790226936340332 + ], + [ + "▁undertaken", + -11.790230751037598 + ], + [ + "risk", + -11.790311813354492 + ], + [ + "▁gardening", + -11.790430068969727 + ], + [ + "▁Vintage", + -11.790477752685547 + ], + [ + "▁communicating", + -11.790504455566406 + ], + [ + "▁Mason", + -11.790611267089844 + ], + [ + "▁Hit", + -11.79078197479248 + ], + [ + "▁Mountains", + -11.791010856628418 + ], + [ + "▁chase", + -11.79110336303711 + ], + [ + "▁125", + -11.79116153717041 + ], + [ + "▁Probably", + -11.791519165039062 + ], + [ + "▁accountability", + -11.79166316986084 + ], + [ + "▁Coupon", + -11.791790008544922 + ], + [ + "plate", + -11.791895866394043 + ], + [ + "▁Ul", + -11.791919708251953 + ], + [ + "▁Fitness", + -11.791973114013672 + ], + [ + "▁fuse", + -11.79200553894043 + ], + [ + "▁rigorous", + -11.792032241821289 + ], + [ + "▁interventions", + -11.792065620422363 + ], + [ + "▁grams", + -11.79223918914795 + ], + [ + "▁qualifying", + -11.79233169555664 + ], + [ + "▁equation", + -11.792346954345703 + ], + [ + "▁shutter", + -11.792670249938965 + ], + [ + "▁Political", + -11.792861938476562 + ], + [ + "▁strings", + -11.792908668518066 + ], + [ + "▁Fur", + -11.792915344238281 + ], + [ + "▁midst", + -11.792937278747559 + ], + [ + "▁Gear", + -11.792974472045898 + ], + [ + "▁damn", + -11.793054580688477 + ], + [ + "▁intermediate", + -11.793160438537598 + ], + [ + "▁Forex", + -11.793340682983398 + ], + [ + "▁socket", + -11.793367385864258 + ], + [ + "▁Campus", + -11.793469429016113 + ], + [ + "▁RF", + -11.793505668640137 + ], + [ + "▁hobby", + -11.793562889099121 + ], + [ + "▁Wait", + -11.793671607971191 + ], + [ + "▁sights", + -11.793741226196289 + ], + [ + "PF", + -11.793886184692383 + ], + [ + "parent", + -11.794057846069336 + ], + [ + "▁Leon", + -11.79407787322998 + ], + [ + "▁culinary", + -11.794089317321777 + ], + [ + "▁surgeon", + -11.794107437133789 + ], + [ + "▁journals", + -11.794175148010254 + ], + [ + "▁WP", + -11.79426383972168 + ], + [ + "▁crypto", + -11.794292449951172 + ], + [ + "▁Marshall", + -11.794690132141113 + ], + [ + "▁Columbus", + -11.794705390930176 + ], + [ + "▁constraints", + -11.794827461242676 + ], + [ + "▁iPod", + -11.79488754272461 + ], + [ + "taking", + -11.795143127441406 + ], + [ + "▁1.2", + -11.79547119140625 + ], + [ + "gress", + -11.79549789428711 + ], + [ + "▁Coming", + -11.7955904006958 + ], + [ + "▁NOW", + -11.795676231384277 + ], + [ + "▁hedge", + -11.795748710632324 + ], + [ + "izz", + -11.79598617553711 + ], + [ + "otic", + -11.79604721069336 + ], + [ + "▁recordings", + -11.796236038208008 + ], + [ + "▁horrible", + -11.796369552612305 + ], + [ + "▁disputes", + -11.796381950378418 + ], + [ + "▁Adventure", + -11.796414375305176 + ], + [ + "▁securely", + -11.796492576599121 + ], + [ + "chol", + -11.796521186828613 + ], + [ + "TON", + -11.796788215637207 + ], + [ + "▁reservations", + -11.796992301940918 + ], + [ + "▁jewel", + -11.797038078308105 + ], + [ + "-04", + -11.79705810546875 + ], + [ + "▁frustrated", + -11.79709529876709 + ], + [ + "access", + -11.79740047454834 + ], + [ + "▁Players", + -11.79778003692627 + ], + [ + "▁genuinely", + -11.797898292541504 + ], + [ + "▁renting", + -11.797972679138184 + ], + [ + "▁herein", + -11.79809284210205 + ], + [ + "▁Abu", + -11.798276901245117 + ], + [ + "▁rip", + -11.798391342163086 + ], + [ + "▁enjoyment", + -11.798521995544434 + ], + [ + "▁Drink", + -11.798639297485352 + ], + [ + "pac", + -11.798651695251465 + ], + [ + "▁Imp", + -11.798666000366211 + ], + [ + "RG", + -11.79887580871582 + ], + [ + "▁matrix", + -11.798885345458984 + ], + [ + "▁Bab", + -11.798937797546387 + ], + [ + "▁gem", + -11.798988342285156 + ], + [ + "▁Mega", + -11.799101829528809 + ], + [ + "▁discovering", + -11.799302101135254 + ], + [ + "END", + -11.799460411071777 + ], + [ + "▁Arkansas", + -11.7996244430542 + ], + [ + "▁proudly", + -11.79982852935791 + ], + [ + "▁Kindle", + -11.799896240234375 + ], + [ + "▁2014–", + -11.800164222717285 + ], + [ + "▁cushion", + -11.800166130065918 + ], + [ + "▁notifications", + -11.80023193359375 + ], + [ + "▁enthusiasts", + -11.800390243530273 + ], + [ + "▁missile", + -11.800439834594727 + ], + [ + "▁merchant", + -11.800507545471191 + ], + [ + "▁Barr", + -11.800529479980469 + ], + [ + "RES", + -11.800760269165039 + ], + [ + "nick", + -11.801006317138672 + ], + [ + "▁aligned", + -11.801060676574707 + ], + [ + "▁Vas", + -11.801066398620605 + ], + [ + "▁Outside", + -11.801127433776855 + ], + [ + "▁Alpha", + -11.801143646240234 + ], + [ + "▁plum", + -11.801163673400879 + ], + [ + "▁donors", + -11.801461219787598 + ], + [ + "▁OEM", + -11.801512718200684 + ], + [ + "tax", + -11.801913261413574 + ], + [ + "/2019", + -11.80204963684082 + ], + [ + "▁cattle", + -11.802075386047363 + ], + [ + "▁Stan", + -11.80212116241455 + ], + [ + "▁occurrence", + -11.80213451385498 + ], + [ + "▁missions", + -11.802177429199219 + ], + [ + "▁anonymous", + -11.802204132080078 + ], + [ + "▁advisory", + -11.802653312683105 + ], + [ + "▁Automatic", + -11.802664756774902 + ], + [ + "▁comfy", + -11.802729606628418 + ], + [ + "▁parcel", + -11.8028564453125 + ], + [ + "▁commissioned", + -11.803248405456543 + ], + [ + "▁Syrian", + -11.80336856842041 + ], + [ + "Sc", + -11.803962707519531 + ], + [ + "▁rum", + -11.804156303405762 + ], + [ + "sten", + -11.804215431213379 + ], + [ + "▁Advance", + -11.804240226745605 + ], + [ + "▁ranch", + -11.804441452026367 + ], + [ + "▁Plain", + -11.804590225219727 + ], + [ + "▁webpage", + -11.804713249206543 + ], + [ + "م", + -11.805065155029297 + ], + [ + "▁Az", + -11.80514144897461 + ], + [ + "▁positively", + -11.805295944213867 + ], + [ + "▁Racing", + -11.805328369140625 + ], + [ + "PH", + -11.805456161499023 + ], + [ + "▁statute", + -11.8054780960083 + ], + [ + "▁Hydro", + -11.805506706237793 + ], + [ + "▁1%", + -11.805691719055176 + ], + [ + "sec", + -11.805724143981934 + ], + [ + "▁Mitchell", + -11.805960655212402 + ], + [ + "▁Hur", + -11.805989265441895 + ], + [ + "▁Airlines", + -11.806047439575195 + ], + [ + "▁stats", + -11.806047439575195 + ], + [ + "▁Hunt", + -11.806093215942383 + ], + [ + "shore", + -11.806182861328125 + ], + [ + "▁publishers", + -11.806467056274414 + ], + [ + "OK", + -11.80660343170166 + ], + [ + "▁fifty", + -11.806629180908203 + ], + [ + "▁lakes", + -11.806639671325684 + ], + [ + "▁Portugal", + -11.806655883789062 + ], + [ + "ATA", + -11.806674003601074 + ], + [ + "▁PHP", + -11.80691909790039 + ], + [ + "▁verb", + -11.806926727294922 + ], + [ + "▁accessory", + -11.80716609954834 + ], + [ + "▁Cake", + -11.807229995727539 + ], + [ + "▁94", + -11.807294845581055 + ], + [ + "▁limiting", + -11.807433128356934 + ], + [ + "▁assuming", + -11.8075590133667 + ], + [ + "GC", + -11.80777645111084 + ], + [ + "▁Late", + -11.807777404785156 + ], + [ + "▁Nashville", + -11.807927131652832 + ], + [ + "rene", + -11.80795669555664 + ], + [ + "▁pathway", + -11.807981491088867 + ], + [ + "▁Vis", + -11.808470726013184 + ], + [ + "▁Milan", + -11.808732986450195 + ], + [ + "PB", + -11.808813095092773 + ], + [ + "▁Scripture", + -11.808818817138672 + ], + [ + "▁weakness", + -11.808954238891602 + ], + [ + "▁Episode", + -11.809020042419434 + ], + [ + "▁Coin", + -11.809027671813965 + ], + [ + "▁slides", + -11.80904483795166 + ], + [ + "▁spiral", + -11.809212684631348 + ], + [ + "▁compliment", + -11.809303283691406 + ], + [ + "▁Tru", + -11.809308052062988 + ], + [ + "▁android", + -11.809632301330566 + ], + [ + "▁Py", + -11.809741020202637 + ], + [ + "▁conceptual", + -11.80982494354248 + ], + [ + "dding", + -11.810236930847168 + ], + [ + "▁termination", + -11.810331344604492 + ], + [ + "duction", + -11.810372352600098 + ], + [ + "▁goat", + -11.81039810180664 + ], + [ + "▁discounted", + -11.810409545898438 + ], + [ + "▁Hero", + -11.81047248840332 + ], + [ + "▁Understanding", + -11.81050968170166 + ], + [ + "food", + -11.810586929321289 + ], + [ + "▁enthusiastic", + -11.810628890991211 + ], + [ + "▁undoubtedly", + -11.810816764831543 + ], + [ + "layer", + -11.810850143432617 + ], + [ + "mix", + -11.81087589263916 + ], + [ + "TION", + -11.811147689819336 + ], + [ + "▁cricket", + -11.81117057800293 + ], + [ + "▁Shan", + -11.811274528503418 + ], + [ + "▁sampling", + -11.811362266540527 + ], + [ + "blog", + -11.811384201049805 + ], + [ + "▁homeowner", + -11.81151008605957 + ], + [ + "▁Bou", + -11.81155776977539 + ], + [ + "▁Denmark", + -11.811708450317383 + ], + [ + "▁offshore", + -11.811729431152344 + ], + [ + "▁2,000", + -11.811790466308594 + ], + [ + "▁conform", + -11.811867713928223 + ], + [ + "▁banned", + -11.811919212341309 + ], + [ + "▁Cart", + -11.812277793884277 + ], + [ + "▁splash", + -11.812285423278809 + ], + [ + "▁Fisher", + -11.812461853027344 + ], + [ + "▁dosage", + -11.812511444091797 + ], + [ + "▁infant", + -11.812559127807617 + ], + [ + "▁wander", + -11.812676429748535 + ], + [ + "defined", + -11.812774658203125 + ], + [ + "▁Guy", + -11.8128080368042 + ], + [ + "▁dishwasher", + -11.8128080368042 + ], + [ + "▁psycho", + -11.81326961517334 + ], + [ + "author", + -11.813390731811523 + ], + [ + "▁cheat", + -11.813394546508789 + ], + [ + "friend", + -11.813605308532715 + ], + [ + "▁develops", + -11.813637733459473 + ], + [ + "▁shuttle", + -11.81385612487793 + ], + [ + "▁luggage", + -11.813873291015625 + ], + [ + "▁ensemble", + -11.813928604125977 + ], + [ + "▁ru", + -11.813980102539062 + ], + [ + "unit", + -11.814023971557617 + ], + [ + "▁correspondence", + -11.81406021118164 + ], + [ + "▁Puerto", + -11.814093589782715 + ], + [ + "▁isolation", + -11.814106941223145 + ], + [ + "▁Brit", + -11.814532279968262 + ], + [ + "8,", + -11.814591407775879 + ], + [ + "▁dataset", + -11.814788818359375 + ], + [ + "RU", + -11.814873695373535 + ], + [ + "ease", + -11.814915657043457 + ], + [ + "▁(7", + -11.814981460571289 + ], + [ + "▁GDP", + -11.815003395080566 + ], + [ + "cross", + -11.815133094787598 + ], + [ + "▁boyfriend", + -11.815191268920898 + ], + [ + "enne", + -11.815204620361328 + ], + [ + "▁fatal", + -11.815363883972168 + ], + [ + "▁invalid", + -11.815534591674805 + ], + [ + "▁installer", + -11.815630912780762 + ], + [ + "▁Corps", + -11.815997123718262 + ], + [ + "-24", + -11.816046714782715 + ], + [ + "▁Lip", + -11.816166877746582 + ], + [ + "▁Chart", + -11.816315650939941 + ], + [ + "▁Statistics", + -11.816418647766113 + ], + [ + "▁debit", + -11.816559791564941 + ], + [ + "▁restart", + -11.816595077514648 + ], + [ + "▁brokers", + -11.816761016845703 + ], + [ + "▁respondents", + -11.81687068939209 + ], + [ + "▁Ker", + -11.81706714630127 + ], + [ + "▁disruption", + -11.817089080810547 + ], + [ + "▁encouragement", + -11.817217826843262 + ], + [ + "▁counselor", + -11.817320823669434 + ], + [ + "▁surge", + -11.817410469055176 + ], + [ + "▁rider", + -11.817453384399414 + ], + [ + "▁Amsterdam", + -11.817625045776367 + ], + [ + "▁intern", + -11.81765365600586 + ], + [ + "▁pins", + -11.817912101745605 + ], + [ + "▁turnover", + -11.818042755126953 + ], + [ + "▁damaging", + -11.818107604980469 + ], + [ + "▁$0", + -11.81879711151123 + ], + [ + "chro", + -11.818881034851074 + ], + [ + "▁utilities", + -11.819025993347168 + ], + [ + "▁defining", + -11.819052696228027 + ], + [ + "▁pendant", + -11.819164276123047 + ], + [ + "▁concentrated", + -11.819206237792969 + ], + [ + "▁Fel", + -11.819574356079102 + ], + [ + "▁charger", + -11.81961727142334 + ], + [ + "▁Patients", + -11.81975269317627 + ], + [ + "bur", + -11.81986141204834 + ], + [ + "Oh", + -11.819881439208984 + ], + [ + "▁PH", + -11.8198823928833 + ], + [ + "▁prop", + -11.81993293762207 + ], + [ + "▁viral", + -11.820028305053711 + ], + [ + "nning", + -11.820226669311523 + ], + [ + "ulated", + -11.820284843444824 + ], + [ + "▁positioning", + -11.8204927444458 + ], + [ + "AH", + -11.820558547973633 + ], + [ + "▁Historical", + -11.820878982543945 + ], + [ + "▁bulbs", + -11.820886611938477 + ], + [ + "▁appetite", + -11.821005821228027 + ], + [ + "▁Margaret", + -11.821063995361328 + ], + [ + "▁Rot", + -11.821073532104492 + ], + [ + "▁freight", + -11.821130752563477 + ], + [ + "ра", + -11.821189880371094 + ], + [ + "▁Laboratory", + -11.821296691894531 + ], + [ + "▁Waste", + -11.821325302124023 + ], + [ + "▁Method", + -11.821342468261719 + ], + [ + "▁paddle", + -11.821361541748047 + ], + [ + "▁Publisher", + -11.821455001831055 + ], + [ + "▁lol", + -11.821572303771973 + ], + [ + "incorporating", + -11.821666717529297 + ], + [ + "▁dwelling", + -11.82209300994873 + ], + [ + "▁Chain", + -11.822101593017578 + ], + [ + "▁landscapes", + -11.822218894958496 + ], + [ + "▁void", + -11.822236061096191 + ], + [ + "▁Railway", + -11.822287559509277 + ], + [ + "▁Cop", + -11.822712898254395 + ], + [ + "▁packet", + -11.822758674621582 + ], + [ + "rain", + -11.822762489318848 + ], + [ + "▁Advisory", + -11.82282829284668 + ], + [ + "▁renewed", + -11.822979927062988 + ], + [ + "raw", + -11.823081016540527 + ], + [ + "▁allocation", + -11.823165893554688 + ], + [ + "▁analytical", + -11.823209762573242 + ], + [ + "▁fra", + -11.823302268981934 + ], + [ + "▁Christianity", + -11.823355674743652 + ], + [ + "▁kg", + -11.823563575744629 + ], + [ + "▁spatial", + -11.823575973510742 + ], + [ + "RIS", + -11.823602676391602 + ], + [ + "▁SAP", + -11.823688507080078 + ], + [ + "▁overwhelmed", + -11.82371711730957 + ], + [ + "▁Electrical", + -11.823829650878906 + ], + [ + "online", + -11.823836326599121 + ], + [ + "ime", + -11.823882102966309 + ], + [ + "ennial", + -11.823929786682129 + ], + [ + "▁Fee", + -11.823951721191406 + ], + [ + "▁revolutionary", + -11.823958396911621 + ], + [ + "▁dev", + -11.823978424072266 + ], + [ + "▁Above", + -11.824104309082031 + ], + [ + "pie", + -11.824142456054688 + ], + [ + "▁glucose", + -11.82423210144043 + ], + [ + "▁noon", + -11.82441234588623 + ], + [ + "▁1-2", + -11.824568748474121 + ], + [ + "▁violations", + -11.824607849121094 + ], + [ + "▁touching", + -11.824735641479492 + ], + [ + "dir", + -11.824848175048828 + ], + [ + "▁acc", + -11.824898719787598 + ], + [ + "▁Growth", + -11.824921607971191 + ], + [ + "bla", + -11.825102806091309 + ], + [ + "▁restrict", + -11.82532024383545 + ], + [ + "▁Plate", + -11.825420379638672 + ], + [ + "▁justify", + -11.825453758239746 + ], + [ + "egor", + -11.825483322143555 + ], + [ + "▁impacted", + -11.82565689086914 + ], + [ + "▁Kill", + -11.825926780700684 + ], + [ + "▁voluntary", + -11.826506614685059 + ], + [ + "▁economical", + -11.826528549194336 + ], + [ + "▁Consultant", + -11.826537132263184 + ], + [ + "▁desperate", + -11.826837539672852 + ], + [ + "▁laying", + -11.827013969421387 + ], + [ + "sell", + -11.827071189880371 + ], + [ + "▁cents", + -11.827370643615723 + ], + [ + "TOR", + -11.82738208770752 + ], + [ + "▁rifle", + -11.827445983886719 + ], + [ + "▁economies", + -11.827468872070312 + ], + [ + "ador", + -11.827691078186035 + ], + [ + "▁Lamp", + -11.827760696411133 + ], + [ + "CK", + -11.82807731628418 + ], + [ + "▁sunshine", + -11.828107833862305 + ], + [ + "efficient", + -11.82840633392334 + ], + [ + "▁patches", + -11.828518867492676 + ], + [ + "▁municipal", + -11.828560829162598 + ], + [ + "▁Publishing", + -11.828569412231445 + ], + [ + "▁clearing", + -11.828709602355957 + ], + [ + "▁marker", + -11.828712463378906 + ], + [ + "cies", + -11.828770637512207 + ], + [ + "▁amendment", + -11.828923225402832 + ], + [ + "cam", + -11.828963279724121 + ], + [ + "▁asleep", + -11.828978538513184 + ], + [ + "woman", + -11.828985214233398 + ], + [ + "▁EPA", + -11.829010009765625 + ], + [ + "▁dies", + -11.829119682312012 + ], + [ + "▁Ultimate", + -11.829278945922852 + ], + [ + "ART", + -11.829322814941406 + ], + [ + "securing", + -11.829608917236328 + ], + [ + "▁merger", + -11.829627990722656 + ], + [ + "▁lazy", + -11.83001708984375 + ], + [ + "▁2006,", + -11.830160140991211 + ], + [ + "▁instructors", + -11.830375671386719 + ], + [ + "-01", + -11.830602645874023 + ], + [ + "▁differentiate", + -11.830927848815918 + ], + [ + "▁Southeast", + -11.831074714660645 + ], + [ + "▁Stainless", + -11.831082344055176 + ], + [ + "▁Kirk", + -11.831131935119629 + ], + [ + "▁Liz", + -11.831254959106445 + ], + [ + "▁lush", + -11.831315040588379 + ], + [ + "▁accessibility", + -11.831340789794922 + ], + [ + "▁competitions", + -11.83144474029541 + ], + [ + "citing", + -11.831452369689941 + ], + [ + "(3)", + -11.831480026245117 + ], + [ + "▁Fixed", + -11.831558227539062 + ], + [ + "FE", + -11.831585884094238 + ], + [ + "sic", + -11.832008361816406 + ], + [ + "▁markers", + -11.832046508789062 + ], + [ + "▁Chip", + -11.832134246826172 + ], + [ + "powered", + -11.832206726074219 + ], + [ + "2000", + -11.832230567932129 + ], + [ + "GF", + -11.832376480102539 + ], + [ + "▁Rate", + -11.832579612731934 + ], + [ + "▁Eventually", + -11.83258056640625 + ], + [ + "▁roasted", + -11.832600593566895 + ], + [ + "View", + -11.832731246948242 + ], + [ + "▁metro", + -11.832755088806152 + ], + [ + "▁Desk", + -11.832781791687012 + ], + [ + "lik", + -11.83286190032959 + ], + [ + "rak", + -11.832956314086914 + ], + [ + "▁humidity", + -11.833235740661621 + ], + [ + "bone", + -11.833398818969727 + ], + [ + "▁Chen", + -11.833484649658203 + ], + [ + "▁Winner", + -11.833504676818848 + ], + [ + "▁Doug", + -11.833672523498535 + ], + [ + "▁IF", + -11.833807945251465 + ], + [ + "▁Orchestra", + -11.83405876159668 + ], + [ + "▁Spark", + -11.834187507629395 + ], + [ + "▁motivate", + -11.834208488464355 + ], + [ + "heim", + -11.834221839904785 + ], + [ + "▁Nancy", + -11.834258079528809 + ], + [ + "▁commentary", + -11.834284782409668 + ], + [ + "▁headphones", + -11.834291458129883 + ], + [ + "▁eligibility", + -11.834308624267578 + ], + [ + "▁terror", + -11.83452033996582 + ], + [ + "onne", + -11.834588050842285 + ], + [ + "mov", + -11.834639549255371 + ], + [ + "▁kindness", + -11.834717750549316 + ], + [ + "ursuant", + -11.834729194641113 + ], + [ + "product", + -11.8347806930542 + ], + [ + "▁Barry", + -11.834794044494629 + ], + [ + "▁Sierra", + -11.834940910339355 + ], + [ + "toria", + -11.835001945495605 + ], + [ + "▁intentions", + -11.835124969482422 + ], + [ + "▁chop", + -11.83518123626709 + ], + [ + "▁shiny", + -11.835196495056152 + ], + [ + "▁imagined", + -11.83535099029541 + ], + [ + "▁heel", + -11.83547592163086 + ], + [ + "▁suspected", + -11.835508346557617 + ], + [ + "▁crap", + -11.83564567565918 + ], + [ + "▁administered", + -11.835975646972656 + ], + [ + "jpg", + -11.836012840270996 + ], + [ + "▁calculation", + -11.836339950561523 + ], + [ + "▁furnace", + -11.836459159851074 + ], + [ + "▁PL", + -11.836591720581055 + ], + [ + "▁TB", + -11.83708667755127 + ], + [ + "▁bu", + -11.837129592895508 + ], + [ + "OUR", + -11.837220191955566 + ], + [ + "NP", + -11.837296485900879 + ], + [ + "▁Jerry", + -11.837309837341309 + ], + [ + "▁traits", + -11.837409973144531 + ], + [ + "▁Cards", + -11.83748722076416 + ], + [ + "▁Mul", + -11.837615013122559 + ], + [ + "▁conclude", + -11.83780288696289 + ], + [ + "▁Campaign", + -11.837831497192383 + ], + [ + "-40", + -11.837857246398926 + ], + [ + "▁sleeves", + -11.8379545211792 + ], + [ + "PORT", + -11.838019371032715 + ], + [ + "shaw", + -11.838125228881836 + ], + [ + "ulate", + -11.838171005249023 + ], + [ + "▁Bha", + -11.838421821594238 + ], + [ + "▁glorious", + -11.838446617126465 + ], + [ + "▁authentication", + -11.83859634399414 + ], + [ + "▁optimized", + -11.838726043701172 + ], + [ + "▁fifteen", + -11.838837623596191 + ], + [ + "▁1981", + -11.838898658752441 + ], + [ + "fair", + -11.838907241821289 + ], + [ + "▁preserved", + -11.839136123657227 + ], + [ + "PG", + -11.839149475097656 + ], + [ + "▁Ghost", + -11.83917236328125 + ], + [ + "▁Running", + -11.839174270629883 + ], + [ + "▁transmit", + -11.83928394317627 + ], + [ + "SF", + -11.839492797851562 + ], + [ + "▁metabolism", + -11.839651107788086 + ], + [ + "▁Bristol", + -11.83971118927002 + ], + [ + "▁bolt", + -11.839746475219727 + ], + [ + "MAN", + -11.840055465698242 + ], + [ + "▁implies", + -11.840056419372559 + ], + [ + "▁cafe", + -11.840063095092773 + ], + [ + "▁nodes", + -11.84008502960205 + ], + [ + "▁Eight", + -11.84009838104248 + ], + [ + "▁fatty", + -11.840150833129883 + ], + [ + "conce", + -11.840201377868652 + ], + [ + "▁editors", + -11.840243339538574 + ], + [ + "▁dull", + -11.840258598327637 + ], + [ + "million", + -11.840275764465332 + ], + [ + "▁Developer", + -11.840365409851074 + ], + [ + "▁marketers", + -11.840429306030273 + ], + [ + "▁protocols", + -11.840656280517578 + ], + [ + "▁technically", + -11.840860366821289 + ], + [ + "▁evaluating", + -11.840998649597168 + ], + [ + "▁digit", + -11.841606140136719 + ], + [ + "▁unfair", + -11.84190845489502 + ], + [ + "▁Nissan", + -11.84206771850586 + ], + [ + "▁Yahoo", + -11.842082023620605 + ], + [ + "▁literacy", + -11.842123985290527 + ], + [ + "▁Downtown", + -11.842130661010742 + ], + [ + "fix", + -11.842172622680664 + ], + [ + "▁Ward", + -11.84241771697998 + ], + [ + "▁extensively", + -11.84250259399414 + ], + [ + "reportedly", + -11.842520713806152 + ], + [ + "▁grief", + -11.842994689941406 + ], + [ + "HT", + -11.843027114868164 + ], + [ + "oodle", + -11.843094825744629 + ], + [ + "raft", + -11.843250274658203 + ], + [ + "OA", + -11.843356132507324 + ], + [ + "0)", + -11.843374252319336 + ], + [ + "lene", + -11.8433837890625 + ], + [ + "▁Hon", + -11.843400955200195 + ], + [ + "▁fame", + -11.84343433380127 + ], + [ + "▁mathematical", + -11.843476295471191 + ], + [ + "extending", + -11.843575477600098 + ], + [ + "▁weddings", + -11.84359073638916 + ], + [ + "▁cinnamon", + -11.843783378601074 + ], + [ + "▁towels", + -11.8438081741333 + ], + [ + "▁evenly", + -11.84384536743164 + ], + [ + "▁Jimmy", + -11.843888282775879 + ], + [ + "trop", + -11.843892097473145 + ], + [ + "▁immuno", + -11.843964576721191 + ], + [ + "▁Elementary", + -11.843988418579102 + ], + [ + "▁PD", + -11.844109535217285 + ], + [ + "▁FBI", + -11.844122886657715 + ], + [ + "▁Bangladesh", + -11.844205856323242 + ], + [ + "▁affair", + -11.844383239746094 + ], + [ + "▁Participants", + -11.844459533691406 + ], + [ + "▁Ensure", + -11.844507217407227 + ], + [ + "▁canal", + -11.844651222229004 + ], + [ + "▁Broadway", + -11.844735145568848 + ], + [ + "Str", + -11.844789505004883 + ], + [ + "▁impress", + -11.844795227050781 + ], + [ + "▁accountable", + -11.844846725463867 + ], + [ + "overlooking", + -11.845195770263672 + ], + [ + "RF", + -11.845630645751953 + ], + [ + "▁strongest", + -11.845743179321289 + ], + [ + "rish", + -11.84583568572998 + ], + [ + "▁BI", + -11.845963478088379 + ], + [ + "▁optimum", + -11.846038818359375 + ], + [ + "GN", + -11.846126556396484 + ], + [ + "▁Seller", + -11.84641170501709 + ], + [ + "▁slices", + -11.846485137939453 + ], + [ + "▁veggies", + -11.846526145935059 + ], + [ + "▁spike", + -11.846688270568848 + ], + [ + "▁Pope", + -11.846903800964355 + ], + [ + "▁Theory", + -11.846920013427734 + ], + [ + "▁crowded", + -11.846940994262695 + ], + [ + "GP", + -11.847062110900879 + ], + [ + "▁Filter", + -11.84755802154541 + ], + [ + "▁Mario", + -11.84757137298584 + ], + [ + "▁89", + -11.84774398803711 + ], + [ + "▁tide", + -11.84782600402832 + ], + [ + "▁spite", + -11.84789752960205 + ], + [ + "▁shark", + -11.848281860351562 + ], + [ + "▁Thor", + -11.848681449890137 + ], + [ + "▁jewellery", + -11.848695755004883 + ], + [ + "▁Peak", + -11.848814964294434 + ], + [ + "▁Virgin", + -11.848876953125 + ], + [ + "▁Brazilian", + -11.848883628845215 + ], + [ + "▁Wang", + -11.84920883178711 + ], + [ + "▁Keith", + -11.849283218383789 + ], + [ + "▁realised", + -11.849349975585938 + ], + [ + "▁reign", + -11.849363327026367 + ], + [ + "▁Hin", + -11.849701881408691 + ], + [ + "▁Hyper", + -11.849790573120117 + ], + [ + "▁critics", + -11.84988021850586 + ], + [ + "▁Alzheimer", + -11.850055694580078 + ], + [ + "▁Flag", + -11.850203514099121 + ], + [ + "▁stiff", + -11.850213050842285 + ], + [ + "▁mushrooms", + -11.850322723388672 + ], + [ + "▁Lovely", + -11.850602149963379 + ], + [ + "mur", + -11.85081672668457 + ], + [ + "▁diamonds", + -11.850830078125 + ], + [ + "som", + -11.850862503051758 + ], + [ + "▁Knight", + -11.850926399230957 + ], + [ + "▁Hold", + -11.851069450378418 + ], + [ + "▁81", + -11.851126670837402 + ], + [ + "▁Recent", + -11.851141929626465 + ], + [ + "final", + -11.85114860534668 + ], + [ + "▁demon", + -11.851237297058105 + ], + [ + "eren", + -11.851702690124512 + ], + [ + "▁Feed", + -11.851799011230469 + ], + [ + "▁airlines", + -11.851815223693848 + ], + [ + "▁yacht", + -11.851957321166992 + ], + [ + "▁nursery", + -11.852045059204102 + ], + [ + "ashi", + -11.852092742919922 + ], + [ + "leton", + -11.852132797241211 + ], + [ + "▁approx", + -11.852269172668457 + ], + [ + "▁Arena", + -11.852272033691406 + ], + [ + "▁Jessica", + -11.852278709411621 + ], + [ + "▁bail", + -11.852416038513184 + ], + [ + "▁distinguished", + -11.852531433105469 + ], + [ + "dependent", + -11.852638244628906 + ], + [ + "▁punishment", + -11.852757453918457 + ], + [ + "▁hydraulic", + -11.852836608886719 + ], + [ + "▁hunger", + -11.852934837341309 + ], + [ + "people", + -11.852961540222168 + ], + [ + "▁cheek", + -11.852978706359863 + ], + [ + "▁malware", + -11.853103637695312 + ], + [ + "▁Keeping", + -11.85315990447998 + ], + [ + "▁Loan", + -11.853181838989258 + ], + [ + "▁Montreal", + -11.853291511535645 + ], + [ + "▁Holland", + -11.853382110595703 + ], + [ + "▁verbal", + -11.853580474853516 + ], + [ + "▁Branch", + -11.853621482849121 + ], + [ + "▁RA", + -11.853686332702637 + ], + [ + "▁advocates", + -11.853816986083984 + ], + [ + "▁Nova", + -11.85405158996582 + ], + [ + "▁Nepal", + -11.854229927062988 + ], + [ + "course", + -11.854267120361328 + ], + [ + "▁Load", + -11.854426383972168 + ], + [ + "▁posters", + -11.854447364807129 + ], + [ + "▁accommodations", + -11.854504585266113 + ], + [ + "▁emotionally", + -11.854626655578613 + ], + [ + "▁Theme", + -11.85464859008789 + ], + [ + "▁rendering", + -11.854860305786133 + ], + [ + "▁seasoned", + -11.854873657226562 + ], + [ + "▁dare", + -11.854928970336914 + ], + [ + "▁Individual", + -11.855048179626465 + ], + [ + "▁93", + -11.855085372924805 + ], + [ + "▁beginners", + -11.855276107788086 + ], + [ + "▁defender", + -11.855276107788086 + ], + [ + "▁yogurt", + -11.85531234741211 + ], + [ + "▁Definition", + -11.855340957641602 + ], + [ + "▁Pros", + -11.855381965637207 + ], + [ + "clock", + -11.855464935302734 + ], + [ + "▁20-", + -11.85572338104248 + ], + [ + "▁viruses", + -11.855766296386719 + ], + [ + "brand", + -11.855857849121094 + ], + [ + "▁insects", + -11.856011390686035 + ], + [ + "▁transcript", + -11.856048583984375 + ], + [ + "OB", + -11.856085777282715 + ], + [ + "▁radar", + -11.85612964630127 + ], + [ + "▁Wholesale", + -11.856151580810547 + ], + [ + "▁grandchildren", + -11.85616683959961 + ], + [ + "▁98", + -11.856200218200684 + ], + [ + "▁gates", + -11.856449127197266 + ], + [ + "▁declaration", + -11.856452941894531 + ], + [ + "▁Creating", + -11.856657981872559 + ], + [ + "centric", + -11.856866836547852 + ], + [ + "▁persistent", + -11.857069969177246 + ], + [ + "health", + -11.85710334777832 + ], + [ + "▁bases", + -11.857551574707031 + ], + [ + "▁lion", + -11.857635498046875 + ], + [ + "▁replied", + -11.857793807983398 + ], + [ + "▁1500", + -11.858020782470703 + ], + [ + "▁Amendment", + -11.858022689819336 + ], + [ + "UK", + -11.858085632324219 + ], + [ + "▁deadly", + -11.858107566833496 + ], + [ + "▁threads", + -11.858111381530762 + ], + [ + "▁interval", + -11.858190536499023 + ], + [ + "▁retained", + -11.858198165893555 + ], + [ + "Or", + -11.85820198059082 + ], + [ + "▁belly", + -11.858242988586426 + ], + [ + "▁70%", + -11.858366012573242 + ], + [ + "▁appearances", + -11.858522415161133 + ], + [ + "▁Carpet", + -11.85888671875 + ], + [ + "▁Legend", + -11.859111785888672 + ], + [ + "▁Alberta", + -11.859150886535645 + ], + [ + "▁в", + -11.859200477600098 + ], + [ + "▁FO", + -11.859354019165039 + ], + [ + "▁NS", + -11.85941219329834 + ], + [ + "▁formerly", + -11.85941219329834 + ], + [ + "itation", + -11.859642028808594 + ], + [ + "▁scr", + -11.859657287597656 + ], + [ + "▁tweak", + -11.859728813171387 + ], + [ + "enny", + -11.859864234924316 + ], + [ + "iber", + -11.860445022583008 + ], + [ + "▁Tampa", + -11.860447883605957 + ], + [ + "▁sphere", + -11.860447883605957 + ], + [ + "▁chopped", + -11.86052417755127 + ], + [ + "▁streak", + -11.860626220703125 + ], + [ + "▁Colombia", + -11.860654830932617 + ], + [ + "▁proxy", + -11.860819816589355 + ], + [ + "▁stains", + -11.860984802246094 + ], + [ + "▁constitutional", + -11.861006736755371 + ], + [ + "7,", + -11.8611421585083 + ], + [ + "▁defines", + -11.861477851867676 + ], + [ + "▁boundary", + -11.861479759216309 + ], + [ + "▁Medicaid", + -11.861485481262207 + ], + [ + "▁basin", + -11.86191177368164 + ], + [ + "▁screws", + -11.862035751342773 + ], + [ + "▁predictions", + -11.862082481384277 + ], + [ + "▁Pac", + -11.862256050109863 + ], + [ + "▁Clip", + -11.862312316894531 + ], + [ + "▁purely", + -11.862505912780762 + ], + [ + "▁Kind", + -11.862853050231934 + ], + [ + "▁curiosity", + -11.862919807434082 + ], + [ + "AW", + -11.862922668457031 + ], + [ + "▁metallic", + -11.862933158874512 + ], + [ + "▁Border", + -11.862958908081055 + ], + [ + "▁sha", + -11.86303997039795 + ], + [ + "▁Pretty", + -11.863040924072266 + ], + [ + "▁Disc", + -11.863056182861328 + ], + [ + "▁wealthy", + -11.863073348999023 + ], + [ + "▁elegance", + -11.863121032714844 + ], + [ + "▁similarly", + -11.863121032714844 + ], + [ + "vari", + -11.863301277160645 + ], + [ + "▁uni", + -11.8634672164917 + ], + [ + "▁Subject", + -11.863662719726562 + ], + [ + "acre", + -11.86374282836914 + ], + [ + "▁Zoo", + -11.86402702331543 + ], + [ + "▁Terry", + -11.864141464233398 + ], + [ + ")?", + -11.864235877990723 + ], + [ + "CB", + -11.864238739013672 + ], + [ + "▁exhibits", + -11.864296913146973 + ], + [ + "chem", + -11.86439323425293 + ], + [ + "▁practitioner", + -11.864459037780762 + ], + [ + "▁bridges", + -11.86461353302002 + ], + [ + "▁Montana", + -11.864728927612305 + ], + [ + "▁pills", + -11.864775657653809 + ], + [ + "-22", + -11.864948272705078 + ], + [ + "▁transmitted", + -11.864951133728027 + ], + [ + "▁1978", + -11.864983558654785 + ], + [ + "▁hatch", + -11.865091323852539 + ], + [ + "▁Heights", + -11.86538028717041 + ], + [ + "lid", + -11.86546516418457 + ], + [ + "′", + -11.865525245666504 + ], + [ + "fast", + -11.865812301635742 + ], + [ + "▁understands", + -11.865880966186523 + ], + [ + "▁bulb", + -11.865942001342773 + ], + [ + "▁screenshot", + -11.866068840026855 + ], + [ + "▁(4)", + -11.866105079650879 + ], + [ + "▁HO", + -11.866107940673828 + ], + [ + "▁Neil", + -11.866374015808105 + ], + [ + "▁imperative", + -11.866399765014648 + ], + [ + "gus", + -11.86651611328125 + ], + [ + "▁Juan", + -11.866521835327148 + ], + [ + "▁Nan", + -11.866549491882324 + ], + [ + "▁Finish", + -11.866612434387207 + ], + [ + "▁coalition", + -11.866728782653809 + ], + [ + "▁indigenous", + -11.866745948791504 + ], + [ + "girl", + -11.86698055267334 + ], + [ + "▁Finland", + -11.867035865783691 + ], + [ + "▁acquiring", + -11.86709213256836 + ], + [ + "▁nowadays", + -11.867122650146484 + ], + [ + "location", + -11.867158889770508 + ], + [ + "▁united", + -11.867358207702637 + ], + [ + "▁vivid", + -11.867402076721191 + ], + [ + "jur", + -11.867480278015137 + ], + [ + "ologists", + -11.86760139465332 + ], + [ + "empt", + -11.867801666259766 + ], + [ + "▁Argentina", + -11.867870330810547 + ], + [ + "▁Membership", + -11.86787223815918 + ], + [ + "▁capturing", + -11.867944717407227 + ], + [ + "▁Fix", + -11.868268966674805 + ], + [ + "▁Psychology", + -11.868717193603516 + ], + [ + "▁NT", + -11.868819236755371 + ], + [ + "▁Bai", + -11.868950843811035 + ], + [ + "▁BB", + -11.869033813476562 + ], + [ + "▁diagnose", + -11.869462966918945 + ], + [ + "zie", + -11.8695068359375 + ], + [ + "▁imagery", + -11.869722366333008 + ], + [ + "▁displaying", + -11.869976043701172 + ], + [ + "BU", + -11.870019912719727 + ], + [ + "▁performers", + -11.870065689086914 + ], + [ + "cultural", + -11.870137214660645 + ], + [ + "▁stirring", + -11.870179176330566 + ], + [ + "▁Dinner", + -11.870367050170898 + ], + [ + "▁clinics", + -11.870603561401367 + ], + [ + "▁skiing", + -11.870611190795898 + ], + [ + "alism", + -11.870744705200195 + ], + [ + "▁Shot", + -11.870805740356445 + ], + [ + "▁detector", + -11.870821952819824 + ], + [ + "▁deduction", + -11.87099838256836 + ], + [ + "west", + -11.871356010437012 + ], + [ + "án", + -11.871418952941895 + ], + [ + "saw", + -11.871469497680664 + ], + [ + "▁ceilings", + -11.871488571166992 + ], + [ + "▁youngest", + -11.871646881103516 + ], + [ + "▁belonging", + -11.871703147888184 + ], + [ + "▁flex", + -11.871964454650879 + ], + [ + "▁monitored", + -11.87215518951416 + ], + [ + "▁eliminated", + -11.872159957885742 + ], + [ + "▁regimen", + -11.872184753417969 + ], + [ + "▁Industries", + -11.872208595275879 + ], + [ + "wave", + -11.872241973876953 + ], + [ + "UC", + -11.872594833374023 + ], + [ + "▁Murphy", + -11.872687339782715 + ], + [ + "▁Teachers", + -11.872758865356445 + ], + [ + "▁spinal", + -11.87277603149414 + ], + [ + "▁Allah", + -11.873172760009766 + ], + [ + "▁Receive", + -11.873177528381348 + ], + [ + "▁hardest", + -11.873306274414062 + ], + [ + "▁Cruz", + -11.873567581176758 + ], + [ + "▁Score", + -11.873719215393066 + ], + [ + "▁genius", + -11.873719215393066 + ], + [ + "▁Healthy", + -11.873810768127441 + ], + [ + "▁Roof", + -11.873839378356934 + ], + [ + "▁с", + -11.87399673461914 + ], + [ + "▁GI", + -11.874127388000488 + ], + [ + "NL", + -11.874232292175293 + ], + [ + "phi", + -11.874302864074707 + ], + [ + "---", + -11.87430477142334 + ], + [ + "▁allowance", + -11.874608993530273 + ], + [ + "▁Rhode", + -11.874627113342285 + ], + [ + "▁Shadow", + -11.874669075012207 + ], + [ + "▁Regular", + -11.87474536895752 + ], + [ + "▁drainage", + -11.87486457824707 + ], + [ + "▁amateur", + -11.875086784362793 + ], + [ + "▁feast", + -11.875102043151855 + ], + [ + "Bu", + -11.875154495239258 + ], + [ + "2015", + -11.875223159790039 + ], + [ + "▁Expect", + -11.875238418579102 + ], + [ + "▁hail", + -11.875308990478516 + ], + [ + "▁clarify", + -11.875380516052246 + ], + [ + "▁Hudson", + -11.875516891479492 + ], + [ + "▁fax", + -11.875581741333008 + ], + [ + "▁posture", + -11.87563705444336 + ], + [ + "▁Message", + -11.875653266906738 + ], + [ + "▁IM", + -11.875673294067383 + ], + [ + "kha", + -11.8756742477417 + ], + [ + "▁Oz", + -11.875689506530762 + ], + [ + "▁Expo", + -11.875703811645508 + ], + [ + "▁professionalism", + -11.87584400177002 + ], + [ + "▁raises", + -11.87591552734375 + ], + [ + "bab", + -11.875927925109863 + ], + [ + "Can", + -11.875944137573242 + ], + [ + "▁McDonald", + -11.876097679138184 + ], + [ + "glass", + -11.876321792602539 + ], + [ + "▁RI", + -11.876399040222168 + ], + [ + "▁rat", + -11.876461029052734 + ], + [ + "▁Wire", + -11.876470565795898 + ], + [ + "▁DB", + -11.87647819519043 + ], + [ + "▁4)", + -11.876516342163086 + ], + [ + "▁curb", + -11.8765287399292 + ], + [ + "lap", + -11.876595497131348 + ], + [ + "8,000", + -11.876605033874512 + ], + [ + "▁shoppers", + -11.876623153686523 + ], + [ + "▁activists", + -11.876981735229492 + ], + [ + "▁Dual", + -11.877038955688477 + ], + [ + "▁grandfather", + -11.877076148986816 + ], + [ + "▁Gall", + -11.877131462097168 + ], + [ + "udge", + -11.877223014831543 + ], + [ + "▁beverages", + -11.877399444580078 + ], + [ + "▁Testament", + -11.877448081970215 + ], + [ + "rab", + -11.877530097961426 + ], + [ + "▁expectation", + -11.877553939819336 + ], + [ + "▁Nine", + -11.877613067626953 + ], + [ + "▁interviewed", + -11.877713203430176 + ], + [ + "▁fade", + -11.878022193908691 + ], + [ + "▁yearly", + -11.878186225891113 + ], + [ + "▁Operation", + -11.878215789794922 + ], + [ + "▁Generation", + -11.87844181060791 + ], + [ + "▁flooding", + -11.878443717956543 + ], + [ + "▁assumptions", + -11.878470420837402 + ], + [ + "▁Jaw", + -11.878830909729004 + ], + [ + "▁Apparently", + -11.879097938537598 + ], + [ + "▁artisan", + -11.879133224487305 + ], + [ + "▁depot", + -11.879249572753906 + ], + [ + "но", + -11.879393577575684 + ], + [ + "▁Solution", + -11.879522323608398 + ], + [ + "▁Added", + -11.879769325256348 + ], + [ + "▁whatsoever", + -11.879974365234375 + ], + [ + "▁ar", + -11.880046844482422 + ], + [ + "▁Wallpaper", + -11.880064964294434 + ], + [ + "▁invaluable", + -11.880094528198242 + ], + [ + "▁Bern", + -11.880171775817871 + ], + [ + "▁Similar", + -11.880284309387207 + ], + [ + "▁Hebrew", + -11.880290985107422 + ], + [ + "▁Introduction", + -11.880382537841797 + ], + [ + "▁Stanley", + -11.880455017089844 + ], + [ + "ester", + -11.880553245544434 + ], + [ + "▁6:", + -11.880800247192383 + ], + [ + "▁Engineer", + -11.8808012008667 + ], + [ + "▁Concrete", + -11.880865097045898 + ], + [ + "▁forty", + -11.881032943725586 + ], + [ + "▁Woman", + -11.881098747253418 + ], + [ + "▁Reform", + -11.881336212158203 + ], + [ + "▁adore", + -11.881402969360352 + ], + [ + "▁mentally", + -11.881651878356934 + ], + [ + "▁yeast", + -11.881790161132812 + ], + [ + "eter", + -11.881935119628906 + ], + [ + "▁drone", + -11.882086753845215 + ], + [ + "▁shocked", + -11.882306098937988 + ], + [ + "▁hats", + -11.882317543029785 + ], + [ + "▁breeding", + -11.88251781463623 + ], + [ + "paced", + -11.882730484008789 + ], + [ + "▁1940", + -11.882780075073242 + ], + [ + "▁Billy", + -11.882927894592285 + ], + [ + "▁foundations", + -11.883035659790039 + ], + [ + "edit", + -11.883173942565918 + ], + [ + "▁Whole", + -11.88320255279541 + ], + [ + "▁Pub", + -11.883243560791016 + ], + [ + "▁Butter", + -11.883244514465332 + ], + [ + "▁Nintendo", + -11.883308410644531 + ], + [ + "▁textbook", + -11.883367538452148 + ], + [ + "lion", + -11.883384704589844 + ], + [ + "lent", + -11.883415222167969 + ], + [ + "pod", + -11.883540153503418 + ], + [ + "▁norm", + -11.883688926696777 + ], + [ + "▁900", + -11.883907318115234 + ], + [ + "▁sore", + -11.884215354919434 + ], + [ + "GU", + -11.884289741516113 + ], + [ + "GH", + -11.884532928466797 + ], + [ + "-21", + -11.884695053100586 + ], + [ + "▁medieval", + -11.884775161743164 + ], + [ + "▁TD", + -11.884807586669922 + ], + [ + "▁creature", + -11.885043144226074 + ], + [ + "resistant", + -11.885122299194336 + ], + [ + "▁Rub", + -11.885160446166992 + ], + [ + "▁angles", + -11.885279655456543 + ], + [ + "▁inspirational", + -11.885354042053223 + ], + [ + "▁Hampshire", + -11.88545036315918 + ], + [ + "▁sur", + -11.885468482971191 + ], + [ + "▁exc", + -11.885787963867188 + ], + [ + "▁remainder", + -11.88612174987793 + ], + [ + "▁Nurse", + -11.88617992401123 + ], + [ + "▁virtue", + -11.88630199432373 + ], + [ + "▁Evans", + -11.886323928833008 + ], + [ + "▁Sponsor", + -11.886420249938965 + ], + [ + "▁architects", + -11.88659381866455 + ], + [ + "▁disclosed", + -11.886727333068848 + ], + [ + "▁torque", + -11.886951446533203 + ], + [ + "▁Scholarship", + -11.887009620666504 + ], + [ + "▁Benjamin", + -11.887065887451172 + ], + [ + "▁bespoke", + -11.887218475341797 + ], + [ + "▁rabbit", + -11.88724422454834 + ], + [ + "▁Processing", + -11.88740348815918 + ], + [ + "▁spur", + -11.887423515319824 + ], + [ + "▁vaccine", + -11.887641906738281 + ], + [ + "▁strengthening", + -11.887939453125 + ], + [ + "▁historian", + -11.887983322143555 + ], + [ + "▁surround", + -11.88798713684082 + ], + [ + "▁wow", + -11.887988090515137 + ], + [ + "cons", + -11.888009071350098 + ], + [ + "look", + -11.888228416442871 + ], + [ + "Spec", + -11.888532638549805 + ], + [ + "▁modular", + -11.888566970825195 + ], + [ + "written", + -11.888586044311523 + ], + [ + "1-1", + -11.888711929321289 + ], + [ + "▁$12", + -11.888725280761719 + ], + [ + "▁failures", + -11.888771057128906 + ], + [ + "▁reporter", + -11.888786315917969 + ], + [ + "▁Eu", + -11.888846397399902 + ], + [ + "residing", + -11.889041900634766 + ], + [ + "Day", + -11.88914966583252 + ], + [ + "allegedly", + -11.889169692993164 + ], + [ + "▁Laser", + -11.889334678649902 + ], + [ + "▁Doors", + -11.889379501342773 + ], + [ + "KA", + -11.889421463012695 + ], + [ + "▁whale", + -11.889436721801758 + ], + [ + "▁Ep", + -11.889556884765625 + ], + [ + "▁considerations", + -11.889632225036621 + ], + [ + "▁associates", + -11.889641761779785 + ], + [ + "▁timeless", + -11.88971996307373 + ], + [ + "▁Effective", + -11.88994312286377 + ], + [ + "▁Testing", + -11.889957427978516 + ], + [ + "▁Educational", + -11.890040397644043 + ], + [ + "▁attain", + -11.89005184173584 + ], + [ + "▁Queensland", + -11.890074729919434 + ], + [ + "gla", + -11.890107154846191 + ], + [ + "CF", + -11.890237808227539 + ], + [ + "▁Fabric", + -11.89028549194336 + ], + [ + "▁Iranian", + -11.890894889831543 + ], + [ + "Why", + -11.890973091125488 + ], + [ + "▁decorate", + -11.89098072052002 + ], + [ + "▁OC", + -11.891000747680664 + ], + [ + "▁systematic", + -11.891020774841309 + ], + [ + "▁Pastor", + -11.89116096496582 + ], + [ + "▁mayor", + -11.891218185424805 + ], + [ + "▁wellbeing", + -11.891267776489258 + ], + [ + "▁inherent", + -11.891523361206055 + ], + [ + "allow", + -11.891762733459473 + ], + [ + "root", + -11.892038345336914 + ], + [ + "▁furnished", + -11.892106056213379 + ], + [ + "▁calculations", + -11.892205238342285 + ], + [ + "▁Stamp", + -11.892311096191406 + ], + [ + "▁beginner", + -11.892321586608887 + ], + [ + "HO", + -11.89233684539795 + ], + [ + "▁logs", + -11.892550468444824 + ], + [ + "▁exhibitions", + -11.892695426940918 + ], + [ + "shed", + -11.892742156982422 + ], + [ + "/16", + -11.892773628234863 + ], + [ + "public", + -11.892836570739746 + ], + [ + "bru", + -11.892919540405273 + ], + [ + "▁Pain", + -11.89293384552002 + ], + [ + "▁ridiculous", + -11.892964363098145 + ], + [ + "▁swa", + -11.89303207397461 + ], + [ + "▁unclear", + -11.893239974975586 + ], + [ + "▁scholarships", + -11.893304824829102 + ], + [ + "▁geographical", + -11.893476486206055 + ], + [ + "▁Dep", + -11.89350700378418 + ], + [ + "▁canada", + -11.893675804138184 + ], + [ + "▁sensible", + -11.893795013427734 + ], + [ + "miss", + -11.893847465515137 + ], + [ + "uge", + -11.893951416015625 + ], + [ + "▁Plat", + -11.894095420837402 + ], + [ + "▁kicked", + -11.894259452819824 + ], + [ + "▁Leonard", + -11.894590377807617 + ], + [ + "business", + -11.894787788391113 + ], + [ + "▁builders", + -11.89481258392334 + ], + [ + "station", + -11.8948974609375 + ], + [ + "▁odor", + -11.895112037658691 + ], + [ + "▁Olympics", + -11.89512825012207 + ], + [ + "▁Andrea", + -11.895278930664062 + ], + [ + "2012", + -11.895313262939453 + ], + [ + "▁Kay", + -11.89544677734375 + ], + [ + "▁raid", + -11.895606994628906 + ], + [ + "▁acted", + -11.89562702178955 + ], + [ + "▁incoming", + -11.896231651306152 + ], + [ + "sided", + -11.89639949798584 + ], + [ + "▁behave", + -11.89648723602295 + ], + [ + "▁prophet", + -11.896546363830566 + ], + [ + "▁terrorism", + -11.896598815917969 + ], + [ + "▁Guests", + -11.896687507629395 + ], + [ + "LF", + -11.896772384643555 + ], + [ + "▁79", + -11.896940231323242 + ], + [ + "▁analyzing", + -11.896967887878418 + ], + [ + "▁axis", + -11.897055625915527 + ], + [ + "cine", + -11.897071838378906 + ], + [ + "him", + -11.89719009399414 + ], + [ + "▁pH", + -11.897273063659668 + ], + [ + "▁Relations", + -11.897308349609375 + ], + [ + "▁invisible", + -11.897503852844238 + ], + [ + "▁assortment", + -11.897562026977539 + ], + [ + "Originally", + -11.897771835327148 + ], + [ + "cycle", + -11.89779281616211 + ], + [ + "▁2005,", + -11.89786148071289 + ], + [ + "▁tubes", + -11.897974014282227 + ], + [ + "▁catalogue", + -11.897974967956543 + ], + [ + "▁prohibit", + -11.898313522338867 + ], + [ + "▁$30", + -11.898324966430664 + ], + [ + "eration", + -11.89854621887207 + ], + [ + "▁Champion", + -11.898575782775879 + ], + [ + "pil", + -11.89867115020752 + ], + [ + "rud", + -11.898736953735352 + ], + [ + "▁Zero", + -11.898856163024902 + ], + [ + "FM", + -11.89893627166748 + ], + [ + "▁Yi", + -11.898957252502441 + ], + [ + "▁16.", + -11.898998260498047 + ], + [ + "▁blown", + -11.899024963378906 + ], + [ + "child", + -11.899128913879395 + ], + [ + "▁Examples", + -11.899223327636719 + ], + [ + "▁highlighting", + -11.899260520935059 + ], + [ + "▁sta", + -11.89933967590332 + ], + [ + "GR", + -11.899362564086914 + ], + [ + "▁Pl", + -11.899521827697754 + ], + [ + "Love", + -11.899778366088867 + ], + [ + "▁hinge", + -11.89981460571289 + ], + [ + "▁suppress", + -11.899843215942383 + ], + [ + "▁spotlight", + -11.899872779846191 + ], + [ + "▁Fruit", + -11.899882316589355 + ], + [ + "grass", + -11.89992618560791 + ], + [ + "▁Copper", + -11.900222778320312 + ], + [ + "break", + -11.900236129760742 + ], + [ + "▁vocabulary", + -11.900270462036133 + ], + [ + "lessly", + -11.900447845458984 + ], + [ + "▁wheelchair", + -11.900476455688477 + ], + [ + "▁awkward", + -11.900729179382324 + ], + [ + "▁Lights", + -11.900742530822754 + ], + [ + "ensi", + -11.900774955749512 + ], + [ + "config", + -11.900871276855469 + ], + [ + "▁furnishings", + -11.900979042053223 + ], + [ + "▁ugly", + -11.900984764099121 + ], + [ + "▁donor", + -11.901071548461914 + ], + [ + "▁compliant", + -11.901298522949219 + ], + [ + "▁mal", + -11.90138053894043 + ], + [ + "▁centered", + -11.901472091674805 + ], + [ + "Sta", + -11.90151596069336 + ], + [ + "▁Conservation", + -11.901552200317383 + ], + [ + "▁commented", + -11.901583671569824 + ], + [ + "▁Ashley", + -11.901825904846191 + ], + [ + "▁searched", + -11.902091979980469 + ], + [ + "▁Hurricane", + -11.902238845825195 + ], + [ + "tek", + -11.902270317077637 + ], + [ + "▁Elite", + -11.902324676513672 + ], + [ + "second", + -11.902386665344238 + ], + [ + "▁1976", + -11.902403831481934 + ], + [ + "▁devastating", + -11.902567863464355 + ], + [ + "▁Popular", + -11.902767181396484 + ], + [ + "▁india", + -11.902832984924316 + ], + [ + "▁touchdown", + -11.903082847595215 + ], + [ + "▁Horn", + -11.903181076049805 + ], + [ + "▁payday", + -11.903440475463867 + ], + [ + "▁Scientific", + -11.90355396270752 + ], + [ + "ée", + -11.903783798217773 + ], + [ + "▁Mental", + -11.903942108154297 + ], + [ + "▁Wildlife", + -11.904128074645996 + ], + [ + "▁mate", + -11.90416431427002 + ], + [ + "▁overlook", + -11.904260635375977 + ], + [ + "▁scanner", + -11.904261589050293 + ], + [ + "▁alerts", + -11.90426254272461 + ], + [ + "▁molecules", + -11.904322624206543 + ], + [ + "▁amino", + -11.904460906982422 + ], + [ + "▁Flower", + -11.904494285583496 + ], + [ + "▁unprecedented", + -11.904510498046875 + ], + [ + "quir", + -11.90456771850586 + ], + [ + "▁logging", + -11.904847145080566 + ], + [ + "▁Sel", + -11.904950141906738 + ], + [ + "▁Lost", + -11.904970169067383 + ], + [ + "▁1.0", + -11.905086517333984 + ], + [ + "▁Oliver", + -11.905232429504395 + ], + [ + "flew", + -11.905255317687988 + ], + [ + "▁exceptionally", + -11.905296325683594 + ], + [ + "ckle", + -11.905339241027832 + ], + [ + "▁MM", + -11.905385971069336 + ], + [ + "▁Jefferson", + -11.905488014221191 + ], + [ + "▁balloon", + -11.905620574951172 + ], + [ + "▁Grill", + -11.90588665008545 + ], + [ + "▁Hire", + -11.906115531921387 + ], + [ + "▁bitcoin", + -11.906344413757324 + ], + [ + "▁thru", + -11.906351089477539 + ], + [ + "horn", + -11.906359672546387 + ], + [ + "▁startups", + -11.90638256072998 + ], + [ + "▁intriguing", + -11.906457901000977 + ], + [ + "▁Manufacturing", + -11.906488418579102 + ], + [ + "▁assemble", + -11.90651798248291 + ], + [ + "▁pod", + -11.906645774841309 + ], + [ + "▁stair", + -11.906968116760254 + ], + [ + "▁Database", + -11.90699291229248 + ], + [ + "▁borrow", + -11.907013893127441 + ], + [ + "CTION", + -11.907060623168945 + ], + [ + "▁exports", + -11.907076835632324 + ], + [ + "▁preservation", + -11.90730094909668 + ], + [ + "▁forcing", + -11.907391548156738 + ], + [ + "ddle", + -11.907466888427734 + ], + [ + "▁2004.", + -11.907564163208008 + ], + [ + "▁selections", + -11.9075927734375 + ], + [ + "▁brakes", + -11.907682418823242 + ], + [ + "▁Yesterday", + -11.907748222351074 + ], + [ + "▁phases", + -11.907814979553223 + ], + [ + "2018.", + -11.907819747924805 + ], + [ + "▁sausage", + -11.907868385314941 + ], + [ + "▁heels", + -11.908029556274414 + ], + [ + "▁Hum", + -11.90804672241211 + ], + [ + "▁await", + -11.90807056427002 + ], + [ + "though", + -11.908188819885254 + ], + [ + "▁Jamie", + -11.908665657043457 + ], + [ + "▁Secure", + -11.90870475769043 + ], + [ + "▁nonetheless", + -11.908740043640137 + ], + [ + "▁charitable", + -11.90880012512207 + ], + [ + "▁lifted", + -11.908848762512207 + ], + [ + "▁replicate", + -11.908892631530762 + ], + [ + "▁inserted", + -11.909126281738281 + ], + [ + "▁reflecting", + -11.909255027770996 + ], + [ + "▁1975", + -11.909259796142578 + ], + [ + "both", + -11.909268379211426 + ], + [ + "▁bandwidth", + -11.909273147583008 + ], + [ + "▁ACT", + -11.909278869628906 + ], + [ + "although", + -11.909333229064941 + ], + [ + "▁Knowing", + -11.909383773803711 + ], + [ + "Pre", + -11.909582138061523 + ], + [ + "▁stroll", + -11.909852981567383 + ], + [ + "erton", + -11.909862518310547 + ], + [ + "▁wonders", + -11.910676002502441 + ], + [ + "▁Consulting", + -11.910876274108887 + ], + [ + "▁Election", + -11.910907745361328 + ], + [ + "▁Leg", + -11.911055564880371 + ], + [ + "▁Delaware", + -11.911118507385254 + ], + [ + "▁>>", + -11.911211013793945 + ], + [ + "▁Cameron", + -11.911272048950195 + ], + [ + "▁seminars", + -11.911376953125 + ], + [ + "▁initiate", + -11.91164779663086 + ], + [ + "achi", + -11.911760330200195 + ], + [ + "▁tragic", + -11.91181468963623 + ], + [ + "▁distress", + -11.911881446838379 + ], + [ + "▁attitudes", + -11.912090301513672 + ], + [ + "▁Abstract", + -11.912374496459961 + ], + [ + "▁Stick", + -11.912389755249023 + ], + [ + "mag", + -11.912430763244629 + ], + [ + "▁Example", + -11.912508964538574 + ], + [ + "▁Perry", + -11.912516593933105 + ], + [ + "▁Haven", + -11.912549018859863 + ], + [ + "abb", + -11.912566184997559 + ], + [ + "▁triggered", + -11.912609100341797 + ], + [ + "▁engineered", + -11.912632942199707 + ], + [ + "▁firing", + -11.912877082824707 + ], + [ + "▁guardian", + -11.912928581237793 + ], + [ + "iver", + -11.912960052490234 + ], + [ + "▁Tiger", + -11.913151741027832 + ], + [ + "▁logged", + -11.91321849822998 + ], + [ + "▁invites", + -11.91326904296875 + ], + [ + "▁grammar", + -11.913537979125977 + ], + [ + "▁monitors", + -11.91355037689209 + ], + [ + "▁sodium", + -11.913687705993652 + ], + [ + "▁shrimp", + -11.913983345031738 + ], + [ + "▁wishing", + -11.914020538330078 + ], + [ + "▁Vermont", + -11.914332389831543 + ], + [ + "▁sticking", + -11.91438102722168 + ], + [ + "▁Memory", + -11.914406776428223 + ], + [ + "▁Bun", + -11.914546012878418 + ], + [ + "▁upside", + -11.914551734924316 + ], + [ + "chlor", + -11.914679527282715 + ], + [ + "▁Admission", + -11.914704322814941 + ], + [ + "▁pinch", + -11.914896011352539 + ], + [ + "▁cutter", + -11.914945602416992 + ], + [ + "▁encryption", + -11.915225982666016 + ], + [ + "▁60%", + -11.91537094116211 + ], + [ + "▁societies", + -11.915494918823242 + ], + [ + "▁threatening", + -11.915617942810059 + ], + [ + "▁introduces", + -11.915718078613281 + ], + [ + "▁melted", + -11.916114807128906 + ], + [ + "lev", + -11.916272163391113 + ], + [ + "▁coral", + -11.91637897491455 + ], + [ + "control", + -11.916402816772461 + ], + [ + "▁allergies", + -11.916403770446777 + ], + [ + "▁nightmare", + -11.91640567779541 + ], + [ + "owing", + -11.91647720336914 + ], + [ + "▁Excellence", + -11.916523933410645 + ], + [ + "▁obesity", + -11.916523933410645 + ], + [ + "fly", + -11.91652774810791 + ], + [ + "▁trademarks", + -11.916529655456543 + ], + [ + "country", + -11.91690731048584 + ], + [ + "▁Hindu", + -11.916932106018066 + ], + [ + "Figure", + -11.91696548461914 + ], + [ + "pdf", + -11.917027473449707 + ], + [ + "▁celebrations", + -11.917217254638672 + ], + [ + "▁UT", + -11.917292594909668 + ], + [ + "▁Que", + -11.917478561401367 + ], + [ + "▁Root", + -11.917590141296387 + ], + [ + "EB", + -11.917619705200195 + ], + [ + "camp", + -11.917634010314941 + ], + [ + "▁token", + -11.917861938476562 + ], + [ + "▁pixel", + -11.917880058288574 + ], + [ + "stand", + -11.917986869812012 + ], + [ + "▁underway", + -11.918009757995605 + ], + [ + "▁soften", + -11.918155670166016 + ], + [ + "▁hormone", + -11.918169975280762 + ], + [ + "▁Resolution", + -11.918230056762695 + ], + [ + "▁recipients", + -11.918380737304688 + ], + [ + "001", + -11.918512344360352 + ], + [ + "▁blended", + -11.918603897094727 + ], + [ + "▁whisk", + -11.919675827026367 + ], + [ + "▁apparatus", + -11.919709205627441 + ], + [ + "▁decides", + -11.919975280761719 + ], + [ + "▁Wikipedia", + -11.919983863830566 + ], + [ + "lut", + -11.920263290405273 + ], + [ + "▁bypass", + -11.920281410217285 + ], + [ + "▁Woods", + -11.920368194580078 + ], + [ + "▁feasible", + -11.920438766479492 + ], + [ + "▁Mile", + -11.920499801635742 + ], + [ + "▁CRM", + -11.92056941986084 + ], + [ + "ider", + -11.92057991027832 + ], + [ + "▁roulette", + -11.920591354370117 + ], + [ + "▁Ace", + -11.920832633972168 + ], + [ + "▁Seed", + -11.920843124389648 + ], + [ + "▁Lib", + -11.920929908752441 + ], + [ + "▁COM", + -11.920937538146973 + ], + [ + "▁Remote", + -11.920951843261719 + ], + [ + "▁Uber", + -11.9210205078125 + ], + [ + "▁AF", + -11.92110824584961 + ], + [ + "▁embark", + -11.921151161193848 + ], + [ + "▁allegations", + -11.92137336730957 + ], + [ + "▁prediction", + -11.921402931213379 + ], + [ + "▁cousin", + -11.921441078186035 + ], + [ + "▁Chase", + -11.921562194824219 + ], + [ + "▁worrying", + -11.921597480773926 + ], + [ + "▁textures", + -11.921781539916992 + ], + [ + "▁Pie", + -11.921915054321289 + ], + [ + "▁Traffic", + -11.921960830688477 + ], + [ + "yle", + -11.921991348266602 + ], + [ + "▁costumes", + -11.92225170135498 + ], + [ + "El", + -11.922294616699219 + ], + [ + "nium", + -11.92234992980957 + ], + [ + "▁91", + -11.922374725341797 + ], + [ + "FD", + -11.922476768493652 + ], + [ + "▁Lim", + -11.922476768493652 + ], + [ + "▁Fly", + -11.922554969787598 + ], + [ + "Not", + -11.922612190246582 + ], + [ + "dow", + -11.92265510559082 + ], + [ + "Thank", + -11.922719955444336 + ], + [ + "▁MN", + -11.922731399536133 + ], + [ + "▁suites", + -11.922759056091309 + ], + [ + "inner", + -11.922852516174316 + ], + [ + "▁Beer", + -11.922876358032227 + ], + [ + "▁JA", + -11.922924995422363 + ], + [ + "▁soak", + -11.923267364501953 + ], + [ + "▁uniquely", + -11.923314094543457 + ], + [ + "▁sweater", + -11.923377990722656 + ], + [ + "▁spider", + -11.923556327819824 + ], + [ + "generation", + -11.923887252807617 + ], + [ + "▁craving", + -11.924005508422852 + ], + [ + "▁Tourism", + -11.924312591552734 + ], + [ + "▁Term", + -11.924351692199707 + ], + [ + "▁uncle", + -11.924396514892578 + ], + [ + "▁EUR", + -11.924826622009277 + ], + [ + "▁EL", + -11.924996376037598 + ], + [ + "BER", + -11.925065994262695 + ], + [ + "▁clutch", + -11.925232887268066 + ], + [ + "▁peppers", + -11.925413131713867 + ], + [ + "▁foremost", + -11.925435066223145 + ], + [ + "▁payroll", + -11.925493240356445 + ], + [ + "▁widget", + -11.92556095123291 + ], + [ + "call", + -11.925779342651367 + ], + [ + "▁quarterly", + -11.925853729248047 + ], + [ + "▁Lei", + -11.925857543945312 + ], + [ + "EU", + -11.92591667175293 + ], + [ + "▁elastic", + -11.925971031188965 + ], + [ + "▁APP", + -11.925997734069824 + ], + [ + "▁mortality", + -11.926112174987793 + ], + [ + "TB", + -11.926122665405273 + ], + [ + "▁Cuba", + -11.926250457763672 + ], + [ + "▁Parent", + -11.926318168640137 + ], + [ + "motion", + -11.926389694213867 + ], + [ + "▁withstand", + -11.926641464233398 + ], + [ + "Link", + -11.926661491394043 + ], + [ + "half", + -11.926703453063965 + ], + [ + "▁Medium", + -11.926713943481445 + ], + [ + "▁fountain", + -11.926876068115234 + ], + [ + "▁broadband", + -11.92687702178955 + ], + [ + "▁multitude", + -11.92687702178955 + ], + [ + "▁fixture", + -11.927294731140137 + ], + [ + "▁freshly", + -11.927319526672363 + ], + [ + "▁allocated", + -11.927349090576172 + ], + [ + "▁airplane", + -11.92739200592041 + ], + [ + "cop", + -11.927698135375977 + ], + [ + "▁Colour", + -11.927770614624023 + ], + [ + "stain", + -11.927791595458984 + ], + [ + "▁100,000", + -11.927842140197754 + ], + [ + "▁Mills", + -11.927900314331055 + ], + [ + "▁exchanges", + -11.927910804748535 + ], + [ + "sale", + -11.927935600280762 + ], + [ + "claiming", + -11.928027153015137 + ], + [ + "▁Launch", + -11.928094863891602 + ], + [ + "▁Historic", + -11.928115844726562 + ], + [ + "▁freezing", + -11.92821216583252 + ], + [ + "ncies", + -11.928285598754883 + ], + [ + "▁Lie", + -11.928434371948242 + ], + [ + "▁IoT", + -11.928524017333984 + ], + [ + "dex", + -11.928559303283691 + ], + [ + "▁Milk", + -11.928565979003906 + ], + [ + "saving", + -11.9287691116333 + ], + [ + "feed", + -11.928927421569824 + ], + [ + "▁Kr", + -11.929004669189453 + ], + [ + "▁SR", + -11.929241180419922 + ], + [ + "▁interfere", + -11.929274559020996 + ], + [ + "hog", + -11.929610252380371 + ], + [ + "▁unsure", + -11.92963695526123 + ], + [ + "▁Movement", + -11.929752349853516 + ], + [ + "plat", + -11.93019962310791 + ], + [ + "▁immense", + -11.930274963378906 + ], + [ + "▁persist", + -11.930363655090332 + ], + [ + "▁Fer", + -11.930521011352539 + ], + [ + "▁Mol", + -11.930590629577637 + ], + [ + "▁cardiovascular", + -11.930649757385254 + ], + [ + "▁Burn", + -11.930895805358887 + ], + [ + "▁darker", + -11.930938720703125 + ], + [ + "MV", + -11.931044578552246 + ], + [ + "▁unforgettable", + -11.931073188781738 + ], + [ + "▁topping", + -11.931110382080078 + ], + [ + "▁pledge", + -11.9312105178833 + ], + [ + "enna", + -11.931304931640625 + ], + [ + "Har", + -11.93130874633789 + ], + [ + "▁Arc", + -11.931324005126953 + ], + [ + "▁gl", + -11.931403160095215 + ], + [ + "”).", + -11.931426048278809 + ], + [ + "▁equality", + -11.931478500366211 + ], + [ + "▁abortion", + -11.931583404541016 + ], + [ + "▁sticky", + -11.931610107421875 + ], + [ + "▁disappointment", + -11.93162727355957 + ], + [ + "▁renew", + -11.931682586669922 + ], + [ + "▁cubic", + -11.931913375854492 + ], + [ + "▁Entry", + -11.931998252868652 + ], + [ + "agh", + -11.932016372680664 + ], + [ + "▁governing", + -11.932184219360352 + ], + [ + "proving", + -11.932403564453125 + ], + [ + "▁Bass", + -11.93251895904541 + ], + [ + "▁Hotels", + -11.932695388793945 + ], + [ + "ogy", + -11.932724952697754 + ], + [ + "▁Principal", + -11.932738304138184 + ], + [ + "▁trapped", + -11.932880401611328 + ], + [ + "▁hum", + -11.932958602905273 + ], + [ + "▁Blend", + -11.932968139648438 + ], + [ + "▁knees", + -11.93308162689209 + ], + [ + "▁Ferr", + -11.93331241607666 + ], + [ + "trade", + -11.93358325958252 + ], + [ + "GM", + -11.933642387390137 + ], + [ + "▁labeled", + -11.93364429473877 + ], + [ + "▁favorable", + -11.933659553527832 + ], + [ + "EO", + -11.93401050567627 + ], + [ + "loss", + -11.934178352355957 + ], + [ + "/5", + -11.934399604797363 + ], + [ + "inator", + -11.93442153930664 + ], + [ + "▁spelling", + -11.93452262878418 + ], + [ + "▁groove", + -11.934569358825684 + ], + [ + "kit", + -11.934657096862793 + ], + [ + "▁Plaza", + -11.93468952178955 + ], + [ + "▁Carr", + -11.934733390808105 + ], + [ + "tory", + -11.934940338134766 + ], + [ + "▁Photoshop", + -11.934986114501953 + ], + [ + "▁sponsorship", + -11.93518352508545 + ], + [ + "medi", + -11.935272216796875 + ], + [ + "volv", + -11.935372352600098 + ], + [ + "▁tilt", + -11.935546875 + ], + [ + "kom", + -11.935674667358398 + ], + [ + "▁chord", + -11.935772895812988 + ], + [ + "▁respiratory", + -11.935791015625 + ], + [ + "▁revealing", + -11.935833930969238 + ], + [ + "▁Ny", + -11.935989379882812 + ], + [ + "cite", + -11.936386108398438 + ], + [ + "▁Lynn", + -11.936750411987305 + ], + [ + "▁Neo", + -11.936820030212402 + ], + [ + "BT", + -11.936895370483398 + ], + [ + "UX", + -11.936980247497559 + ], + [ + "▁Athletic", + -11.936995506286621 + ], + [ + "▁implied", + -11.937027931213379 + ], + [ + "▁Revenue", + -11.937121391296387 + ], + [ + "▁Abraham", + -11.937305450439453 + ], + [ + "▁Grab", + -11.937411308288574 + ], + [ + "▁neglect", + -11.93754768371582 + ], + [ + "▁Tag", + -11.937747955322266 + ], + [ + "▁therapies", + -11.937989234924316 + ], + [ + "▁Pas", + -11.938335418701172 + ], + [ + "NB", + -11.938465118408203 + ], + [ + "▁steer", + -11.938684463500977 + ], + [ + "▁excluded", + -11.938854217529297 + ], + [ + "▁Tyler", + -11.93889045715332 + ], + [ + "left", + -11.938941955566406 + ], + [ + "rap", + -11.939055442810059 + ], + [ + "▁exemption", + -11.939192771911621 + ], + [ + "▁candles", + -11.939213752746582 + ], + [ + "▁Isle", + -11.939226150512695 + ], + [ + "bach", + -11.939350128173828 + ], + [ + "▁0.1", + -11.939535140991211 + ], + [ + "▁synthesis", + -11.939541816711426 + ], + [ + "▁Domain", + -11.939620971679688 + ], + [ + "▁doctrine", + -11.939658164978027 + ], + [ + "▁asthma", + -11.939942359924316 + ], + [ + "▁licenses", + -11.939962387084961 + ], + [ + "▁Astro", + -11.939973831176758 + ], + [ + "▁intact", + -11.93997573852539 + ], + [ + "▁Sm", + -11.94014835357666 + ], + [ + "Ed", + -11.940184593200684 + ], + [ + "▁cooperative", + -11.940199851989746 + ], + [ + "lator", + -11.940290451049805 + ], + [ + "▁beaten", + -11.940871238708496 + ], + [ + "▁Sho", + -11.940935134887695 + ], + [ + "count", + -11.940999984741211 + ], + [ + "▁Champions", + -11.941202163696289 + ], + [ + "▁Dear", + -11.941211700439453 + ], + [ + "▁installment", + -11.941363334655762 + ], + [ + "▁tragedy", + -11.941426277160645 + ], + [ + "▁intricate", + -11.941492080688477 + ], + [ + "/19", + -11.941550254821777 + ], + [ + "▁euro", + -11.94161319732666 + ], + [ + "▁87", + -11.941645622253418 + ], + [ + "▁spokesman", + -11.941696166992188 + ], + [ + "▁Kai", + -11.941737174987793 + ], + [ + "▁warn", + -11.941737174987793 + ], + [ + "▁zoo", + -11.942410469055176 + ], + [ + "▁stretching", + -11.942437171936035 + ], + [ + "▁Gau", + -11.942503929138184 + ], + [ + "▁Commonwealth", + -11.942517280578613 + ], + [ + "selling", + -11.942523956298828 + ], + [ + "▁repaired", + -11.94266128540039 + ], + [ + "▁Matter", + -11.942959785461426 + ], + [ + "▁ecological", + -11.943065643310547 + ], + [ + "▁Income", + -11.943126678466797 + ], + [ + "▁vest", + -11.943449974060059 + ], + [ + "▁compost", + -11.94346809387207 + ], + [ + "▁exceptions", + -11.943594932556152 + ], + [ + "▁headline", + -11.943641662597656 + ], + [ + "▁Connection", + -11.943790435791016 + ], + [ + "▁vocals", + -11.943791389465332 + ], + [ + "▁1968", + -11.943849563598633 + ], + [ + "▁slope", + -11.943921089172363 + ], + [ + "▁83", + -11.944215774536133 + ], + [ + "soci", + -11.944416046142578 + ], + [ + "▁leftover", + -11.944722175598145 + ], + [ + "▁Pull", + -11.944747924804688 + ], + [ + "▁rendered", + -11.944860458374023 + ], + [ + "▁exclude", + -11.944931983947754 + ], + [ + "▁username", + -11.945026397705078 + ], + [ + "▁qui", + -11.945311546325684 + ], + [ + "▁Tat", + -11.945352554321289 + ], + [ + "▁touring", + -11.945455551147461 + ], + [ + "▁serum", + -11.945487022399902 + ], + [ + "hur", + -11.945651054382324 + ], + [ + "electric", + -11.945713996887207 + ], + [ + "yang", + -11.945842742919922 + ], + [ + "Regarding", + -11.94587230682373 + ], + [ + "▁Concert", + -11.946064949035645 + ], + [ + "▁Jar", + -11.946142196655273 + ], + [ + "HF", + -11.946173667907715 + ], + [ + "▁quietly", + -11.946216583251953 + ], + [ + "▁Dennis", + -11.94650650024414 + ], + [ + "▁Fame", + -11.946534156799316 + ], + [ + "▁useless", + -11.946757316589355 + ], + [ + "▁VAT", + -11.946824073791504 + ], + [ + "oka", + -11.947052955627441 + ], + [ + "content", + -11.947385787963867 + ], + [ + "struct", + -11.947470664978027 + ], + [ + "▁FAQ", + -11.94771671295166 + ], + [ + "▁aviation", + -11.947917938232422 + ], + [ + "▁Claim", + -11.948063850402832 + ], + [ + "▁brutal", + -11.94815444946289 + ], + [ + "▁Reports", + -11.948324203491211 + ], + [ + "▁Commons", + -11.948567390441895 + ], + [ + "▁chew", + -11.948606491088867 + ], + [ + "▁Programs", + -11.948610305786133 + ], + [ + "▁Calendar", + -11.948657989501953 + ], + [ + "▁shampoo", + -11.948657989501953 + ], + [ + "▁1973", + -11.94892406463623 + ], + [ + "cade", + -11.948990821838379 + ], + [ + "▁ONLY", + -11.949250221252441 + ], + [ + "▁hints", + -11.949271202087402 + ], + [ + "fox", + -11.9493408203125 + ], + [ + "▁decay", + -11.949358940124512 + ], + [ + "▁warrior", + -11.94943904876709 + ], + [ + "▁Import", + -11.949495315551758 + ], + [ + "▁ser", + -11.950201034545898 + ], + [ + "div", + -11.9502592086792 + ], + [ + "▁avocado", + -11.950347900390625 + ], + [ + "▁checklist", + -11.950611114501953 + ], + [ + "▁potent", + -11.950742721557617 + ], + [ + "▁stuffed", + -11.950873374938965 + ], + [ + "▁Glasgow", + -11.950881004333496 + ], + [ + "▁Tank", + -11.950895309448242 + ], + [ + "▁Vin", + -11.951029777526855 + ], + [ + "▁beast", + -11.951101303100586 + ], + [ + "▁subsidiary", + -11.951193809509277 + ], + [ + "▁pathways", + -11.951286315917969 + ], + [ + "▁hydrogen", + -11.95134449005127 + ], + [ + "▁socio", + -11.951444625854492 + ], + [ + "▁Veterans", + -11.951557159423828 + ], + [ + "▁doubled", + -11.951565742492676 + ], + [ + "▁Neither", + -11.95162296295166 + ], + [ + "▁myth", + -11.951653480529785 + ], + [ + "▁hazardous", + -11.951742172241211 + ], + [ + "▁quarterback", + -11.951775550842285 + ], + [ + "▁tutorials", + -11.95193099975586 + ], + [ + "watt", + -11.95200252532959 + ], + [ + "▁Walking", + -11.952016830444336 + ], + [ + "▁Than", + -11.952019691467285 + ], + [ + "VC", + -11.952062606811523 + ], + [ + "▁Lastly", + -11.952091217041016 + ], + [ + "▁fires", + -11.95217227935791 + ], + [ + "▁submissions", + -11.952280044555664 + ], + [ + "▁Oc", + -11.952309608459473 + ], + [ + "▁disappeared", + -11.952341079711914 + ], + [ + "▁tart", + -11.95240306854248 + ], + [ + "▁herbal", + -11.952637672424316 + ], + [ + "▁Opti", + -11.952696800231934 + ], + [ + "▁1972", + -11.95287799835205 + ], + [ + "▁sins", + -11.953207015991211 + ], + [ + "▁analog", + -11.953329086303711 + ], + [ + "▁800-", + -11.953418731689453 + ], + [ + "tance", + -11.953563690185547 + ], + [ + "▁Settings", + -11.95359992980957 + ], + [ + "▁robots", + -11.95361328125 + ], + [ + "BD", + -11.953641891479492 + ], + [ + "▁Monster", + -11.953642845153809 + ], + [ + "▁validation", + -11.953656196594238 + ], + [ + "▁elevator", + -11.953768730163574 + ], + [ + "sham", + -11.954022407531738 + ], + [ + "▁PU", + -11.954071998596191 + ], + [ + "lane", + -11.954085350036621 + ], + [ + "▁depict", + -11.95443344116211 + ], + [ + "▁competitor", + -11.95456314086914 + ], + [ + "▁stepping", + -11.954747200012207 + ], + [ + "bli", + -11.954952239990234 + ], + [ + "▁Owen", + -11.95500659942627 + ], + [ + "clude", + -11.955084800720215 + ], + [ + "izes", + -11.955144882202148 + ], + [ + "▁endeavor", + -11.955198287963867 + ], + [ + "▁Surgery", + -11.9552583694458 + ], + [ + "▁Broad", + -11.95526123046875 + ], + [ + "▁worthwhile", + -11.955269813537598 + ], + [ + "vocation", + -11.955564498901367 + ], + [ + "▁trek", + -11.955565452575684 + ], + [ + "byte", + -11.955595970153809 + ], + [ + "▁jersey", + -11.955608367919922 + ], + [ + "▁unity", + -11.955618858337402 + ], + [ + "▁accompany", + -11.95574951171875 + ], + [ + "▁grains", + -11.955802917480469 + ], + [ + "▁fulfilling", + -11.95598030090332 + ], + [ + "▁crushed", + -11.95605182647705 + ], + [ + "▁Directory", + -11.956116676330566 + ], + [ + "▁framed", + -11.956136703491211 + ], + [ + "▁Venture", + -11.956194877624512 + ], + [ + "▁recession", + -11.956291198730469 + ], + [ + "▁Jeremy", + -11.956413269042969 + ], + [ + "▁prevented", + -11.956847190856934 + ], + [ + "▁char", + -11.956856727600098 + ], + [ + "▁Tire", + -11.957054138183594 + ], + [ + "▁coloured", + -11.957193374633789 + ], + [ + "▁blades", + -11.9572114944458 + ], + [ + "▁Swa", + -11.95721435546875 + ], + [ + "▁terminate", + -11.957295417785645 + ], + [ + "▁cryptocurrency", + -11.957425117492676 + ], + [ + "▁dialog", + -11.95747184753418 + ], + [ + "▁1800", + -11.957536697387695 + ], + [ + "▁drought", + -11.95758056640625 + ], + [ + "▁trillion", + -11.95758056640625 + ], + [ + "Bar", + -11.958061218261719 + ], + [ + "▁compatibility", + -11.958063125610352 + ], + [ + "▁quotation", + -11.958065032958984 + ], + [ + "install", + -11.95807933807373 + ], + [ + "John", + -11.958096504211426 + ], + [ + "▁$200", + -11.958121299743652 + ], + [ + "▁salvation", + -11.958148002624512 + ], + [ + "Sadly", + -11.958150863647461 + ], + [ + "▁gravel", + -11.958300590515137 + ], + [ + "GT", + -11.95835018157959 + ], + [ + "▁focal", + -11.95847225189209 + ], + [ + "0°", + -11.958717346191406 + ], + [ + "iser", + -11.958722114562988 + ], + [ + "▁overlooked", + -11.958873748779297 + ], + [ + "▁banana", + -11.958884239196777 + ], + [ + "▁impose", + -11.958930015563965 + ], + [ + "tab", + -11.95897102355957 + ], + [ + "gmail", + -11.959019660949707 + ], + [ + "▁robotic", + -11.959630012512207 + ], + [ + "▁Watson", + -11.959755897521973 + ], + [ + "tang", + -11.959832191467285 + ], + [ + "▁scoop", + -11.95985221862793 + ], + [ + "▁HC", + -11.960033416748047 + ], + [ + "▁Shell", + -11.960040092468262 + ], + [ + "▁bamboo", + -11.960140228271484 + ], + [ + "▁showers", + -11.960314750671387 + ], + [ + "anny", + -11.96040153503418 + ], + [ + "▁bind", + -11.960509300231934 + ], + [ + "▁Blanc", + -11.96052074432373 + ], + [ + "▁Cru", + -11.960671424865723 + ], + [ + "▁herb", + -11.960773468017578 + ], + [ + "▁hygiene", + -11.960962295532227 + ], + [ + "▁revision", + -11.961165428161621 + ], + [ + "▁GL", + -11.961312294006348 + ], + [ + "▁pots", + -11.961402893066406 + ], + [ + "▁yields", + -11.961421966552734 + ], + [ + "▁Owner", + -11.961563110351562 + ], + [ + "▁Complex", + -11.96160888671875 + ], + [ + "▁bracket", + -11.961644172668457 + ], + [ + "ensor", + -11.961654663085938 + ], + [ + "inspired", + -11.961812973022461 + ], + [ + "▁sanctions", + -11.961904525756836 + ], + [ + "LB", + -11.96204948425293 + ], + [ + "▁uncover", + -11.96208381652832 + ], + [ + "▁Bug", + -11.962333679199219 + ], + [ + "(),", + -11.962397575378418 + ], + [ + "1000", + -11.962471008300781 + ], + [ + "eira", + -11.962677001953125 + ], + [ + "flat", + -11.962685585021973 + ], + [ + "▁Near", + -11.962686538696289 + ], + [ + "▁incurred", + -11.962745666503906 + ], + [ + "AX", + -11.962950706481934 + ], + [ + "breaking", + -11.962957382202148 + ], + [ + "▁triangle", + -11.963278770446777 + ], + [ + "▁Skills", + -11.963308334350586 + ], + [ + "▁Stars", + -11.963430404663086 + ], + [ + "▁plaque", + -11.96343994140625 + ], + [ + "MX", + -11.963460922241211 + ], + [ + "▁Kyle", + -11.963631629943848 + ], + [ + "▁electron", + -11.963775634765625 + ], + [ + "▁tract", + -11.96391487121582 + ], + [ + "raz", + -11.964093208312988 + ], + [ + "▁Raw", + -11.964120864868164 + ], + [ + "▁Latest", + -11.96415901184082 + ], + [ + "▁litter", + -11.964241981506348 + ], + [ + "0,", + -11.964383125305176 + ], + [ + "▁Grinding", + -11.964961051940918 + ], + [ + "▁organs", + -11.964999198913574 + ], + [ + "▁Bone", + -11.965025901794434 + ], + [ + "▁Former", + -11.965184211730957 + ], + [ + "▁privately", + -11.965389251708984 + ], + [ + "assi", + -11.965411186218262 + ], + [ + "tempo", + -11.965557098388672 + ], + [ + "▁Maker", + -11.965682983398438 + ], + [ + "▁VP", + -11.965845108032227 + ], + [ + "▁spreadsheet", + -11.9658842086792 + ], + [ + "▁Wish", + -11.966005325317383 + ], + [ + "▁Mineral", + -11.966049194335938 + ], + [ + "▁pill", + -11.966179847717285 + ], + [ + "▁woke", + -11.966352462768555 + ], + [ + "▁rebuild", + -11.966526985168457 + ], + [ + "▁variant", + -11.96656608581543 + ], + [ + "▁Stanford", + -11.966584205627441 + ], + [ + "▁notably", + -11.966687202453613 + ], + [ + "▁Bau", + -11.966848373413086 + ], + [ + "▁flagship", + -11.966870307922363 + ], + [ + "▁BUT", + -11.967018127441406 + ], + [ + "▁toddler", + -11.967260360717773 + ], + [ + "▁1969", + -11.967269897460938 + ], + [ + "▁MR", + -11.967351913452148 + ], + [ + "▁bored", + -11.967409133911133 + ], + [ + "AY", + -11.96751594543457 + ], + [ + "▁grilled", + -11.967535018920898 + ], + [ + "▁orbit", + -11.967657089233398 + ], + [ + "▁Discovery", + -11.967708587646484 + ], + [ + "▁reap", + -11.968104362487793 + ], + [ + "▁1977", + -11.968453407287598 + ], + [ + "▁enroll", + -11.968667030334473 + ], + [ + "length", + -11.968698501586914 + ], + [ + "▁detailing", + -11.968732833862305 + ], + [ + "contract", + -11.968839645385742 + ], + [ + "▁servicing", + -11.969038009643555 + ], + [ + "▁twitter", + -11.96908950805664 + ], + [ + "▁polite", + -11.969134330749512 + ], + [ + "UND", + -11.96943473815918 + ], + [ + "▁payable", + -11.969549179077148 + ], + [ + "▁CBS", + -11.969589233398438 + ], + [ + "▁Trial", + -11.96961784362793 + ], + [ + "▁Sec", + -11.96968936920166 + ], + [ + "▁Item", + -11.969705581665039 + ], + [ + "structure", + -11.96973705291748 + ], + [ + "▁customs", + -11.969944953918457 + ], + [ + "▁reforms", + -11.970049858093262 + ], + [ + "jet", + -11.970108985900879 + ], + [ + "▁generates", + -11.97018051147461 + ], + [ + "2.5", + -11.970335960388184 + ], + [ + "▁resorts", + -11.970467567443848 + ], + [ + "▁trendy", + -11.970516204833984 + ], + [ + "LAN", + -11.970521926879883 + ], + [ + "▁crying", + -11.970563888549805 + ], + [ + "▁TS", + -11.970624923706055 + ], + [ + "cas", + -11.970669746398926 + ], + [ + "▁Jump", + -11.970698356628418 + ], + [ + "▁cialis", + -11.970792770385742 + ], + [ + "▁absorbed", + -11.97079849243164 + ], + [ + "▁dementia", + -11.97079849243164 + ], + [ + "▁advertisements", + -11.970931053161621 + ], + [ + "▁fog", + -11.970932006835938 + ], + [ + "▁reproduction", + -11.971053123474121 + ], + [ + "▁laughing", + -11.971110343933105 + ], + [ + "▁dominate", + -11.971138954162598 + ], + [ + "▁bent", + -11.971224784851074 + ], + [ + "▁mic", + -11.971367835998535 + ], + [ + "▁Outlook", + -11.971381187438965 + ], + [ + "▁guilt", + -11.971542358398438 + ], + [ + "▁hug", + -11.971545219421387 + ], + [ + "▁sourced", + -11.97164535522461 + ], + [ + "pine", + -11.971662521362305 + ], + [ + "▁defending", + -11.97166633605957 + ], + [ + "▁ag", + -11.971731185913086 + ], + [ + "▁explosive", + -11.971787452697754 + ], + [ + "atom", + -11.971811294555664 + ], + [ + "▁sewer", + -11.97185230255127 + ], + [ + "▁eleven", + -11.971953392028809 + ], + [ + "▁Leaf", + -11.972097396850586 + ], + [ + "identifies", + -11.972146034240723 + ], + [ + "▁4.5", + -11.972330093383789 + ], + [ + "▁shipment", + -11.97242259979248 + ], + [ + "▁retrieve", + -11.972451210021973 + ], + [ + "▁Label", + -11.972461700439453 + ], + [ + "▁Devil", + -11.972578048706055 + ], + [ + "▁concentrations", + -11.972708702087402 + ], + [ + "Ultimately", + -11.972803115844727 + ], + [ + "▁earrings", + -11.97281265258789 + ], + [ + "voc", + -11.973015785217285 + ], + [ + "▁Sid", + -11.97315788269043 + ], + [ + "reg", + -11.973158836364746 + ], + [ + "▁aboard", + -11.973335266113281 + ], + [ + "▁transplant", + -11.973762512207031 + ], + [ + "▁conclusions", + -11.973773956298828 + ], + [ + "▁WW", + -11.973915100097656 + ], + [ + "▁greeting", + -11.973946571350098 + ], + [ + "▁witnesses", + -11.973995208740234 + ], + [ + "▁origins", + -11.974093437194824 + ], + [ + "▁willingness", + -11.974197387695312 + ], + [ + "Now", + -11.974205017089844 + ], + [ + "▁china", + -11.974260330200195 + ], + [ + "▁sequences", + -11.974275588989258 + ], + [ + "▁rotate", + -11.974300384521484 + ], + [ + "▁Arabic", + -11.974393844604492 + ], + [ + "▁expressions", + -11.974406242370605 + ], + [ + "▁revelation", + -11.97441291809082 + ], + [ + "▁cocktails", + -11.974445343017578 + ], + [ + "figure", + -11.974501609802246 + ], + [ + "prompted", + -11.974737167358398 + ], + [ + "sci", + -11.974799156188965 + ], + [ + "▁bleeding", + -11.974808692932129 + ], + [ + "▁converter", + -11.97491455078125 + ], + [ + "shirts", + -11.97519302368164 + ], + [ + "▁colleague", + -11.975404739379883 + ], + [ + "boards", + -11.975481033325195 + ], + [ + "▁Error", + -11.975509643554688 + ], + [ + "deal", + -11.975653648376465 + ], + [ + "▁Promotion", + -11.9757719039917 + ], + [ + "search", + -11.975783348083496 + ], + [ + "▁quantitative", + -11.975796699523926 + ], + [ + "▁implants", + -11.975934982299805 + ], + [ + "▁amid", + -11.975996971130371 + ], + [ + "▁gameplay", + -11.976194381713867 + ], + [ + "▁brew", + -11.976282119750977 + ], + [ + "AIR", + -11.97630500793457 + ], + [ + "oral", + -11.976383209228516 + ], + [ + "▁invasion", + -11.976571083068848 + ], + [ + "▁Regulation", + -11.976753234863281 + ], + [ + "gree", + -11.976831436157227 + ], + [ + "▁reporters", + -11.97702407836914 + ], + [ + "▁Cotton", + -11.97707462310791 + ], + [ + "▁Summary", + -11.977179527282715 + ], + [ + "▁commerce", + -11.977192878723145 + ], + [ + "▁dice", + -11.977258682250977 + ], + [ + "▁crude", + -11.977337837219238 + ], + [ + "550", + -11.97734260559082 + ], + [ + "mari", + -11.977437973022461 + ], + [ + "▁Removal", + -11.977437973022461 + ], + [ + "lessness", + -11.977582931518555 + ], + [ + "▁reinforce", + -11.977598190307617 + ], + [ + "▁inspect", + -11.977602005004883 + ], + [ + "▁threaten", + -11.977832794189453 + ], + [ + "▁beats", + -11.977922439575195 + ], + [ + "▁Todd", + -11.97799301147461 + ], + [ + "▁parenting", + -11.978096008300781 + ], + [ + "▁Motion", + -11.978141784667969 + ], + [ + "▁Oakland", + -11.978147506713867 + ], + [ + "▁debts", + -11.97830581665039 + ], + [ + "▁branded", + -11.978391647338867 + ], + [ + "▁stems", + -11.978404998779297 + ], + [ + "▁dismissed", + -11.978425025939941 + ], + [ + "▁procurement", + -11.978510856628418 + ], + [ + "▁TE", + -11.978720664978027 + ], + [ + "▁Florence", + -11.978759765625 + ], + [ + "▁stitch", + -11.97883129119873 + ], + [ + "▁har", + -11.979001998901367 + ], + [ + "▁yummy", + -11.979092597961426 + ], + [ + "▁feeds", + -11.979146003723145 + ], + [ + "▁assumption", + -11.979194641113281 + ], + [ + "▁Nebraska", + -11.979338645935059 + ], + [ + "▁Interview", + -11.979538917541504 + ], + [ + "▁baseline", + -11.979813575744629 + ], + [ + "▁critically", + -11.979994773864746 + ], + [ + "▁derivative", + -11.980080604553223 + ], + [ + "▁carved", + -11.980316162109375 + ], + [ + "TRA", + -11.980318069458008 + ], + [ + "▁Ari", + -11.980476379394531 + ], + [ + "▁Kas", + -11.980511665344238 + ], + [ + "▁Pizza", + -11.980806350708008 + ], + [ + "▁counted", + -11.980984687805176 + ], + [ + "▁journalism", + -11.981181144714355 + ], + [ + "▁rugged", + -11.981303215026855 + ], + [ + "▁RBI", + -11.981406211853027 + ], + [ + "▁Cathedral", + -11.981436729431152 + ], + [ + "▁remedies", + -11.981663703918457 + ], + [ + "▁neighbourhood", + -11.981765747070312 + ], + [ + "▁elbow", + -11.981792449951172 + ], + [ + "▁acclaimed", + -11.9818115234375 + ], + [ + "▁LO", + -11.981940269470215 + ], + [ + "▁warranties", + -11.981953620910645 + ], + [ + "▁Gabriel", + -11.982101440429688 + ], + [ + "▁Idaho", + -11.982215881347656 + ], + [ + "▁Pattern", + -11.982220649719238 + ], + [ + "virus", + -11.982253074645996 + ], + [ + "▁Concept", + -11.982439041137695 + ], + [ + "▁Pump", + -11.98252010345459 + ], + [ + "▁Own", + -11.982633590698242 + ], + [ + "performance", + -11.982778549194336 + ], + [ + "▁1974", + -11.982844352722168 + ], + [ + "pple", + -11.982848167419434 + ], + [ + "▁siblings", + -11.983285903930664 + ], + [ + "▁historically", + -11.983470916748047 + ], + [ + "lore", + -11.983499526977539 + ], + [ + "chel", + -11.983673095703125 + ], + [ + "▁Tournament", + -11.983734130859375 + ], + [ + "▁Portable", + -11.984086990356445 + ], + [ + "▁opener", + -11.984298706054688 + ], + [ + "▁springs", + -11.984480857849121 + ], + [ + "▁relevance", + -11.984771728515625 + ], + [ + "▁inquiries", + -11.984838485717773 + ], + [ + "▁Python", + -11.984869003295898 + ], + [ + "▁clutter", + -11.984885215759277 + ], + [ + "giving", + -11.98535442352295 + ], + [ + "▁reef", + -11.985357284545898 + ], + [ + "stru", + -11.985427856445312 + ], + [ + "▁Replacement", + -11.985505104064941 + ], + [ + "▁ritual", + -11.985755920410156 + ], + [ + "▁Measure", + -11.985834121704102 + ], + [ + "shu", + -11.98591136932373 + ], + [ + "found", + -11.985943794250488 + ], + [ + "▁overly", + -11.985960006713867 + ], + [ + "▁Brisbane", + -11.986427307128906 + ], + [ + "▁absorption", + -11.986427307128906 + ], + [ + "▁proactive", + -11.986518859863281 + ], + [ + "angi", + -11.986552238464355 + ], + [ + "▁guiding", + -11.98662281036377 + ], + [ + "▁remotely", + -11.986711502075195 + ], + [ + "▁stickers", + -11.986716270446777 + ], + [ + "▁scripts", + -11.986812591552734 + ], + [ + "▁Prevention", + -11.986994743347168 + ], + [ + "uba", + -11.987117767333984 + ], + [ + "▁Flex", + -11.98713207244873 + ], + [ + "▁greens", + -11.987244606018066 + ], + [ + "▁flourish", + -11.987264633178711 + ], + [ + "▁Hai", + -11.987309455871582 + ], + [ + "▁Ent", + -11.987310409545898 + ], + [ + "black", + -11.987408638000488 + ], + [ + "▁ال", + -11.98748779296875 + ], + [ + "▁Rica", + -11.987489700317383 + ], + [ + "drive", + -11.987512588500977 + ], + [ + "angled", + -11.987608909606934 + ], + [ + "▁scrub", + -11.98768424987793 + ], + [ + "▁palace", + -11.987724304199219 + ], + [ + "▁Silicon", + -11.987897872924805 + ], + [ + "▁packaged", + -11.987985610961914 + ], + [ + "▁geographic", + -11.988276481628418 + ], + [ + "▁colonial", + -11.988584518432617 + ], + [ + "fur", + -11.988587379455566 + ], + [ + "▁scattered", + -11.988601684570312 + ], + [ + "owed", + -11.9886474609375 + ], + [ + "▁NZ", + -11.98873233795166 + ], + [ + "▁Nazi", + -11.988771438598633 + ], + [ + "cation", + -11.989025115966797 + ], + [ + "▁plea", + -11.989316940307617 + ], + [ + "▁ferry", + -11.98950481414795 + ], + [ + "▁Rogers", + -11.989611625671387 + ], + [ + "dialing", + -11.99011516571045 + ], + [ + "▁Sav", + -11.990120887756348 + ], + [ + "tap", + -11.990219116210938 + ], + [ + "center", + -11.990239143371582 + ], + [ + "▁maple", + -11.990316390991211 + ], + [ + "▁charities", + -11.990471839904785 + ], + [ + "▁Flow", + -11.990494728088379 + ], + [ + "ERA", + -11.99079704284668 + ], + [ + "phon", + -11.990822792053223 + ], + [ + "linger", + -11.990896224975586 + ], + [ + "▁eighth", + -11.990912437438965 + ], + [ + "duct", + -11.991192817687988 + ], + [ + "▁affiliates", + -11.991209983825684 + ], + [ + "▁allies", + -11.991316795349121 + ], + [ + "atch", + -11.991532325744629 + ], + [ + "?????", + -11.991533279418945 + ], + [ + "gui", + -11.991607666015625 + ], + [ + "▁cracks", + -11.991653442382812 + ], + [ + "▁Funeral", + -11.99183464050293 + ], + [ + "▁surrender", + -11.99193286895752 + ], + [ + "▁Norman", + -11.992022514343262 + ], + [ + "▁Trinity", + -11.992096900939941 + ], + [ + "riff", + -11.992220878601074 + ], + [ + "examining", + -11.992225646972656 + ], + [ + "▁flick", + -11.992318153381348 + ], + [ + "▁interference", + -11.99254035949707 + ], + [ + "▁cooker", + -11.992623329162598 + ], + [ + "▁cardio", + -11.992654800415039 + ], + [ + "▁renovated", + -11.992698669433594 + ], + [ + "▁polyester", + -11.992768287658691 + ], + [ + "▁graduating", + -11.992781639099121 + ], + [ + "▁tractor", + -11.992897033691406 + ], + [ + "▁Poll", + -11.992947578430176 + ], + [ + "▁noble", + -11.992982864379883 + ], + [ + "▁Sue", + -11.993067741394043 + ], + [ + "▁fierce", + -11.993337631225586 + ], + [ + "tool", + -11.993351936340332 + ], + [ + "IDE", + -11.993453979492188 + ], + [ + "▁Cheese", + -11.993547439575195 + ], + [ + "▁Seal", + -11.993858337402344 + ], + [ + "tip", + -11.99410343170166 + ], + [ + "▁inputs", + -11.994222640991211 + ], + [ + "Su", + -11.994250297546387 + ], + [ + "▁1.1", + -11.994386672973633 + ], + [ + "▁ancestors", + -11.994407653808594 + ], + [ + "▁Battery", + -11.994433403015137 + ], + [ + "▁hurricane", + -11.99448299407959 + ], + [ + "plane", + -11.99450397491455 + ], + [ + "▁Nokia", + -11.994507789611816 + ], + [ + "▁randomly", + -11.99454116821289 + ], + [ + "▁Factor", + -11.994608879089355 + ], + [ + "▁SK", + -11.994668960571289 + ], + [ + "▁requesting", + -11.995050430297852 + ], + [ + "▁filmmaker", + -11.995138168334961 + ], + [ + "▁Issue", + -11.995241165161133 + ], + [ + "▁Fact", + -11.995329856872559 + ], + [ + "Fig", + -11.995499610900879 + ], + [ + "uga", + -11.995530128479004 + ], + [ + "▁corridor", + -11.995661735534668 + ], + [ + "▁Turner", + -11.995686531066895 + ], + [ + "ener", + -11.99596881866455 + ], + [ + "▁balancing", + -11.996034622192383 + ], + [ + "▁Chapel", + -11.996077537536621 + ], + [ + "ADA", + -11.996088027954102 + ], + [ + "focused", + -11.996103286743164 + ], + [ + "2010", + -11.996248245239258 + ], + [ + "▁Balance", + -11.996406555175781 + ], + [ + "▁violate", + -11.996438980102539 + ], + [ + "▁Lam", + -11.996484756469727 + ], + [ + "mish", + -11.996892929077148 + ], + [ + "▁UAE", + -11.99695873260498 + ], + [ + "▁lag", + -11.997373580932617 + ], + [ + "▁Tal", + -11.99740219116211 + ], + [ + "▁quarters", + -11.99763298034668 + ], + [ + "▁intervals", + -11.997672080993652 + ], + [ + "▁Ale", + -11.997776985168457 + ], + [ + "▁remodel", + -11.997846603393555 + ], + [ + "▁retire", + -11.998098373413086 + ], + [ + "▁vulnerability", + -11.998124122619629 + ], + [ + "pertaining", + -11.998384475708008 + ], + [ + "▁Od", + -11.99872875213623 + ], + [ + "▁Securities", + -11.998814582824707 + ], + [ + "security", + -11.99893569946289 + ], + [ + "feld", + -11.999015808105469 + ], + [ + "▁believing", + -11.999078750610352 + ], + [ + "mun", + -11.999178886413574 + ], + [ + "▁headache", + -11.99950885772705 + ], + [ + "Out", + -12.000073432922363 + ], + [ + "▁Biology", + -12.000287055969238 + ], + [ + "natural", + -12.00031852722168 + ], + [ + "▁Treat", + -12.000387191772461 + ], + [ + "aku", + -12.00059700012207 + ], + [ + "DN", + -12.000811576843262 + ], + [ + "▁ventilation", + -12.001152038574219 + ], + [ + "▁accountant", + -12.001250267028809 + ], + [ + "▁tolerate", + -12.001303672790527 + ], + [ + "120", + -12.001326560974121 + ], + [ + "▁kilometers", + -12.001416206359863 + ], + [ + "▁2003.", + -12.00153636932373 + ], + [ + "▁dividend", + -12.001568794250488 + ], + [ + "Black", + -12.001628875732422 + ], + [ + "▁Properties", + -12.001864433288574 + ], + [ + "▁Pete", + -12.001971244812012 + ], + [ + "▁Ox", + -12.0020112991333 + ], + [ + "▁Gill", + -12.002042770385742 + ], + [ + "▁noticeable", + -12.002165794372559 + ], + [ + "bou", + -12.002364158630371 + ], + [ + "▁simplest", + -12.002718925476074 + ], + [ + "▁BP", + -12.002769470214844 + ], + [ + "quire", + -12.002786636352539 + ], + [ + "See", + -12.002893447875977 + ], + [ + "▁stance", + -12.003210067749023 + ], + [ + "7,000", + -12.003362655639648 + ], + [ + "▁disable", + -12.003363609313965 + ], + [ + "▁altitude", + -12.003396987915039 + ], + [ + "degree", + -12.003435134887695 + ], + [ + "▁Absolutely", + -12.003541946411133 + ], + [ + "▁flyer", + -12.00361156463623 + ], + [ + "▁Hood", + -12.003681182861328 + ], + [ + "▁Cle", + -12.00371265411377 + ], + [ + "▁Spot", + -12.003751754760742 + ], + [ + "▁Framework", + -12.003779411315918 + ], + [ + "▁transforming", + -12.003786087036133 + ], + [ + "▁Items", + -12.003954887390137 + ], + [ + "▁Ruth", + -12.003986358642578 + ], + [ + "▁Strategic", + -12.004024505615234 + ], + [ + "▁squash", + -12.00402545928955 + ], + [ + "▁aids", + -12.004182815551758 + ], + [ + "▁Leo", + -12.004281997680664 + ], + [ + "▁Diagram", + -12.004338264465332 + ], + [ + "▁Pol", + -12.00466537475586 + ], + [ + "▁Hans", + -12.004684448242188 + ], + [ + "▁regain", + -12.004728317260742 + ], + [ + "▁traction", + -12.004899024963379 + ], + [ + "▁Journey", + -12.004950523376465 + ], + [ + "▁Led", + -12.005006790161133 + ], + [ + "▁comprehend", + -12.005016326904297 + ], + [ + "▁innings", + -12.005064010620117 + ], + [ + "▁tenure", + -12.005212783813477 + ], + [ + "▁indirect", + -12.00540542602539 + ], + [ + "▁Bean", + -12.005643844604492 + ], + [ + "▁spy", + -12.00567626953125 + ], + [ + "▁Karl", + -12.005831718444824 + ], + [ + "Play", + -12.006031036376953 + ], + [ + "licit", + -12.00609302520752 + ], + [ + "▁Interest", + -12.0061616897583 + ], + [ + "▁SIM", + -12.006389617919922 + ], + [ + "▁unfortunate", + -12.00639820098877 + ], + [ + "▁mon", + -12.006403923034668 + ], + [ + "▁transported", + -12.006491661071777 + ], + [ + "▁printers", + -12.006662368774414 + ], + [ + "▁proposition", + -12.006668090820312 + ], + [ + "▁NSW", + -12.00677490234375 + ], + [ + "▁Shakespeare", + -12.006805419921875 + ], + [ + "▁autism", + -12.006837844848633 + ], + [ + "ACK", + -12.006869316101074 + ], + [ + "▁Pit", + -12.006993293762207 + ], + [ + "▁developmental", + -12.00719165802002 + ], + [ + "-50", + -12.007245063781738 + ], + [ + "▁Painting", + -12.007259368896484 + ], + [ + "zzo", + -12.00736141204834 + ], + [ + "oku", + -12.00738525390625 + ], + [ + "▁Asset", + -12.007527351379395 + ], + [ + "▁Nut", + -12.007566452026367 + ], + [ + "esse", + -12.007593154907227 + ], + [ + "▁Thought", + -12.007675170898438 + ], + [ + "▁residue", + -12.007866859436035 + ], + [ + "▁17.", + -12.007869720458984 + ], + [ + "ologie", + -12.007936477661133 + ], + [ + "▁CSS", + -12.0079984664917 + ], + [ + "▁colourful", + -12.008030891418457 + ], + [ + "▁Stein", + -12.008099555969238 + ], + [ + "▁FROM", + -12.008207321166992 + ], + [ + "▁Dale", + -12.008299827575684 + ], + [ + "fee", + -12.008323669433594 + ], + [ + "etz", + -12.00851058959961 + ], + [ + "mati", + -12.00866413116455 + ], + [ + "▁Parking", + -12.008770942687988 + ], + [ + "▁Bloom", + -12.008795738220215 + ], + [ + "▁lifelong", + -12.008856773376465 + ], + [ + "nova", + -12.00888442993164 + ], + [ + "▁flies", + -12.008915901184082 + ], + [ + "▁sal", + -12.008918762207031 + ], + [ + "▁Warner", + -12.008938789367676 + ], + [ + "▁Walmart", + -12.00910758972168 + ], + [ + "▁rib", + -12.009208679199219 + ], + [ + "▁credibility", + -12.009227752685547 + ], + [ + "▁Pla", + -12.009230613708496 + ], + [ + "▁quiz", + -12.009321212768555 + ], + [ + "▁turtle", + -12.00932788848877 + ], + [ + "attributed", + -12.009340286254883 + ], + [ + "▁differential", + -12.00943660736084 + ], + [ + "++", + -12.009685516357422 + ], + [ + "▁statutory", + -12.009726524353027 + ], + [ + "▁gloss", + -12.009727478027344 + ], + [ + "▁registry", + -12.00984001159668 + ], + [ + "▁Brother", + -12.009878158569336 + ], + [ + "lasting", + -12.009905815124512 + ], + [ + "ucci", + -12.009981155395508 + ], + [ + "pee", + -12.010045051574707 + ], + [ + "▁seamlessly", + -12.010388374328613 + ], + [ + "▁spinning", + -12.01042652130127 + ], + [ + "▁upholstery", + -12.010758399963379 + ], + [ + "▁sweep", + -12.010761260986328 + ], + [ + "▁bore", + -12.010966300964355 + ], + [ + "▁trainers", + -12.011013984680176 + ], + [ + "▁peek", + -12.01136589050293 + ], + [ + "▁Extension", + -12.011380195617676 + ], + [ + "▁Coordinator", + -12.011479377746582 + ], + [ + "lake", + -12.01150131225586 + ], + [ + "▁15-", + -12.011630058288574 + ], + [ + "▁Flu", + -12.011823654174805 + ], + [ + "▁amended", + -12.011846542358398 + ], + [ + "▁NW", + -12.01186752319336 + ], + [ + "VEN", + -12.011873245239258 + ], + [ + "▁curved", + -12.012139320373535 + ], + [ + "▁objection", + -12.012194633483887 + ], + [ + "ISH", + -12.012340545654297 + ], + [ + "▁1967", + -12.012429237365723 + ], + [ + "▁Monitor", + -12.012557983398438 + ], + [ + "ни", + -12.012846946716309 + ], + [ + "▁recommends", + -12.012860298156738 + ], + [ + "▁Limit", + -12.013006210327148 + ], + [ + "▁illusion", + -12.0130615234375 + ], + [ + "▁assessing", + -12.013092994689941 + ], + [ + "▁ego", + -12.013140678405762 + ], + [ + "erty", + -12.01317310333252 + ], + [ + "▁sprinkle", + -12.01319408416748 + ], + [ + "▁Bol", + -12.013275146484375 + ], + [ + "▁Zu", + -12.013283729553223 + ], + [ + "▁purse", + -12.013397216796875 + ], + [ + "▁locking", + -12.013636589050293 + ], + [ + "▁Employment", + -12.013849258422852 + ], + [ + "▁thriving", + -12.013891220092773 + ], + [ + "▁distributor", + -12.013951301574707 + ], + [ + "▁Universe", + -12.014019966125488 + ], + [ + "grabbed", + -12.014060020446777 + ], + [ + "▁lump", + -12.014081001281738 + ], + [ + "nzo", + -12.014127731323242 + ], + [ + "image", + -12.014198303222656 + ], + [ + "▁surfing", + -12.014205932617188 + ], + [ + "▁CMS", + -12.014317512512207 + ], + [ + "▁Tha", + -12.01448917388916 + ], + [ + "▁rugs", + -12.014714241027832 + ], + [ + "lov", + -12.014755249023438 + ], + [ + "▁firmware", + -12.014849662780762 + ], + [ + "▁sandwiches", + -12.014888763427734 + ], + [ + "because", + -12.014921188354492 + ], + [ + "umi", + -12.014946937561035 + ], + [ + "▁drawers", + -12.015046119689941 + ], + [ + "▁severely", + -12.015093803405762 + ], + [ + "▁invitations", + -12.015129089355469 + ], + [ + "▁stall", + -12.015212059020996 + ], + [ + "▁defect", + -12.015222549438477 + ], + [ + "▁Opening", + -12.015312194824219 + ], + [ + "▁Rai", + -12.015357971191406 + ], + [ + "thesis", + -12.015578269958496 + ], + [ + "▁margins", + -12.015755653381348 + ], + [ + "▁220", + -12.015881538391113 + ], + [ + "▁Mortgage", + -12.015896797180176 + ], + [ + "▁souls", + -12.015939712524414 + ], + [ + "▁landlord", + -12.016058921813965 + ], + [ + "▁reasoning", + -12.016068458557129 + ], + [ + "▁unions", + -12.016074180603027 + ], + [ + "▁Treasury", + -12.016097068786621 + ], + [ + "▁pillows", + -12.016132354736328 + ], + [ + "▁enclosure", + -12.01616382598877 + ], + [ + "▁Cinema", + -12.016196250915527 + ], + [ + "▁hazards", + -12.016241073608398 + ], + [ + "▁Applied", + -12.016365051269531 + ], + [ + "usion", + -12.016735076904297 + ], + [ + "▁Jake", + -12.016736030578613 + ], + [ + "Founded", + -12.016807556152344 + ], + [ + "▁magnitude", + -12.016901016235352 + ], + [ + "▁Johnny", + -12.016910552978516 + ], + [ + "▁Shah", + -12.017083168029785 + ], + [ + "▁Ride", + -12.017107009887695 + ], + [ + "▁groom", + -12.017251014709473 + ], + [ + "urn", + -12.017374992370605 + ], + [ + "▁Operating", + -12.017399787902832 + ], + [ + "▁Gaming", + -12.01743221282959 + ], + [ + "▁advertisement", + -12.017571449279785 + ], + [ + "Life", + -12.017864227294922 + ], + [ + "litre", + -12.017991065979004 + ], + [ + "▁controversy", + -12.018375396728516 + ], + [ + "▁arthritis", + -12.018509864807129 + ], + [ + "▁celebrities", + -12.018777847290039 + ], + [ + "▁Physics", + -12.018819808959961 + ], + [ + "▁comb", + -12.018826484680176 + ], + [ + "▁storytelling", + -12.018946647644043 + ], + [ + "▁Stories", + -12.018997192382812 + ], + [ + "▁scandal", + -12.019189834594727 + ], + [ + "▁Fuel", + -12.019288063049316 + ], + [ + "▁uncertain", + -12.01939582824707 + ], + [ + "▁battles", + -12.019411087036133 + ], + [ + "UG", + -12.019441604614258 + ], + [ + "gone", + -12.019454002380371 + ], + [ + "interest", + -12.019536972045898 + ], + [ + "▁Sum", + -12.019713401794434 + ], + [ + "cord", + -12.01976203918457 + ], + [ + "▁plumber", + -12.019862174987793 + ], + [ + "▁Highly", + -12.01991081237793 + ], + [ + "mul", + -12.020238876342773 + ], + [ + "▁endorsement", + -12.020248413085938 + ], + [ + "▁deco", + -12.020317077636719 + ], + [ + "▁Comm", + -12.020330429077148 + ], + [ + "▁woven", + -12.020462036132812 + ], + [ + "▁prosecutor", + -12.020524024963379 + ], + [ + "pho", + -12.020872116088867 + ], + [ + "World", + -12.020997047424316 + ], + [ + "rism", + -12.021048545837402 + ], + [ + "▁Snap", + -12.021058082580566 + ], + [ + "▁Combine", + -12.021234512329102 + ], + [ + "normal", + -12.021349906921387 + ], + [ + "▁invasive", + -12.021368980407715 + ], + [ + "▁Acid", + -12.02169418334961 + ], + [ + "▁Ambassador", + -12.021801948547363 + ], + [ + "▁guards", + -12.02194881439209 + ], + [ + "▁scales", + -12.021953582763672 + ], + [ + "▁7:", + -12.021977424621582 + ], + [ + "▁Yorkshire", + -12.022027015686035 + ], + [ + "▁choir", + -12.02225399017334 + ], + [ + "come", + -12.022321701049805 + ], + [ + "cision", + -12.022343635559082 + ], + [ + "zon", + -12.022605895996094 + ], + [ + "holders", + -12.022666931152344 + ], + [ + "▁trustee", + -12.022808074951172 + ], + [ + "talk", + -12.02290153503418 + ], + [ + "▁bouquet", + -12.02294635772705 + ], + [ + "▁Wonderful", + -12.023192405700684 + ], + [ + "▁Reduce", + -12.023228645324707 + ], + [ + "▁Fal", + -12.02336597442627 + ], + [ + "▁negligence", + -12.023385047912598 + ], + [ + "gard", + -12.023537635803223 + ], + [ + "clu", + -12.023582458496094 + ], + [ + "▁wasted", + -12.023725509643555 + ], + [ + "▁entertain", + -12.023749351501465 + ], + [ + "▁Copy", + -12.023862838745117 + ], + [ + "▁mould", + -12.02403736114502 + ], + [ + "▁invented", + -12.024039268493652 + ], + [ + "▁kindly", + -12.024044036865234 + ], + [ + "▁census", + -12.024060249328613 + ], + [ + "▁converting", + -12.024125099182129 + ], + [ + "punk", + -12.024165153503418 + ], + [ + "gic", + -12.024264335632324 + ], + [ + "▁Spider", + -12.024306297302246 + ], + [ + "▁fusion", + -12.024308204650879 + ], + [ + "▁Hour", + -12.024453163146973 + ], + [ + "▁masses", + -12.02452278137207 + ], + [ + "▁headaches", + -12.024571418762207 + ], + [ + "▁residency", + -12.024672508239746 + ], + [ + "▁teenagers", + -12.024715423583984 + ], + [ + "▁mercy", + -12.024757385253906 + ], + [ + "▁shooter", + -12.0248441696167 + ], + [ + "ESS", + -12.024982452392578 + ], + [ + "chair", + -12.025019645690918 + ], + [ + "▁authorization", + -12.025164604187012 + ], + [ + "▁2004,", + -12.025197982788086 + ], + [ + "▁plugins", + -12.025199890136719 + ], + [ + "make", + -12.025208473205566 + ], + [ + "▁3,000", + -12.025282859802246 + ], + [ + "▁kiss", + -12.025476455688477 + ], + [ + "▁quantum", + -12.02547836303711 + ], + [ + "▁HTTP", + -12.02548599243164 + ], + [ + "▁merit", + -12.025524139404297 + ], + [ + "▁integrating", + -12.025544166564941 + ], + [ + "▁questionnaire", + -12.025579452514648 + ], + [ + "fic", + -12.025625228881836 + ], + [ + "Your", + -12.025806427001953 + ], + [ + "▁bless", + -12.025812149047852 + ], + [ + "▁inhabitants", + -12.026129722595215 + ], + [ + "▁Administrator", + -12.026491165161133 + ], + [ + "▁crab", + -12.026518821716309 + ], + [ + "ctic", + -12.02653694152832 + ], + [ + "▁sequel", + -12.026588439941406 + ], + [ + "▁Lyn", + -12.026637077331543 + ], + [ + "▁rebel", + -12.026686668395996 + ], + [ + "▁Roth", + -12.026969909667969 + ], + [ + "▁Listing", + -12.027151107788086 + ], + [ + "▁1971", + -12.0271577835083 + ], + [ + "ingham", + -12.02727222442627 + ], + [ + "Best", + -12.027291297912598 + ], + [ + "RNA", + -12.027377128601074 + ], + [ + "OST", + -12.027395248413086 + ], + [ + "▁budgets", + -12.027429580688477 + ], + [ + "▁Rico", + -12.02775764465332 + ], + [ + "▁ambassador", + -12.027979850769043 + ], + [ + "clean", + -12.02802562713623 + ], + [ + "▁Vienna", + -12.028179168701172 + ], + [ + "▁protests", + -12.028257369995117 + ], + [ + "ér", + -12.028289794921875 + ], + [ + "▁lengths", + -12.028617858886719 + ], + [ + "▁incomplete", + -12.028701782226562 + ], + [ + "▁Nam", + -12.02871036529541 + ], + [ + "Yes", + -12.029097557067871 + ], + [ + "▁praying", + -12.029156684875488 + ], + [ + "▁Surface", + -12.0294189453125 + ], + [ + "▁GS", + -12.029419898986816 + ], + [ + "▁boarding", + -12.029523849487305 + ], + [ + "▁Southwest", + -12.029582977294922 + ], + [ + "▁conquer", + -12.029729843139648 + ], + [ + "▁Katie", + -12.029869079589844 + ], + [ + "▁notch", + -12.029972076416016 + ], + [ + "Get", + -12.030336380004883 + ], + [ + "▁removable", + -12.030352592468262 + ], + [ + "▁aluminium", + -12.030692100524902 + ], + [ + "▁Ted", + -12.030695915222168 + ], + [ + "▁Arctic", + -12.030749320983887 + ], + [ + "▁kernel", + -12.030896186828613 + ], + [ + "▁Device", + -12.031054496765137 + ], + [ + "▁Doing", + -12.031172752380371 + ], + [ + "▁#3", + -12.03126049041748 + ], + [ + "▁trustworthy", + -12.031332969665527 + ], + [ + "▁reflective", + -12.031495094299316 + ], + [ + "▁scream", + -12.031685829162598 + ], + [ + "graphy", + -12.031694412231445 + ], + [ + "▁menus", + -12.0320463180542 + ], + [ + "▁Victor", + -12.032148361206055 + ], + [ + "▁Spi", + -12.032155990600586 + ], + [ + "▁masterpiece", + -12.032466888427734 + ], + [ + "▁cardiac", + -12.032732009887695 + ], + [ + "▁IC", + -12.0327730178833 + ], + [ + "3.1", + -12.032835960388184 + ], + [ + "▁shaping", + -12.032922744750977 + ], + [ + "▁Harrison", + -12.03292465209961 + ], + [ + "▁designation", + -12.0330171585083 + ], + [ + "▁landmark", + -12.033123970031738 + ], + [ + "▁civilization", + -12.033246994018555 + ], + [ + "▁Mir", + -12.033289909362793 + ], + [ + "▁Beck", + -12.033540725708008 + ], + [ + "▁archives", + -12.033612251281738 + ], + [ + "chester", + -12.03369426727295 + ], + [ + "ACT", + -12.033838272094727 + ], + [ + "▁skate", + -12.033951759338379 + ], + [ + "▁Calgary", + -12.033990859985352 + ], + [ + "▁planner", + -12.034050941467285 + ], + [ + "▁OFF", + -12.034127235412598 + ], + [ + "▁straps", + -12.034296989440918 + ], + [ + "▁commitments", + -12.034299850463867 + ], + [ + "▁bark", + -12.034345626831055 + ], + [ + "quest", + -12.03438663482666 + ], + [ + "▁rays", + -12.034571647644043 + ], + [ + "▁fulfilled", + -12.034587860107422 + ], + [ + "▁newborn", + -12.034683227539062 + ], + [ + "▁stained", + -12.03475284576416 + ], + [ + "▁Danny", + -12.034834861755371 + ], + [ + "▁resolutions", + -12.034881591796875 + ], + [ + "▁apparel", + -12.034916877746582 + ], + [ + "▁Moses", + -12.03502082824707 + ], + [ + "done", + -12.035065650939941 + ], + [ + "▁pretend", + -12.035066604614258 + ], + [ + "2011", + -12.035097122192383 + ], + [ + "utmos", + -12.035191535949707 + ], + [ + "▁teenage", + -12.0352201461792 + ], + [ + "borne", + -12.035244941711426 + ], + [ + "▁illnesses", + -12.035244941711426 + ], + [ + "▁8:", + -12.035331726074219 + ], + [ + "▁crowds", + -12.035345077514648 + ], + [ + "bak", + -12.035606384277344 + ], + [ + "▁typing", + -12.035651206970215 + ], + [ + "▁reuse", + -12.035841941833496 + ], + [ + "▁breakthrough", + -12.035855293273926 + ], + [ + "accompanying", + -12.035969734191895 + ], + [ + "▁swelling", + -12.036310195922852 + ], + [ + "▁disciples", + -12.03632926940918 + ], + [ + "patient", + -12.036545753479004 + ], + [ + "▁Ticket", + -12.036598205566406 + ], + [ + "▁ruin", + -12.036614418029785 + ], + [ + "Thankfully", + -12.036786079406738 + ], + [ + "▁nominee", + -12.03699779510498 + ], + [ + "▁convincing", + -12.037027359008789 + ], + [ + "▁Um", + -12.037077903747559 + ], + [ + "▁digestive", + -12.037139892578125 + ], + [ + "▁OUT", + -12.03723430633545 + ], + [ + "▁Scale", + -12.037275314331055 + ], + [ + "▁programmer", + -12.03750228881836 + ], + [ + "▁explicitly", + -12.03751277923584 + ], + [ + "rib", + -12.037755012512207 + ], + [ + "▁7-", + -12.037825584411621 + ], + [ + "▁Sterling", + -12.037885665893555 + ], + [ + "»", + -12.037954330444336 + ], + [ + "ASH", + -12.03801155090332 + ], + [ + "▁mins", + -12.038058280944824 + ], + [ + "▁inappropriate", + -12.038225173950195 + ], + [ + "▁premiums", + -12.038259506225586 + ], + [ + "▁conserve", + -12.038276672363281 + ], + [ + "▁ideally", + -12.038365364074707 + ], + [ + "▁Except", + -12.03860855102539 + ], + [ + "▁dangers", + -12.038644790649414 + ], + [ + "ggie", + -12.038732528686523 + ], + [ + "▁practiced", + -12.038835525512695 + ], + [ + "▁Dodge", + -12.039085388183594 + ], + [ + "▁Dia", + -12.039111137390137 + ], + [ + "opted", + -12.039116859436035 + ], + [ + "▁128", + -12.039175987243652 + ], + [ + "Care", + -12.039458274841309 + ], + [ + "paper", + -12.039480209350586 + ], + [ + "▁Bang", + -12.039538383483887 + ], + [ + "give", + -12.039664268493652 + ], + [ + "▁attacking", + -12.039682388305664 + ], + [ + "▁Instruction", + -12.039701461791992 + ], + [ + "▁Tang", + -12.039820671081543 + ], + [ + "▁coll", + -12.03996467590332 + ], + [ + "Part", + -12.040003776550293 + ], + [ + "▁Experts", + -12.040040016174316 + ], + [ + "▁rented", + -12.04004192352295 + ], + [ + "▁enclosed", + -12.040141105651855 + ], + [ + "Michel", + -12.040268898010254 + ], + [ + "▁remarks", + -12.04033374786377 + ], + [ + "science", + -12.040687561035156 + ], + [ + "▁Adding", + -12.040846824645996 + ], + [ + "▁tightly", + -12.041120529174805 + ], + [ + "▁Rated", + -12.041141510009766 + ], + [ + "cyto", + -12.041166305541992 + ], + [ + "▁Diploma", + -12.041420936584473 + ], + [ + "▁gods", + -12.041508674621582 + ], + [ + "▁demonstrating", + -12.041513442993164 + ], + [ + "▁dawn", + -12.041582107543945 + ], + [ + "▁Marco", + -12.041619300842285 + ], + [ + "▁judicial", + -12.04170036315918 + ], + [ + "▁plunge", + -12.04175090789795 + ], + [ + "▁pig", + -12.04183292388916 + ], + [ + "▁exclusion", + -12.041861534118652 + ], + [ + "▁102", + -12.041962623596191 + ], + [ + "moto", + -12.041976928710938 + ], + [ + "▁Brussels", + -12.041994094848633 + ], + [ + "excluding", + -12.042097091674805 + ], + [ + "▁450", + -12.042171478271484 + ], + [ + "▁Viking", + -12.042221069335938 + ], + [ + "▁Foster", + -12.04235553741455 + ], + [ + "▁Poe", + -12.042435646057129 + ], + [ + "▁Norwegian", + -12.042440414428711 + ], + [ + "▁Chemistry", + -12.042612075805664 + ], + [ + "▁fry", + -12.042768478393555 + ], + [ + "▁tales", + -12.0429105758667 + ], + [ + "▁hooked", + -12.043074607849121 + ], + [ + "▁Charter", + -12.043092727661133 + ], + [ + "▁Lunch", + -12.04321002960205 + ], + [ + "FR", + -12.043264389038086 + ], + [ + "email", + -12.043469429016113 + ], + [ + "▁fragment", + -12.043485641479492 + ], + [ + "BP", + -12.043581008911133 + ], + [ + "▁motive", + -12.043624877929688 + ], + [ + "▁purchaser", + -12.043741226196289 + ], + [ + "▁cautious", + -12.04391860961914 + ], + [ + "▁blues", + -12.044483184814453 + ], + [ + "mple", + -12.044525146484375 + ], + [ + "erry", + -12.044596672058105 + ], + [ + "▁rinse", + -12.044827461242676 + ], + [ + "▁gifted", + -12.04483413696289 + ], + [ + "▁teenager", + -12.044878959655762 + ], + [ + "unch", + -12.044951438903809 + ], + [ + "close", + -12.044955253601074 + ], + [ + "▁cough", + -12.044958114624023 + ], + [ + "phan", + -12.045093536376953 + ], + [ + "bay", + -12.045187950134277 + ], + [ + "▁leaks", + -12.045207023620605 + ], + [ + "▁Championships", + -12.045450210571289 + ], + [ + "▁cupboard", + -12.045459747314453 + ], + [ + "▁Shield", + -12.0455322265625 + ], + [ + "▁Yan", + -12.045649528503418 + ], + [ + "▁Flowers", + -12.045897483825684 + ], + [ + "rado", + -12.045920372009277 + ], + [ + "▁frost", + -12.046051979064941 + ], + [ + "tune", + -12.046102523803711 + ], + [ + "▁Est", + -12.046113014221191 + ], + [ + "▁MAR", + -12.0462064743042 + ], + [ + "▁nomination", + -12.046457290649414 + ], + [ + "▁Prim", + -12.046814918518066 + ], + [ + "OE", + -12.046981811523438 + ], + [ + "▁trio", + -12.047019958496094 + ], + [ + "▁Catherine", + -12.0470552444458 + ], + [ + "▁soldier", + -12.04708194732666 + ], + [ + "▁downside", + -12.0472412109375 + ], + [ + "▁Maps", + -12.047446250915527 + ], + [ + "▁particle", + -12.047603607177734 + ], + [ + "▁preferably", + -12.047789573669434 + ], + [ + "uation", + -12.047932624816895 + ], + [ + "▁extracted", + -12.048261642456055 + ], + [ + "mart", + -12.048330307006836 + ], + [ + "▁NBC", + -12.048564910888672 + ], + [ + "▁resilience", + -12.048781394958496 + ], + [ + "▁reel", + -12.048828125 + ], + [ + "▁devotion", + -12.048920631408691 + ], + [ + "▁adjusting", + -12.04894733428955 + ], + [ + "▁survivors", + -12.04902172088623 + ], + [ + "▁airports", + -12.049135208129883 + ], + [ + "▁Buddhist", + -12.049162864685059 + ], + [ + "▁Municipal", + -12.049196243286133 + ], + [ + "rier", + -12.049208641052246 + ], + [ + "▁princess", + -12.049238204956055 + ], + [ + "▁empire", + -12.049351692199707 + ], + [ + "▁inhibitor", + -12.049549102783203 + ], + [ + "▁Anything", + -12.049582481384277 + ], + [ + "▁Nigerian", + -12.04958438873291 + ], + [ + "▁NH", + -12.049840927124023 + ], + [ + "▁Foods", + -12.049985885620117 + ], + [ + "▁motif", + -12.05007553100586 + ], + [ + "▁Driving", + -12.050167083740234 + ], + [ + "▁shifted", + -12.050322532653809 + ], + [ + "▁Brandon", + -12.050835609436035 + ], + [ + "help", + -12.0508394241333 + ], + [ + "▁Julia", + -12.050874710083008 + ], + [ + "-02", + -12.05099868774414 + ], + [ + "ardi", + -12.05154037475586 + ], + [ + "▁Doc", + -12.051581382751465 + ], + [ + "▁chili", + -12.05175495147705 + ], + [ + "iddle", + -12.051915168762207 + ], + [ + "Likewise", + -12.051993370056152 + ], + [ + "▁flavours", + -12.052037239074707 + ], + [ + "▁pitcher", + -12.052109718322754 + ], + [ + "▁workouts", + -12.052136421203613 + ], + [ + "▁Mann", + -12.052140235900879 + ], + [ + "▁Kara", + -12.052164077758789 + ], + [ + "▁formulation", + -12.052276611328125 + ], + [ + "▁endure", + -12.052573204040527 + ], + [ + "▁simmer", + -12.052639961242676 + ], + [ + "▁gown", + -12.052733421325684 + ], + [ + "▁Chevrolet", + -12.052765846252441 + ], + [ + "Che", + -12.052783966064453 + ], + [ + "▁showroom", + -12.052844047546387 + ], + [ + "▁Bud", + -12.053045272827148 + ], + [ + "songwriter", + -12.05327320098877 + ], + [ + "▁Township", + -12.053583145141602 + ], + [ + "▁Warm", + -12.053587913513184 + ], + [ + "▁perfume", + -12.053601264953613 + ], + [ + "▁(20", + -12.053624153137207 + ], + [ + "▁Mono", + -12.05372142791748 + ], + [ + "▁compose", + -12.053728103637695 + ], + [ + "▁Berkeley", + -12.05401611328125 + ], + [ + "pati", + -12.054020881652832 + ], + [ + "▁ruler", + -12.05404281616211 + ], + [ + "▁saint", + -12.054201126098633 + ], + [ + "▁autonomous", + -12.054293632507324 + ], + [ + "▁Formula", + -12.05443000793457 + ], + [ + "▁XL", + -12.054722785949707 + ], + [ + "▁Few", + -12.054727554321289 + ], + [ + "▁Peru", + -12.054753303527832 + ], + [ + "▁validity", + -12.054930686950684 + ], + [ + "▁Sofa", + -12.054998397827148 + ], + [ + "▁blender", + -12.055093765258789 + ], + [ + "▁paradise", + -12.055093765258789 + ], + [ + "▁daunting", + -12.055163383483887 + ], + [ + "▁problematic", + -12.055179595947266 + ], + [ + "stad", + -12.05521297454834 + ], + [ + "▁advisors", + -12.055230140686035 + ], + [ + "Well", + -12.055322647094727 + ], + [ + "iger", + -12.055365562438965 + ], + [ + "▁coordinated", + -12.055602073669434 + ], + [ + "ologi", + -12.055702209472656 + ], + [ + "▁uncommon", + -12.055831909179688 + ], + [ + "▁Lion", + -12.055952072143555 + ], + [ + "▁voucher", + -12.05595874786377 + ], + [ + "▁Cincinnati", + -12.055964469909668 + ], + [ + "▁Conduct", + -12.056077003479004 + ], + [ + "▁Ottawa", + -12.056138038635254 + ], + [ + "GL", + -12.056159019470215 + ], + [ + "▁Nano", + -12.056171417236328 + ], + [ + "▁Milwaukee", + -12.056242942810059 + ], + [ + "225", + -12.056346893310547 + ], + [ + "▁weave", + -12.056346893310547 + ], + [ + "▁Hours", + -12.056371688842773 + ], + [ + "▁Kris", + -12.056509971618652 + ], + [ + "▁WHAT", + -12.05657958984375 + ], + [ + "▁Accounting", + -12.056734085083008 + ], + [ + "▁honesty", + -12.056760787963867 + ], + [ + "▁sang", + -12.0568208694458 + ], + [ + "chemical", + -12.057053565979004 + ], + [ + "▁FE", + -12.057120323181152 + ], + [ + "esteem", + -12.057168006896973 + ], + [ + "▁planes", + -12.057175636291504 + ], + [ + "▁doc", + -12.057219505310059 + ], + [ + "Web", + -12.057231903076172 + ], + [ + "▁drums", + -12.05733585357666 + ], + [ + "controlled", + -12.057342529296875 + ], + [ + "hine", + -12.057351112365723 + ], + [ + "▁Personally", + -12.057469367980957 + ], + [ + "ка", + -12.057624816894531 + ], + [ + "2019", + -12.057659149169922 + ], + [ + "▁fibers", + -12.057762145996094 + ], + [ + "▁picturesque", + -12.057848930358887 + ], + [ + "lapse", + -12.058158874511719 + ], + [ + "▁Fil", + -12.058387756347656 + ], + [ + "▁heights", + -12.058531761169434 + ], + [ + "▁Indians", + -12.058539390563965 + ], + [ + "▁Ple", + -12.058808326721191 + ], + [ + "▁vague", + -12.058859825134277 + ], + [ + "▁Iceland", + -12.058945655822754 + ], + [ + "▁preschool", + -12.059328079223633 + ], + [ + "por", + -12.059407234191895 + ], + [ + "specializing", + -12.059420585632324 + ], + [ + "▁expedition", + -12.059452056884766 + ], + [ + "▁drunk", + -12.059565544128418 + ], + [ + "▁Repeat", + -12.059685707092285 + ], + [ + "▁monkey", + -12.0596923828125 + ], + [ + "erman", + -12.059746742248535 + ], + [ + "▁NCAA", + -12.0597505569458 + ], + [ + "▁Portuguese", + -12.059941291809082 + ], + [ + "culture", + -12.05994701385498 + ], + [ + "communications", + -12.060210227966309 + ], + [ + "ception", + -12.060267448425293 + ], + [ + "▁Perth", + -12.060296058654785 + ], + [ + "worthy", + -12.060333251953125 + ], + [ + "comb", + -12.060352325439453 + ], + [ + "▁Lakes", + -12.060473442077637 + ], + [ + "▁Cities", + -12.06054973602295 + ], + [ + "▁exempt", + -12.060602188110352 + ], + [ + "▁creations", + -12.060686111450195 + ], + [ + "▁Eagles", + -12.06081771850586 + ], + [ + "▁shadows", + -12.061004638671875 + ], + [ + "▁sorted", + -12.061107635498047 + ], + [ + "ón", + -12.061163902282715 + ], + [ + "▁weaknesses", + -12.061182022094727 + ], + [ + "▁blackjack", + -12.061236381530762 + ], + [ + "ips", + -12.061307907104492 + ], + [ + "▁electrode", + -12.061659812927246 + ], + [ + "channel", + -12.061823844909668 + ], + [ + "▁variants", + -12.06185245513916 + ], + [ + "cyte", + -12.061939239501953 + ], + [ + "▁simplify", + -12.062103271484375 + ], + [ + "▁Brush", + -12.062173843383789 + ], + [ + "▁Trek", + -12.062204360961914 + ], + [ + "went", + -12.062248229980469 + ], + [ + "▁instinct", + -12.062281608581543 + ], + [ + "▁Liberal", + -12.062398910522461 + ], + [ + "▁Neu", + -12.062400817871094 + ], + [ + "▁Points", + -12.062450408935547 + ], + [ + "▁los", + -12.06245231628418 + ], + [ + "peak", + -12.062484741210938 + ], + [ + "escence", + -12.062577247619629 + ], + [ + "▁19.", + -12.06259536743164 + ], + [ + "ibly", + -12.062707901000977 + ], + [ + "▁perceive", + -12.062823295593262 + ], + [ + "8.5", + -12.062941551208496 + ], + [ + "▁logos", + -12.062966346740723 + ], + [ + "▁competence", + -12.06302261352539 + ], + [ + "▁constitution", + -12.063187599182129 + ], + [ + "▁Jamaica", + -12.06323528289795 + ], + [ + "square", + -12.0634765625 + ], + [ + "▁tabs", + -12.063699722290039 + ], + [ + "▁Vir", + -12.063716888427734 + ], + [ + "posit", + -12.06386947631836 + ], + [ + "mite", + -12.063899040222168 + ], + [ + "▁Parks", + -12.064163208007812 + ], + [ + "strict", + -12.064165115356445 + ], + [ + "▁repository", + -12.064356803894043 + ], + [ + "▁severity", + -12.064496994018555 + ], + [ + "▁poses", + -12.064628601074219 + ], + [ + "▁economist", + -12.064847946166992 + ], + [ + "ISA", + -12.064873695373535 + ], + [ + "▁Spread", + -12.06493854522705 + ], + [ + "▁Parish", + -12.064996719360352 + ], + [ + "▁Workers", + -12.065118789672852 + ], + [ + "RON", + -12.065185546875 + ], + [ + "▁ripe", + -12.065308570861816 + ], + [ + "▁definitions", + -12.065321922302246 + ], + [ + "▁personalities", + -12.065448760986328 + ], + [ + "▁Gran", + -12.065474510192871 + ], + [ + "▁getaway", + -12.065696716308594 + ], + [ + "▁stranger", + -12.065796852111816 + ], + [ + "keeping", + -12.065825462341309 + ], + [ + "loom", + -12.065905570983887 + ], + [ + "▁bust", + -12.066061973571777 + ], + [ + "▁railroad", + -12.066076278686523 + ], + [ + "▁accidentally", + -12.066110610961914 + ], + [ + "▁Tamil", + -12.066169738769531 + ], + [ + "▁bees", + -12.066184043884277 + ], + [ + "▁flock", + -12.066298484802246 + ], + [ + "▁Hang", + -12.0664701461792 + ], + [ + "▁Mak", + -12.066627502441406 + ], + [ + "imp", + -12.066630363464355 + ], + [ + "iter", + -12.066780090332031 + ], + [ + "▁Lum", + -12.066814422607422 + ], + [ + "Ver", + -12.06684684753418 + ], + [ + "▁berries", + -12.06685733795166 + ], + [ + "team", + -12.066929817199707 + ], + [ + "▁Dow", + -12.067172050476074 + ], + [ + "lice", + -12.06718921661377 + ], + [ + "▁jungle", + -12.067240715026855 + ], + [ + "▁hazard", + -12.06725025177002 + ], + [ + "▁Projects", + -12.06727123260498 + ], + [ + "▁shout", + -12.06735610961914 + ], + [ + "▁foul", + -12.067389488220215 + ], + [ + "▁75%", + -12.067421913146973 + ], + [ + "▁5,000", + -12.067460060119629 + ], + [ + "▁forefront", + -12.067506790161133 + ], + [ + "grin", + -12.06753921508789 + ], + [ + "3.2", + -12.067545890808105 + ], + [ + "▁XML", + -12.067667961120605 + ], + [ + "▁straw", + -12.06775188446045 + ], + [ + ":20", + -12.067773818969727 + ], + [ + "▁enters", + -12.068032264709473 + ], + [ + "▁NGO", + -12.068042755126953 + ], + [ + "▁french", + -12.068239212036133 + ], + [ + "pas", + -12.06828498840332 + ], + [ + "▁Sustainable", + -12.068297386169434 + ], + [ + "▁studios", + -12.068371772766113 + ], + [ + "▁feat", + -12.068402290344238 + ], + [ + "▁hilarious", + -12.068614959716797 + ], + [ + "▁suspicious", + -12.068739891052246 + ], + [ + "▁Drum", + -12.068883895874023 + ], + [ + "▁CPA", + -12.069046020507812 + ], + [ + "▁smiling", + -12.069568634033203 + ], + [ + "▁Imperial", + -12.069711685180664 + ], + [ + "▁scalp", + -12.069828987121582 + ], + [ + "dish", + -12.070110321044922 + ], + [ + "▁Hughes", + -12.070171356201172 + ], + [ + "▁Male", + -12.070239067077637 + ], + [ + "▁Sharp", + -12.070405960083008 + ], + [ + "psy", + -12.070474624633789 + ], + [ + "▁optimistic", + -12.070589065551758 + ], + [ + "▁armor", + -12.07082748413086 + ], + [ + "▁velvet", + -12.071051597595215 + ], + [ + "▁upgrading", + -12.071090698242188 + ], + [ + "▁evenings", + -12.071256637573242 + ], + [ + "▁grease", + -12.071417808532715 + ], + [ + "mous", + -12.071540832519531 + ], + [ + "▁Minor", + -12.071606636047363 + ], + [ + "▁outdated", + -12.07172966003418 + ], + [ + "▁vegetation", + -12.071969985961914 + ], + [ + "▁salaries", + -12.072026252746582 + ], + [ + "▁deadlines", + -12.072029113769531 + ], + [ + "neck", + -12.072221755981445 + ], + [ + "▁Interested", + -12.072376251220703 + ], + [ + "▁ATM", + -12.07260513305664 + ], + [ + "lien", + -12.072796821594238 + ], + [ + "GIS", + -12.073162078857422 + ], + [ + "▁WHO", + -12.073193550109863 + ], + [ + "▁Gem", + -12.073234558105469 + ], + [ + "▁turbine", + -12.073248863220215 + ], + [ + "▁indoors", + -12.07349681854248 + ], + [ + "cock", + -12.073514938354492 + ], + [ + "▁Vincent", + -12.073515892028809 + ], + [ + "▁grapes", + -12.073708534240723 + ], + [ + "CHE", + -12.073729515075684 + ], + [ + "▁sidewalk", + -12.073740005493164 + ], + [ + "▁Venice", + -12.07399845123291 + ], + [ + "▁demanded", + -12.074010848999023 + ], + [ + "▁formally", + -12.074047088623047 + ], + [ + "THER", + -12.07415771484375 + ], + [ + "▁Sandy", + -12.074162483215332 + ], + [ + "▁classrooms", + -12.07418155670166 + ], + [ + "▁Thinking", + -12.074361801147461 + ], + [ + "▁170", + -12.074565887451172 + ], + [ + "▁avenue", + -12.074596405029297 + ], + [ + "FO", + -12.074867248535156 + ], + [ + "ANCE", + -12.074970245361328 + ], + [ + "▁citation", + -12.075106620788574 + ], + [ + "▁bets", + -12.075343132019043 + ], + [ + "▁FR", + -12.075448036193848 + ], + [ + "▁prose", + -12.075544357299805 + ], + [ + "▁Tesla", + -12.075662612915039 + ], + [ + "▁reservoir", + -12.075728416442871 + ], + [ + "2.3", + -12.075960159301758 + ], + [ + "▁peripheral", + -12.075977325439453 + ], + [ + "▁Ethiopia", + -12.076047897338867 + ], + [ + "▁reluctant", + -12.076047897338867 + ], + [ + "▁les", + -12.076088905334473 + ], + [ + "▁Clay", + -12.07618236541748 + ], + [ + "rez", + -12.076227188110352 + ], + [ + "PAC", + -12.076272964477539 + ], + [ + "▁appeals", + -12.076359748840332 + ], + [ + "▁flawless", + -12.076384544372559 + ], + [ + "liner", + -12.076444625854492 + ], + [ + "▁Skype", + -12.076470375061035 + ], + [ + "DER", + -12.076516151428223 + ], + [ + "▁Nag", + -12.076571464538574 + ], + [ + "▁Mos", + -12.076581001281738 + ], + [ + "▁Magn", + -12.076706886291504 + ], + [ + "▁Candidates", + -12.076751708984375 + ], + [ + "▁Powder", + -12.07675838470459 + ], + [ + "thank", + -12.076821327209473 + ], + [ + "▁BEST", + -12.0768404006958 + ], + [ + "▁civic", + -12.076972007751465 + ], + [ + "▁Firefox", + -12.07697868347168 + ], + [ + "▁dysfunction", + -12.077043533325195 + ], + [ + "▁commence", + -12.077105522155762 + ], + [ + "▁captures", + -12.077475547790527 + ], + [ + "▁Wu", + -12.077644348144531 + ], + [ + "▁themed", + -12.07766342163086 + ], + [ + "▁bait", + -12.07777214050293 + ], + [ + "▁rainbow", + -12.077868461608887 + ], + [ + "bate", + -12.077908515930176 + ], + [ + "cla", + -12.077948570251465 + ], + [ + "▁digging", + -12.078025817871094 + ], + [ + "▁Founder", + -12.078246116638184 + ], + [ + "skin", + -12.078478813171387 + ], + [ + "ifies", + -12.078519821166992 + ], + [ + "▁VM", + -12.078592300415039 + ], + [ + "▁carrots", + -12.078594207763672 + ], + [ + "▁Azure", + -12.078635215759277 + ], + [ + "rial", + -12.078641891479492 + ], + [ + "▁CNN", + -12.078865051269531 + ], + [ + "tik", + -12.078985214233398 + ], + [ + "▁Consequently", + -12.079178810119629 + ], + [ + "YA", + -12.079252243041992 + ], + [ + "▁tangible", + -12.079252243041992 + ], + [ + "▁Gan", + -12.079391479492188 + ], + [ + "till", + -12.079546928405762 + ], + [ + "350", + -12.079564094543457 + ], + [ + "▁crank", + -12.079580307006836 + ], + [ + "uber", + -12.079625129699707 + ], + [ + "gol", + -12.079668998718262 + ], + [ + "▁slate", + -12.079689025878906 + ], + [ + "▁disappointing", + -12.079730033874512 + ], + [ + "safe", + -12.07980728149414 + ], + [ + "▁Swift", + -12.07983684539795 + ], + [ + "▁plead", + -12.079852104187012 + ], + [ + "▁acre", + -12.079930305480957 + ], + [ + "▁Rebecca", + -12.079998970031738 + ], + [ + "▁1900", + -12.080035209655762 + ], + [ + "▁collector", + -12.080076217651367 + ], + [ + "▁corrosion", + -12.080355644226074 + ], + [ + "AMP", + -12.08037281036377 + ], + [ + "▁vapor", + -12.080547332763672 + ], + [ + "acc", + -12.08092212677002 + ], + [ + "▁exhibited", + -12.080941200256348 + ], + [ + "▁Rescue", + -12.081121444702148 + ], + [ + "▁Grow", + -12.081279754638672 + ], + [ + "rush", + -12.081510543823242 + ], + [ + "phen", + -12.081539154052734 + ], + [ + "▁rotating", + -12.081774711608887 + ], + [ + "▁fixes", + -12.081966400146484 + ], + [ + "▁heavier", + -12.081974983215332 + ], + [ + "touch", + -12.08199691772461 + ], + [ + "▁Gay", + -12.082262992858887 + ], + [ + "▁4.0", + -12.082298278808594 + ], + [ + "▁Divine", + -12.082371711730957 + ], + [ + "rice", + -12.082548141479492 + ], + [ + "▁puff", + -12.082559585571289 + ], + [ + "▁pleasing", + -12.082576751708984 + ], + [ + "▁lightning", + -12.082759857177734 + ], + [ + "▁Cedar", + -12.0828275680542 + ], + [ + "▁predecessor", + -12.082857131958008 + ], + [ + "▁Desktop", + -12.082890510559082 + ], + [ + "▁spins", + -12.083001136779785 + ], + [ + "▁Gla", + -12.083020210266113 + ], + [ + "▁Athens", + -12.083114624023438 + ], + [ + "▁Province", + -12.08314323425293 + ], + [ + "▁governed", + -12.083170890808105 + ], + [ + "▁gallon", + -12.083334922790527 + ], + [ + "▁Cemetery", + -12.083465576171875 + ], + [ + "trained", + -12.083549499511719 + ], + [ + "▁Sit", + -12.083550453186035 + ], + [ + "pens", + -12.08358383178711 + ], + [ + "▁glitter", + -12.083646774291992 + ], + [ + "▁grind", + -12.083709716796875 + ], + [ + "▁Bis", + -12.083719253540039 + ], + [ + "▁motors", + -12.083927154541016 + ], + [ + "▁wilderness", + -12.084038734436035 + ], + [ + "▁outfits", + -12.084150314331055 + ], + [ + "▁Celtic", + -12.084287643432617 + ], + [ + "▁aerial", + -12.084331512451172 + ], + [ + "▁diy", + -12.084376335144043 + ], + [ + "▁cas", + -12.084396362304688 + ], + [ + "▁comics", + -12.084575653076172 + ], + [ + "▁efficacy", + -12.084610939025879 + ], + [ + "▁AZ", + -12.08482551574707 + ], + [ + "suite", + -12.085351943969727 + ], + [ + "eep", + -12.085363388061523 + ], + [ + "▁alpha", + -12.085622787475586 + ], + [ + "kir", + -12.085772514343262 + ], + [ + "▁Beth", + -12.085786819458008 + ], + [ + "▁boo", + -12.085820198059082 + ], + [ + "▁waiver", + -12.085836410522461 + ], + [ + "grove", + -12.08587646484375 + ], + [ + "▁Croatia", + -12.085902214050293 + ], + [ + "▁Benefits", + -12.085986137390137 + ], + [ + "anim", + -12.086008071899414 + ], + [ + "MAX", + -12.086074829101562 + ], + [ + "▁Deb", + -12.086103439331055 + ], + [ + "▁Problem", + -12.086126327514648 + ], + [ + "▁Tee", + -12.086132049560547 + ], + [ + "api", + -12.086243629455566 + ], + [ + "▁Amanda", + -12.086564064025879 + ], + [ + "▁snapshot", + -12.086647033691406 + ], + [ + "▁Ghana", + -12.086799621582031 + ], + [ + "VR", + -12.08693790435791 + ], + [ + "▁(12", + -12.086954116821289 + ], + [ + "▁Representative", + -12.086970329284668 + ], + [ + "OVER", + -12.086978912353516 + ], + [ + "▁2003,", + -12.086992263793945 + ], + [ + "▁citrus", + -12.087051391601562 + ], + [ + "▁Cherry", + -12.087089538574219 + ], + [ + "▁oversight", + -12.087121963500977 + ], + [ + "▁Poor", + -12.08714485168457 + ], + [ + "hum", + -12.087152481079102 + ], + [ + "▁Structure", + -12.087374687194824 + ], + [ + "▁Blake", + -12.087377548217773 + ], + [ + "▁sparkling", + -12.087446212768555 + ], + [ + "▁Bah", + -12.087663650512695 + ], + [ + "lander", + -12.087716102600098 + ], + [ + "▁Ronald", + -12.087797164916992 + ], + [ + "▁Cars", + -12.087881088256836 + ], + [ + "viv", + -12.087907791137695 + ], + [ + "1.7", + -12.088162422180176 + ], + [ + "▁Fran", + -12.088240623474121 + ], + [ + "▁tens", + -12.088396072387695 + ], + [ + "akh", + -12.088459968566895 + ], + [ + "▁gadgets", + -12.088496208190918 + ], + [ + "ought", + -12.088558197021484 + ], + [ + "Sha", + -12.0885648727417 + ], + [ + "▁Marina", + -12.088605880737305 + ], + [ + "▁Session", + -12.08865737915039 + ], + [ + "▁Jeep", + -12.08900260925293 + ], + [ + "▁Charge", + -12.089065551757812 + ], + [ + "These", + -12.089111328125 + ], + [ + "▁investigators", + -12.089118003845215 + ], + [ + "solve", + -12.089200973510742 + ], + [ + "▁hairstyle", + -12.089271545410156 + ], + [ + "ubi", + -12.089311599731445 + ], + [ + "Ann", + -12.089360237121582 + ], + [ + "▁mist", + -12.089370727539062 + ], + [ + "▁HAVE", + -12.089407920837402 + ], + [ + "USA", + -12.089613914489746 + ], + [ + "cute", + -12.089653968811035 + ], + [ + "-09", + -12.089678764343262 + ], + [ + "▁$300", + -12.089860916137695 + ], + [ + "grown", + -12.090118408203125 + ], + [ + "▁Cardinal", + -12.090154647827148 + ], + [ + "▁canopy", + -12.090291023254395 + ], + [ + "handed", + -12.09032154083252 + ], + [ + "▁interfaces", + -12.090328216552734 + ], + [ + "▁cult", + -12.090402603149414 + ], + [ + "▁Desert", + -12.090500831604004 + ], + [ + "crypt", + -12.090521812438965 + ], + [ + "▁exhausted", + -12.090532302856445 + ], + [ + "▁hello", + -12.090534210205078 + ], + [ + "except", + -12.09061050415039 + ], + [ + "ECT", + -12.090662002563477 + ], + [ + "▁Fourth", + -12.090677261352539 + ], + [ + "▁Rear", + -12.090860366821289 + ], + [ + "▁corrupt", + -12.090906143188477 + ], + [ + "PRO", + -12.091044425964355 + ], + [ + "▁Bulgaria", + -12.091191291809082 + ], + [ + "▁Lounge", + -12.091421127319336 + ], + [ + "▁Dust", + -12.091485977172852 + ], + [ + "▁convicted", + -12.09154224395752 + ], + [ + "▁fats", + -12.091565132141113 + ], + [ + "▁miniature", + -12.091663360595703 + ], + [ + "▁dancers", + -12.09169864654541 + ], + [ + "▁Gel", + -12.091757774353027 + ], + [ + "▁Bali", + -12.091904640197754 + ], + [ + "▁Jin", + -12.091989517211914 + ], + [ + "leading", + -12.092068672180176 + ], + [ + "▁inspector", + -12.092070579528809 + ], + [ + "▁Bryan", + -12.092081069946289 + ], + [ + "▁realizing", + -12.092082023620605 + ], + [ + "▁240", + -12.092126846313477 + ], + [ + "▁scout", + -12.092138290405273 + ], + [ + "▁fairy", + -12.09216594696045 + ], + [ + "▁EA", + -12.0924711227417 + ], + [ + "LIC", + -12.092702865600586 + ], + [ + "▁nutrient", + -12.09272289276123 + ], + [ + "special", + -12.092867851257324 + ], + [ + "▁travelled", + -12.092970848083496 + ], + [ + "1/2", + -12.093031883239746 + ], + [ + "Cat", + -12.093189239501953 + ], + [ + "▁Cave", + -12.093193054199219 + ], + [ + "▁Instant", + -12.0931978225708 + ], + [ + "▁Weekend", + -12.093286514282227 + ], + [ + "▁provincial", + -12.093358039855957 + ], + [ + "▁Cent", + -12.093385696411133 + ], + [ + "▁sadly", + -12.09354305267334 + ], + [ + "▁Sanders", + -12.093828201293945 + ], + [ + "▁lanes", + -12.09406566619873 + ], + [ + "▁sim", + -12.094260215759277 + ], + [ + "xx", + -12.094278335571289 + ], + [ + "▁digest", + -12.094440460205078 + ], + [ + "▁volunteering", + -12.094646453857422 + ], + [ + "▁Offering", + -12.094839096069336 + ], + [ + "▁organizer", + -12.095076560974121 + ], + [ + "uous", + -12.095101356506348 + ], + [ + "▁Bil", + -12.09511947631836 + ], + [ + "1.1", + -12.095298767089844 + ], + [ + "▁resting", + -12.09529972076416 + ], + [ + "▁messy", + -12.095300674438477 + ], + [ + "▁â", + -12.095438957214355 + ], + [ + "▁Nest", + -12.095470428466797 + ], + [ + "urg", + -12.095747947692871 + ], + [ + "lix", + -12.095821380615234 + ], + [ + "▁Venezuela", + -12.095854759216309 + ], + [ + "kay", + -12.095945358276367 + ], + [ + "augh", + -12.096051216125488 + ], + [ + "▁knob", + -12.096110343933105 + ], + [ + "Box", + -12.096217155456543 + ], + [ + "▁Gy", + -12.09626579284668 + ], + [ + "▁Period", + -12.096427917480469 + ], + [ + "thorn", + -12.096566200256348 + ], + [ + "▁antibiotics", + -12.096699714660645 + ], + [ + "HM", + -12.096724510192871 + ], + [ + "▁humanitarian", + -12.096726417541504 + ], + [ + "▁Extract", + -12.096898078918457 + ], + [ + "▁velocity", + -12.096978187561035 + ], + [ + "▁Electronics", + -12.097058296203613 + ], + [ + "▁deputy", + -12.097160339355469 + ], + [ + "10)", + -12.09738540649414 + ], + [ + "Med", + -12.097557067871094 + ], + [ + "urged", + -12.09764289855957 + ], + [ + "888", + -12.097647666931152 + ], + [ + "", + -12.352408409118652 + ], + [ + "▁denim", + -12.35251235961914 + ], + [ + "▁absurd", + -12.352630615234375 + ], + [ + "▁collects", + -12.352836608886719 + ], + [ + "▁Split", + -12.352849960327148 + ], + [ + "▁Kre", + -12.35288143157959 + ], + [ + "▁downtime", + -12.352930068969727 + ], + [ + "gian", + -12.353008270263672 + ], + [ + "founded", + -12.353013038635254 + ], + [ + "▁$150", + -12.353050231933594 + ], + [ + "▁bizarre", + -12.35305118560791 + ], + [ + "▁advent", + -12.353199005126953 + ], + [ + "▁prioritize", + -12.353203773498535 + ], + [ + "▁(16", + -12.353314399719238 + ], + [ + "pton", + -12.353560447692871 + ], + [ + "▁Barnes", + -12.353615760803223 + ], + [ + "ENCE", + -12.353741645812988 + ], + [ + "▁Springfield", + -12.353798866271973 + ], + [ + "0000", + -12.353851318359375 + ], + [ + "▁inconvenience", + -12.35389518737793 + ], + [ + "mpl", + -12.353959083557129 + ], + [ + "modern", + -12.354209899902344 + ], + [ + "▁lust", + -12.35423469543457 + ], + [ + "finder", + -12.354241371154785 + ], + [ + "▁impulse", + -12.354270935058594 + ], + [ + "▁fol", + -12.354395866394043 + ], + [ + "▁Physician", + -12.354416847229004 + ], + [ + "▁labs", + -12.354432106018066 + ], + [ + "▁rehearsal", + -12.354458808898926 + ], + [ + "▁Spiritual", + -12.354574203491211 + ], + [ + "▁Hear", + -12.354761123657227 + ], + [ + "▁southwest", + -12.354783058166504 + ], + [ + "▁introductory", + -12.354881286621094 + ], + [ + "▁contracted", + -12.354899406433105 + ], + [ + "DES", + -12.354914665222168 + ], + [ + "▁inflammatory", + -12.35500431060791 + ], + [ + "▁Fishing", + -12.355212211608887 + ], + [ + "▁boosting", + -12.355273246765137 + ], + [ + "▁eclectic", + -12.355350494384766 + ], + [ + "▁understandable", + -12.355524063110352 + ], + [ + "▁Holdings", + -12.355622291564941 + ], + [ + "escent", + -12.355634689331055 + ], + [ + "▁waterfront", + -12.35581111907959 + ], + [ + "▁obsession", + -12.355894088745117 + ], + [ + "latin", + -12.355896949768066 + ], + [ + "▁Sense", + -12.355902671813965 + ], + [ + "▁Solo", + -12.355953216552734 + ], + [ + "▁Boo", + -12.356157302856445 + ], + [ + "▁Giant", + -12.356217384338379 + ], + [ + "▁Established", + -12.356311798095703 + ], + [ + "▁Jenny", + -12.356429100036621 + ], + [ + "▁Submit", + -12.356446266174316 + ], + [ + "URL", + -12.356450080871582 + ], + [ + "▁prince", + -12.356472969055176 + ], + [ + "player", + -12.356606483459473 + ], + [ + "▁stocking", + -12.356648445129395 + ], + [ + "▁referee", + -12.35666275024414 + ], + [ + "▁Pig", + -12.356673240661621 + ], + [ + "▁medicinal", + -12.356816291809082 + ], + [ + "▁Blvd", + -12.356854438781738 + ], + [ + "▁Created", + -12.356857299804688 + ], + [ + "▁projections", + -12.356863975524902 + ], + [ + "▁Rag", + -12.356921195983887 + ], + [ + "▁Changes", + -12.356952667236328 + ], + [ + "▁ICT", + -12.357002258300781 + ], + [ + "201", + -12.35701847076416 + ], + [ + "▁bullying", + -12.35726261138916 + ], + [ + "▁civilians", + -12.357294082641602 + ], + [ + "▁Gain", + -12.357412338256836 + ], + [ + "▁Boom", + -12.357586860656738 + ], + [ + "▁overhaul", + -12.357589721679688 + ], + [ + "▁Amber", + -12.357625961303711 + ], + [ + "▁rebate", + -12.357718467712402 + ], + [ + "▁Female", + -12.357844352722168 + ], + [ + "▁Dylan", + -12.3578462600708 + ], + [ + "▁cafes", + -12.358004570007324 + ], + [ + "direct", + -12.358059883117676 + ], + [ + "▁disconnect", + -12.358077049255371 + ], + [ + "▁у", + -12.358230590820312 + ], + [ + "▁softer", + -12.35826301574707 + ], + [ + "rub", + -12.358266830444336 + ], + [ + "▁colony", + -12.358363151550293 + ], + [ + "liv", + -12.358404159545898 + ], + [ + "▁Laptop", + -12.358428001403809 + ], + [ + "▁pinterest", + -12.358488082885742 + ], + [ + "▁vpn", + -12.358561515808105 + ], + [ + "▁reg", + -12.358705520629883 + ], + [ + "▁rumors", + -12.358994483947754 + ], + [ + "▁Apartment", + -12.359100341796875 + ], + [ + "▁mentors", + -12.359105110168457 + ], + [ + "▁Moment", + -12.359238624572754 + ], + [ + "▁brokerage", + -12.359386444091797 + ], + [ + "▁ISP", + -12.3594331741333 + ], + [ + "▁pricey", + -12.359434127807617 + ], + [ + "▁comparative", + -12.359743118286133 + ], + [ + "▁burns", + -12.359766006469727 + ], + [ + "▁neighbours", + -12.359870910644531 + ], + [ + "▁Patch", + -12.35992431640625 + ], + [ + "committing", + -12.359972953796387 + ], + [ + "clusion", + -12.359992980957031 + ], + [ + "ст", + -12.359993934631348 + ], + [ + "▁aspirations", + -12.360044479370117 + ], + [ + "▁Holmes", + -12.360052108764648 + ], + [ + "▁Yar", + -12.360063552856445 + ], + [ + "▁destroying", + -12.360089302062988 + ], + [ + "issuing", + -12.360147476196289 + ], + [ + "▁Labs", + -12.36021900177002 + ], + [ + "osphere", + -12.360374450683594 + ], + [ + "hydr", + -12.360431671142578 + ], + [ + "bill", + -12.360696792602539 + ], + [ + "▁brackets", + -12.360697746276855 + ], + [ + "▁popping", + -12.360721588134766 + ], + [ + "▁affiliation", + -12.360861778259277 + ], + [ + "▁calorie", + -12.360930442810059 + ], + [ + "▁icing", + -12.360966682434082 + ], + [ + "▁Shade", + -12.360993385314941 + ], + [ + "▁Louisville", + -12.36099624633789 + ], + [ + "▁Cad", + -12.361029624938965 + ], + [ + "insisted", + -12.361067771911621 + ], + [ + "▁tranquil", + -12.361235618591309 + ], + [ + "▁Duncan", + -12.361248970031738 + ], + [ + "DY", + -12.361250877380371 + ], + [ + "▁rash", + -12.361289024353027 + ], + [ + "▁Abbey", + -12.361383438110352 + ], + [ + "▁GREAT", + -12.361407279968262 + ], + [ + "▁Grid", + -12.361532211303711 + ], + [ + "▁enduring", + -12.361703872680664 + ], + [ + "tral", + -12.36171817779541 + ], + [ + "▁amazingly", + -12.361835479736328 + ], + [ + "▁Monthly", + -12.362395286560059 + ], + [ + "dad", + -12.362757682800293 + ], + [ + "▁Packers", + -12.3628511428833 + ], + [ + "USD", + -12.362959861755371 + ], + [ + "▁whoever", + -12.363086700439453 + ], + [ + "Tri", + -12.363324165344238 + ], + [ + "▁strawberries", + -12.363373756408691 + ], + [ + "▁visualize", + -12.36340045928955 + ], + [ + "▁referenced", + -12.363594055175781 + ], + [ + "▁Piano", + -12.363602638244629 + ], + [ + "Pay", + -12.36368179321289 + ], + [ + "▁Hau", + -12.363740921020508 + ], + [ + "▁Cone", + -12.36377239227295 + ], + [ + "▁contests", + -12.363805770874023 + ], + [ + "▁Lex", + -12.363842010498047 + ], + [ + "▁Pant", + -12.364102363586426 + ], + [ + "depend", + -12.36412525177002 + ], + [ + "▁mentions", + -12.364143371582031 + ], + [ + "Mac", + -12.36414623260498 + ], + [ + "Tra", + -12.364155769348145 + ], + [ + "▁OTHER", + -12.364301681518555 + ], + [ + "▁silicon", + -12.364389419555664 + ], + [ + "resh", + -12.364444732666016 + ], + [ + "hound", + -12.364760398864746 + ], + [ + "▁Timber", + -12.364855766296387 + ], + [ + "▁Kel", + -12.364950180053711 + ], + [ + "▁unlawful", + -12.365174293518066 + ], + [ + "▁buff", + -12.36523151397705 + ], + [ + "▁Omega", + -12.36532211303711 + ], + [ + "▁harmless", + -12.365510940551758 + ], + [ + "▁predator", + -12.365562438964844 + ], + [ + "▁Pixel", + -12.36567211151123 + ], + [ + "icate", + -12.36575984954834 + ], + [ + "▁Musical", + -12.365768432617188 + ], + [ + "▁alley", + -12.36577320098877 + ], + [ + "▁virgin", + -12.365796089172363 + ], + [ + "ignoring", + -12.365840911865234 + ], + [ + "▁cried", + -12.365974426269531 + ], + [ + "lph", + -12.366061210632324 + ], + [ + "▁pickle", + -12.366158485412598 + ], + [ + "▁(2010)", + -12.366268157958984 + ], + [ + "▁HB", + -12.366279602050781 + ], + [ + "▁Huawei", + -12.36630916595459 + ], + [ + "▁Maximum", + -12.366317749023438 + ], + [ + "▁electrician", + -12.366378784179688 + ], + [ + "▁manifestation", + -12.366657257080078 + ], + [ + "▁royalty", + -12.366658210754395 + ], + [ + "STA", + -12.366700172424316 + ], + [ + "▁Caroline", + -12.366765975952148 + ], + [ + "static", + -12.367118835449219 + ], + [ + "▁ERP", + -12.367363929748535 + ], + [ + "▁Sold", + -12.367511749267578 + ], + [ + "▁blink", + -12.367552757263184 + ], + [ + "tucked", + -12.367581367492676 + ], + [ + "▁Odd", + -12.367592811584473 + ], + [ + "▁infamous", + -12.367785453796387 + ], + [ + "▁interrupt", + -12.367791175842285 + ], + [ + "Aside", + -12.367918014526367 + ], + [ + "▁Wellington", + -12.367918014526367 + ], + [ + "▁Jeffrey", + -12.367932319641113 + ], + [ + "OY", + -12.367990493774414 + ], + [ + "▁shaking", + -12.368175506591797 + ], + [ + "▁hut", + -12.368274688720703 + ], + [ + "hak", + -12.368300437927246 + ], + [ + "▁Sul", + -12.36848258972168 + ], + [ + "▁tempting", + -12.368504524230957 + ], + [ + "▁Lawyers", + -12.368515014648438 + ], + [ + "rtz", + -12.368621826171875 + ], + [ + "▁pasture", + -12.368638038635254 + ], + [ + "▁sinks", + -12.368699073791504 + ], + [ + "▁Integration", + -12.369002342224121 + ], + [ + "ERT", + -12.369063377380371 + ], + [ + "▁1.8", + -12.369128227233887 + ], + [ + "▁CNC", + -12.369160652160645 + ], + [ + "▁Approach", + -12.369285583496094 + ], + [ + "boot", + -12.369294166564941 + ], + [ + "▁sourcing", + -12.369338989257812 + ], + [ + "-00", + -12.369455337524414 + ], + [ + "Contin", + -12.369470596313477 + ], + [ + "▁Vick", + -12.3695650100708 + ], + [ + "▁Symposium", + -12.36959171295166 + ], + [ + "▁dividends", + -12.369593620300293 + ], + [ + "▁Indoor", + -12.369638442993164 + ], + [ + "▁Meat", + -12.369650840759277 + ], + [ + "▁drafted", + -12.369650840759277 + ], + [ + "▁enquiry", + -12.3696870803833 + ], + [ + "▁tiger", + -12.36972427368164 + ], + [ + "bic", + -12.369799613952637 + ], + [ + "▁Congrats", + -12.369830131530762 + ], + [ + "▁emphasized", + -12.369858741760254 + ], + [ + "▁Lyon", + -12.369891166687012 + ], + [ + "iment", + -12.370087623596191 + ], + [ + "▁disturbance", + -12.370192527770996 + ], + [ + "▁Whi", + -12.3704252243042 + ], + [ + "▁Refer", + -12.370508193969727 + ], + [ + "▁Rou", + -12.370513916015625 + ], + [ + "▁farther", + -12.370514869689941 + ], + [ + "▁thrust", + -12.370519638061523 + ], + [ + "▁Gilbert", + -12.370665550231934 + ], + [ + "lva", + -12.37074089050293 + ], + [ + "▁Wiki", + -12.37083625793457 + ], + [ + "▁mentioning", + -12.371026992797852 + ], + [ + "те", + -12.37105655670166 + ], + [ + "Gra", + -12.371070861816406 + ], + [ + "-100", + -12.371113777160645 + ], + [ + "mist", + -12.371152877807617 + ], + [ + "▁Roller", + -12.371591567993164 + ], + [ + "Even", + -12.371594429016113 + ], + [ + "▁Attack", + -12.371648788452148 + ], + [ + "carbon", + -12.371675491333008 + ], + [ + "▁mortar", + -12.371681213378906 + ], + [ + "▁spells", + -12.371826171875 + ], + [ + "formed", + -12.371833801269531 + ], + [ + "▁taxation", + -12.371866226196289 + ], + [ + "▁Ark", + -12.37191104888916 + ], + [ + "dip", + -12.371916770935059 + ], + [ + "▁expiration", + -12.371929168701172 + ], + [ + "PCR", + -12.372086524963379 + ], + [ + "▁sym", + -12.372166633605957 + ], + [ + "▁dorm", + -12.372170448303223 + ], + [ + "▁antibody", + -12.372200965881348 + ], + [ + "▁garments", + -12.372200965881348 + ], + [ + "zine", + -12.372213363647461 + ], + [ + "▁repetitive", + -12.372215270996094 + ], + [ + "▁Gala", + -12.372318267822266 + ], + [ + "▁cookbook", + -12.372466087341309 + ], + [ + "▁Artificial", + -12.372502326965332 + ], + [ + "CES", + -12.372507095336914 + ], + [ + "▁Frost", + -12.372550010681152 + ], + [ + "spanning", + -12.372594833374023 + ], + [ + "Inter", + -12.372637748718262 + ], + [ + "▁Dayton", + -12.372672080993652 + ], + [ + "video", + -12.372735977172852 + ], + [ + "▁informational", + -12.37279987335205 + ], + [ + "▁mourn", + -12.37288761138916 + ], + [ + "▁Lor", + -12.372997283935547 + ], + [ + "expressly", + -12.373018264770508 + ], + [ + "▁bidding", + -12.373085975646973 + ], + [ + "▁Norfolk", + -12.373180389404297 + ], + [ + "·", + -12.373214721679688 + ], + [ + "▁Writers", + -12.37327766418457 + ], + [ + "idge", + -12.373357772827148 + ], + [ + "▁lavender", + -12.373747825622559 + ], + [ + "vig", + -12.373825073242188 + ], + [ + "▁Toy", + -12.373854637145996 + ], + [ + "▁drawback", + -12.373945236206055 + ], + [ + "themed", + -12.374112129211426 + ], + [ + "▁eventual", + -12.374147415161133 + ], + [ + "▁conception", + -12.374211311340332 + ], + [ + "haft", + -12.374288558959961 + ], + [ + "▁Trim", + -12.374296188354492 + ], + [ + "▁Jur", + -12.374341011047363 + ], + [ + "moti", + -12.374488830566406 + ], + [ + "rule", + -12.37454605102539 + ], + [ + "▁tread", + -12.374635696411133 + ], + [ + "▁capsule", + -12.37481689453125 + ], + [ + "model", + -12.374833106994629 + ], + [ + "gul", + -12.374881744384766 + ], + [ + "▁beneficiaries", + -12.375085830688477 + ], + [ + "▁#4", + -12.375123023986816 + ], + [ + "▁Papa", + -12.37519359588623 + ], + [ + "elen", + -12.375199317932129 + ], + [ + "▁Instructor", + -12.375279426574707 + ], + [ + "▁certainty", + -12.375295639038086 + ], + [ + "valu", + -12.37531566619873 + ], + [ + "▁Scha", + -12.37562084197998 + ], + [ + "lining", + -12.375799179077148 + ], + [ + "▁Malta", + -12.375809669494629 + ], + [ + "▁Persian", + -12.375911712646484 + ], + [ + "▁trainee", + -12.376020431518555 + ], + [ + "▁insurer", + -12.376054763793945 + ], + [ + "Div", + -12.376080513000488 + ], + [ + "▁Cher", + -12.376110076904297 + ], + [ + "▁cigarette", + -12.376118659973145 + ], + [ + "▁Shake", + -12.376126289367676 + ], + [ + "▁upfront", + -12.376303672790527 + ], + [ + "▁postal", + -12.37658977508545 + ], + [ + "▁Smooth", + -12.376957893371582 + ], + [ + "▁controllers", + -12.37708854675293 + ], + [ + "▁antioxidants", + -12.377226829528809 + ], + [ + "▁regression", + -12.377418518066406 + ], + [ + "9,000", + -12.377449989318848 + ], + [ + "▁linguistic", + -12.377498626708984 + ], + [ + "series", + -12.377544403076172 + ], + [ + "index", + -12.377605438232422 + ], + [ + "▁graphical", + -12.37767505645752 + ], + [ + "▁CHA", + -12.377760887145996 + ], + [ + "▁empowered", + -12.377836227416992 + ], + [ + "▁Paw", + -12.377877235412598 + ], + [ + "▁racist", + -12.37788200378418 + ], + [ + "reminiscent", + -12.377971649169922 + ], + [ + "▁Durham", + -12.3780517578125 + ], + [ + "▁diary", + -12.378405570983887 + ], + [ + "approved", + -12.378472328186035 + ], + [ + "▁Angels", + -12.37852954864502 + ], + [ + "▁Rum", + -12.378551483154297 + ], + [ + "omas", + -12.378647804260254 + ], + [ + "▁(+", + -12.37867546081543 + ], + [ + "▁terminals", + -12.378692626953125 + ], + [ + "▁firefighter", + -12.3787841796875 + ], + [ + "Max", + -12.37891960144043 + ], + [ + "▁по", + -12.378995895385742 + ], + [ + "▁Engagement", + -12.379100799560547 + ], + [ + "▁dug", + -12.379297256469727 + ], + [ + "▁cavity", + -12.379303932189941 + ], + [ + "▁Vietnamese", + -12.379312515258789 + ], + [ + "▁carbs", + -12.379341125488281 + ], + [ + "▁230", + -12.379531860351562 + ], + [ + "util", + -12.379539489746094 + ], + [ + "160", + -12.379561424255371 + ], + [ + "▁newcomer", + -12.379581451416016 + ], + [ + "▁KO", + -12.379643440246582 + ], + [ + "▁mainland", + -12.379812240600586 + ], + [ + "▁criminals", + -12.380202293395996 + ], + [ + "▁outsourcing", + -12.38026237487793 + ], + [ + "mbre", + -12.38029670715332 + ], + [ + "▁mash", + -12.380414962768555 + ], + [ + "▁Hawaiian", + -12.380541801452637 + ], + [ + "IAN", + -12.380555152893066 + ], + [ + "FX", + -12.380691528320312 + ], + [ + "▁migrants", + -12.380743980407715 + ], + [ + "▁aperture", + -12.380804061889648 + ], + [ + "▁conversions", + -12.380918502807617 + ], + [ + "▁infringement", + -12.381096839904785 + ], + [ + "▁heck", + -12.381383895874023 + ], + [ + "▁faulty", + -12.381467819213867 + ], + [ + "wich", + -12.38155746459961 + ], + [ + "*****", + -12.381610870361328 + ], + [ + "Her", + -12.381712913513184 + ], + [ + "▁pores", + -12.381732940673828 + ], + [ + "▁Jewelry", + -12.381818771362305 + ], + [ + "▁screaming", + -12.381866455078125 + ], + [ + "▁Selling", + -12.381877899169922 + ], + [ + "▁uninstall", + -12.381891250610352 + ], + [ + "▁Mess", + -12.381928443908691 + ], + [ + "▁memo", + -12.381936073303223 + ], + [ + "▁Timothy", + -12.382105827331543 + ], + [ + "cab", + -12.382123947143555 + ], + [ + "Reg", + -12.382129669189453 + ], + [ + "Mobile", + -12.382309913635254 + ], + [ + "▁sil", + -12.38238525390625 + ], + [ + "▁pivot", + -12.382438659667969 + ], + [ + "▁Doll", + -12.382526397705078 + ], + [ + "bread", + -12.382533073425293 + ], + [ + "▁Vanity", + -12.382637977600098 + ], + [ + "priced", + -12.383003234863281 + ], + [ + "▁perceptions", + -12.383024215698242 + ], + [ + "▁Latino", + -12.383057594299316 + ], + [ + "▁temptation", + -12.383095741271973 + ], + [ + "▁harbour", + -12.383119583129883 + ], + [ + "▁antioxidant", + -12.383265495300293 + ], + [ + "▁Files", + -12.38337230682373 + ], + [ + "▁favourites", + -12.383427619934082 + ], + [ + "▁pineapple", + -12.3836030960083 + ], + [ + "▁Alexa", + -12.383613586425781 + ], + [ + "▁Eating", + -12.383692741394043 + ], + [ + "Great", + -12.38376235961914 + ], + [ + "▁infrared", + -12.383795738220215 + ], + [ + "▁verdict", + -12.383878707885742 + ], + [ + "▁Sullivan", + -12.38392448425293 + ], + [ + "▁Issues", + -12.38408088684082 + ], + [ + "▁Nicola", + -12.384121894836426 + ], + [ + "▁sedan", + -12.384148597717285 + ], + [ + "▁discoveries", + -12.384207725524902 + ], + [ + "▁emergence", + -12.384231567382812 + ], + [ + "▁copying", + -12.38428020477295 + ], + [ + "▁(2015)", + -12.384387016296387 + ], + [ + "▁newsletters", + -12.384622573852539 + ], + [ + "hopper", + -12.384686470031738 + ], + [ + "▁plantation", + -12.384737014770508 + ], + [ + "ür", + -12.384780883789062 + ], + [ + "▁Troy", + -12.384936332702637 + ], + [ + "▁Known", + -12.385138511657715 + ], + [ + "▁£5", + -12.385194778442383 + ], + [ + "Red", + -12.385296821594238 + ], + [ + "▁Rosen", + -12.385330200195312 + ], + [ + "▁unload", + -12.385360717773438 + ], + [ + "▁repeating", + -12.38546371459961 + ], + [ + "▁listener", + -12.385526657104492 + ], + [ + "▁Sister", + -12.38556957244873 + ], + [ + "▁Tara", + -12.385613441467285 + ], + [ + "iku", + -12.385626792907715 + ], + [ + "gur", + -12.385647773742676 + ], + [ + "▁Bottle", + -12.385658264160156 + ], + [ + "▁accelerated", + -12.385836601257324 + ], + [ + "gain", + -12.386065483093262 + ], + [ + "▁glazed", + -12.386120796203613 + ], + [ + "rber", + -12.386171340942383 + ], + [ + "ALS", + -12.386200904846191 + ], + [ + "▁Monica", + -12.386259078979492 + ], + [ + "Make", + -12.386265754699707 + ], + [ + "▁conceived", + -12.386272430419922 + ], + [ + "▁6:00", + -12.386321067810059 + ], + [ + "▁Deluxe", + -12.386458396911621 + ], + [ + "▁Dynamics", + -12.386490821838379 + ], + [ + "▁pumping", + -12.386491775512695 + ], + [ + "▁fictional", + -12.386548042297363 + ], + [ + "mbi", + -12.386550903320312 + ], + [ + "▁Trainer", + -12.386579513549805 + ], + [ + "▁Ethics", + -12.386749267578125 + ], + [ + "▁evaluations", + -12.386885643005371 + ], + [ + "▁Pharmaceutical", + -12.386991500854492 + ], + [ + "▁Seg", + -12.387029647827148 + ], + [ + "375", + -12.387077331542969 + ], + [ + "für", + -12.387142181396484 + ], + [ + "▁ETF", + -12.387249946594238 + ], + [ + "▁solicitor", + -12.387282371520996 + ], + [ + "large", + -12.387351036071777 + ], + [ + "▁solder", + -12.387369155883789 + ], + [ + "▁smash", + -12.3873872756958 + ], + [ + "After", + -12.38742733001709 + ], + [ + "▁shoots", + -12.387589454650879 + ], + [ + "▁Basin", + -12.387735366821289 + ], + [ + "garde", + -12.387794494628906 + ], + [ + "▁Investors", + -12.387798309326172 + ], + [ + "▁Everybody", + -12.387825965881348 + ], + [ + "▁Scroll", + -12.387919425964355 + ], + [ + "▁versa", + -12.387961387634277 + ], + [ + "▁idol", + -12.387984275817871 + ], + [ + "▁Jacket", + -12.388032913208008 + ], + [ + "▁juices", + -12.388077735900879 + ], + [ + "6.0", + -12.388147354125977 + ], + [ + "Ste", + -12.388162612915039 + ], + [ + "7.5", + -12.388166427612305 + ], + [ + "igne", + -12.388328552246094 + ], + [ + "▁promoter", + -12.38833999633789 + ], + [ + "▁presenter", + -12.388343811035156 + ], + [ + "▁Epic", + -12.388384819030762 + ], + [ + "▁preparations", + -12.388500213623047 + ], + [ + "▁woodland", + -12.388510704040527 + ], + [ + "San", + -12.388585090637207 + ], + [ + "▁pear", + -12.388591766357422 + ], + [ + "litis", + -12.388705253601074 + ], + [ + "▁mattresses", + -12.388784408569336 + ], + [ + "ORE", + -12.388815879821777 + ], + [ + "YO", + -12.389031410217285 + ], + [ + "▁dependence", + -12.38919448852539 + ], + [ + "▁semiconductor", + -12.3892240524292 + ], + [ + "▁thou", + -12.389293670654297 + ], + [ + "▁deposited", + -12.389317512512207 + ], + [ + "4.4", + -12.38943099975586 + ], + [ + "▁Evolution", + -12.38945484161377 + ], + [ + "factor", + -12.38950252532959 + ], + [ + "▁malt", + -12.389679908752441 + ], + [ + "▁Speak", + -12.389698028564453 + ], + [ + "▁Wan", + -12.38973617553711 + ], + [ + "▁youngsters", + -12.38976001739502 + ], + [ + "▁republic", + -12.389779090881348 + ], + [ + "▁philosopher", + -12.38980770111084 + ], + [ + "Of", + -12.390143394470215 + ], + [ + "remarkably", + -12.39018726348877 + ], + [ + "▁Boulevard", + -12.39024543762207 + ], + [ + "cry", + -12.390271186828613 + ], + [ + "▁Plumbing", + -12.390498161315918 + ], + [ + "zip", + -12.390507698059082 + ], + [ + "functional", + -12.390525817871094 + ], + [ + "▁Dial", + -12.390586853027344 + ], + [ + "▁racks", + -12.390691757202148 + ], + [ + "117", + -12.390847206115723 + ], + [ + "▁Ubuntu", + -12.390877723693848 + ], + [ + "▁reliance", + -12.390877723693848 + ], + [ + "▁Already", + -12.390966415405273 + ], + [ + "▁PlayStation", + -12.391023635864258 + ], + [ + "▁collage", + -12.391035079956055 + ], + [ + "INS", + -12.391039848327637 + ], + [ + "▁Henderson", + -12.391120910644531 + ], + [ + "▁Across", + -12.391324043273926 + ], + [ + "▁parental", + -12.391337394714355 + ], + [ + "▁Debt", + -12.391365051269531 + ], + [ + "▁Sprint", + -12.391427993774414 + ], + [ + "Mod", + -12.391522407531738 + ], + [ + "shift", + -12.39167594909668 + ], + [ + "-80", + -12.391690254211426 + ], + [ + "▁SAN", + -12.391733169555664 + ], + [ + "▁Windsor", + -12.391746520996094 + ], + [ + "-90", + -12.391790390014648 + ], + [ + "First", + -12.391824722290039 + ], + [ + "owski", + -12.392036437988281 + ], + [ + "▁Volvo", + -12.392366409301758 + ], + [ + "aber", + -12.392416000366211 + ], + [ + "▁Charm", + -12.39246940612793 + ], + [ + "SOL", + -12.392535209655762 + ], + [ + "▁HTC", + -12.392559051513672 + ], + [ + "▁bombing", + -12.392624855041504 + ], + [ + "▁3%", + -12.392629623413086 + ], + [ + "▁privileges", + -12.39264965057373 + ], + [ + "risti", + -12.392728805541992 + ], + [ + "▁sounding", + -12.392762184143066 + ], + [ + "▁Erin", + -12.392791748046875 + ], + [ + "▁plush", + -12.392816543579102 + ], + [ + "▁Noble", + -12.392926216125488 + ], + [ + "lung", + -12.392938613891602 + ], + [ + "DIA", + -12.39302921295166 + ], + [ + "▁Sharing", + -12.393050193786621 + ], + [ + "▁mutations", + -12.393160820007324 + ], + [ + "▁iteration", + -12.39324951171875 + ], + [ + "▁Gym", + -12.39326286315918 + ], + [ + "lose", + -12.393354415893555 + ], + [ + "▁Fusion", + -12.39338493347168 + ], + [ + "▁Sak", + -12.393441200256348 + ], + [ + "▁Quotes", + -12.393451690673828 + ], + [ + "▁nutritious", + -12.393509864807129 + ], + [ + "lbs", + -12.393592834472656 + ], + [ + "conscious", + -12.393623352050781 + ], + [ + "▁teammates", + -12.393802642822266 + ], + [ + "▁chunk", + -12.393837928771973 + ], + [ + "▁bonded", + -12.393844604492188 + ], + [ + "▁Lean", + -12.393854141235352 + ], + [ + "▁rugby", + -12.393889427185059 + ], + [ + "Ideally", + -12.393890380859375 + ], + [ + "EMA", + -12.393941879272461 + ], + [ + "▁nausea", + -12.393951416015625 + ], + [ + "▁neurons", + -12.394013404846191 + ], + [ + "▁Westminster", + -12.394144058227539 + ], + [ + "▁elevate", + -12.394219398498535 + ], + [ + "▁Buzz", + -12.394482612609863 + ], + [ + "▁Pokemon", + -12.394735336303711 + ], + [ + "▁(2014)", + -12.39504337310791 + ], + [ + "▁weeds", + -12.395076751708984 + ], + [ + "▁Reality", + -12.395108222961426 + ], + [ + "▁traveler", + -12.395112037658691 + ], + [ + "▁enamel", + -12.39511489868164 + ], + [ + "▁slash", + -12.395151138305664 + ], + [ + "▁Spice", + -12.395272254943848 + ], + [ + "▁Commander", + -12.395403861999512 + ], + [ + "illian", + -12.395618438720703 + ], + [ + "▁Chal", + -12.39562702178955 + ], + [ + "▁Lawn", + -12.395719528198242 + ], + [ + "▁Poetry", + -12.395735740661621 + ], + [ + "luc", + -12.395798683166504 + ], + [ + "arro", + -12.395963668823242 + ], + [ + "▁cheerful", + -12.395973205566406 + ], + [ + "▁strawberry", + -12.396021842956543 + ], + [ + "UNI", + -12.396023750305176 + ], + [ + "▁Rank", + -12.39630126953125 + ], + [ + "▁(2012)", + -12.396357536315918 + ], + [ + "▁resides", + -12.396451950073242 + ], + [ + "▁biography", + -12.396590232849121 + ], + [ + "▁Zhang", + -12.396699905395508 + ], + [ + "loop", + -12.396797180175781 + ], + [ + "▁northwest", + -12.396830558776855 + ], + [ + "▁1/3", + -12.396950721740723 + ], + [ + "List", + -12.397232055664062 + ], + [ + "▁Hearing", + -12.397249221801758 + ], + [ + "▁tack", + -12.397334098815918 + ], + [ + "▁flake", + -12.397482872009277 + ], + [ + "▁maritime", + -12.397722244262695 + ], + [ + "▁Cran", + -12.397911071777344 + ], + [ + "▁sul", + -12.397920608520508 + ], + [ + "refundable", + -12.397934913635254 + ], + [ + "▁handbag", + -12.398022651672363 + ], + [ + "project", + -12.398041725158691 + ], + [ + "▁TIP", + -12.398041725158691 + ], + [ + "▁sip", + -12.398115158081055 + ], + [ + "LINE", + -12.398148536682129 + ], + [ + "▁enthusiast", + -12.398247718811035 + ], + [ + "depicted", + -12.398258209228516 + ], + [ + "cism", + -12.398308753967285 + ], + [ + "patch", + -12.398394584655762 + ], + [ + "▁mushroom", + -12.398477554321289 + ], + [ + "▁AMD", + -12.398524284362793 + ], + [ + "esque", + -12.39858341217041 + ], + [ + "▁Emp", + -12.398602485656738 + ], + [ + "▁sediment", + -12.398612022399902 + ], + [ + "▁Harvest", + -12.39866828918457 + ], + [ + "▁Relax", + -12.398809432983398 + ], + [ + "▁complained", + -12.398881912231445 + ], + [ + "▁populated", + -12.399065017700195 + ], + [ + "▁Units", + -12.399251937866211 + ], + [ + "▁Till", + -12.399395942687988 + ], + [ + "▁scaling", + -12.399848937988281 + ], + [ + "-70", + -12.399866104125977 + ], + [ + "▁Brett", + -12.399920463562012 + ], + [ + "▁Garcia", + -12.399941444396973 + ], + [ + "consuming", + -12.400010108947754 + ], + [ + "▁cracking", + -12.40011978149414 + ], + [ + "uffle", + -12.400128364562988 + ], + [ + "▁cultivate", + -12.400160789489746 + ], + [ + "▁filmed", + -12.400216102600098 + ], + [ + "▁Derek", + -12.400291442871094 + ], + [ + "▁Rates", + -12.400314331054688 + ], + [ + "▁Businesses", + -12.400445938110352 + ], + [ + "▁Powell", + -12.400566101074219 + ], + [ + "▁testimonials", + -12.400578498840332 + ], + [ + "WM", + -12.40068531036377 + ], + [ + "Power", + -12.4007568359375 + ], + [ + "▁coping", + -12.400775909423828 + ], + [ + "▁WIN", + -12.400788307189941 + ], + [ + "▁Essex", + -12.400798797607422 + ], + [ + "▁expire", + -12.40085220336914 + ], + [ + "▁Jer", + -12.400912284851074 + ], + [ + "▁unleash", + -12.401004791259766 + ], + [ + "▁Randy", + -12.401021957397461 + ], + [ + "bir", + -12.401122093200684 + ], + [ + "▁accustomed", + -12.401151657104492 + ], + [ + "▁Rebel", + -12.401226043701172 + ], + [ + "▁Vacation", + -12.401238441467285 + ], + [ + "zza", + -12.401284217834473 + ], + [ + "alone", + -12.401344299316406 + ], + [ + "▁mixes", + -12.401388168334961 + ], + [ + "▁Compact", + -12.401446342468262 + ], + [ + "▁Gregory", + -12.401449203491211 + ], + [ + "Pass", + -12.401494026184082 + ], + [ + "▁digestion", + -12.401504516601562 + ], + [ + "▁throne", + -12.401610374450684 + ], + [ + "▁aspiring", + -12.401650428771973 + ], + [ + "▁computational", + -12.401895523071289 + ], + [ + "▁Kro", + -12.401991844177246 + ], + [ + "▁canoe", + -12.402050971984863 + ], + [ + "asia", + -12.402090072631836 + ], + [ + "▁sunrise", + -12.402199745178223 + ], + [ + "▁recruiter", + -12.402202606201172 + ], + [ + "rach", + -12.402227401733398 + ], + [ + "AZ", + -12.402233123779297 + ], + [ + "▁eighteen", + -12.40274715423584 + ], + [ + "▁Speech", + -12.40275764465332 + ], + [ + "▁Pierre", + -12.402788162231445 + ], + [ + "▁Wallace", + -12.402815818786621 + ], + [ + "▁Flying", + -12.40302562713623 + ], + [ + "▁joyful", + -12.403155326843262 + ], + [ + "News", + -12.403176307678223 + ], + [ + "itive", + -12.403189659118652 + ], + [ + "pea", + -12.403258323669434 + ], + [ + "▁volatile", + -12.403319358825684 + ], + [ + "confronted", + -12.403326988220215 + ], + [ + "dust", + -12.403528213500977 + ], + [ + "▁Wake", + -12.403552055358887 + ], + [ + "stumbled", + -12.40372371673584 + ], + [ + "2,500", + -12.403761863708496 + ], + [ + "DW", + -12.40378189086914 + ], + [ + "sig", + -12.40393352508545 + ], + [ + "▁exchanged", + -12.40410327911377 + ], + [ + "commercial", + -12.404184341430664 + ], + [ + "rada", + -12.404342651367188 + ], + [ + "▁usable", + -12.404438972473145 + ], + [ + "▁Dai", + -12.404523849487305 + ], + [ + "▁handset", + -12.40457534790039 + ], + [ + "▁potassium", + -12.404600143432617 + ], + [ + "deb", + -12.404606819152832 + ], + [ + "rome", + -12.404668807983398 + ], + [ + "▁hu", + -12.404776573181152 + ], + [ + "▁Armstrong", + -12.40485954284668 + ], + [ + "ifiable", + -12.404915809631348 + ], + [ + "▁Profit", + -12.404915809631348 + ], + [ + "▁Topic", + -12.404932022094727 + ], + [ + "▁spectator", + -12.405095100402832 + ], + [ + "wine", + -12.405242919921875 + ], + [ + "▁wandering", + -12.405498504638672 + ], + [ + "▁Understand", + -12.405567169189453 + ], + [ + "▁quirky", + -12.405610084533691 + ], + [ + "▁traumatic", + -12.405630111694336 + ], + [ + "▁northeast", + -12.405838966369629 + ], + [ + "▁booster", + -12.40588092803955 + ], + [ + "diff", + -12.405890464782715 + ], + [ + "▁skincare", + -12.405895233154297 + ], + [ + "true", + -12.406155586242676 + ], + [ + "etc", + -12.406187057495117 + ], + [ + "▁Liu", + -12.406232833862305 + ], + [ + "▁ounces", + -12.406277656555176 + ], + [ + "▁Mira", + -12.406281471252441 + ], + [ + "▁escaped", + -12.406376838684082 + ], + [ + "▁pursued", + -12.406397819519043 + ], + [ + "opathy", + -12.406423568725586 + ], + [ + "ICA", + -12.406451225280762 + ], + [ + "▁burgers", + -12.40652847290039 + ], + [ + "OVE", + -12.406622886657715 + ], + [ + "▁meanwhile", + -12.406774520874023 + ], + [ + "▁deaf", + -12.406829833984375 + ], + [ + "▁summarize", + -12.406956672668457 + ], + [ + "▁certifications", + -12.407155990600586 + ], + [ + "▁staring", + -12.407336235046387 + ], + [ + "▁academy", + -12.407515525817871 + ], + [ + "▁vicinity", + -12.407565116882324 + ], + [ + "▁Monroe", + -12.407614707946777 + ], + [ + "osity", + -12.40774917602539 + ], + [ + "▁Quilt", + -12.407867431640625 + ], + [ + "centered", + -12.40795612335205 + ], + [ + "▁Café", + -12.408011436462402 + ], + [ + "WAR", + -12.40805435180664 + ], + [ + "▁scrutiny", + -12.408308029174805 + ], + [ + "▁Cabinets", + -12.408315658569336 + ], + [ + "▁compositions", + -12.408388137817383 + ], + [ + "▁Maxim", + -12.408799171447754 + ], + [ + "▁Computing", + -12.408853530883789 + ], + [ + "▁Operator", + -12.408981323242188 + ], + [ + "▁undermine", + -12.408997535705566 + ], + [ + "▁Sai", + -12.409082412719727 + ], + [ + "▁Slow", + -12.409265518188477 + ], + [ + "5.6", + -12.409290313720703 + ], + [ + "jor", + -12.40938949584961 + ], + [ + "▁violin", + -12.40961742401123 + ], + [ + "▁cigarettes", + -12.409642219543457 + ], + [ + "price", + -12.409807205200195 + ], + [ + "▁despair", + -12.410043716430664 + ], + [ + "▁staffing", + -12.41024398803711 + ], + [ + "▁Apache", + -12.410282135009766 + ], + [ + "▁Aurora", + -12.410591125488281 + ], + [ + "▁Rip", + -12.410612106323242 + ], + [ + "▁Ng", + -12.410774230957031 + ], + [ + "DOT", + -12.41093635559082 + ], + [ + "developed", + -12.41094970703125 + ], + [ + "ously", + -12.410962104797363 + ], + [ + "▁electoral", + -12.411006927490234 + ], + [ + "support", + -12.41114616394043 + ], + [ + "endorsed", + -12.411340713500977 + ], + [ + "build", + -12.411478042602539 + ], + [ + "luck", + -12.41161823272705 + ], + [ + "▁Bears", + -12.411674499511719 + ], + [ + "▁packets", + -12.411684036254883 + ], + [ + "▁Bark", + -12.411791801452637 + ], + [ + "▁forensic", + -12.411974906921387 + ], + [ + "▁Cowboy", + -12.411993026733398 + ], + [ + "equate", + -12.41201114654541 + ], + [ + "▁ART", + -12.412141799926758 + ], + [ + "▁Lay", + -12.412223815917969 + ], + [ + "▁Translation", + -12.4122314453125 + ], + [ + "▁metropolitan", + -12.412281036376953 + ], + [ + "▁Associated", + -12.412332534790039 + ], + [ + "▁buckle", + -12.412415504455566 + ], + [ + "▁Height", + -12.41248893737793 + ], + [ + "▁Doctors", + -12.412540435791016 + ], + [ + "kim", + -12.41259765625 + ], + [ + "▁Kerry", + -12.412622451782227 + ], + [ + "packed", + -12.412717819213867 + ], + [ + "▁gradient", + -12.412924766540527 + ], + [ + "Archived", + -12.413000106811523 + ], + [ + "TIM", + -12.413002967834473 + ], + [ + "▁mindfulness", + -12.413068771362305 + ], + [ + "▁shareholder", + -12.413116455078125 + ], + [ + "LAS", + -12.41317081451416 + ], + [ + "ussi", + -12.413180351257324 + ], + [ + "grand", + -12.413349151611328 + ], + [ + "▁communal", + -12.413397789001465 + ], + [ + "▁planners", + -12.413432121276855 + ], + [ + "▁outright", + -12.413471221923828 + ], + [ + "▁Gibson", + -12.413473129272461 + ], + [ + "▁succession", + -12.413631439208984 + ], + [ + "▁deviation", + -12.413773536682129 + ], + [ + "ectomy", + -12.413823127746582 + ], + [ + "▁sam", + -12.413865089416504 + ], + [ + "▁insightful", + -12.413975715637207 + ], + [ + "Sea", + -12.414009094238281 + ], + [ + "plug", + -12.414207458496094 + ], + [ + "▁hamper", + -12.414310455322266 + ], + [ + "▁Awareness", + -12.414320945739746 + ], + [ + "▁Jill", + -12.41440486907959 + ], + [ + "▁detention", + -12.41440486907959 + ], + [ + "▁burnt", + -12.41447639465332 + ], + [ + "▁6.5", + -12.41447925567627 + ], + [ + "▁Comprehensive", + -12.414668083190918 + ], + [ + "BY", + -12.414681434631348 + ], + [ + "Share", + -12.41469669342041 + ], + [ + "▁Wendy", + -12.414767265319824 + ], + [ + "Back", + -12.414892196655273 + ], + [ + "▁thriller", + -12.41489315032959 + ], + [ + "4.3", + -12.414899826049805 + ], + [ + "60,000", + -12.41500473022461 + ], + [ + "ution", + -12.415079116821289 + ], + [ + "▁Thermo", + -12.415294647216797 + ], + [ + "▁Apollo", + -12.415316581726074 + ], + [ + "▁Sheffield", + -12.41536808013916 + ], + [ + "hala", + -12.415473937988281 + ], + [ + "▁(2011)", + -12.41551399230957 + ], + [ + "▁Restoration", + -12.415565490722656 + ], + [ + "▁augment", + -12.415609359741211 + ], + [ + "▁Friendly", + -12.415645599365234 + ], + [ + "▁renovations", + -12.415650367736816 + ], + [ + "▁fluids", + -12.41569709777832 + ], + [ + "▁Princeton", + -12.415724754333496 + ], + [ + "lium", + -12.415809631347656 + ], + [ + "▁knives", + -12.415815353393555 + ], + [ + "▁unchanged", + -12.415865898132324 + ], + [ + "▁Hosting", + -12.416040420532227 + ], + [ + "▁stools", + -12.41604995727539 + ], + [ + "▁Pharmacy", + -12.416126251220703 + ], + [ + "▁Wheat", + -12.41620922088623 + ], + [ + "▁Stefan", + -12.416237831115723 + ], + [ + "oids", + -12.416348457336426 + ], + [ + "▁cellar", + -12.416367530822754 + ], + [ + "▁Sno", + -12.416388511657715 + ], + [ + "▁molding", + -12.416397094726562 + ], + [ + "1,000", + -12.41640853881836 + ], + [ + "▁borrowed", + -12.416770935058594 + ], + [ + "▁connectors", + -12.416823387145996 + ], + [ + "130", + -12.416894912719727 + ], + [ + "▁chimney", + -12.416913986206055 + ], + [ + "▁Morocco", + -12.416927337646484 + ], + [ + "▁Chairs", + -12.417041778564453 + ], + [ + "▁daytime", + -12.417081832885742 + ], + [ + "5-7", + -12.417144775390625 + ], + [ + "ENG", + -12.41718864440918 + ], + [ + "▁stresses", + -12.41733169555664 + ], + [ + "▁reversed", + -12.417344093322754 + ], + [ + "▁Clock", + -12.417351722717285 + ], + [ + "▁Parties", + -12.417362213134766 + ], + [ + "▁0.3", + -12.417364120483398 + ], + [ + "▁fled", + -12.417447090148926 + ], + [ + "▁Inch", + -12.417548179626465 + ], + [ + "▁tuna", + -12.417583465576172 + ], + [ + "loved", + -12.417652130126953 + ], + [ + "▁alcoholic", + -12.417828559875488 + ], + [ + "▁plots", + -12.418319702148438 + ], + [ + "▁unsuccessful", + -12.418414115905762 + ], + [ + "▁Flip", + -12.418463706970215 + ], + [ + "nbsp", + -12.41858196258545 + ], + [ + "2.9", + -12.418811798095703 + ], + [ + "▁Pod", + -12.418940544128418 + ], + [ + "iche", + -12.418953895568848 + ], + [ + "▁settlements", + -12.418998718261719 + ], + [ + "▁Marriage", + -12.419164657592773 + ], + [ + "▁someday", + -12.41919994354248 + ], + [ + "▁immunity", + -12.419214248657227 + ], + [ + "▁Contractor", + -12.419266700744629 + ], + [ + "▁graft", + -12.419408798217773 + ], + [ + "▁concludes", + -12.41943645477295 + ], + [ + "▁suburban", + -12.419503211975098 + ], + [ + "▁presumably", + -12.419522285461426 + ], + [ + "▁shingle", + -12.419530868530273 + ], + [ + "▁Couple", + -12.419622421264648 + ], + [ + "▁bishop", + -12.419759750366211 + ], + [ + "▁Meal", + -12.419854164123535 + ], + [ + "▁Pride", + -12.419990539550781 + ], + [ + "▁Skip", + -12.42020320892334 + ], + [ + "▁entirety", + -12.420204162597656 + ], + [ + "▁contracting", + -12.420258522033691 + ], + [ + "Ros", + -12.420387268066406 + ], + [ + "▁Petr", + -12.420416831970215 + ], + [ + "▁seekers", + -12.420581817626953 + ], + [ + "▁witch", + -12.420588493347168 + ], + [ + "avour", + -12.420655250549316 + ], + [ + "▁scratches", + -12.42067813873291 + ], + [ + "admin", + -12.420703887939453 + ], + [ + "▁Include", + -12.420796394348145 + ], + [ + "record", + -12.4208345413208 + ], + [ + "▁pane", + -12.420918464660645 + ], + [ + "VAL", + -12.421075820922852 + ], + [ + "▁Salmon", + -12.421103477478027 + ], + [ + "Medic", + -12.421162605285645 + ], + [ + "▁Sally", + -12.421181678771973 + ], + [ + "▁Merry", + -12.421351432800293 + ], + [ + "▁Shepherd", + -12.421470642089844 + ], + [ + "▁GMT", + -12.421530723571777 + ], + [ + "▁stubborn", + -12.421587944030762 + ], + [ + "▁Articles", + -12.421648979187012 + ], + [ + "listed", + -12.421652793884277 + ], + [ + "▁equations", + -12.421773910522461 + ], + [ + "▁Breast", + -12.421853065490723 + ], + [ + "▁lotion", + -12.421859741210938 + ], + [ + "▁Grim", + -12.421982765197754 + ], + [ + "450", + -12.422026634216309 + ], + [ + "▁Rare", + -12.422038078308105 + ], + [ + "Uploaded", + -12.422290802001953 + ], + [ + "▁cabbage", + -12.422432899475098 + ], + [ + "▁briefing", + -12.422433853149414 + ], + [ + "▁Unity", + -12.42250919342041 + ], + [ + "again", + -12.422638893127441 + ], + [ + "▁furnish", + -12.422760009765625 + ], + [ + "▁cooled", + -12.422783851623535 + ], + [ + "▁Sudan", + -12.422961235046387 + ], + [ + "Uni", + -12.423077583312988 + ], + [ + "▁lifts", + -12.423237800598145 + ], + [ + "follow", + -12.423384666442871 + ], + [ + "▁twisted", + -12.4233980178833 + ], + [ + "hub", + -12.4234037399292 + ], + [ + "ishing", + -12.423492431640625 + ], + [ + "usse", + -12.423600196838379 + ], + [ + "▁monument", + -12.423639297485352 + ], + [ + "▁rails", + -12.423639297485352 + ], + [ + "▁telecom", + -12.423662185668945 + ], + [ + "▁Demand", + -12.423763275146484 + ], + [ + "▁Gifts", + -12.423785209655762 + ], + [ + "▁mantra", + -12.423788070678711 + ], + [ + "▁wit", + -12.423826217651367 + ], + [ + "▁feather", + -12.423870086669922 + ], + [ + "▁claw", + -12.423872947692871 + ], + [ + "▁Presentation", + -12.4238920211792 + ], + [ + "▁veg", + -12.424060821533203 + ], + [ + "stow", + -12.424070358276367 + ], + [ + "▁curator", + -12.424139976501465 + ], + [ + "2.0", + -12.424333572387695 + ], + [ + "▁brewing", + -12.424489974975586 + ], + [ + "▁Rider", + -12.424641609191895 + ], + [ + "▁hated", + -12.424714088439941 + ], + [ + "▁commenting", + -12.42475700378418 + ], + [ + "▁inspires", + -12.42485523223877 + ], + [ + "▁Manor", + -12.424872398376465 + ], + [ + "▁redemption", + -12.424888610839844 + ], + [ + "▁caravan", + -12.424893379211426 + ], + [ + "ли", + -12.424909591674805 + ], + [ + "plasm", + -12.424920082092285 + ], + [ + "▁stitching", + -12.42506217956543 + ], + [ + "!!!!!", + -12.425216674804688 + ], + [ + "EY", + -12.425233840942383 + ], + [ + "▁Tie", + -12.425372123718262 + ], + [ + "▁traps", + -12.425540924072266 + ], + [ + "▁Damage", + -12.42554759979248 + ], + [ + "▁staging", + -12.425559997558594 + ], + [ + "▁reels", + -12.425647735595703 + ], + [ + "▁Megan", + -12.425690650939941 + ], + [ + "reach", + -12.425749778747559 + ], + [ + "232", + -12.425762176513672 + ], + [ + "▁contaminated", + -12.426047325134277 + ], + [ + "▁selfish", + -12.426056861877441 + ], + [ + "▁overlay", + -12.426068305969238 + ], + [ + "▁Granite", + -12.426131248474121 + ], + [ + "▁Klein", + -12.426225662231445 + ], + [ + "▁Drivers", + -12.426322937011719 + ], + [ + "HG", + -12.426363945007324 + ], + [ + "▁Trace", + -12.426473617553711 + ], + [ + "kul", + -12.426636695861816 + ], + [ + "▁irrelevant", + -12.426652908325195 + ], + [ + "▁directive", + -12.426692008972168 + ], + [ + "won", + -12.4268159866333 + ], + [ + "▁kilo", + -12.426835060119629 + ], + [ + "▁deepest", + -12.426896095275879 + ], + [ + "▁methodologies", + -12.427059173583984 + ], + [ + "▁slept", + -12.42715835571289 + ], + [ + "▁inspected", + -12.427255630493164 + ], + [ + "▁terminated", + -12.427337646484375 + ], + [ + "▁invoices", + -12.427431106567383 + ], + [ + "▁deepen", + -12.42746353149414 + ], + [ + "▁signatures", + -12.427502632141113 + ], + [ + "epsi", + -12.427542686462402 + ], + [ + "professional", + -12.427613258361816 + ], + [ + "▁identities", + -12.42761516571045 + ], + [ + "chemistry", + -12.427790641784668 + ], + [ + "▁30,000", + -12.42785358428955 + ], + [ + "▁GET", + -12.427858352661133 + ], + [ + "▁Kos", + -12.427906036376953 + ], + [ + "▁Explain", + -12.42816162109375 + ], + [ + "▁distortion", + -12.428179740905762 + ], + [ + "▁gutters", + -12.42818546295166 + ], + [ + "▁1/2\"", + -12.428244590759277 + ], + [ + "▁Bour", + -12.428337097167969 + ], + [ + "▁stocked", + -12.428360939025879 + ], + [ + "▁programmed", + -12.42839241027832 + ], + [ + "▁stealing", + -12.428443908691406 + ], + [ + "▁majestic", + -12.428470611572266 + ], + [ + "▁Chronicle", + -12.428638458251953 + ], + [ + "▁chunks", + -12.428648948669434 + ], + [ + "▁Diabetes", + -12.428773880004883 + ], + [ + "▁CIA", + -12.428851127624512 + ], + [ + "▁poles", + -12.428871154785156 + ], + [ + "hack", + -12.42889404296875 + ], + [ + "▁Accept", + -12.428956031799316 + ], + [ + "Air", + -12.429051399230957 + ], + [ + "▁Leicester", + -12.429128646850586 + ], + [ + "▁Facility", + -12.429129600524902 + ], + [ + "▁striving", + -12.429179191589355 + ], + [ + "▁Carroll", + -12.429215431213379 + ], + [ + "▁Warning", + -12.429314613342285 + ], + [ + "▁Candy", + -12.429327011108398 + ], + [ + "▁souvenir", + -12.429431915283203 + ], + [ + "▁PCI", + -12.429691314697266 + ], + [ + "▁Jacobs", + -12.42978572845459 + ], + [ + "▁Crazy", + -12.429938316345215 + ], + [ + "▁1948", + -12.430012702941895 + ], + [ + "▁formatting", + -12.430194854736328 + ], + [ + "▁Bread", + -12.430350303649902 + ], + [ + "egan", + -12.43038558959961 + ], + [ + "▁contractual", + -12.430464744567871 + ], + [ + "▁Rand", + -12.430617332458496 + ], + [ + "▁Deals", + -12.430646896362305 + ], + [ + "▁erosion", + -12.430656433105469 + ], + [ + "▁carbohydrates", + -12.430843353271484 + ], + [ + "▁LAN", + -12.431163787841797 + ], + [ + "encompasses", + -12.431230545043945 + ], + [ + "▁5:30", + -12.431402206420898 + ], + [ + "▁(2016)", + -12.431404113769531 + ], + [ + "▁Conn", + -12.431404113769531 + ], + [ + "secure", + -12.431546211242676 + ], + [ + "401", + -12.43166732788086 + ], + [ + "▁Knights", + -12.431672096252441 + ], + [ + "▁youthful", + -12.431753158569336 + ], + [ + "▁harvested", + -12.431767463684082 + ], + [ + "▁Printing", + -12.43188762664795 + ], + [ + "▁Powered", + -12.431912422180176 + ], + [ + "▁Travis", + -12.431915283203125 + ], + [ + "▁Ferrari", + -12.431984901428223 + ], + [ + "People", + -12.432050704956055 + ], + [ + "▁puppies", + -12.432229042053223 + ], + [ + "▁deliberate", + -12.432278633117676 + ], + [ + "icon", + -12.43244743347168 + ], + [ + "rack", + -12.432452201843262 + ], + [ + "rena", + -12.432458877563477 + ], + [ + "▁Pill", + -12.432476997375488 + ], + [ + "▁permissions", + -12.432519912719727 + ], + [ + "between", + -12.432730674743652 + ], + [ + "▁Trader", + -12.432793617248535 + ], + [ + "awaiting", + -12.432823181152344 + ], + [ + "▁Palestine", + -12.43282699584961 + ], + [ + "▁Pole", + -12.4329195022583 + ], + [ + "▁specialised", + -12.432952880859375 + ], + [ + "▁dreaming", + -12.433161735534668 + ], + [ + "▁extracts", + -12.43330192565918 + ], + [ + "▁1959", + -12.433390617370605 + ], + [ + "MAP", + -12.43349552154541 + ], + [ + "bies", + -12.433602333068848 + ], + [ + "▁relentless", + -12.433690071105957 + ], + [ + "▁frankly", + -12.433767318725586 + ], + [ + "▁hunter", + -12.433816909790039 + ], + [ + "▁Rotary", + -12.43384075164795 + ], + [ + "▁sixteen", + -12.433979034423828 + ], + [ + "▁Amp", + -12.43402099609375 + ], + [ + "▁103", + -12.434096336364746 + ], + [ + "▁tents", + -12.434128761291504 + ], + [ + "▁Gad", + -12.434711456298828 + ], + [ + "▁unite", + -12.434748649597168 + ], + [ + "wak", + -12.434795379638672 + ], + [ + "▁Forbes", + -12.434832572937012 + ], + [ + "capped", + -12.434982299804688 + ], + [ + "▁broaden", + -12.43514633178711 + ], + [ + "▁saucepan", + -12.435198783874512 + ], + [ + "▁continental", + -12.435203552246094 + ], + [ + "▁Clarke", + -12.435234069824219 + ], + [ + "440", + -12.435403823852539 + ], + [ + "▁nuance", + -12.435473442077637 + ], + [ + "smart", + -12.435847282409668 + ], + [ + "▁unsafe", + -12.435860633850098 + ], + [ + "▁Examination", + -12.43587875366211 + ], + [ + "laz", + -12.435895919799805 + ], + [ + "partisan", + -12.435918807983398 + ], + [ + "▁Spy", + -12.435933113098145 + ], + [ + "▁crumb", + -12.435946464538574 + ], + [ + "▁telescope", + -12.435955047607422 + ], + [ + "▁surveyed", + -12.435978889465332 + ], + [ + "pyr", + -12.435997009277344 + ], + [ + "▁Purpose", + -12.436056137084961 + ], + [ + "▁sunscreen", + -12.436083793640137 + ], + [ + "NIC", + -12.436089515686035 + ], + [ + "emer", + -12.436219215393066 + ], + [ + "▁fundamentally", + -12.436271667480469 + ], + [ + "▁savvy", + -12.436355590820312 + ], + [ + "▁abdominal", + -12.436386108398438 + ], + [ + "need", + -12.43639850616455 + ], + [ + "▁overweight", + -12.43652057647705 + ], + [ + "▁Wooden", + -12.436594009399414 + ], + [ + "▁rude", + -12.436713218688965 + ], + [ + "▁UNESCO", + -12.43704891204834 + ], + [ + "▁establishments", + -12.437060356140137 + ], + [ + "▁turnaround", + -12.437118530273438 + ], + [ + "▁brushed", + -12.437244415283203 + ], + [ + "▁drones", + -12.437294006347656 + ], + [ + "▁Squ", + -12.437296867370605 + ], + [ + "notch", + -12.437429428100586 + ], + [ + "chal", + -12.437440872192383 + ], + [ + "▁rectangle", + -12.437559127807617 + ], + [ + "ographer", + -12.437638282775879 + ], + [ + "▁Healing", + -12.43774700164795 + ], + [ + "▁Lone", + -12.437771797180176 + ], + [ + "▁burglar", + -12.437854766845703 + ], + [ + "▁explorer", + -12.437911033630371 + ], + [ + "catching", + -12.437918663024902 + ], + [ + "erator", + -12.438004493713379 + ], + [ + "▁Dim", + -12.438131332397461 + ], + [ + "▁geek", + -12.438209533691406 + ], + [ + "▁Rom", + -12.438218116760254 + ], + [ + "▁IR", + -12.438223838806152 + ], + [ + "▁Regard", + -12.438271522521973 + ], + [ + "▁wicked", + -12.438383102416992 + ], + [ + "▁debates", + -12.438423156738281 + ], + [ + "▁supporter", + -12.438434600830078 + ], + [ + "▁reckon", + -12.43847942352295 + ], + [ + "April", + -12.438678741455078 + ], + [ + "▁popcorn", + -12.438879013061523 + ], + [ + "▁AJ", + -12.4389009475708 + ], + [ + "▁Won", + -12.438922882080078 + ], + [ + "ATS", + -12.439005851745605 + ], + [ + "KING", + -12.439030647277832 + ], + [ + "worn", + -12.439044952392578 + ], + [ + "etter", + -12.439128875732422 + ], + [ + "affi", + -12.439299583435059 + ], + [ + "▁Hale", + -12.439375877380371 + ], + [ + "noid", + -12.439448356628418 + ], + [ + "▁Remodel", + -12.439699172973633 + ], + [ + "▁excerpt", + -12.439702987670898 + ], + [ + "lil", + -12.439984321594238 + ], + [ + "▁Changing", + -12.44002914428711 + ], + [ + "▁Reuters", + -12.440255165100098 + ], + [ + "▁arbitrary", + -12.440317153930664 + ], + [ + "▁SITE", + -12.440350532531738 + ], + [ + "weep", + -12.440468788146973 + ], + [ + "Build", + -12.440637588500977 + ], + [ + "gist", + -12.440835952758789 + ], + [ + "▁perimeter", + -12.44088077545166 + ], + [ + "▁MW", + -12.44090461730957 + ], + [ + "▁endangered", + -12.440930366516113 + ], + [ + "▁evoke", + -12.440956115722656 + ], + [ + "▁repay", + -12.441104888916016 + ], + [ + "rek", + -12.441388130187988 + ], + [ + "▁Satellite", + -12.441390991210938 + ], + [ + "▁Lynch", + -12.44140625 + ], + [ + "▁idle", + -12.441516876220703 + ], + [ + "▁concurrent", + -12.44151782989502 + ], + [ + "▁milling", + -12.441591262817383 + ], + [ + "▁Reid", + -12.441706657409668 + ], + [ + "▁fertility", + -12.441851615905762 + ], + [ + "▁Transition", + -12.442066192626953 + ], + [ + "quel", + -12.442254066467285 + ], + [ + "▁Drake", + -12.442397117614746 + ], + [ + "▁jerseys", + -12.442495346069336 + ], + [ + "Compared", + -12.4425048828125 + ], + [ + "▁tumble", + -12.442631721496582 + ], + [ + "6.2", + -12.442794799804688 + ], + [ + "▁$11", + -12.443005561828613 + ], + [ + "▁ratios", + -12.443192481994629 + ], + [ + "▁perennial", + -12.443197250366211 + ], + [ + "▁Religion", + -12.443236351013184 + ], + [ + "▁unbelievable", + -12.443355560302734 + ], + [ + "ados", + -12.443361282348633 + ], + [ + "▁experimenting", + -12.443525314331055 + ], + [ + "▁Conf", + -12.443572044372559 + ], + [ + "gru", + -12.443581581115723 + ], + [ + "▁Holidays", + -12.443703651428223 + ], + [ + "▁Discuss", + -12.443748474121094 + ], + [ + "North", + -12.443798065185547 + ], + [ + "▁satin", + -12.44379997253418 + ], + [ + "▁omission", + -12.443800926208496 + ], + [ + "▁leaking", + -12.44394588470459 + ], + [ + "▁bloody", + -12.444113731384277 + ], + [ + "▁collaborating", + -12.44421100616455 + ], + [ + "▁fingertips", + -12.444211959838867 + ], + [ + "▁mansion", + -12.444268226623535 + ], + [ + "▁attachments", + -12.44428539276123 + ], + [ + "▁Funny", + -12.444331169128418 + ], + [ + "▁clicked", + -12.44433307647705 + ], + [ + "▁Initial", + -12.444364547729492 + ], + [ + "▁wetland", + -12.44450855255127 + ], + [ + "▁lawsuits", + -12.444544792175293 + ], + [ + "fusion", + -12.444586753845215 + ], + [ + "▁slipped", + -12.444624900817871 + ], + [ + "▁religions", + -12.444634437561035 + ], + [ + "▁impart", + -12.444665908813477 + ], + [ + "▁accord", + -12.444673538208008 + ], + [ + "▁multiply", + -12.44468879699707 + ], + [ + "▁poke", + -12.444721221923828 + ], + [ + "▁Depression", + -12.444841384887695 + ], + [ + "▁Transit", + -12.444916725158691 + ], + [ + "▁loosen", + -12.444951057434082 + ], + [ + "GEN", + -12.44495964050293 + ], + [ + "▁servants", + -12.444977760314941 + ], + [ + "▁stew", + -12.444981575012207 + ], + [ + "▁memoir", + -12.444995880126953 + ], + [ + "▁ambulance", + -12.445033073425293 + ], + [ + "East", + -12.445262908935547 + ], + [ + "anism", + -12.445323944091797 + ], + [ + "▁axe", + -12.445409774780273 + ], + [ + "▁suspects", + -12.445429801940918 + ], + [ + "▁Emirates", + -12.44580364227295 + ], + [ + "chief", + -12.445836067199707 + ], + [ + "▁residual", + -12.446009635925293 + ], + [ + "▁weekday", + -12.446017265319824 + ], + [ + "▁discs", + -12.44609546661377 + ], + [ + "phosphate", + -12.446187019348145 + ], + [ + "▁pharmacist", + -12.446267127990723 + ], + [ + "▁Lily", + -12.446296691894531 + ], + [ + "six", + -12.446319580078125 + ], + [ + "▁slogan", + -12.446322441101074 + ], + [ + "▁Istanbul", + -12.446369171142578 + ], + [ + "established", + -12.446395874023438 + ], + [ + "▁accidental", + -12.446491241455078 + ], + [ + "▁resignation", + -12.446574211120605 + ], + [ + "▁demolition", + -12.446626663208008 + ], + [ + "▁Concord", + -12.44668960571289 + ], + [ + "▁NF", + -12.446690559387207 + ], + [ + "▁Deliver", + -12.446742057800293 + ], + [ + "▁braces", + -12.44684886932373 + ], + [ + "▁contender", + -12.44686222076416 + ], + [ + "▁bothered", + -12.446884155273438 + ], + [ + "▁possesses", + -12.44709587097168 + ], + [ + "▁Convert", + -12.44711685180664 + ], + [ + "iously", + -12.447151184082031 + ], + [ + "▁Colors", + -12.447179794311523 + ], + [ + "▁Petro", + -12.447293281555176 + ], + [ + "▁Alumni", + -12.44771671295166 + ], + [ + "disc", + -12.447813034057617 + ], + [ + "▁synth", + -12.448005676269531 + ], + [ + "▁statewide", + -12.448029518127441 + ], + [ + "▁humour", + -12.448066711425781 + ], + [ + "▁Manage", + -12.448528289794922 + ], + [ + "▁probable", + -12.448539733886719 + ], + [ + "▁worksheet", + -12.448569297790527 + ], + [ + "▁platinum", + -12.448636054992676 + ], + [ + "▁slavery", + -12.448690414428711 + ], + [ + "▁REAL", + -12.448854446411133 + ], + [ + "▁Coral", + -12.448866844177246 + ], + [ + "▁Novel", + -12.44890308380127 + ], + [ + "▁guru", + -12.44898509979248 + ], + [ + "▁exporter", + -12.449013710021973 + ], + [ + "▁Shannon", + -12.449070930480957 + ], + [ + "▁riot", + -12.449084281921387 + ], + [ + "URE", + -12.449136734008789 + ], + [ + "▁Casey", + -12.449197769165039 + ], + [ + "tackling", + -12.44922924041748 + ], + [ + "TRO", + -12.449338912963867 + ], + [ + "▁Beast", + -12.449362754821777 + ], + [ + "Ru", + -12.449549674987793 + ], + [ + "▁Blair", + -12.449666023254395 + ], + [ + "▁JD", + -12.449666023254395 + ], + [ + "▁violated", + -12.44975471496582 + ], + [ + "▁hierarchy", + -12.4497709274292 + ], + [ + "▁Realtor", + -12.44990348815918 + ], + [ + "phor", + -12.449938774108887 + ], + [ + "▁lone", + -12.449958801269531 + ], + [ + "▁scalable", + -12.449995994567871 + ], + [ + "▁hover", + -12.450050354003906 + ], + [ + "1.2", + -12.450066566467285 + ], + [ + "▁Quote", + -12.450165748596191 + ], + [ + "caster", + -12.450177192687988 + ], + [ + "▁classy", + -12.450288772583008 + ], + [ + "▁hrs", + -12.450589179992676 + ], + [ + "▁ceremonies", + -12.45064926147461 + ], + [ + "EEN", + -12.450681686401367 + ], + [ + "why", + -12.450773239135742 + ], + [ + "▁Talking", + -12.45077896118164 + ], + [ + "▁comforter", + -12.450835227966309 + ], + [ + "▁Cit", + -12.450896263122559 + ], + [ + "▁campuses", + -12.45090389251709 + ], + [ + "▁drafting", + -12.451363563537598 + ], + [ + "▁Celebration", + -12.451373100280762 + ], + [ + "▁Apartments", + -12.451386451721191 + ], + [ + "▁flooded", + -12.45138931274414 + ], + [ + "▁YES", + -12.451495170593262 + ], + [ + "▁Smile", + -12.451537132263184 + ], + [ + "▁vow", + -12.451627731323242 + ], + [ + "▁ribs", + -12.451934814453125 + ], + [ + "▁Tanzania", + -12.451942443847656 + ], + [ + "▁merged", + -12.452083587646484 + ], + [ + "labor", + -12.4520845413208 + ], + [ + "▁Spe", + -12.452106475830078 + ], + [ + "stroke", + -12.452149391174316 + ], + [ + "▁passages", + -12.452408790588379 + ], + [ + "▁congestion", + -12.452497482299805 + ], + [ + "▁Random", + -12.452524185180664 + ], + [ + "▁banners", + -12.452542304992676 + ], + [ + "▁Strike", + -12.452607154846191 + ], + [ + "▁trout", + -12.45273208618164 + ], + [ + "▁singers", + -12.452752113342285 + ], + [ + "▁detergent", + -12.45279312133789 + ], + [ + "&#", + -12.452816009521484 + ], + [ + "▁Franco", + -12.452850341796875 + ], + [ + "▁Crushing", + -12.452923774719238 + ], + [ + "▁selfie", + -12.453023910522461 + ], + [ + "▁Trend", + -12.453173637390137 + ], + [ + "bull", + -12.453459739685059 + ], + [ + "▁Curtain", + -12.45350170135498 + ], + [ + "▁voyage", + -12.45356273651123 + ], + [ + "SCI", + -12.453636169433594 + ], + [ + ":23", + -12.45365047454834 + ], + [ + "▁Aus", + -12.453666687011719 + ], + [ + ",000,000", + -12.453707695007324 + ], + [ + "▁jurisdictions", + -12.453798294067383 + ], + [ + "▁scanned", + -12.453824996948242 + ], + [ + "▁purity", + -12.454023361206055 + ], + [ + "▁speeches", + -12.454046249389648 + ], + [ + "▁Diane", + -12.454054832458496 + ], + [ + "▁Edmonton", + -12.454066276550293 + ], + [ + "▁southeast", + -12.454078674316406 + ], + [ + "▁Spotify", + -12.454117774963379 + ], + [ + "▁veterinarian", + -12.454117774963379 + ], + [ + "▁Mostly", + -12.45423698425293 + ], + [ + "▁ignition", + -12.45438003540039 + ], + [ + "▁pigs", + -12.454398155212402 + ], + [ + "▁Nail", + -12.454421997070312 + ], + [ + "gues", + -12.454513549804688 + ], + [ + "leveraging", + -12.454578399658203 + ], + [ + "▁Fiction", + -12.454660415649414 + ], + [ + "▁4,000", + -12.454736709594727 + ], + [ + ":22", + -12.454787254333496 + ], + [ + "▁Sprinkle", + -12.454854011535645 + ], + [ + "▁Producer", + -12.455209732055664 + ], + [ + "▁kitten", + -12.455245018005371 + ], + [ + "▁Kru", + -12.455259323120117 + ], + [ + "▁Accounts", + -12.455327033996582 + ], + [ + "Seems", + -12.455392837524414 + ], + [ + "▁Singer", + -12.4554443359375 + ], + [ + "▁flea", + -12.455510139465332 + ], + [ + "▁Pont", + -12.455607414245605 + ], + [ + "▁crossover", + -12.455609321594238 + ], + [ + "QUI", + -12.455708503723145 + ], + [ + "▁hinder", + -12.455766677856445 + ], + [ + "please", + -12.455960273742676 + ], + [ + "▁streamlined", + -12.456271171569824 + ], + [ + "▁Architects", + -12.456275939941406 + ], + [ + "▁WAS", + -12.456300735473633 + ], + [ + "▁cedar", + -12.456315040588379 + ], + [ + "▁campsite", + -12.456587791442871 + ], + [ + "▁Prague", + -12.45671272277832 + ], + [ + "▁PIN", + -12.456741333007812 + ], + [ + "▁stereotype", + -12.45675277709961 + ], + [ + "▁theaters", + -12.456755638122559 + ], + [ + "▁Proof", + -12.456771850585938 + ], + [ + "▁translations", + -12.456880569458008 + ], + [ + "▁permitting", + -12.456921577453613 + ], + [ + "▁reactor", + -12.45693588256836 + ], + [ + "▁Pediatric", + -12.457025527954102 + ], + [ + "▁breakout", + -12.457052230834961 + ], + [ + "▁unwind", + -12.457147598266602 + ], + [ + "▁plank", + -12.457149505615234 + ], + [ + "▁Been", + -12.45719051361084 + ], + [ + "▁veins", + -12.457280158996582 + ], + [ + "▁confess", + -12.457716941833496 + ], + [ + "PIC", + -12.457890510559082 + ], + [ + "▁Sox", + -12.457930564880371 + ], + [ + "▁Positive", + -12.457962989807129 + ], + [ + "tique", + -12.4580659866333 + ], + [ + "▁preventive", + -12.458076477050781 + ], + [ + "cient", + -12.45810317993164 + ], + [ + "zio", + -12.458120346069336 + ], + [ + "▁refuge", + -12.458136558532715 + ], + [ + "language", + -12.458176612854004 + ], + [ + "ncy", + -12.458206176757812 + ], + [ + "▁Janet", + -12.458233833312988 + ], + [ + "connect", + -12.458271980285645 + ], + [ + "▁cathedral", + -12.45832633972168 + ], + [ + "blast", + -12.458372116088867 + ], + [ + "▁tracker", + -12.458378791809082 + ], + [ + "▁farmhouse", + -12.458440780639648 + ], + [ + "OV", + -12.458500862121582 + ], + [ + "▁Vent", + -12.458517074584961 + ], + [ + "▁Burger", + -12.458663940429688 + ], + [ + "▁Escape", + -12.45883560180664 + ], + [ + "▁wager", + -12.458841323852539 + ], + [ + "▁juvenile", + -12.458950996398926 + ], + [ + "▁coefficient", + -12.459041595458984 + ], + [ + "▁enhancements", + -12.459092140197754 + ], + [ + "▁tortilla", + -12.45910930633545 + ], + [ + "▁cubes", + -12.459152221679688 + ], + [ + "▁consolidated", + -12.459280967712402 + ], + [ + "▁Brady", + -12.459477424621582 + ], + [ + "▁Writer", + -12.459583282470703 + ], + [ + "▁companions", + -12.459674835205078 + ], + [ + "▁Dimensions", + -12.459794998168945 + ], + [ + "▁Poli", + -12.459837913513184 + ], + [ + "202", + -12.46007251739502 + ], + [ + "Page", + -12.460128784179688 + ], + [ + "▁pitching", + -12.460150718688965 + ], + [ + "▁chapel", + -12.460346221923828 + ], + [ + "▁7.5", + -12.460355758666992 + ], + [ + "▁1958", + -12.460399627685547 + ], + [ + "▁Vit", + -12.460541725158691 + ], + [ + "pla", + -12.460548400878906 + ], + [ + "▁iphone", + -12.460594177246094 + ], + [ + "▁biodiversity", + -12.460619926452637 + ], + [ + "▁calibration", + -12.460619926452637 + ], + [ + "Over", + -12.460644721984863 + ], + [ + "▁physiological", + -12.460672378540039 + ], + [ + "▁(30", + -12.46072006225586 + ], + [ + "▁heaters", + -12.460808753967285 + ], + [ + "▁Bloomberg", + -12.460919380187988 + ], + [ + "▁Kathy", + -12.460944175720215 + ], + [ + "▁salsa", + -12.461090087890625 + ], + [ + "▁asylum", + -12.461213111877441 + ], + [ + "121", + -12.461235046386719 + ], + [ + "▁Passion", + -12.461235046386719 + ], + [ + "▁ignorance", + -12.461246490478516 + ], + [ + "turned", + -12.46131706237793 + ], + [ + "▁Palestinians", + -12.46138858795166 + ], + [ + "▁Stuff", + -12.461466789245605 + ], + [ + "▁commodities", + -12.461507797241211 + ], + [ + "▁lookout", + -12.461562156677246 + ], + [ + "▁Identify", + -12.46160888671875 + ], + [ + "▁resurrection", + -12.461617469787598 + ], + [ + "soluble", + -12.461774826049805 + ], + [ + "▁replies", + -12.461926460266113 + ], + [ + "blew", + -12.461976051330566 + ], + [ + "street", + -12.462089538574219 + ], + [ + "▁descriptive", + -12.462239265441895 + ], + [ + "▁cloudy", + -12.462414741516113 + ], + [ + "▁Answers", + -12.462516784667969 + ], + [ + "▁acupuncture", + -12.462657928466797 + ], + [ + "▁supervised", + -12.462664604187012 + ], + [ + "▁disappoint", + -12.462669372558594 + ], + [ + "4.5", + -12.462727546691895 + ], + [ + "PAR", + -12.462777137756348 + ], + [ + "▁hostile", + -12.462790489196777 + ], + [ + "▁crosses", + -12.462809562683105 + ], + [ + "▁occupant", + -12.462814331054688 + ], + [ + "▁cruel", + -12.46282958984375 + ], + [ + "▁Outstanding", + -12.462847709655762 + ], + [ + "▁Trent", + -12.463013648986816 + ], + [ + "GER", + -12.46313762664795 + ], + [ + "▁Shawn", + -12.463171005249023 + ], + [ + "0.5", + -12.463210105895996 + ], + [ + "▁wrestling", + -12.46323299407959 + ], + [ + "▁corps", + -12.463258743286133 + ], + [ + "▁imprint", + -12.463296890258789 + ], + [ + "▁USDA", + -12.463361740112305 + ], + [ + "▁puppet", + -12.46336841583252 + ], + [ + "bron", + -12.463443756103516 + ], + [ + "▁glove", + -12.463458061218262 + ], + [ + "▁HOME", + -12.463485717773438 + ], + [ + "▁lucrative", + -12.463546752929688 + ], + [ + "▁weighed", + -12.463611602783203 + ], + [ + "▁penetration", + -12.463651657104492 + ], + [ + "▁Mug", + -12.463726997375488 + ], + [ + "▁makeover", + -12.4637451171875 + ], + [ + "plethor", + -12.463773727416992 + ], + [ + "auer", + -12.4638032913208 + ], + [ + "▁bakery", + -12.463817596435547 + ], + [ + "▁Owners", + -12.463913917541504 + ], + [ + "▁Kom", + -12.464048385620117 + ], + [ + "▁Solomon", + -12.464085578918457 + ], + [ + "simi", + -12.464112281799316 + ], + [ + "material", + -12.464287757873535 + ], + [ + "▁destiny", + -12.464346885681152 + ], + [ + "▁111", + -12.464347839355469 + ], + [ + "▁dumps", + -12.464406967163086 + ], + [ + "▁auf", + -12.464448928833008 + ], + [ + "▁broccoli", + -12.464489936828613 + ], + [ + "grabbing", + -12.464533805847168 + ], + [ + "▁Kashmir", + -12.464542388916016 + ], + [ + "▁Kerala", + -12.464738845825195 + ], + [ + "strom", + -12.464764595031738 + ], + [ + "Fun", + -12.464849472045898 + ], + [ + "blaze", + -12.464855194091797 + ], + [ + "mediated", + -12.46496868133545 + ], + [ + "▁Tape", + -12.4650297164917 + ], + [ + "climbed", + -12.465126991271973 + ], + [ + "▁External", + -12.46517276763916 + ], + [ + "surpassed", + -12.465335845947266 + ], + [ + "▁propaganda", + -12.465380668640137 + ], + [ + "▁pyramid", + -12.465433120727539 + ], + [ + ":21", + -12.465461730957031 + ], + [ + "stitution", + -12.46551513671875 + ], + [ + "orous", + -12.465535163879395 + ], + [ + "CSA", + -12.465547561645508 + ], + [ + "▁Presidential", + -12.465635299682617 + ], + [ + "▁precipitation", + -12.465642929077148 + ], + [ + "▁appetizer", + -12.46569538116455 + ], + [ + "▁$14", + -12.46570110321045 + ], + [ + "▁glacier", + -12.46590518951416 + ], + [ + "▁proficient", + -12.465957641601562 + ], + [ + "lani", + -12.465975761413574 + ], + [ + "▁Dig", + -12.466018676757812 + ], + [ + "▁lord", + -12.466097831726074 + ], + [ + "▁Proc", + -12.466273307800293 + ], + [ + "Situated", + -12.46627426147461 + ], + [ + "▁receipts", + -12.466428756713867 + ], + [ + "▁collapsed", + -12.466534614562988 + ], + [ + "▁Shirt", + -12.466632843017578 + ], + [ + "▁Turk", + -12.46678352355957 + ], + [ + "▁lava", + -12.466795921325684 + ], + [ + "155", + -12.466798782348633 + ], + [ + "▁ecosystems", + -12.466838836669922 + ], + [ + "▁recon", + -12.466878890991211 + ], + [ + "▁175", + -12.466920852661133 + ], + [ + "rigg", + -12.467193603515625 + ], + [ + "▁eclipse", + -12.467375755310059 + ], + [ + "▁nominal", + -12.467415809631348 + ], + [ + "zin", + -12.46741771697998 + ], + [ + "▁motto", + -12.467428207397461 + ], + [ + "▁troubleshooting", + -12.467449188232422 + ], + [ + "1⁄2", + -12.467487335205078 + ], + [ + "▁Reporting", + -12.467576026916504 + ], + [ + "▁Yep", + -12.467927932739258 + ], + [ + "stuff", + -12.467940330505371 + ], + [ + "▁pesticides", + -12.467977523803711 + ], + [ + "▁gatherings", + -12.468003273010254 + ], + [ + "▁FIFA", + -12.468256950378418 + ], + [ + "psych", + -12.46827220916748 + ], + [ + "fiction", + -12.468392372131348 + ], + [ + "rrington", + -12.468461036682129 + ], + [ + "▁calming", + -12.468649864196777 + ], + [ + "▁Gorgeous", + -12.468673706054688 + ], + [ + "▁Chrysler", + -12.468706130981445 + ], + [ + "▁Macro", + -12.46872329711914 + ], + [ + "IZE", + -12.468765258789062 + ], + [ + "▁petroleum", + -12.468794822692871 + ], + [ + "165", + -12.468889236450195 + ], + [ + "natal", + -12.468913078308105 + ], + [ + "▁wolf", + -12.468927383422852 + ], + [ + "▁Proper", + -12.469014167785645 + ], + [ + "▁laboratories", + -12.46916389465332 + ], + [ + "▁Estonia", + -12.469240188598633 + ], + [ + "▁pitches", + -12.469246864318848 + ], + [ + "▁Charity", + -12.46939754486084 + ], + [ + "needed", + -12.469480514526367 + ], + [ + "battling", + -12.469599723815918 + ], + [ + "▁Communities", + -12.469980239868164 + ], + [ + "▁treaty", + -12.470061302185059 + ], + [ + "▁underestimate", + -12.470112800598145 + ], + [ + "▁compress", + -12.470162391662598 + ], + [ + "▁ornaments", + -12.470257759094238 + ], + [ + "▁Austrian", + -12.470267295837402 + ], + [ + "▁dissolved", + -12.470293045043945 + ], + [ + "▁homeschool", + -12.470330238342285 + ], + [ + "▁Crypto", + -12.470333099365234 + ], + [ + "▁Arlington", + -12.470375061035156 + ], + [ + "▁Penguin", + -12.470389366149902 + ], + [ + "RAD", + -12.470459938049316 + ], + [ + "▁eff", + -12.470477104187012 + ], + [ + "▁Slim", + -12.470752716064453 + ], + [ + "▁handheld", + -12.470820426940918 + ], + [ + "▁possessions", + -12.470885276794434 + ], + [ + "register", + -12.470894813537598 + ], + [ + "WP", + -12.47089958190918 + ], + [ + "▁Filipino", + -12.470902442932129 + ], + [ + "▁priests", + -12.470921516418457 + ], + [ + "▁Savings", + -12.471030235290527 + ], + [ + "ATED", + -12.471059799194336 + ], + [ + "▁provinces", + -12.471321105957031 + ], + [ + "▁Antarctic", + -12.471376419067383 + ], + [ + "▁Chill", + -12.471678733825684 + ], + [ + "▁commemorate", + -12.471750259399414 + ], + [ + "▁mutant", + -12.471833229064941 + ], + [ + "▁hull", + -12.471839904785156 + ], + [ + "▁Interface", + -12.47191333770752 + ], + [ + "▁exported", + -12.47193431854248 + ], + [ + "▁Uncle", + -12.471966743469238 + ], + [ + "RIA", + -12.472147941589355 + ], + [ + "$1", + -12.472260475158691 + ], + [ + "▁Afghan", + -12.47232437133789 + ], + [ + "▁bodily", + -12.47232723236084 + ], + [ + "volution", + -12.472411155700684 + ], + [ + "▁Haw", + -12.472460746765137 + ], + [ + "yak", + -12.472615242004395 + ], + [ + "▁Technician", + -12.472750663757324 + ], + [ + "▁Petersburg", + -12.472820281982422 + ], + [ + "▁degradation", + -12.472960472106934 + ], + [ + "▁pitched", + -12.47299575805664 + ], + [ + "▁aquarium", + -12.473077774047852 + ], + [ + "▁Supervisor", + -12.473440170288086 + ], + [ + "▁Eva", + -12.473514556884766 + ], + [ + "amide", + -12.473821640014648 + ], + [ + "mental", + -12.473891258239746 + ], + [ + "corp", + -12.473962783813477 + ], + [ + "Cloud", + -12.474011421203613 + ], + [ + "▁stimulus", + -12.47412395477295 + ], + [ + "tire", + -12.474146842956543 + ], + [ + "▁finale", + -12.474193572998047 + ], + [ + "Sweet", + -12.474225997924805 + ], + [ + "▁Myanmar", + -12.474336624145508 + ], + [ + "whipped", + -12.474465370178223 + ], + [ + "▁Vil", + -12.474507331848145 + ], + [ + "▁Wheels", + -12.474532127380371 + ], + [ + "▁thinner", + -12.474637985229492 + ], + [ + "▁Appeal", + -12.47465705871582 + ], + [ + "slated", + -12.474735260009766 + ], + [ + "▁Logic", + -12.474790573120117 + ], + [ + "gating", + -12.474811553955078 + ], + [ + "▁Sink", + -12.474815368652344 + ], + [ + "pinning", + -12.474845886230469 + ], + [ + "▁Krishna", + -12.475024223327637 + ], + [ + "▁lumber", + -12.475024223327637 + ], + [ + "▁believer", + -12.475083351135254 + ], + [ + "▁playback", + -12.475187301635742 + ], + [ + "▁tapping", + -12.475224494934082 + ], + [ + "▁Yum", + -12.47541618347168 + ], + [ + "▁insulated", + -12.475462913513184 + ], + [ + "▁workmanship", + -12.475600242614746 + ], + [ + "▁baggage", + -12.47566032409668 + ], + [ + "▁Productions", + -12.47571086883545 + ], + [ + "▁librarian", + -12.475711822509766 + ], + [ + "▁stalls", + -12.47579288482666 + ], + [ + "▁Embassy", + -12.475817680358887 + ], + [ + "▁injustice", + -12.47581958770752 + ], + [ + "June", + -12.47589111328125 + ], + [ + "▁Mist", + -12.475934982299805 + ], + [ + "EVE", + -12.47617244720459 + ], + [ + "▁Genetic", + -12.476236343383789 + ], + [ + "▁на", + -12.476364135742188 + ], + [ + "▁temporal", + -12.476540565490723 + ], + [ + "▁Jaguar", + -12.476615905761719 + ], + [ + "▁Jupiter", + -12.47671890258789 + ], + [ + "▁CW", + -12.476845741271973 + ], + [ + "▁standalone", + -12.477075576782227 + ], + [ + "jin", + -12.477107048034668 + ], + [ + "▁communicated", + -12.477229118347168 + ], + [ + "▁gadget", + -12.477238655090332 + ], + [ + "▁Louise", + -12.477264404296875 + ], + [ + "haven", + -12.477423667907715 + ], + [ + "ingen", + -12.477453231811523 + ], + [ + "▁spans", + -12.477520942687988 + ], + [ + "▁negotiated", + -12.4775390625 + ], + [ + "▁canyon", + -12.477543830871582 + ], + [ + "▁creep", + -12.47763729095459 + ], + [ + "▁135", + -12.477645874023438 + ], + [ + "▁Frontier", + -12.477727890014648 + ], + [ + "▁85%", + -12.477858543395996 + ], + [ + "▁juicy", + -12.477940559387207 + ], + [ + "▁Psycho", + -12.47799015045166 + ], + [ + "▁Schi", + -12.478019714355469 + ], + [ + "▁inferior", + -12.47809886932373 + ], + [ + "▁Compliance", + -12.47815227508545 + ], + [ + "▁immensely", + -12.478425025939941 + ], + [ + "management", + -12.478453636169434 + ], + [ + "nav", + -12.47890567779541 + ], + [ + "separating", + -12.479001998901367 + ], + [ + "▁filtration", + -12.479057312011719 + ], + [ + "▁bowling", + -12.479146003723145 + ], + [ + "Explo", + -12.479242324829102 + ], + [ + "Suitable", + -12.479354858398438 + ], + [ + "▁modem", + -12.479466438293457 + ], + [ + "LOG", + -12.479517936706543 + ], + [ + "▁dolphin", + -12.479537010192871 + ], + [ + "void", + -12.479737281799316 + ], + [ + "▁entre", + -12.479888916015625 + ], + [ + "▁CRE", + -12.479903221130371 + ], + [ + "▁pupil", + -12.479939460754395 + ], + [ + "▁decking", + -12.479951858520508 + ], + [ + "illion", + -12.47996711730957 + ], + [ + "▁aftermath", + -12.479974746704102 + ], + [ + "White", + -12.480117797851562 + ], + [ + "geared", + -12.480149269104004 + ], + [ + "▁Copenhagen", + -12.480173110961914 + ], + [ + "▁Clara", + -12.480423927307129 + ], + [ + "colour", + -12.480469703674316 + ], + [ + "ichi", + -12.480721473693848 + ], + [ + "▁Boulder", + -12.480758666992188 + ], + [ + "▁continuation", + -12.480917930603027 + ], + [ + "CAL", + -12.481019973754883 + ], + [ + "▁prostate", + -12.481148719787598 + ], + [ + "777", + -12.481321334838867 + ], + [ + "▁Yemen", + -12.481557846069336 + ], + [ + "▁Ou", + -12.481584548950195 + ], + [ + "▁storyline", + -12.481593132019043 + ], + [ + "▁motorist", + -12.481712341308594 + ], + [ + "▁Mut", + -12.481765747070312 + ], + [ + "▁Mask", + -12.481792449951172 + ], + [ + "▁proliferation", + -12.481823921203613 + ], + [ + "▁Birds", + -12.481853485107422 + ], + [ + "trap", + -12.481919288635254 + ], + [ + "▁weaker", + -12.482156753540039 + ], + [ + "Top", + -12.482370376586914 + ], + [ + "hale", + -12.482385635375977 + ], + [ + "ulus", + -12.482385635375977 + ], + [ + "▁3-5", + -12.48241901397705 + ], + [ + "▁Cooking", + -12.482487678527832 + ], + [ + "▁Celebrate", + -12.48251724243164 + ], + [ + "directional", + -12.482532501220703 + ], + [ + "critical", + -12.482568740844727 + ], + [ + "▁Including", + -12.482677459716797 + ], + [ + "▁sinus", + -12.482821464538574 + ], + [ + "▁sincerely", + -12.48287296295166 + ], + [ + "existing", + -12.482881546020508 + ], + [ + "▁doorstep", + -12.48307991027832 + ], + [ + "▁Curtis", + -12.483100891113281 + ], + [ + "▁bricks", + -12.483174324035645 + ], + [ + "▁Candle", + -12.483205795288086 + ], + [ + "▁Albany", + -12.483214378356934 + ], + [ + "▁chorus", + -12.483264923095703 + ], + [ + "▁splendid", + -12.483370780944824 + ], + [ + "▁doctoral", + -12.483466148376465 + ], + [ + "▁murdered", + -12.483525276184082 + ], + [ + "Mu", + -12.483768463134766 + ], + [ + "▁LIVE", + -12.483786582946777 + ], + [ + "ATH", + -12.48386287689209 + ], + [ + "▁Opportunity", + -12.48395824432373 + ], + [ + "▁strokes", + -12.4840669631958 + ], + [ + "▁fig", + -12.484164237976074 + ], + [ + "▁terminology", + -12.484172821044922 + ], + [ + "▁Lol", + -12.484203338623047 + ], + [ + "▁cabins", + -12.484212875366211 + ], + [ + "▁broadcasting", + -12.48425006866455 + ], + [ + "▁£4", + -12.484312057495117 + ], + [ + "▁ROM", + -12.48435115814209 + ], + [ + "▁cumulative", + -12.484386444091797 + ], + [ + "joy", + -12.484413146972656 + ], + [ + "▁sway", + -12.484452247619629 + ], + [ + "▁Dimension", + -12.48448657989502 + ], + [ + "▁thirteen", + -12.484599113464355 + ], + [ + "▁striker", + -12.484687805175781 + ], + [ + "410", + -12.48482608795166 + ], + [ + "▁Away", + -12.484902381896973 + ], + [ + "▁expenditures", + -12.485173225402832 + ], + [ + "▁strengthened", + -12.485219955444336 + ], + [ + "▁filtered", + -12.485231399536133 + ], + [ + "▁stylist", + -12.48525333404541 + ], + [ + "target", + -12.485441207885742 + ], + [ + "nous", + -12.485442161560059 + ], + [ + "▁distill", + -12.485448837280273 + ], + [ + "▁fab", + -12.485490798950195 + ], + [ + "CV", + -12.485651016235352 + ], + [ + "▁Honestly", + -12.485883712768555 + ], + [ + "altering", + -12.48588752746582 + ], + [ + "▁vanish", + -12.485902786254883 + ], + [ + "▁stole", + -12.486001014709473 + ], + [ + "cloud", + -12.486079216003418 + ], + [ + "seized", + -12.486109733581543 + ], + [ + "plain", + -12.486226081848145 + ], + [ + "▁1956", + -12.486265182495117 + ], + [ + "surface", + -12.486534118652344 + ], + [ + "▁Bless", + -12.48682689666748 + ], + [ + "▁scholarly", + -12.486828804016113 + ], + [ + "▁simulator", + -12.486859321594238 + ], + [ + "▁Rugby", + -12.486915588378906 + ], + [ + "▁Movers", + -12.48692512512207 + ], + [ + "Soft", + -12.486976623535156 + ], + [ + "▁Moss", + -12.48704719543457 + ], + [ + "▁glossy", + -12.487048149108887 + ], + [ + "▁learner", + -12.487051963806152 + ], + [ + "▁catheter", + -12.48716926574707 + ], + [ + "▁Cornwall", + -12.48719596862793 + ], + [ + "▁glyco", + -12.487235069274902 + ], + [ + "▁Conc", + -12.487589836120605 + ], + [ + "▁scramble", + -12.487710952758789 + ], + [ + "▁pastel", + -12.487756729125977 + ], + [ + "▁livelihood", + -12.48775863647461 + ], + [ + "340", + -12.487858772277832 + ], + [ + "bourne", + -12.487874984741211 + ], + [ + "▁Rising", + -12.488094329833984 + ], + [ + "▁5:00", + -12.488096237182617 + ], + [ + "▁pistol", + -12.488189697265625 + ], + [ + "moni", + -12.488241195678711 + ], + [ + "chant", + -12.488356590270996 + ], + [ + "▁ascend", + -12.4886474609375 + ], + [ + "▁repetition", + -12.488670349121094 + ], + [ + "▁Hidden", + -12.488780975341797 + ], + [ + "▁outgoing", + -12.488784790039062 + ], + [ + "▁subdivision", + -12.488885879516602 + ], + [ + "▁accusation", + -12.48893928527832 + ], + [ + "▁Nobel", + -12.4889554977417 + ], + [ + "▁Applicants", + -12.48896598815918 + ], + [ + "▁predictive", + -12.48902702331543 + ], + [ + "▁coarse", + -12.489067077636719 + ], + [ + "ACA", + -12.489092826843262 + ], + [ + "▁Patricia", + -12.489100456237793 + ], + [ + "▁comprehension", + -12.489100456237793 + ], + [ + ":24", + -12.489104270935059 + ], + [ + "▁poultry", + -12.48920726776123 + ], + [ + "MIT", + -12.48924732208252 + ], + [ + "▁oneself", + -12.489398956298828 + ], + [ + "Hol", + -12.489473342895508 + ], + [ + "▁bunk", + -12.489584922790527 + ], + [ + "▁Composite", + -12.489827156066895 + ], + [ + "2007", + -12.489856719970703 + ], + [ + "3.7", + -12.489870071411133 + ], + [ + "mitted", + -12.489974021911621 + ], + [ + "should", + -12.49015998840332 + ], + [ + "▁Replace", + -12.490198135375977 + ], + [ + "▁Prep", + -12.490201950073242 + ], + [ + "▁Stella", + -12.49031925201416 + ], + [ + "every", + -12.490336418151855 + ], + [ + "phobia", + -12.490459442138672 + ], + [ + "▁Finn", + -12.490609169006348 + ], + [ + "▁Citizens", + -12.490615844726562 + ], + [ + "▁Cork", + -12.490693092346191 + ], + [ + "▁owl", + -12.490697860717773 + ], + [ + "▁arcade", + -12.490705490112305 + ], + [ + "cene", + -12.490742683410645 + ], + [ + "▁Cricket", + -12.490769386291504 + ], + [ + "uter", + -12.49081802368164 + ], + [ + "▁inventor", + -12.491116523742676 + ], + [ + "▁defendants", + -12.491135597229004 + ], + [ + "▁MAY", + -12.491217613220215 + ], + [ + "▁dancer", + -12.491291046142578 + ], + [ + "domain", + -12.491299629211426 + ], + [ + "▁dedicate", + -12.491387367248535 + ], + [ + "▁Harley", + -12.491426467895508 + ], + [ + "▁stitches", + -12.491604804992676 + ], + [ + "▁repertoire", + -12.491735458374023 + ], + [ + "growth", + -12.49173641204834 + ], + [ + "▁disregard", + -12.491842269897461 + ], + [ + "▁1957", + -12.491878509521484 + ], + [ + "elected", + -12.491950988769531 + ], + [ + "▁gotta", + -12.492047309875488 + ], + [ + "▁Alto", + -12.49227523803711 + ], + [ + "▁Cliff", + -12.49242115020752 + ], + [ + "▁pavement", + -12.492443084716797 + ], + [ + "▁stationary", + -12.492584228515625 + ], + [ + "▁calculating", + -12.492650985717773 + ], + [ + "lection", + -12.492733001708984 + ], + [ + "▁Treasure", + -12.492822647094727 + ], + [ + "▁Flame", + -12.49282455444336 + ], + [ + "▁Boh", + -12.492871284484863 + ], + [ + "▁manageable", + -12.492956161499023 + ], + [ + "ovic", + -12.493110656738281 + ], + [ + "bacter", + -12.4932279586792 + ], + [ + "dford", + -12.49326229095459 + ], + [ + "▁mailbox", + -12.49329662322998 + ], + [ + "▁Mack", + -12.49336051940918 + ], + [ + "affe", + -12.493660926818848 + ], + [ + "▁cosy", + -12.493844985961914 + ], + [ + "oscopic", + -12.493889808654785 + ], + [ + "▁eyebrow", + -12.493896484375 + ], + [ + "▁Clerk", + -12.493972778320312 + ], + [ + "regulating", + -12.493998527526855 + ], + [ + "▁topical", + -12.494003295898438 + ], + [ + "▁bilateral", + -12.494250297546387 + ], + [ + "▁vulnerabilities", + -12.494268417358398 + ], + [ + "▁1,500", + -12.49428653717041 + ], + [ + "▁Griffin", + -12.494384765625 + ], + [ + "aylor", + -12.494417190551758 + ], + [ + "▁bre", + -12.494427680969238 + ], + [ + "lough", + -12.4946870803833 + ], + [ + "▁harvesting", + -12.494757652282715 + ], + [ + "▁Nordic", + -12.495057106018066 + ], + [ + "▁bookstore", + -12.49520206451416 + ], + [ + "▁envision", + -12.495217323303223 + ], + [ + "▁Collective", + -12.495219230651855 + ], + [ + "▁Appeals", + -12.495251655578613 + ], + [ + "▁mammal", + -12.49527645111084 + ], + [ + "▁robe", + -12.495292663574219 + ], + [ + "▁hurting", + -12.495433807373047 + ], + [ + "worker", + -12.495546340942383 + ], + [ + "▁Drag", + -12.495563507080078 + ], + [ + "March", + -12.495732307434082 + ], + [ + "saver", + -12.495773315429688 + ], + [ + "301", + -12.495889663696289 + ], + [ + "Type", + -12.495911598205566 + ], + [ + "▁generously", + -12.49592113494873 + ], + [ + "▁inaccurate", + -12.495943069458008 + ], + [ + "▁Heroes", + -12.495972633361816 + ], + [ + "rath", + -12.496031761169434 + ], + [ + "▁marvel", + -12.496213912963867 + ], + [ + "▁donating", + -12.496228218078613 + ], + [ + "▁discard", + -12.496283531188965 + ], + [ + "650", + -12.496360778808594 + ], + [ + "▁INTER", + -12.49636459350586 + ], + [ + "▁fli", + -12.496386528015137 + ], + [ + "eminent", + -12.496438980102539 + ], + [ + "urban", + -12.496525764465332 + ], + [ + "▁wearable", + -12.496561050415039 + ], + [ + "▁Relief", + -12.496593475341797 + ], + [ + "▁aromatic", + -12.496663093566895 + ], + [ + "▁municipalities", + -12.496720314025879 + ], + [ + "▁migraine", + -12.49675464630127 + ], + [ + "▁pudding", + -12.496825218200684 + ], + [ + "Where", + -12.496826171875 + ], + [ + "▁inconsistent", + -12.496916770935059 + ], + [ + "126", + -12.496971130371094 + ], + [ + "focus", + -12.49708366394043 + ], + [ + "▁Cry", + -12.497211456298828 + ], + [ + "▁Rah", + -12.497329711914062 + ], + [ + "▁wisely", + -12.49743366241455 + ], + [ + "▁Canvas", + -12.497566223144531 + ], + [ + "▁descendant", + -12.49778938293457 + ], + [ + "▁FUN", + -12.497833251953125 + ], + [ + "▁Nottingham", + -12.497838973999023 + ], + [ + "▁imperial", + -12.497869491577148 + ], + [ + "▁digits", + -12.497881889343262 + ], + [ + "▁immersive", + -12.498000144958496 + ], + [ + "▁Raz", + -12.498114585876465 + ], + [ + "trust", + -12.498115539550781 + ], + [ + "eater", + -12.498156547546387 + ], + [ + "▁evolutionary", + -12.498177528381348 + ], + [ + "▁Runner", + -12.49820613861084 + ], + [ + "▁Chic", + -12.498223304748535 + ], + [ + "▁Caesar", + -12.498255729675293 + ], + [ + "▁Permanent", + -12.498271942138672 + ], + [ + "▁Sessions", + -12.4983491897583 + ], + [ + "▁Naval", + -12.498384475708008 + ], + [ + "▁Betty", + -12.498624801635742 + ], + [ + "▁Meaning", + -12.498625755310059 + ], + [ + "▁volleyball", + -12.498650550842285 + ], + [ + "▁sightseeing", + -12.498651504516602 + ], + [ + "deep", + -12.498705863952637 + ], + [ + "▁slap", + -12.498708724975586 + ], + [ + "▁mango", + -12.498786926269531 + ], + [ + "▁discontinu", + -12.498800277709961 + ], + [ + "▁Disability", + -12.498851776123047 + ], + [ + "▁generators", + -12.498865127563477 + ], + [ + "▁Graphics", + -12.498868942260742 + ], + [ + "naut", + -12.499201774597168 + ], + [ + "sharing", + -12.499253273010254 + ], + [ + "▁(2009)", + -12.499345779418945 + ], + [ + "rien", + -12.49939250946045 + ], + [ + "▁$100,000", + -12.499515533447266 + ], + [ + "▁Ceramic", + -12.499519348144531 + ], + [ + "▁Automation", + -12.499574661254883 + ], + [ + "hydrate", + -12.499727249145508 + ], + [ + "▁fret", + -12.499728202819824 + ], + [ + "▁comeback", + -12.49984359741211 + ], + [ + "inning", + -12.499903678894043 + ], + [ + "▁facilitated", + -12.499939918518066 + ], + [ + "▁suburb", + -12.49998950958252 + ], + [ + "▁5.0", + -12.500033378601074 + ], + [ + "▁noisy", + -12.5000638961792 + ], + [ + "▁tyres", + -12.500083923339844 + ], + [ + "turing", + -12.50013256072998 + ], + [ + "▁faction", + -12.500272750854492 + ], + [ + "champ", + -12.500370979309082 + ], + [ + "▁digitally", + -12.500394821166992 + ], + [ + "▁hunters", + -12.500402450561523 + ], + [ + "▁Scientists", + -12.500701904296875 + ], + [ + "▁Hole", + -12.500709533691406 + ], + [ + "▁recommending", + -12.500712394714355 + ], + [ + "infused", + -12.50076961517334 + ], + [ + "▁Blogger", + -12.500775337219238 + ], + [ + "▁hacking", + -12.500905990600586 + ], + [ + "▁oyster", + -12.500986099243164 + ], + [ + "▁sorrow", + -12.501001358032227 + ], + [ + "navigating", + -12.501031875610352 + ], + [ + "▁imaginative", + -12.501092910766602 + ], + [ + "▁artery", + -12.50113582611084 + ], + [ + "▁650", + -12.501142501831055 + ], + [ + "training", + -12.501280784606934 + ], + [ + "▁chiropractic", + -12.501473426818848 + ], + [ + "▁conventions", + -12.501489639282227 + ], + [ + "▁Coastal", + -12.501598358154297 + ], + [ + "▁Sent", + -12.501891136169434 + ], + [ + "▁withdrawn", + -12.501916885375977 + ], + [ + "▁Bron", + -12.502147674560547 + ], + [ + "▁Result", + -12.502243995666504 + ], + [ + "▁Mustang", + -12.502288818359375 + ], + [ + "▁altar", + -12.502307891845703 + ], + [ + "▁props", + -12.502351760864258 + ], + [ + "▁lantern", + -12.502402305603027 + ], + [ + "▁Navi", + -12.50247859954834 + ], + [ + "physio", + -12.502484321594238 + ], + [ + "▁monuments", + -12.50253677368164 + ], + [ + "▁Maintain", + -12.50259017944336 + ], + [ + "▁JP", + -12.502650260925293 + ], + [ + "▁workspace", + -12.502741813659668 + ], + [ + "▁clam", + -12.502781867980957 + ], + [ + "▁Ability", + -12.502786636352539 + ], + [ + "TES", + -12.503030776977539 + ], + [ + "▁psychic", + -12.503133773803711 + ], + [ + "▁recruited", + -12.503191947937012 + ], + [ + "/7", + -12.503351211547852 + ], + [ + "bps", + -12.503369331359863 + ], + [ + "▁Mp", + -12.503741264343262 + ], + [ + "▁tendon", + -12.503756523132324 + ], + [ + "▁Kurt", + -12.503764152526855 + ], + [ + "▁Hun", + -12.50381851196289 + ], + [ + "▁Coaching", + -12.503829956054688 + ], + [ + "rais", + -12.503885269165039 + ], + [ + "forward", + -12.504034042358398 + ], + [ + "▁Russ", + -12.504063606262207 + ], + [ + "▁antibodies", + -12.504140853881836 + ], + [ + "SIC", + -12.504216194152832 + ], + [ + "chip", + -12.5043363571167 + ], + [ + "▁Darwin", + -12.504400253295898 + ], + [ + "1.0", + -12.504446983337402 + ], + [ + "▁alphabet", + -12.504495620727539 + ], + [ + "▁victories", + -12.504514694213867 + ], + [ + "▁Sunshine", + -12.504524230957031 + ], + [ + "▁multinational", + -12.50467586517334 + ], + [ + "▁cheque", + -12.50477123260498 + ], + [ + "effect", + -12.504830360412598 + ], + [ + "▁Thu", + -12.504852294921875 + ], + [ + "▁nurturing", + -12.504959106445312 + ], + [ + "▁endeavors", + -12.504989624023438 + ], + [ + "XL", + -12.505030632019043 + ], + [ + "▁vineyards", + -12.505110740661621 + ], + [ + "etched", + -12.505167007446289 + ], + [ + "▁cupcakes", + -12.505350112915039 + ], + [ + "contin", + -12.50538158416748 + ], + [ + "fight", + -12.505409240722656 + ], + [ + "immu", + -12.505435943603516 + ], + [ + "▁COMP", + -12.505463600158691 + ], + [ + "Pad", + -12.50546646118164 + ], + [ + "imon", + -12.505539894104004 + ], + [ + "▁counterpart", + -12.505568504333496 + ], + [ + "▁Rolling", + -12.505620002746582 + ], + [ + "ер", + -12.505620956420898 + ], + [ + "▁Musk", + -12.50568675994873 + ], + [ + "▁legends", + -12.505804061889648 + ], + [ + "▁Agile", + -12.505819320678711 + ], + [ + "▁reminders", + -12.505842208862305 + ], + [ + "AIN", + -12.505959510803223 + ], + [ + "▁Parade", + -12.505970001220703 + ], + [ + "atsu", + -12.506082534790039 + ], + [ + "lde", + -12.506099700927734 + ], + [ + "▁testament", + -12.50621509552002 + ], + [ + "▁mosque", + -12.506439208984375 + ], + [ + "▁Evening", + -12.506475448608398 + ], + [ + "▁distraction", + -12.506507873535156 + ], + [ + "axial", + -12.506612777709961 + ], + [ + "▁dubbed", + -12.506723403930664 + ], + [ + "▁Aboriginal", + -12.506725311279297 + ], + [ + "rgy", + -12.506760597229004 + ], + [ + "▁Sussex", + -12.506815910339355 + ], + [ + "▁Dash", + -12.506834983825684 + ], + [ + "▁nominations", + -12.50692367553711 + ], + [ + "▁vascular", + -12.506998062133789 + ], + [ + "▁rocking", + -12.507037162780762 + ], + [ + "▁nickname", + -12.50704574584961 + ], + [ + "▁congress", + -12.507144927978516 + ], + [ + "living", + -12.507400512695312 + ], + [ + "▁windshield", + -12.507439613342285 + ], + [ + "activ", + -12.507454872131348 + ], + [ + "▁Norton", + -12.507665634155273 + ], + [ + "▁Judy", + -12.507774353027344 + ], + [ + "▁breadth", + -12.507854461669922 + ], + [ + "lary", + -12.507967948913574 + ], + [ + "▁validated", + -12.508275985717773 + ], + [ + "▁Oral", + -12.508296012878418 + ], + [ + "▁Lux", + -12.508321762084961 + ], + [ + "erci", + -12.5084228515625 + ], + [ + "▁renal", + -12.50844669342041 + ], + [ + "▁ecommerce", + -12.508484840393066 + ], + [ + "▁rebuilt", + -12.508655548095703 + ], + [ + "__", + -12.508879661560059 + ], + [ + "▁politician", + -12.508996963500977 + ], + [ + "handcrafted", + -12.509016036987305 + ], + [ + "pick", + -12.509021759033203 + ], + [ + "▁Sup", + -12.509086608886719 + ], + [ + "▁outpatient", + -12.509093284606934 + ], + [ + "▁eras", + -12.509098052978516 + ], + [ + "▁stray", + -12.509125709533691 + ], + [ + "▁Gandhi", + -12.509223937988281 + ], + [ + "▁PET", + -12.50922966003418 + ], + [ + "tolerant", + -12.509354591369629 + ], + [ + "▁stripped", + -12.509407997131348 + ], + [ + "▁fourteen", + -12.509415626525879 + ], + [ + "▁Rewards", + -12.509566307067871 + ], + [ + "▁sectional", + -12.509620666503906 + ], + [ + "Bra", + -12.50971508026123 + ], + [ + "▁Alexandr", + -12.509721755981445 + ], + [ + "ensu", + -12.509780883789062 + ], + [ + "RED", + -12.509905815124512 + ], + [ + "▁(2017)", + -12.509933471679688 + ], + [ + "▁diner", + -12.509939193725586 + ], + [ + "▁caller", + -12.51007080078125 + ], + [ + "JU", + -12.510185241699219 + ], + [ + "▁Recommended", + -12.510380744934082 + ], + [ + "▁Finger", + -12.510420799255371 + ], + [ + "▁mutually", + -12.510481834411621 + ], + [ + "legal", + -12.510533332824707 + ], + [ + "▁fist", + -12.510705947875977 + ], + [ + "▁sleeper", + -12.510756492614746 + ], + [ + "▁dissolve", + -12.510778427124023 + ], + [ + "▁$75", + -12.51085090637207 + ], + [ + "▁Mull", + -12.51087474822998 + ], + [ + "▁Pom", + -12.510945320129395 + ], + [ + "▁Straight", + -12.511034965515137 + ], + [ + "▁myths", + -12.511110305786133 + ], + [ + "▁finely", + -12.511128425598145 + ], + [ + "▁Brilliant", + -12.511252403259277 + ], + [ + "▁Sigma", + -12.511270523071289 + ], + [ + "micro", + -12.511290550231934 + ], + [ + "Based", + -12.511327743530273 + ], + [ + "▁bingo", + -12.51153564453125 + ], + [ + "▁Plymouth", + -12.51158332824707 + ], + [ + "▁grit", + -12.511748313903809 + ], + [ + "▁Retro", + -12.511754035949707 + ], + [ + "▁Costume", + -12.511832237243652 + ], + [ + "INA", + -12.511898040771484 + ], + [ + "flight", + -12.511930465698242 + ], + [ + "destined", + -12.51203441619873 + ], + [ + "▁leaning", + -12.512125015258789 + ], + [ + "▁alot", + -12.512229919433594 + ], + [ + "riya", + -12.512267112731934 + ], + [ + "Works", + -12.512584686279297 + ], + [ + "▁wan", + -12.512618064880371 + ], + [ + "▁Benefit", + -12.512679100036621 + ], + [ + "Rock", + -12.51284122467041 + ], + [ + "▁safest", + -12.512953758239746 + ], + [ + "More", + -12.513026237487793 + ], + [ + "▁disadvantage", + -12.513039588928223 + ], + [ + "Space", + -12.513162612915039 + ], + [ + "▁pier", + -12.513289451599121 + ], + [ + "▁shelters", + -12.513405799865723 + ], + [ + "Sync", + -12.513668060302734 + ], + [ + "tari", + -12.513717651367188 + ], + [ + "acqui", + -12.513737678527832 + ], + [ + "▁shipments", + -12.51375675201416 + ], + [ + "▁Improve", + -12.513837814331055 + ], + [ + "▁paragraphs", + -12.513839721679688 + ], + [ + "▁Trailer", + -12.51384162902832 + ], + [ + "▁brushing", + -12.513888359069824 + ], + [ + "▁gentleman", + -12.513916969299316 + ], + [ + "▁brewery", + -12.51392650604248 + ], + [ + "▁Carson", + -12.514005661010742 + ], + [ + "▁Milton", + -12.514031410217285 + ], + [ + "▁restrain", + -12.514130592346191 + ], + [ + "▁banquet", + -12.514139175415039 + ], + [ + "oche", + -12.514166831970215 + ], + [ + "ayne", + -12.51419448852539 + ], + [ + "▁blueprint", + -12.514303207397461 + ], + [ + "genetic", + -12.514419555664062 + ], + [ + "▁Wise", + -12.514453887939453 + ], + [ + "▁militant", + -12.514607429504395 + ], + [ + "▁Kingston", + -12.514612197875977 + ], + [ + "▁READ", + -12.514634132385254 + ], + [ + "▁Agents", + -12.514763832092285 + ], + [ + "▁Beverly", + -12.514885902404785 + ], + [ + "WH", + -12.515032768249512 + ], + [ + "▁Jackie", + -12.515044212341309 + ], + [ + "quant", + -12.51504898071289 + ], + [ + "▁Sunny", + -12.515101432800293 + ], + [ + "▁histories", + -12.515113830566406 + ], + [ + "▁transformer", + -12.515169143676758 + ], + [ + "▁Patriots", + -12.515260696411133 + ], + [ + "▁downstream", + -12.515384674072266 + ], + [ + "▁Developing", + -12.515506744384766 + ], + [ + "▁Lithuania", + -12.515543937683105 + ], + [ + "maximise", + -12.515822410583496 + ], + [ + "issue", + -12.515868186950684 + ], + [ + "▁receptors", + -12.5159273147583 + ], + [ + "riot", + -12.515936851501465 + ], + [ + "140", + -12.516027450561523 + ], + [ + "▁justification", + -12.516156196594238 + ], + [ + "▁Riverside", + -12.516227722167969 + ], + [ + "▁canned", + -12.516274452209473 + ], + [ + "▁proportions", + -12.516385078430176 + ], + [ + "▁boxing", + -12.516441345214844 + ], + [ + "▁cosmetics", + -12.516677856445312 + ], + [ + "▁Topics", + -12.516732215881348 + ], + [ + "Needless", + -12.516741752624512 + ], + [ + "▁subscriber", + -12.516745567321777 + ], + [ + "▁HDMI", + -12.516754150390625 + ], + [ + "▁Elk", + -12.516777038574219 + ], + [ + "▁Reynolds", + -12.516813278198242 + ], + [ + "▁addictive", + -12.516823768615723 + ], + [ + "Design", + -12.517579078674316 + ], + [ + "▁enlarge", + -12.5176362991333 + ], + [ + "▁alterations", + -12.51778507232666 + ], + [ + "wild", + -12.51782512664795 + ], + [ + "▁Amar", + -12.518050193786621 + ], + [ + "▁handler", + -12.51809024810791 + ], + [ + "▁atomic", + -12.51816463470459 + ], + [ + "▁Fry", + -12.518184661865234 + ], + [ + "▁restroom", + -12.51826000213623 + ], + [ + "▁lifespan", + -12.518306732177734 + ], + [ + "205", + -12.518526077270508 + ], + [ + "▁drummer", + -12.518601417541504 + ], + [ + "boarding", + -12.518610000610352 + ], + [ + "▁Suites", + -12.518753051757812 + ], + [ + "▁swift", + -12.518780708312988 + ], + [ + "▁Actor", + -12.518805503845215 + ], + [ + "▁GST", + -12.51907730102539 + ], + [ + "ija", + -12.519476890563965 + ], + [ + "▁Inner", + -12.519783020019531 + ], + [ + "▁reconciliation", + -12.520020484924316 + ], + [ + "▁Hyderabad", + -12.520075798034668 + ], + [ + "▁Stockholm", + -12.520088195800781 + ], + [ + "▁revival", + -12.520146369934082 + ], + [ + "▁Bench", + -12.520177841186523 + ], + [ + "Pri", + -12.520218849182129 + ], + [ + "▁graceful", + -12.520329475402832 + ], + [ + "▁flair", + -12.520427703857422 + ], + [ + "▁Psalm", + -12.52052116394043 + ], + [ + "▁glaze", + -12.520689964294434 + ], + [ + "▁discrete", + -12.52071762084961 + ], + [ + "▁Specific", + -12.520868301391602 + ], + [ + "symmetric", + -12.520886421203613 + ], + [ + "▁comforting", + -12.5210542678833 + ], + [ + "▁soaking", + -12.521124839782715 + ], + [ + "beck", + -12.521146774291992 + ], + [ + "▁rescued", + -12.521183013916016 + ], + [ + "▁graphs", + -12.521211624145508 + ], + [ + "PEC", + -12.521291732788086 + ], + [ + "complete", + -12.521345138549805 + ], + [ + "▁Promo", + -12.521345138549805 + ], + [ + "▁Jewel", + -12.521398544311523 + ], + [ + "Key", + -12.5216064453125 + ], + [ + "ACS", + -12.521612167358398 + ], + [ + "▁hatred", + -12.52175235748291 + ], + [ + "▁Sunset", + -12.521781921386719 + ], + [ + "▁exploitation", + -12.522017478942871 + ], + [ + "▁tablespoon", + -12.522022247314453 + ], + [ + "▁Burns", + -12.522039413452148 + ], + [ + "▁contrasting", + -12.522087097167969 + ], + [ + "▁aquatic", + -12.52214241027832 + ], + [ + "pushes", + -12.522345542907715 + ], + [ + "▁Kot", + -12.522562980651855 + ], + [ + "▁Guinea", + -12.52263069152832 + ], + [ + "▁$250", + -12.522814750671387 + ], + [ + "▁Cute", + -12.52282428741455 + ], + [ + "▁1947", + -12.522941589355469 + ], + [ + "▁liquidity", + -12.52309513092041 + ], + [ + "▁slick", + -12.523102760314941 + ], + [ + "▁Witch", + -12.523246765136719 + ], + [ + "4-1", + -12.523520469665527 + ], + [ + "tension", + -12.523627281188965 + ], + [ + "▁tariffs", + -12.523633003234863 + ], + [ + "▁razor", + -12.523880004882812 + ], + [ + "ARS", + -12.524077415466309 + ], + [ + "▁originate", + -12.524328231811523 + ], + [ + "▁prerequisite", + -12.524415016174316 + ], + [ + "wyn", + -12.524468421936035 + ], + [ + "▁Salem", + -12.524543762207031 + ], + [ + "▁skeptical", + -12.524627685546875 + ], + [ + "▁medals", + -12.52482795715332 + ], + [ + "▁Nikon", + -12.524883270263672 + ], + [ + "tapped", + -12.524931907653809 + ], + [ + "▁Heath", + -12.524938583374023 + ], + [ + "▁merc", + -12.525148391723633 + ], + [ + "▁(13", + -12.525218963623047 + ], + [ + "▁fringe", + -12.525267601013184 + ], + [ + "▁$60", + -12.52531909942627 + ], + [ + "▁numb", + -12.525367736816406 + ], + [ + "odor", + -12.525457382202148 + ], + [ + "▁wrestle", + -12.525519371032715 + ], + [ + "▁crave", + -12.525546073913574 + ], + [ + "▁conscience", + -12.52577018737793 + ], + [ + "▁Identity", + -12.525798797607422 + ], + [ + "Preheat", + -12.525800704956055 + ], + [ + "Open", + -12.52585220336914 + ], + [ + "▁dire", + -12.525871276855469 + ], + [ + "▁maternal", + -12.525914192199707 + ], + [ + "▁exert", + -12.525946617126465 + ], + [ + "4.6", + -12.526141166687012 + ], + [ + "▁reconstruct", + -12.526150703430176 + ], + [ + "0-4", + -12.526331901550293 + ], + [ + "▁downstairs", + -12.526354789733887 + ], + [ + "▁increment", + -12.526391983032227 + ], + [ + "▁courteous", + -12.526397705078125 + ], + [ + "▁Converter", + -12.526407241821289 + ], + [ + "▁Lego", + -12.526410102844238 + ], + [ + "pak", + -12.526668548583984 + ], + [ + "▁Accent", + -12.526772499084473 + ], + [ + "mian", + -12.526982307434082 + ], + [ + "▁prayed", + -12.527060508728027 + ], + [ + "▁Icon", + -12.527068138122559 + ], + [ + "dim", + -12.527173042297363 + ], + [ + "▁flashing", + -12.527233123779297 + ], + [ + "Served", + -12.527280807495117 + ], + [ + "▁gradual", + -12.527459144592285 + ], + [ + "▁shorten", + -12.527519226074219 + ], + [ + "brush", + -12.527536392211914 + ], + [ + "rade", + -12.527701377868652 + ], + [ + "▁mutation", + -12.52791690826416 + ], + [ + "HOT", + -12.527965545654297 + ], + [ + "▁comedian", + -12.528035163879395 + ], + [ + "maybe", + -12.528080940246582 + ], + [ + "▁720", + -12.528103828430176 + ], + [ + "▁empowerment", + -12.528129577636719 + ], + [ + "▁squirrel", + -12.528251647949219 + ], + [ + "én", + -12.528355598449707 + ], + [ + "ен", + -12.528472900390625 + ], + [ + "▁Indonesian", + -12.528505325317383 + ], + [ + "6.1", + -12.52863597869873 + ], + [ + "WF", + -12.528637886047363 + ], + [ + "▁Difference", + -12.528642654418945 + ], + [ + "▁Ballet", + -12.528786659240723 + ], + [ + "▁troll", + -12.5288667678833 + ], + [ + "while", + -12.528932571411133 + ], + [ + "▁optimism", + -12.529078483581543 + ], + [ + "▁LLP", + -12.529279708862305 + ], + [ + "125", + -12.529438018798828 + ], + [ + "▁backward", + -12.529508590698242 + ], + [ + "▁Messenger", + -12.529536247253418 + ], + [ + "▁Fireplace", + -12.529666900634766 + ], + [ + "lusive", + -12.529702186584473 + ], + [ + "▁Myers", + -12.529751777648926 + ], + [ + "City", + -12.529757499694824 + ], + [ + "▁variance", + -12.52981948852539 + ], + [ + "▁Thing", + -12.529949188232422 + ], + [ + "▁precautions", + -12.530023574829102 + ], + [ + "▁WO", + -12.530172348022461 + ], + [ + "▁stump", + -12.530179023742676 + ], + [ + "partnered", + -12.530267715454102 + ], + [ + "▁mitigation", + -12.530431747436523 + ], + [ + "▁LTD", + -12.530434608459473 + ], + [ + "▁municipality", + -12.53044605255127 + ], + [ + "▁$13", + -12.530509948730469 + ], + [ + "NASDAQ", + -12.530599594116211 + ], + [ + "▁theatrical", + -12.530619621276855 + ], + [ + "▁Handle", + -12.530683517456055 + ], + [ + "▁Morrison", + -12.530853271484375 + ], + [ + "hey", + -12.530929565429688 + ], + [ + "▁loaf", + -12.531021118164062 + ], + [ + "▁neon", + -12.531177520751953 + ], + [ + "▁1955", + -12.531307220458984 + ], + [ + "▁Gul", + -12.53147029876709 + ], + [ + "john", + -12.531482696533203 + ], + [ + "▁Bran", + -12.531514167785645 + ], + [ + "yet", + -12.53151798248291 + ], + [ + "▁schematic", + -12.531612396240234 + ], + [ + "▁Seminar", + -12.531696319580078 + ], + [ + "▁Registry", + -12.53177547454834 + ], + [ + "corporation", + -12.531803131103516 + ], + [ + "Mr", + -12.531818389892578 + ], + [ + "▁256", + -12.531974792480469 + ], + [ + "▁ASP", + -12.532061576843262 + ], + [ + "▁Ginger", + -12.532115936279297 + ], + [ + "▁surgeons", + -12.532218933105469 + ], + [ + "pun", + -12.532242774963379 + ], + [ + "▁Ferguson", + -12.532279968261719 + ], + [ + "▁subset", + -12.532288551330566 + ], + [ + "zad", + -12.532289505004883 + ], + [ + "▁Gut", + -12.532347679138184 + ], + [ + "▁piping", + -12.532356262207031 + ], + [ + "▁Requirements", + -12.532392501831055 + ], + [ + "▁Grammy", + -12.53243350982666 + ], + [ + "▁pharma", + -12.532564163208008 + ], + [ + "▁Sacred", + -12.532674789428711 + ], + [ + "▁separator", + -12.53272819519043 + ], + [ + "▁vaccines", + -12.532809257507324 + ], + [ + "▁reinforcement", + -12.532846450805664 + ], + [ + "picture", + -12.533073425292969 + ], + [ + "▁upscale", + -12.53309154510498 + ], + [ + "CRA", + -12.533097267150879 + ], + [ + "▁axle", + -12.533173561096191 + ], + [ + "▁Vivi", + -12.533249855041504 + ], + [ + "cheap", + -12.533425331115723 + ], + [ + "▁Prairie", + -12.533571243286133 + ], + [ + "▁investigator", + -12.533656120300293 + ], + [ + "▁proficiency", + -12.53373908996582 + ], + [ + "▁coaster", + -12.533769607543945 + ], + [ + "▁(14", + -12.533782005310059 + ], + [ + "▁bells", + -12.533784866333008 + ], + [ + "▁stark", + -12.533791542053223 + ], + [ + "▁malfunction", + -12.533869743347168 + ], + [ + "▁Finnish", + -12.533885955810547 + ], + [ + "handle", + -12.534008026123047 + ], + [ + "▁Strategies", + -12.534075736999512 + ], + [ + "▁Cardiff", + -12.534154891967773 + ], + [ + "▁Feature", + -12.534217834472656 + ], + [ + "Continuing", + -12.534357070922852 + ], + [ + "▁Categories", + -12.534468650817871 + ], + [ + "RIC", + -12.534628868103027 + ], + [ + "▁Peri", + -12.534859657287598 + ], + [ + "▁Cleaner", + -12.534886360168457 + ], + [ + "224", + -12.534906387329102 + ], + [ + "▁chick", + -12.53492546081543 + ], + [ + "▁Fork", + -12.535017013549805 + ], + [ + "▁compliments", + -12.535181999206543 + ], + [ + "▁bladder", + -12.535200119018555 + ], + [ + "▁9:30", + -12.535252571105957 + ], + [ + "▁ISIS", + -12.535429000854492 + ], + [ + "▁abused", + -12.535468101501465 + ], + [ + "▁SharePoint", + -12.535505294799805 + ], + [ + "▁Bride", + -12.535506248474121 + ], + [ + "jon", + -12.535542488098145 + ], + [ + "▁seams", + -12.53554630279541 + ], + [ + "▁WV", + -12.535560607910156 + ], + [ + "▁$400", + -12.5355806350708 + ], + [ + "▁Parkinson", + -12.535701751708984 + ], + [ + "▁£10", + -12.535709381103516 + ], + [ + "▁1-3", + -12.535745620727539 + ], + [ + "earth", + -12.535880088806152 + ], + [ + "dorf", + -12.535957336425781 + ], + [ + "▁gran", + -12.536069869995117 + ], + [ + "▁mop", + -12.536075592041016 + ], + [ + "▁Mentor", + -12.536194801330566 + ], + [ + "▁grandson", + -12.536222457885742 + ], + [ + "▁simulations", + -12.536230087280273 + ], + [ + "tossed", + -12.536277770996094 + ], + [ + "▁grout", + -12.536357879638672 + ], + [ + "▁shear", + -12.53637981414795 + ], + [ + "▁Cosmetic", + -12.536606788635254 + ], + [ + "Name", + -12.536624908447266 + ], + [ + "▁vibr", + -12.536752700805664 + ], + [ + "bog", + -12.536908149719238 + ], + [ + "gaz", + -12.53697681427002 + ], + [ + "SPA", + -12.537074089050293 + ], + [ + "▁wreath", + -12.537097930908203 + ], + [ + "TN", + -12.537185668945312 + ], + [ + "▁crib", + -12.53721809387207 + ], + [ + "▁Exactly", + -12.537676811218262 + ], + [ + "watering", + -12.5377197265625 + ], + [ + "▁pouch", + -12.537956237792969 + ], + [ + "▁Brake", + -12.537961959838867 + ], + [ + "▁Trends", + -12.5379638671875 + ], + [ + "grave", + -12.538228988647461 + ], + [ + "▁Shri", + -12.538275718688965 + ], + [ + "▁Maz", + -12.538314819335938 + ], + [ + "▁warfare", + -12.538411140441895 + ], + [ + "▁zest", + -12.538447380065918 + ], + [ + "▁Distance", + -12.538532257080078 + ], + [ + "lak", + -12.538589477539062 + ], + [ + "▁Coconut", + -12.538650512695312 + ], + [ + "OSS", + -12.538721084594727 + ], + [ + "▁firearms", + -12.538725852966309 + ], + [ + "6-3", + -12.538803100585938 + ], + [ + "▁Somali", + -12.538912773132324 + ], + [ + "▁consolidate", + -12.538956642150879 + ], + [ + "NING", + -12.538966178894043 + ], + [ + "▁Cod", + -12.539022445678711 + ], + [ + "▁embarrassing", + -12.539072036743164 + ], + [ + "▁intrigued", + -12.539091110229492 + ], + [ + "Adapt", + -12.539161682128906 + ], + [ + "▁sixty", + -12.539222717285156 + ], + [ + "obliged", + -12.539273262023926 + ], + [ + "▁Scrap", + -12.53931999206543 + ], + [ + "124", + -12.539321899414062 + ], + [ + "common", + -12.53934097290039 + ], + [ + "▁sympathy", + -12.539545059204102 + ], + [ + "▁descend", + -12.539560317993164 + ], + [ + "▁courier", + -12.539597511291504 + ], + [ + "▁Providence", + -12.539619445800781 + ], + [ + "nix", + -12.539644241333008 + ], + [ + "▁Enforcement", + -12.539708137512207 + ], + [ + "▁ideology", + -12.53972053527832 + ], + [ + "▁Legislature", + -12.53982162475586 + ], + [ + "▁disruptive", + -12.539868354797363 + ], + [ + "▁Pakistani", + -12.539895057678223 + ], + [ + "▁GW", + -12.53994369506836 + ], + [ + "▁punish", + -12.540000915527344 + ], + [ + "▁Lancaster", + -12.540060043334961 + ], + [ + "▁cultivation", + -12.540103912353516 + ], + [ + "▁Performing", + -12.540200233459473 + ], + [ + "▁Flood", + -12.54024600982666 + ], + [ + "hren", + -12.540374755859375 + ], + [ + "phyl", + -12.540519714355469 + ], + [ + "▁plated", + -12.540586471557617 + ], + [ + "▁attendant", + -12.540624618530273 + ], + [ + "▁Stoke", + -12.54062557220459 + ], + [ + "▁$16", + -12.54063606262207 + ], + [ + "▁bombs", + -12.540654182434082 + ], + [ + "▁messenger", + -12.540895462036133 + ], + [ + "▁borrowers", + -12.540943145751953 + ], + [ + "▁MOD", + -12.541034698486328 + ], + [ + "strong", + -12.54114818572998 + ], + [ + "▁Fern", + -12.541351318359375 + ], + [ + "▁cruising", + -12.541519165039062 + ], + [ + "▁trays", + -12.541543006896973 + ], + [ + "▁criticized", + -12.541703224182129 + ], + [ + "▁subsidiaries", + -12.541744232177734 + ], + [ + "131", + -12.541783332824707 + ], + [ + "hay", + -12.541790008544922 + ], + [ + "▁107", + -12.54179859161377 + ], + [ + "▁smiled", + -12.542120933532715 + ], + [ + "▁Dunn", + -12.542641639709473 + ], + [ + "▁nozzle", + -12.54266357421875 + ], + [ + "/15", + -12.542671203613281 + ], + [ + "▁complie", + -12.542696952819824 + ], + [ + "▁Glo", + -12.542754173278809 + ], + [ + "▁perks", + -12.542850494384766 + ], + [ + "▁Plenty", + -12.54293441772461 + ], + [ + "▁Sever", + -12.542946815490723 + ], + [ + "trial", + -12.543004989624023 + ], + [ + "▁tighten", + -12.543103218078613 + ], + [ + "KK", + -12.543140411376953 + ], + [ + "▁Ful", + -12.543171882629395 + ], + [ + "▁PCB", + -12.543203353881836 + ], + [ + "▁Tribe", + -12.543289184570312 + ], + [ + "ZA", + -12.543316841125488 + ], + [ + "SIDE", + -12.543326377868652 + ], + [ + "▁radiant", + -12.543451309204102 + ], + [ + "▁improper", + -12.543553352355957 + ], + [ + "▁pertinent", + -12.543784141540527 + ], + [ + "▁cybersecurity", + -12.543863296508789 + ], + [ + "treatment", + -12.543867111206055 + ], + [ + "hopping", + -12.543985366821289 + ], + [ + "significant", + -12.544201850891113 + ], + [ + "hereby", + -12.54427719116211 + ], + [ + "▁2-1", + -12.544318199157715 + ], + [ + "▁Hugh", + -12.544434547424316 + ], + [ + "▁placebo", + -12.545014381408691 + ], + [ + "▁gums", + -12.54502010345459 + ], + [ + "▁Venus", + -12.545242309570312 + ], + [ + "▁feathers", + -12.545248031616211 + ], + [ + "▁Corr", + -12.545387268066406 + ], + [ + "▁terrifying", + -12.545430183410645 + ], + [ + "Tru", + -12.545439720153809 + ], + [ + "Connect", + -12.5455961227417 + ], + [ + "▁neatly", + -12.545598030090332 + ], + [ + "111", + -12.545633316040039 + ], + [ + "▁Progressive", + -12.545638084411621 + ], + [ + "▁Roo", + -12.545716285705566 + ], + [ + "6000", + -12.545758247375488 + ], + [ + "▁Dictionary", + -12.545770645141602 + ], + [ + "enstein", + -12.545836448669434 + ], + [ + "▁innovator", + -12.545841217041016 + ], + [ + "▁Extreme", + -12.545928001403809 + ], + [ + "/17", + -12.545931816101074 + ], + [ + "clear", + -12.546031951904297 + ], + [ + "elf", + -12.546061515808105 + ], + [ + "▁WhatsApp", + -12.546131134033203 + ], + [ + "▁attire", + -12.54619312286377 + ], + [ + "▁dependency", + -12.546208381652832 + ], + [ + "▁Cycl", + -12.546209335327148 + ], + [ + "▁hotspot", + -12.546258926391602 + ], + [ + "▁Mazda", + -12.546289443969727 + ], + [ + "▁workstation", + -12.546324729919434 + ], + [ + "▁restraint", + -12.546399116516113 + ], + [ + "▁gemstone", + -12.546464920043945 + ], + [ + "▁Omni", + -12.546513557434082 + ], + [ + "speaking", + -12.546591758728027 + ], + [ + "▁lobster", + -12.546683311462402 + ], + [ + "UAL", + -12.546714782714844 + ], + [ + "isch", + -12.54674243927002 + ], + [ + "▁GOOD", + -12.546760559082031 + ], + [ + "▁Olympia", + -12.546793937683105 + ], + [ + "▁Lutheran", + -12.546798706054688 + ], + [ + "-45", + -12.546992301940918 + ], + [ + "▁Fight", + -12.547038078308105 + ], + [ + "▁retract", + -12.5472412109375 + ], + [ + "▁Aim", + -12.547451972961426 + ], + [ + "EACH", + -12.547501564025879 + ], + [ + "▁Vet", + -12.547526359558105 + ], + [ + "▁Fraser", + -12.547586441040039 + ], + [ + "▁($1", + -12.547679901123047 + ], + [ + "▁shores", + -12.547781944274902 + ], + [ + "▁Dock", + -12.54780387878418 + ], + [ + "travel", + -12.54784107208252 + ], + [ + "sala", + -12.548013687133789 + ], + [ + "▁Gap", + -12.548127174377441 + ], + [ + "▁Quant", + -12.548226356506348 + ], + [ + "▁watercolor", + -12.54828929901123 + ], + [ + "VIEW", + -12.548290252685547 + ], + [ + "▁assertion", + -12.548487663269043 + ], + [ + "▁Binary", + -12.548492431640625 + ], + [ + "whichever", + -12.548587799072266 + ], + [ + "220", + -12.548593521118164 + ], + [ + "▁1944", + -12.548659324645996 + ], + [ + "▁Carrier", + -12.548667907714844 + ], + [ + "▁WOW", + -12.548707962036133 + ], + [ + "▁sushi", + -12.548720359802246 + ], + [ + "▁Continental", + -12.549072265625 + ], + [ + "▁Licensed", + -12.549123764038086 + ], + [ + "▁algae", + -12.549187660217285 + ], + [ + "▁Potential", + -12.549201011657715 + ], + [ + "▁condominium", + -12.549243927001953 + ], + [ + "grid", + -12.549247741699219 + ], + [ + "▁infusion", + -12.549345970153809 + ], + [ + "▁sigh", + -12.549346923828125 + ], + [ + "▁Gee", + -12.549439430236816 + ], + [ + "tub", + -12.549464225769043 + ], + [ + "▁Seth", + -12.549530982971191 + ], + [ + "▁apt", + -12.549678802490234 + ], + [ + "▁resonance", + -12.549814224243164 + ], + [ + "wag", + -12.550044059753418 + ], + [ + "▁pint", + -12.550069808959961 + ], + [ + "▁0.6", + -12.550132751464844 + ], + [ + "▁commenced", + -12.550294876098633 + ], + [ + "▁butterflies", + -12.55044174194336 + ], + [ + "▁Surrey", + -12.55056095123291 + ], + [ + "▁commuter", + -12.550670623779297 + ], + [ + "▁recount", + -12.550809860229492 + ], + [ + "▁facets", + -12.550835609436035 + ], + [ + "English", + -12.55085277557373 + ], + [ + "▁bible", + -12.551065444946289 + ], + [ + "▁unstable", + -12.551155090332031 + ], + [ + "▁ascertain", + -12.551218032836914 + ], + [ + "lair", + -12.551260948181152 + ], + [ + "campus", + -12.551304817199707 + ], + [ + "14)", + -12.551315307617188 + ], + [ + "▁Roma", + -12.551358222961426 + ], + [ + "▁sovereign", + -12.55146312713623 + ], + [ + "▁Saving", + -12.551572799682617 + ], + [ + "▁Exterior", + -12.551584243774414 + ], + [ + "▁Script", + -12.551789283752441 + ], + [ + "kick", + -12.552007675170898 + ], + [ + "serve", + -12.552007675170898 + ], + [ + "headquartered", + -12.552223205566406 + ], + [ + "▁wil", + -12.552412033081055 + ], + [ + "unpaid", + -12.552518844604492 + ], + [ + "▁intro", + -12.552541732788086 + ], + [ + "▁Monkey", + -12.55260944366455 + ], + [ + "▁fashioned", + -12.552680969238281 + ], + [ + "▁GmbH", + -12.55284309387207 + ], + [ + "▁surgeries", + -12.553017616271973 + ], + [ + "är", + -12.553077697753906 + ], + [ + "▁Indie", + -12.55312442779541 + ], + [ + "▁prescribe", + -12.55321216583252 + ], + [ + "▁questionable", + -12.553289413452148 + ], + [ + "▁tuck", + -12.553465843200684 + ], + [ + "kla", + -12.553629875183105 + ], + [ + "▁Git", + -12.553648948669434 + ], + [ + "esco", + -12.553728103637695 + ], + [ + "▁flames", + -12.553841590881348 + ], + [ + "▁discern", + -12.553889274597168 + ], + [ + "▁Pune", + -12.554027557373047 + ], + [ + "▁humid", + -12.554046630859375 + ], + [ + "enriched", + -12.554102897644043 + ], + [ + "▁antibiotic", + -12.554146766662598 + ], + [ + "▁wavelength", + -12.554259300231934 + ], + [ + "▁sage", + -12.554296493530273 + ], + [ + "thirds", + -12.554388999938965 + ], + [ + "Mbps", + -12.554441452026367 + ], + [ + "▁uploading", + -12.554458618164062 + ], + [ + "fulness", + -12.554489135742188 + ], + [ + "▁bathing", + -12.554603576660156 + ], + [ + "Armed", + -12.554618835449219 + ], + [ + "▁persuade", + -12.554656982421875 + ], + [ + "▁superstar", + -12.554677963256836 + ], + [ + "▁Sisters", + -12.55469036102295 + ], + [ + "ROW", + -12.554697036743164 + ], + [ + "▁800-3", + -12.554963111877441 + ], + [ + "▁Insert", + -12.555015563964844 + ], + [ + "▁relieved", + -12.55504035949707 + ], + [ + "shake", + -12.555047035217285 + ], + [ + "▁Brewing", + -12.55505084991455 + ], + [ + "▁intuition", + -12.555249214172363 + ], + [ + "▁sideline", + -12.555286407470703 + ], + [ + "▁marvelous", + -12.555304527282715 + ], + [ + "▁Swim", + -12.55531120300293 + ], + [ + "▁trimming", + -12.555536270141602 + ], + [ + "▁skating", + -12.555553436279297 + ], + [ + "▁Wii", + -12.555624008178711 + ], + [ + "▁differentiation", + -12.555634498596191 + ], + [ + "▁ripped", + -12.555704116821289 + ], + [ + "▁Leslie", + -12.555747032165527 + ], + [ + "▁AIDS", + -12.55577278137207 + ], + [ + "Super", + -12.555780410766602 + ], + [ + "Call", + -12.555821418762207 + ], + [ + "▁Dub", + -12.555839538574219 + ], + [ + "▁Huge", + -12.556021690368652 + ], + [ + "protein", + -12.556035995483398 + ], + [ + "▁grading", + -12.556060791015625 + ], + [ + "▁surrounds", + -12.556161880493164 + ], + [ + "▁Peterson", + -12.556188583374023 + ], + [ + "▁1600", + -12.556360244750977 + ], + [ + "▁Newsletter", + -12.556370735168457 + ], + [ + "▁Richardson", + -12.55643367767334 + ], + [ + "istan", + -12.556544303894043 + ], + [ + "▁Tibetan", + -12.556599617004395 + ], + [ + "▁usability", + -12.55666446685791 + ], + [ + "▁capitalism", + -12.55670166015625 + ], + [ + "▁vitality", + -12.55670166015625 + ], + [ + "whereby", + -12.556857109069824 + ], + [ + "▁(#", + -12.55701732635498 + ], + [ + "DNA", + -12.557025909423828 + ], + [ + "▁restructuring", + -12.557086944580078 + ], + [ + "▁Hungarian", + -12.557316780090332 + ], + [ + "▁Accident", + -12.55760383605957 + ], + [ + "▁kettle", + -12.557624816894531 + ], + [ + "2.2", + -12.557693481445312 + ], + [ + "vous", + -12.557695388793945 + ], + [ + "ienne", + -12.557716369628906 + ], + [ + "▁averaging", + -12.558064460754395 + ], + [ + "ARA", + -12.558107376098633 + ], + [ + "ön", + -12.55826473236084 + ], + [ + "▁mentality", + -12.558289527893066 + ], + [ + "▁refrigerate", + -12.558294296264648 + ], + [ + "▁DON", + -12.558342933654785 + ], + [ + "Cam", + -12.558573722839355 + ], + [ + "physical", + -12.558601379394531 + ], + [ + "▁ikea", + -12.558624267578125 + ], + [ + "▁tactic", + -12.558712005615234 + ], + [ + "▁starch", + -12.558796882629395 + ], + [ + "▁Mueller", + -12.558981895446777 + ], + [ + "▁beneficiary", + -12.558985710144043 + ], + [ + "▁disposition", + -12.55911922454834 + ], + [ + "▁Quinn", + -12.55916976928711 + ], + [ + "TIN", + -12.55920124053955 + ], + [ + "▁Recording", + -12.55926513671875 + ], + [ + "shadow", + -12.55933952331543 + ], + [ + "▁preset", + -12.559344291687012 + ], + [ + "feel", + -12.5594482421875 + ], + [ + "▁Capacity", + -12.559735298156738 + ], + [ + "▁slaughter", + -12.559849739074707 + ], + [ + "▁honeymoon", + -12.559920310974121 + ], + [ + "▁migrate", + -12.559958457946777 + ], + [ + "trix", + -12.560047149658203 + ], + [ + "▁heavenly", + -12.560192108154297 + ], + [ + "▁stigma", + -12.56026840209961 + ], + [ + "▁weaving", + -12.560283660888672 + ], + [ + "Ray", + -12.560346603393555 + ], + [ + "▁lymph", + -12.560408592224121 + ], + [ + "▁9/11", + -12.560670852661133 + ], + [ + "utu", + -12.560736656188965 + ], + [ + "▁Devices", + -12.560837745666504 + ], + [ + "▁1939", + -12.56092357635498 + ], + [ + "▁drizzle", + -12.561002731323242 + ], + [ + "staff", + -12.561127662658691 + ], + [ + "resolving", + -12.561134338378906 + ], + [ + "▁centerpiece", + -12.561199188232422 + ], + [ + "inson", + -12.561246871948242 + ], + [ + "▁vouchers", + -12.561285018920898 + ], + [ + "nada", + -12.561326026916504 + ], + [ + "▁borrower", + -12.561371803283691 + ], + [ + "▁4%", + -12.56141185760498 + ], + [ + "▁Advice", + -12.561461448669434 + ], + [ + "▁sketches", + -12.561482429504395 + ], + [ + "▁Password", + -12.561483383178711 + ], + [ + "▁displaced", + -12.56152629852295 + ], + [ + "▁Pleasant", + -12.561637878417969 + ], + [ + "▁Tweet", + -12.561639785766602 + ], + [ + "▁Ske", + -12.561676025390625 + ], + [ + "raise", + -12.561698913574219 + ], + [ + "▁urgency", + -12.561882019042969 + ], + [ + "▁Valve", + -12.561949729919434 + ], + [ + "▁Manila", + -12.562152862548828 + ], + [ + "▁imposing", + -12.562389373779297 + ], + [ + "▁Kane", + -12.562444686889648 + ], + [ + "▁pancakes", + -12.562735557556152 + ], + [ + "▁speedy", + -12.562790870666504 + ], + [ + "uid", + -12.562849998474121 + ], + [ + "▁Combined", + -12.562851905822754 + ], + [ + "3-0", + -12.562884330749512 + ], + [ + "▁breaker", + -12.562959671020508 + ], + [ + "spiration", + -12.563017845153809 + ], + [ + "▁pottery", + -12.563026428222656 + ], + [ + "▁garnish", + -12.563206672668457 + ], + [ + "▁bending", + -12.563374519348145 + ], + [ + "▁spirituality", + -12.56342601776123 + ], + [ + "▁melody", + -12.56342887878418 + ], + [ + "▁hitch", + -12.563492774963379 + ], + [ + "▁endpoint", + -12.563590049743652 + ], + [ + "Game", + -12.563942909240723 + ], + [ + "utz", + -12.563944816589355 + ], + [ + "020", + -12.563972473144531 + ], + [ + "3.8", + -12.563994407653809 + ], + [ + "▁revenge", + -12.56418228149414 + ], + [ + "▁seldom", + -12.564186096191406 + ], + [ + "▁Adventures", + -12.564201354980469 + ], + [ + "▁growers", + -12.564362525939941 + ], + [ + "▁Cornell", + -12.564599990844727 + ], + [ + "▁Programming", + -12.564642906188965 + ], + [ + "▁Peel", + -12.564724922180176 + ], + [ + "▁tedious", + -12.564778327941895 + ], + [ + "▁lipstick", + -12.564803123474121 + ], + [ + "discover", + -12.564811706542969 + ], + [ + "▁paramount", + -12.564933776855469 + ], + [ + "File", + -12.56494140625 + ], + [ + "ле", + -12.565049171447754 + ], + [ + "dox", + -12.565107345581055 + ], + [ + "▁africa", + -12.565108299255371 + ], + [ + "operation", + -12.565164566040039 + ], + [ + "CIO", + -12.565303802490234 + ], + [ + "▁Overview", + -12.565476417541504 + ], + [ + "▁hobbies", + -12.565574645996094 + ], + [ + "▁reusable", + -12.565805435180664 + ], + [ + "▁latch", + -12.565855026245117 + ], + [ + "▁feared", + -12.56589412689209 + ], + [ + "nagar", + -12.566004753112793 + ], + [ + "2-2", + -12.566132545471191 + ], + [ + "pipe", + -12.566136360168457 + ], + [ + "holic", + -12.56616497039795 + ], + [ + ":26", + -12.566474914550781 + ], + [ + "VB", + -12.56666374206543 + ], + [ + "topic", + -12.566875457763672 + ], + [ + "ivi", + -12.566892623901367 + ], + [ + "▁archaeological", + -12.566964149475098 + ], + [ + "950", + -12.5670804977417 + ], + [ + "▁florist", + -12.567240715026855 + ], + [ + "chee", + -12.567329406738281 + ], + [ + "▁mast", + -12.567398071289062 + ], + [ + "▁unmatched", + -12.567429542541504 + ], + [ + "▁ruined", + -12.567471504211426 + ], + [ + "pivotal", + -12.567495346069336 + ], + [ + "▁Worcester", + -12.56760311126709 + ], + [ + "Mari", + -12.567659378051758 + ], + [ + "▁Rabbi", + -12.567834854125977 + ], + [ + "unless", + -12.567845344543457 + ], + [ + "▁inheritance", + -12.567879676818848 + ], + [ + "▁abound", + -12.568008422851562 + ], + [ + "Numerous", + -12.568069458007812 + ], + [ + "ghan", + -12.56810188293457 + ], + [ + "▁classmates", + -12.56814193725586 + ], + [ + "jee", + -12.568222999572754 + ], + [ + "▁Plug", + -12.568415641784668 + ], + [ + "▁Marty", + -12.568497657775879 + ], + [ + "▁11:00", + -12.568522453308105 + ], + [ + "egg", + -12.56856632232666 + ], + [ + "▁stunt", + -12.568602561950684 + ], + [ + "▁soothe", + -12.568605422973633 + ], + [ + "▁solidarity", + -12.56882381439209 + ], + [ + "▁Lotus", + -12.568950653076172 + ], + [ + "▁Legion", + -12.569008827209473 + ], + [ + "ATCH", + -12.569091796875 + ], + [ + "▁Riley", + -12.569168090820312 + ], + [ + "▁chilled", + -12.569214820861816 + ], + [ + "▁cork", + -12.569303512573242 + ], + [ + "▁Alexandria", + -12.569395065307617 + ], + [ + "▁Dat", + -12.56939697265625 + ], + [ + "▁disagreement", + -12.569499969482422 + ], + [ + "AKE", + -12.569604873657227 + ], + [ + "mig", + -12.569714546203613 + ], + [ + "▁Carnival", + -12.569753646850586 + ], + [ + "▁directories", + -12.569875717163086 + ], + [ + "ро", + -12.569950103759766 + ], + [ + "ün", + -12.569979667663574 + ], + [ + "Live", + -12.570023536682129 + ], + [ + "▁Merchant", + -12.570184707641602 + ], + [ + "IAL", + -12.570198059082031 + ], + [ + "▁Evil", + -12.570444107055664 + ], + [ + "▁Jac", + -12.570554733276367 + ], + [ + "download", + -12.570569038391113 + ], + [ + "▁progressed", + -12.570696830749512 + ], + [ + "▁Kenneth", + -12.570745468139648 + ], + [ + "▁refrain", + -12.570876121520996 + ], + [ + "6-2", + -12.570915222167969 + ], + [ + "▁Slip", + -12.57093620300293 + ], + [ + "▁Yamaha", + -12.570959091186523 + ], + [ + "music", + -12.571043014526367 + ], + [ + "▁walkway", + -12.571072578430176 + ], + [ + "▁vocational", + -12.571127891540527 + ], + [ + "▁Soldier", + -12.571304321289062 + ], + [ + "▁Brock", + -12.571427345275879 + ], + [ + "RW", + -12.571455001831055 + ], + [ + "▁RED", + -12.571474075317383 + ], + [ + "China", + -12.57148265838623 + ], + [ + "▁titanium", + -12.571513175964355 + ], + [ + "7.0", + -12.571579933166504 + ], + [ + "▁balloons", + -12.571756362915039 + ], + [ + "▁perpetual", + -12.571793556213379 + ], + [ + "▁pom", + -12.571876525878906 + ], + [ + "▁Maj", + -12.571945190429688 + ], + [ + "▁Communist", + -12.572054862976074 + ], + [ + "▁fluorescent", + -12.5720853805542 + ], + [ + "▁rituals", + -12.572125434875488 + ], + [ + "▁Chap", + -12.572128295898438 + ], + [ + "▁Bid", + -12.57213020324707 + ], + [ + "▁Drill", + -12.572243690490723 + ], + [ + "▁enquiries", + -12.572259902954102 + ], + [ + "▁Pep", + -12.572264671325684 + ], + [ + "bike", + -12.572458267211914 + ], + [ + "uku", + -12.57252025604248 + ], + [ + "spring", + -12.572608947753906 + ], + [ + "▁MLB", + -12.572625160217285 + ], + [ + "▁skeleton", + -12.572843551635742 + ], + [ + "exposing", + -12.572941780090332 + ], + [ + "▁stash", + -12.572975158691406 + ], + [ + "▁toughest", + -12.572983741760254 + ], + [ + "▁displacement", + -12.573058128356934 + ], + [ + "▁lavish", + -12.573164939880371 + ], + [ + "▁Prison", + -12.573171615600586 + ], + [ + "dream", + -12.573212623596191 + ], + [ + "▁Pavilion", + -12.57325267791748 + ], + [ + "mund", + -12.573271751403809 + ], + [ + "▁(2008)", + -12.573302268981934 + ], + [ + "coding", + -12.573345184326172 + ], + [ + "phase", + -12.573379516601562 + ], + [ + "utton", + -12.573413848876953 + ], + [ + "central", + -12.573419570922852 + ], + [ + "▁collaborator", + -12.5735445022583 + ], + [ + "nath", + -12.573686599731445 + ], + [ + "gies", + -12.573697090148926 + ], + [ + "▁carrot", + -12.573845863342285 + ], + [ + "▁refreshed", + -12.573877334594727 + ], + [ + "▁chilly", + -12.573904037475586 + ], + [ + "different", + -12.573963165283203 + ], + [ + "compelled", + -12.574094772338867 + ], + [ + "▁Etsy", + -12.574200630187988 + ], + [ + "▁Supplement", + -12.57421875 + ], + [ + "▁fullest", + -12.574234008789062 + ], + [ + "▁catastrophic", + -12.574246406555176 + ], + [ + "7.1", + -12.574264526367188 + ], + [ + "LED", + -12.574355125427246 + ], + [ + "▁benches", + -12.574362754821777 + ], + [ + "▁1-800-", + -12.574365615844727 + ], + [ + "▁unlocked", + -12.57441234588623 + ], + [ + "7-8", + -12.574414253234863 + ], + [ + "steroid", + -12.574444770812988 + ], + [ + "Look", + -12.57447624206543 + ], + [ + "▁Hitler", + -12.574767112731934 + ], + [ + "▁1954", + -12.575141906738281 + ], + [ + "▁pony", + -12.57515811920166 + ], + [ + "▁chap", + -12.575207710266113 + ], + [ + "▁authorize", + -12.57535457611084 + ], + [ + "▁Ost", + -12.57564926147461 + ], + [ + "VIS", + -12.575675964355469 + ], + [ + "▁campground", + -12.57570743560791 + ], + [ + "biz", + -12.575759887695312 + ], + [ + "▁Luck", + -12.576031684875488 + ], + [ + "club", + -12.576202392578125 + ], + [ + "traction", + -12.576250076293945 + ], + [ + "fide", + -12.576263427734375 + ], + [ + "▁Marion", + -12.576353073120117 + ], + [ + "traditional", + -12.57637882232666 + ], + [ + "▁Cou", + -12.576400756835938 + ], + [ + "before", + -12.576443672180176 + ], + [ + "▁dread", + -12.576469421386719 + ], + [ + "awaited", + -12.576580047607422 + ], + [ + "▁Precision", + -12.576615333557129 + ], + [ + "▁distributing", + -12.576618194580078 + ], + [ + "▁Rid", + -12.576635360717773 + ], + [ + "▁Marriott", + -12.57664680480957 + ], + [ + "240", + -12.576650619506836 + ], + [ + "/2018", + -12.576910018920898 + ], + [ + "▁Feeling", + -12.576951026916504 + ], + [ + "▁Mesa", + -12.577101707458496 + ], + [ + "▁MacBook", + -12.57711410522461 + ], + [ + "▁Exit", + -12.577166557312012 + ], + [ + "ROM", + -12.577287673950195 + ], + [ + "XX", + -12.57736873626709 + ], + [ + "▁apprentice", + -12.577425003051758 + ], + [ + "TING", + -12.577766418457031 + ], + [ + "▁motherboard", + -12.577788352966309 + ], + [ + "▁piston", + -12.578166961669922 + ], + [ + "▁rebuilding", + -12.578221321105957 + ], + [ + "▁Molly", + -12.578359603881836 + ], + [ + "▁teamwork", + -12.578381538391113 + ], + [ + "▁Lightning", + -12.578398704528809 + ], + [ + "6-1", + -12.578511238098145 + ], + [ + "▁literal", + -12.5786771774292 + ], + [ + "mote", + -12.578764915466309 + ], + [ + "▁confine", + -12.57894229888916 + ], + [ + "ension", + -12.579085350036621 + ], + [ + "▁fragments", + -12.579089164733887 + ], + [ + "▁scal", + -12.579174995422363 + ], + [ + "▁Hamburg", + -12.579193115234375 + ], + [ + "▁Lopez", + -12.579404830932617 + ], + [ + "▁regeneration", + -12.57949447631836 + ], + [ + "vention", + -12.579588890075684 + ], + [ + "▁cousins", + -12.579606056213379 + ], + [ + "▁Calvin", + -12.579612731933594 + ], + [ + "▁Wesley", + -12.579632759094238 + ], + [ + "denying", + -12.579666137695312 + ], + [ + "▁volcanic", + -12.579699516296387 + ], + [ + "▁Beef", + -12.579736709594727 + ], + [ + "▁mistaken", + -12.579800605773926 + ], + [ + "digit", + -12.579955101013184 + ], + [ + "pok", + -12.580015182495117 + ], + [ + "fashioned", + -12.5800199508667 + ], + [ + "▁contraction", + -12.580087661743164 + ], + [ + "▁addicted", + -12.580114364624023 + ], + [ + "▁toddlers", + -12.580167770385742 + ], + [ + "▁Funding", + -12.58018684387207 + ], + [ + "ambo", + -12.58022689819336 + ], + [ + "▁cyclists", + -12.58022689819336 + ], + [ + "▁combustion", + -12.580227851867676 + ], + [ + "▁Zach", + -12.580411911010742 + ], + [ + "▁10:30", + -12.580429077148438 + ], + [ + "▁merits", + -12.58044719696045 + ], + [ + "▁torch", + -12.580460548400879 + ], + [ + "Pack", + -12.580525398254395 + ], + [ + "▁Eugene", + -12.580621719360352 + ], + [ + "▁Slav", + -12.580662727355957 + ], + [ + "▁replay", + -12.580852508544922 + ], + [ + "▁Universities", + -12.5810546875 + ], + [ + "▁Sonic", + -12.58117961883545 + ], + [ + "▁Utility", + -12.581351280212402 + ], + [ + "mba", + -12.581456184387207 + ], + [ + "▁Raleigh", + -12.581631660461426 + ], + [ + "▁Brew", + -12.581731796264648 + ], + [ + "▁franc", + -12.581778526306152 + ], + [ + "▁statistically", + -12.581778526306152 + ], + [ + "Pacific", + -12.581905364990234 + ], + [ + "▁groceries", + -12.581934928894043 + ], + [ + "▁terribly", + -12.582053184509277 + ], + [ + "▁downloadable", + -12.582161903381348 + ], + [ + "▁ebay", + -12.582242965698242 + ], + [ + "Source", + -12.582330703735352 + ], + [ + "▁dude", + -12.582343101501465 + ], + [ + "▁Retirement", + -12.582406997680664 + ], + [ + "stay", + -12.582558631896973 + ], + [ + "sons", + -12.582562446594238 + ], + [ + "▁societal", + -12.582701683044434 + ], + [ + "▁candid", + -12.582706451416016 + ], + [ + "▁Penny", + -12.582744598388672 + ], + [ + "VP", + -12.582867622375488 + ], + [ + "▁Zar", + -12.582914352416992 + ], + [ + "▁embellish", + -12.582990646362305 + ], + [ + "▁distressed", + -12.582993507385254 + ], + [ + "▁Shock", + -12.58316707611084 + ], + [ + "Dec", + -12.58319091796875 + ], + [ + "4.7", + -12.583216667175293 + ], + [ + "▁(6)", + -12.583353996276855 + ], + [ + "▁uphold", + -12.583378791809082 + ], + [ + "▁Easily", + -12.583410263061523 + ], + [ + "nag", + -12.583494186401367 + ], + [ + "▁vault", + -12.583537101745605 + ], + [ + "whether", + -12.583674430847168 + ], + [ + "▁disgust", + -12.583768844604492 + ], + [ + "▁Marble", + -12.583972930908203 + ], + [ + "Shop", + -12.584076881408691 + ], + [ + "centre", + -12.584187507629395 + ], + [ + "▁coupling", + -12.584208488464355 + ], + [ + "▁sneakers", + -12.584299087524414 + ], + [ + "ranging", + -12.584330558776855 + ], + [ + "▁Syndrome", + -12.584354400634766 + ], + [ + "▁discharged", + -12.584386825561523 + ], + [ + "▁Notre", + -12.584750175476074 + ], + [ + "ntine", + -12.58476448059082 + ], + [ + "▁afterward", + -12.584824562072754 + ], + [ + "520", + -12.584946632385254 + ], + [ + "▁successive", + -12.58501148223877 + ], + [ + "fried", + -12.585044860839844 + ], + [ + "▁Dominican", + -12.585058212280273 + ], + [ + "▁amusement", + -12.585064888000488 + ], + [ + "▁anatomy", + -12.585247039794922 + ], + [ + "▁feasibility", + -12.585299491882324 + ], + [ + "▁Volunteers", + -12.58548355102539 + ], + [ + "▁Saturn", + -12.585551261901855 + ], + [ + "▁boating", + -12.585585594177246 + ], + [ + "▁raffle", + -12.585761070251465 + ], + [ + "rust", + -12.585772514343262 + ], + [ + "TEC", + -12.58586597442627 + ], + [ + "▁nonsense", + -12.585969924926758 + ], + [ + "▁subsidies", + -12.58600902557373 + ], + [ + "▁resigned", + -12.58608341217041 + ], + [ + "ookie", + -12.586084365844727 + ], + [ + "▁trumpet", + -12.586159706115723 + ], + [ + "▁reconnect", + -12.586305618286133 + ], + [ + "▁aide", + -12.58642292022705 + ], + [ + "DIC", + -12.586427688598633 + ], + [ + "▁sap", + -12.586494445800781 + ], + [ + "▁injected", + -12.586652755737305 + ], + [ + "mounted", + -12.586719512939453 + ], + [ + "▁concealed", + -12.58674144744873 + ], + [ + "136", + -12.586775779724121 + ], + [ + "▁RPG", + -12.586784362792969 + ], + [ + "▁minimise", + -12.586847305297852 + ], + [ + "▁Rust", + -12.587089538574219 + ], + [ + "running", + -12.587186813354492 + ], + [ + "▁decree", + -12.587272644042969 + ], + [ + "3-3", + -12.587372779846191 + ], + [ + "▁Describe", + -12.587505340576172 + ], + [ + "▁unacceptable", + -12.587608337402344 + ], + [ + "▁refurbished", + -12.587709426879883 + ], + [ + "wolves", + -12.587726593017578 + ], + [ + "▁flux", + -12.587790489196777 + ], + [ + "▁ornament", + -12.587971687316895 + ], + [ + "ASA", + -12.58806037902832 + ], + [ + "▁presidency", + -12.588141441345215 + ], + [ + "▁Loved", + -12.588201522827148 + ], + [ + "ти", + -12.588221549987793 + ], + [ + "yce", + -12.588224411010742 + ], + [ + "option", + -12.58834171295166 + ], + [ + "▁miserable", + -12.588383674621582 + ], + [ + "whi", + -12.58857536315918 + ], + [ + "▁whitening", + -12.588662147521973 + ], + [ + "egation", + -12.588706970214844 + ], + [ + "▁1946", + -12.588729858398438 + ], + [ + "▁vineyard", + -12.588926315307617 + ], + [ + "▁swimmer", + -12.589046478271484 + ], + [ + "▁Prix", + -12.589323997497559 + ], + [ + "▁Forget", + -12.589446067810059 + ], + [ + "▁omega", + -12.58945083618164 + ], + [ + "▁Booth", + -12.589462280273438 + ], + [ + "640", + -12.589524269104004 + ], + [ + "FN", + -12.58957290649414 + ], + [ + "MY", + -12.589672088623047 + ], + [ + "▁Wealth", + -12.589705467224121 + ], + [ + "▁weld", + -12.589757919311523 + ], + [ + "▁Facilities", + -12.589802742004395 + ], + [ + "ases", + -12.589865684509277 + ], + [ + "▁Practical", + -12.590034484863281 + ], + [ + "▁HQ", + -12.590044975280762 + ], + [ + "▁enacted", + -12.590152740478516 + ], + [ + "ordinate", + -12.59019660949707 + ], + [ + "▁percussion", + -12.590224266052246 + ], + [ + "▁Palo", + -12.590404510498047 + ], + [ + "▁rallie", + -12.590457916259766 + ], + [ + "▁Myth", + -12.59055233001709 + ], + [ + "▁refusal", + -12.590575218200684 + ], + [ + "▁engraved", + -12.5906343460083 + ], + [ + "▁embroidered", + -12.590694427490234 + ], + [ + "▁batting", + -12.59082317352295 + ], + [ + "▁aqua", + -12.590825080871582 + ], + [ + "▁Started", + -12.590947151184082 + ], + [ + "▁unrelated", + -12.590985298156738 + ], + [ + "▁1953", + -12.591095924377441 + ], + [ + "▁Comic", + -12.591107368469238 + ], + [ + "▁flute", + -12.591211318969727 + ], + [ + "▁Yankees", + -12.591286659240723 + ], + [ + "TX", + -12.591297149658203 + ], + [ + "▁clinicians", + -12.591368675231934 + ], + [ + "RAC", + -12.591379165649414 + ], + [ + "▁Gram", + -12.59149169921875 + ], + [ + "▁aspire", + -12.59160041809082 + ], + [ + "authorised", + -12.591828346252441 + ], + [ + "▁parasite", + -12.591870307922363 + ], + [ + "zier", + -12.591954231262207 + ], + [ + "uca", + -12.591991424560547 + ], + [ + "▁algebra", + -12.592002868652344 + ], + [ + "▁Cutting", + -12.592122077941895 + ], + [ + "▁Swimming", + -12.592267990112305 + ], + [ + "SES", + -12.592338562011719 + ], + [ + "▁haircut", + -12.592428207397461 + ], + [ + "▁landlords", + -12.592451095581055 + ], + [ + "▁(2007)", + -12.592514991760254 + ], + [ + "▁molecule", + -12.592714309692383 + ], + [ + "▁fairness", + -12.592753410339355 + ], + [ + "▁foolish", + -12.59277057647705 + ], + [ + "▁Davidson", + -12.592812538146973 + ], + [ + "7.2", + -12.592832565307617 + ], + [ + "▁rave", + -12.593121528625488 + ], + [ + "▁CAP", + -12.593195915222168 + ], + [ + "▁sati", + -12.593221664428711 + ], + [ + "▁stringent", + -12.593229293823242 + ], + [ + "grain", + -12.593297004699707 + ], + [ + "▁entrust", + -12.593307495117188 + ], + [ + "▁888-3", + -12.593317031860352 + ], + [ + "adia", + -12.593334197998047 + ], + [ + "▁Winston", + -12.593400001525879 + ], + [ + "208", + -12.593403816223145 + ], + [ + "▁Dolphin", + -12.593425750732422 + ], + [ + "▁trending", + -12.593454360961914 + ], + [ + "▁noun", + -12.59350299835205 + ], + [ + "▁oily", + -12.593632698059082 + ], + [ + "OOM", + -12.593796730041504 + ], + [ + "▁Airways", + -12.593899726867676 + ], + [ + "FG", + -12.594063758850098 + ], + [ + "▁Objective", + -12.594178199768066 + ], + [ + "ggs", + -12.594259262084961 + ], + [ + "▁Fuji", + -12.594337463378906 + ], + [ + "▁Gha", + -12.594381332397461 + ], + [ + "▁semantic", + -12.59438705444336 + ], + [ + "zol", + -12.594388008117676 + ], + [ + "▁Diesel", + -12.594419479370117 + ], + [ + "▁buddies", + -12.594447135925293 + ], + [ + "▁Rab", + -12.594626426696777 + ], + [ + "▁Joyce", + -12.59467887878418 + ], + [ + "▁pulmonary", + -12.594684600830078 + ], + [ + "▁renamed", + -12.594719886779785 + ], + [ + "än", + -12.594853401184082 + ], + [ + "▁Tul", + -12.595003128051758 + ], + [ + "▁bowel", + -12.595065116882324 + ], + [ + "▁(50", + -12.595087051391602 + ], + [ + "amidst", + -12.595129013061523 + ], + [ + "▁autonomy", + -12.595221519470215 + ], + [ + "mpton", + -12.59522819519043 + ], + [ + "kil", + -12.595264434814453 + ], + [ + "▁distal", + -12.595319747924805 + ], + [ + "▁Deco", + -12.595414161682129 + ], + [ + "▁CCTV", + -12.595423698425293 + ], + [ + "▁Congressional", + -12.595544815063477 + ], + [ + "▁headboard", + -12.59559154510498 + ], + [ + "▁specimens", + -12.59565258026123 + ], + [ + "243", + -12.595732688903809 + ], + [ + "coveted", + -12.595927238464355 + ], + [ + "▁backbone", + -12.59597110748291 + ], + [ + "▁helm", + -12.59597110748291 + ], + [ + "ов", + -12.596070289611816 + ], + [ + "▁implicit", + -12.596332550048828 + ], + [ + "▁thunder", + -12.596343040466309 + ], + [ + "WG", + -12.596385955810547 + ], + [ + "▁Memo", + -12.596407890319824 + ], + [ + "▁readiness", + -12.596407890319824 + ], + [ + "idio", + -12.596468925476074 + ], + [ + "▁camper", + -12.596694946289062 + ], + [ + "counter", + -12.596719741821289 + ], + [ + "▁Organ", + -12.596736907958984 + ], + [ + "▁Thousands", + -12.597071647644043 + ], + [ + "Find", + -12.597132682800293 + ], + [ + "▁LEGO", + -12.597163200378418 + ], + [ + "▁Salesforce", + -12.597244262695312 + ], + [ + "▁meteor", + -12.597251892089844 + ], + [ + "▁trusting", + -12.597285270690918 + ], + [ + "▁Guess", + -12.5972900390625 + ], + [ + "▁preaching", + -12.597603797912598 + ], + [ + "▁Reagan", + -12.59779167175293 + ], + [ + "▁bolster", + -12.597804069519043 + ], + [ + "▁sober", + -12.597886085510254 + ], + [ + "▁baptism", + -12.59797191619873 + ], + [ + "▁plague", + -12.598006248474121 + ], + [ + "▁jumper", + -12.598023414611816 + ], + [ + "•", + -12.59802532196045 + ], + [ + "▁Junction", + -12.598031044006348 + ], + [ + "▁Vita", + -12.598040580749512 + ], + [ + "▁organising", + -12.59810733795166 + ], + [ + "▁Angle", + -12.598135948181152 + ], + [ + "esca", + -12.598143577575684 + ], + [ + "▁Wade", + -12.598155975341797 + ], + [ + "▁Ranger", + -12.598245620727539 + ], + [ + "▁awaken", + -12.598312377929688 + ], + [ + "▁neurological", + -12.598380088806152 + ], + [ + "▁Gur", + -12.598430633544922 + ], + [ + "▁incumbent", + -12.598451614379883 + ], + [ + "Dia", + -12.598480224609375 + ], + [ + "▁postage", + -12.598515510559082 + ], + [ + "haz", + -12.598733901977539 + ], + [ + "▁Temperature", + -12.598751068115234 + ], + [ + "putation", + -12.59888744354248 + ], + [ + "ovich", + -12.599032402038574 + ], + [ + "▁poetic", + -12.599041938781738 + ], + [ + "▁standpoint", + -12.599689483642578 + ], + [ + "370", + -12.599717140197754 + ], + [ + "▁Vine", + -12.599748611450195 + ], + [ + "enz", + -12.599936485290527 + ], + [ + "▁defended", + -12.600045204162598 + ], + [ + "▁APR", + -12.600263595581055 + ], + [ + "▁horsepower", + -12.600284576416016 + ], + [ + "rify", + -12.600486755371094 + ], + [ + "на", + -12.600508689880371 + ], + [ + "255", + -12.600824356079102 + ], + [ + "▁deeds", + -12.600863456726074 + ], + [ + "▁primitive", + -12.600919723510742 + ], + [ + "▁lipid", + -12.601020812988281 + ], + [ + "▁winery", + -12.60113525390625 + ], + [ + "▁breaches", + -12.601280212402344 + ], + [ + "=1", + -12.601314544677734 + ], + [ + "▁landmarks", + -12.60135269165039 + ], + [ + "ulous", + -12.601499557495117 + ], + [ + "▁Problems", + -12.601555824279785 + ], + [ + "▁1941", + -12.60157299041748 + ], + [ + "▁infographic", + -12.601587295532227 + ], + [ + "▁kite", + -12.601680755615234 + ], + [ + "▁canceled", + -12.601789474487305 + ], + [ + "▁Seoul", + -12.601808547973633 + ], + [ + "▁Chevy", + -12.601815223693848 + ], + [ + "▁Rie", + -12.601868629455566 + ], + [ + "▁squat", + -12.601903915405273 + ], + [ + "▁atoms", + -12.601911544799805 + ], + [ + "▁simulate", + -12.60196590423584 + ], + [ + "▁doorway", + -12.602038383483887 + ], + [ + "▁forged", + -12.602090835571289 + ], + [ + "▁protesters", + -12.60212230682373 + ], + [ + "fresh", + -12.60216999053955 + ], + [ + "▁Pray", + -12.602191925048828 + ], + [ + "▁Principles", + -12.602232933044434 + ], + [ + "compatible", + -12.602328300476074 + ], + [ + "onde", + -12.602385520935059 + ], + [ + "trib", + -12.602575302124023 + ], + [ + "▁cherish", + -12.602621078491211 + ], + [ + "▁mates", + -12.602672576904297 + ], + [ + "▁Herman", + -12.602684020996094 + ], + [ + "MIC", + -12.60268783569336 + ], + [ + "Bank", + -12.6027193069458 + ], + [ + "320", + -12.60283374786377 + ], + [ + "▁muscular", + -12.602835655212402 + ], + [ + "▁peach", + -12.602917671203613 + ], + [ + "▁hanger", + -12.603116989135742 + ], + [ + "206", + -12.603147506713867 + ], + [ + "▁Arn", + -12.603287696838379 + ], + [ + "▁Attend", + -12.603299140930176 + ], + [ + "▁embed", + -12.60335922241211 + ], + [ + "▁Minutes", + -12.603559494018555 + ], + [ + "▁rotor", + -12.603616714477539 + ], + [ + "▁Fees", + -12.603872299194336 + ], + [ + "▁Rib", + -12.60395336151123 + ], + [ + "refusing", + -12.603957176208496 + ], + [ + "▁tenth", + -12.603964805603027 + ], + [ + "jour", + -12.603981971740723 + ], + [ + "alter", + -12.60408878326416 + ], + [ + "▁enforced", + -12.604090690612793 + ], + [ + "Whereas", + -12.604228019714355 + ], + [ + "▁compute", + -12.604326248168945 + ], + [ + "upload", + -12.604437828063965 + ], + [ + "Check", + -12.604446411132812 + ], + [ + "▁Sebastian", + -12.604459762573242 + ], + [ + "prop", + -12.6045560836792 + ], + [ + "▁accommodating", + -12.60457992553711 + ], + [ + "authored", + -12.60458755493164 + ], + [ + "▁unexpectedly", + -12.60461139678955 + ], + [ + "▁Aunt", + -12.604724884033203 + ], + [ + "4-3", + -12.604752540588379 + ], + [ + "▁Interstate", + -12.604764938354492 + ], + [ + "▁hypertension", + -12.604778289794922 + ], + [ + "▁hustle", + -12.604782104492188 + ], + [ + "▁MySQL", + -12.605008125305176 + ], + [ + "lette", + -12.60512638092041 + ], + [ + "together", + -12.605302810668945 + ], + [ + "▁clarification", + -12.605303764343262 + ], + [ + "xen", + -12.605306625366211 + ], + [ + "▁mysteries", + -12.605365753173828 + ], + [ + "▁temper", + -12.60539436340332 + ], + [ + "WR", + -12.605551719665527 + ], + [ + "▁priv", + -12.605570793151855 + ], + [ + "▁Sandra", + -12.605647087097168 + ], + [ + "▁Respondent", + -12.605884552001953 + ], + [ + "▁PPC", + -12.605937004089355 + ], + [ + "▁VMware", + -12.605974197387695 + ], + [ + "pressure", + -12.606027603149414 + ], + [ + "▁Wie", + -12.60607624053955 + ], + [ + "▁vertically", + -12.606082916259766 + ], + [ + "▁detecting", + -12.606148719787598 + ], + [ + "▁hind", + -12.606247901916504 + ], + [ + "▁Viagra", + -12.606395721435547 + ], + [ + "ERR", + -12.60641098022461 + ], + [ + "Intended", + -12.606422424316406 + ], + [ + "wait", + -12.60687255859375 + ], + [ + "▁bananas", + -12.606874465942383 + ], + [ + "▁Doesn", + -12.606889724731445 + ], + [ + "▁tubing", + -12.607011795043945 + ], + [ + "▁festivities", + -12.6072359085083 + ], + [ + "▁incremental", + -12.607559204101562 + ], + [ + "▁EVERY", + -12.607672691345215 + ], + [ + "▁hearty", + -12.607721328735352 + ], + [ + "▁PLA", + -12.607775688171387 + ], + [ + "▁Biblical", + -12.607780456542969 + ], + [ + "backed", + -12.607789039611816 + ], + [ + "▁Pokémon", + -12.607900619506836 + ], + [ + "Sub", + -12.607958793640137 + ], + [ + "▁Sophie", + -12.608033180236816 + ], + [ + "▁Marian", + -12.608149528503418 + ], + [ + "▁congressional", + -12.608152389526367 + ], + [ + "▁Incredible", + -12.608445167541504 + ], + [ + "tons", + -12.608508110046387 + ], + [ + "235", + -12.608667373657227 + ], + [ + "▁facilitator", + -12.608687400817871 + ], + [ + "▁Attach", + -12.608770370483398 + ], + [ + "▁Hag", + -12.608784675598145 + ], + [ + "▁Twist", + -12.608864784240723 + ], + [ + "treated", + -12.609198570251465 + ], + [ + "▁revisions", + -12.609203338623047 + ], + [ + "▁2030", + -12.609219551086426 + ], + [ + "-55", + -12.609420776367188 + ], + [ + "▁Willow", + -12.6094970703125 + ], + [ + "bath", + -12.609807014465332 + ], + [ + "lsen", + -12.609914779663086 + ], + [ + "▁Comedy", + -12.610067367553711 + ], + [ + "▁deem", + -12.61013126373291 + ], + [ + "▁misconception", + -12.610201835632324 + ], + [ + "▁Salad", + -12.610215187072754 + ], + [ + "▁Chop", + -12.610234260559082 + ], + [ + "ograph", + -12.610345840454102 + ], + [ + "▁Kah", + -12.610494613647461 + ], + [ + "▁Holocaust", + -12.610504150390625 + ], + [ + "▁Weld", + -12.610568046569824 + ], + [ + "▁lakh", + -12.610568046569824 + ], + [ + "▁thicken", + -12.610586166381836 + ], + [ + "biotic", + -12.610603332519531 + ], + [ + "CHO", + -12.610920906066895 + ], + [ + "▁Sketch", + -12.611072540283203 + ], + [ + "ipped", + -12.611133575439453 + ], + [ + "▁Scene", + -12.611163139343262 + ], + [ + "▁Declaration", + -12.61117172241211 + ], + [ + "PV", + -12.611190795898438 + ], + [ + "▁illegally", + -12.611198425292969 + ], + [ + "UF", + -12.611268997192383 + ], + [ + "NCE", + -12.61132526397705 + ], + [ + "Sec", + -12.611336708068848 + ], + [ + "famed", + -12.611349105834961 + ], + [ + "itty", + -12.611401557922363 + ], + [ + "iety", + -12.611405372619629 + ], + [ + "▁unemployed", + -12.611504554748535 + ], + [ + "▁coursework", + -12.611652374267578 + ], + [ + "▁Detective", + -12.611658096313477 + ], + [ + "▁yourselves", + -12.611839294433594 + ], + [ + "certified", + -12.611946105957031 + ], + [ + "▁Refuge", + -12.612092971801758 + ], + [ + "▁supernatural", + -12.612342834472656 + ], + [ + "▁adolescents", + -12.612568855285645 + ], + [ + "▁notorious", + -12.612600326538086 + ], + [ + "▁Pricing", + -12.612666130065918 + ], + [ + "▁Keyword", + -12.6127290725708 + ], + [ + "▁Suzuki", + -12.612752914428711 + ], + [ + "▁Terror", + -12.612858772277832 + ], + [ + "▁Mickey", + -12.612906455993652 + ], + [ + "▁hectic", + -12.61302661895752 + ], + [ + "technology", + -12.613263130187988 + ], + [ + "▁Bryant", + -12.613330841064453 + ], + [ + "195", + -12.613503456115723 + ], + [ + "▁Dav", + -12.613988876342773 + ], + [ + "Light", + -12.614019393920898 + ], + [ + "▁slaves", + -12.614100456237793 + ], + [ + "▁advantageous", + -12.614103317260742 + ], + [ + "▁lawful", + -12.6142578125 + ], + [ + "berger", + -12.614258766174316 + ], + [ + "curricular", + -12.614360809326172 + ], + [ + "▁Gli", + -12.61438274383545 + ], + [ + "poly", + -12.614418029785156 + ], + [ + "▁Cai", + -12.614506721496582 + ], + [ + "1.4", + -12.614712715148926 + ], + [ + "▁felony", + -12.614757537841797 + ], + [ + "▁Reno", + -12.614867210388184 + ], + [ + "IONS", + -12.614879608154297 + ], + [ + "portrayed", + -12.614888191223145 + ], + [ + "mbr", + -12.614914894104004 + ], + [ + "existent", + -12.615011215209961 + ], + [ + "thinking", + -12.615012168884277 + ], + [ + "ntz", + -12.615041732788086 + ], + [ + "vani", + -12.61505126953125 + ], + [ + "▁Harold", + -12.615504264831543 + ], + [ + "quil", + -12.615716934204102 + ], + [ + "2006", + -12.615890502929688 + ], + [ + "▁2015)", + -12.615900039672852 + ], + [ + "▁flora", + -12.615985870361328 + ], + [ + "oshi", + -12.616246223449707 + ], + [ + "Wil", + -12.616313934326172 + ], + [ + "▁Torah", + -12.616558074951172 + ], + [ + "▁upstream", + -12.616690635681152 + ], + [ + "▁Sustainability", + -12.616707801818848 + ], + [ + "▁Goals", + -12.616881370544434 + ], + [ + "▁colder", + -12.616950035095215 + ], + [ + "▁cheating", + -12.616982460021973 + ], + [ + "▁Referr", + -12.617043495178223 + ], + [ + "▁incorrectly", + -12.617082595825195 + ], + [ + "iola", + -12.617085456848145 + ], + [ + "Accessed", + -12.617146492004395 + ], + [ + "▁biscuits", + -12.617387771606445 + ], + [ + "▁Rodriguez", + -12.617501258850098 + ], + [ + "▁Roosevelt", + -12.617562294006348 + ], + [ + ":29", + -12.61767578125 + ], + [ + "categorized", + -12.617995262145996 + ], + [ + "ри", + -12.618146896362305 + ], + [ + "▁Debbie", + -12.61823558807373 + ], + [ + "▁Tucson", + -12.618295669555664 + ], + [ + "▁coronary", + -12.61866283416748 + ], + [ + "▁discourage", + -12.618765830993652 + ], + [ + "▁guessed", + -12.618773460388184 + ], + [ + "eyed", + -12.618813514709473 + ], + [ + "▁Pension", + -12.618851661682129 + ], + [ + "▁Console", + -12.619009017944336 + ], + [ + "NV", + -12.619046211242676 + ], + [ + "▁specialties", + -12.619087219238281 + ], + [ + "plica", + -12.61914348602295 + ], + [ + "▁Cir", + -12.619318962097168 + ], + [ + "▁Kaz", + -12.619338989257812 + ], + [ + "▁encompass", + -12.619354248046875 + ], + [ + "berries", + -12.619511604309082 + ], + [ + "3-6", + -12.619546890258789 + ], + [ + "▁64-", + -12.61984920501709 + ], + [ + "▁McM", + -12.619921684265137 + ], + [ + "umba", + -12.62005615234375 + ], + [ + "ssian", + -12.620095252990723 + ], + [ + "▁reproductive", + -12.620108604431152 + ], + [ + "▁Advocate", + -12.62019157409668 + ], + [ + "▁maternity", + -12.62025260925293 + ], + [ + "rug", + -12.620373725891113 + ], + [ + "▁Olivia", + -12.620436668395996 + ], + [ + "format", + -12.620572090148926 + ], + [ + "▁tutoring", + -12.62058162689209 + ], + [ + "▁vampire", + -12.620803833007812 + ], + [ + "▁Smartphone", + -12.620892524719238 + ], + [ + "enza", + -12.620923042297363 + ], + [ + "▁Gai", + -12.621033668518066 + ], + [ + "▁Nie", + -12.62121868133545 + ], + [ + "105", + -12.621232032775879 + ], + [ + "Surely", + -12.621244430541992 + ], + [ + "▁ASAP", + -12.621380805969238 + ], + [ + "▁Toys", + -12.62162971496582 + ], + [ + "1-3", + -12.621630668640137 + ], + [ + "Form", + -12.621925354003906 + ], + [ + "tale", + -12.621939659118652 + ], + [ + "▁Readers", + -12.62195873260498 + ], + [ + "▁roadway", + -12.622000694274902 + ], + [ + "▁Religious", + -12.622091293334961 + ], + [ + "▁Vor", + -12.622191429138184 + ], + [ + "tious", + -12.622222900390625 + ], + [ + "▁Goal", + -12.622241973876953 + ], + [ + "▁knots", + -12.622305870056152 + ], + [ + "modal", + -12.622332572937012 + ], + [ + "▁McN", + -12.622335433959961 + ], + [ + "IPS", + -12.622468948364258 + ], + [ + "▁interviewing", + -12.622472763061523 + ], + [ + "▁bottled", + -12.622743606567383 + ], + [ + "▁Yacht", + -12.622841835021973 + ], + [ + "▁KC", + -12.622997283935547 + ], + [ + "▁Patrol", + -12.623093605041504 + ], + [ + "▁retiring", + -12.62313461303711 + ], + [ + "▁reinvent", + -12.623329162597656 + ], + [ + "▁Meg", + -12.623361587524414 + ], + [ + "▁Burke", + -12.623506546020508 + ], + [ + "eks", + -12.623590469360352 + ], + [ + "877", + -12.623673439025879 + ], + [ + "▁allocate", + -12.623679161071777 + ], + [ + "REE", + -12.623802185058594 + ], + [ + "▁Comics", + -12.623824119567871 + ], + [ + "▁decisive", + -12.623834609985352 + ], + [ + "▁cursor", + -12.62398910522461 + ], + [ + "LAR", + -12.623995780944824 + ], + [ + "▁mercury", + -12.624184608459473 + ], + [ + "short", + -12.624229431152344 + ], + [ + "tying", + -12.624267578125 + ], + [ + "▁Nad", + -12.62429141998291 + ], + [ + "phag", + -12.624302864074707 + ], + [ + "▁thighs", + -12.624319076538086 + ], + [ + "▁boiled", + -12.624334335327148 + ], + [ + "▁toggle", + -12.624356269836426 + ], + [ + "▁pianist", + -12.62451457977295 + ], + [ + "▁jerk", + -12.624635696411133 + ], + [ + "▁summon", + -12.624640464782715 + ], + [ + "▁apprenticeship", + -12.624652862548828 + ], + [ + "▁coherent", + -12.62473201751709 + ], + [ + "▁glamorous", + -12.624796867370605 + ], + [ + "▁Monument", + -12.624797821044922 + ], + [ + "▁rapper", + -12.624834060668945 + ], + [ + "▁barb", + -12.62492561340332 + ], + [ + "▁lithium", + -12.625040054321289 + ], + [ + "▁convertible", + -12.62505054473877 + ], + [ + "▁Disclaimer", + -12.625162124633789 + ], + [ + "▁staged", + -12.62517261505127 + ], + [ + "▁exile", + -12.625218391418457 + ], + [ + "Level", + -12.625276565551758 + ], + [ + "▁Molecular", + -12.625347137451172 + ], + [ + "dren", + -12.62558364868164 + ], + [ + "▁disadvantages", + -12.625605583190918 + ], + [ + "▁Somerset", + -12.625657081604004 + ], + [ + "не", + -12.625658988952637 + ], + [ + "▁turquoise", + -12.625716209411621 + ], + [ + "129", + -12.625792503356934 + ], + [ + "▁Holding", + -12.625802040100098 + ], + [ + "▁Sig", + -12.625807762145996 + ], + [ + "label", + -12.625831604003906 + ], + [ + "▁congratulate", + -12.625913619995117 + ], + [ + "ggi", + -12.62594985961914 + ], + [ + "▁confuse", + -12.62602424621582 + ], + [ + "▁yell", + -12.62614917755127 + ], + [ + "▁Burton", + -12.626157760620117 + ], + [ + "▁quota", + -12.626175880432129 + ], + [ + "boxes", + -12.626276969909668 + ], + [ + "▁obsolete", + -12.626455307006836 + ], + [ + "▁Element", + -12.626456260681152 + ], + [ + "▁microscope", + -12.626470565795898 + ], + [ + "▁syntax", + -12.626474380493164 + ], + [ + "Mark", + -12.626607894897461 + ], + [ + "loaded", + -12.62685775756836 + ], + [ + "▁amaze", + -12.626996994018555 + ], + [ + "▁taller", + -12.627052307128906 + ], + [ + "▁textiles", + -12.627058982849121 + ], + [ + "reading", + -12.62712574005127 + ], + [ + "▁1949", + -12.627175331115723 + ], + [ + "task", + -12.627199172973633 + ], + [ + "▁revise", + -12.627253532409668 + ], + [ + "ín", + -12.627325057983398 + ], + [ + "▁rotary", + -12.62738037109375 + ], + [ + "Chrom", + -12.627690315246582 + ], + [ + "▁pseudo", + -12.627728462219238 + ], + [ + "▁Swing", + -12.62780475616455 + ], + [ + "▁Mixed", + -12.627849578857422 + ], + [ + "influencing", + -12.627873420715332 + ], + [ + "▁fasting", + -12.627921104431152 + ], + [ + "▁ZIP", + -12.627967834472656 + ], + [ + "Online", + -12.628273010253906 + ], + [ + "▁colonies", + -12.628276824951172 + ], + [ + "▁instill", + -12.628311157226562 + ], + [ + "▁worsen", + -12.628409385681152 + ], + [ + "▁tougher", + -12.62849235534668 + ], + [ + "▁Digi", + -12.628586769104004 + ], + [ + "▁Adv", + -12.62861442565918 + ], + [ + "▁Siri", + -12.62868881225586 + ], + [ + "▁propel", + -12.628752708435059 + ], + [ + "▁Webb", + -12.628803253173828 + ], + [ + "▁voluntarily", + -12.628922462463379 + ], + [ + "ACH", + -12.628985404968262 + ], + [ + "▁Amen", + -12.628986358642578 + ], + [ + "positive", + -12.629019737243652 + ], + [ + "▁swirl", + -12.629043579101562 + ], + [ + "▁swell", + -12.629117012023926 + ], + [ + "▁Beaver", + -12.629149436950684 + ], + [ + "▁expires", + -12.62916374206543 + ], + [ + "▁Sang", + -12.629252433776855 + ], + [ + "review", + -12.629271507263184 + ], + [ + "▁Martinez", + -12.629281044006348 + ], + [ + "▁hues", + -12.629287719726562 + ], + [ + "these", + -12.629318237304688 + ], + [ + "▁swivel", + -12.629355430603027 + ], + [ + "▁excursion", + -12.629362106323242 + ], + [ + "inous", + -12.629505157470703 + ], + [ + "▁reflex", + -12.629559516906738 + ], + [ + "past", + -12.629690170288086 + ], + [ + "▁Injury", + -12.629791259765625 + ], + [ + "▁recorder", + -12.629927635192871 + ], + [ + "▁MVP", + -12.630012512207031 + ], + [ + "zero", + -12.630097389221191 + ], + [ + "▁centralized", + -12.630118370056152 + ], + [ + "▁Throne", + -12.630220413208008 + ], + [ + "meth", + -12.63022232055664 + ], + [ + "▁Tune", + -12.630256652832031 + ], + [ + "▁tireless", + -12.630256652832031 + ], + [ + "▁grooming", + -12.630318641662598 + ], + [ + "▁idiot", + -12.630331039428711 + ], + [ + "▁contestant", + -12.63033390045166 + ], + [ + "▁Supplies", + -12.630345344543457 + ], + [ + "▁skinny", + -12.630375862121582 + ], + [ + "jpeg", + -12.630423545837402 + ], + [ + "organic", + -12.630424499511719 + ], + [ + "tube", + -12.630471229553223 + ], + [ + "zhou", + -12.630566596984863 + ], + [ + "gator", + -12.630571365356445 + ], + [ + "beau", + -12.630611419677734 + ], + [ + "pag", + -12.630875587463379 + ], + [ + "▁Herald", + -12.630952835083008 + ], + [ + "▁almonds", + -12.630953788757324 + ], + [ + "▁batches", + -12.630973815917969 + ], + [ + "▁sued", + -12.631065368652344 + ], + [ + "▁sung", + -12.631213188171387 + ], + [ + "lori", + -12.631321907043457 + ], + [ + "290", + -12.631392478942871 + ], + [ + "▁quaint", + -12.631404876708984 + ], + [ + "▁Slovenia", + -12.631458282470703 + ], + [ + "SEN", + -12.631549835205078 + ], + [ + "▁incidental", + -12.631711959838867 + ], + [ + "fruit", + -12.63171672821045 + ], + [ + "pinned", + -12.631869316101074 + ], + [ + "▁unfinished", + -12.6318998336792 + ], + [ + "▁Jag", + -12.63196086883545 + ], + [ + "▁clientele", + -12.631999015808105 + ], + [ + "▁Elliott", + -12.63211727142334 + ], + [ + "▁stroller", + -12.632126808166504 + ], + [ + "▁sequencing", + -12.63226318359375 + ], + [ + "▁pinpoint", + -12.632366180419922 + ], + [ + "▁Shane", + -12.632397651672363 + ], + [ + "▁wrapper", + -12.63243293762207 + ], + [ + "REL", + -12.632584571838379 + ], + [ + "Map", + -12.632723808288574 + ], + [ + "ridden", + -12.633003234863281 + ], + [ + "▁Auburn", + -12.633011817932129 + ], + [ + "▁10.1", + -12.633196830749512 + ], + [ + "▁botanical", + -12.633255958557129 + ], + [ + "▁unwilling", + -12.633255958557129 + ], + [ + "▁counselling", + -12.633309364318848 + ], + [ + "3.9", + -12.633526802062988 + ], + [ + "Delete", + -12.633563041687012 + ], + [ + "▁Classical", + -12.633992195129395 + ], + [ + "private", + -12.634154319763184 + ], + [ + "▁ecology", + -12.634258270263672 + ], + [ + "▁1918", + -12.634285926818848 + ], + [ + "zak", + -12.634317398071289 + ], + [ + "▁proprietor", + -12.634434700012207 + ], + [ + "dep", + -12.634451866149902 + ], + [ + "▁capsules", + -12.634751319885254 + ], + [ + "▁healed", + -12.634806632995605 + ], + [ + "gence", + -12.634883880615234 + ], + [ + "esthesi", + -12.634978294372559 + ], + [ + "▁Arbor", + -12.635022163391113 + ], + [ + "▁contingent", + -12.635056495666504 + ], + [ + "▁Philippine", + -12.635250091552734 + ], + [ + "▁HIGH", + -12.635452270507812 + ], + [ + "▁Dept", + -12.635468482971191 + ], + [ + "▁vin", + -12.635611534118652 + ], + [ + "angling", + -12.635716438293457 + ], + [ + "▁Thin", + -12.6357421875 + ], + [ + "866", + -12.635746002197266 + ], + [ + "visit", + -12.635773658752441 + ], + [ + "▁suitcase", + -12.635828971862793 + ], + [ + "Essentially", + -12.635948181152344 + ], + [ + "▁tutors", + -12.636099815368652 + ], + [ + "▁balm", + -12.63619613647461 + ], + [ + "▁Exhibit", + -12.636226654052734 + ], + [ + "6-7", + -12.636385917663574 + ], + [ + "430", + -12.636531829833984 + ], + [ + "80,000", + -12.636545181274414 + ], + [ + "▁inflatable", + -12.636624336242676 + ], + [ + "▁prolific", + -12.636672973632812 + ], + [ + "▁chaotic", + -12.636758804321289 + ], + [ + "▁occupancy", + -12.636858940124512 + ], + [ + "▁Hwy", + -12.63688850402832 + ], + [ + "Off", + -12.6368989944458 + ], + [ + "▁excursions", + -12.637038230895996 + ], + [ + "133", + -12.637112617492676 + ], + [ + "▁2021", + -12.637200355529785 + ], + [ + "▁remnant", + -12.637232780456543 + ], + [ + "stint", + -12.637391090393066 + ], + [ + "▁paving", + -12.63742446899414 + ], + [ + "Market", + -12.637716293334961 + ], + [ + "▁reactive", + -12.637735366821289 + ], + [ + "analysis", + -12.637861251831055 + ], + [ + "since", + -12.637864112854004 + ], + [ + "▁Tracy", + -12.637887001037598 + ], + [ + "▁Terrace", + -12.637948036193848 + ], + [ + "▁Plum", + -12.637967109680176 + ], + [ + "365", + -12.637983322143555 + ], + [ + "▁Beatles", + -12.637994766235352 + ], + [ + "Def", + -12.638010025024414 + ], + [ + "▁spectacle", + -12.638042449951172 + ], + [ + "sweet", + -12.638154983520508 + ], + [ + "▁Bound", + -12.638266563415527 + ], + [ + "▁ADHD", + -12.638346672058105 + ], + [ + "▁captivating", + -12.638416290283203 + ], + [ + "▁1942", + -12.638471603393555 + ], + [ + "▁campers", + -12.638504981994629 + ], + [ + "ishi", + -12.638854026794434 + ], + [ + "▁distractions", + -12.638923645019531 + ], + [ + "▁Mystery", + -12.639046669006348 + ], + [ + "▁wastewater", + -12.639126777648926 + ], + [ + "▁Tuscan", + -12.639233589172363 + ], + [ + "▁shaving", + -12.639275550842285 + ], + [ + "Press", + -12.639294624328613 + ], + [ + "shy", + -12.639294624328613 + ], + [ + "▁interpreter", + -12.639314651489258 + ], + [ + "provoking", + -12.639351844787598 + ], + [ + "LEX", + -12.639384269714355 + ], + [ + "▁00:", + -12.639451026916504 + ], + [ + "▁illustrator", + -12.63953971862793 + ], + [ + "▁preventative", + -12.639636993408203 + ], + [ + "▁2014)", + -12.639647483825684 + ], + [ + "▁Compensation", + -12.639726638793945 + ], + [ + "▁$5,000", + -12.639756202697754 + ], + [ + "▁discontinued", + -12.640080451965332 + ], + [ + "▁limbs", + -12.640080451965332 + ], + [ + "GAR", + -12.640093803405762 + ], + [ + "▁frontier", + -12.640140533447266 + ], + [ + "▁Diversity", + -12.640229225158691 + ], + [ + "enni", + -12.640417098999023 + ], + [ + "director", + -12.640585899353027 + ], + [ + "▁Latvia", + -12.640665054321289 + ], + [ + "▁Pedro", + -12.640731811523438 + ], + [ + "▁esp", + -12.64075756072998 + ], + [ + "▁timeframe", + -12.64077091217041 + ], + [ + "▁Magnetic", + -12.640888214111328 + ], + [ + "▁coincidence", + -12.64094066619873 + ], + [ + "ivist", + -12.641103744506836 + ], + [ + "▁Perspective", + -12.641225814819336 + ], + [ + "▁Belfast", + -12.641256332397461 + ], + [ + "▁embryo", + -12.641310691833496 + ], + [ + "▁salty", + -12.641339302062988 + ], + [ + "▁ministries", + -12.641350746154785 + ], + [ + "▁abusive", + -12.64147663116455 + ], + [ + "meric", + -12.641561508178711 + ], + [ + "▁Promote", + -12.641592025756836 + ], + [ + "▁Bog", + -12.641607284545898 + ], + [ + "15)", + -12.641661643981934 + ], + [ + "▁cultivated", + -12.641674995422363 + ], + [ + "▁Hollow", + -12.641704559326172 + ], + [ + "▁braking", + -12.64172649383545 + ], + [ + "zal", + -12.641754150390625 + ], + [ + "▁utilise", + -12.641889572143555 + ], + [ + "▁veil", + -12.641927719116211 + ], + [ + "▁Phi", + -12.64203929901123 + ], + [ + "▁flowering", + -12.642139434814453 + ], + [ + "▁Gone", + -12.64225959777832 + ], + [ + "▁Enable", + -12.642298698425293 + ], + [ + "▁relocate", + -12.642390251159668 + ], + [ + "▁Reservation", + -12.642414093017578 + ], + [ + "▁2013)", + -12.64245319366455 + ], + [ + "▁Architect", + -12.642455101013184 + ], + [ + "optimizing", + -12.642477035522461 + ], + [ + "▁waterfalls", + -12.642495155334473 + ], + [ + "▁unconditional", + -12.642544746398926 + ], + [ + "▁Jess", + -12.64255428314209 + ], + [ + "▁tweeted", + -12.642614364624023 + ], + [ + "▁Shoot", + -12.642692565917969 + ], + [ + "▁onwards", + -12.642829895019531 + ], + [ + "▁staining", + -12.642894744873047 + ], + [ + "▁Shoe", + -12.643294334411621 + ], + [ + "▁forehead", + -12.643365859985352 + ], + [ + "resolution", + -12.643376350402832 + ], + [ + "marketing", + -12.643464088439941 + ], + [ + "weather", + -12.643665313720703 + ], + [ + "dollar", + -12.643721580505371 + ], + [ + "▁99%", + -12.643754959106445 + ], + [ + "▁SERVICE", + -12.643912315368652 + ], + [ + "Veterinary", + -12.64391803741455 + ], + [ + "▁Brave", + -12.644009590148926 + ], + [ + "▁psychiatric", + -12.64404296875 + ], + [ + "FB", + -12.644083023071289 + ], + [ + "▁reviewers", + -12.64409065246582 + ], + [ + "▁Melt", + -12.644248962402344 + ], + [ + "▁legislators", + -12.64441967010498 + ], + [ + "launch", + -12.644742012023926 + ], + [ + "▁Pitch", + -12.644881248474121 + ], + [ + "▁battlefield", + -12.644953727722168 + ], + [ + "▁Maggie", + -12.645031929016113 + ], + [ + "▁Kenny", + -12.645066261291504 + ], + [ + "▁additives", + -12.64508056640625 + ], + [ + "▁tablespoons", + -12.64510440826416 + ], + [ + "▁1914", + -12.645190238952637 + ], + [ + "▁intimidating", + -12.645360946655273 + ], + [ + "5.4", + -12.645390510559082 + ], + [ + "July", + -12.645413398742676 + ], + [ + "▁arose", + -12.645590782165527 + ], + [ + "bush", + -12.645779609680176 + ], + [ + "13)", + -12.645821571350098 + ], + [ + "▁personalize", + -12.645903587341309 + ], + [ + "UCH", + -12.646078109741211 + ], + [ + "enburg", + -12.646099090576172 + ], + [ + "▁staggering", + -12.646177291870117 + ], + [ + "kah", + -12.646289825439453 + ], + [ + "little", + -12.646367073059082 + ], + [ + "▁dominance", + -12.646367073059082 + ], + [ + "▁Lori", + -12.646376609802246 + ], + [ + "▁Elements", + -12.646442413330078 + ], + [ + "▁vitro", + -12.646527290344238 + ], + [ + "bac", + -12.646540641784668 + ], + [ + "▁Raspberry", + -12.646994590759277 + ], + [ + "▁casing", + -12.64702033996582 + ], + [ + "-2017", + -12.647083282470703 + ], + [ + "OPE", + -12.647171974182129 + ], + [ + "▁Gmail", + -12.647236824035645 + ], + [ + "development", + -12.647429466247559 + ], + [ + "▁Gujarat", + -12.647435188293457 + ], + [ + "▁Kiss", + -12.647455215454102 + ], + [ + "enia", + -12.647504806518555 + ], + [ + "▁shrubs", + -12.647600173950195 + ], + [ + "nomi", + -12.647642135620117 + ], + [ + "▁paycheck", + -12.647831916809082 + ], + [ + "▁stag", + -12.647927284240723 + ], + [ + "▁sharply", + -12.647956848144531 + ], + [ + "-31", + -12.648099899291992 + ], + [ + "▁hyperlink", + -12.648101806640625 + ], + [ + "▁Forever", + -12.648123741149902 + ], + [ + "similar", + -12.648171424865723 + ], + [ + "▁Davies", + -12.648347854614258 + ], + [ + "builder", + -12.648358345031738 + ], + [ + "▁aggressively", + -12.648407936096191 + ], + [ + "▁Mick", + -12.648597717285156 + ], + [ + "▁mower", + -12.648674964904785 + ], + [ + "▁conven", + -12.648680686950684 + ], + [ + "Mil", + -12.648714065551758 + ], + [ + "▁Portfolio", + -12.648772239685059 + ], + [ + "▁delegate", + -12.64886474609375 + ], + [ + "▁constrain", + -12.648948669433594 + ], + [ + "athon", + -12.648968696594238 + ], + [ + "▁weighted", + -12.649039268493652 + ], + [ + "▁revert", + -12.649055480957031 + ], + [ + "▁Sauce", + -12.649092674255371 + ], + [ + "▁NEED", + -12.649320602416992 + ], + [ + "nism", + -12.649354934692383 + ], + [ + "▁BJP", + -12.649612426757812 + ], + [ + "▁Tex", + -12.649630546569824 + ], + [ + "pian", + -12.649824142456055 + ], + [ + "▁halo", + -12.649884223937988 + ], + [ + "Count", + -12.649959564208984 + ], + [ + "0.000", + -12.650012016296387 + ], + [ + "▁Citizen", + -12.650042533874512 + ], + [ + "headed", + -12.65006160736084 + ], + [ + "Angel", + -12.650155067443848 + ], + [ + "rivet", + -12.650261878967285 + ], + [ + "▁reliably", + -12.650269508361816 + ], + [ + "▁tyre", + -12.65027904510498 + ], + [ + "▁strands", + -12.650335311889648 + ], + [ + "▁platter", + -12.650800704956055 + ], + [ + "▁monarch", + -12.650919914245605 + ], + [ + "▁Fried", + -12.650956153869629 + ], + [ + "▁guideline", + -12.65107536315918 + ], + [ + "Act", + -12.651091575622559 + ], + [ + "▁transistor", + -12.651216506958008 + ], + [ + "▁FCC", + -12.651226043701172 + ], + [ + "delve", + -12.651229858398438 + ], + [ + "▁shelving", + -12.651344299316406 + ], + [ + "▁Coca", + -12.651534080505371 + ], + [ + "▁PK", + -12.651717185974121 + ], + [ + "▁flee", + -12.651761054992676 + ], + [ + "▁gall", + -12.651787757873535 + ], + [ + "▁lunches", + -12.651823997497559 + ], + [ + "▁swiftly", + -12.651873588562012 + ], + [ + "▁Aberdeen", + -12.652101516723633 + ], + [ + "▁Constant", + -12.652148246765137 + ], + [ + "kW", + -12.652227401733398 + ], + [ + "RCA", + -12.652385711669922 + ], + [ + "▁Nexus", + -12.652419090270996 + ], + [ + "bok", + -12.652459144592285 + ], + [ + "▁succulent", + -12.652480125427246 + ], + [ + "OCK", + -12.652721405029297 + ], + [ + "▁Carrie", + -12.652745246887207 + ], + [ + "ugu", + -12.652889251708984 + ], + [ + "balanced", + -12.652925491333008 + ], + [ + "▁Functional", + -12.653011322021484 + ], + [ + "▁TOP", + -12.653197288513184 + ], + [ + "▁aggression", + -12.653244972229004 + ], + [ + "▁Congo", + -12.653299331665039 + ], + [ + "▁Wat", + -12.6533203125 + ], + [ + "▁Vertical", + -12.65334701538086 + ], + [ + "▁Optimization", + -12.653366088867188 + ], + [ + "▁SEE", + -12.653505325317383 + ], + [ + "▁Chiropractic", + -12.653682708740234 + ], + [ + "COR", + -12.653690338134766 + ], + [ + "▁Expression", + -12.65383529663086 + ], + [ + "regulation", + -12.653855323791504 + ], + [ + "1-6", + -12.653857231140137 + ], + [ + "hefty", + -12.653918266296387 + ], + [ + "▁Bollywood", + -12.653961181640625 + ], + [ + "▁Networking", + -12.654088020324707 + ], + [ + "▁Examine", + -12.654096603393555 + ], + [ + "mack", + -12.654121398925781 + ], + [ + "▁Christina", + -12.654122352600098 + ], + [ + "▁breastfeeding", + -12.654125213623047 + ], + [ + "▁Ahmed", + -12.65417766571045 + ], + [ + "equipped", + -12.654245376586914 + ], + [ + "▁swamp", + -12.654374122619629 + ], + [ + "ALE", + -12.65443229675293 + ], + [ + "▁Notification", + -12.65450382232666 + ], + [ + "▁forbidden", + -12.654507637023926 + ], + [ + "▁Treaty", + -12.654584884643555 + ], + [ + "▁stencil", + -12.654633522033691 + ], + [ + "APA", + -12.654685020446777 + ], + [ + "▁VW", + -12.654801368713379 + ], + [ + "▁trafficking", + -12.65491008758545 + ], + [ + "German", + -12.654935836791992 + ], + [ + "pour", + -12.65495777130127 + ], + [ + "▁Scotia", + -12.655290603637695 + ], + [ + "ordination", + -12.655403137207031 + ], + [ + "▁manga", + -12.655433654785156 + ], + [ + "▁dart", + -12.655447959899902 + ], + [ + "igue", + -12.65552043914795 + ], + [ + "Activ", + -12.655755996704102 + ], + [ + "▁Transmission", + -12.65576171875 + ], + [ + "▁adorn", + -12.655800819396973 + ], + [ + "▁deposition", + -12.655844688415527 + ], + [ + "/12", + -12.656002044677734 + ], + [ + "▁Backup", + -12.656003952026367 + ], + [ + "▁Taka", + -12.65613079071045 + ], + [ + "magi", + -12.656231880187988 + ], + [ + "▁Matrix", + -12.65634536743164 + ], + [ + "▁innovate", + -12.656441688537598 + ], + [ + "▁Spectrum", + -12.656472206115723 + ], + [ + "▁throttle", + -12.656473159790039 + ], + [ + "Plan", + -12.656475067138672 + ], + [ + "▁mosquito", + -12.65653133392334 + ], + [ + "▁detrimental", + -12.656580924987793 + ], + [ + "▁richer", + -12.656622886657715 + ], + [ + "▁foreigners", + -12.656670570373535 + ], + [ + "▁Brewer", + -12.656813621520996 + ], + [ + "▁McA", + -12.656818389892578 + ], + [ + "▁Experiment", + -12.656925201416016 + ], + [ + "▁kale", + -12.656936645507812 + ], + [ + "▁expertly", + -12.656967163085938 + ], + [ + "▁volcano", + -12.65707778930664 + ], + [ + "▁Brunswick", + -12.657170295715332 + ], + [ + "▁handicap", + -12.657322883605957 + ], + [ + "▁Landing", + -12.657478332519531 + ], + [ + "▁parchment", + -12.657551765441895 + ], + [ + "▁Curry", + -12.657561302185059 + ], + [ + "▁Login", + -12.657892227172852 + ], + [ + "▁Railroad", + -12.658026695251465 + ], + [ + "▁Saf", + -12.658035278320312 + ], + [ + "▁inhabit", + -12.658153533935547 + ], + [ + "▁Democracy", + -12.65818977355957 + ], + [ + "▁Passenger", + -12.658251762390137 + ], + [ + "▁pillars", + -12.658275604248047 + ], + [ + "▁1952", + -12.658278465270996 + ], + [ + "▁Listed", + -12.658456802368164 + ], + [ + "▁Ext", + -12.658574104309082 + ], + [ + "▁slack", + -12.658604621887207 + ], + [ + "▁replication", + -12.658613204956055 + ], + [ + "Search", + -12.658669471740723 + ], + [ + "▁Rehabilitation", + -12.658760070800781 + ], + [ + "▁proclaim", + -12.658764839172363 + ], + [ + "ITA", + -12.658935546875 + ], + [ + "▁straighten", + -12.658982276916504 + ], + [ + "▁Thy", + -12.659069061279297 + ], + [ + "▁shortest", + -12.659087181091309 + ], + [ + "prevailing", + -12.659320831298828 + ], + [ + "275", + -12.65934944152832 + ], + [ + "▁Extended", + -12.6593599319458 + ], + [ + "▁Prospect", + -12.65941333770752 + ], + [ + "▁LTE", + -12.659414291381836 + ], + [ + "▁Featured", + -12.659446716308594 + ], + [ + "PSC", + -12.659470558166504 + ], + [ + "meaning", + -12.659549713134766 + ], + [ + "Any", + -12.659773826599121 + ], + [ + "▁timetable", + -12.659862518310547 + ], + [ + "annon", + -12.660301208496094 + ], + [ + "▁Himself", + -12.660415649414062 + ], + [ + "▁punt", + -12.660433769226074 + ], + [ + "▁surpass", + -12.660484313964844 + ], + [ + "▁capitalist", + -12.660542488098145 + ], + [ + "▁2016)", + -12.66055965423584 + ], + [ + "▁flawed", + -12.660599708557129 + ], + [ + "▁Jal", + -12.6608304977417 + ], + [ + "▁peculiar", + -12.66109848022461 + ], + [ + "▁Warehouse", + -12.661120414733887 + ], + [ + "▁Circ", + -12.661179542541504 + ], + [ + "▁practise", + -12.661417007446289 + ], + [ + "▁Coleman", + -12.661417961120605 + ], + [ + "▁waffle", + -12.661436080932617 + ], + [ + "dragged", + -12.661548614501953 + ], + [ + "brew", + -12.661616325378418 + ], + [ + "▁Practitioner", + -12.661690711975098 + ], + [ + "IFT", + -12.66175651550293 + ], + [ + "▁Lifestyle", + -12.661881446838379 + ], + [ + "▁illuminate", + -12.661896705627441 + ], + [ + "▁1910", + -12.661989212036133 + ], + [ + "5.7", + -12.662001609802246 + ], + [ + "opathic", + -12.662007331848145 + ], + [ + "9001", + -12.66209602355957 + ], + [ + "▁#5", + -12.66223430633545 + ], + [ + "▁0.7", + -12.662309646606445 + ], + [ + "▁CDC", + -12.662321090698242 + ], + [ + "▁Natalie", + -12.662331581115723 + ], + [ + "▁Nash", + -12.662481307983398 + ], + [ + "▁touchscreen", + -12.662590026855469 + ], + [ + "▁Banner", + -12.662609100341797 + ], + [ + "▁crashing", + -12.662622451782227 + ], + [ + "222", + -12.662651062011719 + ], + [ + "▁interrupted", + -12.66275405883789 + ], + [ + "▁Libraries", + -12.662839889526367 + ], + [ + "▁Promise", + -12.662843704223633 + ], + [ + "▁Charger", + -12.663018226623535 + ], + [ + "mud", + -12.663037300109863 + ], + [ + "upholstered", + -12.663159370422363 + ], + [ + "▁Juice", + -12.663220405578613 + ], + [ + "▁canine", + -12.663249015808105 + ], + [ + "blu", + -12.663361549377441 + ], + [ + "ungen", + -12.663481712341309 + ], + [ + "▁probation", + -12.663481712341309 + ], + [ + "jal", + -12.663484573364258 + ], + [ + "▁expressive", + -12.663500785827637 + ], + [ + "▁randomized", + -12.663640022277832 + ], + [ + "cini", + -12.663666725158691 + ], + [ + "Brien", + -12.6636962890625 + ], + [ + "Met", + -12.663698196411133 + ], + [ + "▁Lifetime", + -12.66384506225586 + ], + [ + "▁Tiny", + -12.663985252380371 + ], + [ + "▁Lime", + -12.663996696472168 + ], + [ + "▁gust", + -12.66408634185791 + ], + [ + "cryptocurrencies", + -12.664118766784668 + ], + [ + "mak", + -12.66415023803711 + ], + [ + "arse", + -12.664183616638184 + ], + [ + "dead", + -12.664414405822754 + ], + [ + "▁surname", + -12.66441535949707 + ], + [ + "▁reproduced", + -12.664532661437988 + ], + [ + "▁Cabin", + -12.66470718383789 + ], + [ + "▁Bradford", + -12.664909362792969 + ], + [ + "Girl", + -12.664996147155762 + ], + [ + "▁parliamentary", + -12.665088653564453 + ], + [ + "phra", + -12.665338516235352 + ], + [ + "▁compulsory", + -12.665398597717285 + ], + [ + "▁leash", + -12.665428161621094 + ], + [ + "▁Portrait", + -12.6654634475708 + ], + [ + "drum", + -12.665698051452637 + ], + [ + "cook", + -12.665708541870117 + ], + [ + "▁Rim", + -12.66571044921875 + ], + [ + "▁Spell", + -12.665826797485352 + ], + [ + "▁Savannah", + -12.666168212890625 + ], + [ + "vantage", + -12.6662015914917 + ], + [ + "▁Malaysian", + -12.66635513305664 + ], + [ + "instagram", + -12.666428565979004 + ], + [ + "▁Entrepreneur", + -12.666559219360352 + ], + [ + "▁Enhance", + -12.666584014892578 + ], + [ + "onym", + -12.666585922241211 + ], + [ + "productive", + -12.666655540466309 + ], + [ + "▁Southampton", + -12.6668119430542 + ], + [ + "▁factual", + -12.666902542114258 + ], + [ + "Tek", + -12.666962623596191 + ], + [ + "▁Immediately", + -12.667014122009277 + ], + [ + "0-6", + -12.667089462280273 + ], + [ + "surfacing", + -12.6671724319458 + ], + [ + "Putting", + -12.667186737060547 + ], + [ + "▁ortho", + -12.667376518249512 + ], + [ + "▁systematically", + -12.66740608215332 + ], + [ + "990", + -12.667444229125977 + ], + [ + "▁debtor", + -12.667468070983887 + ], + [ + "▁Measurement", + -12.667537689208984 + ], + [ + "▁1:1", + -12.667604446411133 + ], + [ + "money", + -12.667689323425293 + ], + [ + "▁tripod", + -12.66783618927002 + ], + [ + "inherently", + -12.667840957641602 + ], + [ + "▁blush", + -12.667845726013184 + ], + [ + "▁Taxi", + -12.668004989624023 + ], + [ + "lover", + -12.66822624206543 + ], + [ + "ertaining", + -12.66825008392334 + ], + [ + "▁cured", + -12.66830825805664 + ], + [ + "▁Photographer", + -12.668313026428223 + ], + [ + "▁Chau", + -12.668374061584473 + ], + [ + "covered", + -12.668540000915527 + ], + [ + "▁culturally", + -12.66854190826416 + ], + [ + "▁Buddy", + -12.668563842773438 + ], + [ + "phin", + -12.66858959197998 + ], + [ + "LESS", + -12.668608665466309 + ], + [ + "▁Christie", + -12.668696403503418 + ], + [ + "REC", + -12.668925285339355 + ], + [ + "Buy", + -12.66893196105957 + ], + [ + "▁mulch", + -12.6689453125 + ], + [ + "▁simultaneous", + -12.669022560119629 + ], + [ + "▁facade", + -12.669057846069336 + ], + [ + "▁Gum", + -12.669151306152344 + ], + [ + "▁(2006)", + -12.66915512084961 + ], + [ + "▁Elephant", + -12.669185638427734 + ], + [ + "▁crunchy", + -12.669307708740234 + ], + [ + "correct", + -12.669357299804688 + ], + [ + "▁Zoom", + -12.669384002685547 + ], + [ + "▁Guatemala", + -12.669389724731445 + ], + [ + "▁groundbreaking", + -12.669429779052734 + ], + [ + "▁Ole", + -12.669576644897461 + ], + [ + "▁$18", + -12.66960620880127 + ], + [ + "bolic", + -12.669634819030762 + ], + [ + "construction", + -12.669677734375 + ], + [ + "ATI", + -12.669745445251465 + ], + [ + "▁goose", + -12.669761657714844 + ], + [ + "▁intermittent", + -12.669828414916992 + ], + [ + "▁trousers", + -12.669828414916992 + ], + [ + "▁agility", + -12.669839859008789 + ], + [ + "▁blister", + -12.669858932495117 + ], + [ + "▁Phillip", + -12.669891357421875 + ], + [ + "▁behold", + -12.67004108428955 + ], + [ + "DEN", + -12.670092582702637 + ], + [ + "▁Abdul", + -12.670109748840332 + ], + [ + "desk", + -12.670212745666504 + ], + [ + "▁Suddenly", + -12.670278549194336 + ], + [ + "▁Wol", + -12.670397758483887 + ], + [ + "▁transporting", + -12.67040729522705 + ], + [ + "▁Dump", + -12.670476913452148 + ], + [ + "ppi", + -12.670581817626953 + ], + [ + "formerly", + -12.67062759399414 + ], + [ + "▁Niagara", + -12.67066478729248 + ], + [ + "grant", + -12.670677185058594 + ], + [ + "▁Henri", + -12.670838356018066 + ], + [ + "▁Pil", + -12.670988082885742 + ], + [ + "/11", + -12.671119689941406 + ], + [ + "▁Allied", + -12.671361923217773 + ], + [ + "onomy", + -12.671433448791504 + ], + [ + "▁ethic", + -12.671743392944336 + ], + [ + "▁pamper", + -12.672019958496094 + ], + [ + "▁downhill", + -12.672057151794434 + ], + [ + "▁scarce", + -12.672085762023926 + ], + [ + "▁aerospace", + -12.672096252441406 + ], + [ + "▁discarded", + -12.672202110290527 + ], + [ + "▁Kuwait", + -12.672297477722168 + ], + [ + "▁jug", + -12.672386169433594 + ], + [ + "▁billed", + -12.672593116760254 + ], + [ + "▁Lessons", + -12.672739028930664 + ], + [ + "adjust", + -12.672843933105469 + ], + [ + "▁Lenovo", + -12.672922134399414 + ], + [ + "synchronous", + -12.672986030578613 + ], + [ + "▁encoding", + -12.672986030578613 + ], + [ + "▁Older", + -12.673002243041992 + ], + [ + "▁Preview", + -12.673052787780762 + ], + [ + "pong", + -12.673087120056152 + ], + [ + "▁Locksmith", + -12.673150062561035 + ], + [ + "▁Borough", + -12.673173904418945 + ], + [ + "▁subsection", + -12.673421859741211 + ], + [ + "▁ambiance", + -12.673439979553223 + ], + [ + "▁lesions", + -12.67347526550293 + ], + [ + "▁NEVER", + -12.673678398132324 + ], + [ + "▁WWII", + -12.67369270324707 + ], + [ + "▁poisoning", + -12.673786163330078 + ], + [ + "▁Panasonic", + -12.673890113830566 + ], + [ + "2-5", + -12.674091339111328 + ], + [ + "▁Minecraft", + -12.674250602722168 + ], + [ + "▁podium", + -12.674311637878418 + ], + [ + "▁admired", + -12.674532890319824 + ], + [ + "▁anthropo", + -12.674544334411621 + ], + [ + "enabled", + -12.674705505371094 + ], + [ + "▁UCLA", + -12.674707412719727 + ], + [ + "pist", + -12.67471694946289 + ], + [ + "▁nasal", + -12.674756050109863 + ], + [ + "establishes", + -12.674757957458496 + ], + [ + "▁Leigh", + -12.674818992614746 + ], + [ + "ggin", + -12.674930572509766 + ], + [ + "▁funky", + -12.675050735473633 + ], + [ + "threatening", + -12.675280570983887 + ], + [ + "▁Mormon", + -12.67549991607666 + ], + [ + "▁childcare", + -12.675500869750977 + ], + [ + "▁knight", + -12.67557430267334 + ], + [ + "▁persuasive", + -12.67563533782959 + ], + [ + "▁Alien", + -12.67573356628418 + ], + [ + "\\'", + -12.675823211669922 + ], + [ + "TEM", + -12.675935745239258 + ], + [ + "▁zoning", + -12.676012992858887 + ], + [ + "▁sizing", + -12.676018714904785 + ], + [ + "▁creepy", + -12.676036834716797 + ], + [ + "▁Setup", + -12.67604923248291 + ], + [ + "▁frosting", + -12.676104545593262 + ], + [ + "ective", + -12.676156997680664 + ], + [ + "▁dresser", + -12.676262855529785 + ], + [ + "▁Bingo", + -12.676295280456543 + ], + [ + "▁confi", + -12.676325798034668 + ], + [ + "\">", + -12.676460266113281 + ], + [ + "▁Phen", + -12.676557540893555 + ], + [ + "▁confession", + -12.676629066467285 + ], + [ + "▁soaked", + -12.676793098449707 + ], + [ + "▁Nai", + -12.676950454711914 + ], + [ + "▁Gerald", + -12.677001953125 + ], + [ + "▁multiplayer", + -12.677104949951172 + ], + [ + "Phil", + -12.677108764648438 + ], + [ + "▁SERVICES", + -12.677204132080078 + ], + [ + "requisite", + -12.677454948425293 + ], + [ + "lactic", + -12.677467346191406 + ], + [ + "▁Kap", + -12.677472114562988 + ], + [ + "kow", + -12.677515983581543 + ], + [ + "diluted", + -12.677614212036133 + ], + [ + "MOS", + -12.677618980407715 + ], + [ + "▁necessities", + -12.677773475646973 + ], + [ + "▁attained", + -12.677838325500488 + ], + [ + "▁Subaru", + -12.677968978881836 + ], + [ + "▁slam", + -12.677971839904785 + ], + [ + "▁utensil", + -12.6781005859375 + ], + [ + "▁mound", + -12.678201675415039 + ], + [ + "▁survivor", + -12.678230285644531 + ], + [ + "▁Katherine", + -12.678292274475098 + ], + [ + "▁Champ", + -12.678299903869629 + ], + [ + "▁frightening", + -12.678357124328613 + ], + [ + "▁Hull", + -12.678364753723145 + ], + [ + "▁****", + -12.678394317626953 + ], + [ + "▁intrinsic", + -12.67842960357666 + ], + [ + "minimizing", + -12.678445816040039 + ], + [ + "▁Omaha", + -12.678461074829102 + ], + [ + "▁experimentation", + -12.678513526916504 + ], + [ + "hali", + -12.678685188293457 + ], + [ + "▁lieu", + -12.678693771362305 + ], + [ + "▁Buffet", + -12.678855895996094 + ], + [ + "460", + -12.678860664367676 + ], + [ + "▁Retreat", + -12.67890739440918 + ], + [ + "▁Lap", + -12.678922653198242 + ], + [ + "▁forgetting", + -12.679169654846191 + ], + [ + "▁Preston", + -12.679374694824219 + ], + [ + "▁Vendor", + -12.67946720123291 + ], + [ + "▁Fay", + -12.679490089416504 + ], + [ + "▁Koh", + -12.679586410522461 + ], + [ + "▁continual", + -12.679630279541016 + ], + [ + "▁bytes", + -12.679729461669922 + ], + [ + "▁Vector", + -12.67973518371582 + ], + [ + "▁eternity", + -12.679850578308105 + ], + [ + "▁Motorola", + -12.679916381835938 + ], + [ + "▁seize", + -12.680282592773438 + ], + [ + "▁bulky", + -12.680338859558105 + ], + [ + "trend", + -12.680517196655273 + ], + [ + "▁Crisis", + -12.680790901184082 + ], + [ + "▁scrape", + -12.68083381652832 + ], + [ + "▁fading", + -12.680906295776367 + ], + [ + "pioneering", + -12.681107521057129 + ], + [ + "▁PBS", + -12.681232452392578 + ], + [ + "▁diversified", + -12.681302070617676 + ], + [ + "▁Specification", + -12.681315422058105 + ], + [ + "Sim", + -12.681459426879883 + ], + [ + "David", + -12.68148136138916 + ], + [ + "turb", + -12.681492805480957 + ], + [ + "▁parsley", + -12.681506156921387 + ], + [ + "***", + -12.681536674499512 + ], + [ + "▁antivirus", + -12.681540489196777 + ], + [ + "▁deluxe", + -12.681674003601074 + ], + [ + "1⁄4", + -12.681730270385742 + ], + [ + "▁Ninja", + -12.682133674621582 + ], + [ + "▁Planner", + -12.68216323852539 + ], + [ + "▁labeling", + -12.682268142700195 + ], + [ + "▁countertop", + -12.682300567626953 + ], + [ + "/9", + -12.682329177856445 + ], + [ + "EEP", + -12.682411193847656 + ], + [ + "▁Haha", + -12.682474136352539 + ], + [ + "gnostic", + -12.682694435119629 + ], + [ + "/14", + -12.682705879211426 + ], + [ + "ет", + -12.682785034179688 + ], + [ + "▁vines", + -12.682915687561035 + ], + [ + "▁dodge", + -12.682944297790527 + ], + [ + "▁supplemental", + -12.682999610900879 + ], + [ + "▁cues", + -12.683247566223145 + ], + [ + "▁maze", + -12.683661460876465 + ], + [ + "▁Adjustable", + -12.683802604675293 + ], + [ + "visual", + -12.683820724487305 + ], + [ + "noma", + -12.683879852294922 + ], + [ + "azo", + -12.683955192565918 + ], + [ + "manship", + -12.684120178222656 + ], + [ + "bib", + -12.68416690826416 + ], + [ + "KU", + -12.684295654296875 + ], + [ + "▁constituents", + -12.684329986572266 + ], + [ + "misunderstanding", + -12.684346199035645 + ], + [ + "▁commentator", + -12.684408187866211 + ], + [ + "▁TRI", + -12.684499740600586 + ], + [ + "▁knocking", + -12.68470287322998 + ], + [ + "▁Immuno", + -12.684732437133789 + ], + [ + "▁Guil", + -12.684749603271484 + ], + [ + "▁Poster", + -12.684836387634277 + ], + [ + "▁Mercy", + -12.684844970703125 + ], + [ + "▁seaside", + -12.684898376464844 + ], + [ + "amble", + -12.684953689575195 + ], + [ + "▁humorous", + -12.684958457946777 + ], + [ + "atty", + -12.685019493103027 + ], + [ + "▁complexes", + -12.685193061828613 + ], + [ + "▁indicative", + -12.685261726379395 + ], + [ + "▁spacing", + -12.685376167297363 + ], + [ + "▁academia", + -12.685389518737793 + ], + [ + "biology", + -12.685510635375977 + ], + [ + "▁QR", + -12.685518264770508 + ], + [ + "eben", + -12.685552597045898 + ], + [ + "▁Rabbit", + -12.685651779174805 + ], + [ + "▁(2018)", + -12.685665130615234 + ], + [ + "▁Crawford", + -12.685715675354004 + ], + [ + "▁ulcer", + -12.685799598693848 + ], + [ + "▁hydration", + -12.685917854309082 + ], + [ + "Click", + -12.68604564666748 + ], + [ + "▁15,000", + -12.686087608337402 + ], + [ + "▁Accu", + -12.68632984161377 + ], + [ + "regulated", + -12.686532020568848 + ], + [ + "▁breathable", + -12.686610221862793 + ], + [ + "5-1", + -12.686619758605957 + ], + [ + "▁serene", + -12.68674373626709 + ], + [ + "leaf", + -12.686768531799316 + ], + [ + "unter", + -12.686779022216797 + ], + [ + "Watch", + -12.686849594116211 + ], + [ + "▁swipe", + -12.686911582946777 + ], + [ + "engage", + -12.686973571777344 + ], + [ + "OME", + -12.687005996704102 + ], + [ + "▁Pumpkin", + -12.68708610534668 + ], + [ + "▁Savior", + -12.687093734741211 + ], + [ + "4-2", + -12.687280654907227 + ], + [ + "gill", + -12.687493324279785 + ], + [ + "▁insertion", + -12.687565803527832 + ], + [ + "▁cub", + -12.687759399414062 + ], + [ + "▁rodent", + -12.687765121459961 + ], + [ + "▁Establish", + -12.687882423400879 + ], + [ + "▁deli", + -12.68794059753418 + ], + [ + "780", + -12.68796443939209 + ], + [ + "▁circus", + -12.68801212310791 + ], + [ + "▁SAS", + -12.688085556030273 + ], + [ + "blood", + -12.68812370300293 + ], + [ + "▁Moor", + -12.688277244567871 + ], + [ + "Real", + -12.68847370147705 + ], + [ + "▁relish", + -12.688543319702148 + ], + [ + "upper", + -12.68870735168457 + ], + [ + "▁tornado", + -12.688741683959961 + ], + [ + "performing", + -12.688844680786133 + ], + [ + "▁subtitle", + -12.68895149230957 + ], + [ + "▁midfielder", + -12.688972473144531 + ], + [ + "▁observers", + -12.68908977508545 + ], + [ + "▁Unlock", + -12.689091682434082 + ], + [ + "▁Nord", + -12.689169883728027 + ], + [ + "▁Jenkins", + -12.689348220825195 + ], + [ + "▁Polo", + -12.689414024353027 + ], + [ + "fuel", + -12.689436912536621 + ], + [ + "▁standout", + -12.689515113830566 + ], + [ + "▁dragging", + -12.689525604248047 + ], + [ + "▁miners", + -12.689573287963867 + ], + [ + "▁hive", + -12.689576148986816 + ], + [ + "▁redundant", + -12.689579963684082 + ], + [ + "▁oats", + -12.689750671386719 + ], + [ + "▁Accountant", + -12.68978214263916 + ], + [ + "antly", + -12.689870834350586 + ], + [ + "▁Wagner", + -12.690279960632324 + ], + [ + "▁12:00", + -12.690417289733887 + ], + [ + "▁Trap", + -12.690739631652832 + ], + [ + "Shi", + -12.690757751464844 + ], + [ + "▁hymn", + -12.690762519836426 + ], + [ + "ICAL", + -12.690829277038574 + ], + [ + "▁entails", + -12.690831184387207 + ], + [ + "▁SUB", + -12.691061019897461 + ], + [ + "▁polling", + -12.691096305847168 + ], + [ + "▁ARM", + -12.691115379333496 + ], + [ + "▁Generator", + -12.691278457641602 + ], + [ + "▁Fitz", + -12.6912841796875 + ], + [ + "▁Protestant", + -12.691287994384766 + ], + [ + "▁1/8", + -12.691373825073242 + ], + [ + "spirit", + -12.69145393371582 + ], + [ + "▁Fau", + -12.691619873046875 + ], + [ + "▁2012)", + -12.691786766052246 + ], + [ + "bearing", + -12.691822052001953 + ], + [ + "▁consulted", + -12.691934585571289 + ], + [ + "▁leakage", + -12.692065238952637 + ], + [ + "▁Mali", + -12.692217826843262 + ], + [ + "▁sophistication", + -12.692405700683594 + ], + [ + "VPN", + -12.6924409866333 + ], + [ + "▁Kristin", + -12.692523002624512 + ], + [ + "▁bulletin", + -12.692584037780762 + ], + [ + "▁Catalog", + -12.692802429199219 + ], + [ + "phony", + -12.69282341003418 + ], + [ + "123", + -12.69285774230957 + ], + [ + "▁biased", + -12.69299602508545 + ], + [ + "▁Lucia", + -12.693098068237305 + ], + [ + "▁Johnston", + -12.693113327026367 + ], + [ + "▁Stunning", + -12.693134307861328 + ], + [ + "▁Dip", + -12.693180084228516 + ], + [ + "Pet", + -12.693238258361816 + ], + [ + "Shortly", + -12.693258285522461 + ], + [ + "▁follower", + -12.693364143371582 + ], + [ + "▁Soup", + -12.69348430633545 + ], + [ + "▁vomiting", + -12.693622589111328 + ], + [ + "0.2", + -12.693744659423828 + ], + [ + "▁calf", + -12.69384479522705 + ], + [ + "characterization", + -12.693869590759277 + ], + [ + "microbial", + -12.693929672241211 + ], + [ + "Start", + -12.693981170654297 + ], + [ + "nail", + -12.693989753723145 + ], + [ + "▁tremendously", + -12.694103240966797 + ], + [ + "▁haunted", + -12.694119453430176 + ], + [ + "▁Correct", + -12.694182395935059 + ], + [ + "▁1917", + -12.694205284118652 + ], + [ + "icide", + -12.694316864013672 + ], + [ + "▁Bolt", + -12.694353103637695 + ], + [ + "▁correlated", + -12.694385528564453 + ], + [ + "pew", + -12.694406509399414 + ], + [ + "amino", + -12.694448471069336 + ], + [ + "mycin", + -12.69451904296875 + ], + [ + "▁chores", + -12.694526672363281 + ], + [ + "▁frying", + -12.694573402404785 + ], + [ + "▁instability", + -12.694597244262695 + ], + [ + "▁noticing", + -12.694686889648438 + ], + [ + "lud", + -12.69471263885498 + ], + [ + "▁bedtime", + -12.694818496704102 + ], + [ + "Asia", + -12.694990158081055 + ], + [ + "▁sovereignty", + -12.695049285888672 + ], + [ + "2-3", + -12.695297241210938 + ], + [ + "idad", + -12.69539737701416 + ], + [ + "▁QB", + -12.69554615020752 + ], + [ + "▁achievable", + -12.695569038391113 + ], + [ + "▁VoIP", + -12.695686340332031 + ], + [ + "poised", + -12.695746421813965 + ], + [ + "ducted", + -12.695759773254395 + ], + [ + "▁applaud", + -12.69577693939209 + ], + [ + "Center", + -12.695815086364746 + ], + [ + "Pat", + -12.695934295654297 + ], + [ + "▁speeding", + -12.696081161499023 + ], + [ + "INGS", + -12.696110725402832 + ], + [ + "bund", + -12.696165084838867 + ], + [ + "thought", + -12.696171760559082 + ], + [ + "▁utilis", + -12.696354866027832 + ], + [ + "▁Crowd", + -12.696585655212402 + ], + [ + "2+", + -12.696630477905273 + ], + [ + "▁LIFE", + -12.696866989135742 + ], + [ + "▁rainforest", + -12.696890830993652 + ], + [ + "▁gossip", + -12.697049140930176 + ], + [ + "▁polishing", + -12.697052955627441 + ], + [ + "▁predetermined", + -12.69728946685791 + ], + [ + "▁Fol", + -12.697361946105957 + ], + [ + "▁Motorcycle", + -12.697383880615234 + ], + [ + "▁wildly", + -12.697439193725586 + ], + [ + "▁loot", + -12.69747543334961 + ], + [ + "▁Mud", + -12.697586059570312 + ], + [ + "▁deletion", + -12.697620391845703 + ], + [ + "▁Blockchain", + -12.697771072387695 + ], + [ + "211", + -12.697884559631348 + ], + [ + "▁Xu", + -12.697898864746094 + ], + [ + "▁Bulldog", + -12.697919845581055 + ], + [ + "▁mastered", + -12.698055267333984 + ], + [ + "▁Hayes", + -12.69806957244873 + ], + [ + "▁sandals", + -12.698348045349121 + ], + [ + "333", + -12.698363304138184 + ], + [ + "▁entrant", + -12.698368072509766 + ], + [ + "sometimes", + -12.698426246643066 + ], + [ + "▁MAKE", + -12.698434829711914 + ], + [ + "▁eCommerce", + -12.698474884033203 + ], + [ + "▁888-2", + -12.698484420776367 + ], + [ + "Detailed", + -12.698566436767578 + ], + [ + "▁surreal", + -12.698579788208008 + ], + [ + "▁twentieth", + -12.698808670043945 + ], + [ + "Author", + -12.698854446411133 + ], + [ + "▁subconscious", + -12.698854446411133 + ], + [ + "▁Cairo", + -12.698919296264648 + ], + [ + "ooney", + -12.69910717010498 + ], + [ + "▁spacecraft", + -12.699544906616211 + ], + [ + "BIT", + -12.699751853942871 + ], + [ + "pub", + -12.699885368347168 + ], + [ + "▁homage", + -12.699946403503418 + ], + [ + "Kit", + -12.700013160705566 + ], + [ + "▁Spiel", + -12.700080871582031 + ], + [ + "▁obstruction", + -12.700119972229004 + ], + [ + "▁infestation", + -12.700215339660645 + ], + [ + "▁Container", + -12.700267791748047 + ], + [ + "RIT", + -12.700271606445312 + ], + [ + "▁brace", + -12.700495719909668 + ], + [ + "▁Submission", + -12.70053482055664 + ], + [ + "198", + -12.700546264648438 + ], + [ + "де", + -12.700596809387207 + ], + [ + "▁padding", + -12.70065975189209 + ], + [ + "▁harmonic", + -12.700701713562012 + ], + [ + "▁$17", + -12.700925827026367 + ], + [ + "▁Lace", + -12.700983047485352 + ], + [ + "Auto", + -12.701007843017578 + ], + [ + "▁WWE", + -12.701053619384766 + ], + [ + "cellular", + -12.701099395751953 + ], + [ + "National", + -12.701149940490723 + ], + [ + "▁caliber", + -12.701168060302734 + ], + [ + "▁Achievement", + -12.701190948486328 + ], + [ + "limit", + -12.70123291015625 + ], + [ + "▁binder", + -12.701249122619629 + ], + [ + "770", + -12.701410293579102 + ], + [ + "conserving", + -12.701471328735352 + ], + [ + "264", + -12.701513290405273 + ], + [ + "▁immortal", + -12.70152759552002 + ], + [ + "vigil", + -12.701634407043457 + ], + [ + "strate", + -12.701681137084961 + ], + [ + "▁dazzling", + -12.701727867126465 + ], + [ + "▁Panda", + -12.701772689819336 + ], + [ + "▁encode", + -12.701781272888184 + ], + [ + "took", + -12.701825141906738 + ], + [ + "▁splitting", + -12.701858520507812 + ], + [ + "▁naval", + -12.70210075378418 + ], + [ + "farm", + -12.702214241027832 + ], + [ + "chard", + -12.70235538482666 + ], + [ + "MAG", + -12.702857971191406 + ], + [ + "▁2017)", + -12.702927589416504 + ], + [ + "▁Influence", + -12.702990531921387 + ], + [ + "▁camel", + -12.703124046325684 + ], + [ + "burst", + -12.703126907348633 + ], + [ + "▁sequential", + -12.703189849853516 + ], + [ + "Mid", + -12.703265190124512 + ], + [ + "▁roadmap", + -12.703322410583496 + ], + [ + "▁append", + -12.703333854675293 + ], + [ + "▁Ecuador", + -12.703356742858887 + ], + [ + "sexual", + -12.703470230102539 + ], + [ + "▁thumbnail", + -12.70367431640625 + ], + [ + "▁FULL", + -12.703742980957031 + ], + [ + "▁Helping", + -12.703797340393066 + ], + [ + "▁Armenian", + -12.703843116760254 + ], + [ + "▁handbook", + -12.703851699829102 + ], + [ + "▁snippet", + -12.703988075256348 + ], + [ + "▁butcher", + -12.703998565673828 + ], + [ + "Safe", + -12.704005241394043 + ], + [ + "Chr", + -12.704195022583008 + ], + [ + "204", + -12.7042236328125 + ], + [ + "▁conditional", + -12.704291343688965 + ], + [ + "▁shred", + -12.704345703125 + ], + [ + "▁dialect", + -12.70451831817627 + ], + [ + "▁Hank", + -12.704524040222168 + ], + [ + "purchase", + -12.704545974731445 + ], + [ + "▁Gardner", + -12.704588890075684 + ], + [ + "▁4:00", + -12.704815864562988 + ], + [ + "▁dividing", + -12.704856872558594 + ], + [ + "▁influencers", + -12.704910278320312 + ], + [ + "▁beacon", + -12.704926490783691 + ], + [ + "▁distract", + -12.705015182495117 + ], + [ + "▁ammunition", + -12.705320358276367 + ], + [ + "▁faded", + -12.705367088317871 + ], + [ + "physics", + -12.705472946166992 + ], + [ + "▁Reef", + -12.70551872253418 + ], + [ + "▁scaffold", + -12.70578670501709 + ], + [ + "▁obedience", + -12.705854415893555 + ], + [ + "ceased", + -12.705925941467285 + ], + [ + "▁6%", + -12.7059907913208 + ], + [ + "▁savory", + -12.706059455871582 + ], + [ + "Sun", + -12.706100463867188 + ], + [ + "▁sponsoring", + -12.706147193908691 + ], + [ + "▁characterize", + -12.706149101257324 + ], + [ + "▁variability", + -12.706191062927246 + ], + [ + "colo", + -12.706195831298828 + ], + [ + "▁snowboard", + -12.706238746643066 + ], + [ + "▁braid", + -12.706266403198242 + ], + [ + "▁INFORMATION", + -12.706320762634277 + ], + [ + "denote", + -12.706327438354492 + ], + [ + "mom", + -12.706480026245117 + ], + [ + "▁Population", + -12.706514358520508 + ], + [ + "▁Superman", + -12.706557273864746 + ], + [ + "▁finite", + -12.706658363342285 + ], + [ + "network", + -12.706696510314941 + ], + [ + "630", + -12.70678997039795 + ], + [ + "▁10-15", + -12.706883430480957 + ], + [ + "▁Peer", + -12.706908226013184 + ], + [ + "▁Serial", + -12.707221984863281 + ], + [ + "ooooo", + -12.707237243652344 + ], + [ + "5.3", + -12.707277297973633 + ], + [ + "▁Tao", + -12.707459449768066 + ], + [ + "ERN", + -12.707460403442383 + ], + [ + "▁minorities", + -12.707618713378906 + ], + [ + "▁Startup", + -12.707620620727539 + ], + [ + "▁Buff", + -12.70773983001709 + ], + [ + "▁Raise", + -12.707768440246582 + ], + [ + "▁immersion", + -12.707792282104492 + ], + [ + "laden", + -12.707930564880371 + ], + [ + "4.8", + -12.707954406738281 + ], + [ + "starred", + -12.708250045776367 + ], + [ + "▁spiritually", + -12.708281517028809 + ], + [ + "▁reconsider", + -12.708285331726074 + ], + [ + "▁Comparison", + -12.708392143249512 + ], + [ + "▁shredded", + -12.708462715148926 + ], + [ + "playing", + -12.708508491516113 + ], + [ + "1.6", + -12.708568572998047 + ], + [ + "▁refreshments", + -12.708597183227539 + ], + [ + "▁reckless", + -12.708609580993652 + ], + [ + "▁bash", + -12.70888614654541 + ], + [ + "5°", + -12.709233283996582 + ], + [ + "▁broadcaster", + -12.709278106689453 + ], + [ + "▁fluent", + -12.709417343139648 + ], + [ + "8.0", + -12.709650039672852 + ], + [ + "inde", + -12.70965576171875 + ], + [ + "Jack", + -12.709683418273926 + ], + [ + "▁integer", + -12.709773063659668 + ], + [ + "▁Logistics", + -12.709798812866211 + ], + [ + "▁affordability", + -12.709810256958008 + ], + [ + "▁illumination", + -12.709930419921875 + ], + [ + "▁Allison", + -12.709980010986328 + ], + [ + "agna", + -12.709999084472656 + ], + [ + "belonged", + -12.710134506225586 + ], + [ + "▁businessman", + -12.710165977478027 + ], + [ + "▁Publications", + -12.710227966308594 + ], + [ + "emic", + -12.710301399230957 + ], + [ + "fitting", + -12.710476875305176 + ], + [ + "hora", + -12.710579872131348 + ], + [ + "technical", + -12.710579872131348 + ], + [ + "session", + -12.710663795471191 + ], + [ + "▁Springer", + -12.710704803466797 + ], + [ + "proclaimed", + -12.710867881774902 + ], + [ + "▁Mohammed", + -12.710868835449219 + ], + [ + "▁homeland", + -12.710907936096191 + ], + [ + "▁modifying", + -12.711024284362793 + ], + [ + "▁Thur", + -12.711112022399902 + ], + [ + "▁toxicity", + -12.711237907409668 + ], + [ + "▁extinguish", + -12.711271286010742 + ], + [ + "▁firearm", + -12.711432456970215 + ], + [ + "LET", + -12.711446762084961 + ], + [ + "▁Crest", + -12.711467742919922 + ], + [ + "▁revoke", + -12.71148681640625 + ], + [ + "deck", + -12.71150016784668 + ], + [ + "▁dispenser", + -12.711501121520996 + ], + [ + "▁Algo", + -12.711555480957031 + ], + [ + "▁simulated", + -12.711730003356934 + ], + [ + "146", + -12.711749076843262 + ], + [ + "▁CHI", + -12.711776733398438 + ], + [ + "▁snapped", + -12.711821556091309 + ], + [ + "▁propane", + -12.711846351623535 + ], + [ + "SIG", + -12.71186351776123 + ], + [ + "▁mapped", + -12.71186637878418 + ], + [ + "▁Peach", + -12.712044715881348 + ], + [ + "ensen", + -12.712055206298828 + ], + [ + "▁whiskey", + -12.71208667755127 + ], + [ + "▁crises", + -12.712212562561035 + ], + [ + "▁SHA", + -12.712334632873535 + ], + [ + "183", + -12.712339401245117 + ], + [ + "▁Alibaba", + -12.712345123291016 + ], + [ + "bodied", + -12.71237564086914 + ], + [ + "▁diminished", + -12.712662696838379 + ], + [ + "Like", + -12.712732315063477 + ], + [ + "▁Vatican", + -12.712749481201172 + ], + [ + "▁fluctuations", + -12.712751388549805 + ], + [ + "▁imminent", + -12.712882041931152 + ], + [ + "construed", + -12.712890625 + ], + [ + "▁disciple", + -12.712911605834961 + ], + [ + "POWER", + -12.71292495727539 + ], + [ + "bustling", + -12.712937355041504 + ], + [ + "lived", + -12.712959289550781 + ], + [ + "16)", + -12.71302604675293 + ], + [ + "▁troop", + -12.713064193725586 + ], + [ + "▁anesthesia", + -12.713072776794434 + ], + [ + "▁nourish", + -12.713176727294922 + ], + [ + "▁unpack", + -12.713271141052246 + ], + [ + "▁Bry", + -12.713495254516602 + ], + [ + "▁excavation", + -12.713621139526367 + ], + [ + "▁moss", + -12.71365737915039 + ], + [ + "▁JR", + -12.713821411132812 + ], + [ + "Edit", + -12.713944435119629 + ], + [ + "▁Canton", + -12.713968276977539 + ], + [ + "trackback", + -12.71402359008789 + ], + [ + "▁trajectory", + -12.714091300964355 + ], + [ + "▁Silva", + -12.714131355285645 + ], + [ + "▁Didn", + -12.71413803100586 + ], + [ + "▁measurable", + -12.714225769042969 + ], + [ + "▁fostering", + -12.714232444763184 + ], + [ + "UV", + -12.714373588562012 + ], + [ + "Queen", + -12.714411735534668 + ], + [ + "▁Sort", + -12.714574813842773 + ], + [ + "▁cohesive", + -12.714629173278809 + ], + [ + "title", + -12.714646339416504 + ], + [ + "▁Potato", + -12.7147216796875 + ], + [ + "▁4:30", + -12.714777946472168 + ], + [ + "▁capitalize", + -12.714851379394531 + ], + [ + "pertain", + -12.715039253234863 + ], + [ + "WL", + -12.715056419372559 + ], + [ + "▁Lexington", + -12.715058326721191 + ], + [ + "▁2500", + -12.715079307556152 + ], + [ + "▁Vladimir", + -12.715100288391113 + ], + [ + "Universit", + -12.715191841125488 + ], + [ + "▁volunteered", + -12.715312957763672 + ], + [ + "KT", + -12.715544700622559 + ], + [ + "▁Steering", + -12.715545654296875 + ], + [ + "▁clot", + -12.715576171875 + ], + [ + "mailed", + -12.71562671661377 + ], + [ + "▁Kickstarter", + -12.715639114379883 + ], + [ + "borg", + -12.71574592590332 + ], + [ + "▁amusing", + -12.71579647064209 + ], + [ + "kett", + -12.716079711914062 + ], + [ + "▁homogen", + -12.71619701385498 + ], + [ + "▁centrally", + -12.7163667678833 + ], + [ + "▁glazing", + -12.716516494750977 + ], + [ + "▁grassroots", + -12.716718673706055 + ], + [ + "▁malaria", + -12.716830253601074 + ], + [ + "▁Imaging", + -12.71691608428955 + ], + [ + "Plus", + -12.717157363891602 + ], + [ + "▁transitional", + -12.7172269821167 + ], + [ + "loch", + -12.717378616333008 + ], + [ + "▁Optional", + -12.717462539672852 + ], + [ + "▁Daddy", + -12.717473030090332 + ], + [ + "wry", + -12.717519760131836 + ], + [ + "▁sympathetic", + -12.717527389526367 + ], + [ + "▁Combat", + -12.71756649017334 + ], + [ + "▁LGBT", + -12.717720985412598 + ], + [ + "ATT", + -12.71772575378418 + ], + [ + "reek", + -12.718031883239746 + ], + [ + "▁Gender", + -12.71819019317627 + ], + [ + "▁treadmill", + -12.718213081359863 + ], + [ + "▁brownie", + -12.718230247497559 + ], + [ + "▁Turtle", + -12.718283653259277 + ], + [ + "digital", + -12.718335151672363 + ], + [ + "▁Trevor", + -12.718338012695312 + ], + [ + "▁possessed", + -12.718494415283203 + ], + [ + "▁peninsula", + -12.71854019165039 + ], + [ + "▁preservative", + -12.718606948852539 + ], + [ + "▁recognizable", + -12.718606948852539 + ], + [ + "▁toasted", + -12.718693733215332 + ], + [ + "fax", + -12.718698501586914 + ], + [ + "sponsored", + -12.718728065490723 + ], + [ + "▁specimen", + -12.718734741210938 + ], + [ + "▁FIRST", + -12.718742370605469 + ], + [ + "▁shepherd", + -12.718742370605469 + ], + [ + "▁Broken", + -12.718828201293945 + ], + [ + "▁Behavior", + -12.718844413757324 + ], + [ + "▁reload", + -12.718862533569336 + ], + [ + "▁allergen", + -12.71899700164795 + ], + [ + "▁Thousand", + -12.719015121459961 + ], + [ + "xxx", + -12.719056129455566 + ], + [ + "▁Geographic", + -12.719076156616211 + ], + [ + "▁striped", + -12.719106674194336 + ], + [ + "▁35%", + -12.71914005279541 + ], + [ + "▁BlackBerry", + -12.719215393066406 + ], + [ + "▁Hunting", + -12.719353675842285 + ], + [ + "▁symbolize", + -12.719483375549316 + ], + [ + "▁Sah", + -12.719632148742676 + ], + [ + "▁township", + -12.71972370147705 + ], + [ + "glued", + -12.719751358032227 + ], + [ + "irrespective", + -12.719754219055176 + ], + [ + "▁THANK", + -12.719757080078125 + ], + [ + "▁Dome", + -12.7198486328125 + ], + [ + "marital", + -12.719862937927246 + ], + [ + "▁newbie", + -12.719954490661621 + ], + [ + "▁Elvis", + -12.719955444335938 + ], + [ + "▁confidently", + -12.72011661529541 + ], + [ + "▁Resident", + -12.720182418823242 + ], + [ + "▁fermentation", + -12.720230102539062 + ], + [ + "▁wives", + -12.720247268676758 + ], + [ + "▁Pap", + -12.720314025878906 + ], + [ + "▁Priest", + -12.720345497131348 + ], + [ + "▁Liability", + -12.72044849395752 + ], + [ + "▁Trustees", + -12.720465660095215 + ], + [ + "▁schema", + -12.720479011535645 + ], + [ + "▁Walsh", + -12.720568656921387 + ], + [ + "▁Carlo", + -12.720577239990234 + ], + [ + "▁individualized", + -12.720579147338867 + ], + [ + "▁Lack", + -12.720582008361816 + ], + [ + "▁Bernie", + -12.720758438110352 + ], + [ + "employed", + -12.720793724060059 + ], + [ + "stine", + -12.720819473266602 + ], + [ + "▁Franc", + -12.720852851867676 + ], + [ + "sustaining", + -12.720884323120117 + ], + [ + "▁Polar", + -12.720909118652344 + ], + [ + "▁Autism", + -12.72097396850586 + ], + [ + "ndol", + -12.721220016479492 + ], + [ + "robo", + -12.721287727355957 + ], + [ + "FTA", + -12.721323013305664 + ], + [ + "Pvt", + -12.721330642700195 + ], + [ + "▁PMID", + -12.721447944641113 + ], + [ + "▁Vernon", + -12.721470832824707 + ], + [ + "▁realtor", + -12.721503257751465 + ], + [ + "▁Hiring", + -12.721601486206055 + ], + [ + "immersed", + -12.721714973449707 + ], + [ + "▁Stool", + -12.721746444702148 + ], + [ + "002", + -12.721763610839844 + ], + [ + "esian", + -12.721769332885742 + ], + [ + "▁Pearson", + -12.721787452697754 + ], + [ + "▁overdose", + -12.721982955932617 + ], + [ + "THE", + -12.721997261047363 + ], + [ + "NAL", + -12.72205924987793 + ], + [ + "▁perch", + -12.722127914428711 + ], + [ + "▁precedent", + -12.722150802612305 + ], + [ + "6.5", + -12.722196578979492 + ], + [ + "▁1951", + -12.722455024719238 + ], + [ + "▁pave", + -12.722546577453613 + ], + [ + "▁takeaway", + -12.722555160522461 + ], + [ + "▁cobble", + -12.722618103027344 + ], + [ + "▁Zan", + -12.722820281982422 + ], + [ + "▁invade", + -12.72289752960205 + ], + [ + "▁jig", + -12.723176002502441 + ], + [ + "▁organism", + -12.723278999328613 + ], + [ + "168", + -12.723308563232422 + ], + [ + "▁absorbing", + -12.723319053649902 + ], + [ + "▁Bosch", + -12.723360061645508 + ], + [ + "ween", + -12.72339916229248 + ], + [ + ":36", + -12.72347640991211 + ], + [ + "▁progresses", + -12.723655700683594 + ], + [ + "▁illuminated", + -12.723806381225586 + ], + [ + "▁tandem", + -12.72389030456543 + ], + [ + "▁HUGE", + -12.724027633666992 + ], + [ + "▁Slate", + -12.724072456359863 + ], + [ + "Most", + -12.724084854125977 + ], + [ + "▁repo", + -12.724090576171875 + ], + [ + "▁Fountain", + -12.724093437194824 + ], + [ + "▁molded", + -12.724194526672363 + ], + [ + "merging", + -12.724282264709473 + ], + [ + "▁CLICK", + -12.7243070602417 + ], + [ + "▁observer", + -12.724327087402344 + ], + [ + "▁2011)", + -12.72437572479248 + ], + [ + "6.4", + -12.724411964416504 + ], + [ + "▁Ottoman", + -12.724480628967285 + ], + [ + "▁swinging", + -12.724510192871094 + ], + [ + "▁pleasantly", + -12.72453498840332 + ], + [ + "▁Manga", + -12.724700927734375 + ], + [ + "▁neu", + -12.724802017211914 + ], + [ + "▁Dentistry", + -12.724842071533203 + ], + [ + "▁Underground", + -12.724929809570312 + ], + [ + "▁Clement", + -12.725029945373535 + ], + [ + "ALLY", + -12.725093841552734 + ], + [ + "▁Input", + -12.725193977355957 + ], + [ + "▁choke", + -12.7252197265625 + ], + [ + "ор", + -12.725308418273926 + ], + [ + "▁cling", + -12.7256441116333 + ], + [ + "gression", + -12.72574520111084 + ], + [ + "Here", + -12.726099967956543 + ], + [ + "▁impeccable", + -12.726473808288574 + ], + [ + "▁Frankfurt", + -12.726542472839355 + ], + [ + "▁astounding", + -12.72661018371582 + ], + [ + "▁Jude", + -12.726709365844727 + ], + [ + "▁Tracking", + -12.726816177368164 + ], + [ + "▁Mattress", + -12.72684383392334 + ], + [ + "onian", + -12.726873397827148 + ], + [ + "dipped", + -12.727010726928711 + ], + [ + "leader", + -12.727035522460938 + ], + [ + "▁Diver", + -12.727289199829102 + ], + [ + "▁Innovative", + -12.727359771728516 + ], + [ + "▁UW", + -12.727377891540527 + ], + [ + "(5)", + -12.727717399597168 + ], + [ + "linda", + -12.727982521057129 + ], + [ + "connected", + -12.728013038635254 + ], + [ + "▁Vineyard", + -12.728058815002441 + ], + [ + "5.5", + -12.72826862335205 + ], + [ + "assorted", + -12.728286743164062 + ], + [ + "2004", + -12.728414535522461 + ], + [ + "210", + -12.728418350219727 + ], + [ + "▁hesitation", + -12.728437423706055 + ], + [ + "▁flotation", + -12.728475570678711 + ], + [ + "▁neighbour", + -12.728498458862305 + ], + [ + "▁reimburse", + -12.72867488861084 + ], + [ + "▁Dil", + -12.728747367858887 + ], + [ + "▁Gale", + -12.728752136230469 + ], + [ + "▁132", + -12.728758811950684 + ], + [ + "▁clog", + -12.729022979736328 + ], + [ + "▁Paypal", + -12.729028701782227 + ], + [ + "xml", + -12.729048728942871 + ], + [ + "Next", + -12.729140281677246 + ], + [ + "KR", + -12.729191780090332 + ], + [ + "▁Choir", + -12.729302406311035 + ], + [ + "moving", + -12.72935676574707 + ], + [ + "▁Insider", + -12.729482650756836 + ], + [ + "▁Permit", + -12.729574203491211 + ], + [ + "▁Darren", + -12.729751586914062 + ], + [ + "bang", + -12.729825019836426 + ], + [ + "▁Tropical", + -12.730021476745605 + ], + [ + "imagining", + -12.730294227600098 + ], + [ + "5-2", + -12.730359077453613 + ], + [ + "▁Budapest", + -12.730362892150879 + ], + [ + "▁vicious", + -12.730393409729004 + ], + [ + "▁Duo", + -12.73043155670166 + ], + [ + "▁intervene", + -12.730615615844727 + ], + [ + "▁malpractice", + -12.730640411376953 + ], + [ + "either", + -12.730735778808594 + ], + [ + "▁solitary", + -12.73077392578125 + ], + [ + "▁mow", + -12.731225967407227 + ], + [ + "▁termite", + -12.73146915435791 + ], + [ + "▁consortium", + -12.731525421142578 + ], + [ + "neighbouring", + -12.731600761413574 + ], + [ + "▁drained", + -12.731639862060547 + ], + [ + "▁Clothing", + -12.73176097869873 + ], + [ + "▁Required", + -12.731800079345703 + ], + [ + "▁prosperous", + -12.731842041015625 + ], + [ + "lower", + -12.732054710388184 + ], + [ + "▁compensated", + -12.732186317443848 + ], + [ + "▁Paso", + -12.732213020324707 + ], + [ + "▁submarine", + -12.732226371765137 + ], + [ + "▁Robertson", + -12.732255935668945 + ], + [ + "▁Governance", + -12.732277870178223 + ], + [ + "▁Reception", + -12.732294082641602 + ], + [ + "▁Aston", + -12.732440948486328 + ], + [ + "buster", + -12.732513427734375 + ], + [ + "▁silky", + -12.732538223266602 + ], + [ + "relocated", + -12.732547760009766 + ], + [ + "▁Sears", + -12.73282527923584 + ], + [ + "▁Eclipse", + -12.732963562011719 + ], + [ + "▁bum", + -12.733012199401855 + ], + [ + "double", + -12.733038902282715 + ], + [ + "While", + -12.733075141906738 + ], + [ + "▁humility", + -12.73324966430664 + ], + [ + "▁Victory", + -12.733781814575195 + ], + [ + "tribute", + -12.733970642089844 + ], + [ + "LER", + -12.734014511108398 + ], + [ + "▁RSVP", + -12.734149932861328 + ], + [ + "SSA", + -12.734192848205566 + ], + [ + "▁Directive", + -12.734332084655762 + ], + [ + "▁Stripe", + -12.734416007995605 + ], + [ + "▁darn", + -12.73444938659668 + ], + [ + "▁(2005)", + -12.734572410583496 + ], + [ + "▁endured", + -12.734574317932129 + ], + [ + "2005", + -12.734853744506836 + ], + [ + "▁woo", + -12.734925270080566 + ], + [ + "▁Maritime", + -12.73493766784668 + ], + [ + "▁Marketplace", + -12.734964370727539 + ], + [ + "▁Stitch", + -12.735020637512207 + ], + [ + "228", + -12.73503303527832 + ], + [ + "government", + -12.735175132751465 + ], + [ + "furthermore", + -12.735186576843262 + ], + [ + "USE", + -12.735248565673828 + ], + [ + "LX", + -12.735295295715332 + ], + [ + "▁Kolkata", + -12.73536491394043 + ], + [ + "▁Lyric", + -12.735457420349121 + ], + [ + "rect", + -12.735472679138184 + ], + [ + "▁tariff", + -12.735569953918457 + ], + [ + "tford", + -12.735613822937012 + ], + [ + "▁denomination", + -12.735626220703125 + ], + [ + "eering", + -12.735631942749023 + ], + [ + "▁Printed", + -12.735637664794922 + ], + [ + "▁persistence", + -12.735679626464844 + ], + [ + "▁competencies", + -12.735685348510742 + ], + [ + "▁toothbrush", + -12.735892295837402 + ], + [ + "▁Possible", + -12.735982894897461 + ], + [ + "flor", + -12.73599910736084 + ], + [ + "▁alteration", + -12.736062049865723 + ], + [ + "sync", + -12.736075401306152 + ], + [ + "▁Saga", + -12.736083984375 + ], + [ + "▁vivo", + -12.736111640930176 + ], + [ + "Chris", + -12.736120223999023 + ], + [ + "▁Pike", + -12.736262321472168 + ], + [ + "▁Navigation", + -12.736395835876465 + ], + [ + "▁plywood", + -12.73639965057373 + ], + [ + "sparked", + -12.736493110656738 + ], + [ + "▁TWO", + -12.736634254455566 + ], + [ + "▁Warrior", + -12.73668098449707 + ], + [ + "▁Anglo", + -12.736733436584473 + ], + [ + "▁fenced", + -12.736756324768066 + ], + [ + "▁EXP", + -12.736834526062012 + ], + [ + "VD", + -12.736945152282715 + ], + [ + "▁brim", + -12.736980438232422 + ], + [ + "▁coolest", + -12.736991882324219 + ], + [ + "important", + -12.737066268920898 + ], + [ + "▁Santiago", + -12.737152099609375 + ], + [ + "5-8", + -12.737154960632324 + ], + [ + "▁condemned", + -12.737178802490234 + ], + [ + "▁intestine", + -12.737306594848633 + ], + [ + "▁competitiveness", + -12.737709045410156 + ], + [ + "txt", + -12.737763404846191 + ], + [ + "▁sac", + -12.737765312194824 + ], + [ + "▁leaflet", + -12.737853050231934 + ], + [ + "▁Aussie", + -12.737961769104004 + ], + [ + "▁footsteps", + -12.737984657287598 + ], + [ + "▁exhibiting", + -12.738046646118164 + ], + [ + "solving", + -12.738171577453613 + ], + [ + "▁Pierce", + -12.738210678100586 + ], + [ + "August", + -12.738264083862305 + ], + [ + "▁caregiver", + -12.738299369812012 + ], + [ + "ONG", + -12.738627433776855 + ], + [ + "▁disco", + -12.7387056350708 + ], + [ + "▁congratulations", + -12.739089965820312 + ], + [ + "Run", + -12.73910903930664 + ], + [ + "longtime", + -12.739253044128418 + ], + [ + "209", + -12.739295959472656 + ], + [ + "▁override", + -12.739456176757812 + ], + [ + "▁Alpine", + -12.73952865600586 + ], + [ + "▁Trophy", + -12.739544868469238 + ], + [ + "▁Alba", + -12.739554405212402 + ], + [ + "▁affinity", + -12.739701271057129 + ], + [ + "▁CJ", + -12.739710807800293 + ], + [ + "▁detained", + -12.739725112915039 + ], + [ + "▁Outlet", + -12.739792823791504 + ], + [ + "▁Tiffany", + -12.739909172058105 + ], + [ + "▁contextual", + -12.739956855773926 + ], + [ + "▁redesigned", + -12.740032196044922 + ], + [ + "▁Buddhism", + -12.740046501159668 + ], + [ + "Jan", + -12.740179061889648 + ], + [ + ";0183;32;", + -12.740184783935547 + ], + [ + "RAL", + -12.740286827087402 + ], + [ + "▁osteo", + -12.740287780761719 + ], + [ + "▁1300", + -12.740300178527832 + ], + [ + "▁nightlife", + -12.740360260009766 + ], + [ + "▁rethink", + -12.740456581115723 + ], + [ + "▁Whisk", + -12.740564346313477 + ], + [ + "terio", + -12.74067497253418 + ], + [ + "Smart", + -12.740772247314453 + ], + [ + "Del", + -12.740781784057617 + ], + [ + "computer", + -12.740781784057617 + ], + [ + "▁stripe", + -12.741113662719727 + ], + [ + "▁secretly", + -12.741138458251953 + ], + [ + "▁Nico", + -12.741246223449707 + ], + [ + "UTE", + -12.74132251739502 + ], + [ + "▁pollen", + -12.741332054138184 + ], + [ + "▁leaked", + -12.741341590881348 + ], + [ + "▁Freeman", + -12.741423606872559 + ], + [ + "▁efficiencies", + -12.741497039794922 + ], + [ + "▁misses", + -12.741506576538086 + ], + [ + "▁medic", + -12.741654396057129 + ], + [ + "▁rumour", + -12.741677284240723 + ], + [ + "▁finalists", + -12.741694450378418 + ], + [ + "filter", + -12.741730690002441 + ], + [ + "▁celery", + -12.741777420043945 + ], + [ + "▁Lawyer", + -12.74178409576416 + ], + [ + "ARCH", + -12.74180793762207 + ], + [ + "▁Intelligent", + -12.741989135742188 + ], + [ + "▁Malcolm", + -12.742050170898438 + ], + [ + "▁pronunciation", + -12.742118835449219 + ], + [ + "▁Prevent", + -12.742155075073242 + ], + [ + "▁walmart", + -12.742258071899414 + ], + [ + "▁divers", + -12.742384910583496 + ], + [ + "▁Neighborhood", + -12.742465019226074 + ], + [ + "LEA", + -12.7425537109375 + ], + [ + "lord", + -12.742587089538574 + ], + [ + "Card", + -12.742612838745117 + ], + [ + "▁dismissal", + -12.74278450012207 + ], + [ + "available", + -12.742819786071777 + ], + [ + "analytic", + -12.743000984191895 + ], + [ + "▁Responsible", + -12.743019104003906 + ], + [ + "sentenced", + -12.743024826049805 + ], + [ + "102", + -12.74307918548584 + ], + [ + "▁Emerald", + -12.743157386779785 + ], + [ + "▁UFC", + -12.743176460266113 + ], + [ + "▁Yun", + -12.74321460723877 + ], + [ + "▁SAM", + -12.7432861328125 + ], + [ + "▁fiberglass", + -12.743338584899902 + ], + [ + "lute", + -12.74335765838623 + ], + [ + "▁Oriental", + -12.743366241455078 + ], + [ + "Miss", + -12.74338150024414 + ], + [ + "▁Lindsay", + -12.743383407592773 + ], + [ + "▁Johann", + -12.743416786193848 + ], + [ + "▁Happen", + -12.74364948272705 + ], + [ + "▁sidebar", + -12.743736267089844 + ], + [ + "▁trekking", + -12.743785858154297 + ], + [ + "CHAR", + -12.743789672851562 + ], + [ + "▁Ard", + -12.74390697479248 + ], + [ + "Site", + -12.744004249572754 + ], + [ + "eux", + -12.744029998779297 + ], + [ + "▁wicket", + -12.744059562683105 + ], + [ + "▁settlers", + -12.7440767288208 + ], + [ + "▁Generic", + -12.744359970092773 + ], + [ + "▁Infinity", + -12.744473457336426 + ], + [ + "▁stumble", + -12.744606018066406 + ], + [ + "▁roommate", + -12.744641304016113 + ], + [ + "▁dra", + -12.74472713470459 + ], + [ + "▁Dhabi", + -12.744768142700195 + ], + [ + "RIP", + -12.744823455810547 + ], + [ + "roof", + -12.744834899902344 + ], + [ + "▁Dyna", + -12.744837760925293 + ], + [ + "▁Soil", + -12.744915008544922 + ], + [ + "▁Farmer", + -12.74492073059082 + ], + [ + "▁Owl", + -12.745019912719727 + ], + [ + "▁fruity", + -12.745065689086914 + ], + [ + "▁claimant", + -12.74524974822998 + ], + [ + "confidence", + -12.745401382446289 + ], + [ + "▁CX", + -12.7454833984375 + ], + [ + "tetra", + -12.745524406433105 + ], + [ + "▁Elli", + -12.745647430419922 + ], + [ + "MW", + -12.745841979980469 + ], + [ + "▁homelessness", + -12.745864868164062 + ], + [ + "▁bosses", + -12.745924949645996 + ], + [ + "▁inhibition", + -12.7459716796875 + ], + [ + "▁2010)", + -12.745990753173828 + ], + [ + "▁fru", + -12.746124267578125 + ], + [ + "▁meme", + -12.74617862701416 + ], + [ + "▁Gaz", + -12.746224403381348 + ], + [ + "MIL", + -12.74634075164795 + ], + [ + "▁freshness", + -12.746404647827148 + ], + [ + "▁Rwanda", + -12.746417045593262 + ], + [ + "▁similarity", + -12.746469497680664 + ], + [ + "MEN", + -12.746498107910156 + ], + [ + "▁elusive", + -12.74654483795166 + ], + [ + "▁zucchini", + -12.746763229370117 + ], + [ + "tending", + -12.74677562713623 + ], + [ + "phthal", + -12.746971130371094 + ], + [ + "▁Baldwin", + -12.747060775756836 + ], + [ + "▁Roh", + -12.747090339660645 + ], + [ + "▁Foam", + -12.747130393981934 + ], + [ + "publish", + -12.747339248657227 + ], + [ + "0-2", + -12.747393608093262 + ], + [ + "▁hydrated", + -12.747414588928223 + ], + [ + "▁Fairy", + -12.74743366241455 + ], + [ + "▁thirst", + -12.74753189086914 + ], + [ + "▁daring", + -12.747546195983887 + ], + [ + "540", + -12.747614860534668 + ], + [ + "▁alarming", + -12.747663497924805 + ], + [ + "▁Skill", + -12.747668266296387 + ], + [ + "▁Taliban", + -12.747736930847168 + ], + [ + "▁whim", + -12.747751235961914 + ], + [ + "▁Neck", + -12.747833251953125 + ], + [ + "▁trimmed", + -12.7478666305542 + ], + [ + "▁Pharma", + -12.747872352600098 + ], + [ + "▁Trick", + -12.747886657714844 + ], + [ + "AME", + -12.747937202453613 + ], + [ + "stamp", + -12.747937202453613 + ], + [ + "▁Witness", + -12.747957229614258 + ], + [ + "▁misconduct", + -12.747971534729004 + ], + [ + "▁biomass", + -12.747997283935547 + ], + [ + "▁fleece", + -12.748082160949707 + ], + [ + "▁monastery", + -12.748154640197754 + ], + [ + "ijk", + -12.748456001281738 + ], + [ + "NDA", + -12.748461723327637 + ], + [ + "▁embarrassed", + -12.748969078063965 + ], + [ + "▁ligament", + -12.749131202697754 + ], + [ + "▁nerd", + -12.749162673950195 + ], + [ + "▁specialization", + -12.749204635620117 + ], + [ + "▁rationale", + -12.74925422668457 + ], + [ + "phonic", + -12.749650001525879 + ], + [ + "▁Delicious", + -12.74967098236084 + ], + [ + "▁enrichment", + -12.749689102172852 + ], + [ + "uben", + -12.749787330627441 + ], + [ + "BOX", + -12.750137329101562 + ], + [ + "▁Tau", + -12.75014877319336 + ], + [ + "▁barcode", + -12.750378608703613 + ], + [ + "▁shrine", + -12.750401496887207 + ], + [ + "▁Koch", + -12.750467300415039 + ], + [ + "OTC", + -12.750476837158203 + ], + [ + "▁hallmark", + -12.750508308410645 + ], + [ + "House", + -12.75065803527832 + ], + [ + "▁SDK", + -12.750746726989746 + ], + [ + "▁Ethereum", + -12.75101089477539 + ], + [ + "October", + -12.75108528137207 + ], + [ + "▁entitlement", + -12.751134872436523 + ], + [ + "▁Pendant", + -12.751362800598145 + ], + [ + "▁cue", + -12.75162124633789 + ], + [ + "▁1933", + -12.751717567443848 + ], + [ + "▁Stretch", + -12.751737594604492 + ], + [ + "▁RFID", + -12.751790046691895 + ], + [ + "▁Georgian", + -12.751867294311523 + ], + [ + "▁lethal", + -12.751907348632812 + ], + [ + "▁synonymous", + -12.751935958862305 + ], + [ + "bler", + -12.751956939697266 + ], + [ + "▁acquainted", + -12.751988410949707 + ], + [ + "▁fragrant", + -12.752135276794434 + ], + [ + "TECH", + -12.752142906188965 + ], + [ + "MLS", + -12.752246856689453 + ], + [ + "elk", + -12.752334594726562 + ], + [ + "▁Pir", + -12.752358436584473 + ], + [ + "▁computation", + -12.752413749694824 + ], + [ + "ggio", + -12.75244140625 + ], + [ + "▁cellphone", + -12.752604484558105 + ], + [ + "▁Vegan", + -12.752645492553711 + ], + [ + "▁entice", + -12.752655982971191 + ], + [ + "▁Naples", + -12.752692222595215 + ], + [ + "▁Occasionally", + -12.75275707244873 + ], + [ + "▁Cindy", + -12.752827644348145 + ], + [ + "logger", + -12.753015518188477 + ], + [ + "uil", + -12.753024101257324 + ], + [ + "sford", + -12.753171920776367 + ], + [ + "▁Attempt", + -12.753458976745605 + ], + [ + "▁assemblies", + -12.753525733947754 + ], + [ + "▁Grain", + -12.753774642944336 + ], + [ + "nose", + -12.753838539123535 + ], + [ + "▁Dick", + -12.753850936889648 + ], + [ + "▁Transformation", + -12.753853797912598 + ], + [ + "qualified", + -12.753944396972656 + ], + [ + "rahm", + -12.753947257995605 + ], + [ + "▁Quartz", + -12.753958702087402 + ], + [ + "▁roadside", + -12.754059791564941 + ], + [ + "▁proportional", + -12.754071235656738 + ], + [ + "evin", + -12.754234313964844 + ], + [ + "▁Rouge", + -12.754261016845703 + ], + [ + "▁Conclusion", + -12.754308700561523 + ], + [ + "▁Ikea", + -12.75443172454834 + ], + [ + "▁Territory", + -12.754446983337402 + ], + [ + "207", + -12.754655838012695 + ], + [ + "early", + -12.754796981811523 + ], + [ + "▁Ivy", + -12.754855155944824 + ], + [ + "▁Vital", + -12.754866600036621 + ], + [ + "located", + -12.755144119262695 + ], + [ + "▁aero", + -12.755179405212402 + ], + [ + "▁diagonal", + -12.755276679992676 + ], + [ + "▁genomic", + -12.75532054901123 + ], + [ + "▁uncertainties", + -12.755345344543457 + ], + [ + "cooked", + -12.75544261932373 + ], + [ + "▁Avon", + -12.755657196044922 + ], + [ + "▁Hide", + -12.755658149719238 + ], + [ + "▁Yay", + -12.755782127380371 + ], + [ + "▁Attention", + -12.75590705871582 + ], + [ + "▁Cheat", + -12.75607967376709 + ], + [ + "▁richness", + -12.756095886230469 + ], + [ + "▁Keen", + -12.756237983703613 + ], + [ + "▁Mobi", + -12.756260871887207 + ], + [ + "▁sock", + -12.756316184997559 + ], + [ + "▁septic", + -12.756355285644531 + ], + [ + "237", + -12.756378173828125 + ], + [ + "▁noteworthy", + -12.756491661071777 + ], + [ + "ERO", + -12.75650691986084 + ], + [ + "▁Halo", + -12.756660461425781 + ], + [ + "▁Watching", + -12.75671100616455 + ], + [ + "often", + -12.756778717041016 + ], + [ + "added", + -12.756796836853027 + ], + [ + "▁Blast", + -12.756805419921875 + ], + [ + "▁Hamas", + -12.756860733032227 + ], + [ + "stack", + -12.756948471069336 + ], + [ + "▁EDI", + -12.757037162780762 + ], + [ + "solute", + -12.757085800170898 + ], + [ + "▁Sitting", + -12.757149696350098 + ], + [ + "mbu", + -12.75724983215332 + ], + [ + "▁mediator", + -12.757259368896484 + ], + [ + "▁Manitoba", + -12.75731086730957 + ], + [ + "▁clinically", + -12.75732135772705 + ], + [ + "▁1938", + -12.757366180419922 + ], + [ + "border", + -12.757499694824219 + ], + [ + "YP", + -12.757539749145508 + ], + [ + "▁flavorful", + -12.757562637329102 + ], + [ + "▁ubiquitous", + -12.757591247558594 + ], + [ + "atus", + -12.757765769958496 + ], + [ + "▁puck", + -12.757771492004395 + ], + [ + "217", + -12.75778579711914 + ], + [ + "▁acidity", + -12.75780200958252 + ], + [ + "▁Mechanic", + -12.7578706741333 + ], + [ + "▁initiation", + -12.75788402557373 + ], + [ + "▁unbiased", + -12.757943153381348 + ], + [ + "▁HBO", + -12.757959365844727 + ], + [ + "▁Merri", + -12.757969856262207 + ], + [ + "▁slit", + -12.758041381835938 + ], + [ + "▁exploded", + -12.758111000061035 + ], + [ + "▁Lagos", + -12.758150100708008 + ], + [ + "▁paradox", + -12.75825023651123 + ], + [ + "▁Luxembourg", + -12.7583646774292 + ], + [ + "▁1943", + -12.758365631103516 + ], + [ + "–19", + -12.758445739746094 + ], + [ + "▁1911", + -12.758569717407227 + ], + [ + "▁Chick", + -12.758824348449707 + ], + [ + "▁5-10", + -12.758827209472656 + ], + [ + "labelled", + -12.75883674621582 + ], + [ + "▁deduct", + -12.75893783569336 + ], + [ + "▁consequential", + -12.75899887084961 + ], + [ + "▁keto", + -12.759137153625488 + ], + [ + "▁diarrhea", + -12.759138107299805 + ], + [ + "Paul", + -12.7594633102417 + ], + [ + "mok", + -12.75951099395752 + ], + [ + "informed", + -12.75956916809082 + ], + [ + "lade", + -12.759673118591309 + ], + [ + "▁Intra", + -12.75969123840332 + ], + [ + "▁inherit", + -12.759732246398926 + ], + [ + "▁Capture", + -12.759933471679688 + ], + [ + "0-3", + -12.760071754455566 + ], + [ + "▁sunflower", + -12.760377883911133 + ], + [ + "spiel", + -12.760392189025879 + ], + [ + "research", + -12.760640144348145 + ], + [ + "▁Squad", + -12.760848045349121 + ], + [ + "▁indispensable", + -12.76089859008789 + ], + [ + "Photo", + -12.76091480255127 + ], + [ + "▁woodworking", + -12.76096248626709 + ], + [ + "▁resign", + -12.76111888885498 + ], + [ + "▁refining", + -12.761183738708496 + ], + [ + "▁Mutual", + -12.761187553405762 + ], + [ + "OTA", + -12.761321067810059 + ], + [ + "▁frank", + -12.761371612548828 + ], + [ + "▁Hyde", + -12.761474609375 + ], + [ + "▁Hoffman", + -12.761539459228516 + ], + [ + "▁recessed", + -12.761551856994629 + ], + [ + "▁steroids", + -12.761717796325684 + ], + [ + "▁envy", + -12.762237548828125 + ], + [ + "▁actionable", + -12.76228141784668 + ], + [ + "cian", + -12.762505531311035 + ], + [ + "▁McCain", + -12.762547492980957 + ], + [ + "ONS", + -12.762701988220215 + ], + [ + "▁Holt", + -12.762773513793945 + ], + [ + "▁Cluster", + -12.76280403137207 + ], + [ + "Gold", + -12.763076782226562 + ], + [ + "▁quilting", + -12.763084411621094 + ], + [ + "▁Ethan", + -12.763130187988281 + ], + [ + "▁Revelation", + -12.76315689086914 + ], + [ + "▁compass", + -12.763185501098633 + ], + [ + "erro", + -12.76327896118164 + ], + [ + "multi", + -12.76331615447998 + ], + [ + "▁reopen", + -12.763340950012207 + ], + [ + "▁Colonel", + -12.763376235961914 + ], + [ + "▁Parkway", + -12.763543128967285 + ], + [ + "▁explode", + -12.763833999633789 + ], + [ + "wang", + -12.763891220092773 + ], + [ + "gestion", + -12.763895988464355 + ], + [ + "combe", + -12.763961791992188 + ], + [ + "▁Lok", + -12.763973236083984 + ], + [ + "stasis", + -12.763986587524414 + ], + [ + "supported", + -12.764057159423828 + ], + [ + "item", + -12.764236450195312 + ], + [ + "▁Walnut", + -12.764267921447754 + ], + [ + "0-5", + -12.764409065246582 + ], + [ + "Hey", + -12.764450073242188 + ], + [ + "▁Liam", + -12.764738082885742 + ], + [ + "▁Teach", + -12.764975547790527 + ], + [ + "lism", + -12.76508617401123 + ], + [ + "▁issuance", + -12.76513671875 + ], + [ + "advocating", + -12.765206336975098 + ], + [ + "▁Pilates", + -12.765231132507324 + ], + [ + "▁silica", + -12.765339851379395 + ], + [ + "utan", + -12.765349388122559 + ], + [ + "Val", + -12.765642166137695 + ], + [ + "▁limo", + -12.765671730041504 + ], + [ + "erected", + -12.765707015991211 + ], + [ + "▁Triangle", + -12.765724182128906 + ], + [ + "▁snug", + -12.765908241271973 + ], + [ + "Occupational", + -12.765941619873047 + ], + [ + "▁resale", + -12.765961647033691 + ], + [ + "▁electromagnetic", + -12.765992164611816 + ], + [ + "▁Goldman", + -12.766027450561523 + ], + [ + "▁moisturizer", + -12.76611042022705 + ], + [ + "▁interpersonal", + -12.766129493713379 + ], + [ + "▁restrictive", + -12.766313552856445 + ], + [ + "CLE", + -12.766340255737305 + ], + [ + "Leaving", + -12.766454696655273 + ], + [ + "ESA", + -12.76645565032959 + ], + [ + "phal", + -12.766467094421387 + ], + [ + "▁HAS", + -12.766484260559082 + ], + [ + "▁nook", + -12.76652717590332 + ], + [ + "mAh", + -12.766629219055176 + ], + [ + "▁Said", + -12.766646385192871 + ], + [ + "▁Preparation", + -12.766693115234375 + ], + [ + "▁Winnipeg", + -12.766693115234375 + ], + [ + "▁recess", + -12.766728401184082 + ], + [ + "▁astronaut", + -12.766764640808105 + ], + [ + "▁pavilion", + -12.766764640808105 + ], + [ + "tolerance", + -12.76693058013916 + ], + [ + "racy", + -12.76695442199707 + ], + [ + "▁Georgetown", + -12.76704216003418 + ], + [ + "angel", + -12.767112731933594 + ], + [ + "▁Champagne", + -12.767263412475586 + ], + [ + "▁lowes", + -12.767302513122559 + ], + [ + "▁Famous", + -12.767414093017578 + ], + [ + "▁inventive", + -12.767415046691895 + ], + [ + "stipulate", + -12.767991065979004 + ], + [ + "create", + -12.768235206604004 + ], + [ + "▁Sword", + -12.768298149108887 + ], + [ + "▁equitable", + -12.768314361572266 + ], + [ + "▁heroic", + -12.768320083618164 + ], + [ + "4.9", + -12.768360137939453 + ], + [ + "Code", + -12.76842212677002 + ], + [ + "▁latex", + -12.768473625183105 + ], + [ + "▁Isaiah", + -12.768538475036621 + ], + [ + "▁Feedback", + -12.768546104431152 + ], + [ + "▁righteousness", + -12.768548965454102 + ], + [ + "▁$50,000", + -12.768562316894531 + ], + [ + "▁uninterrupted", + -12.768609046936035 + ], + [ + "▁reiterate", + -12.768680572509766 + ], + [ + "▁disconnected", + -12.768819808959961 + ], + [ + "▁contaminants", + -12.768963813781738 + ], + [ + "▁Colonial", + -12.768967628479004 + ], + [ + "▁Carmel", + -12.769290924072266 + ], + [ + "▁Flyer", + -12.769339561462402 + ], + [ + "▁Opportunities", + -12.769461631774902 + ], + [ + "▁tofu", + -12.769726753234863 + ], + [ + "▁airway", + -12.76980209350586 + ], + [ + "▁trivial", + -12.769872665405273 + ], + [ + "TIL", + -12.769911766052246 + ], + [ + "NAP", + -12.770150184631348 + ], + [ + "▁bald", + -12.770180702209473 + ], + [ + "▁McCarthy", + -12.770243644714355 + ], + [ + "faith", + -12.770249366760254 + ], + [ + "840", + -12.770305633544922 + ], + [ + "▁Encourage", + -12.770315170288086 + ], + [ + "▁Intellectual", + -12.770315170288086 + ], + [ + "▁Sanctuary", + -12.77045726776123 + ], + [ + "▁Roland", + -12.770602226257324 + ], + [ + "racking", + -12.770645141601562 + ], + [ + "▁blonde", + -12.770685195922852 + ], + [ + "▁epoxy", + -12.77074146270752 + ], + [ + "Show", + -12.770801544189453 + ], + [ + "Business", + -12.770820617675781 + ], + [ + "▁disturbed", + -12.77084732055664 + ], + [ + "▁Huntington", + -12.770942687988281 + ], + [ + "▁weaken", + -12.770960807800293 + ], + [ + "▁acquaintance", + -12.771026611328125 + ], + [ + "▁righteous", + -12.77114200592041 + ], + [ + "CCA", + -12.77115535736084 + ], + [ + "▁openness", + -12.771198272705078 + ], + [ + "▁Dominic", + -12.771442413330078 + ], + [ + "▁YEAR", + -12.771586418151855 + ], + [ + "▁Flexible", + -12.77160930633545 + ], + [ + "▁GPA", + -12.771644592285156 + ], + [ + "enom", + -12.771659851074219 + ], + [ + "producing", + -12.77177619934082 + ], + [ + "▁Contains", + -12.771809577941895 + ], + [ + "▁aura", + -12.771857261657715 + ], + [ + "▁revive", + -12.77199935913086 + ], + [ + "elson", + -12.772019386291504 + ], + [ + "nock", + -12.772037506103516 + ], + [ + "political", + -12.772150039672852 + ], + [ + "▁Xen", + -12.772164344787598 + ], + [ + "▁UPDATE", + -12.772453308105469 + ], + [ + "▁copyrighted", + -12.77245807647705 + ], + [ + "President", + -12.772479057312012 + ], + [ + "▁Miracle", + -12.772496223449707 + ], + [ + "▁Truly", + -12.772622108459473 + ], + [ + "▁scour", + -12.772748947143555 + ], + [ + "▁Tomato", + -12.772750854492188 + ], + [ + "▁departed", + -12.772859573364258 + ], + [ + "arna", + -12.77295207977295 + ], + [ + "174", + -12.77315616607666 + ], + [ + "IDA", + -12.77326488494873 + ], + [ + "/24", + -12.773303985595703 + ], + [ + "6-4", + -12.773343086242676 + ], + [ + "▁confrontation", + -12.7733736038208 + ], + [ + "▁Joey", + -12.773428916931152 + ], + [ + "▁usher", + -12.773523330688477 + ], + [ + "connection", + -12.773636817932129 + ], + [ + "▁reclaimed", + -12.773847579956055 + ], + [ + "844", + -12.773940086364746 + ], + [ + "lol", + -12.773940086364746 + ], + [ + "▁contested", + -12.774105072021484 + ], + [ + "Control", + -12.77417278289795 + ], + [ + "▁Dairy", + -12.774173736572266 + ], + [ + "▁Lauderdale", + -12.774234771728516 + ], + [ + "imba", + -12.774275779724121 + ], + [ + "▁gracious", + -12.77437686920166 + ], + [ + "ilk", + -12.77444076538086 + ], + [ + "▁Suffolk", + -12.774520874023438 + ], + [ + "▁Exploring", + -12.77452278137207 + ], + [ + "Recruit", + -12.774539947509766 + ], + [ + "▁flank", + -12.77457332611084 + ], + [ + "▁testify", + -12.774664878845215 + ], + [ + "governmental", + -12.774694442749023 + ], + [ + "▁Quantum", + -12.774703025817871 + ], + [ + "▁USC", + -12.77478313446045 + ], + [ + "▁Grad", + -12.77499008178711 + ], + [ + "▁Pound", + -12.775026321411133 + ], + [ + "▁JUST", + -12.775038719177246 + ], + [ + "▁accrue", + -12.77517032623291 + ], + [ + "▁Manuel", + -12.775177955627441 + ], + [ + "620", + -12.775240898132324 + ], + [ + "▁raspberry", + -12.775306701660156 + ], + [ + "▁augmented", + -12.775317192077637 + ], + [ + "▁Miguel", + -12.775382995605469 + ], + [ + "▁Warwick", + -12.775674819946289 + ], + [ + "▁uplifting", + -12.775683403015137 + ], + [ + "▁chilli", + -12.775716781616211 + ], + [ + "▁sewage", + -12.776057243347168 + ], + [ + "6.3", + -12.776090621948242 + ], + [ + "530", + -12.776305198669434 + ], + [ + "▁Dorothy", + -12.776379585266113 + ], + [ + "▁Trojan", + -12.776432037353516 + ], + [ + "▁Winning", + -12.776435852050781 + ], + [ + "▁TCP", + -12.77646541595459 + ], + [ + "1.3", + -12.776520729064941 + ], + [ + "▁fuzzy", + -12.776522636413574 + ], + [ + "▁Thorn", + -12.776597023010254 + ], + [ + "▁EPS", + -12.776790618896484 + ], + [ + "▁wrongful", + -12.776869773864746 + ], + [ + "▁Junk", + -12.776921272277832 + ], + [ + "meal", + -12.776955604553223 + ], + [ + "▁ambience", + -12.777098655700684 + ], + [ + "Law", + -12.777215957641602 + ], + [ + "▁cockpit", + -12.777311325073242 + ], + [ + "▁(2004)", + -12.77734375 + ], + [ + "▁viability", + -12.777377128601074 + ], + [ + "lust", + -12.777400970458984 + ], + [ + "▁Liv", + -12.7774076461792 + ], + [ + "▁Sq", + -12.777441024780273 + ], + [ + "▁Canberra", + -12.777525901794434 + ], + [ + "flavored", + -12.777548789978027 + ], + [ + "▁soaring", + -12.777624130249023 + ], + [ + "ellen", + -12.77775764465332 + ], + [ + "KEY", + -12.777780532836914 + ], + [ + "▁betray", + -12.777800559997559 + ], + [ + "TEL", + -12.777853965759277 + ], + [ + "▁Baltic", + -12.777989387512207 + ], + [ + "▁(40", + -12.77807903289795 + ], + [ + "▁dub", + -12.778085708618164 + ], + [ + "▁hectares", + -12.778107643127441 + ], + [ + "▁statistic", + -12.778145790100098 + ], + [ + "7-1", + -12.778203964233398 + ], + [ + "▁Veteran", + -12.778362274169922 + ], + [ + "▁mortal", + -12.7784423828125 + ], + [ + "Boy", + -12.77849292755127 + ], + [ + "▁headlights", + -12.778495788574219 + ], + [ + "▁disastrous", + -12.778529167175293 + ], + [ + "proposing", + -12.778563499450684 + ], + [ + "2020", + -12.778690338134766 + ], + [ + "▁Fargo", + -12.778694152832031 + ], + [ + "wordpress", + -12.778756141662598 + ], + [ + "▁1880", + -12.778934478759766 + ], + [ + "▁BAR", + -12.778949737548828 + ], + [ + "▁soybean", + -12.778959274291992 + ], + [ + "▁matchup", + -12.779030799865723 + ], + [ + "▁BACK", + -12.779083251953125 + ], + [ + "▁debug", + -12.779191017150879 + ], + [ + "▁Avengers", + -12.77924633026123 + ], + [ + "▁Napa", + -12.77926254272461 + ], + [ + "Fire", + -12.779409408569336 + ], + [ + "▁drilled", + -12.779414176940918 + ], + [ + "▁scrolling", + -12.779584884643555 + ], + [ + "planned", + -12.779699325561523 + ], + [ + "ruck", + -12.779899597167969 + ], + [ + "▁Disaster", + -12.77991008758545 + ], + [ + "▁Yama", + -12.78000545501709 + ], + [ + "▁Conversation", + -12.780108451843262 + ], + [ + "▁Marcel", + -12.78022575378418 + ], + [ + "Learn", + -12.7805814743042 + ], + [ + "Test", + -12.780611038208008 + ], + [ + "cause", + -12.78061580657959 + ], + [ + "▁Tutorial", + -12.780722618103027 + ], + [ + "▁discouraged", + -12.780776977539062 + ], + [ + "▁Blow", + -12.780876159667969 + ], + [ + "▁Newspaper", + -12.780922889709473 + ], + [ + "▁pap", + -12.780973434448242 + ], + [ + "▁Alison", + -12.781060218811035 + ], + [ + "▁Tulsa", + -12.781291961669922 + ], + [ + "▁slipping", + -12.781399726867676 + ], + [ + "democrat", + -12.781447410583496 + ], + [ + "▁Encyclopedia", + -12.781545639038086 + ], + [ + "▁concentrating", + -12.781545639038086 + ], + [ + "▁Grape", + -12.781578063964844 + ], + [ + "▁gastro", + -12.781634330749512 + ], + [ + "wish", + -12.781659126281738 + ], + [ + "eber", + -12.782027244567871 + ], + [ + "▁cowboy", + -12.782081604003906 + ], + [ + "AQ", + -12.782140731811523 + ], + [ + "▁Nile", + -12.782150268554688 + ], + [ + "aldo", + -12.782244682312012 + ], + [ + "▁mole", + -12.7824068069458 + ], + [ + "▁Shim", + -12.782623291015625 + ], + [ + "▁contradiction", + -12.78268814086914 + ], + [ + "TK", + -12.782745361328125 + ], + [ + "▁Clayton", + -12.782797813415527 + ], + [ + "neum", + -12.782828330993652 + ], + [ + "▁NFC", + -12.782831192016602 + ], + [ + "▁Romney", + -12.782966613769531 + ], + [ + "CCC", + -12.783036231994629 + ], + [ + "SEL", + -12.78308391571045 + ], + [ + "▁ideological", + -12.783210754394531 + ], + [ + "deliver", + -12.783225059509277 + ], + [ + "transfer", + -12.783307075500488 + ], + [ + "roti", + -12.783503532409668 + ], + [ + "azole", + -12.783524513244629 + ], + [ + "▁Statistical", + -12.783563613891602 + ], + [ + "▁Valencia", + -12.78372573852539 + ], + [ + "urist", + -12.78386402130127 + ], + [ + "▁NEC", + -12.78387451171875 + ], + [ + "▁DEL", + -12.78388786315918 + ], + [ + "▁Kali", + -12.783928871154785 + ], + [ + "▁Diagnostic", + -12.783930778503418 + ], + [ + "▁Sherman", + -12.784076690673828 + ], + [ + "▁Millennium", + -12.784500122070312 + ], + [ + "▁Selected", + -12.784523010253906 + ], + [ + "▁sesame", + -12.784717559814453 + ], + [ + "▁drastic", + -12.784730911254883 + ], + [ + "▁mundane", + -12.784789085388184 + ], + [ + "▁Fighter", + -12.78481388092041 + ], + [ + "▁Einstein", + -12.784862518310547 + ], + [ + "▁wrought", + -12.784933090209961 + ], + [ + "▁dispatched", + -12.78497314453125 + ], + [ + "▁checkpoint", + -12.785057067871094 + ], + [ + "▁Emil", + -12.785065650939941 + ], + [ + "▁Pulse", + -12.785090446472168 + ], + [ + "▁repeal", + -12.785139083862305 + ], + [ + "▁forecasting", + -12.78521728515625 + ], + [ + "▁Genuine", + -12.78536605834961 + ], + [ + "▁Oven", + -12.785367012023926 + ], + [ + "▁Bulletin", + -12.785386085510254 + ], + [ + "agne", + -12.78543758392334 + ], + [ + "6.6", + -12.785552978515625 + ], + [ + "▁Cadillac", + -12.78565502166748 + ], + [ + "▁flashlight", + -12.785715103149414 + ], + [ + "TAIN", + -12.785914421081543 + ], + [ + "▁Blackjack", + -12.78593635559082 + ], + [ + "Tool", + -12.786033630371094 + ], + [ + "▁avatar", + -12.786094665527344 + ], + [ + "▁conflicting", + -12.786229133605957 + ], + [ + "▁creatively", + -12.786307334899902 + ], + [ + "villa", + -12.78632926940918 + ], + [ + "scrip", + -12.78636360168457 + ], + [ + "▁Riv", + -12.786370277404785 + ], + [ + "once", + -12.78644847869873 + ], + [ + "▁Welfare", + -12.786521911621094 + ], + [ + "▁trilogy", + -12.786713600158691 + ], + [ + "▁0.01", + -12.786734580993652 + ], + [ + "▁vocalist", + -12.786816596984863 + ], + [ + "idia", + -12.786978721618652 + ], + [ + "▁eine", + -12.787005424499512 + ], + [ + "Vol", + -12.787055969238281 + ], + [ + "etch", + -12.787171363830566 + ], + [ + "-2016", + -12.787187576293945 + ], + [ + "▁Mongolia", + -12.78731918334961 + ], + [ + "▁adulthood", + -12.787331581115723 + ], + [ + "general", + -12.787345886230469 + ], + [ + "▁brightly", + -12.787403106689453 + ], + [ + "uja", + -12.787495613098145 + ], + [ + "▁RGB", + -12.787578582763672 + ], + [ + "NEY", + -12.787615776062012 + ], + [ + "▁affirm", + -12.787712097167969 + ], + [ + "▁mastery", + -12.787849426269531 + ], + [ + "dries", + -12.787962913513184 + ], + [ + "▁Hundreds", + -12.787969589233398 + ], + [ + "▁Shiva", + -12.788012504577637 + ], + [ + "-2015", + -12.788032531738281 + ], + [ + "▁fishermen", + -12.788043022155762 + ], + [ + "▁precursor", + -12.788331031799316 + ], + [ + "ULT", + -12.788403511047363 + ], + [ + "▁Deborah", + -12.788403511047363 + ], + [ + "▁Knit", + -12.788557052612305 + ], + [ + "▁Lisbon", + -12.78862190246582 + ], + [ + "▁Tourist", + -12.788689613342285 + ], + [ + "sacrificing", + -12.788838386535645 + ], + [ + "▁Managed", + -12.788849830627441 + ], + [ + "ethyl", + -12.788887023925781 + ], + [ + "▁mozzarella", + -12.788910865783691 + ], + [ + "▁Curriculum", + -12.788983345031738 + ], + [ + "▁cauliflower", + -12.789128303527832 + ], + [ + "▁loosely", + -12.789182662963867 + ], + [ + "▁dur", + -12.789324760437012 + ], + [ + "esen", + -12.789381980895996 + ], + [ + "▁windy", + -12.789451599121094 + ], + [ + "▁collectible", + -12.789474487304688 + ], + [ + "▁Cement", + -12.789549827575684 + ], + [ + "▁typ", + -12.789565086364746 + ], + [ + "▁apostle", + -12.789643287658691 + ], + [ + "favored", + -12.78979206085205 + ], + [ + "▁captive", + -12.789857864379883 + ], + [ + "та", + -12.790003776550293 + ], + [ + "▁competency", + -12.790101051330566 + ], + [ + "adorned", + -12.790115356445312 + ], + [ + "▁typo", + -12.790227890014648 + ], + [ + "retin", + -12.790328979492188 + ], + [ + "▁Phantom", + -12.790433883666992 + ], + [ + "▁Rally", + -12.790531158447266 + ], + [ + "heir", + -12.790596008300781 + ], + [ + "▁billboard", + -12.790611267089844 + ], + [ + "▁authoritative", + -12.790724754333496 + ], + [ + "▁Tsu", + -12.791133880615234 + ], + [ + "▁Proposal", + -12.791159629821777 + ], + [ + "▁Mitch", + -12.791488647460938 + ], + [ + "▁interpreting", + -12.79150390625 + ], + [ + "enie", + -12.791504859924316 + ], + [ + "▁Rex", + -12.791512489318848 + ], + [ + "▁Snapchat", + -12.791533470153809 + ], + [ + "▁contention", + -12.791667938232422 + ], + [ + "▁Meditation", + -12.79172134399414 + ], + [ + "▁suppression", + -12.791756629943848 + ], + [ + "▁cherished", + -12.791817665100098 + ], + [ + "September", + -12.791855812072754 + ], + [ + "burgh", + -12.792232513427734 + ], + [ + "ober", + -12.792243003845215 + ], + [ + "System", + -12.792268753051758 + ], + [ + "XXX", + -12.792451858520508 + ], + [ + "ceive", + -12.792524337768555 + ], + [ + "▁hubby", + -12.792734146118164 + ], + [ + "cash", + -12.792755126953125 + ], + [ + "▁superficial", + -12.79276180267334 + ], + [ + "3-4", + -12.792834281921387 + ], + [ + "▁pillar", + -12.792981147766113 + ], + [ + "▁powerhouse", + -12.793051719665527 + ], + [ + "▁Adjust", + -12.793065071105957 + ], + [ + "outweigh", + -12.793159484863281 + ], + [ + "▁blunt", + -12.793270111083984 + ], + [ + "▁reseller", + -12.7933931350708 + ], + [ + "▁Heater", + -12.793405532836914 + ], + [ + "70,000", + -12.793418884277344 + ], + [ + "▁thrift", + -12.793632507324219 + ], + [ + "zil", + -12.793660163879395 + ], + [ + "▁drown", + -12.793770790100098 + ], + [ + "▁Kazakhstan", + -12.793850898742676 + ], + [ + "▁bomber", + -12.793880462646484 + ], + [ + "▁Mitsubishi", + -12.793924331665039 + ], + [ + "earned", + -12.794169425964355 + ], + [ + "▁secluded", + -12.79443359375 + ], + [ + "reputed", + -12.794608116149902 + ], + [ + "batt", + -12.79462718963623 + ], + [ + "▁Crist", + -12.794632911682129 + ], + [ + "▁evacuation", + -12.794652938842773 + ], + [ + "overcoming", + -12.794869422912598 + ], + [ + "▁procedural", + -12.79487133026123 + ], + [ + "▁supper", + -12.794892311096191 + ], + [ + "▁obese", + -12.794986724853516 + ], + [ + "Donnell", + -12.794989585876465 + ], + [ + "ishes", + -12.79504680633545 + ], + [ + "▁Cooperative", + -12.79504680633545 + ], + [ + "▁Weber", + -12.795103073120117 + ], + [ + "▁cosmo", + -12.79518985748291 + ], + [ + "busiest", + -12.795304298400879 + ], + [ + "▁SEM", + -12.79531192779541 + ], + [ + "Neill", + -12.795334815979004 + ], + [ + "▁Alma", + -12.795537948608398 + ], + [ + "region", + -12.79559326171875 + ], + [ + "committee", + -12.795713424682617 + ], + [ + "▁dipping", + -12.79575252532959 + ], + [ + "▁Zoe", + -12.795859336853027 + ], + [ + "▁cleanser", + -12.795910835266113 + ], + [ + "▁Armor", + -12.79594612121582 + ], + [ + "▁chewing", + -12.796011924743652 + ], + [ + "▁moo", + -12.796130180358887 + ], + [ + "▁Ahmad", + -12.796195983886719 + ], + [ + "insurance", + -12.796262741088867 + ], + [ + "oscopy", + -12.796281814575195 + ], + [ + "kri", + -12.796297073364258 + ], + [ + "▁Sharma", + -12.796309471130371 + ], + [ + "▁wir", + -12.796320915222168 + ], + [ + "▁Node", + -12.796454429626465 + ], + [ + "▁Churchill", + -12.796649932861328 + ], + [ + "580", + -12.79665470123291 + ], + [ + "▁reclaim", + -12.79676628112793 + ], + [ + "coast", + -12.796807289123535 + ], + [ + "▁heightened", + -12.796825408935547 + ], + [ + "▁Batt", + -12.796893119812012 + ], + [ + "▁Zombie", + -12.796915054321289 + ], + [ + "▁Integr", + -12.796931266784668 + ], + [ + "▁divorced", + -12.79708194732666 + ], + [ + "▁bookcase", + -12.797348976135254 + ], + [ + "▁correspondent", + -12.797682762145996 + ], + [ + "▁Teresa", + -12.797730445861816 + ], + [ + "official", + -12.79775619506836 + ], + [ + "▁ammo", + -12.797796249389648 + ], + [ + "▁RPM", + -12.797831535339355 + ], + [ + "cold", + -12.797961235046387 + ], + [ + "▁Biological", + -12.798006057739258 + ], + [ + "▁1937", + -12.798025131225586 + ], + [ + "▁remix", + -12.798074722290039 + ], + [ + "560", + -12.798189163208008 + ], + [ + "kop", + -12.798489570617676 + ], + [ + "▁goddess", + -12.798675537109375 + ], + [ + "journal", + -12.79878044128418 + ], + [ + "▁organisational", + -12.799016952514648 + ], + [ + "▁acknowledgement", + -12.799026489257812 + ], + [ + "▁Carry", + -12.799188613891602 + ], + [ + "leased", + -12.799285888671875 + ], + [ + "▁Fundamental", + -12.799332618713379 + ], + [ + "▁Rajasthan", + -12.79940128326416 + ], + [ + "▁Correction", + -12.79943561553955 + ], + [ + "▁Floyd", + -12.799466133117676 + ], + [ + "▁sanitation", + -12.79947566986084 + ], + [ + "▁Cherokee", + -12.799548149108887 + ], + [ + "▁THC", + -12.79963207244873 + ], + [ + "▁cabinetry", + -12.799710273742676 + ], + [ + "▁Habitat", + -12.799786567687988 + ], + [ + "levitra", + -12.799787521362305 + ], + [ + "FORM", + -12.800143241882324 + ], + [ + "▁Thames", + -12.800219535827637 + ], + [ + "▁culminat", + -12.800346374511719 + ], + [ + "▁Alter", + -12.800491333007812 + ], + [ + "MIS", + -12.800591468811035 + ], + [ + "▁kidding", + -12.800678253173828 + ], + [ + "▁Chapman", + -12.800707817077637 + ], + [ + "spoiled", + -12.800735473632812 + ], + [ + "▁madness", + -12.800878524780273 + ], + [ + "▁Consult", + -12.801117897033691 + ], + [ + "▁culprit", + -12.801234245300293 + ], + [ + "▁genetically", + -12.801377296447754 + ], + [ + "▁situ", + -12.801591873168945 + ], + [ + "▁Hospitality", + -12.801682472229004 + ], + [ + "▁Regulatory", + -12.80172061920166 + ], + [ + "▁brisk", + -12.801862716674805 + ], + [ + "▁java", + -12.801994323730469 + ], + [ + "hydroxy", + -12.802006721496582 + ], + [ + "▁bargaining", + -12.802153587341309 + ], + [ + "▁Conflict", + -12.802262306213379 + ], + [ + "walker", + -12.802318572998047 + ], + [ + "▁Strait", + -12.802339553833008 + ], + [ + "Accordingly", + -12.80239486694336 + ], + [ + "solid", + -12.802398681640625 + ], + [ + "▁circulating", + -12.802409172058105 + ], + [ + "▁Packaging", + -12.802489280700684 + ], + [ + "▁orchard", + -12.802570343017578 + ], + [ + "▁Cosmo", + -12.802580833435059 + ], + [ + "▁levi", + -12.802617073059082 + ], + [ + "linked", + -12.802709579467773 + ], + [ + "▁Roche", + -12.802724838256836 + ], + [ + "▁Jared", + -12.80274486541748 + ], + [ + "▁Overnight", + -12.802846908569336 + ], + [ + "▁demise", + -12.802891731262207 + ], + [ + "idine", + -12.803010940551758 + ], + [ + "▁Default", + -12.803094863891602 + ], + [ + "▁shovel", + -12.80311107635498 + ], + [ + "spoken", + -12.80322551727295 + ], + [ + "390", + -12.80329704284668 + ], + [ + "▁Flickr", + -12.803300857543945 + ], + [ + "▁lifecycle", + -12.803302764892578 + ], + [ + "▁prepaid", + -12.8033447265625 + ], + [ + "▁ivory", + -12.803364753723145 + ], + [ + "LING", + -12.803410530090332 + ], + [ + "leen", + -12.803474426269531 + ], + [ + "▁Cecil", + -12.80351734161377 + ], + [ + "declaring", + -12.803519248962402 + ], + [ + "▁Ernest", + -12.803523063659668 + ], + [ + "▁quantify", + -12.80362319946289 + ], + [ + "Talk", + -12.803651809692383 + ], + [ + "▁refunded", + -12.803709983825684 + ], + [ + "▁Suit", + -12.803757667541504 + ], + [ + "phrase", + -12.803877830505371 + ], + [ + "▁cannon", + -12.804036140441895 + ], + [ + "2.4", + -12.80423355102539 + ], + [ + "▁Surgeon", + -12.80424976348877 + ], + [ + "resident", + -12.804272651672363 + ], + [ + "▁rubbing", + -12.80428695678711 + ], + [ + "▁tug", + -12.804309844970703 + ], + [ + "▁Petroleum", + -12.804393768310547 + ], + [ + "▁ignorant", + -12.804393768310547 + ], + [ + "▁Authorities", + -12.80440616607666 + ], + [ + "9-5", + -12.804461479187012 + ], + [ + "▁SUP", + -12.804484367370605 + ], + [ + "▁Implementation", + -12.8045072555542 + ], + [ + "▁Daughter", + -12.804546356201172 + ], + [ + "▁Carnegie", + -12.804615020751953 + ], + [ + "234", + -12.804720878601074 + ], + [ + "1.8", + -12.804794311523438 + ], + [ + "▁2:00", + -12.804865837097168 + ], + [ + "Bot", + -12.804868698120117 + ], + [ + "▁outrageous", + -12.80510139465332 + ], + [ + "▁bruise", + -12.805275917053223 + ], + [ + "produced", + -12.805282592773438 + ], + [ + "▁DAMAGE", + -12.806015014648438 + ], + [ + "▁pumped", + -12.80601978302002 + ], + [ + "▁Guaranteed", + -12.806058883666992 + ], + [ + "▁Define", + -12.8060941696167 + ], + [ + "▁Samantha", + -12.806109428405762 + ], + [ + "knowledge", + -12.806121826171875 + ], + [ + "▁Sweat", + -12.806241035461426 + ], + [ + "▁insomnia", + -12.80638313293457 + ], + [ + "▁diversion", + -12.806417465209961 + ], + [ + "▁oasis", + -12.806686401367188 + ], + [ + "Russia", + -12.806843757629395 + ], + [ + "▁Resistance", + -12.80709171295166 + ], + [ + "collaborated", + -12.807095527648926 + ], + [ + "▁rpm", + -12.807133674621582 + ], + [ + "▁Lease", + -12.807280540466309 + ], + [ + "▁stiffness", + -12.807293891906738 + ], + [ + "QUA", + -12.807342529296875 + ], + [ + "▁Forecast", + -12.807581901550293 + ], + [ + "▁archival", + -12.807662963867188 + ], + [ + "▁elective", + -12.807673454284668 + ], + [ + "bun", + -12.807731628417969 + ], + [ + ":02", + -12.80785846710205 + ], + [ + "▁Feng", + -12.807929039001465 + ], + [ + "▁Wah", + -12.807963371276855 + ], + [ + "▁Totally", + -12.8080472946167 + ], + [ + "▁nineteenth", + -12.808080673217773 + ], + [ + "▁REALLY", + -12.808218002319336 + ], + [ + "▁imperfect", + -12.808277130126953 + ], + [ + "▁1929", + -12.808286666870117 + ], + [ + "▁GIF", + -12.808419227600098 + ], + [ + "▁extinction", + -12.808438301086426 + ], + [ + "solution", + -12.808510780334473 + ], + [ + "/13", + -12.808706283569336 + ], + [ + "▁complexities", + -12.808749198913574 + ], + [ + "oxide", + -12.808788299560547 + ], + [ + "▁sling", + -12.808815956115723 + ], + [ + "▁Woodland", + -12.808858871459961 + ], + [ + "erio", + -12.808886528015137 + ], + [ + "▁plentiful", + -12.808894157409668 + ], + [ + "▁hetero", + -12.808947563171387 + ], + [ + "▁Mash", + -12.808978080749512 + ], + [ + "kowski", + -12.809124946594238 + ], + [ + "▁Alarm", + -12.809136390686035 + ], + [ + "▁Billboard", + -12.80916976928711 + ], + [ + "publishes", + -12.809179306030273 + ], + [ + "▁adherence", + -12.809182167053223 + ], + [ + "▁indemnif", + -12.809199333190918 + ], + [ + "▁1936", + -12.809491157531738 + ], + [ + "elm", + -12.80964469909668 + ], + [ + "▁gravy", + -12.809794425964355 + ], + [ + "leave", + -12.809813499450684 + ], + [ + "▁Gam", + -12.809820175170898 + ], + [ + "▁fungi", + -12.80999755859375 + ], + [ + "▁chiropractor", + -12.810003280639648 + ], + [ + "▁socialist", + -12.810005187988281 + ], + [ + "▁Disclosure", + -12.810077667236328 + ], + [ + "▁Went", + -12.810101509094238 + ], + [ + "▁roasting", + -12.810160636901855 + ], + [ + "▁thankfully", + -12.810185432434082 + ], + [ + "▁Pillow", + -12.810196876525879 + ], + [ + "▁preferable", + -12.810225486755371 + ], + [ + "attack", + -12.810232162475586 + ], + [ + "sourcing", + -12.810286521911621 + ], + [ + "Christian", + -12.810317039489746 + ], + [ + "▁interchange", + -12.810529708862305 + ], + [ + "inclusive", + -12.810580253601074 + ], + [ + "▁Georg", + -12.81064224243164 + ], + [ + "8.2", + -12.810697555541992 + ], + [ + "▁DEC", + -12.810697555541992 + ], + [ + "▁Clari", + -12.810856819152832 + ], + [ + "▁Jade", + -12.810873031616211 + ], + [ + "▁Actual", + -12.81096363067627 + ], + [ + "▁wrench", + -12.811038970947266 + ], + [ + "▁Tribune", + -12.811040878295898 + ], + [ + "▁Grinder", + -12.8110933303833 + ], + [ + "Mail", + -12.811274528503418 + ], + [ + "client", + -12.811366081237793 + ], + [ + "▁slippery", + -12.81148624420166 + ], + [ + "▁eve", + -12.811585426330566 + ], + [ + "▁designate", + -12.811698913574219 + ], + [ + "acknowledging", + -12.811707496643066 + ], + [ + "▁persecution", + -12.811845779418945 + ], + [ + "▁feminist", + -12.811856269836426 + ], + [ + "▁analogy", + -12.811922073364258 + ], + [ + "uct", + -12.8119478225708 + ], + [ + "▁cornerstone", + -12.81197738647461 + ], + [ + "▁german", + -12.812098503112793 + ], + [ + "▁Crossing", + -12.812114715576172 + ], + [ + "▁latitude", + -12.812154769897461 + ], + [ + "Bro", + -12.812164306640625 + ], + [ + "▁contradict", + -12.812183380126953 + ], + [ + "WAN", + -12.812187194824219 + ], + [ + "heli", + -12.812334060668945 + ], + [ + "▁cocaine", + -12.812434196472168 + ], + [ + "4-0", + -12.812530517578125 + ], + [ + "▁(£", + -12.812679290771484 + ], + [ + "XY", + -12.81278133392334 + ], + [ + "LG", + -12.813142776489258 + ], + [ + "▁Commun", + -12.813192367553711 + ], + [ + "▁Animation", + -12.813272476196289 + ], + [ + "isson", + -12.813417434692383 + ], + [ + "425", + -12.813677787780762 + ], + [ + "▁courageous", + -12.813713073730469 + ], + [ + "marine", + -12.813761711120605 + ], + [ + "................", + -12.81381893157959 + ], + [ + "▁spun", + -12.81383991241455 + ], + [ + "rren", + -12.813872337341309 + ], + [ + "197", + -12.813913345336914 + ], + [ + "December", + -12.813957214355469 + ], + [ + "▁cilantro", + -12.814306259155273 + ], + [ + "dore", + -12.814448356628418 + ], + [ + "▁Jew", + -12.814515113830566 + ], + [ + "▁capacitor", + -12.814529418945312 + ], + [ + "▁inverter", + -12.814681053161621 + ], + [ + "expresses", + -12.814769744873047 + ], + [ + "▁Inventory", + -12.814826011657715 + ], + [ + "▁revel", + -12.814902305603027 + ], + [ + "▁PST", + -12.815001487731934 + ], + [ + "▁interconnected", + -12.81501579284668 + ], + [ + "LAB", + -12.815040588378906 + ], + [ + "▁vape", + -12.815051078796387 + ], + [ + "▁legit", + -12.815116882324219 + ], + [ + "stig", + -12.815187454223633 + ], + [ + "croft", + -12.815216064453125 + ], + [ + "atz", + -12.815291404724121 + ], + [ + "painted", + -12.815293312072754 + ], + [ + "▁Northwestern", + -12.81529712677002 + ], + [ + "breaker", + -12.815311431884766 + ], + [ + "▁drank", + -12.815332412719727 + ], + [ + "▁Reiki", + -12.815386772155762 + ], + [ + "▁Edgar", + -12.815532684326172 + ], + [ + "▁orphan", + -12.815611839294434 + ], + [ + "▁uniqueness", + -12.815611839294434 + ], + [ + "treat", + -12.81561279296875 + ], + [ + "▁motivating", + -12.815645217895508 + ], + [ + "▁Spartan", + -12.815796852111816 + ], + [ + "▁backsplash", + -12.815855979919434 + ], + [ + "▁cosmic", + -12.815889358520508 + ], + [ + "education", + -12.815962791442871 + ], + [ + "▁delta", + -12.81596851348877 + ], + [ + "▁cerebral", + -12.816184997558594 + ], + [ + "▁Climb", + -12.816255569458008 + ], + [ + "▁elicit", + -12.816380500793457 + ], + [ + "OTT", + -12.81638240814209 + ], + [ + "unny", + -12.816434860229492 + ], + [ + "▁Mesh", + -12.816485404968262 + ], + [ + "▁prudent", + -12.81668758392334 + ], + [ + "▁1915", + -12.816728591918945 + ], + [ + "Combining", + -12.816767692565918 + ], + [ + "▁Basket", + -12.81680679321289 + ], + [ + "Exception", + -12.817022323608398 + ], + [ + "▁Barrett", + -12.817057609558105 + ], + [ + "▁syllabus", + -12.817060470581055 + ], + [ + "▁radically", + -12.81733226776123 + ], + [ + "▁TODAY", + -12.817413330078125 + ], + [ + "lox", + -12.817444801330566 + ], + [ + "▁stink", + -12.817538261413574 + ], + [ + "▁unusually", + -12.817672729492188 + ], + [ + "escu", + -12.817693710327148 + ], + [ + "▁priceless", + -12.817764282226562 + ], + [ + "▁antigen", + -12.81782054901123 + ], + [ + "▁Slovakia", + -12.817834854125977 + ], + [ + "▁novelty", + -12.817900657653809 + ], + [ + "▁Manning", + -12.818079948425293 + ], + [ + "▁tumour", + -12.818182945251465 + ], + [ + "SSI", + -12.81848430633545 + ], + [ + "▁Camden", + -12.818502426147461 + ], + [ + "▁dotted", + -12.818536758422852 + ], + [ + "▁Counseling", + -12.818592071533203 + ], + [ + "yuan", + -12.818645477294922 + ], + [ + "broken", + -12.818680763244629 + ], + [ + "bear", + -12.818772315979004 + ], + [ + "▁Flint", + -12.81879997253418 + ], + [ + "▁guild", + -12.81884479522705 + ], + [ + "▁allied", + -12.818926811218262 + ], + [ + "▁512", + -12.818955421447754 + ], + [ + "▁ashamed", + -12.819124221801758 + ], + [ + "▁respectable", + -12.819241523742676 + ], + [ + "▁Cube", + -12.819376945495605 + ], + [ + "▁Spoon", + -12.819548606872559 + ], + [ + "▁Buc", + -12.819613456726074 + ], + [ + "▁Opinion", + -12.819682121276855 + ], + [ + "▁sibling", + -12.819891929626465 + ], + [ + "▁Wrong", + -12.819899559020996 + ], + [ + "▁fruitful", + -12.819929122924805 + ], + [ + "▁nostalgia", + -12.819971084594727 + ], + [ + "▁turnout", + -12.820001602172852 + ], + [ + "▁Thirty", + -12.820046424865723 + ], + [ + "MES", + -12.820051193237305 + ], + [ + "▁Structural", + -12.820196151733398 + ], + [ + "GV", + -12.82021427154541 + ], + [ + "LN", + -12.820477485656738 + ], + [ + "▁Shared", + -12.820494651794434 + ], + [ + "▁Messiah", + -12.82050895690918 + ], + [ + "▁territorial", + -12.82056999206543 + ], + [ + "▁Countries", + -12.820579528808594 + ], + [ + "Serv", + -12.820772171020508 + ], + [ + "KET", + -12.820812225341797 + ], + [ + "▁Accommodation", + -12.820868492126465 + ], + [ + "▁longitudinal", + -12.820868492126465 + ], + [ + "inski", + -12.820944786071777 + ], + [ + "▁Hydra", + -12.821063995361328 + ], + [ + "▁Carpenter", + -12.821168899536133 + ], + [ + "▁Bold", + -12.821178436279297 + ], + [ + "owitz", + -12.821281433105469 + ], + [ + "America", + -12.821463584899902 + ], + [ + "▁COO", + -12.821521759033203 + ], + [ + "arina", + -12.821588516235352 + ], + [ + "▁Whitney", + -12.821599960327148 + ], + [ + "Suppl", + -12.821670532226562 + ], + [ + "▁Equal", + -12.821969985961914 + ], + [ + "▁entail", + -12.822086334228516 + ], + [ + "▁freshwater", + -12.822183609008789 + ], + [ + "Comp", + -12.822220802307129 + ], + [ + "▁Vince", + -12.822303771972656 + ], + [ + "▁chore", + -12.8223237991333 + ], + [ + "picked", + -12.8223295211792 + ], + [ + "▁spit", + -12.822348594665527 + ], + [ + "▁Roast", + -12.82241439819336 + ], + [ + "▁seventeen", + -12.82253360748291 + ], + [ + "rase", + -12.822657585144043 + ], + [ + "▁Destination", + -12.82266616821289 + ], + [ + "▁dwarf", + -12.822802543640137 + ], + [ + "▁Preferred", + -12.822868347167969 + ], + [ + "▁investigative", + -12.823040962219238 + ], + [ + "asian", + -12.823067665100098 + ], + [ + "▁Belize", + -12.823169708251953 + ], + [ + "▁Adidas", + -12.823224067687988 + ], + [ + "▁Salvador", + -12.82326602935791 + ], + [ + "alom", + -12.823273658752441 + ], + [ + "▁Customize", + -12.823354721069336 + ], + [ + "▁bidder", + -12.823381423950195 + ], + [ + "▁narrator", + -12.823394775390625 + ], + [ + "conom", + -12.823409080505371 + ], + [ + "destruct", + -12.823493957519531 + ], + [ + "racing", + -12.823549270629883 + ], + [ + "▁groundwater", + -12.8236083984375 + ], + [ + "▁roam", + -12.823765754699707 + ], + [ + "▁untreated", + -12.823783874511719 + ], + [ + "▁vacancy", + -12.823792457580566 + ], + [ + "polar", + -12.823973655700684 + ], + [ + "▁deficiencies", + -12.824091911315918 + ], + [ + "▁Funk", + -12.824196815490723 + ], + [ + "▁Hazel", + -12.82421875 + ], + [ + "▁eccentric", + -12.824241638183594 + ], + [ + "▁Breaking", + -12.824441909790039 + ], + [ + "▁Muse", + -12.824602127075195 + ], + [ + "▁bushes", + -12.824625015258789 + ], + [ + "▁assembling", + -12.824767112731934 + ], + [ + "▁pollutants", + -12.824767112731934 + ], + [ + "▁scratching", + -12.824806213378906 + ], + [ + "ppel", + -12.824902534484863 + ], + [ + "ла", + -12.825000762939453 + ], + [ + "▁FTP", + -12.825021743774414 + ], + [ + "linear", + -12.825119018554688 + ], + [ + "guil", + -12.825130462646484 + ], + [ + "ETS", + -12.825448989868164 + ], + [ + "▁pronounce", + -12.825675010681152 + ], + [ + "▁chlorine", + -12.825819969177246 + ], + [ + "▁remediation", + -12.825894355773926 + ], + [ + "▁Identification", + -12.825895309448242 + ], + [ + "▁booming", + -12.825918197631836 + ], + [ + "finished", + -12.825919151306152 + ], + [ + ":06", + -12.825933456420898 + ], + [ + "▁Castro", + -12.826025009155273 + ], + [ + "▁Thermal", + -12.826038360595703 + ], + [ + "177", + -12.82607650756836 + ], + [ + "▁parse", + -12.826140403747559 + ], + [ + "ETH", + -12.82636547088623 + ], + [ + "▁Nur", + -12.826455116271973 + ], + [ + "▁consciously", + -12.826461791992188 + ], + [ + "▁catastrophe", + -12.826497077941895 + ], + [ + "abha", + -12.826501846313477 + ], + [ + "▁Belarus", + -12.826501846313477 + ], + [ + "▁compiler", + -12.82651138305664 + ], + [ + "▁prisoner", + -12.826578140258789 + ], + [ + "▁annotation", + -12.826598167419434 + ], + [ + "▁200,000", + -12.826624870300293 + ], + [ + "YE", + -12.826741218566895 + ], + [ + "▁symposium", + -12.826948165893555 + ], + [ + "▁Aviv", + -12.826997756958008 + ], + [ + "▁Emerging", + -12.827009201049805 + ], + [ + "▁rhyme", + -12.82702350616455 + ], + [ + "▁oxidation", + -12.827098846435547 + ], + [ + "▁Magento", + -12.827176094055176 + ], + [ + "▁carnival", + -12.827250480651855 + ], + [ + "0.3", + -12.827252388000488 + ], + [ + "IFF", + -12.827263832092285 + ], + [ + "▁grandma", + -12.827285766601562 + ], + [ + "png", + -12.827376365661621 + ], + [ + "EET", + -12.827390670776367 + ], + [ + "▁formulate", + -12.827394485473633 + ], + [ + "▁1916", + -12.827447891235352 + ], + [ + "▁Bead", + -12.827594757080078 + ], + [ + "gina", + -12.827664375305176 + ], + [ + "▁correlate", + -12.827666282653809 + ], + [ + "▁Keller", + -12.82787799835205 + ], + [ + "tras", + -12.827905654907227 + ], + [ + "610", + -12.828017234802246 + ], + [ + "▁Tong", + -12.828020095825195 + ], + [ + "▁Quiz", + -12.828078269958496 + ], + [ + "▁enchanting", + -12.828078269958496 + ], + [ + "employment", + -12.828179359436035 + ], + [ + "medicine", + -12.82827377319336 + ], + [ + "▁Xiao", + -12.828285217285156 + ], + [ + "▁machining", + -12.828304290771484 + ], + [ + "▁PLUS", + -12.82831859588623 + ], + [ + "▁Keyboard", + -12.828425407409668 + ], + [ + "920", + -12.82846736907959 + ], + [ + "vik", + -12.828468322753906 + ], + [ + "▁fabricated", + -12.828595161437988 + ], + [ + "▁Coverage", + -12.828694343566895 + ], + [ + "exist", + -12.828840255737305 + ], + [ + "▁payload", + -12.828861236572266 + ], + [ + "▁techno", + -12.828880310058594 + ], + [ + "bottom", + -12.828919410705566 + ], + [ + "▁engraving", + -12.828983306884766 + ], + [ + "▁Advent", + -12.829122543334961 + ], + [ + "▁mama", + -12.829124450683594 + ], + [ + "660", + -12.82913875579834 + ], + [ + "▁emulate", + -12.829166412353516 + ], + [ + "Sign", + -12.82929801940918 + ], + [ + "organized", + -12.829326629638672 + ], + [ + "rnie", + -12.829365730285645 + ], + [ + "▁Bronx", + -12.829366683959961 + ], + [ + "▁Isabel", + -12.829381942749023 + ], + [ + "API", + -12.829405784606934 + ], + [ + "inian", + -12.829411506652832 + ], + [ + "mono", + -12.829559326171875 + ], + [ + "▁Zambia", + -12.829598426818848 + ], + [ + "▁2018)", + -12.829607009887695 + ], + [ + "▁shoreline", + -12.82962417602539 + ], + [ + "conditioning", + -12.82966423034668 + ], + [ + "▁Hartford", + -12.829696655273438 + ], + [ + "▁2022", + -12.829744338989258 + ], + [ + "ffen", + -12.829790115356445 + ], + [ + "▁beige", + -12.830519676208496 + ], + [ + "▁Banana", + -12.830713272094727 + ], + [ + "▁petals", + -12.83073616027832 + ], + [ + "▁Therapeutic", + -12.83094596862793 + ], + [ + "▁Thick", + -12.830949783325195 + ], + [ + "▁exhausting", + -12.831073760986328 + ], + [ + "binding", + -12.831079483032227 + ], + [ + "lber", + -12.831161499023438 + ], + [ + "▁Kle", + -12.831245422363281 + ], + [ + "▁Presbyterian", + -12.83124828338623 + ], + [ + "▁Loft", + -12.831258773803711 + ], + [ + "▁Epson", + -12.8313627243042 + ], + [ + "▁Biz", + -12.83145809173584 + ], + [ + "cham", + -12.831521987915039 + ], + [ + "▁sparse", + -12.831559181213379 + ], + [ + "confirming", + -12.831565856933594 + ], + [ + "directed", + -12.831624984741211 + ], + [ + "ва", + -12.831740379333496 + ], + [ + "5%)", + -12.831771850585938 + ], + [ + "▁quickest", + -12.83184814453125 + ], + [ + "OTH", + -12.831891059875488 + ], + [ + "▁replenish", + -12.831891059875488 + ], + [ + "▁recyclable", + -12.831929206848145 + ], + [ + "▁Boutique", + -12.832015991210938 + ], + [ + "reclining", + -12.832070350646973 + ], + [ + "▁prefix", + -12.832084655761719 + ], + [ + "▁ADD", + -12.832228660583496 + ], + [ + "▁flaw", + -12.832242965698242 + ], + [ + "mise", + -12.832249641418457 + ], + [ + "▁lashes", + -12.832254409790039 + ], + [ + "▁Crane", + -12.832270622253418 + ], + [ + "..........", + -12.832383155822754 + ], + [ + "otter", + -12.832402229309082 + ], + [ + "ELE", + -12.832508087158203 + ], + [ + "▁Herbert", + -12.832711219787598 + ], + [ + "▁basal", + -12.832793235778809 + ], + [ + "▁cupcake", + -12.832809448242188 + ], + [ + "wald", + -12.832840919494629 + ], + [ + "▁moderately", + -12.833049774169922 + ], + [ + "▁crackers", + -12.833168983459473 + ], + [ + "▁Bedford", + -12.833364486694336 + ], + [ + "▁Webster", + -12.833544731140137 + ], + [ + "▁QC", + -12.833786010742188 + ], + [ + "coated", + -12.833885192871094 + ], + [ + "moon", + -12.833954811096191 + ], + [ + "mandated", + -12.833995819091797 + ], + [ + "▁horrific", + -12.834050178527832 + ], + [ + "▁retrieved", + -12.834071159362793 + ], + [ + "Base", + -12.834097862243652 + ], + [ + "▁Abbott", + -12.834126472473145 + ], + [ + "Download", + -12.834226608276367 + ], + [ + "▁Cardio", + -12.834296226501465 + ], + [ + "▁Haz", + -12.834355354309082 + ], + [ + "prepared", + -12.834367752075195 + ], + [ + "▁interstate", + -12.834386825561523 + ], + [ + "Store", + -12.834501266479492 + ], + [ + "305", + -12.834663391113281 + ], + [ + "▁CPR", + -12.834718704223633 + ], + [ + "condition", + -12.834891319274902 + ], + [ + "wiped", + -12.835039138793945 + ], + [ + "▁stitched", + -12.83504581451416 + ], + [ + "▁Laurie", + -12.835087776184082 + ], + [ + "▁Hardy", + -12.835437774658203 + ], + [ + "▁activism", + -12.835469245910645 + ], + [ + "▁prohibition", + -12.835511207580566 + ], + [ + "▁familiarity", + -12.835512161254883 + ], + [ + "▁Visitor", + -12.835713386535645 + ], + [ + "▁motivational", + -12.8357572555542 + ], + [ + "▁sheriff", + -12.835771560668945 + ], + [ + "remo", + -12.83582878112793 + ], + [ + "▁Ferry", + -12.835946083068848 + ], + [ + "/2017", + -12.83609676361084 + ], + [ + "▁accelerator", + -12.836098670959473 + ], + [ + "▁Humanities", + -12.836170196533203 + ], + [ + "▁Grandma", + -12.836288452148438 + ], + [ + "▁Rox", + -12.836320877075195 + ], + [ + "tama", + -12.83642864227295 + ], + [ + "▁2025", + -12.836501121520996 + ], + [ + "▁darling", + -12.836503028869629 + ], + [ + "▁PLC", + -12.836753845214844 + ], + [ + "▁outperform", + -12.836881637573242 + ], + [ + "▁importing", + -12.837359428405762 + ], + [ + "▁anthem", + -12.837372779846191 + ], + [ + "specifies", + -12.837430000305176 + ], + [ + "▁Proven", + -12.837601661682129 + ], + [ + "▁Beacon", + -12.837724685668945 + ], + [ + "COUNT", + -12.83775806427002 + ], + [ + "17)", + -12.837837219238281 + ], + [ + "▁Bahrain", + -12.837862968444824 + ], + [ + "▁tighter", + -12.838156700134277 + ], + [ + "▁blot", + -12.838271141052246 + ], + [ + "▁1934", + -12.838420867919922 + ], + [ + "▁bleed", + -12.838438987731934 + ], + [ + "▁morality", + -12.838469505310059 + ], + [ + "CAR", + -12.838517189025879 + ], + [ + "driving", + -12.838708877563477 + ], + [ + "processing", + -12.838990211486816 + ], + [ + "TUR", + -12.839033126831055 + ], + [ + "marsh", + -12.839096069335938 + ], + [ + "231", + -12.839125633239746 + ], + [ + "TRAN", + -12.839240074157715 + ], + [ + "▁Lesson", + -12.839253425598145 + ], + [ + "▁Newark", + -12.839275360107422 + ], + [ + "▁Loving", + -12.83940315246582 + ], + [ + "▁Burlington", + -12.839599609375 + ], + [ + "▁Fiji", + -12.839669227600098 + ], + [ + "Term", + -12.839741706848145 + ], + [ + "APS", + -12.839828491210938 + ], + [ + "surf", + -12.839842796325684 + ], + [ + "▁1890", + -12.839937210083008 + ], + [ + "contemplating", + -12.839981079101562 + ], + [ + "▁Aff", + -12.840132713317871 + ], + [ + "▁immerse", + -12.840359687805176 + ], + [ + "chor", + -12.84038257598877 + ], + [ + "Mill", + -12.84039306640625 + ], + [ + "machine", + -12.84041976928711 + ], + [ + "LIGHT", + -12.840531349182129 + ], + [ + "▁BTW", + -12.840717315673828 + ], + [ + "MED", + -12.840731620788574 + ], + [ + "Pal", + -12.840767860412598 + ], + [ + "laid", + -12.840843200683594 + ], + [ + "plication", + -12.840865135192871 + ], + [ + "▁Bulk", + -12.840996742248535 + ], + [ + "▁Hugo", + -12.841086387634277 + ], + [ + "hide", + -12.841115951538086 + ], + [ + "violating", + -12.84115982055664 + ], + [ + "ocular", + -12.841255187988281 + ], + [ + "spread", + -12.841314315795898 + ], + [ + "▁lingering", + -12.84135913848877 + ], + [ + "▁clubhouse", + -12.841567993164062 + ], + [ + "▁kiosk", + -12.841584205627441 + ], + [ + "▁indices", + -12.841597557067871 + ], + [ + "▁Treasurer", + -12.841647148132324 + ], + [ + "▁Weapon", + -12.841821670532227 + ], + [ + "169", + -12.841837882995605 + ], + [ + "▁plural", + -12.841848373413086 + ], + [ + "▁chemo", + -12.841978073120117 + ], + [ + "titled", + -12.842113494873047 + ], + [ + "▁Gloss", + -12.84217643737793 + ], + [ + "▁SALE", + -12.842555046081543 + ], + [ + "▁hopeless", + -12.842766761779785 + ], + [ + "▁Pdf", + -12.842809677124023 + ], + [ + "▁Baron", + -12.843246459960938 + ], + [ + "▁Recycling", + -12.843343734741211 + ], + [ + "dumped", + -12.84338665008545 + ], + [ + "▁Subscription", + -12.84349536895752 + ], + [ + "▁Consist", + -12.843541145324707 + ], + [ + "▁Turning", + -12.843605995178223 + ], + [ + "Water", + -12.843832969665527 + ], + [ + "omics", + -12.843856811523438 + ], + [ + "▁transient", + -12.843880653381348 + ], + [ + "▁adaptable", + -12.843884468078613 + ], + [ + "dark", + -12.843944549560547 + ], + [ + "▁NSA", + -12.844183921813965 + ], + [ + "▁veggie", + -12.844219207763672 + ], + [ + "▁imprisonment", + -12.844261169433594 + ], + [ + "7-3", + -12.844350814819336 + ], + [ + "▁Beginner", + -12.844351768493652 + ], + [ + "▁abolish", + -12.844504356384277 + ], + [ + "▁SaaS", + -12.84450626373291 + ], + [ + "SMA", + -12.844523429870605 + ], + [ + "▁Vegetable", + -12.844644546508789 + ], + [ + "engine", + -12.844660758972168 + ], + [ + "▁Educator", + -12.844720840454102 + ], + [ + "▁heartfelt", + -12.844799995422363 + ], + [ + "Somehow", + -12.844802856445312 + ], + [ + "CENT", + -12.844857215881348 + ], + [ + "▁Shirley", + -12.84487533569336 + ], + [ + "Use", + -12.844881057739258 + ], + [ + "▁sensational", + -12.844923973083496 + ], + [ + "▁influenza", + -12.845027923583984 + ], + [ + "migrated", + -12.845264434814453 + ], + [ + "▁annoyed", + -12.84533405303955 + ], + [ + "continent", + -12.845338821411133 + ], + [ + "▁lament", + -12.845380783081055 + ], + [ + "phenol", + -12.845415115356445 + ], + [ + "▁boulder", + -12.845487594604492 + ], + [ + "▁exploited", + -12.845645904541016 + ], + [ + "▁spear", + -12.84565258026123 + ], + [ + "secret", + -12.845666885375977 + ], + [ + "encompassing", + -12.84572982788086 + ], + [ + "▁Cannon", + -12.845812797546387 + ], + [ + "▁Abuse", + -12.84587574005127 + ], + [ + "▁Oman", + -12.84592342376709 + ], + [ + "▁Marx", + -12.84597110748291 + ], + [ + "170", + -12.846014022827148 + ], + [ + "▁Superintendent", + -12.846024513244629 + ], + [ + "▁Enough", + -12.846230506896973 + ], + [ + "AMI", + -12.84641170501709 + ], + [ + "▁Roulette", + -12.846491813659668 + ], + [ + "▁stern", + -12.84649658203125 + ], + [ + "▁Waterproof", + -12.846569061279297 + ], + [ + "▁1:00", + -12.84665584564209 + ], + [ + "brown", + -12.846658706665039 + ], + [ + "teacher", + -12.84672737121582 + ], + [ + "YC", + -12.847151756286621 + ], + [ + "gren", + -12.847221374511719 + ], + [ + "▁Bentley", + -12.847260475158691 + ], + [ + "eagerly", + -12.847464561462402 + ], + [ + "▁Continuous", + -12.84748363494873 + ], + [ + "▁Sanchez", + -12.847637176513672 + ], + [ + "▁Typical", + -12.847639083862305 + ], + [ + "▁2009)", + -12.848052978515625 + ], + [ + "pont", + -12.848108291625977 + ], + [ + "▁Abram", + -12.848193168640137 + ], + [ + "▁classify", + -12.848197937011719 + ], + [ + "▁REST", + -12.848341941833496 + ], + [ + "▁snag", + -12.848357200622559 + ], + [ + "▁McKe", + -12.848437309265137 + ], + [ + "motor", + -12.848475456237793 + ], + [ + "▁yrs", + -12.848678588867188 + ], + [ + "▁Badge", + -12.848703384399414 + ], + [ + "▁Introducing", + -12.848713874816895 + ], + [ + "▁Acad", + -12.848730087280273 + ], + [ + "▁Shelter", + -12.84873104095459 + ], + [ + "▁Rustic", + -12.848934173583984 + ], + [ + "▁Disneyland", + -12.848944664001465 + ], + [ + "hydro", + -12.849079132080078 + ], + [ + "▁assassin", + -12.849166870117188 + ], + [ + "▁Toilet", + -12.84925365447998 + ], + [ + "▁sprinkler", + -12.849264144897461 + ], + [ + "▁Bubble", + -12.849302291870117 + ], + [ + "▁Slice", + -12.849333763122559 + ], + [ + "▁Emmy", + -12.849349021911621 + ], + [ + "learn", + -12.849456787109375 + ], + [ + "▁scrapbook", + -12.849485397338867 + ], + [ + "▁Troop", + -12.849503517150879 + ], + [ + "▁muddy", + -12.849583625793457 + ], + [ + "▁Nursery", + -12.849720001220703 + ], + [ + "DMA", + -12.849878311157227 + ], + [ + "▁deplete", + -12.85030460357666 + ], + [ + "▁Cassi", + -12.850311279296875 + ], + [ + "▁Priority", + -12.850342750549316 + ], + [ + "▁Saul", + -12.85038948059082 + ], + [ + "▁Monaco", + -12.850445747375488 + ], + [ + "7.4", + -12.850455284118652 + ], + [ + "▁aspiration", + -12.850457191467285 + ], + [ + "▁trolley", + -12.850492477416992 + ], + [ + "▁latency", + -12.850790977478027 + ], + [ + "▁Fabulous", + -12.850799560546875 + ], + [ + "▁doubling", + -12.851027488708496 + ], + [ + "▁Bamboo", + -12.851028442382812 + ], + [ + "##", + -12.851069450378418 + ], + [ + "▁enlarged", + -12.851186752319336 + ], + [ + "pledged", + -12.85145092010498 + ], + [ + "▁Laurel", + -12.851461410522461 + ], + [ + "▁Barclay", + -12.85179615020752 + ], + [ + "▁reversal", + -12.85179615020752 + ], + [ + "▁anterior", + -12.851811408996582 + ], + [ + "▁Chronic", + -12.852038383483887 + ], + [ + "pond", + -12.852072715759277 + ], + [ + "▁alternatively", + -12.852164268493652 + ], + [ + "▁cassette", + -12.852415084838867 + ], + [ + "▁gag", + -12.852432250976562 + ], + [ + "CHI", + -12.85246467590332 + ], + [ + "187", + -12.8525390625 + ], + [ + "REP", + -12.852592468261719 + ], + [ + "167", + -12.85261058807373 + ], + [ + "▁1935", + -12.852677345275879 + ], + [ + "fighting", + -12.852702140808105 + ], + [ + "baby", + -12.852740287780762 + ], + [ + "HEA", + -12.852827072143555 + ], + [ + "▁Telecom", + -12.8528470993042 + ], + [ + "Text", + -12.852934837341309 + ], + [ + "▁lineage", + -12.853023529052734 + ], + [ + "▁Noir", + -12.853105545043945 + ], + [ + "▁Wisdom", + -12.853191375732422 + ], + [ + "▁deterioration", + -12.853263854980469 + ], + [ + "▁Finished", + -12.853301048278809 + ], + [ + "endra", + -12.85336685180664 + ], + [ + "▁exhibitors", + -12.853368759155273 + ], + [ + "▁Configuration", + -12.853379249572754 + ], + [ + "▁Schmidt", + -12.853495597839355 + ], + [ + "▁rocker", + -12.853519439697266 + ], + [ + "▁Stud", + -12.853721618652344 + ], + [ + "▁Simmons", + -12.853727340698242 + ], + [ + "▁wholesome", + -12.853752136230469 + ], + [ + "▁embassy", + -12.8538818359375 + ], + [ + "▁disputed", + -12.853940963745117 + ], + [ + "platform", + -12.853985786437988 + ], + [ + "/2016", + -12.854113578796387 + ], + [ + "▁hone", + -12.854205131530762 + ], + [ + "▁unconventional", + -12.854413032531738 + ], + [ + "▁pastoral", + -12.854413986206055 + ], + [ + "enson", + -12.854479789733887 + ], + [ + "▁Bonn", + -12.85470962524414 + ], + [ + "▁bunker", + -12.854730606079102 + ], + [ + "Camp", + -12.854738235473633 + ], + [ + "▁tummy", + -12.85476303100586 + ], + [ + "▁melodies", + -12.854887962341309 + ], + [ + "▁dé", + -12.85496711730957 + ], + [ + "▁Cody", + -12.85496997833252 + ], + [ + "lingual", + -12.855016708374023 + ], + [ + "▁OMG", + -12.855098724365234 + ], + [ + "▁wineries", + -12.855212211608887 + ], + [ + "▁Atkins", + -12.855226516723633 + ], + [ + "▁glamour", + -12.855256080627441 + ], + [ + "OUT", + -12.855260848999023 + ], + [ + "olina", + -12.85526180267334 + ], + [ + "NX", + -12.85533332824707 + ], + [ + "▁Kab", + -12.855385780334473 + ], + [ + "fail", + -12.855398178100586 + ], + [ + "▁deserving", + -12.855424880981445 + ], + [ + "maximizing", + -12.85566234588623 + ], + [ + "FER", + -12.855669021606445 + ], + [ + "kash", + -12.855685234069824 + ], + [ + "fibro", + -12.855710983276367 + ], + [ + "▁resistor", + -12.855767250061035 + ], + [ + "▁Tutor", + -12.855887413024902 + ], + [ + "▁prolong", + -12.856051445007324 + ], + [ + "▁Shelf", + -12.856088638305664 + ], + [ + "▁£20", + -12.856180191040039 + ], + [ + "▁hesitant", + -12.856283187866211 + ], + [ + "graf", + -12.856287002563477 + ], + [ + ":09", + -12.85632610321045 + ], + [ + "baum", + -12.856427192687988 + ], + [ + "▁invoke", + -12.856490135192871 + ], + [ + "▁traverse", + -12.856612205505371 + ], + [ + "355", + -12.856640815734863 + ], + [ + "Dev", + -12.856701850891113 + ], + [ + "▁Intermediate", + -12.85676383972168 + ], + [ + "▁Indo", + -12.856807708740234 + ], + [ + "▁Syracuse", + -12.85682487487793 + ], + [ + "▁imaginary", + -12.856903076171875 + ], + [ + "▁expectancy", + -12.856925010681152 + ], + [ + "corporate", + -12.857169151306152 + ], + [ + "▁saute", + -12.85728931427002 + ], + [ + "kho", + -12.85745906829834 + ], + [ + "owes", + -12.857604026794434 + ], + [ + "▁Billion", + -12.85762882232666 + ], + [ + "chett", + -12.857748985290527 + ], + [ + "monies", + -12.857819557189941 + ], + [ + "▁hacked", + -12.857894897460938 + ], + [ + "zione", + -12.857918739318848 + ], + [ + "▁Cay", + -12.85801887512207 + ], + [ + "▁retrieval", + -12.858144760131836 + ], + [ + "▁mythology", + -12.858274459838867 + ], + [ + "5-3", + -12.858356475830078 + ], + [ + "▁skyline", + -12.858439445495605 + ], + [ + "European", + -12.858464241027832 + ], + [ + "▁Upload", + -12.858480453491211 + ], + [ + "▁fauna", + -12.858689308166504 + ], + [ + "▁arsenal", + -12.858999252319336 + ], + [ + "▁accelerating", + -12.85915470123291 + ], + [ + "▁Raiders", + -12.859162330627441 + ], + [ + "▁brightest", + -12.85922622680664 + ], + [ + "▁Tucker", + -12.859360694885254 + ], + [ + "▁Chandler", + -12.859407424926758 + ], + [ + "ustin", + -12.859663963317871 + ], + [ + "much", + -12.859700202941895 + ], + [ + "166", + -12.859735488891602 + ], + [ + "▁Kathleen", + -12.859776496887207 + ], + [ + "▁transformative", + -12.859840393066406 + ], + [ + "▁Aspen", + -12.859914779663086 + ], + [ + "▁Ingredients", + -12.859984397888184 + ], + [ + "▁Hardwood", + -12.860011100769043 + ], + [ + "above", + -12.860118865966797 + ], + [ + "▁enlist", + -12.860129356384277 + ], + [ + "spelled", + -12.860135078430176 + ], + [ + "▁remake", + -12.860172271728516 + ], + [ + "STOR", + -12.860235214233398 + ], + [ + "invasive", + -12.86023998260498 + ], + [ + "▁thunderstorm", + -12.860328674316406 + ], + [ + "Year", + -12.860418319702148 + ], + [ + "birth", + -12.860472679138184 + ], + [ + "▁Patterson", + -12.860477447509766 + ], + [ + "▁whisky", + -12.860492706298828 + ], + [ + "▁tearing", + -12.860496520996094 + ], + [ + "▁Paleo", + -12.860602378845215 + ], + [ + "▁Wax", + -12.860732078552246 + ], + [ + "ру", + -12.860858917236328 + ], + [ + "contact", + -12.8608980178833 + ], + [ + "itzer", + -12.860937118530273 + ], + [ + "▁depiction", + -12.861209869384766 + ], + [ + "▁Techno", + -12.861310958862305 + ], + [ + "School", + -12.861440658569336 + ], + [ + "▁capita", + -12.86158561706543 + ], + [ + "volume", + -12.861663818359375 + ], + [ + "188", + -12.861684799194336 + ], + [ + "▁unsubscribe", + -12.861725807189941 + ], + [ + "provide", + -12.861776351928711 + ], + [ + "▁rejoice", + -12.862269401550293 + ], + [ + "▁overlapping", + -12.862366676330566 + ], + [ + "▁Recommendation", + -12.862424850463867 + ], + [ + "▁Childhood", + -12.862659454345703 + ], + [ + "▁Cognitive", + -12.862815856933594 + ], + [ + "hopped", + -12.862915992736816 + ], + [ + "▁Determine", + -12.862993240356445 + ], + [ + "▁powdered", + -12.863122940063477 + ], + [ + "0,000.", + -12.863245010375977 + ], + [ + "▁granddaughter", + -12.863460540771484 + ], + [ + "valent", + -12.863632202148438 + ], + [ + "Assisted", + -12.863866806030273 + ], + [ + "▁Zion", + -12.86404800415039 + ], + [ + "information", + -12.864253997802734 + ], + [ + "1-7", + -12.864424705505371 + ], + [ + "▁Napoleon", + -12.864534378051758 + ], + [ + "▁Missing", + -12.864622116088867 + ], + [ + "bench", + -12.8646821975708 + ], + [ + "Blond", + -12.864705085754395 + ], + [ + "▁Hash", + -12.86473560333252 + ], + [ + "▁exporting", + -12.864736557006836 + ], + [ + "User", + -12.86492919921875 + ], + [ + "▁saga", + -12.86497688293457 + ], + [ + "760", + -12.865167617797852 + ], + [ + "▁brilliantly", + -12.865206718444824 + ], + [ + "▁uphill", + -12.865287780761719 + ], + [ + "loving", + -12.865300178527832 + ], + [ + "SCA", + -12.865304946899414 + ], + [ + "▁Hatch", + -12.86533260345459 + ], + [ + "depicting", + -12.865355491638184 + ], + [ + "▁Honour", + -12.865361213684082 + ], + [ + "Office", + -12.86561393737793 + ], + [ + "ière", + -12.865667343139648 + ], + [ + "▁Daisy", + -12.866081237792969 + ], + [ + "odge", + -12.86612319946289 + ], + [ + "▁unravel", + -12.86617660522461 + ], + [ + "▁Johan", + -12.866304397583008 + ], + [ + "▁Archer", + -12.866328239440918 + ], + [ + "aided", + -12.8663911819458 + ], + [ + "▁Everyday", + -12.866418838500977 + ], + [ + "▁heartbeat", + -12.86650562286377 + ], + [ + "▁Greenwich", + -12.86667537689209 + ], + [ + "▁cherries", + -12.866888999938965 + ], + [ + "DAR", + -12.866898536682129 + ], + [ + "their", + -12.866935729980469 + ], + [ + "▁Dixon", + -12.866968154907227 + ], + [ + "encia", + -12.866978645324707 + ], + [ + "▁Postal", + -12.867213249206543 + ], + [ + "(6)", + -12.86724853515625 + ], + [ + "▁Anonymous", + -12.867273330688477 + ], + [ + "folia", + -12.867345809936523 + ], + [ + "се", + -12.867412567138672 + ], + [ + "▁suction", + -12.867565155029297 + ], + [ + "106", + -12.867645263671875 + ], + [ + "balance", + -12.86767292022705 + ], + [ + "▁Tibet", + -12.867717742919922 + ], + [ + "▁embody", + -12.867744445800781 + ], + [ + "▁reassure", + -12.867899894714355 + ], + [ + "▁Barber", + -12.867911338806152 + ], + [ + "OOD", + -12.868001937866211 + ], + [ + "▁Huang", + -12.868087768554688 + ], + [ + "▁Infant", + -12.868151664733887 + ], + [ + "104", + -12.868393898010254 + ], + [ + "Corp", + -12.868547439575195 + ], + [ + "▁defi", + -12.868687629699707 + ], + [ + "▁Kwa", + -12.868855476379395 + ], + [ + "7.6", + -12.868990898132324 + ], + [ + "▁dynamically", + -12.86907958984375 + ], + [ + "▁fanatic", + -12.86931324005127 + ], + [ + "▁furry", + -12.869335174560547 + ], + [ + "▁experiential", + -12.869391441345215 + ], + [ + "LEY", + -12.869500160217285 + ], + [ + "fidelity", + -12.869548797607422 + ], + [ + "▁Regina", + -12.869548797607422 + ], + [ + "▁disadvantaged", + -12.869571685791016 + ], + [ + "▁Classroom", + -12.869593620300293 + ], + [ + "▁Nina", + -12.86959457397461 + ], + [ + "▁GOD", + -12.869829177856445 + ], + [ + "▁texas", + -12.869832992553711 + ], + [ + "experience", + -12.869867324829102 + ], + [ + "229", + -12.869902610778809 + ], + [ + "▁amber", + -12.870087623596191 + ], + [ + "308", + -12.87015151977539 + ], + [ + "▁plateau", + -12.870206832885742 + ], + [ + "Speed", + -12.870365142822266 + ], + [ + "▁LIMITED", + -12.870412826538086 + ], + [ + "▁moderator", + -12.8704252243042 + ], + [ + "▁Architectural", + -12.870428085327148 + ], + [ + "▁eradicate", + -12.8707275390625 + ], + [ + "247", + -12.870733261108398 + ], + [ + "University", + -12.870920181274414 + ], + [ + "▁wildfire", + -12.871034622192383 + ], + [ + "XP", + -12.871212005615234 + ], + [ + "▁Cookie", + -12.871234893798828 + ], + [ + "▁fungus", + -12.871293067932129 + ], + [ + "от", + -12.871355056762695 + ], + [ + "▁vain", + -12.871386528015137 + ], + [ + "6.7", + -12.871416091918945 + ], + [ + "▁Hospice", + -12.87143611907959 + ], + [ + "▁WARRANT", + -12.871525764465332 + ], + [ + "bility", + -12.871564865112305 + ], + [ + "▁airflow", + -12.87158203125 + ], + [ + "▁softball", + -12.871667861938477 + ], + [ + "▁Luk", + -12.871675491333008 + ], + [ + "▁alright", + -12.87182903289795 + ], + [ + "▁Felix", + -12.871874809265137 + ], + [ + "▁mirrored", + -12.871895790100098 + ], + [ + "▁credential", + -12.871905326843262 + ], + [ + "rissa", + -12.871960639953613 + ], + [ + "▁Covenant", + -12.871987342834473 + ], + [ + "attan", + -12.872034072875977 + ], + [ + "▁abdomen", + -12.872065544128418 + ], + [ + "erce", + -12.872084617614746 + ], + [ + "drew", + -12.872157096862793 + ], + [ + "▁Este", + -12.872366905212402 + ], + [ + "▁$45", + -12.872379302978516 + ], + [ + "PLE", + -12.872387886047363 + ], + [ + "▁uptake", + -12.872478485107422 + ], + [ + "▁refinement", + -12.872599601745605 + ], + [ + "▁unjust", + -12.872611045837402 + ], + [ + "▁pathology", + -12.872618675231934 + ], + [ + "guin", + -12.872658729553223 + ], + [ + "▁negligent", + -12.872695922851562 + ], + [ + "▁Fir", + -12.872730255126953 + ], + [ + "226", + -12.872803688049316 + ], + [ + "▁divider", + -12.872854232788086 + ], + [ + "EPA", + -12.87290096282959 + ], + [ + "▁Muscle", + -12.872944831848145 + ], + [ + "▁Mobility", + -12.87321949005127 + ], + [ + "Two", + -12.87331771850586 + ], + [ + "▁yolk", + -12.873326301574707 + ], + [ + "▁photographing", + -12.873390197753906 + ], + [ + "▁Conversion", + -12.873507499694824 + ], + [ + "itian", + -12.873571395874023 + ], + [ + "raising", + -12.873613357543945 + ], + [ + "▁Katy", + -12.873851776123047 + ], + [ + "▁PGA", + -12.873858451843262 + ], + [ + "aldi", + -12.873930931091309 + ], + [ + "▁cinematic", + -12.87393569946289 + ], + [ + "Main", + -12.873947143554688 + ], + [ + "▁Drupal", + -12.874017715454102 + ], + [ + "adjoining", + -12.87403678894043 + ], + [ + "▁avoidance", + -12.874309539794922 + ], + [ + "Developed", + -12.874345779418945 + ], + [ + "▁Taco", + -12.874356269836426 + ], + [ + "tipped", + -12.874382019042969 + ], + [ + "2003", + -12.874482154846191 + ], + [ + "▁supervise", + -12.874510765075684 + ], + [ + "▁Washing", + -12.87458610534668 + ], + [ + "▁apron", + -12.874699592590332 + ], + [ + "▁Noise", + -12.874732971191406 + ], + [ + "▁nicotine", + -12.874826431274414 + ], + [ + "▁accolade", + -12.87490463256836 + ], + [ + "▁clergy", + -12.8750638961792 + ], + [ + "▁React", + -12.875337600708008 + ], + [ + "next", + -12.875373840332031 + ], + [ + "▁robbery", + -12.8755521774292 + ], + [ + "▁Saskatchewan", + -12.875616073608398 + ], + [ + "▁sheath", + -12.875638961791992 + ], + [ + "▁shaker", + -12.875667572021484 + ], + [ + "▁11:30", + -12.875673294067383 + ], + [ + "▁icy", + -12.875807762145996 + ], + [ + "deploying", + -12.876100540161133 + ], + [ + "▁causal", + -12.876208305358887 + ], + [ + "ALT", + -12.876233100891113 + ], + [ + "▁harp", + -12.876562118530273 + ], + [ + "ilian", + -12.877012252807617 + ], + [ + "▁Apprentice", + -12.877039909362793 + ], + [ + "company", + -12.877043724060059 + ], + [ + "▁penguin", + -12.87706470489502 + ], + [ + "▁Leisure", + -12.877076148986816 + ], + [ + "▁Scandinavian", + -12.877126693725586 + ], + [ + "▁Brooke", + -12.877168655395508 + ], + [ + "▁runtime", + -12.87717342376709 + ], + [ + "risto", + -12.877201080322266 + ], + [ + "▁Schneider", + -12.877277374267578 + ], + [ + "▁plagiarism", + -12.877435684204102 + ], + [ + "▁reinstall", + -12.877700805664062 + ], + [ + "▁thieves", + -12.877910614013672 + ], + [ + "Trying", + -12.878043174743652 + ], + [ + "▁lagoon", + -12.878153800964355 + ], + [ + "Chartered", + -12.878201484680176 + ], + [ + "CAD", + -12.878230094909668 + ], + [ + "megapixel", + -12.878450393676758 + ], + [ + "▁Violence", + -12.878544807434082 + ], + [ + "▁Omar", + -12.878617286682129 + ], + [ + "▁translucent", + -12.878703117370605 + ], + [ + "▁cav", + -12.878782272338867 + ], + [ + "SQL", + -12.87881088256836 + ], + [ + "▁Investing", + -12.878819465637207 + ], + [ + "Media", + -12.87902545928955 + ], + [ + "▁Berkshire", + -12.879112243652344 + ], + [ + "▁Bash", + -12.879220962524414 + ], + [ + "Hop", + -12.879373550415039 + ], + [ + "▁formidable", + -12.879438400268555 + ], + [ + "▁fertile", + -12.879502296447754 + ], + [ + "KY", + -12.879683494567871 + ], + [ + "children", + -12.879880905151367 + ], + [ + "▁Cath", + -12.87999153137207 + ], + [ + "▁Kul", + -12.880051612854004 + ], + [ + "▁additive", + -12.880158424377441 + ], + [ + "▁gigantic", + -12.880290031433105 + ], + [ + "draft", + -12.880342483520508 + ], + [ + "▁Stern", + -12.8804292678833 + ], + [ + "▁1/4\"", + -12.880449295043945 + ], + [ + "▁Maui", + -12.880687713623047 + ], + [ + "▁Provincial", + -12.88084602355957 + ], + [ + "▁probiotic", + -12.880945205688477 + ], + [ + "pilot", + -12.881234169006348 + ], + [ + "▁Halifax", + -12.881243705749512 + ], + [ + "does", + -12.881352424621582 + ], + [ + "▁Countertop", + -12.881380081176758 + ], + [ + "▁Worship", + -12.881413459777832 + ], + [ + "league", + -12.881501197814941 + ], + [ + "Group", + -12.881553649902344 + ], + [ + "ranked", + -12.881584167480469 + ], + [ + "▁slump", + -12.881593704223633 + ], + [ + "▁recite", + -12.881596565246582 + ], + [ + "▁pharmacies", + -12.881650924682617 + ], + [ + "PCC", + -12.881708145141602 + ], + [ + "Pen", + -12.881768226623535 + ], + [ + "▁bankrupt", + -12.881878852844238 + ], + [ + "▁cervical", + -12.881958961486816 + ], + [ + "▁pneumonia", + -12.881958961486816 + ], + [ + "▁ornamental", + -12.882061958312988 + ], + [ + "▁Seek", + -12.88217544555664 + ], + [ + "▁Consortium", + -12.882515907287598 + ], + [ + "ма", + -12.882516860961914 + ], + [ + "▁Lottery", + -12.88251781463623 + ], + [ + "▁Collector", + -12.88259220123291 + ], + [ + "▁Optical", + -12.882668495178223 + ], + [ + "▁casualties", + -12.882669448852539 + ], + [ + "(8)", + -12.88276195526123 + ], + [ + "960", + -12.88276195526123 + ], + [ + "January", + -12.882777214050293 + ], + [ + "▁WHY", + -12.88278865814209 + ], + [ + "▁Alloy", + -12.882805824279785 + ], + [ + "▁Arduino", + -12.882834434509277 + ], + [ + "▁intimidate", + -12.882993698120117 + ], + [ + "007", + -12.883002281188965 + ], + [ + "▁12%", + -12.883070945739746 + ], + [ + "holm", + -12.88311767578125 + ], + [ + "Saxon", + -12.883207321166992 + ], + [ + "Sexy", + -12.883360862731934 + ], + [ + "▁Apostle", + -12.88348388671875 + ], + [ + "▁fascination", + -12.883630752563477 + ], + [ + "▁haunting", + -12.883708953857422 + ], + [ + "▁Cooperation", + -12.883827209472656 + ], + [ + "▁Rita", + -12.883893013000488 + ], + [ + "▁Chai", + -12.884047508239746 + ], + [ + "8.4", + -12.884127616882324 + ], + [ + "▁suspense", + -12.884188652038574 + ], + [ + "▁meticulously", + -12.884271621704102 + ], + [ + "▁weakened", + -12.884344100952148 + ], + [ + "total", + -12.8843994140625 + ], + [ + "▁inscription", + -12.884400367736816 + ], + [ + "▁slat", + -12.884418487548828 + ], + [ + "▁bungalow", + -12.884428024291992 + ], + [ + "▁rework", + -12.884500503540039 + ], + [ + "▁naive", + -12.884510040283203 + ], + [ + "303", + -12.88453483581543 + ], + [ + "▁Azerbaijan", + -12.88466739654541 + ], + [ + "▁sonic", + -12.884678840637207 + ], + [ + "anci", + -12.884812355041504 + ], + [ + "▁Reply", + -12.884848594665527 + ], + [ + "retta", + -12.884866714477539 + ], + [ + "IVER", + -12.884876251220703 + ], + [ + "▁Quiet", + -12.884879112243652 + ], + [ + "▁Kerr", + -12.884881019592285 + ], + [ + "▁translating", + -12.884905815124512 + ], + [ + "▁APK", + -12.884973526000977 + ], + [ + "▁Plaintiff", + -12.884993553161621 + ], + [ + "▁Homeland", + -12.885011672973633 + ], + [ + "▁Gambling", + -12.885016441345215 + ], + [ + "▁Lieutenant", + -12.885066032409668 + ], + [ + "▁shimmer", + -12.885068893432617 + ], + [ + "108", + -12.88510799407959 + ], + [ + "▁clasp", + -12.885152816772461 + ], + [ + "recht", + -12.885172843933105 + ], + [ + "route", + -12.885382652282715 + ], + [ + "▁conduit", + -12.885385513305664 + ], + [ + "▁circa", + -12.885437965393066 + ], + [ + "Stop", + -12.885523796081543 + ], + [ + "serving", + -12.885565757751465 + ], + [ + "▁Tate", + -12.885581016540527 + ], + [ + "▁sinking", + -12.885589599609375 + ], + [ + "▁ethos", + -12.885632514953613 + ], + [ + "London", + -12.885635375976562 + ], + [ + "▁trench", + -12.885650634765625 + ], + [ + "legged", + -12.885793685913086 + ], + [ + "▁Approved", + -12.885943412780762 + ], + [ + "▁Riding", + -12.885986328125 + ], + [ + "▁Fool", + -12.886049270629883 + ], + [ + "▁Paid", + -12.886058807373047 + ], + [ + "▁saliva", + -12.886085510253906 + ], + [ + "▁Proceed", + -12.886152267456055 + ], + [ + "230", + -12.886157989501953 + ], + [ + "mostly", + -12.886486053466797 + ], + [ + "Windows", + -12.886490821838379 + ], + [ + "▁pedestal", + -12.886503219604492 + ], + [ + "minant", + -12.886619567871094 + ], + [ + "▁(2003)", + -12.886775970458984 + ], + [ + "▁Babylon", + -12.886870384216309 + ], + [ + "9-1", + -12.88692569732666 + ], + [ + "commended", + -12.887104988098145 + ], + [ + "▁Bacon", + -12.887138366699219 + ], + [ + "▁swarm", + -12.887189865112305 + ], + [ + "patri", + -12.887235641479492 + ], + [ + "▁Giveaway", + -12.88729476928711 + ], + [ + "▁lighthouse", + -12.88747501373291 + ], + [ + "▁apk", + -12.887514114379883 + ], + [ + "sql", + -12.887578010559082 + ], + [ + "▁kayaking", + -12.887757301330566 + ], + [ + "▁1919", + -12.88787841796875 + ], + [ + "▁exhaustive", + -12.887964248657227 + ], + [ + "Help", + -12.888392448425293 + ], + [ + "▁Pentagon", + -12.888422966003418 + ], + [ + "570", + -12.888509750366211 + ], + [ + "▁bluetooth", + -12.888726234436035 + ], + [ + "▁$19", + -12.888821601867676 + ], + [ + "gear", + -12.88884449005127 + ], + [ + "rosis", + -12.888949394226074 + ], + [ + "▁Hansen", + -12.88895034790039 + ], + [ + "▁Warsaw", + -12.88904094696045 + ], + [ + "bond", + -12.889103889465332 + ], + [ + "▁Camping", + -12.88910961151123 + ], + [ + "8000", + -12.88913631439209 + ], + [ + "▁Goddess", + -12.88922119140625 + ], + [ + "▁turmoil", + -12.889303207397461 + ], + [ + "▁nostalgic", + -12.889623641967773 + ], + [ + "▁tally", + -12.889739990234375 + ], + [ + "5-4", + -12.88974666595459 + ], + [ + "▁diffuse", + -12.88991928100586 + ], + [ + "▁Survival", + -12.889945030212402 + ], + [ + "▁888-4", + -12.890103340148926 + ], + [ + "▁Screening", + -12.890189170837402 + ], + [ + "▁steward", + -12.890231132507324 + ], + [ + "▁finalized", + -12.89023208618164 + ], + [ + "970", + -12.890447616577148 + ], + [ + "tiff", + -12.890522956848145 + ], + [ + "▁Snake", + -12.890522956848145 + ], + [ + "▁dans", + -12.89065170288086 + ], + [ + "DOES", + -12.890652656555176 + ], + [ + "▁rendition", + -12.890666007995605 + ], + [ + "▁Symbol", + -12.890721321105957 + ], + [ + "▁Recognition", + -12.890827178955078 + ], + [ + "▁sauté", + -12.890827178955078 + ], + [ + "▁Punch", + -12.890900611877441 + ], + [ + "▁emperor", + -12.890908241271973 + ], + [ + "▁missionary", + -12.8909912109375 + ], + [ + "▁Brewery", + -12.89102840423584 + ], + [ + "▁Wong", + -12.891048431396484 + ], + [ + "▁oatmeal", + -12.891067504882812 + ], + [ + "▁monumental", + -12.8911714553833 + ], + [ + "▁SIP", + -12.891339302062988 + ], + [ + "▁sewn", + -12.891464233398438 + ], + [ + "▁Blank", + -12.891474723815918 + ], + [ + "▁ATV", + -12.89155387878418 + ], + [ + "▁Sodium", + -12.891642570495605 + ], + [ + "uva", + -12.891839981079102 + ], + [ + "ummies", + -12.892183303833008 + ], + [ + "Bur", + -12.892190933227539 + ], + [ + "▁Literary", + -12.892192840576172 + ], + [ + "7-9", + -12.89222526550293 + ], + [ + "▁Airbnb", + -12.892358779907227 + ], + [ + "knowingly", + -12.89245891571045 + ], + [ + "▁blockage", + -12.892523765563965 + ], + [ + "▁12,000", + -12.892712593078613 + ], + [ + "▁massacre", + -12.892777442932129 + ], + [ + "▁filament", + -12.89283561706543 + ], + [ + "216", + -12.89284610748291 + ], + [ + "▁phospho", + -12.892878532409668 + ], + [ + "▁Acrylic", + -12.892915725708008 + ], + [ + "▁Gothic", + -12.892929077148438 + ], + [ + "▁cram", + -12.893110275268555 + ], + [ + "▁Fail", + -12.893341064453125 + ], + [ + "265", + -12.893424034118652 + ], + [ + "▁eruption", + -12.893428802490234 + ], + [ + "▁underscore", + -12.893450736999512 + ], + [ + "▁toothpaste", + -12.893478393554688 + ], + [ + "▁tamper", + -12.893485069274902 + ], + [ + "▁rattle", + -12.89350414276123 + ], + [ + "brain", + -12.89360523223877 + ], + [ + "▁bursting", + -12.893672943115234 + ], + [ + "▁Soap", + -12.893692016601562 + ], + [ + "analysed", + -12.893838882446289 + ], + [ + "▁Remodeling", + -12.89387321472168 + ], + [ + "limited", + -12.893989562988281 + ], + [ + "▁3:00", + -12.89406967163086 + ], + [ + "▁alternating", + -12.894123077392578 + ], + [ + "▁rebellion", + -12.894139289855957 + ], + [ + "▁pilgrimage", + -12.894172668457031 + ], + [ + "reviewed", + -12.894211769104004 + ], + [ + "▁Frog", + -12.894291877746582 + ], + [ + "rvin", + -12.894292831420898 + ], + [ + "Reilly", + -12.894296646118164 + ], + [ + "▁Regiment", + -12.894471168518066 + ], + [ + "▁Agenda", + -12.894474983215332 + ], + [ + "▁Sap", + -12.894476890563965 + ], + [ + "▁Kitty", + -12.894538879394531 + ], + [ + "▁signify", + -12.894560813903809 + ], + [ + "▁PNG", + -12.894649505615234 + ], + [ + "roga", + -12.894858360290527 + ], + [ + "▁Klo", + -12.894954681396484 + ], + [ + "tator", + -12.89507007598877 + ], + [ + "855", + -12.895127296447754 + ], + [ + "▁Floral", + -12.895135879516602 + ], + [ + "▁bliss", + -12.895203590393066 + ], + [ + "▁Traditionally", + -12.895256042480469 + ], + [ + "YN", + -12.89526653289795 + ], + [ + "▁punished", + -12.895295143127441 + ], + [ + "▁2008)", + -12.895305633544922 + ], + [ + "ionism", + -12.895357131958008 + ], + [ + "sorption", + -12.895451545715332 + ], + [ + "lius", + -12.89568042755127 + ], + [ + "▁Griffith", + -12.895733833312988 + ], + [ + "ат", + -12.895744323730469 + ], + [ + "▁acidic", + -12.895828247070312 + ], + [ + "ooze", + -12.895895957946777 + ], + [ + "▁beetle", + -12.895933151245117 + ], + [ + "came", + -12.895995140075684 + ], + [ + "▁stranded", + -12.896218299865723 + ], + [ + "▁fearful", + -12.896406173706055 + ], + [ + "▁geological", + -12.8964204788208 + ], + [ + "▁Dancing", + -12.896461486816406 + ], + [ + "abine", + -12.896671295166016 + ], + [ + "▁clown", + -12.896693229675293 + ], + [ + "Today", + -12.896703720092773 + ], + [ + "CAP", + -12.896778106689453 + ], + [ + "▁instrumentation", + -12.897037506103516 + ], + [ + "▁cruelty", + -12.897116661071777 + ], + [ + "▁Ministries", + -12.897348403930664 + ], + [ + "▁progressively", + -12.897422790527344 + ], + [ + "▁Afterwards", + -12.897462844848633 + ], + [ + "float", + -12.897496223449707 + ], + [ + "9.95", + -12.897622108459473 + ], + [ + "179", + -12.897644996643066 + ], + [ + "189", + -12.897685050964355 + ], + [ + "▁Beam", + -12.897697448730469 + ], + [ + "▁standby", + -12.897734642028809 + ], + [ + "Dirty", + -12.897777557373047 + ], + [ + "▁monetiz", + -12.897842407226562 + ], + [ + "▁Ambi", + -12.897868156433105 + ], + [ + "▁Rav", + -12.897887229919434 + ], + [ + "grated", + -12.898077011108398 + ], + [ + "▁carton", + -12.89814281463623 + ], + [ + "▁STATE", + -12.898187637329102 + ], + [ + "▁$1000", + -12.898194313049316 + ], + [ + "▁Stylish", + -12.898238182067871 + ], + [ + "▁Berk", + -12.898242950439453 + ], + [ + "billion", + -12.898275375366211 + ], + [ + "▁Entrance", + -12.89841079711914 + ], + [ + "5.8", + -12.898458480834961 + ], + [ + "737", + -12.898579597473145 + ], + [ + "▁arteries", + -12.898748397827148 + ], + [ + "▁Tattoo", + -12.89880657196045 + ], + [ + "196", + -12.89888858795166 + ], + [ + "▁acronym", + -12.899208068847656 + ], + [ + "▁Sutton", + -12.899514198303223 + ], + [ + "▁shouting", + -12.899520874023438 + ], + [ + "▁Remind", + -12.899701118469238 + ], + [ + "▁Augustine", + -12.899707794189453 + ], + [ + "▁Sleeve", + -12.899856567382812 + ], + [ + "Cock", + -12.899895668029785 + ], + [ + "▁Unified", + -12.900028228759766 + ], + [ + "▁Glory", + -12.900101661682129 + ], + [ + "▁$600", + -12.900127410888672 + ], + [ + "▁Kohl", + -12.900142669677734 + ], + [ + "kko", + -12.900166511535645 + ], + [ + "▁Frozen", + -12.900192260742188 + ], + [ + "Assuming", + -12.900229454040527 + ], + [ + "customised", + -12.900254249572754 + ], + [ + "tien", + -12.900424003601074 + ], + [ + "▁Kri", + -12.900814056396484 + ], + [ + "178", + -12.900842666625977 + ], + [ + "▁infinity", + -12.900989532470703 + ], + [ + "▁preacher", + -12.901047706604004 + ], + [ + "▁relic", + -12.901148796081543 + ], + [ + "Trade", + -12.901254653930664 + ], + [ + "▁CSR", + -12.901263236999512 + ], + [ + "▁tightening", + -12.901308059692383 + ], + [ + "▁Pinot", + -12.90147590637207 + ], + [ + "▁graffiti", + -12.90163803100586 + ], + [ + "▁chronicle", + -12.901680946350098 + ], + [ + "▁Ella", + -12.90172290802002 + ], + [ + "olite", + -12.90182113647461 + ], + [ + "▁undesirable", + -12.901963233947754 + ], + [ + "▁Provision", + -12.902146339416504 + ], + [ + "▁Microwave", + -12.902265548706055 + ], + [ + "opt", + -12.902432441711426 + ], + [ + "555", + -12.902654647827148 + ], + [ + "▁OSHA", + -12.902684211730957 + ], + [ + "▁£6", + -12.902700424194336 + ], + [ + "killexams", + -12.9030179977417 + ], + [ + "▁blueberries", + -12.903273582458496 + ], + [ + "мо", + -12.903447151184082 + ], + [ + "Tec", + -12.90357780456543 + ], + [ + "▁mystical", + -12.903642654418945 + ], + [ + "▁Telephone", + -12.903719902038574 + ], + [ + "▁shopper", + -12.903727531433105 + ], + [ + "▁Reverse", + -12.90373706817627 + ], + [ + "▁SPI", + -12.904006004333496 + ], + [ + "▁Necklace", + -12.904237747192383 + ], + [ + "103", + -12.904325485229492 + ], + [ + "student", + -12.904373168945312 + ], + [ + "▁(7)", + -12.904558181762695 + ], + [ + "elman", + -12.904594421386719 + ], + [ + "▁Spending", + -12.9046049118042 + ], + [ + "Pla", + -12.90477466583252 + ], + [ + "▁casserole", + -12.904807090759277 + ], + [ + "▁doom", + -12.90489387512207 + ], + [ + "▁Tide", + -12.904935836791992 + ], + [ + "▁adolescent", + -12.905131340026855 + ], + [ + "BRA", + -12.905141830444336 + ], + [ + "▁golfers", + -12.905253410339355 + ], + [ + "▁presses", + -12.905261039733887 + ], + [ + "▁commencement", + -12.905357360839844 + ], + [ + "▁watts", + -12.905590057373047 + ], + [ + "▁1,200", + -12.905595779418945 + ], + [ + "▁postgraduate", + -12.90577220916748 + ], + [ + "generational", + -12.905843734741211 + ], + [ + "▁aerobic", + -12.905872344970703 + ], + [ + "pocket", + -12.905959129333496 + ], + [ + "▁aloud", + -12.90604019165039 + ], + [ + "▁collide", + -12.906044960021973 + ], + [ + "yahoo", + -12.906156539916992 + ], + [ + "looming", + -12.906172752380371 + ], + [ + "▁Insta", + -12.906645774841309 + ], + [ + "▁visionary", + -12.906668663024902 + ], + [ + "▁buffalo", + -12.906684875488281 + ], + [ + "▁thermometer", + -12.90670394897461 + ], + [ + "▁Maxwell", + -12.906713485717773 + ], + [ + "159", + -12.906764030456543 + ], + [ + "▁surcharge", + -12.90687370300293 + ], + [ + "math", + -12.907241821289062 + ], + [ + "▁Settlement", + -12.907251358032227 + ], + [ + "▁Threat", + -12.90727424621582 + ], + [ + "phobic", + -12.907365798950195 + ], + [ + "▁Jung", + -12.907471656799316 + ], + [ + "▁extremist", + -12.907496452331543 + ], + [ + "▁awning", + -12.907659530639648 + ], + [ + "▁Powerful", + -12.907727241516113 + ], + [ + "habit", + -12.908087730407715 + ], + [ + "233", + -12.908106803894043 + ], + [ + "▁Estimate", + -12.908163070678711 + ], + [ + "▁millennials", + -12.908246994018555 + ], + [ + "▁Irving", + -12.908329010009766 + ], + [ + "▁linkage", + -12.908432960510254 + ], + [ + "▁suffice", + -12.908638954162598 + ], + [ + "▁Bruno", + -12.90870189666748 + ], + [ + "icia", + -12.908710479736328 + ], + [ + "▁glare", + -12.90875244140625 + ], + [ + "GY", + -12.908848762512207 + ], + [ + "document", + -12.908958435058594 + ], + [ + "▁hob", + -12.909078598022461 + ], + [ + "Track", + -12.909263610839844 + ], + [ + "mashed", + -12.90931224822998 + ], + [ + "▁Stark", + -12.909346580505371 + ], + [ + "▁Metallic", + -12.909438133239746 + ], + [ + "214", + -12.909578323364258 + ], + [ + "▁gasket", + -12.909635543823242 + ], + [ + "YL", + -12.909661293029785 + ], + [ + "▁upkeep", + -12.909945487976074 + ], + [ + "finance", + -12.910026550292969 + ], + [ + "widest", + -12.910123825073242 + ], + [ + "▁Thomson", + -12.91015911102295 + ], + [ + "graduate", + -12.910199165344238 + ], + [ + "▁Norwich", + -12.910387992858887 + ], + [ + "▁Shelby", + -12.910444259643555 + ], + [ + "▁Carolyn", + -12.910451889038086 + ], + [ + "▁opaque", + -12.91051959991455 + ], + [ + "▁Cycling", + -12.910528182983398 + ], + [ + "▁Bren", + -12.910594940185547 + ], + [ + "▁pragmatic", + -12.910603523254395 + ], + [ + "▁Household", + -12.910614013671875 + ], + [ + "▁whimsical", + -12.910615921020508 + ], + [ + "▁substantive", + -12.910683631896973 + ], + [ + "impending", + -12.910700798034668 + ], + [ + "teur", + -12.91072940826416 + ], + [ + "▁Romanian", + -12.910746574401855 + ], + [ + "▁kinase", + -12.910861015319824 + ], + [ + "▁Adapter", + -12.910900115966797 + ], + [ + "conduct", + -12.910937309265137 + ], + [ + "▁Counties", + -12.910966873168945 + ], + [ + "Music", + -12.911072731018066 + ], + [ + "printed", + -12.9111967086792 + ], + [ + "▁meticulous", + -12.91125202178955 + ], + [ + "Series", + -12.911323547363281 + ], + [ + "▁gloom", + -12.911413192749023 + ], + [ + "▁scientifically", + -12.911640167236328 + ], + [ + "▁tracing", + -12.911641120910645 + ], + [ + "▁Whale", + -12.911685943603516 + ], + [ + "▁flange", + -12.911762237548828 + ], + [ + "Jet", + -12.911806106567383 + ], + [ + "church", + -12.9120512008667 + ], + [ + "▁sweetener", + -12.912154197692871 + ], + [ + "3.0", + -12.912243843078613 + ], + [ + "▁blouse", + -12.912247657775879 + ], + [ + "▁Bundle", + -12.912308692932129 + ], + [ + "SION", + -12.912343978881836 + ], + [ + "▁proximal", + -12.912405014038086 + ], + [ + "▁universally", + -12.912445068359375 + ], + [ + "▁redefine", + -12.91249942779541 + ], + [ + "▁Chess", + -12.912593841552734 + ], + [ + "4-7", + -12.912649154663086 + ], + [ + "▁Legislative", + -12.912650108337402 + ], + [ + "▁UFO", + -12.912712097167969 + ], + [ + "BEL", + -12.91272258758545 + ], + [ + "▁hoard", + -12.912858963012695 + ], + [ + "▁Experimental", + -12.912964820861816 + ], + [ + "▁painless", + -12.912984848022461 + ], + [ + "223", + -12.913002014160156 + ], + [ + "ATIONS", + -12.913050651550293 + ], + [ + "▁stunned", + -12.913064002990723 + ], + [ + "▁Tehran", + -12.913143157958984 + ], + [ + "▁stewardship", + -12.913267135620117 + ], + [ + "▁smokers", + -12.913384437561035 + ], + [ + "▁turmeric", + -12.913553237915039 + ], + [ + "▁crock", + -12.913556098937988 + ], + [ + "CAN", + -12.913655281066895 + ], + [ + "▁Tribunal", + -12.913716316223145 + ], + [ + "famous", + -12.913752555847168 + ], + [ + "ERC", + -12.913795471191406 + ], + [ + "▁Improved", + -12.913907051086426 + ], + [ + "▁chromosome", + -12.913963317871094 + ], + [ + "▁Doyle", + -12.914022445678711 + ], + [ + "▁Currency", + -12.914045333862305 + ], + [ + "blamed", + -12.91409969329834 + ], + [ + "▁unreasonable", + -12.914127349853516 + ], + [ + "▁Kemp", + -12.914144515991211 + ], + [ + "▁Europa", + -12.914278030395508 + ], + [ + "leur", + -12.914302825927734 + ], + [ + "©", + -12.914368629455566 + ], + [ + "▁shuffle", + -12.914398193359375 + ], + [ + "▁bilingual", + -12.914405822753906 + ], + [ + "scented", + -12.914495468139648 + ], + [ + "▁spaghetti", + -12.914538383483887 + ], + [ + "▁ATP", + -12.914651870727539 + ], + [ + "▁Blessed", + -12.914653778076172 + ], + [ + "HEL", + -12.914666175842285 + ], + [ + "▁vigilant", + -12.91466999053955 + ], + [ + "▁Ensemble", + -12.91478443145752 + ], + [ + "▁Camel", + -12.914813041687012 + ], + [ + "Scope", + -12.91497802734375 + ], + [ + "▁HUN", + -12.914986610412598 + ], + [ + "tami", + -12.915010452270508 + ], + [ + "anese", + -12.915262222290039 + ], + [ + "urinary", + -12.915294647216797 + ], + [ + "▁overdue", + -12.915321350097656 + ], + [ + "▁Represent", + -12.915374755859375 + ], + [ + "roop", + -12.915420532226562 + ], + [ + "worthiness", + -12.915695190429688 + ], + [ + "bestselling", + -12.915938377380371 + ], + [ + "▁truffle", + -12.91601848602295 + ], + [ + "▁Vimeo", + -12.916022300720215 + ], + [ + "▁Benedict", + -12.916107177734375 + ], + [ + "▁apology", + -12.916109085083008 + ], + [ + "▁Browser", + -12.916133880615234 + ], + [ + "151", + -12.916192054748535 + ], + [ + "▁alum", + -12.916455268859863 + ], + [ + "▁Fro", + -12.916486740112305 + ], + [ + "khi", + -12.916518211364746 + ], + [ + "470", + -12.916584014892578 + ], + [ + "FRA", + -12.91667652130127 + ], + [ + "▁programmable", + -12.916677474975586 + ], + [ + "▁drywall", + -12.916679382324219 + ], + [ + "▁Willis", + -12.916698455810547 + ], + [ + "335", + -12.91692066192627 + ], + [ + "▁Anchor", + -12.917058944702148 + ], + [ + "▁villagers", + -12.917104721069336 + ], + [ + "▁kon", + -12.917143821716309 + ], + [ + "157", + -12.917152404785156 + ], + [ + "▁Silent", + -12.91722297668457 + ], + [ + "▁KNOW", + -12.917253494262695 + ], + [ + "▁redevelopment", + -12.91730785369873 + ], + [ + "▁auxiliary", + -12.917418479919434 + ], + [ + "▁adrenaline", + -12.917420387268066 + ], + [ + "▁sect", + -12.917430877685547 + ], + [ + "▁respondent", + -12.917496681213379 + ], + [ + "▁Bald", + -12.917569160461426 + ], + [ + "▁Grie", + -12.917588233947754 + ], + [ + "▁lobbying", + -12.917623519897461 + ], + [ + "▁motel", + -12.917641639709473 + ], + [ + "▁Keto", + -12.917856216430664 + ], + [ + "▁intestinal", + -12.918078422546387 + ], + [ + "▁toolbar", + -12.918127059936523 + ], + [ + "gien", + -12.91858196258545 + ], + [ + "▁remark", + -12.918599128723145 + ], + [ + "▁salvage", + -12.91876220703125 + ], + [ + "▁Garrett", + -12.918929100036621 + ], + [ + "▁greenery", + -12.918980598449707 + ], + [ + "▁Efficiency", + -12.918985366821289 + ], + [ + "▁Johannesburg", + -12.918985366821289 + ], + [ + "▁lunar", + -12.918987274169922 + ], + [ + "▁£100", + -12.919102668762207 + ], + [ + "▁Torres", + -12.91937255859375 + ], + [ + "TEX", + -12.919479370117188 + ], + [ + "ZZ", + -12.919610977172852 + ], + [ + "secondary", + -12.919693946838379 + ], + [ + "7000", + -12.919833183288574 + ], + [ + "meet", + -12.919905662536621 + ], + [ + "▁Darling", + -12.919915199279785 + ], + [ + "plu", + -12.920002937316895 + ], + [ + "▁roaming", + -12.92017936706543 + ], + [ + "▁PJ", + -12.9203462600708 + ], + [ + "▁suede", + -12.92038345336914 + ], + [ + "ال", + -12.92046070098877 + ], + [ + "▁Tunisia", + -12.920478820800781 + ], + [ + "clogged", + -12.920701026916504 + ], + [ + "▁havoc", + -12.920784950256348 + ], + [ + "Sphere", + -12.920792579650879 + ], + [ + "paying", + -12.9208402633667 + ], + [ + "▁complexion", + -12.920862197875977 + ], + [ + "▁Willie", + -12.920893669128418 + ], + [ + "kawa", + -12.920917510986328 + ], + [ + "testified", + -12.9209623336792 + ], + [ + "▁Geek", + -12.92104434967041 + ], + [ + "▁CFO", + -12.921158790588379 + ], + [ + "▁Lexus", + -12.92116928100586 + ], + [ + "▁physiology", + -12.92121696472168 + ], + [ + "▁Bonnie", + -12.92140007019043 + ], + [ + "▁enticing", + -12.921465873718262 + ], + [ + "▁influx", + -12.921671867370605 + ], + [ + "minus", + -12.921710014343262 + ], + [ + "▁Claus", + -12.921736717224121 + ], + [ + "▁FAA", + -12.921769142150879 + ], + [ + "measure", + -12.921807289123535 + ], + [ + "ucker", + -12.921815872192383 + ], + [ + "November", + -12.921954154968262 + ], + [ + "▁diversify", + -12.922198295593262 + ], + [ + "Shirt", + -12.922409057617188 + ], + [ + "▁Bolivia", + -12.922623634338379 + ], + [ + "original", + -12.92267894744873 + ], + [ + "▁reprint", + -12.922711372375488 + ], + [ + "▁cheesecake", + -12.92286491394043 + ], + [ + "ijn", + -12.922953605651855 + ], + [ + "sari", + -12.922992706298828 + ], + [ + "devised", + -12.923355102539062 + ], + [ + "forum", + -12.923515319824219 + ], + [ + "▁bombard", + -12.923837661743164 + ], + [ + "Query", + -12.924003601074219 + ], + [ + "▁deceive", + -12.924052238464355 + ], + [ + "▁unofficial", + -12.924052238464355 + ], + [ + "▁Oslo", + -12.924254417419434 + ], + [ + "▁Messi", + -12.924272537231445 + ], + [ + "▁retard", + -12.924285888671875 + ], + [ + "9.1", + -12.924336433410645 + ], + [ + "▁refurbishment", + -12.92435073852539 + ], + [ + "intro", + -12.924456596374512 + ], + [ + "▁marrow", + -12.924505233764648 + ], + [ + "▁Venue", + -12.924623489379883 + ], + [ + "zilla", + -12.92469596862793 + ], + [ + "▁teammate", + -12.9247465133667 + ], + [ + "bril", + -12.924908638000488 + ], + [ + "Guard", + -12.924921989440918 + ], + [ + "▁ripple", + -12.925174713134766 + ], + [ + "▁Closing", + -12.925416946411133 + ], + [ + "almost", + -12.925433158874512 + ], + [ + "obligated", + -12.925443649291992 + ], + [ + "▁duvet", + -12.925477027893066 + ], + [ + "▁indexes", + -12.92579174041748 + ], + [ + "▁Fernando", + -12.925860404968262 + ], + [ + "Smith", + -12.925895690917969 + ], + [ + "7.3", + -12.925942420959473 + ], + [ + "▁flattering", + -12.925993919372559 + ], + [ + "▁snuggl", + -12.926013946533203 + ], + [ + "ZE", + -12.926257133483887 + ], + [ + "▁Capri", + -12.926335334777832 + ], + [ + "▁carpenter", + -12.926362037658691 + ], + [ + "annual", + -12.926366806030273 + ], + [ + "cutting", + -12.926437377929688 + ], + [ + "▁bedside", + -12.926478385925293 + ], + [ + "▁commissioning", + -12.926559448242188 + ], + [ + "▁err", + -12.926578521728516 + ], + [ + "▁envisioned", + -12.926680564880371 + ], + [ + "ritan", + -12.926698684692383 + ], + [ + "▁Tradition", + -12.926698684692383 + ], + [ + "▁horizontally", + -12.92672348022461 + ], + [ + "▁entertainer", + -12.92676830291748 + ], + [ + "од", + -12.926873207092285 + ], + [ + "▁loneliness", + -12.92694091796875 + ], + [ + "▁tendencies", + -12.92694091796875 + ], + [ + "▁sculpt", + -12.92704963684082 + ], + [ + "SHIP", + -12.927050590515137 + ], + [ + "Qaeda", + -12.927206993103027 + ], + [ + "▁Witt", + -12.927287101745605 + ], + [ + "▁billionaire", + -12.927462577819824 + ], + [ + "frequency", + -12.927614212036133 + ], + [ + "▁Stem", + -12.927620887756348 + ], + [ + "▁upbeat", + -12.92774772644043 + ], + [ + "width", + -12.927797317504883 + ], + [ + "▁diligently", + -12.927803039550781 + ], + [ + "ERE", + -12.927823066711426 + ], + [ + "▁Voyage", + -12.927862167358398 + ], + [ + "WOOD", + -12.928003311157227 + ], + [ + "jen", + -12.92811107635498 + ], + [ + "▁Therapist", + -12.92811393737793 + ], + [ + "▁peacefully", + -12.928118705749512 + ], + [ + "9.2", + -12.928160667419434 + ], + [ + "▁Classmate", + -12.92817497253418 + ], + [ + "▁Quarterly", + -12.92819595336914 + ], + [ + "▁Dive", + -12.928264617919922 + ], + [ + "schaft", + -12.928558349609375 + ], + [ + "▁Policies", + -12.92870044708252 + ], + [ + "▁Oval", + -12.928709030151367 + ], + [ + "wiping", + -12.928963661193848 + ], + [ + "▁purposeful", + -12.929078102111816 + ], + [ + "button", + -12.929181098937988 + ], + [ + "▁asparagus", + -12.929189682006836 + ], + [ + "▁thigh", + -12.929291725158691 + ], + [ + "pip", + -12.92930793762207 + ], + [ + "▁Verde", + -12.929322242736816 + ], + [ + "161", + -12.929523468017578 + ], + [ + "2-6", + -12.929551124572754 + ], + [ + "▁Column", + -12.929611206054688 + ], + [ + "▁profoundly", + -12.929727554321289 + ], + [ + "▁Hog", + -12.929743766784668 + ], + [ + "20,000", + -12.929767608642578 + ], + [ + "RET", + -12.929862976074219 + ], + [ + "▁downturn", + -12.92990493774414 + ], + [ + "▁Danielle", + -12.93012523651123 + ], + [ + "003", + -12.930349349975586 + ], + [ + "▁Barrel", + -12.930379867553711 + ], + [ + "▁scuba", + -12.930441856384277 + ], + [ + "Print", + -12.93044376373291 + ], + [ + "▁orthodontic", + -12.930524826049805 + ], + [ + "rox", + -12.930597305297852 + ], + [ + "▁throughput", + -12.930756568908691 + ], + [ + "▁haunt", + -12.930768013000488 + ], + [ + "▁OWN", + -12.93079948425293 + ], + [ + "truck", + -12.930888175964355 + ], + [ + "▁binge", + -12.930912017822266 + ], + [ + "▁retrospective", + -12.931047439575195 + ], + [ + "llett", + -12.93106746673584 + ], + [ + "LIS", + -12.931153297424316 + ], + [ + "▁eyelid", + -12.931355476379395 + ], + [ + "▁Refresh", + -12.93136978149414 + ], + [ + "average", + -12.931390762329102 + ], + [ + "▁(2002)", + -12.931391716003418 + ], + [ + "▁#6", + -12.931472778320312 + ], + [ + "▁Worksheet", + -12.931503295898438 + ], + [ + "▁Burg", + -12.931581497192383 + ], + [ + "▁verge", + -12.931689262390137 + ], + [ + "▁Midnight", + -12.931707382202148 + ], + [ + "▁Maharashtra", + -12.931777954101562 + ], + [ + "▁silo", + -12.931780815124512 + ], + [ + "▁nightclub", + -12.932034492492676 + ], + [ + "Take", + -12.932082176208496 + ], + [ + "▁chime", + -12.932221412658691 + ], + [ + "CAA", + -12.932275772094727 + ], + [ + "▁Evo", + -12.932397842407227 + ], + [ + "gins", + -12.932523727416992 + ], + [ + "▁crater", + -12.932548522949219 + ], + [ + "Epub", + -12.932673454284668 + ], + [ + "0.6", + -12.932987213134766 + ], + [ + "▁Ameri", + -12.933045387268066 + ], + [ + "stian", + -12.93309497833252 + ], + [ + "DOM", + -12.933207511901855 + ], + [ + "▁draining", + -12.933262825012207 + ], + [ + "Intro", + -12.93334674835205 + ], + [ + "teau", + -12.933408737182617 + ], + [ + "▁Corinthians", + -12.933455467224121 + ], + [ + "▁saturation", + -12.933456420898438 + ], + [ + "driver", + -12.933497428894043 + ], + [ + "▁grate", + -12.933561325073242 + ], + [ + "conference", + -12.933581352233887 + ], + [ + "3⁄4", + -12.933704376220703 + ], + [ + "▁diffusion", + -12.933870315551758 + ], + [ + "▁NPR", + -12.934089660644531 + ], + [ + "▁Katrina", + -12.93428897857666 + ], + [ + "▁marshmallow", + -12.93428897857666 + ], + [ + "▁intensely", + -12.934407234191895 + ], + [ + "vascular", + -12.934443473815918 + ], + [ + "overseeing", + -12.934507369995117 + ], + [ + "▁Output", + -12.934597969055176 + ], + [ + "▁ensue", + -12.934814453125 + ], + [ + "▁Suggest", + -12.935054779052734 + ], + [ + "▁furious", + -12.935118675231934 + ], + [ + "▁Ranking", + -12.935322761535645 + ], + [ + "171", + -12.93539047241211 + ], + [ + "▁clipping", + -12.935417175292969 + ], + [ + "▁Screw", + -12.935470581054688 + ], + [ + "Old", + -12.935580253601074 + ], + [ + "252", + -12.935667991638184 + ], + [ + "CMA", + -12.935799598693848 + ], + [ + "ordan", + -12.935829162597656 + ], + [ + "surgical", + -12.93583869934082 + ], + [ + "▁neckline", + -12.935884475708008 + ], + [ + "▁Pok", + -12.936079978942871 + ], + [ + "aceous", + -12.936213493347168 + ], + [ + "▁Nickel", + -12.936342239379883 + ], + [ + "▁purification", + -12.93656063079834 + ], + [ + "▁trump", + -12.936610221862793 + ], + [ + "▁Collaboration", + -12.936806678771973 + ], + [ + "▁profiling", + -12.936807632446289 + ], + [ + "ITION", + -12.936969757080078 + ], + [ + "720", + -12.936976432800293 + ], + [ + "▁Twelve", + -12.93697738647461 + ], + [ + "▁prosper", + -12.936984062194824 + ], + [ + "▁armour", + -12.937044143676758 + ], + [ + "▁liaison", + -12.937142372131348 + ], + [ + "▁LAW", + -12.937314987182617 + ], + [ + "▁Armenia", + -12.937430381774902 + ], + [ + "▁dissemination", + -12.937480926513672 + ], + [ + "299", + -12.93756103515625 + ], + [ + "▁Cheryl", + -12.937577247619629 + ], + [ + "▁leopard", + -12.937983512878418 + ], + [ + "▁Bolton", + -12.938101768493652 + ], + [ + "▁stub", + -12.938202857971191 + ], + [ + "▁millennia", + -12.938308715820312 + ], + [ + "▁attainable", + -12.938400268554688 + ], + [ + "▁Ribbon", + -12.938573837280273 + ], + [ + "▁sift", + -12.938660621643066 + ], + [ + "▁hoodie", + -12.938661575317383 + ], + [ + "▁TJ", + -12.93872356414795 + ], + [ + "▁aftermarket", + -12.938728332519531 + ], + [ + "▁Petit", + -12.938739776611328 + ], + [ + "illustrating", + -12.938824653625488 + ], + [ + "▁Waiting", + -12.93905258178711 + ], + [ + "▁grazing", + -12.939165115356445 + ], + [ + "▁Cathy", + -12.939226150512695 + ], + [ + "voicing", + -12.93924617767334 + ], + [ + "▁Jah", + -12.939367294311523 + ], + [ + "▁Erie", + -12.939489364624023 + ], + [ + "predicting", + -12.939562797546387 + ], + [ + "▁Closed", + -12.93958854675293 + ], + [ + "kish", + -12.939764976501465 + ], + [ + "▁pruning", + -12.939836502075195 + ], + [ + "▁Cobb", + -12.93985652923584 + ], + [ + "▁Zurich", + -12.939969062805176 + ], + [ + "icio", + -12.94011116027832 + ], + [ + "▁skipped", + -12.94025707244873 + ], + [ + "▁Basil", + -12.940328598022461 + ], + [ + "occupies", + -12.94034194946289 + ], + [ + "sounding", + -12.940403938293457 + ], + [ + "Spacious", + -12.940488815307617 + ], + [ + "▁Layout", + -12.940642356872559 + ], + [ + "▁disseminate", + -12.940679550170898 + ], + [ + "▁quartet", + -12.940680503845215 + ], + [ + "▁Yourself", + -12.940753936767578 + ], + [ + "▁Harmon", + -12.940781593322754 + ], + [ + "customary", + -12.940786361694336 + ], + [ + "▁truthful", + -12.940911293029785 + ], + [ + "▁$1.5", + -12.941059112548828 + ], + [ + "411", + -12.941062927246094 + ], + [ + "▁cleanliness", + -12.94111442565918 + ], + [ + "LIA", + -12.941145896911621 + ], + [ + "▁oppression", + -12.941184997558594 + ], + [ + "Flow", + -12.94127082824707 + ], + [ + "▁Specialty", + -12.941288948059082 + ], + [ + "Phone", + -12.94135570526123 + ], + [ + "eiro", + -12.941397666931152 + ], + [ + "▁airfare", + -12.941442489624023 + ], + [ + "▁BUY", + -12.941452026367188 + ], + [ + "Little", + -12.941484451293945 + ], + [ + "▁chuck", + -12.941507339477539 + ], + [ + "▁NASCAR", + -12.941522598266602 + ], + [ + "▁Smash", + -12.941593170166016 + ], + [ + "▁vodka", + -12.941607475280762 + ], + [ + "Right", + -12.941726684570312 + ], + [ + "study", + -12.941732406616211 + ], + [ + "▁accuse", + -12.941847801208496 + ], + [ + "appropriate", + -12.941947937011719 + ], + [ + "▁Variable", + -12.941949844360352 + ], + [ + "▁vor", + -12.942010879516602 + ], + [ + "▁Alps", + -12.942035675048828 + ], + [ + "avy", + -12.942146301269531 + ], + [ + "▁welded", + -12.942241668701172 + ], + [ + "reaching", + -12.942283630371094 + ], + [ + "▁CITY", + -12.94238567352295 + ], + [ + "▁intersect", + -12.942416191101074 + ], + [ + "▁foyer", + -12.942451477050781 + ], + [ + "▁1912", + -12.942785263061523 + ], + [ + "ARK", + -12.943078994750977 + ], + [ + "mitten", + -12.943214416503906 + ], + [ + "▁Albania", + -12.943462371826172 + ], + [ + "elude", + -12.94351577758789 + ], + [ + "▁Magnet", + -12.943573951721191 + ], + [ + "▁proofread", + -12.943655967712402 + ], + [ + "▁Respect", + -12.943662643432617 + ], + [ + "anglers", + -12.943689346313477 + ], + [ + "ebb", + -12.943695068359375 + ], + [ + "▁decimal", + -12.943889617919922 + ], + [ + "7-4", + -12.943936347961426 + ], + [ + "EAN", + -12.94394302368164 + ], + [ + "wright", + -12.944012641906738 + ], + [ + "▁skillful", + -12.944023132324219 + ], + [ + "+2", + -12.944073677062988 + ], + [ + "mask", + -12.944244384765625 + ], + [ + "▁Aircraft", + -12.944342613220215 + ], + [ + "▁orthopedic", + -12.94448184967041 + ], + [ + "▁teaser", + -12.944491386413574 + ], + [ + "▁pitfalls", + -12.944568634033203 + ], + [ + "better", + -12.944662094116211 + ], + [ + "▁Reduction", + -12.944679260253906 + ], + [ + "▁Tunnel", + -12.944732666015625 + ], + [ + "probably", + -12.944756507873535 + ], + [ + "▁Competitive", + -12.944820404052734 + ], + [ + "▁dumping", + -12.944859504699707 + ], + [ + "End", + -12.945079803466797 + ], + [ + "▁prestige", + -12.945080757141113 + ], + [ + "CERT", + -12.945115089416504 + ], + [ + "▁MasterCard", + -12.945124626159668 + ], + [ + "liquid", + -12.945167541503906 + ], + [ + "update", + -12.945428848266602 + ], + [ + "▁Steak", + -12.945491790771484 + ], + [ + "distance", + -12.94551944732666 + ], + [ + "▁posterior", + -12.94559097290039 + ], + [ + "ipher", + -12.945610046386719 + ], + [ + "dyna", + -12.94563102722168 + ], + [ + "▁watershed", + -12.945680618286133 + ], + [ + "▁Tasmania", + -12.945786476135254 + ], + [ + "▁Bahamas", + -12.946006774902344 + ], + [ + "▁Couch", + -12.946178436279297 + ], + [ + "▁CLI", + -12.946300506591797 + ], + [ + "▁angular", + -12.94644832611084 + ], + [ + "Kuala", + -12.946451187133789 + ], + [ + "uttered", + -12.946456909179688 + ], + [ + "▁epub", + -12.946571350097656 + ], + [ + "▁omitted", + -12.946619033813477 + ], + [ + "jasmin", + -12.946621894836426 + ], + [ + "proper", + -12.946682929992676 + ], + [ + "Bio", + -12.946708679199219 + ], + [ + "IMA", + -12.946808815002441 + ], + [ + "▁Waterloo", + -12.946864128112793 + ], + [ + "▁fave", + -12.946905136108398 + ], + [ + "▁completeness", + -12.94700813293457 + ], + [ + "▁Gonzalez", + -12.947110176086426 + ], + [ + "▁Wage", + -12.9472074508667 + ], + [ + "▁£50", + -12.947285652160645 + ], + [ + "currency", + -12.947319030761719 + ], + [ + "URA", + -12.947361946105957 + ], + [ + "competed", + -12.94758415222168 + ], + [ + "▁Clause", + -12.947648048400879 + ], + [ + "ло", + -12.947694778442383 + ], + [ + "luckily", + -12.947748184204102 + ], + [ + "▁toolkit", + -12.947883605957031 + ], + [ + "Under", + -12.947965621948242 + ], + [ + "▁vibrating", + -12.947965621948242 + ], + [ + "qualifies", + -12.947972297668457 + ], + [ + "USH", + -12.948118209838867 + ], + [ + "couple", + -12.948198318481445 + ], + [ + "▁fluctuate", + -12.948214530944824 + ], + [ + "▁1928", + -12.948582649230957 + ], + [ + "▁Proud", + -12.948593139648438 + ], + [ + "▁headphone", + -12.948908805847168 + ], + [ + "▁extravagant", + -12.948979377746582 + ], + [ + "▁Judaism", + -12.949234962463379 + ], + [ + "▁kitty", + -12.949237823486328 + ], + [ + "▁Journalism", + -12.949760437011719 + ], + [ + "Google", + -12.949801445007324 + ], + [ + "▁meditate", + -12.949835777282715 + ], + [ + "▁Lafayette", + -12.949915885925293 + ], + [ + "computed", + -12.94992446899414 + ], + [ + "▁radial", + -12.950098037719727 + ], + [ + "▁Botanical", + -12.950103759765625 + ], + [ + "▁Courtney", + -12.950146675109863 + ], + [ + "guan", + -12.950151443481445 + ], + [ + "▁intrigue", + -12.950174331665039 + ], + [ + "▁HY", + -12.950178146362305 + ], + [ + "▁shortened", + -12.950201034545898 + ], + [ + "Particularly", + -12.950258255004883 + ], + [ + "4-8", + -12.95032024383545 + ], + [ + "▁accompaniment", + -12.95034122467041 + ], + [ + "▁Deutsche", + -12.950559616088867 + ], + [ + "▁migrant", + -12.950563430786133 + ], + [ + "▁authenticate", + -12.95059585571289 + ], + [ + "▁Expedition", + -12.950682640075684 + ], + [ + "▁plow", + -12.950861930847168 + ], + [ + "680", + -12.950887680053711 + ], + [ + "▁lumen", + -12.95103645324707 + ], + [ + "▁offspring", + -12.951038360595703 + ], + [ + "▁Investor", + -12.951065063476562 + ], + [ + "knit", + -12.951175689697266 + ], + [ + "nami", + -12.951196670532227 + ], + [ + "▁Coaches", + -12.951318740844727 + ], + [ + "▁townhouse", + -12.951423645019531 + ], + [ + "▁Harmony", + -12.951470375061035 + ], + [ + "▁Showcase", + -12.951658248901367 + ], + [ + "Disc", + -12.9517183303833 + ], + [ + "▁Butterfly", + -12.951725959777832 + ], + [ + "▁Sultan", + -12.9520263671875 + ], + [ + "▁Arrange", + -12.952253341674805 + ], + [ + "▁externally", + -12.952322006225586 + ], + [ + "traced", + -12.95250129699707 + ], + [ + "dyed", + -12.95252799987793 + ], + [ + "▁locomotive", + -12.952558517456055 + ], + [ + "originating", + -12.95279598236084 + ], + [ + "SIA", + -12.952836036682129 + ], + [ + "quired", + -12.952851295471191 + ], + [ + "▁affirmation", + -12.952881813049316 + ], + [ + "▁Hab", + -12.952905654907227 + ], + [ + "woven", + -12.953073501586914 + ], + [ + "▁refinance", + -12.95311450958252 + ], + [ + "▁lame", + -12.953166961669922 + ], + [ + "820", + -12.953255653381348 + ], + [ + "▁eggplant", + -12.953292846679688 + ], + [ + "NCH", + -12.953350067138672 + ], + [ + "▁humanities", + -12.953352928161621 + ], + [ + "▁Simulation", + -12.953474044799805 + ], + [ + "Merc", + -12.953572273254395 + ], + [ + "▁improvise", + -12.953659057617188 + ], + [ + "▁Trouble", + -12.953668594360352 + ], + [ + "itate", + -12.95396900177002 + ], + [ + "▁Goose", + -12.953972816467285 + ], + [ + "▁carbohydrate", + -12.954019546508789 + ], + [ + "Full", + -12.9540433883667 + ], + [ + "reminding", + -12.95407772064209 + ], + [ + "▁indefinitely", + -12.954103469848633 + ], + [ + "▁paperback", + -12.9541654586792 + ], + [ + "▁goalkeeper", + -12.954190254211426 + ], + [ + "▁Lub", + -12.954208374023438 + ], + [ + "▁Organize", + -12.954238891601562 + ], + [ + "▁devastated", + -12.954437255859375 + ], + [ + "▁GMC", + -12.95448112487793 + ], + [ + "▁documentaries", + -12.954524040222168 + ], + [ + "▁Canterbury", + -12.954779624938965 + ], + [ + "▁Cen", + -12.954883575439453 + ], + [ + "▁Decide", + -12.955035209655762 + ], + [ + "▁flipped", + -12.955047607421875 + ], + [ + "▁ethnicity", + -12.955156326293945 + ], + [ + "▁seismic", + -12.955207824707031 + ], + [ + "▁restorative", + -12.955293655395508 + ], + [ + "▁Dish", + -12.955591201782227 + ], + [ + "▁Helsinki", + -12.955892562866211 + ], + [ + "▁realism", + -12.956042289733887 + ], + [ + "▁terrified", + -12.956064224243164 + ], + [ + "ayla", + -12.956414222717285 + ], + [ + "▁Jungle", + -12.956534385681152 + ], + [ + "▁Agri", + -12.956554412841797 + ], + [ + "▁NEWS", + -12.956598281860352 + ], + [ + "▁prophecy", + -12.956748962402344 + ], + [ + "▁unrealistic", + -12.956748962402344 + ], + [ + "▁gratuit", + -12.95709228515625 + ], + [ + "▁Fluid", + -12.957172393798828 + ], + [ + "▁Obtain", + -12.95725154876709 + ], + [ + "▁Edison", + -12.957271575927734 + ], + [ + "Tagged", + -12.957788467407227 + ], + [ + "▁Lund", + -12.95781421661377 + ], + [ + "south", + -12.957857131958008 + ], + [ + "8-0", + -12.958108901977539 + ], + [ + "▁Edmund", + -12.958157539367676 + ], + [ + "▁Romantic", + -12.958176612854004 + ], + [ + "▁Horror", + -12.958210945129395 + ], + [ + "crafted", + -12.958226203918457 + ], + [ + "▁intrusion", + -12.958295822143555 + ], + [ + "158", + -12.95831298828125 + ], + [ + "▁sailors", + -12.958342552185059 + ], + [ + "▁Cannabis", + -12.958556175231934 + ], + [ + "▁dungeon", + -12.958637237548828 + ], + [ + "▁Kyoto", + -12.958641052246094 + ], + [ + "▁Chow", + -12.958646774291992 + ], + [ + "embodied", + -12.95873737335205 + ], + [ + "electronic", + -12.958919525146484 + ], + [ + "▁adept", + -12.958967208862305 + ], + [ + "▁condemn", + -12.959028244018555 + ], + [ + "]]", + -12.959254264831543 + ], + [ + "vier", + -12.959421157836914 + ], + [ + "▁Interaction", + -12.959737777709961 + ], + [ + "▁importer", + -12.959830284118652 + ], + [ + "crystalline", + -12.959985733032227 + ], + [ + "▁inclination", + -12.96001148223877 + ], + [ + "Color", + -12.960135459899902 + ], + [ + "eece", + -12.960156440734863 + ], + [ + "▁spindle", + -12.960238456726074 + ], + [ + "▁foundational", + -12.960254669189453 + ], + [ + "▁corrective", + -12.960367202758789 + ], + [ + "3-5", + -12.960384368896484 + ], + [ + "345", + -12.960976600646973 + ], + [ + "▁courtroom", + -12.961121559143066 + ], + [ + "▁vigorous", + -12.961336135864258 + ], + [ + "univers", + -12.961400985717773 + ], + [ + "beam", + -12.961407661437988 + ], + [ + "▁moderation", + -12.961434364318848 + ], + [ + "▁grievance", + -12.961732864379883 + ], + [ + "Step", + -12.961738586425781 + ], + [ + "▁Cain", + -12.961800575256348 + ], + [ + "▁Acquisition", + -12.961833000183105 + ], + [ + "▁synthesize", + -12.961921691894531 + ], + [ + "▁hospice", + -12.961992263793945 + ], + [ + "▁Reich", + -12.962029457092285 + ], + [ + "▁impartial", + -12.962132453918457 + ], + [ + "Alex", + -12.962250709533691 + ], + [ + "▁mildew", + -12.9623441696167 + ], + [ + "OUS", + -12.962352752685547 + ], + [ + "▁flashes", + -12.962471008300781 + ], + [ + "▁ABOUT", + -12.962608337402344 + ], + [ + "▁abstraction", + -12.96276569366455 + ], + [ + "KER", + -12.962912559509277 + ], + [ + "▁flipping", + -12.96294116973877 + ], + [ + "▁shrub", + -12.962981224060059 + ], + [ + "▁Byron", + -12.963106155395508 + ], + [ + "medical", + -12.963193893432617 + ], + [ + "▁Maid", + -12.963194847106934 + ], + [ + "010", + -12.963199615478516 + ], + [ + "ал", + -12.963282585144043 + ], + [ + "▁1850", + -12.963299751281738 + ], + [ + "▁Toast", + -12.963396072387695 + ], + [ + "▁balconies", + -12.963543891906738 + ], + [ + "▁Churches", + -12.963708877563477 + ], + [ + "▁Peanut", + -12.96380615234375 + ], + [ + "▁nourishing", + -12.963910102844238 + ], + [ + "▁2/3", + -12.963953971862793 + ], + [ + "dhya", + -12.964062690734863 + ], + [ + "Conversely", + -12.964069366455078 + ], + [ + "▁nesting", + -12.9641752243042 + ], + [ + "▁radioactive", + -12.964251518249512 + ], + [ + "▁HDR", + -12.964557647705078 + ], + [ + "▁webcam", + -12.964852333068848 + ], + [ + "ogie", + -12.964899063110352 + ], + [ + "▁psychiatrist", + -12.965012550354004 + ], + [ + "▁Neg", + -12.965018272399902 + ], + [ + "▁discriminate", + -12.96509838104248 + ], + [ + "Publish", + -12.965104103088379 + ], + [ + "exclusive", + -12.965259552001953 + ], + [ + "▁managerial", + -12.965354919433594 + ], + [ + "▁nautical", + -12.965371131896973 + ], + [ + "deficient", + -12.965375900268555 + ], + [ + "▁Contribution", + -12.965530395507812 + ], + [ + "▁UNC", + -12.96585750579834 + ], + [ + "Decorative", + -12.965886116027832 + ], + [ + "3-7", + -12.965914726257324 + ], + [ + "▁froth", + -12.965929985046387 + ], + [ + "Org", + -12.966402053833008 + ], + [ + "▁barley", + -12.966421127319336 + ], + [ + "▁Carmen", + -12.966511726379395 + ], + [ + "▁crook", + -12.966553688049316 + ], + [ + "▁disappearance", + -12.966574668884277 + ], + [ + "grained", + -12.966581344604492 + ], + [ + "slightest", + -12.966753959655762 + ], + [ + "▁Sandwich", + -12.966781616210938 + ], + [ + "▁Loch", + -12.967138290405273 + ], + [ + "ayton", + -12.967411994934082 + ], + [ + "▁Leah", + -12.967489242553711 + ], + [ + "supplementary", + -12.967543601989746 + ], + [ + "voice", + -12.967819213867188 + ], + [ + "▁Surprise", + -12.967955589294434 + ], + [ + "honoured", + -12.967991828918457 + ], + [ + "▁Orchard", + -12.968082427978516 + ], + [ + "▁massively", + -12.968205451965332 + ], + [ + "▁criterion", + -12.968214988708496 + ], + [ + "▁Vest", + -12.968304634094238 + ], + [ + "htm", + -12.968332290649414 + ], + [ + "▁Tahoe", + -12.968388557434082 + ], + [ + "218", + -12.968409538269043 + ], + [ + "да", + -12.968412399291992 + ], + [ + "▁forfeit", + -12.968429565429688 + ], + [ + "▁rogue", + -12.968477249145508 + ], + [ + "▁Intervention", + -12.968522071838379 + ], + [ + "▁Dawson", + -12.968578338623047 + ], + [ + "▁redeemed", + -12.968653678894043 + ], + [ + "▁Hydraulic", + -12.968735694885254 + ], + [ + "▁chloride", + -12.968826293945312 + ], + [ + "cutaneous", + -12.968910217285156 + ], + [ + "ltima", + -12.968955993652344 + ], + [ + "▁Separate", + -12.96904468536377 + ], + [ + "Have", + -12.969164848327637 + ], + [ + "▁snail", + -12.969259262084961 + ], + [ + "▁probate", + -12.96929931640625 + ], + [ + "▁MIDI", + -12.969369888305664 + ], + [ + "▁rake", + -12.969372749328613 + ], + [ + "bony", + -12.96940803527832 + ], + [ + "▁Brigade", + -12.969429969787598 + ], + [ + "▁graders", + -12.969449043273926 + ], + [ + "OVA", + -12.969564437866211 + ], + [ + "neur", + -12.96969223022461 + ], + [ + "▁Nixon", + -12.969709396362305 + ], + [ + "▁levy", + -12.96977710723877 + ], + [ + "OPS", + -12.969840049743652 + ], + [ + "▁distorted", + -12.969905853271484 + ], + [ + "▁biometric", + -12.970081329345703 + ], + [ + "tooth", + -12.970192909240723 + ], + [ + "▁escaping", + -12.970212936401367 + ], + [ + "▁Behavioral", + -12.970252990722656 + ], + [ + "▁abrasive", + -12.970297813415527 + ], + [ + "Arg", + -12.970309257507324 + ], + [ + "granting", + -12.97032642364502 + ], + [ + "nitro", + -12.970396041870117 + ], + [ + "▁pecan", + -12.970504760742188 + ], + [ + "marin", + -12.970507621765137 + ], + [ + "▁Odyssey", + -12.970559120178223 + ], + [ + "derived", + -12.97058391571045 + ], + [ + "▁superintendent", + -12.970732688903809 + ], + [ + "tempered", + -12.971015930175781 + ], + [ + "LOCK", + -12.971025466918945 + ], + [ + "▁moth", + -12.97105598449707 + ], + [ + "▁Moroccan", + -12.971080780029297 + ], + [ + "▁disguise", + -12.971088409423828 + ], + [ + "APP", + -12.971090316772461 + ], + [ + "▁boycott", + -12.971203804016113 + ], + [ + "Institut", + -12.971226692199707 + ], + [ + "insky", + -12.971261978149414 + ], + [ + "▁shading", + -12.97127628326416 + ], + [ + "▁irritating", + -12.971427917480469 + ], + [ + "▁cloak", + -12.971442222595215 + ], + [ + "▁mL", + -12.971446990966797 + ], + [ + "▁unanimously", + -12.971664428710938 + ], + [ + "▁Pak", + -12.971931457519531 + ], + [ + "▁policymakers", + -12.971977233886719 + ], + [ + "REN", + -12.972044944763184 + ], + [ + "▁IPv", + -12.972081184387207 + ], + [ + "▁auditing", + -12.972142219543457 + ], + [ + "▁FedEx", + -12.972163200378418 + ], + [ + "succumb", + -12.972212791442871 + ], + [ + "5.9", + -12.972352027893066 + ], + [ + "▁SUPER", + -12.972369194030762 + ], + [ + "▁Sixth", + -12.972431182861328 + ], + [ + "ylon", + -12.972464561462402 + ], + [ + "ivism", + -12.972480773925781 + ], + [ + "▁hardened", + -12.972578048706055 + ], + [ + "▁envi", + -12.972587585449219 + ], + [ + "▁Xiaomi", + -12.972644805908203 + ], + [ + "▁discerning", + -12.972648620605469 + ], + [ + "▁perseverance", + -12.972672462463379 + ], + [ + "clip", + -12.972731590270996 + ], + [ + "▁phenotype", + -12.972733497619629 + ], + [ + "factory", + -12.973054885864258 + ], + [ + "exchanging", + -12.973162651062012 + ], + [ + "▁Listening", + -12.97326946258545 + ], + [ + "▁tame", + -12.973369598388672 + ], + [ + "heavy", + -12.97339916229248 + ], + [ + "▁Denis", + -12.973666191101074 + ], + [ + "▁Sunrise", + -12.973708152770996 + ], + [ + "collect", + -12.973730087280273 + ], + [ + "▁bunny", + -12.973733901977539 + ], + [ + "▁SERV", + -12.973740577697754 + ], + [ + "NAME", + -12.973773002624512 + ], + [ + "▁adjective", + -12.97378158569336 + ], + [ + "▁Cheng", + -12.973880767822266 + ], + [ + "SLA", + -12.97397518157959 + ], + [ + "roth", + -12.974011421203613 + ], + [ + "▁cheering", + -12.974157333374023 + ], + [ + "▁riches", + -12.97425365447998 + ], + [ + "athlete", + -12.974258422851562 + ], + [ + "▁retina", + -12.974302291870117 + ], + [ + "▁Plot", + -12.974454879760742 + ], + [ + "▁usefulness", + -12.9745454788208 + ], + [ + "▁Curve", + -12.9745512008667 + ], + [ + "▁nuisance", + -12.974564552307129 + ], + [ + "akti", + -12.974614143371582 + ], + [ + "▁Catering", + -12.974629402160645 + ], + [ + "227", + -12.974848747253418 + ], + [ + "8-9", + -12.974987030029297 + ], + [ + "▁bland", + -12.975015640258789 + ], + [ + "▁Gamb", + -12.97512435913086 + ], + [ + "▁rewrite", + -12.975142478942871 + ], + [ + "▁Nigel", + -12.975419044494629 + ], + [ + "letter", + -12.975473403930664 + ], + [ + "▁lacquer", + -12.975525856018066 + ], + [ + "▁flirt", + -12.975529670715332 + ], + [ + "MEA", + -12.975611686706543 + ], + [ + "▁Companion", + -12.97561264038086 + ], + [ + "▁Renewable", + -12.97561264038086 + ], + [ + "▁interception", + -12.975626945495605 + ], + [ + "▁BOOK", + -12.975654602050781 + ], + [ + "▁hernia", + -12.975788116455078 + ], + [ + "▁intimacy", + -12.975788116455078 + ], + [ + "▁Portsmouth", + -12.975964546203613 + ], + [ + "Pty", + -12.975970268249512 + ], + [ + "▁POST", + -12.976094245910645 + ], + [ + "▁sweating", + -12.976114273071289 + ], + [ + "▁Bermuda", + -12.976310729980469 + ], + [ + "▁ironic", + -12.976310729980469 + ], + [ + "▁GRE", + -12.976314544677734 + ], + [ + "▁Crash", + -12.97631549835205 + ], + [ + "▁conservator", + -12.976333618164062 + ], + [ + "hud", + -12.976530075073242 + ], + [ + "▁Miner", + -12.97655963897705 + ], + [ + "▁Ober", + -12.976624488830566 + ], + [ + "▁FHA", + -12.976938247680664 + ], + [ + "▁analogue", + -12.97702693939209 + ], + [ + "▁goodwill", + -12.97704029083252 + ], + [ + "Trac", + -12.977045059204102 + ], + [ + "▁Uniform", + -12.977091789245605 + ], + [ + "▁localized", + -12.977313995361328 + ], + [ + "lue", + -12.977519035339355 + ], + [ + "▁carcinoma", + -12.977622985839844 + ], + [ + "▁strategist", + -12.97762680053711 + ], + [ + "▁simplistic", + -12.977798461914062 + ], + [ + "▁Publication", + -12.977837562561035 + ], + [ + "Park", + -12.977845191955566 + ], + [ + "Loc", + -12.977917671203613 + ], + [ + "▁15-20", + -12.978031158447266 + ], + [ + "▁repel", + -12.978160858154297 + ], + [ + "CAS", + -12.978211402893066 + ], + [ + "Custom", + -12.978241920471191 + ], + [ + "▁False", + -12.978458404541016 + ], + [ + "Increased", + -12.978693008422852 + ], + [ + "▁Exeter", + -12.97878646850586 + ], + [ + "8.6", + -12.97882080078125 + ], + [ + "▁planetary", + -12.978835105895996 + ], + [ + "405", + -12.978886604309082 + ], + [ + "ار", + -12.979034423828125 + ], + [ + "▁Workplace", + -12.979212760925293 + ], + [ + "Sol", + -12.979241371154785 + ], + [ + "TRU", + -12.97924518585205 + ], + [ + "▁Wilderness", + -12.979288101196289 + ], + [ + "▁suitability", + -12.979294776916504 + ], + [ + "▁Formal", + -12.979365348815918 + ], + [ + "128", + -12.979432106018066 + ], + [ + "▁Rogue", + -12.979466438293457 + ], + [ + "ACC", + -12.979471206665039 + ], + [ + "▁Celebrity", + -12.979813575744629 + ], + [ + "Funnels", + -12.979825019836426 + ], + [ + "2-1", + -12.979925155639648 + ], + [ + "Israel", + -12.979976654052734 + ], + [ + "aggravate", + -12.979989051818848 + ], + [ + "nature", + -12.980009078979492 + ], + [ + "▁Washer", + -12.980029106140137 + ], + [ + "8.3", + -12.980055809020996 + ], + [ + "▁hillside", + -12.980066299438477 + ], + [ + "▁ottoman", + -12.980164527893066 + ], + [ + "▁testosterone", + -12.980340003967285 + ], + [ + "associated", + -12.98034954071045 + ], + [ + "▁corrupted", + -12.980409622192383 + ], + [ + "▁epilepsy", + -12.980427742004395 + ], + [ + "enlisted", + -12.980429649353027 + ], + [ + "▁Crescent", + -12.980445861816406 + ], + [ + "▁UNDER", + -12.980445861816406 + ], + [ + "▁Submitted", + -12.98049545288086 + ], + [ + "▁transmitting", + -12.980506896972656 + ], + [ + "▁hacker", + -12.980518341064453 + ], + [ + "INFO", + -12.980568885803223 + ], + [ + "▁orchid", + -12.98065185546875 + ], + [ + "budding", + -12.98067855834961 + ], + [ + "154", + -12.980799674987793 + ], + [ + "Team", + -12.980883598327637 + ], + [ + "▁constrained", + -12.980966567993164 + ], + [ + "115", + -12.981066703796387 + ], + [ + "▁PTSD", + -12.981120109558105 + ], + [ + "arni", + -12.981237411499023 + ], + [ + "MET", + -12.98130989074707 + ], + [ + "▁limitless", + -12.981367111206055 + ], + [ + "Keep", + -12.98138427734375 + ], + [ + "unforeseen", + -12.981493949890137 + ], + [ + "▁harden", + -12.981511116027832 + ], + [ + "▁Crab", + -12.98170280456543 + ], + [ + "▁Irvine", + -12.981972694396973 + ], + [ + "▁rosemary", + -12.982009887695312 + ], + [ + "Internet", + -12.982017517089844 + ], + [ + "▁Tian", + -12.982226371765137 + ], + [ + "elecommunication", + -12.98225212097168 + ], + [ + "▁Stain", + -12.982892990112305 + ], + [ + "▁SOME", + -12.982954025268555 + ], + [ + "▁Jaipur", + -12.983024597167969 + ], + [ + "▁oath", + -12.983098983764648 + ], + [ + "▁incarnation", + -12.983126640319824 + ], + [ + "▁VII", + -12.98320198059082 + ], + [ + "▁Mandarin", + -12.983593940734863 + ], + [ + "▁bustle", + -12.983640670776367 + ], + [ + "▁Walton", + -12.983678817749023 + ], + [ + "ENE", + -12.983729362487793 + ], + [ + "▁Candidate", + -12.983874320983887 + ], + [ + "▁inference", + -12.984044075012207 + ], + [ + "believe", + -12.98412799835205 + ], + [ + "winter", + -12.98414134979248 + ], + [ + "▁Citi", + -12.984174728393555 + ], + [ + "▁Birch", + -12.984260559082031 + ], + [ + "▁Hunger", + -12.984379768371582 + ], + [ + "▁awakening", + -12.984628677368164 + ], + [ + "▁1860", + -12.984938621520996 + ], + [ + "▁Passport", + -12.984975814819336 + ], + [ + "▁Qualification", + -12.985002517700195 + ], + [ + "▁inexperienced", + -12.98512077331543 + ], + [ + "▁cascade", + -12.985197067260742 + ], + [ + "▁sulfur", + -12.985278129577637 + ], + [ + "nucleotide", + -12.98544692993164 + ], + [ + "▁Chest", + -12.985526084899902 + ], + [ + "FIC", + -12.985626220703125 + ], + [ + "245", + -12.98570728302002 + ], + [ + "▁Compatible", + -12.985708236694336 + ], + [ + "Anim", + -12.985733985900879 + ], + [ + "▁reflux", + -12.985821723937988 + ], + [ + "feature", + -12.985904693603516 + ], + [ + "▁genus", + -12.985960006713867 + ], + [ + "▁doctorate", + -12.986268043518066 + ], + [ + "▁freeway", + -12.986318588256836 + ], + [ + "312", + -12.98658275604248 + ], + [ + "▁Handmade", + -12.98665714263916 + ], + [ + "▁couches", + -12.986773490905762 + ], + [ + "▁1400", + -12.986885070800781 + ], + [ + "listen", + -12.98698616027832 + ], + [ + "▁firsthand", + -12.987062454223633 + ], + [ + "Boo", + -12.987089157104492 + ], + [ + "▁pastries", + -12.987156867980957 + ], + [ + "▁STEP", + -12.987247467041016 + ], + [ + "2002", + -12.98725700378418 + ], + [ + "▁Barton", + -12.98734188079834 + ], + [ + "▁convergence", + -12.987401962280273 + ], + [ + "extra", + -12.987492561340332 + ], + [ + "default", + -12.987537384033203 + ], + [ + "▁Headquarters", + -12.987564086914062 + ], + [ + "▁DSL", + -12.987604141235352 + ], + [ + "Dream", + -12.98773193359375 + ], + [ + "▁Traveler", + -12.987777709960938 + ], + [ + "▁POP", + -12.987783432006836 + ], + [ + "▁Flynn", + -12.987836837768555 + ], + [ + "CIA", + -12.98785400390625 + ], + [ + "▁jog", + -12.98788833618164 + ], + [ + "▁temperament", + -12.988144874572754 + ], + [ + "ticket", + -12.988414764404297 + ], + [ + "▁unseen", + -12.988415718078613 + ], + [ + "▁PROVIDE", + -12.988447189331055 + ], + [ + "▁Assignment", + -12.98853588104248 + ], + [ + "164", + -12.98886775970459 + ], + [ + "▁Perez", + -12.98892879486084 + ], + [ + "▁Audience", + -12.98906135559082 + ], + [ + "▁assassination", + -12.989114761352539 + ], + [ + "▁Domino", + -12.989117622375488 + ], + [ + "▁Garmin", + -12.989253997802734 + ], + [ + "impact", + -12.989262580871582 + ], + [ + "▁troublesome", + -12.989483833312988 + ], + [ + "generated", + -12.989581108093262 + ], + [ + "▁Geoff", + -12.989611625671387 + ], + [ + "▁maiden", + -12.989679336547852 + ], + [ + "outskirts", + -12.989686012268066 + ], + [ + "▁airbags", + -12.989701271057129 + ], + [ + "▁Bosnia", + -12.989809036254883 + ], + [ + "▁disrespect", + -12.98986530303955 + ], + [ + "▁manipulated", + -12.989876747131348 + ], + [ + "▁diligent", + -12.990008354187012 + ], + [ + "▁pigeon", + -12.990046501159668 + ], + [ + "▁Perkins", + -12.990306854248047 + ], + [ + "▁Backyard", + -12.990373611450195 + ], + [ + "▁2007)", + -12.990382194519043 + ], + [ + "▁Minimal", + -12.990403175354004 + ], + [ + "▁antagonist", + -12.990572929382324 + ], + [ + "▁opp", + -12.990579605102539 + ], + [ + "▁Defendant", + -12.990750312805176 + ], + [ + "▁dat", + -12.99083137512207 + ], + [ + "▁1700", + -12.990860939025879 + ], + [ + "▁SPF", + -12.990925788879395 + ], + [ + "186", + -12.99101448059082 + ], + [ + "▁Alder", + -12.99119758605957 + ], + [ + "RENT", + -12.991294860839844 + ], + [ + "Hub", + -12.991344451904297 + ], + [ + "▁Coordinat", + -12.991398811340332 + ], + [ + "gastrointestinal", + -12.991637229919434 + ], + [ + "blind", + -12.991771697998047 + ], + [ + "▁Christchurch", + -12.991785049438477 + ], + [ + "▁renters", + -12.99181842803955 + ], + [ + "▁waive", + -12.99188232421875 + ], + [ + "▁futuristic", + -12.991991996765137 + ], + [ + "▁autoimmune", + -12.992347717285156 + ], + [ + "▁Heidi", + -12.992351531982422 + ], + [ + "outlining", + -12.992626190185547 + ], + [ + "▁Tough", + -12.992664337158203 + ], + [ + "llywood", + -12.992776870727539 + ], + [ + "inducing", + -12.992785453796387 + ], + [ + "▁10.10", + -12.992891311645508 + ], + [ + "▁skipping", + -12.992918968200684 + ], + [ + "▁counterfeit", + -12.992969512939453 + ], + [ + "▁deleting", + -12.99298095703125 + ], + [ + "▁Bharat", + -12.993171691894531 + ], + [ + "▁washable", + -12.993231773376465 + ], + [ + "rubbed", + -12.99323558807373 + ], + [ + "voir", + -12.993727684020996 + ], + [ + "lka", + -12.993733406066895 + ], + [ + "Head", + -12.993809700012207 + ], + [ + "▁Braun", + -12.99381160736084 + ], + [ + "quoting", + -12.993906021118164 + ], + [ + "▁amplitude", + -12.993947982788086 + ], + [ + "▁blocker", + -12.994011878967285 + ], + [ + "tallest", + -12.994128227233887 + ], + [ + "▁sociology", + -12.994178771972656 + ], + [ + "loma", + -12.994239807128906 + ], + [ + "107", + -12.994297981262207 + ], + [ + "Rob", + -12.99431324005127 + ], + [ + "OMA", + -12.99433708190918 + ], + [ + "▁Bluff", + -12.994474411010742 + ], + [ + "▁ozone", + -12.994560241699219 + ], + [ + "▁smear", + -12.994881629943848 + ], + [ + "RMA", + -12.994997024536133 + ], + [ + "▁Lawson", + -12.99502944946289 + ], + [ + "patriot", + -12.995210647583008 + ], + [ + "▁blockbuster", + -12.995351791381836 + ], + [ + "▁coworkers", + -12.995414733886719 + ], + [ + "▁deflect", + -12.995442390441895 + ], + [ + "ksha", + -12.995485305786133 + ], + [ + "cialis", + -12.995534896850586 + ], + [ + "▁Demon", + -12.995753288269043 + ], + [ + "▁enact", + -12.995757102966309 + ], + [ + "▁Fighting", + -12.996023178100586 + ], + [ + "▁militia", + -12.996085166931152 + ], + [ + "▁Insulation", + -12.996123313903809 + ], + [ + "▁1870", + -12.996163368225098 + ], + [ + "logging", + -12.99621295928955 + ], + [ + "▁comparatively", + -12.996236801147461 + ], + [ + "▁ensuite", + -12.996443748474121 + ], + [ + "221", + -12.996720314025879 + ], + [ + "▁Joomla", + -12.996798515319824 + ], + [ + "rok", + -12.99680233001709 + ], + [ + "▁fisheries", + -12.996810913085938 + ], + [ + "global", + -12.99697494506836 + ], + [ + "▁Macedonia", + -12.996987342834473 + ], + [ + "drug", + -12.997066497802734 + ], + [ + "▁gratis", + -12.997077941894531 + ], + [ + "ARI", + -12.997126579284668 + ], + [ + "▁Violet", + -12.997188568115234 + ], + [ + "▁shortcomings", + -12.997260093688965 + ], + [ + "▁foreground", + -12.997471809387207 + ], + [ + "▁shotgun", + -12.997572898864746 + ], + [ + "▁bridesmaid", + -12.997601509094238 + ], + [ + "ACP", + -12.997623443603516 + ], + [ + "Long", + -12.997679710388184 + ], + [ + "710", + -12.997840881347656 + ], + [ + "▁admiration", + -12.997869491577148 + ], + [ + "▁Migration", + -12.998315811157227 + ], + [ + "▁chronological", + -12.998315811157227 + ], + [ + "gnan", + -12.99832534790039 + ], + [ + "Friday", + -12.998520851135254 + ], + [ + "▁Fairfield", + -12.99854564666748 + ], + [ + "▁Literacy", + -12.998590469360352 + ], + [ + "▁Michelin", + -12.998619079589844 + ], + [ + "▁legitimacy", + -12.998763084411621 + ], + [ + "▁misery", + -12.998775482177734 + ], + [ + "sector", + -12.998793601989746 + ], + [ + "CID", + -12.998821258544922 + ], + [ + "▁Becky", + -12.999003410339355 + ], + [ + "▁exponentially", + -12.999027252197266 + ], + [ + "International", + -12.999125480651855 + ], + [ + "315", + -12.999161720275879 + ], + [ + "▁€1", + -12.999207496643066 + ], + [ + "▁GitHub", + -12.999214172363281 + ], + [ + "TORY", + -12.999319076538086 + ], + [ + "▁Heck", + -12.999341011047363 + ], + [ + "▁earnest", + -12.999378204345703 + ], + [ + "would", + -12.999402046203613 + ], + [ + "£", + -12.999452590942383 + ], + [ + "▁impactful", + -12.999571800231934 + ], + [ + "▁Jail", + -12.999574661254883 + ], + [ + "▁blooming", + -12.999597549438477 + ], + [ + "▁crow", + -12.999650955200195 + ], + [ + "▁derail", + -12.999670028686523 + ], + [ + "▁slideshow", + -12.999712944030762 + ], + [ + "▁Algeria", + -12.999759674072266 + ], + [ + "▁Kaiser", + -12.999817848205566 + ], + [ + "Veg", + -12.999822616577148 + ], + [ + "▁Assurance", + -12.99992561340332 + ], + [ + "▁1932", + -12.999942779541016 + ], + [ + "▁Meghan", + -13.000020027160645 + ], + [ + "▁Denise", + -13.000115394592285 + ], + [ + "illiard", + -13.000139236450195 + ], + [ + "vote", + -13.000375747680664 + ], + [ + "iggle", + -13.000383377075195 + ], + [ + "▁Sne", + -13.00057315826416 + ], + [ + "▁Crop", + -13.000577926635742 + ], + [ + "entra", + -13.000638008117676 + ], + [ + "wiki", + -13.000751495361328 + ], + [ + "AMS", + -13.000762939453125 + ], + [ + "anel", + -13.000783920288086 + ], + [ + "dominating", + -13.00085735321045 + ], + [ + "polymer", + -13.000883102416992 + ], + [ + "▁Dover", + -13.000996589660645 + ], + [ + "▁polyurethane", + -13.00100040435791 + ], + [ + "CAC", + -13.00124740600586 + ], + [ + "▁THERE", + -13.001561164855957 + ], + [ + "▁semifinal", + -13.00161075592041 + ], + [ + "▁Romance", + -13.001668930053711 + ], + [ + "▁MEDI", + -13.001694679260254 + ], + [ + "▁Compress", + -13.001935958862305 + ], + [ + "POS", + -13.002006530761719 + ], + [ + "stration", + -13.002155303955078 + ], + [ + "▁portrayal", + -13.00216007232666 + ], + [ + "▁berth", + -13.002163887023926 + ], + [ + "▁farewell", + -13.002195358276367 + ], + [ + "▁$24", + -13.002277374267578 + ], + [ + "▁demolished", + -13.002345085144043 + ], + [ + "▁Martial", + -13.002396583557129 + ], + [ + "pion", + -13.002484321594238 + ], + [ + "respond", + -13.002548217773438 + ], + [ + "unning", + -13.00269603729248 + ], + [ + "▁Hedge", + -13.002718925476074 + ], + [ + "▁3:30", + -13.002877235412598 + ], + [ + "▁cheesy", + -13.002885818481445 + ], + [ + "▁$80", + -13.003005027770996 + ], + [ + "▁LGBTQ", + -13.003103256225586 + ], + [ + "▁Calculator", + -13.00333309173584 + ], + [ + "Inc", + -13.003363609313965 + ], + [ + "▁hammock", + -13.003422737121582 + ], + [ + "▁contempt", + -13.003423690795898 + ], + [ + "▁aesthetically", + -13.003583908081055 + ], + [ + "▁louder", + -13.003606796264648 + ], + [ + "▁globalization", + -13.003716468811035 + ], + [ + "▁ASTM", + -13.003829002380371 + ], + [ + "Pod", + -13.003997802734375 + ], + [ + "▁Bracelet", + -13.004051208496094 + ], + [ + "▁cartilage", + -13.004051208496094 + ], + [ + "▁relocating", + -13.004054069519043 + ], + [ + "hypno", + -13.0040922164917 + ], + [ + "▁bullish", + -13.004406929016113 + ], + [ + "account", + -13.004486083984375 + ], + [ + "oplasty", + -13.004571914672852 + ], + [ + "▁Wilmington", + -13.00459098815918 + ], + [ + "во", + -13.004739761352539 + ], + [ + "▁fib", + -13.004745483398438 + ], + [ + "SAT", + -13.004905700683594 + ], + [ + "▁AMAZING", + -13.004950523376465 + ], + [ + "▁chakra", + -13.005151748657227 + ], + [ + "▁armies", + -13.00521469116211 + ], + [ + "▁Increasing", + -13.005270004272461 + ], + [ + "▁harmonious", + -13.005314826965332 + ], + [ + "idae", + -13.005512237548828 + ], + [ + "Down", + -13.005602836608887 + ], + [ + "ес", + -13.005655288696289 + ], + [ + "▁Unknown", + -13.0056734085083 + ], + [ + "▁Renault", + -13.005721092224121 + ], + [ + "▁Restore", + -13.005730628967285 + ], + [ + "▁manifold", + -13.005762100219727 + ], + [ + "▁Sophia", + -13.005804061889648 + ], + [ + "managed", + -13.005816459655762 + ], + [ + "▁Glacier", + -13.005849838256836 + ], + [ + "▁sich", + -13.006067276000977 + ], + [ + "▁nach", + -13.006120681762695 + ], + [ + "▁necessitate", + -13.006120681762695 + ], + [ + "▁tribunal", + -13.006120681762695 + ], + [ + "▁Bib", + -13.006173133850098 + ], + [ + "Observ", + -13.006214141845703 + ], + [ + "epitom", + -13.00632381439209 + ], + [ + "▁Strawberry", + -13.006660461425781 + ], + [ + "einer", + -13.006832122802734 + ], + [ + "ин", + -13.007610321044922 + ], + [ + "▁relapse", + -13.007670402526855 + ], + [ + "▁Energ", + -13.007726669311523 + ], + [ + "finish", + -13.007898330688477 + ], + [ + "▁Organis", + -13.008136749267578 + ], + [ + "▁dusk", + -13.008209228515625 + ], + [ + "VIN", + -13.008338928222656 + ], + [ + "VL", + -13.00837230682373 + ], + [ + "rece", + -13.008379936218262 + ], + [ + "▁plausible", + -13.008464813232422 + ], + [ + "▁Bund", + -13.008479118347168 + ], + [ + "▁PLAY", + -13.008489608764648 + ], + [ + "occupied", + -13.008492469787598 + ], + [ + "▁alias", + -13.008514404296875 + ], + [ + "panel", + -13.00855827331543 + ], + [ + "▁Kristen", + -13.008870124816895 + ], + [ + "6.9", + -13.008933067321777 + ], + [ + "▁stale", + -13.009078979492188 + ], + [ + "yani", + -13.009085655212402 + ], + [ + "▁Rash", + -13.009190559387207 + ], + [ + "▁Collaborative", + -13.00927734375 + ], + [ + "Los", + -13.00939655303955 + ], + [ + "▁Telegraph", + -13.009559631347656 + ], + [ + "321", + -13.00961971282959 + ], + [ + "scenes", + -13.009700775146484 + ], + [ + "▁trough", + -13.009777069091797 + ], + [ + "develop", + -13.00977897644043 + ], + [ + "agno", + -13.009960174560547 + ], + [ + "▁BEFORE", + -13.010181427001953 + ], + [ + "▁Murder", + -13.010222434997559 + ], + [ + "▁Makeup", + -13.010360717773438 + ], + [ + "estimate", + -13.010444641113281 + ], + [ + "▁Preservation", + -13.01047420501709 + ], + [ + "▁Engage", + -13.010634422302246 + ], + [ + "Wall", + -13.010652542114258 + ], + [ + "Will", + -13.010697364807129 + ], + [ + "enden", + -13.010712623596191 + ], + [ + "▁decentralized", + -13.010724067687988 + ], + [ + "▁Desire", + -13.01086711883545 + ], + [ + "▁Pandora", + -13.010906219482422 + ], + [ + "DOS", + -13.010932922363281 + ], + [ + "unsecured", + -13.01102352142334 + ], + [ + "▁biomedical", + -13.011209487915039 + ], + [ + "▁savor", + -13.011266708374023 + ], + [ + "▁Admiral", + -13.011329650878906 + ], + [ + "▁sanding", + -13.011346817016602 + ], + [ + "▁chunky", + -13.011699676513672 + ], + [ + "▁Quarry", + -13.01179313659668 + ], + [ + "925", + -13.011913299560547 + ], + [ + "▁pilgrim", + -13.012024879455566 + ], + [ + "▁Plugin", + -13.012053489685059 + ], + [ + "▁innocence", + -13.01208209991455 + ], + [ + "▁Biol", + -13.012171745300293 + ], + [ + "▁TripAdvisor", + -13.012447357177734 + ], + [ + "را", + -13.012493133544922 + ], + [ + "▁Graf", + -13.01253604888916 + ], + [ + "▁shrinking", + -13.01259708404541 + ], + [ + "▁Dashboard", + -13.012657165527344 + ], + [ + "▁nominate", + -13.012677192687988 + ], + [ + "RAS", + -13.012812614440918 + ], + [ + "▁Killer", + -13.0128755569458 + ], + [ + "▁lovingly", + -13.012959480285645 + ], + [ + "mesh", + -13.01319694519043 + ], + [ + "▁Analyze", + -13.013266563415527 + ], + [ + "arah", + -13.01347827911377 + ], + [ + "▁EMC", + -13.013553619384766 + ], + [ + "▁Qualcomm", + -13.013713836669922 + ], + [ + "▁1913", + -13.013716697692871 + ], + [ + "ginal", + -13.013723373413086 + ], + [ + "▁Bicycle", + -13.01374340057373 + ], + [ + "▁expat", + -13.01378059387207 + ], + [ + "▁seventy", + -13.013801574707031 + ], + [ + "/04/", + -13.013949394226074 + ], + [ + "▁Sofia", + -13.014019012451172 + ], + [ + "▁Vault", + -13.014117240905762 + ], + [ + "RIES", + -13.014123916625977 + ], + [ + "▁cheddar", + -13.014169692993164 + ], + [ + "February", + -13.014201164245605 + ], + [ + "▁infringe", + -13.014410018920898 + ], + [ + "▁relational", + -13.014537811279297 + ], + [ + "▁Batch", + -13.014593124389648 + ], + [ + "GAAP", + -13.014633178710938 + ], + [ + "▁presume", + -13.014644622802734 + ], + [ + "▁biopsy", + -13.014908790588379 + ], + [ + "▁Accord", + -13.014923095703125 + ], + [ + "▁fad", + -13.014994621276855 + ], + [ + "▁Comforter", + -13.01500415802002 + ], + [ + "▁elasticity", + -13.015057563781738 + ], + [ + "▁Dropbox", + -13.015077590942383 + ], + [ + "▁Happiness", + -13.015166282653809 + ], + [ + "▁Marilyn", + -13.015186309814453 + ], + [ + "▁dripping", + -13.015254020690918 + ], + [ + "nford", + -13.015426635742188 + ], + [ + "▁quinoa", + -13.015447616577148 + ], + [ + "DOWN", + -13.01564884185791 + ], + [ + "▁OPEN", + -13.015698432922363 + ], + [ + "odd", + -13.015748023986816 + ], + [ + "Only", + -13.015848159790039 + ], + [ + "2001", + -13.016046524047852 + ], + [ + "▁psyche", + -13.016298294067383 + ], + [ + "▁outrage", + -13.016386032104492 + ], + [ + "▁condensed", + -13.016439437866211 + ], + [ + "emitting", + -13.016586303710938 + ], + [ + "▁Complaint", + -13.016803741455078 + ], + [ + "▁Cuisine", + -13.016804695129395 + ], + [ + "▁untouched", + -13.016804695129395 + ], + [ + "▁responders", + -13.016939163208008 + ], + [ + "▁fermented", + -13.016985893249512 + ], + [ + "Path", + -13.017077445983887 + ], + [ + "▁Kindergarten", + -13.017168045043945 + ], + [ + "▁ruby", + -13.017372131347656 + ], + [ + "▁cradle", + -13.017539024353027 + ], + [ + "▁expend", + -13.01758861541748 + ], + [ + "▁hemisphere", + -13.017622947692871 + ], + [ + "▁uplift", + -13.017760276794434 + ], + [ + "▁Outreach", + -13.017894744873047 + ], + [ + "▁watermelon", + -13.017898559570312 + ], + [ + "▁chilling", + -13.017909049987793 + ], + [ + "▁Components", + -13.017977714538574 + ], + [ + "phosph", + -13.018026351928711 + ], + [ + "▁conductive", + -13.018061637878418 + ], + [ + "▁gearbox", + -13.018168449401855 + ], + [ + "▁marching", + -13.018328666687012 + ], + [ + "▁troubling", + -13.018352508544922 + ], + [ + "cellulose", + -13.018353462219238 + ], + [ + "gion", + -13.018353462219238 + ], + [ + "▁Rang", + -13.018362998962402 + ], + [ + "▁biologist", + -13.01839542388916 + ], + [ + "328", + -13.018404960632324 + ], + [ + "▁remodeled", + -13.018423080444336 + ], + [ + "▁imperfections", + -13.018474578857422 + ], + [ + "▁meaningless", + -13.018478393554688 + ], + [ + "▁Registrar", + -13.018534660339355 + ], + [ + "▁hath", + -13.01856803894043 + ], + [ + "▁cushioning", + -13.018594741821289 + ], + [ + "▁Wife", + -13.018777847290039 + ], + [ + "▁tsunami", + -13.018808364868164 + ], + [ + "▁Utilities", + -13.01880931854248 + ], + [ + "Possibly", + -13.018810272216797 + ], + [ + "Social", + -13.018939971923828 + ], + [ + "Other", + -13.018957138061523 + ], + [ + "▁Ceremony", + -13.018990516662598 + ], + [ + "▁stealth", + -13.019035339355469 + ], + [ + "▁screwed", + -13.019088745117188 + ], + [ + "▁£7", + -13.019140243530273 + ], + [ + "▁Upholster", + -13.019537925720215 + ], + [ + "▁Nagar", + -13.01955509185791 + ], + [ + "▁Extend", + -13.019597053527832 + ], + [ + "▁earbuds", + -13.01962947845459 + ], + [ + "▁Greenville", + -13.019708633422852 + ], + [ + "▁Aires", + -13.019855499267578 + ], + [ + "▁sucker", + -13.019866943359375 + ], + [ + "▁monopoly", + -13.019871711730957 + ], + [ + "▁Trademark", + -13.020044326782227 + ], + [ + "▁Hypo", + -13.020125389099121 + ], + [ + "▁disturb", + -13.020160675048828 + ], + [ + "><", + -13.02019214630127 + ], + [ + "understand", + -13.020404815673828 + ], + [ + "Flor", + -13.02043628692627 + ], + [ + "▁bouncing", + -13.020452499389648 + ], + [ + "CIP", + -13.020514488220215 + ], + [ + "▁councillor", + -13.020545959472656 + ], + [ + "▁crossword", + -13.020596504211426 + ], + [ + "▁retrofit", + -13.020771026611328 + ], + [ + "▁concierge", + -13.020816802978516 + ], + [ + "▁embossed", + -13.020816802978516 + ], + [ + "▁nicht", + -13.021003723144531 + ], + [ + "▁exhaustion", + -13.021010398864746 + ], + [ + "▁agitat", + -13.021240234375 + ], + [ + "PVC", + -13.021489143371582 + ], + [ + "▁psi", + -13.021522521972656 + ], + [ + "▁Nitro", + -13.021524429321289 + ], + [ + "encoded", + -13.021592140197754 + ], + [ + "sighted", + -13.021635055541992 + ], + [ + "vowed", + -13.021817207336426 + ], + [ + "▁Daw", + -13.021844863891602 + ], + [ + "ки", + -13.021899223327637 + ], + [ + "Buenos", + -13.0219144821167 + ], + [ + "▁Hammond", + -13.021986961364746 + ], + [ + "▁Jasper", + -13.022007942199707 + ], + [ + "Way", + -13.022103309631348 + ], + [ + "Global", + -13.022115707397461 + ], + [ + "opter", + -13.022351264953613 + ], + [ + "tank", + -13.022356033325195 + ], + [ + "▁synagogue", + -13.022371292114258 + ], + [ + "▁tubular", + -13.022377014160156 + ], + [ + "▁carbonate", + -13.022472381591797 + ], + [ + "▁Franchise", + -13.02255630493164 + ], + [ + "▁Miranda", + -13.022574424743652 + ], + [ + "emphasizing", + -13.022737503051758 + ], + [ + "essay", + -13.022928237915039 + ], + [ + "▁Compass", + -13.022948265075684 + ], + [ + "▁mediocre", + -13.023195266723633 + ], + [ + "▁fiddle", + -13.023245811462402 + ], + [ + "▁benign", + -13.023253440856934 + ], + [ + "▁automaker", + -13.023270606994629 + ], + [ + "▁Cargo", + -13.023382186889648 + ], + [ + "▁sterile", + -13.02340030670166 + ], + [ + "peace", + -13.023415565490723 + ], + [ + "▁improvisation", + -13.023490905761719 + ], + [ + "concept", + -13.02353286743164 + ], + [ + "▁Spear", + -13.023566246032715 + ], + [ + "nator", + -13.02365779876709 + ], + [ + "▁adhesion", + -13.02392864227295 + ], + [ + "▁Sabbath", + -13.024033546447754 + ], + [ + "▁distinctly", + -13.024038314819336 + ], + [ + "▁circum", + -13.02408504486084 + ], + [ + "▁hypothetical", + -13.0241117477417 + ], + [ + "ORA", + -13.024137496948242 + ], + [ + "invest", + -13.024247169494629 + ], + [ + "umab", + -13.024255752563477 + ], + [ + "▁Purchasing", + -13.02429485321045 + ], + [ + "perhaps", + -13.024483680725098 + ], + [ + "magnetic", + -13.024499893188477 + ], + [ + "▁Becoming", + -13.024523735046387 + ], + [ + "▁excite", + -13.024604797363281 + ], + [ + "gap", + -13.024730682373047 + ], + [ + "adapting", + -13.024739265441895 + ], + [ + "anka", + -13.024832725524902 + ], + [ + "▁USPS", + -13.024846076965332 + ], + [ + "▁stimuli", + -13.024937629699707 + ], + [ + "▁stamina", + -13.024967193603516 + ], + [ + "ALA", + -13.025003433227539 + ], + [ + "appointed", + -13.025079727172852 + ], + [ + "▁pebble", + -13.025105476379395 + ], + [ + "▁DSLR", + -13.025121688842773 + ], + [ + "Luc", + -13.02518367767334 + ], + [ + "Server", + -13.025382041931152 + ], + [ + "ecc", + -13.02540111541748 + ], + [ + "▁Hernandez", + -13.02567195892334 + ], + [ + "▁thaw", + -13.0256986618042 + ], + [ + "▁Moody", + -13.025732040405273 + ], + [ + "stria", + -13.02575397491455 + ], + [ + "▁$2,000", + -13.025839805603027 + ], + [ + "▁1:30", + -13.026103019714355 + ], + [ + "▁depreciation", + -13.026134490966797 + ], + [ + "▁crumble", + -13.026158332824707 + ], + [ + "frequent", + -13.026185035705566 + ], + [ + "▁uranium", + -13.026225090026855 + ], + [ + "SEC", + -13.026297569274902 + ], + [ + "ethylene", + -13.02658748626709 + ], + [ + "yria", + -13.026618957519531 + ], + [ + "▁(2001)", + -13.02662467956543 + ], + [ + "density", + -13.026662826538086 + ], + [ + "▁HELP", + -13.026719093322754 + ], + [ + "▁porous", + -13.026813507080078 + ], + [ + "▁PAY", + -13.02691650390625 + ], + [ + "▁rearrange", + -13.0270414352417 + ], + [ + "248", + -13.027276992797852 + ], + [ + "▁Winchester", + -13.027297973632812 + ], + [ + "▁foodie", + -13.027379989624023 + ], + [ + "▁Indy", + -13.027509689331055 + ], + [ + "▁aggregation", + -13.027693748474121 + ], + [ + "TRY", + -13.027741432189941 + ], + [ + "▁Karnataka", + -13.027786254882812 + ], + [ + "Aid", + -13.027849197387695 + ], + [ + "ldehyde", + -13.027878761291504 + ], + [ + "▁Dedicated", + -13.028154373168945 + ], + [ + "▁diode", + -13.028185844421387 + ], + [ + "▁recliner", + -13.028282165527344 + ], + [ + "▁Confederate", + -13.028338432312012 + ], + [ + "▁Defender", + -13.02841854095459 + ], + [ + "▁chatter", + -13.02845573425293 + ], + [ + "▁Inspirational", + -13.028468132019043 + ], + [ + "urry", + -13.0285062789917 + ], + [ + "ULL", + -13.028572082519531 + ], + [ + "▁MTV", + -13.02867317199707 + ], + [ + "▁intercept", + -13.028942108154297 + ], + [ + "▁Helm", + -13.029022216796875 + ], + [ + "▁unveil", + -13.029057502746582 + ], + [ + "▁Dynasty", + -13.029075622558594 + ], + [ + "custom", + -13.0291748046875 + ], + [ + "Pop", + -13.029282569885254 + ], + [ + "ми", + -13.029285430908203 + ], + [ + "▁500,000", + -13.029293060302734 + ], + [ + "▁Glaz", + -13.029417991638184 + ], + [ + "6.8", + -13.029478073120117 + ], + [ + "▁Laundry", + -13.029536247253418 + ], + [ + "▁Suppose", + -13.029641151428223 + ], + [ + "▁Laguna", + -13.029666900634766 + ], + [ + "768", + -13.02975082397461 + ], + [ + "gnac", + -13.02981948852539 + ], + [ + "▁curly", + -13.02981948852539 + ], + [ + "▁1925", + -13.029860496520996 + ], + [ + "▁bounty", + -13.029905319213867 + ], + [ + "▁sufferers", + -13.0299711227417 + ], + [ + "▁Cynthia", + -13.029996871948242 + ], + [ + "Maur", + -13.030020713806152 + ], + [ + "mentioned", + -13.030043601989746 + ], + [ + "▁Lavender", + -13.030043601989746 + ], + [ + "▁ethno", + -13.030083656311035 + ], + [ + "▁erect", + -13.030096054077148 + ], + [ + "▁missionaries", + -13.030105590820312 + ], + [ + "▁Patel", + -13.030200004577637 + ], + [ + "▁Indicator", + -13.03027629852295 + ], + [ + "▁(2000)", + -13.030292510986328 + ], + [ + "▁nig", + -13.030431747436523 + ], + [ + "Existing", + -13.030673027038574 + ], + [ + "▁HUD", + -13.030804634094238 + ], + [ + "▁Gluten", + -13.030923843383789 + ], + [ + "ан", + -13.030962944030762 + ], + [ + "uggle", + -13.030967712402344 + ], + [ + "dermal", + -13.03098201751709 + ], + [ + "Quest", + -13.03115177154541 + ], + [ + "▁converse", + -13.0311861038208 + ], + [ + "153", + -13.031346321105957 + ], + [ + "▁Scientist", + -13.031399726867676 + ], + [ + "▁motorway", + -13.031570434570312 + ], + [ + "▁poignant", + -13.031659126281738 + ], + [ + "▁Vanilla", + -13.031681060791016 + ], + [ + "▁Wheeler", + -13.031800270080566 + ], + [ + "Distinguished", + -13.031843185424805 + ], + [ + "conducive", + -13.031843185424805 + ], + [ + "▁mosquitoes", + -13.031940460205078 + ], + [ + "▁Councillor", + -13.031947135925293 + ], + [ + "▁Zap", + -13.031996726989746 + ], + [ + "▁martyr", + -13.032036781311035 + ], + [ + "▁cafeteria", + -13.03221321105957 + ], + [ + "▁Puzzle", + -13.032248497009277 + ], + [ + "▁tipping", + -13.032296180725098 + ], + [ + "▁thief", + -13.032306671142578 + ], + [ + "▁provoke", + -13.032381057739258 + ], + [ + "▁Zinc", + -13.032427787780762 + ], + [ + "▁Brenda", + -13.032501220703125 + ], + [ + "▁Aquarium", + -13.032631874084473 + ], + [ + "▁daycare", + -13.032666206359863 + ], + [ + "peer", + -13.032838821411133 + ], + [ + "▁Crush", + -13.032917022705078 + ], + [ + "▁Lindsey", + -13.033138275146484 + ], + [ + "▁GBP", + -13.033169746398926 + ], + [ + "chte", + -13.033246994018555 + ], + [ + "▁Comfortable", + -13.03330135345459 + ], + [ + "▁atheist", + -13.03339958190918 + ], + [ + "▁Limo", + -13.033804893493652 + ], + [ + "▁Kiwi", + -13.033899307250977 + ], + [ + "▁bipolar", + -13.033916473388672 + ], + [ + "▁Barrier", + -13.033929824829102 + ], + [ + "▁allege", + -13.033967018127441 + ], + [ + "▁Lew", + -13.034042358398438 + ], + [ + "RATE", + -13.034049034118652 + ], + [ + "OTE", + -13.034065246582031 + ], + [ + "▁novelist", + -13.034132957458496 + ], + [ + "▁Fletcher", + -13.03415584564209 + ], + [ + "▁Resist", + -13.034332275390625 + ], + [ + "INCLUDING", + -13.03443431854248 + ], + [ + "▁Farr", + -13.034443855285645 + ], + [ + "▁Curious", + -13.034455299377441 + ], + [ + "ovarian", + -13.0344877243042 + ], + [ + ":10.10", + -13.034516334533691 + ], + [ + "▁devise", + -13.034621238708496 + ], + [ + "▁Distributor", + -13.034805297851562 + ], + [ + "▁york", + -13.034821510314941 + ], + [ + "▁Responsibility", + -13.034897804260254 + ], + [ + "EGA", + -13.034907341003418 + ], + [ + "172", + -13.034950256347656 + ], + [ + "▁Tissue", + -13.035049438476562 + ], + [ + "135", + -13.035107612609863 + ], + [ + "▁Everest", + -13.035144805908203 + ], + [ + "▁dependencies", + -13.035175323486328 + ], + [ + "otropic", + -13.035320281982422 + ], + [ + "VN", + -13.035435676574707 + ], + [ + "▁Digest", + -13.03564453125 + ], + [ + "▁descending", + -13.035676002502441 + ], + [ + "▁expo", + -13.03591251373291 + ], + [ + "▁kiln", + -13.036090850830078 + ], + [ + "▁Bergen", + -13.03613567352295 + ], + [ + "▁Substance", + -13.0361967086792 + ], + [ + "steel", + -13.036226272583008 + ], + [ + "enham", + -13.036300659179688 + ], + [ + "▁Fancy", + -13.036458015441895 + ], + [ + "▁forklift", + -13.036514282226562 + ], + [ + "▁Emmanuel", + -13.036660194396973 + ], + [ + "▁unrest", + -13.036785125732422 + ], + [ + "▁Agencies", + -13.036905288696289 + ], + [ + "▁Lumpur", + -13.036906242370605 + ], + [ + "▁Alfa", + -13.037104606628418 + ], + [ + "▁indictment", + -13.037137985229492 + ], + [ + "Frequently", + -13.037338256835938 + ], + [ + "▁shattered", + -13.037520408630371 + ], + [ + "thri", + -13.0375337600708 + ], + [ + "▁Tender", + -13.037565231323242 + ], + [ + "▁magician", + -13.037566184997559 + ], + [ + "single", + -13.03757095336914 + ], + [ + "▁circulate", + -13.037580490112305 + ], + [ + "largest", + -13.037581443786621 + ], + [ + "▁stationery", + -13.037640571594238 + ], + [ + "▁unbeatable", + -13.037775039672852 + ], + [ + "▁Feast", + -13.038029670715332 + ], + [ + "▁stent", + -13.03809642791748 + ], + [ + "community", + -13.038127899169922 + ], + [ + "▁Delight", + -13.038146018981934 + ], + [ + "▁physique", + -13.03814697265625 + ], + [ + "Roman", + -13.038201332092285 + ], + [ + "▁Alexis", + -13.038225173950195 + ], + [ + "▁unnoticed", + -13.038239479064941 + ], + [ + "dhering", + -13.038248062133789 + ], + [ + "▁Textile", + -13.038515090942383 + ], + [ + "▁responsibly", + -13.038518905639648 + ], + [ + "▁ridiculously", + -13.038522720336914 + ], + [ + "sweetened", + -13.038528442382812 + ], + [ + "▁liberation", + -13.038536071777344 + ], + [ + "▁petitioner", + -13.038633346557617 + ], + [ + "▁airborne", + -13.038772583007812 + ], + [ + "▁Exploration", + -13.038798332214355 + ], + [ + "▁sexually", + -13.038804054260254 + ], + [ + "▁Valle", + -13.038833618164062 + ], + [ + "GAN", + -13.038881301879883 + ], + [ + "▁Grammar", + -13.0388822555542 + ], + [ + "▁memorize", + -13.038904190063477 + ], + [ + "▁clarified", + -13.038922309875488 + ], + [ + "3000", + -13.038979530334473 + ], + [ + "▁Geography", + -13.039152145385742 + ], + [ + "blatant", + -13.03921127319336 + ], + [ + "▁gyr", + -13.039212226867676 + ], + [ + "▁Pell", + -13.039264678955078 + ], + [ + "▁Otto", + -13.039403915405273 + ], + [ + "▁commandment", + -13.039475440979004 + ], + [ + "audio", + -13.03961181640625 + ], + [ + "▁Payday", + -13.039756774902344 + ], + [ + "▁Kip", + -13.039772033691406 + ], + [ + "ordained", + -13.039825439453125 + ], + [ + "▁nucleus", + -13.040007591247559 + ], + [ + "▁Token", + -13.040055274963379 + ], + [ + "▁Invoice", + -13.040070533752441 + ], + [ + "▁skateboard", + -13.040220260620117 + ], + [ + "▁fortress", + -13.040305137634277 + ], + [ + "▁Shaun", + -13.040318489074707 + ], + [ + "▁lyric", + -13.040412902832031 + ], + [ + "▁Mead", + -13.04050350189209 + ], + [ + "▁anticipating", + -13.04065990447998 + ], + [ + "FUL", + -13.04067325592041 + ], + [ + "differing", + -13.040709495544434 + ], + [ + "▁Surgical", + -13.040709495544434 + ], + [ + "▁Namibia", + -13.040755271911621 + ], + [ + "formative", + -13.040766716003418 + ], + [ + "▁cortex", + -13.040799140930176 + ], + [ + "6-9", + -13.04092025756836 + ], + [ + "▁foreseeable", + -13.041003227233887 + ], + [ + "Bill", + -13.041007041931152 + ], + [ + "▁alpine", + -13.041029930114746 + ], + [ + "▁Pharmaco", + -13.041275024414062 + ], + [ + "▁Schl", + -13.041387557983398 + ], + [ + "Script", + -13.04139232635498 + ], + [ + "▁Survivor", + -13.041406631469727 + ], + [ + "▁cyst", + -13.041566848754883 + ], + [ + "MAC", + -13.04159164428711 + ], + [ + "▁Pip", + -13.041662216186523 + ], + [ + "▁Savage", + -13.041762351989746 + ], + [ + "5000", + -13.041960716247559 + ], + [ + "Change", + -13.041973114013672 + ], + [ + "ishment", + -13.042009353637695 + ], + [ + "311", + -13.042158126831055 + ], + [ + "amplify", + -13.042302131652832 + ], + [ + "Diff", + -13.042315483093262 + ], + [ + "migrating", + -13.042346954345703 + ], + [ + "Acc", + -13.042433738708496 + ], + [ + "▁mRNA", + -13.042479515075684 + ], + [ + "▁Circus", + -13.042539596557617 + ], + [ + "▁Psychological", + -13.042826652526855 + ], + [ + "shutting", + -13.042922019958496 + ], + [ + "cada", + -13.042976379394531 + ], + [ + "▁melodic", + -13.043012619018555 + ], + [ + "▁Vijay", + -13.043058395385742 + ], + [ + "▁1927", + -13.043071746826172 + ], + [ + "▁Shuttle", + -13.043140411376953 + ], + [ + "BUSINESS", + -13.043180465698242 + ], + [ + "barred", + -13.043265342712402 + ], + [ + "▁Gavin", + -13.04345417022705 + ], + [ + "▁Fiat", + -13.043543815612793 + ], + [ + "▁Lung", + -13.043614387512207 + ], + [ + "▁501(", + -13.043692588806152 + ], + [ + "enk", + -13.04389762878418 + ], + [ + "vested", + -13.04391860961914 + ], + [ + "▁bobb", + -13.044330596923828 + ], + [ + "870", + -13.044426918029785 + ], + [ + "▁Meter", + -13.044465065002441 + ], + [ + "▁YORK", + -13.044490814208984 + ], + [ + "▁brilliance", + -13.044583320617676 + ], + [ + "poor", + -13.04470443725586 + ], + [ + "▁Width", + -13.044790267944336 + ], + [ + "ryan", + -13.044808387756348 + ], + [ + "▁emblem", + -13.044889450073242 + ], + [ + "▁Nielsen", + -13.044962882995605 + ], + [ + "▁silently", + -13.045003890991211 + ], + [ + "▁favourable", + -13.045040130615234 + ], + [ + "character", + -13.045111656188965 + ], + [ + "▁distracting", + -13.045194625854492 + ], + [ + "▁anonymity", + -13.045239448547363 + ], + [ + "▁provisional", + -13.04538631439209 + ], + [ + "uvi", + -13.045448303222656 + ], + [ + "▁arbor", + -13.045764923095703 + ], + [ + "▁waterways", + -13.045841217041016 + ], + [ + "▁wrinkle", + -13.045845985412598 + ], + [ + "gawa", + -13.04588508605957 + ], + [ + "▁Kensington", + -13.045990943908691 + ], + [ + "▁goalie", + -13.046004295349121 + ], + [ + "▁Lighthouse", + -13.046144485473633 + ], + [ + "▁hormonal", + -13.046269416809082 + ], + [ + "▁behavioural", + -13.046283721923828 + ], + [ + "STAT", + -13.046634674072266 + ], + [ + "font", + -13.046690940856934 + ], + [ + "▁columnist", + -13.046944618225098 + ], + [ + "▁prote", + -13.046984672546387 + ], + [ + "▁Integrity", + -13.047113418579102 + ], + [ + "▁McL", + -13.047168731689453 + ], + [ + "▁optimise", + -13.047186851501465 + ], + [ + "▁Monterey", + -13.047213554382324 + ], + [ + "9.00", + -13.047348022460938 + ], + [ + "intensive", + -13.047490119934082 + ], + [ + "▁flatter", + -13.047651290893555 + ], + [ + "▁depressing", + -13.047677993774414 + ], + [ + "created", + -13.047725677490234 + ], + [ + "▁LIKE", + -13.047743797302246 + ], + [ + "▁prominence", + -13.047863960266113 + ], + [ + "hotel", + -13.048029899597168 + ], + [ + "▁Tooth", + -13.048103332519531 + ], + [ + "Cast", + -13.048169136047363 + ], + [ + "facebook", + -13.048211097717285 + ], + [ + "▁Gravity", + -13.048239707946777 + ], + [ + "sanctioned", + -13.048373222351074 + ], + [ + "▁Rafael", + -13.048528671264648 + ], + [ + "▁aches", + -13.048580169677734 + ], + [ + "▁Guidance", + -13.048615455627441 + ], + [ + "▁bristle", + -13.048615455627441 + ], + [ + "▁Gloria", + -13.048698425292969 + ], + [ + "▁toiletries", + -13.048834800720215 + ], + [ + "particularly", + -13.048861503601074 + ], + [ + "▁SPECIAL", + -13.048991203308105 + ], + [ + "▁Ecology", + -13.049285888671875 + ], + [ + "IBLE", + -13.049360275268555 + ], + [ + "▁Jacques", + -13.049369812011719 + ], + [ + "ол", + -13.049402236938477 + ], + [ + "departing", + -13.049666404724121 + ], + [ + "▁contingency", + -13.04974365234375 + ], + [ + "proactively", + -13.049750328063965 + ], + [ + "▁forestry", + -13.04977035522461 + ], + [ + "opus", + -13.04995346069336 + ], + [ + "▁Judith", + -13.050026893615723 + ], + [ + "▁slug", + -13.050046920776367 + ], + [ + "▁Almond", + -13.050089836120605 + ], + [ + "▁Participation", + -13.05012035369873 + ], + [ + "DVD", + -13.050121307373047 + ], + [ + "▁prune", + -13.050188064575195 + ], + [ + "▁wiper", + -13.050256729125977 + ], + [ + "zoo", + -13.050336837768555 + ], + [ + "erte", + -13.050445556640625 + ], + [ + "▁mantle", + -13.0504789352417 + ], + [ + "▁Bunny", + -13.050556182861328 + ], + [ + "▁Celsius", + -13.050590515136719 + ], + [ + "▁Brendan", + -13.050666809082031 + ], + [ + "▁Historically", + -13.050699234008789 + ], + [ + "library", + -13.050797462463379 + ], + [ + "▁Siemens", + -13.050878524780273 + ], + [ + "▁Rau", + -13.050890922546387 + ], + [ + "▁Toshiba", + -13.051061630249023 + ], + [ + "▁concussion", + -13.051061630249023 + ], + [ + "LIT", + -13.051131248474121 + ], + [ + "UH", + -13.051191329956055 + ], + [ + "▁rhythmic", + -13.05126953125 + ], + [ + "▁pierce", + -13.051339149475098 + ], + [ + "▁Sheikh", + -13.051526069641113 + ], + [ + "7-6", + -13.051609992980957 + ], + [ + "▁BLACK", + -13.051642417907715 + ], + [ + "▁disclaimer", + -13.051695823669434 + ], + [ + "HAM", + -13.051708221435547 + ], + [ + "▁hostage", + -13.051770210266113 + ], + [ + "Canada", + -13.051803588867188 + ], + [ + "▁potty", + -13.051816940307617 + ], + [ + "▁Sonoma", + -13.051892280578613 + ], + [ + "ergi", + -13.051900863647461 + ], + [ + "negative", + -13.051976203918457 + ], + [ + "▁Boca", + -13.051985740661621 + ], + [ + "▁Fitzgerald", + -13.052003860473633 + ], + [ + "▁Fog", + -13.052016258239746 + ], + [ + "▁Burning", + -13.052043914794922 + ], + [ + "kWh", + -13.05207347869873 + ], + [ + "RAIN", + -13.052085876464844 + ], + [ + "▁FOX", + -13.052431106567383 + ], + [ + "▁Derma", + -13.052665710449219 + ], + [ + "▁textual", + -13.052674293518066 + ], + [ + "▁spectral", + -13.052701950073242 + ], + [ + "▁fastening", + -13.052760124206543 + ], + [ + "▁strut", + -13.052886962890625 + ], + [ + "lok", + -13.052891731262207 + ], + [ + "arching", + -13.052895545959473 + ], + [ + "▁Deadline", + -13.052943229675293 + ], + [ + "▁Iris", + -13.053013801574707 + ], + [ + "▁smack", + -13.05302619934082 + ], + [ + "movie", + -13.05313491821289 + ], + [ + "▁Greatest", + -13.05317497253418 + ], + [ + "Surprisingly", + -13.053324699401855 + ], + [ + "biographical", + -13.053422927856445 + ], + [ + "▁irresistible", + -13.053607940673828 + ], + [ + "therapist", + -13.053666114807129 + ], + [ + "▁Costco", + -13.053742408752441 + ], + [ + "▁José", + -13.05382251739502 + ], + [ + "▁constellation", + -13.053985595703125 + ], + [ + "▁Speedway", + -13.054038047790527 + ], + [ + "▁MPG", + -13.054059028625488 + ], + [ + "TLE", + -13.054143905639648 + ], + [ + "▁veto", + -13.054230690002441 + ], + [ + "▁farmland", + -13.054540634155273 + ], + [ + "625", + -13.05454158782959 + ], + [ + "▁sapphire", + -13.054553031921387 + ], + [ + "▁EOS", + -13.054561614990234 + ], + [ + "▁shedding", + -13.054573059082031 + ], + [ + "▁Constitutional", + -13.054883003234863 + ], + [ + "еѕ", + -13.055022239685059 + ], + [ + "▁instantaneous", + -13.055025100708008 + ], + [ + "▁stun", + -13.055195808410645 + ], + [ + "▁evergreen", + -13.05536937713623 + ], + [ + "descended", + -13.05542278289795 + ], + [ + "▁Observatory", + -13.055498123168945 + ], + [ + "▁mingle", + -13.055500030517578 + ], + [ + "▁panorama", + -13.055729866027832 + ], + [ + "optic", + -13.055824279785156 + ], + [ + "▁Conservator", + -13.055877685546875 + ], + [ + "▁Mango", + -13.055961608886719 + ], + [ + "980", + -13.055977821350098 + ], + [ + "285", + -13.056022644042969 + ], + [ + "▁encrypt", + -13.056065559387207 + ], + [ + "imagine", + -13.056170463562012 + ], + [ + "haul", + -13.056198120117188 + ], + [ + "▁limousine", + -13.056255340576172 + ], + [ + "/01/", + -13.056288719177246 + ], + [ + "810", + -13.056302070617676 + ], + [ + "▁heavyweight", + -13.056355476379395 + ], + [ + "▁Stereo", + -13.056408882141113 + ], + [ + "esteemed", + -13.056486129760742 + ], + [ + "▁Toledo", + -13.05656623840332 + ], + [ + "concluding", + -13.056633949279785 + ], + [ + "▁Detection", + -13.056634902954102 + ], + [ + "7-5", + -13.056658744812012 + ], + [ + "illard", + -13.056680679321289 + ], + [ + "president", + -13.056693077087402 + ], + [ + "▁glam", + -13.056809425354004 + ], + [ + "▁anthology", + -13.0569486618042 + ], + [ + "kyl", + -13.057148933410645 + ], + [ + "▁piercing", + -13.057318687438965 + ], + [ + "▁postponed", + -13.057367324829102 + ], + [ + "▁Philly", + -13.057538986206055 + ], + [ + "▁Schul", + -13.057608604431152 + ], + [ + "▁Fond", + -13.057631492614746 + ], + [ + "attributable", + -13.057676315307617 + ], + [ + "▁Folder", + -13.05774974822998 + ], + [ + "▁1100", + -13.057818412780762 + ], + [ + "▁ledger", + -13.057833671569824 + ], + [ + "▁Vacuum", + -13.057866096496582 + ], + [ + "▁Impress", + -13.058127403259277 + ], + [ + "▁Piper", + -13.058148384094238 + ], + [ + "▁Divorce", + -13.058151245117188 + ], + [ + "▁adidas", + -13.05815315246582 + ], + [ + "▁Hazard", + -13.058246612548828 + ], + [ + "▁discreet", + -13.058372497558594 + ], + [ + "enthal", + -13.05842399597168 + ], + [ + "▁Laugh", + -13.058465957641602 + ], + [ + "Spring", + -13.058475494384766 + ], + [ + "▁misunderstood", + -13.058910369873047 + ], + [ + "▁Nope", + -13.058966636657715 + ], + [ + "clinical", + -13.059110641479492 + ], + [ + "▁Organizer", + -13.059136390686035 + ], + [ + "▁clump", + -13.059282302856445 + ], + [ + "strategi", + -13.059285163879395 + ], + [ + "▁SYSTEM", + -13.059289932250977 + ], + [ + "7.9", + -13.05947494506836 + ], + [ + "▁Coke", + -13.059514045715332 + ], + [ + "▁embodie", + -13.059566497802734 + ], + [ + "▁Hoop", + -13.0596284866333 + ], + [ + "cyclic", + -13.05965518951416 + ], + [ + "coach", + -13.059700965881348 + ], + [ + "▁adjunct", + -13.059797286987305 + ], + [ + "▁AVAILABLE", + -13.059860229492188 + ], + [ + "▁$99", + -13.060019493103027 + ], + [ + "▁thyme", + -13.06002426147461 + ], + [ + "8.9", + -13.060073852539062 + ], + [ + "▁Jakarta", + -13.060240745544434 + ], + [ + "LIST", + -13.060376167297363 + ], + [ + "▁Bedding", + -13.060503005981445 + ], + [ + "730", + -13.06051254272461 + ], + [ + "▁speculate", + -13.0606107711792 + ], + [ + "▁Esther", + -13.060673713684082 + ], + [ + "▁Held", + -13.060746192932129 + ], + [ + "▁Snyder", + -13.060811042785645 + ], + [ + "hammer", + -13.06082820892334 + ], + [ + "▁fiery", + -13.060907363891602 + ], + [ + "expression", + -13.060955047607422 + ], + [ + "BASE", + -13.060995101928711 + ], + [ + "▁WORLD", + -13.06109619140625 + ], + [ + "▁Payne", + -13.061107635498047 + ], + [ + "▁Freddie", + -13.06121826171875 + ], + [ + "213", + -13.061513900756836 + ], + [ + "▁pretending", + -13.061566352844238 + ], + [ + "duly", + -13.061838150024414 + ], + [ + "brewed", + -13.061933517456055 + ], + [ + "241", + -13.0620756149292 + ], + [ + "▁Bravo", + -13.062088012695312 + ], + [ + "utra", + -13.062088966369629 + ], + [ + "REF", + -13.062113761901855 + ], + [ + "▁Pablo", + -13.06213665008545 + ], + [ + "▁modulation", + -13.062232971191406 + ], + [ + "▁1931", + -13.062554359436035 + ], + [ + "▁Generate", + -13.062570571899414 + ], + [ + "▁Regent", + -13.062811851501465 + ], + [ + "▁Completely", + -13.062854766845703 + ], + [ + "admitting", + -13.062928199768066 + ], + [ + "▁Cushion", + -13.063002586364746 + ], + [ + "▁masonry", + -13.063097953796387 + ], + [ + "Subsequently", + -13.06319522857666 + ], + [ + "focussed", + -13.063329696655273 + ], + [ + "Nov", + -13.06335735321045 + ], + [ + "▁Medieval", + -13.063383102416992 + ], + [ + "Last", + -13.063384056091309 + ], + [ + "Eye", + -13.063478469848633 + ], + [ + "▁apologies", + -13.063572883605957 + ], + [ + "▁Livingston", + -13.063794136047363 + ], + [ + "▁Feather", + -13.063855171203613 + ], + [ + "▁subsidy", + -13.063858985900879 + ], + [ + "▁Citation", + -13.063920974731445 + ], + [ + "▁Schwartz", + -13.06404972076416 + ], + [ + "▁Faucet", + -13.06406307220459 + ], + [ + "Bri", + -13.06418228149414 + ], + [ + "▁Forty", + -13.064298629760742 + ], + [ + "UCK", + -13.06460952758789 + ], + [ + "9.6", + -13.064712524414062 + ], + [ + "236", + -13.064753532409668 + ], + [ + "prehensi", + -13.064762115478516 + ], + [ + "▁3/4\"", + -13.064777374267578 + ], + [ + "▁constituency", + -13.065099716186523 + ], + [ + "▁duplex", + -13.065099716186523 + ], + [ + "▁YMCA", + -13.06519603729248 + ], + [ + "▁Bullet", + -13.06540584564209 + ], + [ + "anton", + -13.065436363220215 + ], + [ + "▁Substitution", + -13.065618515014648 + ], + [ + "Because", + -13.066027641296387 + ], + [ + "▁1926", + -13.06605052947998 + ], + [ + "nola", + -13.066122055053711 + ], + [ + "▁shady", + -13.066168785095215 + ], + [ + "▁methane", + -13.06617259979248 + ], + [ + "▁crowdfunding", + -13.06624698638916 + ], + [ + "▁Rak", + -13.066259384155273 + ], + [ + "premise", + -13.066377639770508 + ], + [ + "raging", + -13.06641960144043 + ], + [ + "▁Freight", + -13.066577911376953 + ], + [ + "▁irrational", + -13.066629409790039 + ], + [ + "▁Glow", + -13.06663990020752 + ], + [ + "▁genocide", + -13.066725730895996 + ], + [ + "▁genealogy", + -13.066728591918945 + ], + [ + "western", + -13.066760063171387 + ], + [ + "▁cavities", + -13.066771507263184 + ], + [ + "▁stabilization", + -13.066821098327637 + ], + [ + "Presented", + -13.066834449768066 + ], + [ + "▁mascara", + -13.066916465759277 + ], + [ + "▁Rolex", + -13.066990852355957 + ], + [ + "▁Honolulu", + -13.067203521728516 + ], + [ + "▁tapered", + -13.067331314086914 + ], + [ + "▁Boise", + -13.067541122436523 + ], + [ + "▁celeb", + -13.067628860473633 + ], + [ + "▁loudly", + -13.067635536193848 + ], + [ + "women", + -13.067680358886719 + ], + [ + "▁Hyatt", + -13.067684173583984 + ], + [ + "▁easing", + -13.06782341003418 + ], + [ + "Image", + -13.067914009094238 + ], + [ + "▁abbreviation", + -13.068065643310547 + ], + [ + "efficiency", + -13.068073272705078 + ], + [ + "▁detract", + -13.068225860595703 + ], + [ + "▁Fake", + -13.068296432495117 + ], + [ + "▁coriander", + -13.068353652954102 + ], + [ + "ikh", + -13.068359375 + ], + [ + "detect", + -13.068483352661133 + ], + [ + "▁Merit", + -13.068739891052246 + ], + [ + "▁splint", + -13.068833351135254 + ], + [ + "▁Trinidad", + -13.068928718566895 + ], + [ + "OLE", + -13.068962097167969 + ], + [ + "▁breweries", + -13.069014549255371 + ], + [ + "▁Angus", + -13.069046974182129 + ], + [ + "renowned", + -13.069085121154785 + ], + [ + "▁Zack", + -13.069189071655273 + ], + [ + "▁Twilight", + -13.069408416748047 + ], + [ + "▁flax", + -13.069518089294434 + ], + [ + "▁freebie", + -13.069609642028809 + ], + [ + "object", + -13.069653511047363 + ], + [ + "▁RAW", + -13.0700101852417 + ], + [ + "▁Courtesy", + -13.070082664489746 + ], + [ + "▁Lebanese", + -13.070271492004395 + ], + [ + "▁immaculate", + -13.070271492004395 + ], + [ + "▁CALL", + -13.070296287536621 + ], + [ + "▁underwear", + -13.070358276367188 + ], + [ + "breast", + -13.070565223693848 + ], + [ + "anchored", + -13.070625305175781 + ], + [ + "246", + -13.07063102722168 + ], + [ + "9.9", + -13.070637702941895 + ], + [ + "▁varsity", + -13.07075309753418 + ], + [ + "▁Virus", + -13.070757865905762 + ], + [ + "▁snorkeling", + -13.070976257324219 + ], + [ + "▁Construct", + -13.07119083404541 + ], + [ + "choice", + -13.071246147155762 + ], + [ + "▁Nairobi", + -13.07142448425293 + ], + [ + "306", + -13.071544647216797 + ], + [ + "▁Cascade", + -13.071557998657227 + ], + [ + "9.4", + -13.071660041809082 + ], + [ + "▁puncture", + -13.071714401245117 + ], + [ + "▁Hanging", + -13.071761131286621 + ], + [ + "relieving", + -13.071920394897461 + ], + [ + "▁Broadcast", + -13.071925163269043 + ], + [ + "▁Species", + -13.071928977966309 + ], + [ + "allah", + -13.07199764251709 + ], + [ + "184", + -13.072007179260254 + ], + [ + "editor", + -13.072047233581543 + ], + [ + "▁Boxes", + -13.072154998779297 + ], + [ + "▁Nolan", + -13.07218074798584 + ], + [ + "▁inhabited", + -13.072285652160645 + ], + [ + "▁reversible", + -13.072290420532227 + ], + [ + "▁craftsmen", + -13.072317123413086 + ], + [ + "▁Electricity", + -13.072351455688477 + ], + [ + "▁astronomy", + -13.07248306274414 + ], + [ + "▁follicle", + -13.072771072387695 + ], + [ + "quist", + -13.072813034057617 + ], + [ + "▁Preserve", + -13.072818756103516 + ], + [ + "▁GTA", + -13.072867393493652 + ], + [ + "▁PRICE", + -13.072872161865234 + ], + [ + "AHA", + -13.072940826416016 + ], + [ + "▁procession", + -13.073216438293457 + ], + [ + "Wire", + -13.07328987121582 + ], + [ + "eldest", + -13.073349952697754 + ], + [ + "▁Miz", + -13.073406219482422 + ], + [ + "idyllic", + -13.073637962341309 + ], + [ + "oggle", + -13.073694229125977 + ], + [ + "▁OECD", + -13.073737144470215 + ], + [ + "▁peril", + -13.073827743530273 + ], + [ + "Bay", + -13.073925971984863 + ], + [ + "represented", + -13.073929786682129 + ], + [ + "▁Vanessa", + -13.073960304260254 + ], + [ + "▁reminisc", + -13.07411003112793 + ], + [ + "sprawling", + -13.074139595031738 + ], + [ + "▁SNP", + -13.074247360229492 + ], + [ + "▁DOWNLOAD", + -13.074409484863281 + ], + [ + "nabi", + -13.074460983276367 + ], + [ + "▁unreliable", + -13.074602127075195 + ], + [ + "▁subordinate", + -13.074639320373535 + ], + [ + "asserted", + -13.074847221374512 + ], + [ + "▁Facial", + -13.075072288513184 + ], + [ + "▁prominently", + -13.075152397155762 + ], + [ + "▁Cocktail", + -13.075181007385254 + ], + [ + "▁Hanoi", + -13.075319290161133 + ], + [ + "▁halves", + -13.075860023498535 + ], + [ + "▁dvd", + -13.075904846191406 + ], + [ + "▁peasant", + -13.075935363769531 + ], + [ + "601", + -13.076066017150879 + ], + [ + "ambogia", + -13.076166152954102 + ], + [ + "▁Shopify", + -13.076244354248047 + ], + [ + "Matt", + -13.076437950134277 + ], + [ + "ITH", + -13.076444625854492 + ], + [ + "▁Netanyahu", + -13.076533317565918 + ], + [ + "▁Brittany", + -13.076725959777832 + ], + [ + "▁Tobacco", + -13.076725959777832 + ], + [ + "▁recurrent", + -13.076737403869629 + ], + [ + "waving", + -13.076746940612793 + ], + [ + "▁Myrtle", + -13.076822280883789 + ], + [ + "▁Tenant", + -13.076833724975586 + ], + [ + "▁Auditor", + -13.076923370361328 + ], + [ + "▁scarves", + -13.077079772949219 + ], + [ + "▁Illustration", + -13.077305793762207 + ], + [ + "▁acclaim", + -13.077352523803711 + ], + [ + "▁1923", + -13.07736587524414 + ], + [ + "mmie", + -13.077412605285645 + ], + [ + "versed", + -13.077455520629883 + ], + [ + "NESS", + -13.077492713928223 + ], + [ + "▁Sloan", + -13.077499389648438 + ], + [ + "finger", + -13.077552795410156 + ], + [ + "▁barber", + -13.077668190002441 + ], + [ + "▁Ravi", + -13.077722549438477 + ], + [ + "▁Humanity", + -13.077775955200195 + ], + [ + "neau", + -13.077784538269043 + ], + [ + "▁Appointment", + -13.077886581420898 + ], + [ + "▁humbl", + -13.077886581420898 + ], + [ + "AKA", + -13.077912330627441 + ], + [ + "dru", + -13.078125953674316 + ], + [ + "Friend", + -13.078160285949707 + ], + [ + "▁Mozart", + -13.07837200164795 + ], + [ + "▁Stability", + -13.078454971313477 + ], + [ + "invariably", + -13.078598022460938 + ], + [ + "▁repent", + -13.078605651855469 + ], + [ + "▁Smoking", + -13.078661918640137 + ], + [ + "▁Lambert", + -13.078678131103516 + ], + [ + "▁Yoshi", + -13.078717231750488 + ], + [ + "VIC", + -13.078808784484863 + ], + [ + "hoot", + -13.078969955444336 + ], + [ + "▁Enhanced", + -13.07919692993164 + ], + [ + "Monetary", + -13.079341888427734 + ], + [ + "▁Grange", + -13.07934284210205 + ], + [ + "▁Scratch", + -13.079438209533691 + ], + [ + "▁inflated", + -13.07949447631836 + ], + [ + "otomy", + -13.079797744750977 + ], + [ + "▁Relative", + -13.080108642578125 + ], + [ + "▁Arrive", + -13.08016300201416 + ], + [ + "▁qualifier", + -13.080211639404297 + ], + [ + "▁scalability", + -13.080283164978027 + ], + [ + "▁unintentional", + -13.080307960510254 + ], + [ + "utilised", + -13.080554962158203 + ], + [ + "Percent", + -13.080777168273926 + ], + [ + "Mag", + -13.080848693847656 + ], + [ + "cylinder", + -13.081233024597168 + ], + [ + "▁Snack", + -13.081482887268066 + ], + [ + "▁ringtone", + -13.081585884094238 + ], + [ + "Host", + -13.081761360168457 + ], + [ + "SPECT", + -13.081864356994629 + ], + [ + "▁cornea", + -13.081985473632812 + ], + [ + "▁sucked", + -13.082066535949707 + ], + [ + "▁churn", + -13.082090377807617 + ], + [ + "compiling", + -13.082098007202148 + ], + [ + "▁Albuquerque", + -13.082152366638184 + ], + [ + "▁healer", + -13.082283020019531 + ], + [ + "▁MINI", + -13.082321166992188 + ], + [ + "▁imprisoned", + -13.08234691619873 + ], + [ + "▁Praise", + -13.082355499267578 + ], + [ + "▁Wiley", + -13.082658767700195 + ], + [ + "▁MLA", + -13.082844734191895 + ], + [ + "▁midfield", + -13.082928657531738 + ], + [ + "▁Grip", + -13.082953453063965 + ], + [ + "▁embarrassment", + -13.08297348022461 + ], + [ + "▁Hastings", + -13.083052635192871 + ], + [ + "▁imitate", + -13.083222389221191 + ], + [ + "▁emulator", + -13.083223342895508 + ], + [ + "▁MSC", + -13.083240509033203 + ], + [ + "9-3", + -13.083389282226562 + ], + [ + "▁extraordinarily", + -13.08340835571289 + ], + [ + "▁Emerson", + -13.083568572998047 + ], + [ + "Central", + -13.083575248718262 + ], + [ + "▁Slam", + -13.083749771118164 + ], + [ + "▁rediscover", + -13.083895683288574 + ], + [ + "▁gripping", + -13.084161758422852 + ], + [ + "▁revamp", + -13.084163665771484 + ], + [ + "▁impurities", + -13.0842924118042 + ], + [ + "▁misdemeanor", + -13.0842924118042 + ], + [ + "richest", + -13.084366798400879 + ], + [ + "Clean", + -13.084396362304688 + ], + [ + "▁Nutri", + -13.084444046020508 + ], + [ + "keep", + -13.084444999694824 + ], + [ + "▁Broncos", + -13.084446907043457 + ], + [ + "▁disrupted", + -13.08448314666748 + ], + [ + "▁Barbie", + -13.084501266479492 + ], + [ + "disp", + -13.084646224975586 + ], + [ + "▁BIOS", + -13.084859848022461 + ], + [ + "▁marinade", + -13.084959983825684 + ], + [ + "▁Bridal", + -13.08500862121582 + ], + [ + "HOUSE", + -13.08505630493164 + ], + [ + "▁traveller", + -13.085126876831055 + ], + [ + "▁ingenious", + -13.08530330657959 + ], + [ + "▁Salvation", + -13.085463523864746 + ], + [ + "▁Archbishop", + -13.085657119750977 + ], + [ + "enant", + -13.085722923278809 + ], + [ + "sizable", + -13.085844993591309 + ], + [ + "▁Tacoma", + -13.085893630981445 + ], + [ + "▁Bates", + -13.085994720458984 + ], + [ + "▁organically", + -13.086346626281738 + ], + [ + "▁writ", + -13.086400032043457 + ], + [ + "▁lubricant", + -13.086437225341797 + ], + [ + "▁synchronization", + -13.086437225341797 + ], + [ + "▁wrath", + -13.086456298828125 + ], + [ + "▁floss", + -13.086670875549316 + ], + [ + "▁Reveal", + -13.086700439453125 + ], + [ + "▁Refrigerator", + -13.086730003356934 + ], + [ + "▁rivalry", + -13.086834907531738 + ], + [ + "▁JSON", + -13.0869722366333 + ], + [ + "opting", + -13.08707332611084 + ], + [ + "▁chemist", + -13.08709716796875 + ], + [ + "▁Liberia", + -13.087102890014648 + ], + [ + "▁omit", + -13.087112426757812 + ], + [ + "married", + -13.087179183959961 + ], + [ + "▁trophies", + -13.087224960327148 + ], + [ + "tufted", + -13.087246894836426 + ], + [ + "▁Weiss", + -13.08726978302002 + ], + [ + "Socket", + -13.087278366088867 + ], + [ + "▁varnish", + -13.087322235107422 + ], + [ + "▁Automobile", + -13.087498664855957 + ], + [ + "▁Siberia", + -13.087522506713867 + ], + [ + "▁Affect", + -13.087786674499512 + ], + [ + "▁GSM", + -13.087902069091797 + ], + [ + "▁1922", + -13.087907791137695 + ], + [ + "daughter", + -13.087940216064453 + ], + [ + "403", + -13.087969779968262 + ], + [ + "wolf", + -13.088174819946289 + ], + [ + "▁Lightweight", + -13.088275909423828 + ], + [ + "▁Docker", + -13.08834171295166 + ], + [ + "▁Lakers", + -13.08836841583252 + ], + [ + "Bringing", + -13.08862590789795 + ], + [ + "▁NPC", + -13.088665962219238 + ], + [ + "▁Symptoms", + -13.08868408203125 + ], + [ + "Flo", + -13.0886869430542 + ], + [ + "baz", + -13.088738441467285 + ], + [ + "▁Flavor", + -13.08881950378418 + ], + [ + "Video", + -13.088919639587402 + ], + [ + "▁huh", + -13.0889310836792 + ], + [ + "history", + -13.089056015014648 + ], + [ + "signifies", + -13.089130401611328 + ], + [ + "▁baptized", + -13.089173316955566 + ], + [ + "▁Elijah", + -13.08927059173584 + ], + [ + "▁Stalin", + -13.089303970336914 + ], + [ + "▁rebrand", + -13.089316368103027 + ], + [ + "▁purge", + -13.089386940002441 + ], + [ + "▁Economist", + -13.08946704864502 + ], + [ + "801", + -13.089471817016602 + ], + [ + "Walk", + -13.089522361755371 + ], + [ + "▁gastric", + -13.089526176452637 + ], + [ + "▁mobilize", + -13.089622497558594 + ], + [ + "▁1901", + -13.089676856994629 + ], + [ + "▁supple", + -13.089913368225098 + ], + [ + "bien", + -13.089932441711426 + ], + [ + "▁vanities", + -13.090069770812988 + ], + [ + "▁2:30", + -13.090124130249023 + ], + [ + "▁Lyme", + -13.090449333190918 + ], + [ + "▁muted", + -13.090539932250977 + ], + [ + "▁alkaline", + -13.090641975402832 + ], + [ + "▁Suzanne", + -13.090750694274902 + ], + [ + "sipping", + -13.09080696105957 + ], + [ + "until", + -13.090828895568848 + ], + [ + "▁licensor", + -13.090840339660645 + ], + [ + "▁intellect", + -13.091099739074707 + ], + [ + "▁Edwin", + -13.091377258300781 + ], + [ + "▁dispersed", + -13.091392517089844 + ], + [ + "▁Gathering", + -13.09141731262207 + ], + [ + "▁Garlic", + -13.091446876525879 + ], + [ + "▁conjure", + -13.091470718383789 + ], + [ + "▁Maurice", + -13.091548919677734 + ], + [ + "▁actuator", + -13.091626167297363 + ], + [ + "▁$20,000", + -13.091928482055664 + ], + [ + "dose", + -13.091981887817383 + ], + [ + "▁unicorn", + -13.092146873474121 + ], + [ + "▁Taj", + -13.092166900634766 + ], + [ + "▁spotting", + -13.092218399047852 + ], + [ + "▁abrasion", + -13.09230899810791 + ], + [ + "▁overwhelm", + -13.092400550842285 + ], + [ + "▁Dryer", + -13.092462539672852 + ], + [ + "▁reconcile", + -13.092530250549316 + ], + [ + "▁predictor", + -13.092535972595215 + ], + [ + "▁Morton", + -13.092588424682617 + ], + [ + "comfort", + -13.092931747436523 + ], + [ + "FSC", + -13.09307861328125 + ], + [ + "▁Shooting", + -13.09312629699707 + ], + [ + "▁segmentation", + -13.093257904052734 + ], + [ + "▁Tracker", + -13.093332290649414 + ], + [ + "▁exhilarating", + -13.093684196472168 + ], + [ + "=0", + -13.093743324279785 + ], + [ + "▁Fleming", + -13.093795776367188 + ], + [ + "hereinafter", + -13.093969345092773 + ], + [ + "▁antimicrobial", + -13.093978881835938 + ], + [ + "▁auditorium", + -13.0940523147583 + ], + [ + "reliant", + -13.094095230102539 + ], + [ + "▁washes", + -13.094261169433594 + ], + [ + "OIL", + -13.094271659851074 + ], + [ + "9.7", + -13.094525337219238 + ], + [ + "▁Kang", + -13.094609260559082 + ], + [ + "▁audiobook", + -13.094625473022461 + ], + [ + "TAN", + -13.094670295715332 + ], + [ + "▁leggings", + -13.094679832458496 + ], + [ + "bundled", + -13.094705581665039 + ], + [ + "enforcing", + -13.094766616821289 + ], + [ + "▁speculative", + -13.094766616821289 + ], + [ + "▁referencing", + -13.094964027404785 + ], + [ + "244", + -13.094985008239746 + ], + [ + "Fox", + -13.095040321350098 + ], + [ + "▁Prescription", + -13.095061302185059 + ], + [ + "▁virtualization", + -13.095096588134766 + ], + [ + "dreaded", + -13.095113754272461 + ], + [ + "▁Kirby", + -13.095184326171875 + ], + [ + "tiny", + -13.095281600952148 + ], + [ + "▁hoses", + -13.09542179107666 + ], + [ + "▁plaza", + -13.095464706420898 + ], + [ + "▁Nicaragua", + -13.095536231994629 + ], + [ + "sufficiency", + -13.09555435180664 + ], + [ + "fraction", + -13.095565795898438 + ], + [ + "▁Buckingham", + -13.095582962036133 + ], + [ + "▁1924", + -13.095590591430664 + ], + [ + "5.0", + -13.095745086669922 + ], + [ + "▁Assess", + -13.095762252807617 + ], + [ + "▁Complainant", + -13.09584903717041 + ], + [ + "9000", + -13.095854759216309 + ], + [ + "▁sublime", + -13.09595775604248 + ], + [ + "▁gelatin", + -13.096044540405273 + ], + [ + "▁popup", + -13.09609317779541 + ], + [ + "▁dishonest", + -13.096343040466309 + ], + [ + "Extremely", + -13.096375465393066 + ], + [ + "▁ambiguous", + -13.096440315246582 + ], + [ + "▁tidal", + -13.096475601196289 + ], + [ + "▁Aerospace", + -13.096580505371094 + ], + [ + "▁300,000", + -13.096722602844238 + ], + [ + "Celest", + -13.096738815307617 + ], + [ + "morphic", + -13.096822738647461 + ], + [ + "▁[[", + -13.096904754638672 + ], + [ + "▁Titanium", + -13.096911430358887 + ], + [ + "4-4", + -13.096980094909668 + ], + [ + "TAG", + -13.097187995910645 + ], + [ + "8-3", + -13.097224235534668 + ], + [ + "▁Jedi", + -13.097265243530273 + ], + [ + "▁Bordeaux", + -13.097426414489746 + ], + [ + "▁optimisation", + -13.097505569458008 + ], + [ + "▁preparedness", + -13.097525596618652 + ], + [ + "▁BMI", + -13.097846984863281 + ], + [ + "studio", + -13.097861289978027 + ], + [ + "fetal", + -13.097906112670898 + ], + [ + "BAN", + -13.098047256469727 + ], + [ + "▁12:30", + -13.098052024841309 + ], + [ + "kept", + -13.098061561584473 + ], + [ + "329", + -13.098155975341797 + ], + [ + "▁deception", + -13.098163604736328 + ], + [ + "▁Eleven", + -13.09817123413086 + ], + [ + "▁slowdown", + -13.098332405090332 + ], + [ + "sailed", + -13.09840202331543 + ], + [ + "▁Cheshire", + -13.098451614379883 + ], + [ + "▁Crusade", + -13.098472595214844 + ], + [ + "▁Illustrated", + -13.098611831665039 + ], + [ + "▁Jab", + -13.098819732666016 + ], + [ + "▁Mozilla", + -13.098869323730469 + ], + [ + "establish", + -13.09894847869873 + ], + [ + "▁revolutionize", + -13.098992347717285 + ], + [ + "▁Bliss", + -13.099117279052734 + ], + [ + "blade", + -13.099125862121582 + ], + [ + "▁webmaster", + -13.099435806274414 + ], + [ + "▁DAYS", + -13.099577903747559 + ], + [ + "Lock", + -13.099710464477539 + ], + [ + "percent", + -13.09985065460205 + ], + [ + "▁enquire", + -13.100217819213867 + ], + [ + "▁Tavern", + -13.100421905517578 + ], + [ + "merge", + -13.10042953491211 + ], + [ + "▁hepatitis", + -13.100489616394043 + ], + [ + "▁motorbike", + -13.10054874420166 + ], + [ + "▁amalgam", + -13.100589752197266 + ], + [ + "▁Toxic", + -13.100793838500977 + ], + [ + "7.8", + -13.100922584533691 + ], + [ + "definite", + -13.100968360900879 + ], + [ + "▁Battalion", + -13.100984573364258 + ], + [ + "▁RESULT", + -13.101083755493164 + ], + [ + "boost", + -13.101134300231934 + ], + [ + "▁Emotional", + -13.10130500793457 + ], + [ + "magic", + -13.101348876953125 + ], + [ + "slide", + -13.101618766784668 + ], + [ + "▁fatalities", + -13.101716995239258 + ], + [ + "▁Whip", + -13.10194206237793 + ], + [ + "▁grasses", + -13.102099418640137 + ], + [ + "KEN", + -13.102112770080566 + ], + [ + "Fla", + -13.10215950012207 + ], + [ + "▁perpetrator", + -13.102173805236816 + ], + [ + "ieving", + -13.102253913879395 + ], + [ + "▁understated", + -13.10228443145752 + ], + [ + "▁cataract", + -13.102372169494629 + ], + [ + "▁1921", + -13.102446556091309 + ], + [ + "▁Pasadena", + -13.102768898010254 + ], + [ + "clav", + -13.102803230285645 + ], + [ + "beaten", + -13.1028413772583 + ], + [ + "▁LNG", + -13.10306453704834 + ], + [ + "▁EDT", + -13.103093147277832 + ], + [ + "▁multiplier", + -13.103166580200195 + ], + [ + "▁skewer", + -13.103166580200195 + ], + [ + "▁accompanie", + -13.103426933288574 + ], + [ + "eurs", + -13.10348892211914 + ], + [ + "▁45%", + -13.103546142578125 + ], + [ + "▁communion", + -13.103562355041504 + ], + [ + "▁zeal", + -13.103580474853516 + ], + [ + "4.0", + -13.103890419006348 + ], + [ + "▁fluoride", + -13.103960037231445 + ], + [ + "▁Processor", + -13.103973388671875 + ], + [ + "Arch", + -13.103997230529785 + ], + [ + "▁Sioux", + -13.104060173034668 + ], + [ + "182", + -13.104233741760254 + ], + [ + "▁ALWAYS", + -13.104257583618164 + ], + [ + "▁shale", + -13.104269027709961 + ], + [ + "incapable", + -13.104433059692383 + ], + [ + "740", + -13.104784965515137 + ], + [ + "▁CST", + -13.104848861694336 + ], + [ + "▁Xavier", + -13.1048583984375 + ], + [ + "▁PSA", + -13.104999542236328 + ], + [ + "idas", + -13.105013847351074 + ], + [ + "▁$25,000", + -13.105023384094238 + ], + [ + "▁spruce", + -13.105074882507324 + ], + [ + "▁Plumber", + -13.105093955993652 + ], + [ + "8.8", + -13.105132102966309 + ], + [ + "▁Pork", + -13.105159759521484 + ], + [ + "▁Fraud", + -13.105347633361816 + ], + [ + "distilled", + -13.105384826660156 + ], + [ + "HEN", + -13.105473518371582 + ], + [ + "▁$70", + -13.105549812316895 + ], + [ + "▁SMART", + -13.105644226074219 + ], + [ + "▁Reflection", + -13.105910301208496 + ], + [ + "▁abnormalities", + -13.106038093566895 + ], + [ + "▁avant", + -13.106070518493652 + ], + [ + "▁Honduras", + -13.106146812438965 + ], + [ + "▁Weaver", + -13.106256484985352 + ], + [ + "▁sealant", + -13.106261253356934 + ], + [ + "7.7", + -13.1065034866333 + ], + [ + "▁nationalist", + -13.106565475463867 + ], + [ + "Contrary", + -13.106598854064941 + ], + [ + "▁purified", + -13.10663890838623 + ], + [ + "diction", + -13.106790542602539 + ], + [ + "▁Jong", + -13.106938362121582 + ], + [ + "explanatory", + -13.106943130493164 + ], + [ + "shape", + -13.106989860534668 + ], + [ + "▁Surg", + -13.107211112976074 + ], + [ + "▁cert", + -13.107410430908203 + ], + [ + "▁Acoustic", + -13.107441902160645 + ], + [ + "▁Kelley", + -13.107540130615234 + ], + [ + "Planned", + -13.107686996459961 + ], + [ + "▁masculine", + -13.108039855957031 + ], + [ + "▁Handling", + -13.108270645141602 + ], + [ + "abilities", + -13.108283042907715 + ], + [ + "▁Destiny", + -13.108354568481445 + ], + [ + "▁Abby", + -13.10837459564209 + ], + [ + "▁Elaine", + -13.10854434967041 + ], + [ + "▁Skate", + -13.108545303344727 + ], + [ + "▁deprivation", + -13.108637809753418 + ], + [ + "▁Voucher", + -13.108638763427734 + ], + [ + "▁Renovation", + -13.108738899230957 + ], + [ + "▁gazebo", + -13.108741760253906 + ], + [ + "▁Lately", + -13.10908031463623 + ], + [ + "▁interchangeable", + -13.10909652709961 + ], + [ + "▁commuting", + -13.109236717224121 + ], + [ + "matter", + -13.109302520751953 + ], + [ + "▁Nadu", + -13.10934066772461 + ], + [ + "▁sandstone", + -13.109439849853516 + ], + [ + "▁modalities", + -13.109538078308105 + ], + [ + "▁Sheep", + -13.10956859588623 + ], + [ + "piled", + -13.109613418579102 + ], + [ + "▁diffuser", + -13.109739303588867 + ], + [ + "▁Velvet", + -13.109905242919922 + ], + [ + "▁impatient", + -13.109935760498047 + ], + [ + "▁Adopt", + -13.110027313232422 + ], + [ + "▁drowning", + -13.110054969787598 + ], + [ + "▁Absolute", + -13.110236167907715 + ], + [ + "▁Friendship", + -13.110359191894531 + ], + [ + "▁swollen", + -13.110435485839844 + ], + [ + "Entrepreneurship", + -13.110488891601562 + ], + [ + "▁Knox", + -13.11053466796875 + ], + [ + "cultivating", + -13.110535621643066 + ], + [ + "▁Attractive", + -13.110535621643066 + ], + [ + "▁_______", + -13.11056137084961 + ], + [ + "▁inflict", + -13.11058521270752 + ], + [ + "▁10.5", + -13.11064338684082 + ], + [ + "▁Chanel", + -13.110650062561035 + ], + [ + "CIT", + -13.11068344116211 + ], + [ + "ité", + -13.110795974731445 + ], + [ + "▁secretion", + -13.110797882080078 + ], + [ + "▁Slowly", + -13.110835075378418 + ], + [ + "environment", + -13.111027717590332 + ], + [ + "▁rhino", + -13.11103343963623 + ], + [ + "▁recurrence", + -13.111035346984863 + ], + [ + "▁Judicial", + -13.111135482788086 + ], + [ + "knitted", + -13.111141204833984 + ], + [ + "▁emanat", + -13.111225128173828 + ], + [ + "▁Melanie", + -13.111235618591309 + ], + [ + "HOL", + -13.111276626586914 + ], + [ + "▁Personalized", + -13.111559867858887 + ], + [ + "could", + -13.111598014831543 + ], + [ + "▁electrolyte", + -13.1116361618042 + ], + [ + "▁sluggish", + -13.1116361618042 + ], + [ + "▁Casual", + -13.111664772033691 + ], + [ + "address", + -13.111665725708008 + ], + [ + "▁Relay", + -13.112044334411621 + ], + [ + "lumbar", + -13.112113952636719 + ], + [ + "▁retirees", + -13.112140655517578 + ], + [ + "adri", + -13.112176895141602 + ], + [ + "▁WANT", + -13.112244606018066 + ], + [ + "THEY", + -13.112318992614746 + ], + [ + "coloured", + -13.112321853637695 + ], + [ + "▁Belmont", + -13.112338066101074 + ], + [ + "▁shove", + -13.11240291595459 + ], + [ + "▁sniff", + -13.112527847290039 + ], + [ + "▁disinfect", + -13.112753868103027 + ], + [ + "▁AUTO", + -13.112774848937988 + ], + [ + "▁womb", + -13.112838745117188 + ], + [ + "ISO", + -13.11298942565918 + ], + [ + "▁1905", + -13.113005638122559 + ], + [ + "▁respite", + -13.113038063049316 + ], + [ + "▁nitri", + -13.113179206848145 + ], + [ + "▁irritated", + -13.113219261169434 + ], + [ + "▁storyteller", + -13.113348007202148 + ], + [ + "▁peep", + -13.113421440124512 + ], + [ + "AIDS", + -13.113551139831543 + ], + [ + "▁kilogram", + -13.113666534423828 + ], + [ + "▁mull", + -13.11367130279541 + ], + [ + "▁doomed", + -13.113751411437988 + ], + [ + "▁MUCH", + -13.114006996154785 + ], + [ + "ulla", + -13.11406135559082 + ], + [ + "▁Jorge", + -13.114075660705566 + ], + [ + "trophic", + -13.11409854888916 + ], + [ + "▁Seventh", + -13.11409854888916 + ], + [ + "295", + -13.114368438720703 + ], + [ + "error", + -13.114399909973145 + ], + [ + "▁Comcast", + -13.114570617675781 + ], + [ + "▁implication", + -13.114749908447266 + ], + [ + "▁Slack", + -13.114764213562012 + ], + [ + "▁Qualified", + -13.114943504333496 + ], + [ + "Wherever", + -13.115068435668945 + ], + [ + "defense", + -13.115104675292969 + ], + [ + "▁Fresno", + -13.115145683288574 + ], + [ + "▁evangelical", + -13.115151405334473 + ], + [ + "191", + -13.115189552307129 + ], + [ + "▁supra", + -13.11525821685791 + ], + [ + "▁bartender", + -13.115450859069824 + ], + [ + "▁smashed", + -13.115479469299316 + ], + [ + "808", + -13.115490913391113 + ], + [ + "▁pacif", + -13.115510940551758 + ], + [ + "Accel", + -13.11574649810791 + ], + [ + "▁galaxies", + -13.115747451782227 + ], + [ + "▁Raff", + -13.115838050842285 + ], + [ + "▁rechargeable", + -13.115971565246582 + ], + [ + "▁Seminary", + -13.116045951843262 + ], + [ + "▁Gourmet", + -13.116049766540527 + ], + [ + "▁appropriation", + -13.11614990234375 + ], + [ + "▁1908", + -13.116181373596191 + ], + [ + "allotted", + -13.11618709564209 + ], + [ + "▁stripping", + -13.11635684967041 + ], + [ + "Direct", + -13.116483688354492 + ], + [ + "▁Naz", + -13.116541862487793 + ], + [ + "▁Placement", + -13.116565704345703 + ], + [ + "▁Mock", + -13.116585731506348 + ], + [ + "▁caveat", + -13.116903305053711 + ], + [ + "Guide", + -13.117147445678711 + ], + [ + "regular", + -13.117483139038086 + ], + [ + "▁Tottenham", + -13.117557525634766 + ], + [ + "▁Scots", + -13.117582321166992 + ], + [ + "About", + -13.117766380310059 + ], + [ + "▁contagious", + -13.117859840393066 + ], + [ + "▁Episcopal", + -13.118061065673828 + ], + [ + "▁grapefruit", + -13.118069648742676 + ], + [ + "▁phyto", + -13.118107795715332 + ], + [ + "▁fungal", + -13.118249893188477 + ], + [ + "▁asteroid", + -13.118711471557617 + ], + [ + "▁yelling", + -13.118752479553223 + ], + [ + "▁narration", + -13.118754386901855 + ], + [ + "▁screenplay", + -13.118756294250488 + ], + [ + "Den", + -13.118760108947754 + ], + [ + "udy", + -13.118892669677734 + ], + [ + "capital", + -13.11890983581543 + ], + [ + "▁Audrey", + -13.11906909942627 + ], + [ + "▁Pompe", + -13.119230270385742 + ], + [ + "Ironically", + -13.119250297546387 + ], + [ + "▁dictator", + -13.11934757232666 + ], + [ + "▁Scottsdale", + -13.119377136230469 + ], + [ + "▁millionaire", + -13.119386672973633 + ], + [ + "▁bitterness", + -13.119389533996582 + ], + [ + "configuring", + -13.119491577148438 + ], + [ + "pheric", + -13.119537353515625 + ], + [ + "▁emerald", + -13.119674682617188 + ], + [ + "9.0", + -13.119699478149414 + ], + [ + "▁cries", + -13.119791984558105 + ], + [ + "▁brewer", + -13.119847297668457 + ], + [ + "▁Reddit", + -13.11984920501709 + ], + [ + "encyclopedia", + -13.119978904724121 + ], + [ + "▁interconnect", + -13.120062828063965 + ], + [ + "▁Laboratories", + -13.120078086853027 + ], + [ + "▁Parallel", + -13.120108604431152 + ], + [ + "winner", + -13.120168685913086 + ], + [ + "▁Clyde", + -13.120630264282227 + ], + [ + "▁Havana", + -13.120809555053711 + ], + [ + "▁Disabilities", + -13.12092113494873 + ], + [ + "Tree", + -13.1209716796875 + ], + [ + "880", + -13.121190071105957 + ], + [ + "nutrient", + -13.121305465698242 + ], + [ + "▁Elle", + -13.121370315551758 + ], + [ + "▁heirloom", + -13.121390342712402 + ], + [ + "▁narco", + -13.121498107910156 + ], + [ + "▁Editorial", + -13.121537208557129 + ], + [ + "▁cylindrical", + -13.12169361114502 + ], + [ + "485", + -13.121795654296875 + ], + [ + "seeded", + -13.121870994567871 + ], + [ + "▁Broadcasting", + -13.121904373168945 + ], + [ + "PAL", + -13.121905326843262 + ], + [ + "▁gentlemen", + -13.122045516967773 + ], + [ + "▁hoist", + -13.122539520263672 + ], + [ + "youtube", + -13.12254524230957 + ], + [ + "194", + -13.122682571411133 + ], + [ + "▁ancestor", + -13.122699737548828 + ], + [ + "▁Seeking", + -13.122709274291992 + ], + [ + "Baby", + -13.122907638549805 + ], + [ + "▁sculptor", + -13.122963905334473 + ], + [ + "vending", + -13.123001098632812 + ], + [ + "▁Scorpio", + -13.12306022644043 + ], + [ + "▁Jerome", + -13.123185157775879 + ], + [ + "▁Beverage", + -13.12331485748291 + ], + [ + "▁intangible", + -13.12331485748291 + ], + [ + "thread", + -13.123320579528809 + ], + [ + "▁8-10", + -13.123435020446777 + ], + [ + "▁reschedule", + -13.123550415039062 + ], + [ + "▁Trustee", + -13.1236572265625 + ], + [ + "10,000", + -13.12372875213623 + ], + [ + "▁transgender", + -13.123819351196289 + ], + [ + "▁Variety", + -13.123833656311035 + ], + [ + "▁Knock", + -13.124054908752441 + ], + [ + "219", + -13.124190330505371 + ], + [ + "▁ruthless", + -13.124335289001465 + ], + [ + "▁artillery", + -13.124629974365234 + ], + [ + "▁emoji", + -13.124731063842773 + ], + [ + "▁bipartisan", + -13.12479019165039 + ], + [ + "▁refrigeration", + -13.125035285949707 + ], + [ + "▁Buick", + -13.125048637390137 + ], + [ + "▁Bowie", + -13.125151634216309 + ], + [ + "▁sideways", + -13.125170707702637 + ], + [ + "▁Anita", + -13.12519359588623 + ], + [ + "▁Automated", + -13.125242233276367 + ], + [ + "catered", + -13.125276565551758 + ], + [ + "▁Rodgers", + -13.125389099121094 + ], + [ + "▁Obamacare", + -13.125391960144043 + ], + [ + "▁expiry", + -13.125543594360352 + ], + [ + "initiating", + -13.125608444213867 + ], + [ + "▁Gazette", + -13.125699996948242 + ], + [ + "▁eczema", + -13.12574577331543 + ], + [ + "▁sentimental", + -13.1257963180542 + ], + [ + "kton", + -13.12598991394043 + ], + [ + "▁Naomi", + -13.126152038574219 + ], + [ + "rue", + -13.126152992248535 + ], + [ + "ос", + -13.126252174377441 + ], + [ + "fueled", + -13.12629222869873 + ], + [ + "▁storefront", + -13.126296043395996 + ], + [ + "▁ruffle", + -13.126354217529297 + ], + [ + "▁tertiary", + -13.126355171203613 + ], + [ + "▁Doom", + -13.126469612121582 + ], + [ + "▁reassuring", + -13.126590728759766 + ], + [ + "gata", + -13.12671184539795 + ], + [ + "▁Airbus", + -13.126744270324707 + ], + [ + "stalled", + -13.126803398132324 + ], + [ + "▁FEE", + -13.126924514770508 + ], + [ + "▁fearless", + -13.126983642578125 + ], + [ + "▁Vocal", + -13.12698745727539 + ], + [ + "▁LOS", + -13.127205848693848 + ], + [ + "idos", + -13.127532005310059 + ], + [ + "contained", + -13.127542495727539 + ], + [ + "▁Provo", + -13.127543449401855 + ], + [ + "Style", + -13.127671241760254 + ], + [ + "EAK", + -13.127747535705566 + ], + [ + "▁sulfate", + -13.127779006958008 + ], + [ + "▁scallop", + -13.127792358398438 + ], + [ + "▁Aloe", + -13.128090858459473 + ], + [ + "▁Winery", + -13.12829875946045 + ], + [ + "▁Aroma", + -13.128464698791504 + ], + [ + "▁Rifle", + -13.128755569458008 + ], + [ + "▁astrology", + -13.12879753112793 + ], + [ + "33%", + -13.128811836242676 + ], + [ + "▁Temporary", + -13.128998756408691 + ], + [ + "deducted", + -13.129079818725586 + ], + [ + "▁WASHINGTON", + -13.129202842712402 + ], + [ + "▁cleric", + -13.12924861907959 + ], + [ + "assuming", + -13.129532814025879 + ], + [ + "▁Cartoon", + -13.129630088806152 + ], + [ + "▁quizzes", + -13.129918098449707 + ], + [ + "▁diplomacy", + -13.129919052124023 + ], + [ + "▁PARK", + -13.13001537322998 + ], + [ + "▁commonplace", + -13.130118370056152 + ], + [ + "▁witty", + -13.13015365600586 + ], + [ + "sphere", + -13.130260467529297 + ], + [ + "accept", + -13.130439758300781 + ], + [ + "▁dab", + -13.130620956420898 + ], + [ + "ABILITY", + -13.130715370178223 + ], + [ + "▁Bavaria", + -13.130769729614258 + ], + [ + "window", + -13.130792617797852 + ], + [ + "▁fender", + -13.130833625793457 + ], + [ + "5-5", + -13.131110191345215 + ], + [ + "Revised", + -13.131132125854492 + ], + [ + "▁sexuality", + -13.131166458129883 + ], + [ + "940", + -13.131265640258789 + ], + [ + "▁Cayman", + -13.131330490112305 + ], + [ + "▁со", + -13.131343841552734 + ], + [ + "visibly", + -13.131441116333008 + ], + [ + "▁Needle", + -13.131510734558105 + ], + [ + "▁clinch", + -13.131754875183105 + ], + [ + "▁postpone", + -13.131889343261719 + ], + [ + "▁haze", + -13.131915092468262 + ], + [ + "ggling", + -13.131950378417969 + ], + [ + "▁QuickBooks", + -13.131957054138184 + ], + [ + "▁Pratt", + -13.131965637207031 + ], + [ + "oxidant", + -13.131998062133789 + ], + [ + "▁Hanna", + -13.132451057434082 + ], + [ + "▁hospitalization", + -13.132506370544434 + ], + [ + "affirmed", + -13.132779121398926 + ], + [ + "▁decadent", + -13.132855415344238 + ], + [ + "▁Ivory", + -13.1328763961792 + ], + [ + "license", + -13.132893562316895 + ], + [ + "subject", + -13.133109092712402 + ], + [ + "emu", + -13.133121490478516 + ], + [ + "▁Connector", + -13.133210182189941 + ], + [ + "▁trivia", + -13.133225440979004 + ], + [ + "attaching", + -13.13338851928711 + ], + [ + "▁complication", + -13.133488655090332 + ], + [ + "▁Dissertation", + -13.133591651916504 + ], + [ + "▁dehydration", + -13.133591651916504 + ], + [ + "▁determinant", + -13.133597373962402 + ], + [ + "▁criticize", + -13.134087562561035 + ], + [ + "▁Coventry", + -13.13440990447998 + ], + [ + "▁Dalton", + -13.134522438049316 + ], + [ + "▁plight", + -13.134702682495117 + ], + [ + "2%)", + -13.13473129272461 + ], + [ + "▁poop", + -13.13474178314209 + ], + [ + "▁Flora", + -13.134771347045898 + ], + [ + "stretch", + -13.134779930114746 + ], + [ + "▁Mohammad", + -13.134819984436035 + ], + [ + "▁activating", + -13.135130882263184 + ], + [ + "▁rink", + -13.135163307189941 + ], + [ + "▁Oyster", + -13.135339736938477 + ], + [ + "▁exceedingly", + -13.135486602783203 + ], + [ + "▁ancestry", + -13.135538101196289 + ], + [ + "plagued", + -13.135592460632324 + ], + [ + "▁tabletop", + -13.135645866394043 + ], + [ + "▁trapping", + -13.135741233825684 + ], + [ + "▁attribution", + -13.136049270629883 + ], + [ + "▁biotechnology", + -13.136102676391602 + ], + [ + "▁Hose", + -13.136126518249512 + ], + [ + "▁negativity", + -13.136152267456055 + ], + [ + "▁spatula", + -13.136260986328125 + ], + [ + "▁mismatch", + -13.13635540008545 + ], + [ + "▁Dahl", + -13.136459350585938 + ], + [ + "▁Personnel", + -13.136486053466797 + ], + [ + "▁Venetian", + -13.136665344238281 + ], + [ + "▁subside", + -13.136690139770508 + ], + [ + "▁wicker", + -13.13671588897705 + ], + [ + "▁Pose", + -13.136819839477539 + ], + [ + "▁countdown", + -13.136958122253418 + ], + [ + "▁circuitry", + -13.137199401855469 + ], + [ + "Model", + -13.137275695800781 + ], + [ + "propelled", + -13.137308120727539 + ], + [ + "▁neg", + -13.137319564819336 + ], + [ + "▁quintessential", + -13.137383460998535 + ], + [ + "▁ninety", + -13.137401580810547 + ], + [ + "ucc", + -13.137439727783203 + ], + [ + "▁Jeremiah", + -13.137486457824707 + ], + [ + "ddington", + -13.137537956237793 + ], + [ + "essential", + -13.137624740600586 + ], + [ + "United", + -13.137626647949219 + ], + [ + "▁Flour", + -13.137910842895508 + ], + [ + "hut", + -13.138123512268066 + ], + [ + "▁McE", + -13.138279914855957 + ], + [ + "5-0", + -13.138568878173828 + ], + [ + "▁roundabout", + -13.13863754272461 + ], + [ + "approving", + -13.138731002807617 + ], + [ + "▁Teddy", + -13.138754844665527 + ], + [ + "Temp", + -13.138819694519043 + ], + [ + "▁Ebola", + -13.138869285583496 + ], + [ + "▁sumptuous", + -13.138925552368164 + ], + [ + "▁kor", + -13.138931274414062 + ], + [ + "▁compel", + -13.139016151428223 + ], + [ + "▁Rhino", + -13.139084815979004 + ], + [ + "▁greasy", + -13.139269828796387 + ], + [ + "▁Hancock", + -13.139274597167969 + ], + [ + "RAY", + -13.139394760131836 + ], + [ + "▁Rehab", + -13.139433860778809 + ], + [ + "chromatic", + -13.139547348022461 + ], + [ + "▁Documentation", + -13.139660835266113 + ], + [ + "Royce", + -13.139710426330566 + ], + [ + "▁feud", + -13.139748573303223 + ], + [ + "▁logistical", + -13.139836311340332 + ], + [ + "▁Noel", + -13.13986873626709 + ], + [ + "WITHOUT", + -13.14018726348877 + ], + [ + "830", + -13.140236854553223 + ], + [ + "323", + -13.140288352966309 + ], + [ + "▁Quartet", + -13.14037036895752 + ], + [ + "▁Lamar", + -13.140432357788086 + ], + [ + "▁skeletal", + -13.14046859741211 + ], + [ + "▁intensifie", + -13.140481948852539 + ], + [ + "▁screwdriver", + -13.140482902526855 + ], + [ + "▁pervasive", + -13.14067554473877 + ], + [ + "▁Vodafone", + -13.140778541564941 + ], + [ + "▁Genius", + -13.140823364257812 + ], + [ + "▁offseason", + -13.141064643859863 + ], + [ + "▁Randall", + -13.141111373901367 + ], + [ + "▁Zhao", + -13.141239166259766 + ], + [ + "▁mellow", + -13.141500473022461 + ], + [ + "▁multicultural", + -13.141549110412598 + ], + [ + "▁arches", + -13.14157485961914 + ], + [ + "▁inadvertently", + -13.141602516174316 + ], + [ + "▁entryway", + -13.141884803771973 + ], + [ + "sleep", + -13.142090797424316 + ], + [ + "Mel", + -13.142167091369629 + ], + [ + "▁cumbersome", + -13.142221450805664 + ], + [ + "▁horseback", + -13.142244338989258 + ], + [ + "▁offended", + -13.142365455627441 + ], + [ + "▁Prediction", + -13.142375946044922 + ], + [ + "atori", + -13.142423629760742 + ], + [ + "potted", + -13.142477035522461 + ], + [ + "▁Coil", + -13.142648696899414 + ], + [ + "▁Colony", + -13.142852783203125 + ], + [ + "folk", + -13.142924308776855 + ], + [ + "leisurely", + -13.142948150634766 + ], + [ + "▁hamburger", + -13.143254280090332 + ], + [ + "▁housekeeping", + -13.1435546875 + ], + [ + "▁purifier", + -13.14360237121582 + ], + [ + "▁Mercer", + -13.143621444702148 + ], + [ + "▁Dodgers", + -13.143750190734863 + ], + [ + "▁Hmmm", + -13.143765449523926 + ], + [ + "▁Cunningham", + -13.143770217895508 + ], + [ + "▁sperm", + -13.143789291381836 + ], + [ + "▁dynasty", + -13.143874168395996 + ], + [ + "below", + -13.143877983093262 + ], + [ + "▁Tesco", + -13.144024848937988 + ], + [ + "▁Arrival", + -13.144081115722656 + ], + [ + "werk", + -13.144357681274414 + ], + [ + "Frank", + -13.144478797912598 + ], + [ + "▁vaping", + -13.144499778747559 + ], + [ + "▁Sikh", + -13.144515991210938 + ], + [ + "▁Chandra", + -13.144587516784668 + ], + [ + "TIAL", + -13.144603729248047 + ], + [ + "▁geology", + -13.144844055175781 + ], + [ + "490", + -13.14486026763916 + ], + [ + "▁linebacker", + -13.14503288269043 + ], + [ + "▁SAFE", + -13.145111083984375 + ], + [ + "google", + -13.145232200622559 + ], + [ + "Sky", + -13.145505905151367 + ], + [ + "1200", + -13.145593643188477 + ], + [ + "Trust", + -13.14563274383545 + ], + [ + "shade", + -13.145726203918457 + ], + [ + "crowned", + -13.14574146270752 + ], + [ + "▁Becker", + -13.145743370056152 + ], + [ + "▁Alicia", + -13.145796775817871 + ], + [ + "▁(1999)", + -13.146284103393555 + ], + [ + "▁65%", + -13.146349906921387 + ], + [ + "▁Jiang", + -13.146442413330078 + ], + [ + "▁1906", + -13.14660930633545 + ], + [ + "Stack", + -13.146615028381348 + ], + [ + "▁Efficient", + -13.146668434143066 + ], + [ + "▁memorabilia", + -13.146668434143066 + ], + [ + "▁Amateur", + -13.146674156188965 + ], + [ + "nema", + -13.146695137023926 + ], + [ + "▁undu", + -13.146902084350586 + ], + [ + "▁microscopic", + -13.147083282470703 + ], + [ + "NEW", + -13.147178649902344 + ], + [ + "▁miraculous", + -13.147211074829102 + ], + [ + "▁limp", + -13.147418022155762 + ], + [ + "north", + -13.147587776184082 + ], + [ + "▁Pamela", + -13.147608757019043 + ], + [ + "▁supplementation", + -13.147796630859375 + ], + [ + "loon", + -13.147804260253906 + ], + [ + "acetyl", + -13.147828102111816 + ], + [ + "▁zebra", + -13.147930145263672 + ], + [ + "Bell", + -13.148103713989258 + ], + [ + "193", + -13.148111343383789 + ], + [ + "Object", + -13.148231506347656 + ], + [ + "▁Leak", + -13.148372650146484 + ], + [ + "▁Concern", + -13.148398399353027 + ], + [ + "assisted", + -13.148600578308105 + ], + [ + "▁roman", + -13.148789405822754 + ], + [ + "reinforcing", + -13.148847579956055 + ], + [ + "▁Notebook", + -13.148886680603027 + ], + [ + "▁Kathryn", + -13.149158477783203 + ], + [ + "evaluation", + -13.149185180664062 + ], + [ + "occo", + -13.149367332458496 + ], + [ + "▁£8", + -13.149391174316406 + ], + [ + "RUS", + -13.14950942993164 + ], + [ + "▁portability", + -13.149621963500977 + ], + [ + "▁Litigation", + -13.149678230285645 + ], + [ + "он", + -13.150084495544434 + ], + [ + "▁quitting", + -13.150102615356445 + ], + [ + "Garcinia", + -13.150218963623047 + ], + [ + "▁ECO", + -13.150246620178223 + ], + [ + "▁brittle", + -13.150306701660156 + ], + [ + "14%", + -13.15031623840332 + ], + [ + "▁victor", + -13.150547981262207 + ], + [ + "rinkle", + -13.150566101074219 + ], + [ + "OSH", + -13.150632858276367 + ], + [ + "▁DDR", + -13.150818824768066 + ], + [ + "▁registrar", + -13.151054382324219 + ], + [ + "CCP", + -13.151187896728516 + ], + [ + "▁Idol", + -13.151238441467285 + ], + [ + "▁spinner", + -13.151276588439941 + ], + [ + "▁imitation", + -13.151447296142578 + ], + [ + "▁Purdue", + -13.151481628417969 + ], + [ + "▁exaggerated", + -13.151551246643066 + ], + [ + "288", + -13.15159797668457 + ], + [ + "▁Polyester", + -13.151690483093262 + ], + [ + "fluoro", + -13.151758193969727 + ], + [ + "▁frightened", + -13.151864051818848 + ], + [ + "▁arbitrator", + -13.15186595916748 + ], + [ + "▁torment", + -13.151914596557617 + ], + [ + "▁Islamist", + -13.15203857421875 + ], + [ + "Project", + -13.152116775512695 + ], + [ + "▁Outcome", + -13.152233123779297 + ], + [ + "▁luncheon", + -13.152434349060059 + ], + [ + "insulating", + -13.152603149414062 + ], + [ + "860", + -13.152759552001953 + ], + [ + "▁Elena", + -13.152802467346191 + ], + [ + "▁sturdi", + -13.15280532836914 + ], + [ + "▁mentorship", + -13.15302848815918 + ], + [ + "▁Observer", + -13.153061866760254 + ], + [ + "▁Arcade", + -13.153367042541504 + ], + [ + "▁tapestry", + -13.153432846069336 + ], + [ + "▁Invite", + -13.153514862060547 + ], + [ + "crack", + -13.15357494354248 + ], + [ + "▁resourceful", + -13.153817176818848 + ], + [ + "173", + -13.153827667236328 + ], + [ + "complemented", + -13.153865814208984 + ], + [ + "▁Stroke", + -13.154027938842773 + ], + [ + "▁affidavit", + -13.154054641723633 + ], + [ + "shri", + -13.154108047485352 + ], + [ + "Once", + -13.154184341430664 + ], + [ + "viral", + -13.15426254272461 + ], + [ + "▁Appalachian", + -13.154263496398926 + ], + [ + "▁energized", + -13.154324531555176 + ], + [ + "▁Illustrator", + -13.154367446899414 + ], + [ + "▁sweetheart", + -13.154462814331055 + ], + [ + "▁frown", + -13.154519081115723 + ], + [ + "▁($2", + -13.154579162597656 + ], + [ + "Africa", + -13.154712677001953 + ], + [ + "▁LONG", + -13.154728889465332 + ], + [ + "▁serenity", + -13.15478515625 + ], + [ + "expert", + -13.154821395874023 + ], + [ + "▁Rough", + -13.154837608337402 + ], + [ + "▁craftsman", + -13.15499496459961 + ], + [ + "saurus", + -13.155029296875 + ], + [ + "oidal", + -13.155035972595215 + ], + [ + "Gently", + -13.155108451843262 + ], + [ + "▁Linear", + -13.155176162719727 + ], + [ + "▁Reliable", + -13.155413627624512 + ], + [ + "pedia", + -13.155556678771973 + ], + [ + "▁policing", + -13.155623435974121 + ], + [ + "▁tees", + -13.15564250946045 + ], + [ + "▁latte", + -13.155682563781738 + ], + [ + "▁Revolutionary", + -13.155770301818848 + ], + [ + "▁Jelly", + -13.155828475952148 + ], + [ + "debuted", + -13.155911445617676 + ], + [ + "▁Orbit", + -13.155961036682129 + ], + [ + "rnal", + -13.155974388122559 + ], + [ + "▁cardstock", + -13.155977249145508 + ], + [ + "Cannot", + -13.156034469604492 + ], + [ + "▁Undergraduate", + -13.156192779541016 + ], + [ + "▁pesticide", + -13.156220436096191 + ], + [ + "239", + -13.156519889831543 + ], + [ + "▁Alamo", + -13.156649589538574 + ], + [ + "▁Contra", + -13.156691551208496 + ], + [ + "fiber", + -13.156743049621582 + ], + [ + "▁cremation", + -13.156878471374512 + ], + [ + "▁diversification", + -13.156915664672852 + ], + [ + "▁recital", + -13.157003402709961 + ], + [ + "▁anonymously", + -13.157132148742676 + ], + [ + "michael", + -13.157200813293457 + ], + [ + "poorest", + -13.157232284545898 + ], + [ + "IKE", + -13.157310485839844 + ], + [ + "▁Drawer", + -13.157451629638672 + ], + [ + "nius", + -13.157570838928223 + ], + [ + "Sgt", + -13.157572746276855 + ], + [ + "Produced", + -13.15774154663086 + ], + [ + "multiplied", + -13.157938003540039 + ], + [ + "▁Fahrenheit", + -13.158134460449219 + ], + [ + "▁Thornton", + -13.158251762390137 + ], + [ + "▁nugget", + -13.158344268798828 + ], + [ + "▁Financing", + -13.158345222473145 + ], + [ + "▁laundering", + -13.158345222473145 + ], + [ + "▁afflict", + -13.158407211303711 + ], + [ + "▁mascot", + -13.158527374267578 + ], + [ + "▁Acura", + -13.158573150634766 + ], + [ + "▁Lilly", + -13.15888500213623 + ], + [ + "▁Nikola", + -13.158936500549316 + ], + [ + "▁platelet", + -13.159040451049805 + ], + [ + "▁Sticker", + -13.15914535522461 + ], + [ + "LOC", + -13.159235954284668 + ], + [ + "▁handgun", + -13.159262657165527 + ], + [ + "yourself", + -13.159281730651855 + ], + [ + "▁Analytic", + -13.159293174743652 + ], + [ + "▁slid", + -13.159317970275879 + ], + [ + "▁Bethlehem", + -13.159393310546875 + ], + [ + "277", + -13.15944766998291 + ], + [ + "▁lyrical", + -13.1594820022583 + ], + [ + "▁Hail", + -13.15980339050293 + ], + [ + "▁tarp", + -13.159873008728027 + ], + [ + "▁granular", + -13.160045623779297 + ], + [ + "▁Concentrat", + -13.160099029541016 + ], + [ + "▁Triumph", + -13.160237312316895 + ], + [ + "Happy", + -13.16035270690918 + ], + [ + "▁lunchtime", + -13.160354614257812 + ], + [ + "▁Balloon", + -13.160368919372559 + ], + [ + "▁necro", + -13.160455703735352 + ], + [ + "▁$500,000", + -13.160704612731934 + ], + [ + "▁Neutral", + -13.160879135131836 + ], + [ + "Nasdaq", + -13.160968780517578 + ], + [ + "orama", + -13.161145210266113 + ], + [ + "▁disparate", + -13.161179542541504 + ], + [ + "▁SHOW", + -13.161227226257324 + ], + [ + "6%)", + -13.161260604858398 + ], + [ + "Advertise", + -13.161270141601562 + ], + [ + "detail", + -13.161300659179688 + ], + [ + "▁Chew", + -13.161588668823242 + ], + [ + "revolving", + -13.161608695983887 + ], + [ + "▁homestead", + -13.161996841430664 + ], + [ + "▁Knee", + -13.162038803100586 + ], + [ + "▁estrogen", + -13.162131309509277 + ], + [ + "▁Artistic", + -13.162382125854492 + ], + [ + "img", + -13.162429809570312 + ], + [ + "express", + -13.16244888305664 + ], + [ + "▁partake", + -13.162453651428223 + ], + [ + "▁Kendall", + -13.16254997253418 + ], + [ + "▁regenerate", + -13.162864685058594 + ], + [ + "▁illicit", + -13.163074493408203 + ], + [ + "▁Serious", + -13.163174629211426 + ], + [ + "▁symmetry", + -13.163196563720703 + ], + [ + "▁Pipeline", + -13.16327953338623 + ], + [ + "Low", + -13.163400650024414 + ], + [ + "▁RAF", + -13.163413047790527 + ], + [ + "loft", + -13.163582801818848 + ], + [ + "▁Spiral", + -13.163605690002441 + ], + [ + "▁seedlings", + -13.163681030273438 + ], + [ + "▁Knife", + -13.16370677947998 + ], + [ + "249", + -13.16372299194336 + ], + [ + "touted", + -13.163769721984863 + ], + [ + "defeating", + -13.163774490356445 + ], + [ + "blown", + -13.163843154907227 + ], + [ + "shortlisted", + -13.163926124572754 + ], + [ + "antar", + -13.164055824279785 + ], + [ + "▁Bankruptcy", + -13.164128303527832 + ], + [ + "▁impede", + -13.164162635803223 + ], + [ + "▁Ortho", + -13.164389610290527 + ], + [ + "Network", + -13.164487838745117 + ], + [ + "major", + -13.16457748413086 + ], + [ + "▁Berger", + -13.16458511352539 + ], + [ + "curring", + -13.164650917053223 + ], + [ + "resembling", + -13.164655685424805 + ], + [ + "701", + -13.164712905883789 + ], + [ + "▁notwithstanding", + -13.16486644744873 + ], + [ + "▁undeniable", + -13.164972305297852 + ], + [ + "Carefully", + -13.165020942687988 + ], + [ + "overwhelmingly", + -13.16524887084961 + ], + [ + "cancer", + -13.165258407592773 + ], + [ + "▁Malone", + -13.165595054626465 + ], + [ + "ит", + -13.165648460388184 + ], + [ + "▁procure", + -13.165674209594727 + ], + [ + "▁Riviera", + -13.165925025939941 + ], + [ + "lickfunnels", + -13.16602897644043 + ], + [ + "capacity", + -13.166208267211914 + ], + [ + "▁Saddle", + -13.166242599487305 + ], + [ + "▁preheat", + -13.166350364685059 + ], + [ + "CODE", + -13.166387557983398 + ], + [ + "vaulted", + -13.166594505310059 + ], + [ + "▁nodded", + -13.166666030883789 + ], + [ + "Owned", + -13.166780471801758 + ], + [ + "Summer", + -13.166787147521973 + ], + [ + "enactment", + -13.166828155517578 + ], + [ + "circulated", + -13.16684627532959 + ], + [ + "IOUS", + -13.166888236999512 + ], + [ + "▁extinct", + -13.166891098022461 + ], + [ + "▁peaches", + -13.167001724243164 + ], + [ + "HSA", + -13.167020797729492 + ], + [ + "▁Socialist", + -13.167299270629883 + ], + [ + "▁herbicide", + -13.167308807373047 + ], + [ + "otope", + -13.167336463928223 + ], + [ + "▁cashew", + -13.167450904846191 + ], + [ + "punitive", + -13.16751766204834 + ], + [ + "▁vaccinat", + -13.167600631713867 + ], + [ + "▁sans", + -13.167819023132324 + ], + [ + "NEL", + -13.167820930480957 + ], + [ + "▁sanity", + -13.167853355407715 + ], + [ + "▁propagate", + -13.167902946472168 + ], + [ + "▁Arbitration", + -13.168038368225098 + ], + [ + "▁Produce", + -13.168073654174805 + ], + [ + "▁brood", + -13.168097496032715 + ], + [ + "▁Vogue", + -13.168193817138672 + ], + [ + "▁Atom", + -13.16829776763916 + ], + [ + "Manager", + -13.16838264465332 + ], + [ + "▁Addiction", + -13.1683988571167 + ], + [ + "LUM", + -13.168485641479492 + ], + [ + "▁Pyramid", + -13.16856861114502 + ], + [ + "▁pancake", + -13.168676376342773 + ], + [ + "showcased", + -13.168706893920898 + ], + [ + "▁Apex", + -13.168791770935059 + ], + [ + "238", + -13.168838500976562 + ], + [ + "▁prawn", + -13.168996810913086 + ], + [ + "4%)", + -13.169085502624512 + ], + [ + "▁debilitating", + -13.169097900390625 + ], + [ + "▁Husband", + -13.169099807739258 + ], + [ + "▁Exposure", + -13.169357299804688 + ], + [ + "▁provocative", + -13.16952133178711 + ], + [ + "▁Gorge", + -13.169681549072266 + ], + [ + "▁sacrament", + -13.169839859008789 + ], + [ + "containing", + -13.169943809509277 + ], + [ + "▁disabling", + -13.169954299926758 + ], + [ + "▁parrot", + -13.169958114624023 + ], + [ + "▁remarked", + -13.16996955871582 + ], + [ + "▁HOA", + -13.17011547088623 + ], + [ + "▁Polk", + -13.170125007629395 + ], + [ + "▁lengthen", + -13.170344352722168 + ], + [ + "▁Robbie", + -13.170376777648926 + ], + [ + "▁confer", + -13.17044734954834 + ], + [ + "▁Refund", + -13.17047119140625 + ], + [ + "▁siege", + -13.170796394348145 + ], + [ + "▁Duct", + -13.170838356018066 + ], + [ + "▁Negative", + -13.1708402633667 + ], + [ + "▁jeep", + -13.170888900756836 + ], + [ + "▁Accreditation", + -13.171113967895508 + ], + [ + "▁Robotics", + -13.17114543914795 + ], + [ + "▁prairie", + -13.171221733093262 + ], + [ + "▁Dorset", + -13.171606063842773 + ], + [ + "▁Lancashire", + -13.171751022338867 + ], + [ + "▁Oasis", + -13.171777725219727 + ], + [ + "▁pacing", + -13.171914100646973 + ], + [ + "LAY", + -13.1720552444458 + ], + [ + "▁reaffirm", + -13.172151565551758 + ], + [ + "▁sinful", + -13.172245025634766 + ], + [ + "▁FAST", + -13.172249794006348 + ], + [ + "▁craze", + -13.172379493713379 + ], + [ + "▁crucif", + -13.172418594360352 + ], + [ + "▁communicator", + -13.172601699829102 + ], + [ + "98%", + -13.172682762145996 + ], + [ + "▁Fifty", + -13.172707557678223 + ], + [ + "336", + -13.172722816467285 + ], + [ + "▁VIII", + -13.172926902770996 + ], + [ + "▁blindness", + -13.172975540161133 + ], + [ + "▁Spike", + -13.173091888427734 + ], + [ + "▁patriotic", + -13.173110008239746 + ], + [ + "▁Ramsey", + -13.173240661621094 + ], + [ + "▁graphite", + -13.173469543457031 + ], + [ + "shock", + -13.173545837402344 + ], + [ + "ETT", + -13.173669815063477 + ], + [ + "▁rabbi", + -13.173799514770508 + ], + [ + "▁transplantation", + -13.17387580871582 + ], + [ + "Vision", + -13.173924446105957 + ], + [ + "▁exponential", + -13.173989295959473 + ], + [ + "▁GEO", + -13.174029350280762 + ], + [ + "egon", + -13.174273490905762 + ], + [ + "▁prognosis", + -13.17441177368164 + ], + [ + "Utilizing", + -13.174456596374512 + ], + [ + "▁slender", + -13.174630165100098 + ], + [ + "▁Anglican", + -13.174745559692383 + ], + [ + "▁Towel", + -13.174783706665039 + ], + [ + "▁everlasting", + -13.174825668334961 + ], + [ + "Connell", + -13.174829483032227 + ], + [ + "ciones", + -13.175053596496582 + ], + [ + "vinci", + -13.175447463989258 + ], + [ + "▁>>>", + -13.175453186035156 + ], + [ + "Stream", + -13.17548942565918 + ], + [ + "▁Ventura", + -13.17552661895752 + ], + [ + "▁Elliot", + -13.17574691772461 + ], + [ + "constituted", + -13.175833702087402 + ], + [ + "▁joyous", + -13.17590618133545 + ], + [ + "▁Spotlight", + -13.175908088684082 + ], + [ + "▁Fischer", + -13.175912857055664 + ], + [ + "▁microscopy", + -13.176012992858887 + ], + [ + "▁juxtapos", + -13.176118850708008 + ], + [ + "consolidating", + -13.176331520080566 + ], + [ + "▁grammatical", + -13.176534652709961 + ], + [ + "▁deteriorate", + -13.176545143127441 + ], + [ + "glyph", + -13.176706314086914 + ], + [ + "▁DLC", + -13.176759719848633 + ], + [ + "▁Tyson", + -13.176795959472656 + ], + [ + "▁rampant", + -13.177135467529297 + ], + [ + "▁rapport", + -13.177169799804688 + ], + [ + "181", + -13.177207946777344 + ], + [ + "SURE", + -13.177346229553223 + ], + [ + "Measuring", + -13.177406311035156 + ], + [ + "obstructed", + -13.177427291870117 + ], + [ + "▁NAV", + -13.17770767211914 + ], + [ + "boss", + -13.177726745605469 + ], + [ + "improve", + -13.177789688110352 + ], + [ + "▁SKU", + -13.177803993225098 + ], + [ + "▁Mansion", + -13.177877426147461 + ], + [ + "NIA", + -13.1779203414917 + ], + [ + "▁uninsured", + -13.178000450134277 + ], + [ + "▁Improving", + -13.17807388305664 + ], + [ + "▁cuddle", + -13.17818832397461 + ], + [ + "▁disclaim", + -13.178497314453125 + ], + [ + "▁apnea", + -13.17857551574707 + ], + [ + "▁Phuket", + -13.178791046142578 + ], + [ + "rrah", + -13.178824424743652 + ], + [ + "▁Kimberly", + -13.1788969039917 + ], + [ + "▁Anaheim", + -13.1790189743042 + ], + [ + "analysing", + -13.179028511047363 + ], + [ + "▁про", + -13.17906379699707 + ], + [ + "▁errands", + -13.179120063781738 + ], + [ + "▁Dispute", + -13.179123878479004 + ], + [ + "camera", + -13.179156303405762 + ], + [ + "▁smoky", + -13.179220199584961 + ], + [ + "▁Reel", + -13.179339408874512 + ], + [ + "▁syringe", + -13.179409980773926 + ], + [ + "▁ballad", + -13.179539680480957 + ], + [ + "▁remembrance", + -13.179539680480957 + ], + [ + "▁mitochondrial", + -13.179732322692871 + ], + [ + "▁dubious", + -13.179840087890625 + ], + [ + "characterised", + -13.17985725402832 + ], + [ + "▁collegiate", + -13.179861068725586 + ], + [ + "▁IKEA", + -13.179889678955078 + ], + [ + "505", + -13.179948806762695 + ], + [ + "▁hydrocarbon", + -13.180000305175781 + ], + [ + "Australia", + -13.180169105529785 + ], + [ + "riah", + -13.18033218383789 + ], + [ + "281", + -13.180520057678223 + ], + [ + "▁Pathway", + -13.180547714233398 + ], + [ + "▁dampen", + -13.18056869506836 + ], + [ + "6-5", + -13.180671691894531 + ], + [ + "▁quasi", + -13.180746078491211 + ], + [ + "▁adversity", + -13.180825233459473 + ], + [ + "▁wafer", + -13.181029319763184 + ], + [ + "▁Chaos", + -13.18105411529541 + ], + [ + "▁TLC", + -13.181097030639648 + ], + [ + "ORY", + -13.181158065795898 + ], + [ + "▁Gwen", + -13.181158065795898 + ], + [ + "▁Atomic", + -13.181440353393555 + ], + [ + "499", + -13.181473731994629 + ], + [ + "young", + -13.181482315063477 + ], + [ + "Access", + -13.181556701660156 + ], + [ + "▁Replica", + -13.181587219238281 + ], + [ + "▁playwright", + -13.18164348602295 + ], + [ + "shelf", + -13.181757926940918 + ], + [ + "kHz", + -13.181830406188965 + ], + [ + "▁homicide", + -13.1820068359375 + ], + [ + "▁Composition", + -13.182065963745117 + ], + [ + "▁Infantry", + -13.182116508483887 + ], + [ + "▁Balkan", + -13.182158470153809 + ], + [ + "▁summaries", + -13.182220458984375 + ], + [ + "30,000", + -13.182249069213867 + ], + [ + "▁Taxes", + -13.182283401489258 + ], + [ + "rusted", + -13.18229866027832 + ], + [ + "Human", + -13.182353019714355 + ], + [ + "Ctrl", + -13.182384490966797 + ], + [ + "▁Expand", + -13.182416915893555 + ], + [ + "▁DESIGN", + -13.182435989379883 + ], + [ + "▁Kraft", + -13.182438850402832 + ], + [ + "▁Comparative", + -13.18254280090332 + ], + [ + "▁soooo", + -13.182866096496582 + ], + [ + "▁Betting", + -13.182916641235352 + ], + [ + "0.7", + -13.183099746704102 + ], + [ + "▁brainstorming", + -13.183109283447266 + ], + [ + "charging", + -13.183136940002441 + ], + [ + "▁Prosecutor", + -13.183188438415527 + ], + [ + "▁Rosemary", + -13.18319034576416 + ], + [ + "▁tranquility", + -13.183197021484375 + ], + [ + "415", + -13.183245658874512 + ], + [ + "Since", + -13.18326187133789 + ], + [ + "▁stirred", + -13.183431625366211 + ], + [ + "▁Goes", + -13.183469772338867 + ], + [ + "▁20-30", + -13.183475494384766 + ], + [ + "▁delusion", + -13.183487892150879 + ], + [ + "▁RAID", + -13.183547019958496 + ], + [ + "▁Fiona", + -13.183672904968262 + ], + [ + "▁bleak", + -13.183697700500488 + ], + [ + "educated", + -13.183731079101562 + ], + [ + "▁Approval", + -13.183833122253418 + ], + [ + "▁cashier", + -13.183835983276367 + ], + [ + "▁radiate", + -13.18401050567627 + ], + [ + "▁Macau", + -13.18407154083252 + ], + [ + "▁amplified", + -13.184072494506836 + ], + [ + "ovsky", + -13.184137344360352 + ], + [ + "▁etiquette", + -13.184155464172363 + ], + [ + "▁slippers", + -13.184283256530762 + ], + [ + "▁bribe", + -13.184322357177734 + ], + [ + "▁eviction", + -13.184330940246582 + ], + [ + "▁Artisan", + -13.184423446655273 + ], + [ + "▁GTX", + -13.184443473815918 + ], + [ + "Tel", + -13.184524536132812 + ], + [ + "322", + -13.184526443481445 + ], + [ + "Abb", + -13.184531211853027 + ], + [ + "9.3", + -13.184664726257324 + ], + [ + "▁solicitation", + -13.18469524383545 + ], + [ + "OLO", + -13.18470287322998 + ], + [ + "▁Sheila", + -13.184720993041992 + ], + [ + "▁joking", + -13.184722900390625 + ], + [ + "▁dissolution", + -13.185003280639648 + ], + [ + "▁fillet", + -13.185040473937988 + ], + [ + "▁Angie", + -13.185144424438477 + ], + [ + "▁Implant", + -13.185211181640625 + ], + [ + "▁Conrad", + -13.18524169921875 + ], + [ + "▁dormant", + -13.185565948486328 + ], + [ + "▁DIRECT", + -13.185617446899414 + ], + [ + "▁federation", + -13.185710906982422 + ], + [ + "▁incubator", + -13.185770988464355 + ], + [ + "▁receptive", + -13.185770988464355 + ], + [ + "enol", + -13.185861587524414 + ], + [ + "▁Pilgrim", + -13.185986518859863 + ], + [ + "Requires", + -13.18600082397461 + ], + [ + "▁charismatic", + -13.186017036437988 + ], + [ + "▁pulley", + -13.186212539672852 + ], + [ + "HMRC", + -13.186286926269531 + ], + [ + "▁Formation", + -13.186348915100098 + ], + [ + "▁bookkeeping", + -13.18636417388916 + ], + [ + "▁selectively", + -13.186375617980957 + ], + [ + "▁philanthropic", + -13.186417579650879 + ], + [ + "▁Blackberry", + -13.186490058898926 + ], + [ + "▁fisherman", + -13.186620712280273 + ], + [ + "▁Uttar", + -13.186638832092285 + ], + [ + "fledged", + -13.186863899230957 + ], + [ + "UNE", + -13.186985969543457 + ], + [ + "▁Sarasota", + -13.187065124511719 + ], + [ + "Young", + -13.187091827392578 + ], + [ + "consider", + -13.187161445617676 + ], + [ + "▁apricot", + -13.187172889709473 + ], + [ + "Program", + -13.187190055847168 + ], + [ + "▁sweatshirt", + -13.187201499938965 + ], + [ + "▁Mommy", + -13.187289237976074 + ], + [ + "▁Eleanor", + -13.187390327453613 + ], + [ + "venous", + -13.187424659729004 + ], + [ + "▁tactile", + -13.18749713897705 + ], + [ + "▁Usage", + -13.187664985656738 + ], + [ + "▁trampoline", + -13.187712669372559 + ], + [ + "▁Brotherhood", + -13.187752723693848 + ], + [ + "▁Cabernet", + -13.187820434570312 + ], + [ + "▁Delay", + -13.187959671020508 + ], + [ + "▁Creativity", + -13.188036918640137 + ], + [ + "▁Argo", + -13.1880521774292 + ], + [ + "▁Kardashian", + -13.18814468383789 + ], + [ + "▁Nikki", + -13.188179969787598 + ], + [ + "▁lizard", + -13.188361167907715 + ], + [ + "bourg", + -13.18844223022461 + ], + [ + "▁biscuit", + -13.188453674316406 + ], + [ + "▁Kathmandu", + -13.188576698303223 + ], + [ + "▁executable", + -13.188576698303223 + ], + [ + "Info", + -13.188657760620117 + ], + [ + "Asked", + -13.188782691955566 + ], + [ + "▁1907", + -13.188905715942383 + ], + [ + "▁Scrum", + -13.18899154663086 + ], + [ + "▁Jubilee", + -13.189117431640625 + ], + [ + "5′′", + -13.189221382141113 + ], + [ + "echoes", + -13.189248085021973 + ], + [ + "▁Retin", + -13.189284324645996 + ], + [ + "▁lobe", + -13.189314842224121 + ], + [ + "wil", + -13.189520835876465 + ], + [ + "▁immobil", + -13.189570426940918 + ], + [ + "ани", + -13.189619064331055 + ], + [ + "▁Amelia", + -13.189775466918945 + ], + [ + "▁Fairfax", + -13.18991470336914 + ], + [ + "▁Landmark", + -13.189957618713379 + ], + [ + "▁bourbon", + -13.189983367919922 + ], + [ + "▁cliché", + -13.190091133117676 + ], + [ + "▁sentencing", + -13.190093040466309 + ], + [ + "▁debating", + -13.190101623535156 + ], + [ + "▁certify", + -13.190190315246582 + ], + [ + "▁vacate", + -13.190282821655273 + ], + [ + "identifying", + -13.190339088439941 + ], + [ + "retinal", + -13.190374374389648 + ], + [ + "▁Hogan", + -13.190414428710938 + ], + [ + "AIA", + -13.190572738647461 + ], + [ + "▁Quran", + -13.190810203552246 + ], + [ + "▁Tight", + -13.1908540725708 + ], + [ + "▁coolant", + -13.191080093383789 + ], + [ + "▁Chesapeake", + -13.191174507141113 + ], + [ + "Filename", + -13.19126033782959 + ], + [ + "▁iceberg", + -13.191262245178223 + ], + [ + "8.7", + -13.191314697265625 + ], + [ + "▁noodle", + -13.191498756408691 + ], + [ + "diol", + -13.191550254821777 + ], + [ + "politan", + -13.191717147827148 + ], + [ + "▁Gail", + -13.191732406616211 + ], + [ + "▁Hassan", + -13.191892623901367 + ], + [ + "▁unavoidable", + -13.191932678222656 + ], + [ + "▁heirs", + -13.192014694213867 + ], + [ + "266", + -13.192072868347168 + ], + [ + "nothing", + -13.192228317260742 + ], + [ + "▁Monarch", + -13.192391395568848 + ], + [ + "blaming", + -13.19243335723877 + ], + [ + "OUGH", + -13.19245433807373 + ], + [ + "VAN", + -13.192523002624512 + ], + [ + "▁debugging", + -13.192523956298828 + ], + [ + "▁rejuvenate", + -13.192668914794922 + ], + [ + "▁squander", + -13.192692756652832 + ], + [ + "ventricular", + -13.192697525024414 + ], + [ + "▁1909", + -13.193021774291992 + ], + [ + "▁Array", + -13.1930570602417 + ], + [ + "integ", + -13.193059921264648 + ], + [ + "▁Homo", + -13.193194389343262 + ], + [ + "▁Boiler", + -13.193236351013184 + ], + [ + "▁Sexual", + -13.193344116210938 + ], + [ + "▁chaise", + -13.19335651397705 + ], + [ + "tinted", + -13.193424224853516 + ], + [ + "Nicol", + -13.193525314331055 + ], + [ + "niel", + -13.193535804748535 + ], + [ + "▁blurred", + -13.193676948547363 + ], + [ + "▁Loren", + -13.193717956542969 + ], + [ + "▁adrenal", + -13.19377613067627 + ], + [ + "▁Wolves", + -13.194079399108887 + ], + [ + "▁$29", + -13.194112777709961 + ], + [ + "▁Serge", + -13.194178581237793 + ], + [ + "▁gull", + -13.19422721862793 + ], + [ + "▁resurrect", + -13.194313049316406 + ], + [ + "Neighbor", + -13.194430351257324 + ], + [ + "▁appellant", + -13.194539070129395 + ], + [ + "▁Patriot", + -13.194746971130371 + ], + [ + "banning", + -13.194751739501953 + ], + [ + "hauling", + -13.194828987121582 + ], + [ + "▁Landscaping", + -13.194973945617676 + ], + [ + "wow", + -13.194975852966309 + ], + [ + "PLACE", + -13.194981575012207 + ], + [ + "▁Herbal", + -13.195108413696289 + ], + [ + "▁chipset", + -13.1951265335083 + ], + [ + "question", + -13.195151329040527 + ], + [ + "prednisone", + -13.195191383361816 + ], + [ + "▁subscribing", + -13.195265769958496 + ], + [ + "wagering", + -13.19531536102295 + ], + [ + "renovating", + -13.195409774780273 + ], + [ + "▁Toni", + -13.195688247680664 + ], + [ + "▁Uruguay", + -13.195953369140625 + ], + [ + "AIS", + -13.196069717407227 + ], + [ + "▁EXPRESS", + -13.19607162475586 + ], + [ + "670", + -13.19612979888916 + ], + [ + "nison", + -13.196281433105469 + ], + [ + "Factor", + -13.196345329284668 + ], + [ + "▁ferri", + -13.196378707885742 + ], + [ + "pigmentation", + -13.196388244628906 + ], + [ + "386", + -13.19643783569336 + ], + [ + "▁conceive", + -13.196657180786133 + ], + [ + "▁punches", + -13.196688652038574 + ], + [ + "▁terrestrial", + -13.19693374633789 + ], + [ + "▁Strand", + -13.196952819824219 + ], + [ + "▁Wonderland", + -13.197022438049316 + ], + [ + "▁annuity", + -13.197152137756348 + ], + [ + "ullah", + -13.197199821472168 + ], + [ + "▁proton", + -13.197224617004395 + ], + [ + "444", + -13.197279930114746 + ], + [ + "▁Nationwide", + -13.19734001159668 + ], + [ + "▁Babies", + -13.197471618652344 + ], + [ + "▁Friedman", + -13.197587966918945 + ], + [ + "/11/", + -13.197622299194336 + ], + [ + "787", + -13.197672843933105 + ], + [ + "▁positivity", + -13.197697639465332 + ], + [ + "wid", + -13.197793006896973 + ], + [ + "▁imaginable", + -13.19802474975586 + ], + [ + "▁Gomez", + -13.198027610778809 + ], + [ + "▁Calcium", + -13.19813346862793 + ], + [ + "revered", + -13.198144912719727 + ], + [ + "▁START", + -13.198174476623535 + ], + [ + "▁subtly", + -13.19828987121582 + ], + [ + "▁spherical", + -13.198352813720703 + ], + [ + "▁rupee", + -13.198378562927246 + ], + [ + "dining", + -13.198540687561035 + ], + [ + "▁exemplif", + -13.198609352111816 + ], + [ + "▁Cancel", + -13.198843002319336 + ], + [ + "▁escalate", + -13.198890686035156 + ], + [ + "▁Preschool", + -13.199041366577148 + ], + [ + "vitamin", + -13.199169158935547 + ], + [ + "▁NSF", + -13.199177742004395 + ], + [ + "▁cumin", + -13.199460983276367 + ], + [ + "▁Critics", + -13.1998291015625 + ], + [ + "▁WHEN", + -13.199834823608398 + ], + [ + "▁Mohamed", + -13.199885368347168 + ], + [ + "▁Montessori", + -13.199990272521973 + ], + [ + "▁receptacle", + -13.20020866394043 + ], + [ + "stitch", + -13.200515747070312 + ], + [ + "William", + -13.200546264648438 + ], + [ + "▁Victim", + -13.200552940368652 + ], + [ + "catalytic", + -13.20064640045166 + ], + [ + "▁Malawi", + -13.200787544250488 + ], + [ + "▁Guinness", + -13.200867652893066 + ], + [ + "▁Arrangement", + -13.200881004333496 + ], + [ + "▁Rosie", + -13.200963020324707 + ], + [ + "▁iris", + -13.201037406921387 + ], + [ + "▁schizophrenia", + -13.201302528381348 + ], + [ + "▁Boone", + -13.201373100280762 + ], + [ + "▁nuclei", + -13.201412200927734 + ], + [ + "yielding", + -13.201510429382324 + ], + [ + "▁astronomer", + -13.201631546020508 + ], + [ + "Commerce", + -13.201665878295898 + ], + [ + "monstr", + -13.201895713806152 + ], + [ + "▁repress", + -13.201943397521973 + ], + [ + "ATING", + -13.202160835266113 + ], + [ + "▁Himalayan", + -13.202178955078125 + ], + [ + "▁bikini", + -13.202404022216797 + ], + [ + "▁fresco", + -13.202407836914062 + ], + [ + "CET", + -13.202451705932617 + ], + [ + "307", + -13.202588081359863 + ], + [ + "▁Flush", + -13.202640533447266 + ], + [ + "yellow", + -13.202670097351074 + ], + [ + "▁Institutional", + -13.202741622924805 + ], + [ + "▁Baghdad", + -13.202836990356445 + ], + [ + "▁affluent", + -13.202836990356445 + ], + [ + "RAP", + -13.202839851379395 + ], + [ + "practice", + -13.202849388122559 + ], + [ + "▁cytokine", + -13.202946662902832 + ], + [ + "▁adjudicat", + -13.202960968017578 + ], + [ + "▁Bhutan", + -13.203051567077637 + ], + [ + "mountainous", + -13.203483581542969 + ], + [ + "▁precinct", + -13.203495025634766 + ], + [ + "▁Simulator", + -13.203546524047852 + ], + [ + "▁Gerard", + -13.203717231750488 + ], + [ + "otes", + -13.203836441040039 + ], + [ + "▁gamma", + -13.204216957092285 + ], + [ + "▁synonym", + -13.204249382019043 + ], + [ + "▁Anxiety", + -13.204262733459473 + ], + [ + "▁aerodynamic", + -13.204269409179688 + ], + [ + "▁converge", + -13.204459190368652 + ], + [ + "▁Thom", + -13.204480171203613 + ], + [ + "▁polyethylene", + -13.20450210571289 + ], + [ + "▁hijack", + -13.204607009887695 + ], + [ + "▁Homeowners", + -13.204655647277832 + ], + [ + "▁edging", + -13.204665184020996 + ], + [ + "▁Jensen", + -13.204776763916016 + ], + [ + "▁Onion", + -13.20479965209961 + ], + [ + "▁Jasmine", + -13.204922676086426 + ], + [ + "▁moisturizing", + -13.205361366271973 + ], + [ + "cado", + -13.205581665039062 + ], + [ + "Special", + -13.205586433410645 + ], + [ + "inspiring", + -13.205635070800781 + ], + [ + "▁functionalities", + -13.20590591430664 + ], + [ + "historic", + -13.205984115600586 + ], + [ + "▁Actress", + -13.205991744995117 + ], + [ + "OFF", + -13.20600700378418 + ], + [ + "tbsp", + -13.206042289733887 + ], + [ + "▁quirk", + -13.20626449584961 + ], + [ + "▁treasury", + -13.206351280212402 + ], + [ + "reserving", + -13.206380844116211 + ], + [ + "▁blah", + -13.206429481506348 + ], + [ + "▁Benson", + -13.20646858215332 + ], + [ + "▁scarcity", + -13.206517219543457 + ], + [ + "▁tagging", + -13.20658016204834 + ], + [ + "▁conferr", + -13.206765174865723 + ], + [ + "▁handwriting", + -13.207047462463379 + ], + [ + "▁Marvin", + -13.207098007202148 + ], + [ + "▁solemn", + -13.207351684570312 + ], + [ + "▁neuroscience", + -13.207387924194336 + ], + [ + "7,500", + -13.207411766052246 + ], + [ + "▁Vampire", + -13.207451820373535 + ], + [ + "CEL", + -13.207525253295898 + ], + [ + "LSE", + -13.207538604736328 + ], + [ + "▁Rinse", + -13.207606315612793 + ], + [ + "downright", + -13.207610130310059 + ], + [ + "▁thwart", + -13.207677841186523 + ], + [ + "▁Oncology", + -13.207785606384277 + ], + [ + "▁mason", + -13.207959175109863 + ], + [ + "quisition", + -13.208067893981934 + ], + [ + "▁decipher", + -13.208127975463867 + ], + [ + "▁Rhine", + -13.208224296569824 + ], + [ + "▁resize", + -13.208324432373047 + ], + [ + "▁bureaucracy", + -13.208553314208984 + ], + [ + "75,000", + -13.208672523498535 + ], + [ + "Engine", + -13.208703994750977 + ], + [ + "gift", + -13.208721160888672 + ], + [ + "▁apex", + -13.208775520324707 + ], + [ + "application", + -13.208993911743164 + ], + [ + "▁Consultation", + -13.209022521972656 + ], + [ + "▁bestseller", + -13.209085464477539 + ], + [ + "articul", + -13.209131240844727 + ], + [ + "▁Workforce", + -13.20918083190918 + ], + [ + "▁satisfie", + -13.209280014038086 + ], + [ + "▁Blogging", + -13.209324836730957 + ], + [ + "▁Argentine", + -13.209325790405273 + ], + [ + "▁Dentist", + -13.209468841552734 + ], + [ + "▁supersede", + -13.20957088470459 + ], + [ + "europe", + -13.209574699401855 + ], + [ + "▁Maison", + -13.20984172821045 + ], + [ + "▁robber", + -13.209859848022461 + ], + [ + "▁Wimbledon", + -13.20998764038086 + ], + [ + "sufficient", + -13.210054397583008 + ], + [ + "▁(1998)", + -13.210102081298828 + ], + [ + "▁NON", + -13.210102081298828 + ], + [ + "▁biases", + -13.210140228271484 + ], + [ + "BIN", + -13.21015453338623 + ], + [ + "responsive", + -13.210189819335938 + ], + [ + "▁postseason", + -13.210322380065918 + ], + [ + "engineering", + -13.2103271484375 + ], + [ + "▁unanimous", + -13.210461616516113 + ], + [ + "▁habe", + -13.210562705993652 + ], + [ + "▁autograph", + -13.210610389709473 + ], + [ + "▁Fixture", + -13.210648536682129 + ], + [ + "▁Bathtub", + -13.210785865783691 + ], + [ + "▁ammonia", + -13.211005210876465 + ], + [ + "▁redundancy", + -13.211092948913574 + ], + [ + "studded", + -13.211158752441406 + ], + [ + "747", + -13.211311340332031 + ], + [ + "▁blueberry", + -13.211406707763672 + ], + [ + "▁Tractor", + -13.211430549621582 + ], + [ + "590", + -13.211475372314453 + ], + [ + "▁Suz", + -13.211554527282715 + ], + [ + "▁Franz", + -13.211615562438965 + ], + [ + "▁ACCESS", + -13.211772918701172 + ], + [ + "▁melanoma", + -13.211867332458496 + ], + [ + "▁Trash", + -13.212058067321777 + ], + [ + "▁Maverick", + -13.212088584899902 + ], + [ + "RIO", + -13.212474822998047 + ], + [ + "▁Modular", + -13.21270751953125 + ], + [ + "▁Trigger", + -13.212794303894043 + ], + [ + "▁manure", + -13.212798118591309 + ], + [ + "▁Fai", + -13.212845802307129 + ], + [ + "▁Cochran", + -13.21286678314209 + ], + [ + "▁metropolis", + -13.213107109069824 + ], + [ + "possibly", + -13.213284492492676 + ], + [ + "▁Benton", + -13.213286399841309 + ], + [ + "▁nectar", + -13.213316917419434 + ], + [ + "▁Spokane", + -13.213417053222656 + ], + [ + "▁DevOps", + -13.213639259338379 + ], + [ + "strapped", + -13.213664054870605 + ], + [ + "▁tenancy", + -13.213735580444336 + ], + [ + "▁continuum", + -13.213748931884766 + ], + [ + "▁alphabetical", + -13.21383285522461 + ], + [ + "242", + -13.213839530944824 + ], + [ + "fleeing", + -13.213854789733887 + ], + [ + "▁endowment", + -13.213860511779785 + ], + [ + "Public", + -13.213964462280273 + ], + [ + "▁Counselor", + -13.213969230651855 + ], + [ + "▁incense", + -13.214146614074707 + ], + [ + "▁poisonous", + -13.214181900024414 + ], + [ + "▁Appendix", + -13.214192390441895 + ], + [ + "▁resentment", + -13.21428394317627 + ], + [ + "presumed", + -13.214436531066895 + ], + [ + "strike", + -13.214791297912598 + ], + [ + "▁antibacterial", + -13.214858055114746 + ], + [ + "▁pamphlet", + -13.215080261230469 + ], + [ + "▁tinker", + -13.215088844299316 + ], + [ + "administering", + -13.215389251708984 + ], + [ + "▁tanning", + -13.215537071228027 + ], + [ + "icus", + -13.215853691101074 + ], + [ + "▁gimmick", + -13.21585750579834 + ], + [ + "Maintaining", + -13.216039657592773 + ], + [ + "▁propagation", + -13.216079711914062 + ], + [ + "▁Leopard", + -13.216302871704102 + ], + [ + "thirsty", + -13.216519355773926 + ], + [ + "Contact", + -13.216950416564941 + ], + [ + "▁Damascus", + -13.216968536376953 + ], + [ + "▁Benchmark", + -13.216985702514648 + ], + [ + "perform", + -13.217069625854492 + ], + [ + "▁unilateral", + -13.217100143432617 + ], + [ + "406", + -13.21718692779541 + ], + [ + "appealed", + -13.217231750488281 + ], + [ + "▁dissent", + -13.217337608337402 + ], + [ + "▁Sergeant", + -13.217348098754883 + ], + [ + "▁earphone", + -13.217423439025879 + ], + [ + "▁Narrow", + -13.21760082244873 + ], + [ + "occupying", + -13.217612266540527 + ], + [ + "▁Viva", + -13.217657089233398 + ], + [ + "▁Plantation", + -13.217905044555664 + ], + [ + "▁Yong", + -13.218279838562012 + ], + [ + "535", + -13.218393325805664 + ], + [ + "▁Yelp", + -13.218535423278809 + ], + [ + "▁Zhu", + -13.218564987182617 + ], + [ + "fry", + -13.218671798706055 + ], + [ + "Did", + -13.218759536743164 + ], + [ + "happy", + -13.218873977661133 + ], + [ + "▁freshen", + -13.218905448913574 + ], + [ + "Psych", + -13.218958854675293 + ], + [ + "▁jogging", + -13.218972206115723 + ], + [ + "▁Maldives", + -13.219083786010742 + ], + [ + "▁galvanized", + -13.219083786010742 + ], + [ + "▁midway", + -13.219204902648926 + ], + [ + "▁london", + -13.219307899475098 + ], + [ + "▁Gemini", + -13.219354629516602 + ], + [ + "Local", + -13.219615936279297 + ], + [ + "▁Sunni", + -13.219815254211426 + ], + [ + "fortified", + -13.219819068908691 + ], + [ + "▁avert", + -13.219850540161133 + ], + [ + "discipline", + -13.219935417175293 + ], + [ + "Grand", + -13.219948768615723 + ], + [ + "partner", + -13.219971656799316 + ], + [ + "▁Frequency", + -13.220087051391602 + ], + [ + "▁Wichita", + -13.220087051391602 + ], + [ + "▁glitch", + -13.220175743103027 + ], + [ + "▁Blossom", + -13.220198631286621 + ], + [ + "Option", + -13.220244407653809 + ], + [ + "▁Ebay", + -13.22037410736084 + ], + [ + "▁Axis", + -13.220440864562988 + ], + [ + "/12/", + -13.220582962036133 + ], + [ + "▁gritty", + -13.220685005187988 + ], + [ + "Write", + -13.220932006835938 + ], + [ + "▁Refine", + -13.221120834350586 + ], + [ + "254", + -13.221173286437988 + ], + [ + "Exodus", + -13.221202850341797 + ], + [ + "▁steadfast", + -13.221203804016113 + ], + [ + "▁blazer", + -13.221537590026855 + ], + [ + "▁Salisbury", + -13.221650123596191 + ], + [ + "▁happiest", + -13.221650123596191 + ], + [ + "▁intravenous", + -13.221659660339355 + ], + [ + "▁Jak", + -13.221834182739258 + ], + [ + "309", + -13.22196102142334 + ], + [ + "Chair", + -13.222078323364258 + ], + [ + "▁disburse", + -13.222098350524902 + ], + [ + "penned", + -13.222311019897461 + ], + [ + "▁hikers", + -13.222311019897461 + ], + [ + "noticeably", + -13.222451210021973 + ], + [ + "▁Alternate", + -13.222458839416504 + ], + [ + "redirected", + -13.222575187683105 + ], + [ + "rectify", + -13.222588539123535 + ], + [ + "▁lesbian", + -13.22268009185791 + ], + [ + "▁Greenwood", + -13.222811698913574 + ], + [ + "▁giggle", + -13.22281551361084 + ], + [ + "dek", + -13.222909927368164 + ], + [ + "▁Communion", + -13.223003387451172 + ], + [ + "▁Burma", + -13.223034858703613 + ], + [ + "crete", + -13.223048210144043 + ], + [ + "▁Imam", + -13.223156929016113 + ], + [ + "▁swag", + -13.223245620727539 + ], + [ + "▁troubleshoot", + -13.223376274108887 + ], + [ + "▁lattice", + -13.22343921661377 + ], + [ + "775", + -13.223615646362305 + ], + [ + "▁$800", + -13.223677635192871 + ], + [ + "▁Fisheries", + -13.223807334899902 + ], + [ + "▁suture", + -13.223872184753418 + ], + [ + "kamagra", + -13.223888397216797 + ], + [ + "▁Backpack", + -13.223955154418945 + ], + [ + "Create", + -13.22399616241455 + ], + [ + "▁phosphorus", + -13.22411060333252 + ], + [ + "▁Inquiry", + -13.224117279052734 + ], + [ + "▁Horton", + -13.224227905273438 + ], + [ + "▁improperly", + -13.224230766296387 + ], + [ + "▁grieving", + -13.224238395690918 + ], + [ + "creation", + -13.224376678466797 + ], + [ + "▁iCloud", + -13.224376678466797 + ], + [ + "Arm", + -13.224481582641602 + ], + [ + "▁Adoption", + -13.224729537963867 + ], + [ + "▁stature", + -13.224760055541992 + ], + [ + "▁hierarchical", + -13.224782943725586 + ], + [ + "▁armchair", + -13.22488784790039 + ], + [ + "▁soloist", + -13.224926948547363 + ], + [ + "690", + -13.225056648254395 + ], + [ + "CSF", + -13.22507381439209 + ], + [ + "▁Conway", + -13.225191116333008 + ], + [ + "▁delectable", + -13.225232124328613 + ], + [ + "▁biomarker", + -13.225234985351562 + ], + [ + "▁401(", + -13.225427627563477 + ], + [ + "▁gymnastics", + -13.225462913513184 + ], + [ + "90,000", + -13.225484848022461 + ], + [ + "activated", + -13.22553825378418 + ], + [ + "Wave", + -13.225567817687988 + ], + [ + "▁Karma", + -13.225848197937012 + ], + [ + "plugging", + -13.22606086730957 + ], + [ + "▁Cartridge", + -13.226064682006836 + ], + [ + "2.5%", + -13.226212501525879 + ], + [ + "wrap", + -13.226370811462402 + ], + [ + "▁nutshell", + -13.226490020751953 + ], + [ + "▁Mosaic", + -13.227033615112305 + ], + [ + "▁cladding", + -13.22704792022705 + ], + [ + "▁pronoun", + -13.22706127166748 + ], + [ + "▁Asheville", + -13.227367401123047 + ], + [ + "Nearby", + -13.227417945861816 + ], + [ + "▁Classification", + -13.227437019348145 + ], + [ + "▁NVIDIA", + -13.227476119995117 + ], + [ + "▁pancreatic", + -13.227587699890137 + ], + [ + "▁Hurry", + -13.227609634399414 + ], + [ + "sample", + -13.227694511413574 + ], + [ + "Science", + -13.227701187133789 + ], + [ + "▁Shutter", + -13.227794647216797 + ], + [ + "ght", + -13.227829933166504 + ], + [ + "▁constipation", + -13.227925300598145 + ], + [ + "▁Sculpture", + -13.227948188781738 + ], + [ + "▁Mapping", + -13.227952003479004 + ], + [ + "▁Centennial", + -13.228060722351074 + ], + [ + "▁arterial", + -13.228158950805664 + ], + [ + "▁choreography", + -13.228171348571777 + ], + [ + "▁Admit", + -13.22818660736084 + ], + [ + "▁salute", + -13.228267669677734 + ], + [ + "▁Loose", + -13.228285789489746 + ], + [ + "▁tuberculosis", + -13.228487968444824 + ], + [ + "▁sensual", + -13.22854232788086 + ], + [ + "▁Armour", + -13.228610038757324 + ], + [ + "▁shabby", + -13.22871208190918 + ], + [ + "▁ASEAN", + -13.228742599487305 + ], + [ + "Report", + -13.228865623474121 + ], + [ + "▁Leap", + -13.228867530822754 + ], + [ + "▁arrogant", + -13.228937149047852 + ], + [ + "▁Ibrahim", + -13.228939056396484 + ], + [ + "▁Voting", + -13.229156494140625 + ], + [ + "Anybody", + -13.22933292388916 + ], + [ + "▁spooky", + -13.229337692260742 + ], + [ + "silver", + -13.229394912719727 + ], + [ + "▁victorious", + -13.229466438293457 + ], + [ + "placement", + -13.229473114013672 + ], + [ + "▁Predator", + -13.229769706726074 + ], + [ + "Wood", + -13.22983455657959 + ], + [ + "▁Confirm", + -13.229939460754395 + ], + [ + "Force", + -13.229972839355469 + ], + [ + "culmination", + -13.230066299438477 + ], + [ + "▁Orion", + -13.230081558227539 + ], + [ + "harmed", + -13.230269432067871 + ], + [ + "▁Journalist", + -13.230375289916992 + ], + [ + "402", + -13.230443000793457 + ], + [ + "agio", + -13.230493545532227 + ], + [ + "▁Verified", + -13.230607986450195 + ], + [ + "▁Mystic", + -13.230658531188965 + ], + [ + "▁Wander", + -13.230714797973633 + ], + [ + "▁jargon", + -13.230751991271973 + ], + [ + "▁turbulent", + -13.230852127075195 + ], + [ + "▁Secretariat", + -13.231078147888184 + ], + [ + "▁triangular", + -13.231078147888184 + ], + [ + "▁Smithsonian", + -13.2310791015625 + ], + [ + "LIM", + -13.231375694274902 + ], + [ + "▁marquee", + -13.231417655944824 + ], + [ + "▁preseason", + -13.231528282165527 + ], + [ + "▁submerged", + -13.23164176940918 + ], + [ + "shield", + -13.23166561126709 + ], + [ + "▁enlightenment", + -13.231714248657227 + ], + [ + "paul", + -13.231745719909668 + ], + [ + "ар", + -13.231778144836426 + ], + [ + "▁Chili", + -13.23189926147461 + ], + [ + "▁mommy", + -13.232253074645996 + ], + [ + "▁servo", + -13.232263565063477 + ], + [ + "▁chickpea", + -13.232327461242676 + ], + [ + "millimeter", + -13.232332229614258 + ], + [ + "▁clap", + -13.232401847839355 + ], + [ + "conveyed", + -13.232547760009766 + ], + [ + "▁motherhood", + -13.232787132263184 + ], + [ + "variate", + -13.232843399047852 + ], + [ + "▁Cameroon", + -13.232888221740723 + ], + [ + "▁KPI", + -13.232935905456543 + ], + [ + "▁Mushroom", + -13.232996940612793 + ], + [ + "▁Sauvignon", + -13.233109474182129 + ], + [ + "▁leukemia", + -13.233109474182129 + ], + [ + "▁WEB", + -13.233110427856445 + ], + [ + "▁Trout", + -13.233247756958008 + ], + [ + "▁Judah", + -13.233336448669434 + ], + [ + "1.00", + -13.233384132385254 + ], + [ + "▁Lydia", + -13.233458518981934 + ], + [ + "Ven", + -13.233512878417969 + ], + [ + "▁Poverty", + -13.233675003051758 + ], + [ + "Visiting", + -13.23367977142334 + ], + [ + "▁purify", + -13.233757972717285 + ], + [ + "▁phishing", + -13.234354019165039 + ], + [ + "▁Newfoundland", + -13.234466552734375 + ], + [ + "▁crayon", + -13.234468460083008 + ], + [ + "figuration", + -13.234537124633789 + ], + [ + "▁figurative", + -13.234807014465332 + ], + [ + "▁Atlantis", + -13.234807968139648 + ], + [ + "▁oxidative", + -13.235145568847656 + ], + [ + "▁Useful", + -13.235285758972168 + ], + [ + "industrial", + -13.235390663146973 + ], + [ + "▁rota", + -13.2354154586792 + ], + [ + "QT", + -13.235454559326172 + ], + [ + "▁£30", + -13.23552417755127 + ], + [ + "▁Barbados", + -13.235722541809082 + ], + [ + "▁skipper", + -13.235742568969727 + ], + [ + "▁Abbas", + -13.235796928405762 + ], + [ + "▁Motorsport", + -13.235798835754395 + ], + [ + "▁:-)", + -13.23606014251709 + ], + [ + "▁Bistro", + -13.236096382141113 + ], + [ + "▁brink", + -13.236166954040527 + ], + [ + "▁infantry", + -13.236172676086426 + ], + [ + "▁betrayal", + -13.236260414123535 + ], + [ + "▁ORDER", + -13.236308097839355 + ], + [ + "▁responsiveness", + -13.236388206481934 + ], + [ + "▁Psychiatry", + -13.236618995666504 + ], + [ + "▁Locate", + -13.236796379089355 + ], + [ + "▁bottleneck", + -13.237052917480469 + ], + [ + "▁punctual", + -13.23707389831543 + ], + [ + "EAST", + -13.237170219421387 + ], + [ + "▁Hoover", + -13.237181663513184 + ], + [ + "▁Stafford", + -13.237201690673828 + ], + [ + "▁cognition", + -13.237299919128418 + ], + [ + "DAN", + -13.237616539001465 + ], + [ + "▁Forensic", + -13.237876892089844 + ], + [ + "gado", + -13.237966537475586 + ], + [ + "Heart", + -13.238032341003418 + ], + [ + "▁aerosol", + -13.238119125366211 + ], + [ + "customer", + -13.238142013549805 + ], + [ + "euro", + -13.238326072692871 + ], + [ + "MISSION", + -13.238348960876465 + ], + [ + "▁detour", + -13.23836612701416 + ], + [ + "▁Polaris", + -13.238443374633789 + ], + [ + "death", + -13.238463401794434 + ], + [ + "▁EVENT", + -13.238567352294922 + ], + [ + "▁Harlem", + -13.238710403442383 + ], + [ + "▁AFTER", + -13.238724708557129 + ], + [ + "▁Synthetic", + -13.238776206970215 + ], + [ + "James", + -13.238804817199707 + ], + [ + "ikki", + -13.238893508911133 + ], + [ + "▁duplication", + -13.23892879486084 + ], + [ + "▁Bucket", + -13.238944053649902 + ], + [ + "▁biochemical", + -13.238993644714355 + ], + [ + "▁Sapphire", + -13.239116668701172 + ], + [ + "▁caretaker", + -13.239130973815918 + ], + [ + "Biblio", + -13.239394187927246 + ], + [ + "furniture", + -13.23949146270752 + ], + [ + "▁fav", + -13.239583969116211 + ], + [ + "▁unnatural", + -13.239705085754395 + ], + [ + "▁Shack", + -13.239846229553223 + ], + [ + "Evangeli", + -13.23991870880127 + ], + [ + "mpson", + -13.24002456665039 + ], + [ + "▁pagan", + -13.240062713623047 + ], + [ + "▁Acres", + -13.240070343017578 + ], + [ + "▁Spoke", + -13.240246772766113 + ], + [ + "▁confection", + -13.240595817565918 + ], + [ + "293", + -13.240626335144043 + ], + [ + "▁Splash", + -13.240631103515625 + ], + [ + "Brown", + -13.240641593933105 + ], + [ + "▁chinese", + -13.241195678710938 + ], + [ + "▁contentious", + -13.2412748336792 + ], + [ + "▁Serena", + -13.2413330078125 + ], + [ + "▁Kapoor", + -13.241333961486816 + ], + [ + "witnessing", + -13.241473197937012 + ], + [ + "▁Cavalier", + -13.241508483886719 + ], + [ + "▁Salary", + -13.241578102111816 + ], + [ + "▁Cancellation", + -13.241633415222168 + ], + [ + "=>", + -13.24167251586914 + ], + [ + "525", + -13.241720199584961 + ], + [ + "▁Clair", + -13.24185848236084 + ], + [ + "BAT", + -13.241917610168457 + ], + [ + "▁Congregation", + -13.242076873779297 + ], + [ + "▁peppermint", + -13.24207878112793 + ], + [ + "rky", + -13.242135047912598 + ], + [ + "▁Satisfaction", + -13.242191314697266 + ], + [ + "▁Mahal", + -13.242216110229492 + ], + [ + "▁Everett", + -13.242698669433594 + ], + [ + "▁Patron", + -13.24273681640625 + ], + [ + "▁manganese", + -13.242761611938477 + ], + [ + "▁spout", + -13.242907524108887 + ], + [ + "honorary", + -13.242924690246582 + ], + [ + "▁Byrne", + -13.242951393127441 + ], + [ + "▁Kiev", + -13.24295425415039 + ], + [ + "▁philanthropy", + -13.242989540100098 + ], + [ + "▁Yellowstone", + -13.243056297302246 + ], + [ + "▁artifact", + -13.243110656738281 + ], + [ + "666", + -13.243111610412598 + ], + [ + "▁Galway", + -13.243179321289062 + ], + [ + "▁conferencing", + -13.243331909179688 + ], + [ + "▁Dickens", + -13.243926048278809 + ], + [ + "▁campfire", + -13.24409294128418 + ], + [ + "▁Cumberland", + -13.244359970092773 + ], + [ + "▁underwriting", + -13.244677543640137 + ], + [ + "▁Samoa", + -13.244723320007324 + ], + [ + "frag", + -13.244745254516602 + ], + [ + "▁JOHN", + -13.244817733764648 + ], + [ + "▁fluff", + -13.244940757751465 + ], + [ + "dispensing", + -13.244942665100098 + ], + [ + "▁Adviser", + -13.245064735412598 + ], + [ + "manufacture", + -13.24511432647705 + ], + [ + "▁Divi", + -13.245116233825684 + ], + [ + "▁burge", + -13.245190620422363 + ], + [ + "▁Hawkins", + -13.2453031539917 + ], + [ + "Util", + -13.245342254638672 + ], + [ + "▁kennel", + -13.245401382446289 + ], + [ + "▁lesion", + -13.245466232299805 + ], + [ + "▁Mosque", + -13.24560832977295 + ], + [ + "▁punctuation", + -13.245617866516113 + ], + [ + "▁prowess", + -13.245734214782715 + ], + [ + "penetrating", + -13.24584674835205 + ], + [ + "▁climax", + -13.245847702026367 + ], + [ + "▁Squadron", + -13.245963096618652 + ], + [ + "cton", + -13.246014595031738 + ], + [ + "▁birthplace", + -13.246464729309082 + ], + [ + "▁Memories", + -13.246588706970215 + ], + [ + "▁abruptly", + -13.24673080444336 + ], + [ + "stee", + -13.246752738952637 + ], + [ + "▁sinister", + -13.246767044067383 + ], + [ + "▁meatballs", + -13.247004508972168 + ], + [ + "▁Plasma", + -13.247098922729492 + ], + [ + "▁Taipei", + -13.247106552124023 + ], + [ + "▁WEBSITE", + -13.247106552124023 + ], + [ + "▁revolt", + -13.247115135192871 + ], + [ + "▁symbolism", + -13.247573852539062 + ], + [ + "▁microbes", + -13.247627258300781 + ], + [ + "▁vigorously", + -13.247633934020996 + ], + [ + "▁rafting", + -13.247802734375 + ], + [ + "334", + -13.247889518737793 + ], + [ + "▁Kurdish", + -13.248153686523438 + ], + [ + "▁forearm", + -13.2483491897583 + ], + [ + "hydrating", + -13.248397827148438 + ], + [ + "Snip", + -13.248400688171387 + ], + [ + "▁fascia", + -13.248716354370117 + ], + [ + "13%", + -13.248723983764648 + ], + [ + "faceted", + -13.248791694641113 + ], + [ + "▁Diocese", + -13.24882698059082 + ], + [ + "nuncia", + -13.248865127563477 + ], + [ + "distribution", + -13.248907089233398 + ], + [ + "▁Fax", + -13.248970985412598 + ], + [ + "Update", + -13.249006271362305 + ], + [ + "Natal", + -13.249185562133789 + ], + [ + "Whoever", + -13.24936580657959 + ], + [ + "▁Overseas", + -13.249439239501953 + ], + [ + "▁persecut", + -13.24953556060791 + ], + [ + "▁receptionist", + -13.249601364135742 + ], + [ + "▁Merrill", + -13.249871253967285 + ], + [ + "vapor", + -13.249876976013184 + ], + [ + "▁orbital", + -13.249998092651367 + ], + [ + "allergenic", + -13.250295639038086 + ], + [ + "darkest", + -13.250349998474121 + ], + [ + "▁larvae", + -13.250550270080566 + ], + [ + "▁gorge", + -13.250564575195312 + ], + [ + "quick", + -13.250755310058594 + ], + [ + "pulse", + -13.250868797302246 + ], + [ + "BIO", + -13.250911712646484 + ], + [ + "▁Clemson", + -13.251009941101074 + ], + [ + "273", + -13.251124382019043 + ], + [ + "Lib", + -13.251152992248535 + ], + [ + "FORD", + -13.251233100891113 + ], + [ + "▁fruition", + -13.251261711120605 + ], + [ + "▁panda", + -13.251312255859375 + ], + [ + "▁sedation", + -13.251330375671387 + ], + [ + "purported", + -13.251363754272461 + ], + [ + "bry", + -13.251421928405762 + ], + [ + "titis", + -13.251446723937988 + ], + [ + "nuclear", + -13.25145149230957 + ], + [ + "▁Intensive", + -13.251470565795898 + ], + [ + "▁knack", + -13.251472473144531 + ], + [ + "▁Sociology", + -13.251598358154297 + ], + [ + "▁ambiguity", + -13.251700401306152 + ], + [ + "calibrated", + -13.252035140991211 + ], + [ + "▁Rutgers", + -13.252392768859863 + ], + [ + "beautify", + -13.25242805480957 + ], + [ + "▁Advocacy", + -13.252507209777832 + ], + [ + "entino", + -13.252674102783203 + ], + [ + "▁paranormal", + -13.25269603729248 + ], + [ + "▁Texture", + -13.25273323059082 + ], + [ + "▁Cellular", + -13.252840042114258 + ], + [ + "▁cardinal", + -13.253016471862793 + ], + [ + "shima", + -13.253039360046387 + ], + [ + "uarant", + -13.253170013427734 + ], + [ + "▁Aluminium", + -13.253198623657227 + ], + [ + "Mom", + -13.253543853759766 + ], + [ + "▁Brennan", + -13.253549575805664 + ], + [ + "▁custard", + -13.25365924835205 + ], + [ + "▁Norris", + -13.253668785095215 + ], + [ + "▁Solicitor", + -13.253776550292969 + ], + [ + "thermal", + -13.25380802154541 + ], + [ + "slammed", + -13.253817558288574 + ], + [ + "▁torso", + -13.253881454467773 + ], + [ + "▁unrestricted", + -13.253890037536621 + ], + [ + "▁plummet", + -13.253966331481934 + ], + [ + "▁applause", + -13.254005432128906 + ], + [ + "▁allotment", + -13.25412654876709 + ], + [ + "▁Asphalt", + -13.254132270812988 + ], + [ + "omato", + -13.254217147827148 + ], + [ + "▁Addition", + -13.25428295135498 + ], + [ + "yros", + -13.254495620727539 + ], + [ + "▁microfiber", + -13.254633903503418 + ], + [ + "▁Gather", + -13.254849433898926 + ], + [ + "▁cropped", + -13.254968643188477 + ], + [ + "Food", + -13.255074501037598 + ], + [ + "▁Welch", + -13.255168914794922 + ], + [ + "Muslim", + -13.255207061767578 + ], + [ + "▁simplifie", + -13.255250930786133 + ], + [ + "▁Sidney", + -13.255407333374023 + ], + [ + "▁oncology", + -13.255494117736816 + ], + [ + "▁Majesty", + -13.255507469177246 + ], + [ + "▁intruder", + -13.255634307861328 + ], + [ + "▁Dialogue", + -13.255871772766113 + ], + [ + "▁modifier", + -13.255901336669922 + ], + [ + "▁chopping", + -13.256043434143066 + ], + [ + "menstrual", + -13.256089210510254 + ], + [ + "▁Activate", + -13.256107330322266 + ], + [ + "▁genotype", + -13.256200790405273 + ], + [ + "▁Personality", + -13.256226539611816 + ], + [ + "▁commenc", + -13.256282806396484 + ], + [ + "cordless", + -13.256311416625977 + ], + [ + "▁shortfall", + -13.256317138671875 + ], + [ + "▁counsellor", + -13.256319046020508 + ], + [ + "▁muse", + -13.256429672241211 + ], + [ + "Multi", + -13.256451606750488 + ], + [ + "▁1903", + -13.256567001342773 + ], + [ + "▁GOLD", + -13.256673812866211 + ], + [ + "▁Fowler", + -13.25678539276123 + ], + [ + "NIGHT", + -13.25678825378418 + ], + [ + "▁Jessie", + -13.25688648223877 + ], + [ + "▁Manufactured", + -13.256946563720703 + ], + [ + "▁Vapor", + -13.257312774658203 + ], + [ + "enriching", + -13.257428169250488 + ], + [ + "▁Teenage", + -13.257500648498535 + ], + [ + "knuckle", + -13.257589340209961 + ], + [ + "▁Dundee", + -13.257590293884277 + ], + [ + "▁pardon", + -13.257622718811035 + ], + [ + "▁Hutch", + -13.257680892944336 + ], + [ + "▁Alleg", + -13.257838249206543 + ], + [ + "DRED", + -13.25789737701416 + ], + [ + "▁Brought", + -13.257977485656738 + ], + [ + "▁doughnut", + -13.258045196533203 + ], + [ + "KIN", + -13.25806999206543 + ], + [ + "▁affirmative", + -13.258108139038086 + ], + [ + "▁1904", + -13.258201599121094 + ], + [ + "▁1861", + -13.258212089538574 + ], + [ + "▁hospitalized", + -13.258228302001953 + ], + [ + "▁LOOK", + -13.258230209350586 + ], + [ + "Coin", + -13.258284568786621 + ], + [ + "progress", + -13.258321762084961 + ], + [ + "taxable", + -13.258383750915527 + ], + [ + "▁solitude", + -13.258406639099121 + ], + [ + "▁degeneration", + -13.258453369140625 + ], + [ + "▁biodegradable", + -13.258528709411621 + ], + [ + "▁Parsons", + -13.258565902709961 + ], + [ + "▁ultrasonic", + -13.258984565734863 + ], + [ + "▁Heathrow", + -13.259042739868164 + ], + [ + "▁Nguyen", + -13.259096145629883 + ], + [ + "5-9", + -13.259100914001465 + ], + [ + "surgery", + -13.25920581817627 + ], + [ + "▁Chiang", + -13.259232521057129 + ], + [ + "▁homosexual", + -13.2593355178833 + ], + [ + "▁WHERE", + -13.259350776672363 + ], + [ + "▁Took", + -13.259357452392578 + ], + [ + "▁broom", + -13.259432792663574 + ], + [ + "▁serpent", + -13.259469032287598 + ], + [ + "▁$1.2", + -13.259471893310547 + ], + [ + "vore", + -13.259552955627441 + ], + [ + "Daniel", + -13.25973892211914 + ], + [ + "▁resemblance", + -13.25979232788086 + ], + [ + "▁ninja", + -13.260143280029297 + ], + [ + "consumer", + -13.260255813598633 + ], + [ + "▁yum", + -13.26042652130127 + ], + [ + "However", + -13.260472297668457 + ], + [ + "▁Ahmedabad", + -13.260489463806152 + ], + [ + "▁reversing", + -13.260491371154785 + ], + [ + "▁CUSTOM", + -13.260604858398438 + ], + [ + "▁Compound", + -13.260663986206055 + ], + [ + "ATIVE", + -13.261273384094238 + ], + [ + "▁Eucharist", + -13.261419296264648 + ], + [ + "▁+/-", + -13.261518478393555 + ], + [ + "▁Peggy", + -13.261567115783691 + ], + [ + "▁Attraction", + -13.261659622192383 + ], + [ + "▁bloodstream", + -13.261817932128906 + ], + [ + "▁Infinite", + -13.261882781982422 + ], + [ + "▁impair", + -13.262002944946289 + ], + [ + "▁inverted", + -13.26202392578125 + ], + [ + "▁woodwork", + -13.262066841125488 + ], + [ + "▁fiduciary", + -13.262348175048828 + ], + [ + "ilty", + -13.262648582458496 + ], + [ + "intrusive", + -13.262706756591797 + ], + [ + "▁nfl", + -13.262993812561035 + ], + [ + "▁Ordinary", + -13.263046264648438 + ], + [ + "▁ancestral", + -13.263046264648438 + ], + [ + "▁Diaz", + -13.26307201385498 + ], + [ + "▁Laminate", + -13.263226509094238 + ], + [ + "▁repaint", + -13.263229370117188 + ], + [ + "▁skyscraper", + -13.263279914855957 + ], + [ + "▁particulate", + -13.263396263122559 + ], + [ + "▁audible", + -13.26340389251709 + ], + [ + "▁Trauma", + -13.26343059539795 + ], + [ + "▁Exceptional", + -13.263679504394531 + ], + [ + "swapping", + -13.263705253601074 + ], + [ + "▁Stag", + -13.263763427734375 + ], + [ + "▁Vanguard", + -13.263851165771484 + ], + [ + "▁Frag", + -13.263922691345215 + ], + [ + "restricting", + -13.264154434204102 + ], + [ + "▁conspir", + -13.264352798461914 + ], + [ + "▁Gaga", + -13.264411926269531 + ], + [ + "▁Effort", + -13.264564514160156 + ], + [ + "Week", + -13.264585494995117 + ], + [ + "▁Broadband", + -13.264678955078125 + ], + [ + "▁fairway", + -13.26476764678955 + ], + [ + "adap", + -13.264801979064941 + ], + [ + "▁[...]", + -13.264801979064941 + ], + [ + "▁Mention", + -13.264826774597168 + ], + [ + "loan", + -13.264842987060547 + ], + [ + "▁nonlinear", + -13.26485538482666 + ], + [ + "262", + -13.265057563781738 + ], + [ + "▁recieve", + -13.26514720916748 + ], + [ + "▁bibliography", + -13.26526165008545 + ], + [ + "▁Marijuana", + -13.265495300292969 + ], + [ + "▁dissect", + -13.265522956848145 + ], + [ + "goes", + -13.265608787536621 + ], + [ + "Attendees", + -13.26585865020752 + ], + [ + "focal", + -13.266085624694824 + ], + [ + "▁Lombard", + -13.266312599182129 + ], + [ + "▁prosthetic", + -13.266312599182129 + ], + [ + "▁segregation", + -13.266312599182129 + ], + [ + "Lite", + -13.26639461517334 + ], + [ + "▁Madness", + -13.266745567321777 + ], + [ + "▁Assassin", + -13.266782760620117 + ], + [ + "▁Significant", + -13.266796112060547 + ], + [ + "PLIED", + -13.266825675964355 + ], + [ + "▁eateries", + -13.266921997070312 + ], + [ + "SOP", + -13.26708984375 + ], + [ + "▁raisins", + -13.267365455627441 + ], + [ + "▁Gupta", + -13.267485618591309 + ], + [ + "▁Homemade", + -13.267589569091797 + ], + [ + "disproportionate", + -13.26767349243164 + ], + [ + "▁Irrigation", + -13.267831802368164 + ], + [ + "▁Hicks", + -13.267897605895996 + ], + [ + "airtight", + -13.268031120300293 + ], + [ + "manipulating", + -13.268065452575684 + ], + [ + "Digital", + -13.268106460571289 + ], + [ + "▁antidepressant", + -13.26844596862793 + ], + [ + "abiding", + -13.268521308898926 + ], + [ + "▁McLaren", + -13.268534660339355 + ], + [ + "▁Petition", + -13.268790245056152 + ], + [ + "Lead", + -13.268867492675781 + ], + [ + "▁Circular", + -13.26891803741455 + ], + [ + "▁concur", + -13.26894760131836 + ], + [ + "▁Mansfield", + -13.269279479980469 + ], + [ + "▁seaweed", + -13.269309997558594 + ], + [ + "▁Julius", + -13.269380569458008 + ], + [ + "subscribe", + -13.269410133361816 + ], + [ + "getting", + -13.269676208496094 + ], + [ + "16%", + -13.269715309143066 + ], + [ + "▁Implement", + -13.2697172164917 + ], + [ + "VOL", + -13.269756317138672 + ], + [ + "▁Hayden", + -13.269926071166992 + ], + [ + "▁Evelyn", + -13.270186424255371 + ], + [ + "▁mahogany", + -13.270292282104492 + ], + [ + "Xperia", + -13.27043342590332 + ], + [ + "▁paddling", + -13.270483016967773 + ], + [ + "softened", + -13.270553588867188 + ], + [ + "▁devour", + -13.27074146270752 + ], + [ + "▁DISC", + -13.270801544189453 + ], + [ + "macrophage", + -13.270880699157715 + ], + [ + "▁glean", + -13.271262168884277 + ], + [ + "▁Elastic", + -13.271391868591309 + ], + [ + "▁calves", + -13.271533966064453 + ], + [ + "4.99", + -13.271561622619629 + ], + [ + "▁nourishment", + -13.271610260009766 + ], + [ + "▁juror", + -13.271651268005371 + ], + [ + "French", + -13.271986961364746 + ], + [ + "▁granola", + -13.272171020507812 + ], + [ + "▁Eternal", + -13.272442817687988 + ], + [ + "strength", + -13.272459030151367 + ], + [ + "▁bagel", + -13.272597312927246 + ], + [ + "▁Beech", + -13.272627830505371 + ], + [ + "▁Conveyor", + -13.272640228271484 + ], + [ + "Nearest", + -13.272696495056152 + ], + [ + "MEM", + -13.272936820983887 + ], + [ + "specifying", + -13.272954940795898 + ], + [ + "▁CONDITION", + -13.273110389709473 + ], + [ + "▁comrade", + -13.273454666137695 + ], + [ + "▁complicate", + -13.273480415344238 + ], + [ + "mik", + -13.27363395690918 + ], + [ + "▁Detox", + -13.273642539978027 + ], + [ + "▁Citrus", + -13.273702621459961 + ], + [ + "▁Observation", + -13.273719787597656 + ], + [ + "stud", + -13.27408218383789 + ], + [ + "▁hardworking", + -13.274083137512207 + ], + [ + "▁Swap", + -13.274133682250977 + ], + [ + "▁Presence", + -13.274316787719727 + ], + [ + "▁AdWords", + -13.274523735046387 + ], + [ + "▁Lagoon", + -13.274526596069336 + ], + [ + "clashes", + -13.274580955505371 + ], + [ + "AML", + -13.274616241455078 + ], + [ + "Anti", + -13.274656295776367 + ], + [ + "▁chipped", + -13.274731636047363 + ], + [ + "▁Snapdragon", + -13.274876594543457 + ], + [ + "▁misplaced", + -13.274877548217773 + ], + [ + "▁clipart", + -13.275080680847168 + ], + [ + "▁veranda", + -13.275176048278809 + ], + [ + "▁geothermal", + -13.27524185180664 + ], + [ + "▁cosplay", + -13.275632858276367 + ], + [ + "ас", + -13.275663375854492 + ], + [ + "Rom", + -13.275884628295898 + ], + [ + "informing", + -13.275983810424805 + ], + [ + "▁LEED", + -13.276089668273926 + ], + [ + "▁ROCK", + -13.27624225616455 + ], + [ + "▁Sinai", + -13.276264190673828 + ], + [ + "accumulating", + -13.276290893554688 + ], + [ + "▁Meridian", + -13.276527404785156 + ], + [ + "▁envisage", + -13.276596069335938 + ], + [ + "▁malignant", + -13.27664566040039 + ], + [ + "▁cyclist", + -13.276778221130371 + ], + [ + "▁anomalies", + -13.276881217956543 + ], + [ + "▁ransomware", + -13.276912689208984 + ], + [ + "▁Scotch", + -13.277080535888672 + ], + [ + "▁Cologne", + -13.277117729187012 + ], + [ + "▁Olympus", + -13.277117729187012 + ], + [ + "▁mathematician", + -13.277117729187012 + ], + [ + "▁Clifton", + -13.277119636535645 + ], + [ + "▁Acupuncture", + -13.277235984802246 + ], + [ + "313", + -13.277386665344238 + ], + [ + "▁Neph", + -13.277422904968262 + ], + [ + "biblio", + -13.2774658203125 + ], + [ + "CORE", + -13.277643203735352 + ], + [ + "▁Wipe", + -13.2776517868042 + ], + [ + "▁bookshelf", + -13.277762413024902 + ], + [ + "▁dispense", + -13.2777681350708 + ], + [ + "summarized", + -13.27798080444336 + ], + [ + "▁GAME", + -13.278141975402832 + ], + [ + "financial", + -13.278192520141602 + ], + [ + "▁resent", + -13.278242111206055 + ], + [ + "Stone", + -13.278284072875977 + ], + [ + "▁Eligible", + -13.278417587280273 + ], + [ + "▁deportation", + -13.278419494628906 + ], + [ + "einen", + -13.278420448303223 + ], + [ + "▁Middleton", + -13.27843189239502 + ], + [ + "▁Meredith", + -13.278654098510742 + ], + [ + "▁cynical", + -13.278654098510742 + ], + [ + "tiled", + -13.278694152832031 + ], + [ + "▁Moines", + -13.278745651245117 + ], + [ + "violent", + -13.278804779052734 + ], + [ + "▁ballroom", + -13.278858184814453 + ], + [ + "Director", + -13.278862953186035 + ], + [ + "roton", + -13.279248237609863 + ], + [ + "bearer", + -13.279292106628418 + ], + [ + "▁Cialis", + -13.279304504394531 + ], + [ + "▁Fitting", + -13.279321670532227 + ], + [ + "▁etching", + -13.279337882995605 + ], + [ + "▁dizzy", + -13.27960205078125 + ], + [ + "▁Pregnancy", + -13.279718399047852 + ], + [ + "embellished", + -13.279730796813965 + ], + [ + "Word", + -13.279751777648926 + ], + [ + "▁undocumented", + -13.279837608337402 + ], + [ + "▁crepe", + -13.279889106750488 + ], + [ + "9.8", + -13.280057907104492 + ], + [ + "medium", + -13.280241012573242 + ], + [ + "▁bale", + -13.280293464660645 + ], + [ + "9-4", + -13.280373573303223 + ], + [ + "▁microorganisms", + -13.280428886413574 + ], + [ + "▁mishap", + -13.280445098876953 + ], + [ + "WIRE", + -13.280527114868164 + ], + [ + "▁pneumatic", + -13.280548095703125 + ], + [ + "▁Knoxville", + -13.280608177185059 + ], + [ + "▁Katz", + -13.280632972717285 + ], + [ + "▁Separator", + -13.280667304992676 + ], + [ + "▁hiatus", + -13.280805587768555 + ], + [ + "▁Holden", + -13.280806541442871 + ], + [ + "southeastern", + -13.280838012695312 + ], + [ + "▁grassland", + -13.280991554260254 + ], + [ + "▁permissible", + -13.281022071838379 + ], + [ + "318", + -13.281049728393555 + ], + [ + "▁existential", + -13.281055450439453 + ], + [ + "▁Joanna", + -13.281418800354004 + ], + [ + "▁despise", + -13.281450271606445 + ], + [ + "vue", + -13.28146743774414 + ], + [ + "▁stomp", + -13.281506538391113 + ], + [ + "▁Hanover", + -13.281704902648926 + ], + [ + "▁intensify", + -13.281830787658691 + ], + [ + "▁introvert", + -13.282092094421387 + ], + [ + "▁Suburb", + -13.282288551330566 + ], + [ + "▁dialysis", + -13.282329559326172 + ], + [ + "lurking", + -13.282354354858398 + ], + [ + "sprinkled", + -13.2824125289917 + ], + [ + "▁suicidal", + -13.28245735168457 + ], + [ + "▁perish", + -13.28251838684082 + ], + [ + "▁serotonin", + -13.282564163208008 + ], + [ + "▁approximation", + -13.283039093017578 + ], + [ + "▁luminous", + -13.283172607421875 + ], + [ + "▁Alphabet", + -13.283187866210938 + ], + [ + "▁Papua", + -13.283220291137695 + ], + [ + "difference", + -13.28329849243164 + ], + [ + "22%", + -13.2833251953125 + ], + [ + "▁Invisalign", + -13.283514976501465 + ], + [ + "▁Aesthetic", + -13.28375244140625 + ], + [ + "▁Oppo", + -13.28375244140625 + ], + [ + "antha", + -13.28392505645752 + ], + [ + "▁acclimat", + -13.283935546875 + ], + [ + "▁Beethoven", + -13.283989906311035 + ], + [ + "revived", + -13.284050941467285 + ], + [ + "▁litigat", + -13.284051895141602 + ], + [ + "AGR", + -13.2840576171875 + ], + [ + "bama", + -13.2840576171875 + ], + [ + "Prince", + -13.284070014953613 + ], + [ + "▁realistically", + -13.284427642822266 + ], + [ + "▁ipad", + -13.284504890441895 + ], + [ + "LATE", + -13.284628868103027 + ], + [ + "▁CSV", + -13.284675598144531 + ], + [ + "▁Calder", + -13.284904479980469 + ], + [ + "Value", + -13.284958839416504 + ], + [ + "nominated", + -13.285050392150879 + ], + [ + "▁appreciative", + -13.285179138183594 + ], + [ + "gliding", + -13.285449028015137 + ], + [ + "▁amplification", + -13.285536766052246 + ], + [ + "▁sanction", + -13.285638809204102 + ], + [ + "▁Abdullah", + -13.285655975341797 + ], + [ + "elongated", + -13.285778999328613 + ], + [ + "folio", + -13.285969734191895 + ], + [ + "▁snowflake", + -13.28601360321045 + ], + [ + "▁Fiesta", + -13.286087989807129 + ], + [ + "▁THROUGH", + -13.28625202178955 + ], + [ + "▁endemic", + -13.286253929138184 + ], + [ + "▁fizz", + -13.286304473876953 + ], + [ + "▁astronomical", + -13.286439895629883 + ], + [ + "▁unanswered", + -13.286489486694336 + ], + [ + "▁multiplication", + -13.286498069763184 + ], + [ + "▁Kaplan", + -13.28659439086914 + ], + [ + "schedule", + -13.286831855773926 + ], + [ + "▁blanc", + -13.286957740783691 + ], + [ + "▁sightings", + -13.287014961242676 + ], + [ + "rumored", + -13.287100791931152 + ], + [ + "▁Connie", + -13.287117958068848 + ], + [ + "fig", + -13.287137031555176 + ], + [ + "▁MGM", + -13.287286758422852 + ], + [ + "behaving", + -13.2872896194458 + ], + [ + "▁boredom", + -13.287412643432617 + ], + [ + "▁pedigree", + -13.287444114685059 + ], + [ + "▁carol", + -13.287466049194336 + ], + [ + "blogspot", + -13.287487983703613 + ], + [ + "▁Seafood", + -13.287503242492676 + ], + [ + "▁deceptive", + -13.28757095336914 + ], + [ + "unconstitutional", + -13.28768253326416 + ], + [ + "▁nitrate", + -13.287683486938477 + ], + [ + "▁Pencil", + -13.288143157958984 + ], + [ + "▁Osaka", + -13.288204193115234 + ], + [ + "challenge", + -13.288216590881348 + ], + [ + "▁prescribing", + -13.288538932800293 + ], + [ + "Flotation", + -13.28860092163086 + ], + [ + "▁Keynes", + -13.288826942443848 + ], + [ + "▁autistic", + -13.288995742797852 + ], + [ + "іѕ", + -13.289214134216309 + ], + [ + "motorized", + -13.289463996887207 + ], + [ + "Job", + -13.28955364227295 + ], + [ + "317", + -13.28961181640625 + ], + [ + "606", + -13.28961181640625 + ], + [ + "▁rename", + -13.289628028869629 + ], + [ + "▁Fiscal", + -13.289831161499023 + ], + [ + "practising", + -13.289952278137207 + ], + [ + "France", + -13.290030479431152 + ], + [ + "▁subpoena", + -13.290072441101074 + ], + [ + "expanse", + -13.290074348449707 + ], + [ + "▁climatic", + -13.29013729095459 + ], + [ + "▁DVR", + -13.290202140808105 + ], + [ + "▁Forestry", + -13.290212631225586 + ], + [ + "▁foresee", + -13.290297508239746 + ], + [ + "▁Licensing", + -13.290311813354492 + ], + [ + "▁Sliding", + -13.290315628051758 + ], + [ + "magnify", + -13.290426254272461 + ], + [ + "▁Incorporated", + -13.290434837341309 + ], + [ + "honed", + -13.290507316589355 + ], + [ + "/03/", + -13.290543556213379 + ], + [ + "▁detachable", + -13.290578842163086 + ], + [ + "385", + -13.290599822998047 + ], + [ + "▁nationalism", + -13.29115104675293 + ], + [ + "▁Yukon", + -13.291155815124512 + ], + [ + "issim", + -13.291206359863281 + ], + [ + "▁Gloucester", + -13.291495323181152 + ], + [ + "▁chauffeur", + -13.291508674621582 + ], + [ + "Preparing", + -13.291625022888184 + ], + [ + "331", + -13.291704177856445 + ], + [ + "waived", + -13.29206371307373 + ], + [ + "▁participatory", + -13.292107582092285 + ], + [ + "longside", + -13.292146682739258 + ], + [ + "Pharm", + -13.29217529296875 + ], + [ + "6-6", + -13.292289733886719 + ], + [ + "▁anthropology", + -13.292380332946777 + ], + [ + "▁dermatologist", + -13.292595863342285 + ], + [ + "▁thinning", + -13.29271411895752 + ], + [ + "▁HIPAA", + -13.292947769165039 + ], + [ + "ewski", + -13.293062210083008 + ], + [ + "Parliamentary", + -13.293214797973633 + ], + [ + "▁Rhythm", + -13.293307304382324 + ], + [ + "▁condensation", + -13.293307304382324 + ], + [ + "meyer", + -13.293424606323242 + ], + [ + "▁deliberation", + -13.293427467346191 + ], + [ + "▁knockout", + -13.293746948242188 + ], + [ + "mechanical", + -13.293750762939453 + ], + [ + "▁renovate", + -13.293848991394043 + ], + [ + "▁cabling", + -13.29387092590332 + ], + [ + "▁Wharf", + -13.293892860412598 + ], + [ + "▁Habit", + -13.294212341308594 + ], + [ + "▁Wifi", + -13.294238090515137 + ], + [ + "Edited", + -13.29427433013916 + ], + [ + "longstanding", + -13.294346809387207 + ], + [ + "Women", + -13.294351577758789 + ], + [ + "▁CONTENT", + -13.29450798034668 + ], + [ + "▁constituent", + -13.29465389251709 + ], + [ + "bhu", + -13.294751167297363 + ], + [ + "▁Silence", + -13.29488754272461 + ], + [ + "goni", + -13.294923782348633 + ], + [ + "irri", + -13.294968605041504 + ], + [ + "▁Sylvia", + -13.2952299118042 + ], + [ + "▁Internship", + -13.295231819152832 + ], + [ + "operable", + -13.295392990112305 + ], + [ + "▁dreadful", + -13.295443534851074 + ], + [ + "▁Intuit", + -13.295467376708984 + ], + [ + "▁crocodile", + -13.295470237731934 + ], + [ + "invaded", + -13.295486450195312 + ], + [ + "▁Crisp", + -13.2955322265625 + ], + [ + "▁electorate", + -13.295710563659668 + ], + [ + "▁salesperson", + -13.295753479003906 + ], + [ + "shouted", + -13.295788764953613 + ], + [ + "▁Fringe", + -13.296026229858398 + ], + [ + "▁Clearance", + -13.296157836914062 + ], + [ + "▁Zimmerman", + -13.296192169189453 + ], + [ + "▁lymphoma", + -13.296308517456055 + ], + [ + "▁Majority", + -13.296445846557617 + ], + [ + "behaved", + -13.296622276306152 + ], + [ + "▁brethren", + -13.296793937683105 + ], + [ + "▁arbitra", + -13.296829223632812 + ], + [ + "▁kidnapped", + -13.296934127807617 + ], + [ + "▁Lobby", + -13.296940803527832 + ], + [ + "▁Subway", + -13.297436714172363 + ], + [ + "▁SHOULD", + -13.297516822814941 + ], + [ + "▁glaucoma", + -13.297516822814941 + ], + [ + "▁Matsu", + -13.297530174255371 + ], + [ + "▁distort", + -13.29755687713623 + ], + [ + "compliance", + -13.297685623168945 + ], + [ + "▁Combination", + -13.297879219055176 + ], + [ + "▁drool", + -13.297879219055176 + ], + [ + "terrorism", + -13.297911643981934 + ], + [ + "0-$", + -13.298020362854004 + ], + [ + "▁bridging", + -13.29811954498291 + ], + [ + "▁unintended", + -13.298361778259277 + ], + [ + "▁Neuroscience", + -13.298393249511719 + ], + [ + "▁sustainably", + -13.298395156860352 + ], + [ + "substituted", + -13.298479080200195 + ], + [ + "example", + -13.298535346984863 + ], + [ + "yog", + -13.29863452911377 + ], + [ + "▁artistry", + -13.298660278320312 + ], + [ + "▁hypnosis", + -13.298843383789062 + ], + [ + "▁mermaid", + -13.29896354675293 + ], + [ + "Detect", + -13.298986434936523 + ], + [ + "▁headband", + -13.299105644226074 + ], + [ + "9%)", + -13.29942512512207 + ], + [ + "competitive", + -13.299554824829102 + ], + [ + "▁Randolph", + -13.299567222595215 + ], + [ + "▁strenuous", + -13.299567222595215 + ], + [ + "▁counteract", + -13.299568176269531 + ], + [ + "▁tulip", + -13.29957103729248 + ], + [ + "▁impedance", + -13.299810409545898 + ], + [ + "▁Torrent", + -13.299901008605957 + ], + [ + "▁townhome", + -13.30007266998291 + ], + [ + "▁reassurance", + -13.300171852111816 + ], + [ + "brainer", + -13.300309181213379 + ], + [ + "registr", + -13.300439834594727 + ], + [ + "▁aptitude", + -13.300552368164062 + ], + [ + "▁sequin", + -13.300776481628418 + ], + [ + "▁Jennings", + -13.300777435302734 + ], + [ + "▁Coupe", + -13.300862312316895 + ], + [ + "▁iMac", + -13.30086612701416 + ], + [ + "▁monoxide", + -13.30090618133545 + ], + [ + "▁starving", + -13.300930976867676 + ], + [ + "sculpted", + -13.30093765258789 + ], + [ + "▁ripping", + -13.30097484588623 + ], + [ + "▁coffin", + -13.30102825164795 + ], + [ + "▁precaution", + -13.301046371459961 + ], + [ + "pox", + -13.301321029663086 + ], + [ + "▁faculties", + -13.301380157470703 + ], + [ + "reacted", + -13.301494598388672 + ], + [ + "▁illuminating", + -13.301501274108887 + ], + [ + "Company", + -13.301583290100098 + ], + [ + "▁Parmesan", + -13.30162239074707 + ], + [ + "▁widening", + -13.301758766174316 + ], + [ + "▁nudge", + -13.301770210266113 + ], + [ + "▁JPEG", + -13.301885604858398 + ], + [ + "Biomedical", + -13.302217483520508 + ], + [ + "▁GCSE", + -13.30228328704834 + ], + [ + "508", + -13.302526473999023 + ], + [ + "▁Pluto", + -13.30264949798584 + ], + [ + "eezy", + -13.302694320678711 + ], + [ + "▁Philippe", + -13.302740097045898 + ], + [ + "▁Mozambique", + -13.302833557128906 + ], + [ + "▁songwriting", + -13.3028564453125 + ], + [ + "▁Bought", + -13.30297565460205 + ], + [ + "▁pinnacle", + -13.303075790405273 + ], + [ + "urde", + -13.303110122680664 + ], + [ + "▁chestnut", + -13.30319881439209 + ], + [ + "▁Mastercard", + -13.303306579589844 + ], + [ + "rapping", + -13.303361892700195 + ], + [ + "▁Somewhere", + -13.303520202636719 + ], + [ + "dov", + -13.303667068481445 + ], + [ + "▁Robbins", + -13.303682327270508 + ], + [ + "ulli", + -13.303755760192871 + ], + [ + "▁tiring", + -13.303812980651855 + ], + [ + "▁snowfall", + -13.303916931152344 + ], + [ + "▁archaeologist", + -13.303924560546875 + ], + [ + "▁ceremonial", + -13.304045677185059 + ], + [ + "▁dizziness", + -13.304166793823242 + ], + [ + "▁Bryce", + -13.304286003112793 + ], + [ + "▁$250,000", + -13.304464340209961 + ], + [ + "▁Prompt", + -13.304633140563965 + ], + [ + "▁Acrobat", + -13.30465316772461 + ], + [ + "handwritten", + -13.304683685302734 + ], + [ + "success", + -13.30493450164795 + ], + [ + "leafy", + -13.304935455322266 + ], + [ + "approval", + -13.305062294006348 + ], + [ + "▁nonfiction", + -13.305086135864258 + ], + [ + "rushes", + -13.305110931396484 + ], + [ + "▁admirable", + -13.30513858795166 + ], + [ + "▁marginalized", + -13.3052339553833 + ], + [ + "▁instalment", + -13.305262565612793 + ], + [ + "appear", + -13.305310249328613 + ], + [ + "▁manicure", + -13.30532169342041 + ], + [ + "▁Relat", + -13.305341720581055 + ], + [ + "▁Joanne", + -13.305349349975586 + ], + [ + "automatic", + -13.305542945861816 + ], + [ + "▁Andhra", + -13.305639266967773 + ], + [ + "▁Fencing", + -13.305781364440918 + ], + [ + "▁Auditorium", + -13.305902481079102 + ], + [ + "▁Neptune", + -13.305988311767578 + ], + [ + "polluted", + -13.306009292602539 + ], + [ + "▁Ensuring", + -13.306118965148926 + ], + [ + "Sil", + -13.306209564208984 + ], + [ + "▁Theodore", + -13.306218147277832 + ], + [ + "▁biotech", + -13.306225776672363 + ], + [ + "▁Blanket", + -13.306245803833008 + ], + [ + "▁Caleb", + -13.306351661682129 + ], + [ + "▁Landlord", + -13.306406021118164 + ], + [ + "matically", + -13.306553840637207 + ], + [ + "storage", + -13.30656909942627 + ], + [ + "▁Collier", + -13.306635856628418 + ], + [ + "▁Stove", + -13.306660652160645 + ], + [ + "▁appraiser", + -13.306719779968262 + ], + [ + "aceae", + -13.30695915222168 + ], + [ + "registration", + -13.30699634552002 + ], + [ + "▁Anthem", + -13.307085037231445 + ], + [ + "▁Jackpot", + -13.307109832763672 + ], + [ + "408", + -13.307394027709961 + ], + [ + "▁infancy", + -13.307494163513184 + ], + [ + "sqft", + -13.307683944702148 + ], + [ + "cyl", + -13.307684898376465 + ], + [ + "▁Suspension", + -13.30769157409668 + ], + [ + "▁waitress", + -13.307927131652832 + ], + [ + "definition", + -13.308038711547852 + ], + [ + "uspicious", + -13.308100700378418 + ], + [ + "persuaded", + -13.308133125305176 + ], + [ + "▁receivable", + -13.308178901672363 + ], + [ + "▁mythical", + -13.308215141296387 + ], + [ + "iosis", + -13.308256149291992 + ], + [ + "▁Anatomy", + -13.30830192565918 + ], + [ + "▁contradictory", + -13.30830192565918 + ], + [ + "▁Corvette", + -13.308422088623047 + ], + [ + "▁devastation", + -13.308667182922363 + ], + [ + "▁chalet", + -13.30870246887207 + ], + [ + "▁Catalan", + -13.308858871459961 + ], + [ + "▁predicate", + -13.30893325805664 + ], + [ + "Product", + -13.309028625488281 + ], + [ + "Review", + -13.309094429016113 + ], + [ + "ви", + -13.30938720703125 + ], + [ + "▁musk", + -13.309462547302246 + ], + [ + "си", + -13.30961799621582 + ], + [ + "▁Hague", + -13.309673309326172 + ], + [ + "missive", + -13.309675216674805 + ], + [ + "▁Morph", + -13.309757232666016 + ], + [ + "▁lobbyist", + -13.309762954711914 + ], + [ + "▁immunization", + -13.30976390838623 + ], + [ + "▁Shenzhen", + -13.30988597869873 + ], + [ + "▁Dodd", + -13.3099365234375 + ], + [ + "▁Rodney", + -13.310118675231934 + ], + [ + "▁interrogat", + -13.310186386108398 + ], + [ + "▁devotees", + -13.310206413269043 + ], + [ + "▁Decorate", + -13.310235023498535 + ], + [ + "permeate", + -13.310243606567383 + ], + [ + "▁Tumblr", + -13.31025218963623 + ], + [ + "▁Colts", + -13.310256958007812 + ], + [ + "Tag", + -13.31030559539795 + ], + [ + "▁repentance", + -13.310320854187012 + ], + [ + "▁Seahawks", + -13.31037712097168 + ], + [ + "▁Optimis", + -13.310647964477539 + ], + [ + "atio", + -13.310763359069824 + ], + [ + "hhhh", + -13.310766220092773 + ], + [ + "▁remuneration", + -13.31086254119873 + ], + [ + "▁desperation", + -13.31098461151123 + ], + [ + "▁Sheridan", + -13.310986518859863 + ], + [ + "promise", + -13.311223030090332 + ], + [ + "▁blazing", + -13.311352729797363 + ], + [ + "▁Afri", + -13.311380386352539 + ], + [ + "▁petty", + -13.311468124389648 + ], + [ + "▁Botswana", + -13.31147289276123 + ], + [ + "▁nightstand", + -13.311599731445312 + ], + [ + "▁1902", + -13.311617851257324 + ], + [ + "▁Almighty", + -13.311717987060547 + ], + [ + "possessing", + -13.31175708770752 + ], + [ + "aqueous", + -13.312121391296387 + ], + [ + "drink", + -13.312129020690918 + ], + [ + "unrival", + -13.312263488769531 + ], + [ + "device", + -13.312451362609863 + ], + [ + "▁Malik", + -13.31245231628418 + ], + [ + "▁Apparel", + -13.312580108642578 + ], + [ + "▁Ratio", + -13.312738418579102 + ], + [ + "▁Oxygen", + -13.3128080368042 + ], + [ + "▁improv", + -13.312945365905762 + ], + [ + "▁WATER", + -13.312968254089355 + ], + [ + "▁(1997)", + -13.313067436218262 + ], + [ + "▁disgrace", + -13.313186645507812 + ], + [ + "▁Mathematical", + -13.313188552856445 + ], + [ + "▁caterpillar", + -13.313430786132812 + ], + [ + "▁samsung", + -13.313432693481445 + ], + [ + "▁Opposition", + -13.313506126403809 + ], + [ + "▁obsessive", + -13.313619613647461 + ], + [ + "▁Evergreen", + -13.313633918762207 + ], + [ + "scribing", + -13.313674926757812 + ], + [ + "▁sank", + -13.313728332519531 + ], + [ + "Michael", + -13.313759803771973 + ], + [ + "▁dunk", + -13.313797950744629 + ], + [ + "monitor", + -13.313911437988281 + ], + [ + "▁uncomplicated", + -13.313920021057129 + ], + [ + "▁Dillon", + -13.313940048217773 + ], + [ + "▁socioeconomic", + -13.314308166503906 + ], + [ + "▁munch", + -13.314350128173828 + ], + [ + "529", + -13.314393043518066 + ], + [ + "▁ballistic", + -13.314421653747559 + ], + [ + "▁Calculate", + -13.31454086303711 + ], + [ + "▁Accountability", + -13.314555168151855 + ], + [ + "▁Swarovski", + -13.314901351928711 + ], + [ + "eshwar", + -13.314958572387695 + ], + [ + "▁Lantern", + -13.314977645874023 + ], + [ + "▁Hobby", + -13.315140724182129 + ], + [ + "lotte", + -13.31536865234375 + ], + [ + "▁Ashton", + -13.315617561340332 + ], + [ + "SHALL", + -13.315743446350098 + ], + [ + "▁Quaker", + -13.315935134887695 + ], + [ + "lapping", + -13.315945625305176 + ], + [ + "▁skylight", + -13.316023826599121 + ], + [ + "▁Assam", + -13.316365242004395 + ], + [ + "▁hexagon", + -13.316373825073242 + ], + [ + "VAC", + -13.316376686096191 + ], + [ + "ishly", + -13.31643295288086 + ], + [ + "▁Massive", + -13.316462516784668 + ], + [ + "▁Familia", + -13.316741943359375 + ], + [ + "▁evade", + -13.316980361938477 + ], + [ + "▁archaeology", + -13.316987991333008 + ], + [ + "▁turret", + -13.31698989868164 + ], + [ + "racial", + -13.317015647888184 + ], + [ + "friendliness", + -13.317221641540527 + ], + [ + "▁monsoon", + -13.31723403930664 + ], + [ + "TIA", + -13.317426681518555 + ], + [ + "Travel", + -13.317463874816895 + ], + [ + "▁blunder", + -13.317521095275879 + ], + [ + "detectable", + -13.318121910095215 + ], + [ + "17%", + -13.318140029907227 + ], + [ + "▁royalties", + -13.318291664123535 + ], + [ + "subsidized", + -13.318709373474121 + ], + [ + "energize", + -13.31877326965332 + ], + [ + "805", + -13.318841934204102 + ], + [ + "Money", + -13.319043159484863 + ], + [ + "▁Madagascar", + -13.319079399108887 + ], + [ + "▁loophole", + -13.319104194641113 + ], + [ + "ORN", + -13.319141387939453 + ], + [ + "ме", + -13.319182395935059 + ], + [ + "▁adj", + -13.319229125976562 + ], + [ + "yev", + -13.31932258605957 + ], + [ + "▁robbed", + -13.319329261779785 + ], + [ + "▁Navigator", + -13.31933307647705 + ], + [ + "▁Caravan", + -13.319364547729492 + ], + [ + "utta", + -13.31943130493164 + ], + [ + "▁Incident", + -13.319585800170898 + ], + [ + "▁bloc", + -13.319607734680176 + ], + [ + "▁Hairstyles", + -13.31969928741455 + ], + [ + "Geological", + -13.319774627685547 + ], + [ + "▁Tribute", + -13.31982421875 + ], + [ + "▁Gibraltar", + -13.319941520690918 + ], + [ + "▁inventories", + -13.320145606994629 + ], + [ + "267", + -13.32017993927002 + ], + [ + "▁woes", + -13.320189476013184 + ], + [ + "000+", + -13.320257186889648 + ], + [ + "lloy", + -13.320502281188965 + ], + [ + "▁dispersion", + -13.320557594299316 + ], + [ + "spoon", + -13.320700645446777 + ], + [ + "reflect", + -13.320720672607422 + ], + [ + "▁hurl", + -13.320724487304688 + ], + [ + "▁Clover", + -13.32080364227295 + ], + [ + "▁Crimson", + -13.320805549621582 + ], + [ + "▁gib", + -13.320841789245605 + ], + [ + "GRAPH", + -13.320850372314453 + ], + [ + "▁subgroup", + -13.32085132598877 + ], + [ + "▁COMPANY", + -13.320927619934082 + ], + [ + "▁Yosemite", + -13.320927619934082 + ], + [ + "▁Whirlpool", + -13.321174621582031 + ], + [ + "▁Parisian", + -13.32133960723877 + ], + [ + "Preliminary", + -13.32142162322998 + ], + [ + "flagged", + -13.321503639221191 + ], + [ + "▁caching", + -13.32160758972168 + ], + [ + "naya", + -13.321931838989258 + ], + [ + "▁Gerry", + -13.321974754333496 + ], + [ + "military", + -13.322022438049316 + ], + [ + "▁Miya", + -13.322061538696289 + ], + [ + "▁edgy", + -13.322064399719238 + ], + [ + "▁reagent", + -13.322172164916992 + ], + [ + "cote", + -13.322175979614258 + ], + [ + "affiliate", + -13.322356224060059 + ], + [ + "▁Protective", + -13.322360038757324 + ], + [ + "▁impetu", + -13.322464942932129 + ], + [ + "▁Baxter", + -13.322534561157227 + ], + [ + "phenyl", + -13.322556495666504 + ], + [ + "Applying", + -13.322830200195312 + ], + [ + "▁Yankee", + -13.322996139526367 + ], + [ + "▁whirlpool", + -13.323034286499023 + ], + [ + "▁Catalogue", + -13.323040008544922 + ], + [ + "▁mute", + -13.323122024536133 + ], + [ + "▁Jesuit", + -13.323150634765625 + ], + [ + "▁steriliz", + -13.323187828063965 + ], + [ + "roaring", + -13.323206901550293 + ], + [ + "/05/", + -13.323224067687988 + ], + [ + "▁Salam", + -13.323274612426758 + ], + [ + "▁annoyance", + -13.323274612426758 + ], + [ + "▁pastime", + -13.323573112487793 + ], + [ + "▁Higgins", + -13.323671340942383 + ], + [ + "Removing", + -13.32377815246582 + ], + [ + "ruti", + -13.323920249938965 + ], + [ + "▁Expansion", + -13.324141502380371 + ], + [ + "▁Adaptive", + -13.324148178100586 + ], + [ + "▁Texans", + -13.324286460876465 + ], + [ + "▁resell", + -13.324362754821777 + ], + [ + "▁Metric", + -13.324374198913574 + ], + [ + "Touch", + -13.324707984924316 + ], + [ + "Manifest", + -13.324922561645508 + ], + [ + "turnkey", + -13.32504653930664 + ], + [ + "enrolling", + -13.325078964233398 + ], + [ + "▁nanoparticles", + -13.325255393981934 + ], + [ + "▁Shrine", + -13.325758934020996 + ], + [ + "tributing", + -13.325759887695312 + ], + [ + "▁wrea", + -13.325774192810059 + ], + [ + "Linguistic", + -13.325875282287598 + ], + [ + "▁apoptosis", + -13.32599925994873 + ], + [ + "▁indulgence", + -13.326054573059082 + ], + [ + "▁Bowen", + -13.32612419128418 + ], + [ + "Sunday", + -13.32614803314209 + ], + [ + "▁backlinks", + -13.32650089263916 + ], + [ + "migration", + -13.32652473449707 + ], + [ + "▁lemonade", + -13.326579093933105 + ], + [ + "Price", + -13.326611518859863 + ], + [ + "answer", + -13.32674789428711 + ], + [ + "▁Bombay", + -13.32677173614502 + ], + [ + "ocracy", + -13.326777458190918 + ], + [ + "▁BIM", + -13.326827049255371 + ], + [ + "▁Toddler", + -13.32685661315918 + ], + [ + "▁Whistler", + -13.32686710357666 + ], + [ + "▁psychotherapy", + -13.32690715789795 + ], + [ + "▁choral", + -13.326986312866211 + ], + [ + "▁anatomical", + -13.327062606811523 + ], + [ + "▁Waterfront", + -13.327139854431152 + ], + [ + "AFF", + -13.327201843261719 + ], + [ + "stabilized", + -13.327326774597168 + ], + [ + "488", + -13.327372550964355 + ], + [ + "▁feline", + -13.32763957977295 + ], + [ + "arlo", + -13.327898979187012 + ], + [ + "▁paralysis", + -13.327934265136719 + ], + [ + "▁Ernst", + -13.328027725219727 + ], + [ + "▁sludge", + -13.32811164855957 + ], + [ + "▁buggy", + -13.328163146972656 + ], + [ + "▁Exhaust", + -13.328229904174805 + ], + [ + "▁ASUS", + -13.328548431396484 + ], + [ + "eminal", + -13.328558921813965 + ], + [ + "Jesus", + -13.328683853149414 + ], + [ + "▁Patty", + -13.328866958618164 + ], + [ + "▁Announce", + -13.328998565673828 + ], + [ + "marinated", + -13.329004287719727 + ], + [ + "operated", + -13.329147338867188 + ], + [ + "nifty", + -13.329228401184082 + ], + [ + "▁802.11", + -13.329228401184082 + ], + [ + "▁synergy", + -13.329228401184082 + ], + [ + "filtr", + -13.329367637634277 + ], + [ + "▁WEEK", + -13.329395294189453 + ], + [ + "▁Skull", + -13.329408645629883 + ], + [ + "▁Anime", + -13.329602241516113 + ], + [ + "▁restructure", + -13.329639434814453 + ], + [ + "▁goggles", + -13.329851150512695 + ], + [ + "▁melon", + -13.329867362976074 + ], + [ + "inflicted", + -13.329994201660156 + ], + [ + "▁Saunders", + -13.330232620239258 + ], + [ + "thorpe", + -13.33023452758789 + ], + [ + "Suite", + -13.330334663391113 + ], + [ + "▁propeller", + -13.330395698547363 + ], + [ + "▁interfering", + -13.330474853515625 + ], + [ + "▁Chesterfield", + -13.33049201965332 + ], + [ + "ди", + -13.330504417419434 + ], + [ + "▁bubbly", + -13.330597877502441 + ], + [ + "▁mayonnaise", + -13.330597877502441 + ], + [ + "▁beets", + -13.330695152282715 + ], + [ + "▁********", + -13.331028938293457 + ], + [ + "▁Surveillance", + -13.331095695495605 + ], + [ + "▁maize", + -13.331159591674805 + ], + [ + "enac", + -13.331216812133789 + ], + [ + "▁inauguration", + -13.331220626831055 + ], + [ + "▁Aggregate", + -13.331470489501953 + ], + [ + "Matthew", + -13.331639289855957 + ], + [ + "hiv", + -13.331745147705078 + ], + [ + "Rory", + -13.33190631866455 + ], + [ + "▁Univ", + -13.331953048706055 + ], + [ + "▁deactivate", + -13.332060813903809 + ], + [ + "▁Bourbon", + -13.332098007202148 + ], + [ + "▁IDEA", + -13.332260131835938 + ], + [ + "▁viscosity", + -13.332343101501465 + ], + [ + "▁Serum", + -13.332368850708008 + ], + [ + "▁curtail", + -13.332502365112305 + ], + [ + "▁Techni", + -13.33266830444336 + ], + [ + "interoperability", + -13.332717895507812 + ], + [ + "▁0.001", + -13.332782745361328 + ], + [ + "▁plaid", + -13.332974433898926 + ], + [ + "▁Gentile", + -13.333013534545898 + ], + [ + "▁Retrieve", + -13.333062171936035 + ], + [ + "Oct", + -13.333133697509766 + ], + [ + "Street", + -13.333346366882324 + ], + [ + "▁Permission", + -13.333436965942383 + ], + [ + "▁Sergio", + -13.333468437194824 + ], + [ + "▁Osborne", + -13.33360481262207 + ], + [ + "▁Framing", + -13.333934783935547 + ], + [ + "▁Approx", + -13.333954811096191 + ], + [ + "▁odour", + -13.334096908569336 + ], + [ + "investment", + -13.334359169006348 + ], + [ + "▁millennium", + -13.334466934204102 + ], + [ + "▁pediatrician", + -13.334670066833496 + ], + [ + "▁aspirin", + -13.3347806930542 + ], + [ + "▁folklore", + -13.334882736206055 + ], + [ + "▁kiddos", + -13.334969520568848 + ], + [ + "breed", + -13.335065841674805 + ], + [ + "▁austerity", + -13.335092544555664 + ], + [ + "▁Dharma", + -13.335148811340332 + ], + [ + "franc", + -13.335187911987305 + ], + [ + "Celebrating", + -13.335217475891113 + ], + [ + "▁deformation", + -13.335219383239746 + ], + [ + "▁maximal", + -13.335237503051758 + ], + [ + "▁conquest", + -13.335284233093262 + ], + [ + "▁Watkins", + -13.33536434173584 + ], + [ + "▁misrepresent", + -13.335372924804688 + ], + [ + "▁conformity", + -13.335383415222168 + ], + [ + "▁Dirt", + -13.335652351379395 + ], + [ + "▁Delphi", + -13.335742950439453 + ], + [ + "▁$200,000", + -13.335753440856934 + ], + [ + "TIG", + -13.335822105407715 + ], + [ + "▁unmistakabl", + -13.335843086242676 + ], + [ + "11%", + -13.335871696472168 + ], + [ + "Family", + -13.335904121398926 + ], + [ + "Cop", + -13.335909843444824 + ], + [ + "defy", + -13.335968971252441 + ], + [ + "▁plating", + -13.336082458496094 + ], + [ + "▁Fulton", + -13.336119651794434 + ], + [ + "▁_____", + -13.336174964904785 + ], + [ + "▁Notwithstanding", + -13.33621883392334 + ], + [ + "▁repellent", + -13.33622932434082 + ], + [ + "▁perpendicular", + -13.336344718933105 + ], + [ + "▁obstruct", + -13.336551666259766 + ], + [ + "▁rupture", + -13.336834907531738 + ], + [ + "▁Chardonnay", + -13.336845397949219 + ], + [ + "ancillary", + -13.336847305297852 + ], + [ + "▁dopamine", + -13.336851119995117 + ], + [ + "▁Gallagher", + -13.336971282958984 + ], + [ + "▁Madonna", + -13.337098121643066 + ], + [ + "▁husk", + -13.33711051940918 + ], + [ + "▁potency", + -13.337248802185059 + ], + [ + "▁Confirmation", + -13.337288856506348 + ], + [ + "▁california", + -13.337472915649414 + ], + [ + "▁osteoporosis", + -13.337472915649414 + ], + [ + "▁scuff", + -13.337495803833008 + ], + [ + "▁keepsake", + -13.337571144104004 + ], + [ + "▁Tudor", + -13.337644577026367 + ], + [ + "▁plotting", + -13.337666511535645 + ], + [ + "conceded", + -13.337705612182617 + ], + [ + "modulate", + -13.337770462036133 + ], + [ + "▁marshal", + -13.338414192199707 + ], + [ + "wikipedia", + -13.338577270507812 + ], + [ + "▁masterful", + -13.338738441467285 + ], + [ + "▁famine", + -13.338850021362305 + ], + [ + "▁succinct", + -13.338852882385254 + ], + [ + "▁Chandelier", + -13.339104652404785 + ], + [ + "▁Cinnamon", + -13.33923053741455 + ], + [ + "▁cannabinoid", + -13.33923053741455 + ], + [ + "▁nanny", + -13.339336395263672 + ], + [ + "▁GREEN", + -13.339524269104004 + ], + [ + "▁Castel", + -13.339539527893066 + ], + [ + "▁Hamlet", + -13.339616775512695 + ], + [ + "▁Ethical", + -13.339695930480957 + ], + [ + "benefit", + -13.339736938476562 + ], + [ + "▁bassist", + -13.339962005615234 + ], + [ + "▁itineraries", + -13.340109825134277 + ], + [ + "ratified", + -13.34024429321289 + ], + [ + "▁hippo", + -13.340280532836914 + ], + [ + "religious", + -13.340291023254395 + ], + [ + "▁trope", + -13.340328216552734 + ], + [ + "▁excell", + -13.340392112731934 + ], + [ + "▁Carlisle", + -13.34048843383789 + ], + [ + "awareness", + -13.340519905090332 + ], + [ + "Latin", + -13.340542793273926 + ], + [ + "sqm", + -13.340546607971191 + ], + [ + "▁Deutsch", + -13.340668678283691 + ], + [ + "▁Multimedia", + -13.340729713439941 + ], + [ + "▁Peruvian", + -13.340739250183105 + ], + [ + "▁Shrimp", + -13.3411283493042 + ], + [ + "unnamed", + -13.341221809387207 + ], + [ + "▁Bihar", + -13.341329574584961 + ], + [ + "evacuated", + -13.341368675231934 + ], + [ + "▁MATERIAL", + -13.341872215270996 + ], + [ + "▁lull", + -13.341915130615234 + ], + [ + "▁habitual", + -13.34205436706543 + ], + [ + "ordinarily", + -13.342260360717773 + ], + [ + "▁Hostel", + -13.343071937561035 + ], + [ + "Saharan", + -13.343111991882324 + ], + [ + "▁Jehovah", + -13.343132972717285 + ], + [ + "uther", + -13.343138694763184 + ], + [ + "▁erupt", + -13.343168258666992 + ], + [ + "▁aloe", + -13.34319019317627 + ], + [ + "▁cessation", + -13.343292236328125 + ], + [ + "▁Medina", + -13.343356132507324 + ], + [ + "▁infiltrate", + -13.343384742736816 + ], + [ + "407", + -13.343451499938965 + ], + [ + "▁unnecessarily", + -13.343511581420898 + ], + [ + "OnePlus", + -13.343547821044922 + ], + [ + "Chief", + -13.343571662902832 + ], + [ + "bacterium", + -13.343576431274414 + ], + [ + "▁smuggle", + -13.343640327453613 + ], + [ + "▁Goldberg", + -13.343668937683105 + ], + [ + "▁Labrador", + -13.343673706054688 + ], + [ + "blowing", + -13.343734741210938 + ], + [ + "compliant", + -13.343826293945312 + ], + [ + "▁TAKE", + -13.344144821166992 + ], + [ + "▁beauties", + -13.344271659851074 + ], + [ + "opoulos", + -13.344282150268555 + ], + [ + "▁meadows", + -13.344505310058594 + ], + [ + "stabilizing", + -13.344521522521973 + ], + [ + "▁Greetings", + -13.344559669494629 + ], + [ + "▁Keystone", + -13.344955444335938 + ], + [ + "licious", + -13.344985961914062 + ], + [ + "sorry", + -13.345041275024414 + ], + [ + "VILLE", + -13.345054626464844 + ], + [ + "▁Surround", + -13.345070838928223 + ], + [ + "college", + -13.34509563446045 + ], + [ + "▁Dishwasher", + -13.34515380859375 + ], + [ + "THESE", + -13.345192909240723 + ], + [ + "▁cranberry", + -13.345406532287598 + ], + [ + "activation", + -13.34547233581543 + ], + [ + "Atlantic", + -13.345525741577148 + ], + [ + "▁(1996)", + -13.345536231994629 + ], + [ + "▁brigade", + -13.345659255981445 + ], + [ + "▁suitably", + -13.345705032348633 + ], + [ + "▁pelvic", + -13.34578800201416 + ], + [ + "▁Sentinel", + -13.345793724060059 + ], + [ + "▁camouflage", + -13.345890045166016 + ], + [ + "▁Reservoir", + -13.34616470336914 + ], + [ + "▁cardigan", + -13.346258163452148 + ], + [ + "▁outsole", + -13.346501350402832 + ], + [ + "▁allegiance", + -13.346545219421387 + ], + [ + "simple", + -13.346600532531738 + ], + [ + "▁synchronized", + -13.346671104431152 + ], + [ + "▁carcinogen", + -13.34667682647705 + ], + [ + "▁Larson", + -13.346918106079102 + ], + [ + "▁Scenic", + -13.34692668914795 + ], + [ + "gaard", + -13.346940994262695 + ], + [ + "▁Stockton", + -13.347081184387207 + ], + [ + "▁chile", + -13.347246170043945 + ], + [ + "▁vowel", + -13.347344398498535 + ], + [ + "reacting", + -13.347503662109375 + ], + [ + "rij", + -13.34780502319336 + ], + [ + "▁Philharmonic", + -13.348064422607422 + ], + [ + "▁repositories", + -13.348064422607422 + ], + [ + "▁precarious", + -13.348068237304688 + ], + [ + "▁Offshore", + -13.34817123413086 + ], + [ + "▁secrecy", + -13.348191261291504 + ], + [ + "LIABILITY", + -13.348211288452148 + ], + [ + "▁corona", + -13.348268508911133 + ], + [ + "▁CHRIST", + -13.34832763671875 + ], + [ + "▁Contrast", + -13.348457336425781 + ], + [ + "▁discretionary", + -13.348483085632324 + ], + [ + "▁Lightroom", + -13.348489761352539 + ], + [ + "cigarette", + -13.348620414733887 + ], + [ + "▁unquestionabl", + -13.348713874816895 + ], + [ + "▁orthodox", + -13.348967552185059 + ], + [ + "Installing", + -13.34899616241455 + ], + [ + "▁Engel", + -13.3489990234375 + ], + [ + "▁Monastery", + -13.349079132080078 + ], + [ + "criminal", + -13.349156379699707 + ], + [ + "▁savage", + -13.349238395690918 + ], + [ + "▁clinician", + -13.349394798278809 + ], + [ + "▁birch", + -13.34975814819336 + ], + [ + "▁BLUE", + -13.349766731262207 + ], + [ + "AVA", + -13.349905014038086 + ], + [ + "Ltd", + -13.349967956542969 + ], + [ + "nourished", + -13.3500394821167 + ], + [ + "unsolicited", + -13.350079536437988 + ], + [ + "▁Buhari", + -13.350152015686035 + ], + [ + "▁mule", + -13.350314140319824 + ], + [ + "▁regal", + -13.35032844543457 + ], + [ + "▁arithmetic", + -13.350349426269531 + ], + [ + "▁ultraviolet", + -13.350349426269531 + ], + [ + "disk", + -13.350564002990723 + ], + [ + "accusing", + -13.350564956665039 + ], + [ + "aksh", + -13.350604057312012 + ], + [ + "▁Cougar", + -13.350679397583008 + ], + [ + "ما", + -13.350686073303223 + ], + [ + "interpret", + -13.350844383239746 + ], + [ + "▁juggle", + -13.35091495513916 + ], + [ + "388", + -13.35095500946045 + ], + [ + "▁Computational", + -13.351112365722656 + ], + [ + "Comparing", + -13.351180076599121 + ], + [ + "▁patriarch", + -13.351239204406738 + ], + [ + "▁Anchorage", + -13.351266860961914 + ], + [ + "▁Virtu", + -13.351458549499512 + ], + [ + "▁flaming", + -13.351605415344238 + ], + [ + "▁distillery", + -13.35195541381836 + ], + [ + "▁Sinclair", + -13.352129936218262 + ], + [ + "ghu", + -13.352253913879395 + ], + [ + "dmittedly", + -13.352303504943848 + ], + [ + "▁prosecuted", + -13.352639198303223 + ], + [ + "▁incline", + -13.352675437927246 + ], + [ + "appellate", + -13.352897644042969 + ], + [ + "Earned", + -13.352973937988281 + ], + [ + "▁pyro", + -13.353018760681152 + ], + [ + "▁circumference", + -13.353020668029785 + ], + [ + "Invent", + -13.353311538696289 + ], + [ + "simo", + -13.353350639343262 + ], + [ + "▁escrow", + -13.353530883789062 + ], + [ + "▁Alright", + -13.353562355041504 + ], + [ + "▁Regency", + -13.353629112243652 + ], + [ + "▁Lumber", + -13.35378360748291 + ], + [ + "7-0", + -13.35389518737793 + ], + [ + "▁Patti", + -13.353906631469727 + ], + [ + "▁Eligibility", + -13.353913307189941 + ], + [ + "▁infertility", + -13.353913307189941 + ], + [ + "▁Dexter", + -13.353927612304688 + ], + [ + "▁macaron", + -13.353927612304688 + ], + [ + "swapped", + -13.353983879089355 + ], + [ + "▁perpetuate", + -13.35404109954834 + ], + [ + "▁landslide", + -13.354164123535156 + ], + [ + "▁Deaf", + -13.35421085357666 + ], + [ + "▁squid", + -13.354296684265137 + ], + [ + "▁Wynn", + -13.354436874389648 + ], + [ + "erupted", + -13.354488372802734 + ], + [ + "▁Suicide", + -13.354737281799316 + ], + [ + "▁prototyping", + -13.354805946350098 + ], + [ + "notoriously", + -13.354994773864746 + ], + [ + "▁tangy", + -13.355430603027344 + ], + [ + "▁Nylon", + -13.355502128601074 + ], + [ + "UEFA", + -13.355563163757324 + ], + [ + "▁Tribal", + -13.355700492858887 + ], + [ + "▁Hypno", + -13.355709075927734 + ], + [ + "▁unequal", + -13.355731964111328 + ], + [ + "▁FACT", + -13.355854988098145 + ], + [ + "▁Crosby", + -13.356097221374512 + ], + [ + "▁peroxide", + -13.356131553649902 + ], + [ + "▁Deloitte", + -13.35621166229248 + ], + [ + "approximately", + -13.356300354003906 + ], + [ + "▁Everton", + -13.356405258178711 + ], + [ + "▁Difficult", + -13.356466293334961 + ], + [ + "▁CrossFit", + -13.356473922729492 + ], + [ + "▁illustrative", + -13.35659408569336 + ], + [ + "▁Algebra", + -13.356595039367676 + ], + [ + "▁Dinosaur", + -13.356722831726074 + ], + [ + "▁Whisper", + -13.35672664642334 + ], + [ + "▁choreographer", + -13.356728553771973 + ], + [ + "▁raspberries", + -13.356850624084473 + ], + [ + "▁Greet", + -13.356954574584961 + ], + [ + "▁morphology", + -13.356986999511719 + ], + [ + "▁dilution", + -13.357029914855957 + ], + [ + "▁bravery", + -13.357097625732422 + ], + [ + "nosis", + -13.357306480407715 + ], + [ + "▁Albion", + -13.357362747192383 + ], + [ + "▁Raptor", + -13.357433319091797 + ], + [ + "/02/", + -13.357752799987793 + ], + [ + "▁luscious", + -13.35787582397461 + ], + [ + "▁dilute", + -13.357915878295898 + ], + [ + "▁Bellevue", + -13.358135223388672 + ], + [ + "passion", + -13.35816478729248 + ], + [ + "▁neutralize", + -13.358322143554688 + ], + [ + "▁Heel", + -13.358766555786133 + ], + [ + "▁parmesan", + -13.358770370483398 + ], + [ + "▁psychedelic", + -13.358770370483398 + ], + [ + "▁prism", + -13.358799934387207 + ], + [ + "▁chuckle", + -13.359026908874512 + ], + [ + "serious", + -13.359068870544434 + ], + [ + "4,500", + -13.359170913696289 + ], + [ + "▁sind", + -13.359307289123535 + ], + [ + "▁Hussein", + -13.35941219329834 + ], + [ + "▁bluff", + -13.359633445739746 + ], + [ + "18%", + -13.359663009643555 + ], + [ + "auti", + -13.359770774841309 + ], + [ + "southwestern", + -13.359830856323242 + ], + [ + "▁wholesalers", + -13.359857559204102 + ], + [ + "direction", + -13.359952926635742 + ], + [ + "rotting", + -13.360088348388672 + ], + [ + "▁Malibu", + -13.36012077331543 + ], + [ + "▁unaffected", + -13.36018180847168 + ], + [ + "▁arduous", + -13.360186576843262 + ], + [ + "▁Karachi", + -13.360200881958008 + ], + [ + "▁ingenuity", + -13.360308647155762 + ], + [ + "▁abandonment", + -13.360328674316406 + ], + [ + "▁mpg", + -13.360359191894531 + ], + [ + "hopefully", + -13.360403060913086 + ], + [ + "FREE", + -13.360523223876953 + ], + [ + "Extensive", + -13.360568046569824 + ], + [ + "doubt", + -13.360620498657227 + ], + [ + "▁sprain", + -13.360689163208008 + ], + [ + "▁acknowledgment", + -13.360822677612305 + ], + [ + "▁triathlon", + -13.360822677612305 + ], + [ + "▁Achieve", + -13.360835075378418 + ], + [ + "▁Stratford", + -13.360971450805664 + ], + [ + "mistakenly", + -13.360992431640625 + ], + [ + "proximate", + -13.361074447631836 + ], + [ + "▁censorship", + -13.361079216003418 + ], + [ + "▁movable", + -13.361291885375977 + ], + [ + "▁WARRANTY", + -13.361446380615234 + ], + [ + "▁depletion", + -13.361464500427246 + ], + [ + "inaugurated", + -13.361849784851074 + ], + [ + "▁$700", + -13.361943244934082 + ], + [ + "▁exposition", + -13.362077713012695 + ], + [ + "▁Gurgaon", + -13.362107276916504 + ], + [ + "▁MacDonald", + -13.362364768981934 + ], + [ + "▁Fac", + -13.362462043762207 + ], + [ + "▁karaoke", + -13.362493515014648 + ], + [ + "▁Weird", + -13.362508773803711 + ], + [ + "▁brainstorm", + -13.362508773803711 + ], + [ + "▁congenital", + -13.362621307373047 + ], + [ + "▁Harriet", + -13.362808227539062 + ], + [ + "reunited", + -13.362935066223145 + ], + [ + "▁Confidential", + -13.363007545471191 + ], + [ + "▁locus", + -13.363100051879883 + ], + [ + "▁Shelley", + -13.36316967010498 + ], + [ + "▁Magnolia", + -13.363367080688477 + ], + [ + "▁indebted", + -13.364039421081543 + ], + [ + "▁oscillator", + -13.364166259765625 + ], + [ + "▁pageant", + -13.364301681518555 + ], + [ + "▁gravitational", + -13.364303588867188 + ], + [ + "▁Gustav", + -13.364344596862793 + ], + [ + "▁Sherlock", + -13.364429473876953 + ], + [ + "▁snapping", + -13.36466121673584 + ], + [ + "▁stumbling", + -13.364810943603516 + ], + [ + "escalating", + -13.36493968963623 + ], + [ + "▁Dartmouth", + -13.364940643310547 + ], + [ + "▁Baroque", + -13.365201950073242 + ], + [ + "▁Bethesda", + -13.365455627441406 + ], + [ + "▁Paramount", + -13.36567211151123 + ], + [ + "▁prenatal", + -13.365802764892578 + ], + [ + "▁psoriasis", + -13.365971565246582 + ], + [ + "▁Statue", + -13.366018295288086 + ], + [ + "▁Musician", + -13.366089820861816 + ], + [ + "supervising", + -13.366177558898926 + ], + [ + "▁Senegal", + -13.366239547729492 + ], + [ + "FORT", + -13.366394996643066 + ], + [ + "customizing", + -13.366487503051758 + ], + [ + "▁Duchess", + -13.366498947143555 + ], + [ + "periodontal", + -13.366551399230957 + ], + [ + "▁Kosovo", + -13.366617202758789 + ], + [ + "▁ALSO", + -13.366654396057129 + ], + [ + "UCC", + -13.366677284240723 + ], + [ + "▁Oprah", + -13.36674690246582 + ], + [ + "▁retaliation", + -13.36676025390625 + ], + [ + "/06/", + -13.366764068603516 + ], + [ + "▁puddle", + -13.366780281066895 + ], + [ + "▁$3,000", + -13.366850852966309 + ], + [ + "▁Ronnie", + -13.366854667663574 + ], + [ + "▁shank", + -13.366907119750977 + ], + [ + "▁symmetrical", + -13.367090225219727 + ], + [ + "culminating", + -13.367115020751953 + ], + [ + "▁evocative", + -13.367392539978027 + ], + [ + "▁pleasurable", + -13.367392539978027 + ], + [ + "▁fumes", + -13.367405891418457 + ], + [ + "▁Liga", + -13.367524147033691 + ], + [ + "▁conscientious", + -13.367650985717773 + ], + [ + "▁centimeter", + -13.36765193939209 + ], + [ + "▁fiancé", + -13.367779731750488 + ], + [ + "▁insecticide", + -13.367789268493652 + ], + [ + "ски", + -13.36789321899414 + ], + [ + "▁socialism", + -13.367895126342773 + ], + [ + "▁Carlson", + -13.368022918701172 + ], + [ + "▁diaphragm", + -13.368038177490234 + ], + [ + "software", + -13.368081092834473 + ], + [ + "MANY", + -13.368175506591797 + ], + [ + "integration", + -13.368542671203613 + ], + [ + "▁tenet", + -13.368581771850586 + ], + [ + "▁GROUP", + -13.368685722351074 + ], + [ + "▁accomodat", + -13.36868953704834 + ], + [ + "▁Aquatic", + -13.369047164916992 + ], + [ + "▁Cypress", + -13.369296073913574 + ], + [ + "▁Akron", + -13.36934757232666 + ], + [ + "2.50", + -13.3694486618042 + ], + [ + "TOM", + -13.369677543640137 + ], + [ + "optimised", + -13.369688987731934 + ], + [ + "population", + -13.369770050048828 + ], + [ + "▁CGI", + -13.369799613952637 + ], + [ + "▁Chakra", + -13.369930267333984 + ], + [ + "▁Picasso", + -13.369980812072754 + ], + [ + "▁abrupt", + -13.370018005371094 + ], + [ + "Admin", + -13.370277404785156 + ], + [ + "▁nutmeg", + -13.37037181854248 + ], + [ + "▁nutritionist", + -13.37039852142334 + ], + [ + "▁McCoy", + -13.370408058166504 + ], + [ + "Board", + -13.3707275390625 + ], + [ + "▁Bournemouth", + -13.370758056640625 + ], + [ + "▁spectra", + -13.370819091796875 + ], + [ + "tannins", + -13.370885848999023 + ], + [ + "period", + -13.371085166931152 + ], + [ + "▁obligatory", + -13.371406555175781 + ], + [ + "/08/", + -13.371465682983398 + ], + [ + "deviate", + -13.371500015258789 + ], + [ + "▁Entries", + -13.3715238571167 + ], + [ + ".25\"", + -13.371601104736328 + ], + [ + "▁susceptibility", + -13.371795654296875 + ], + [ + "lution", + -13.371853828430176 + ], + [ + "▁stylistic", + -13.37189769744873 + ], + [ + "pov", + -13.372047424316406 + ], + [ + "▁valentine", + -13.37206745147705 + ], + [ + "▁Stamford", + -13.372185707092285 + ], + [ + "Reducing", + -13.372368812561035 + ], + [ + "▁balsamic", + -13.372445106506348 + ], + [ + "▁anomaly", + -13.372446060180664 + ], + [ + "▁Debate", + -13.37246322631836 + ], + [ + "▁Dungeon", + -13.372575759887695 + ], + [ + "▁corpus", + -13.372599601745605 + ], + [ + "▁concede", + -13.372727394104004 + ], + [ + "▁frenzy", + -13.372964859008789 + ], + [ + "▁Afternoon", + -13.372965812683105 + ], + [ + "▁dummy", + -13.373169898986816 + ], + [ + "▁pomegranate", + -13.373225212097168 + ], + [ + "▁subsist", + -13.373353004455566 + ], + [ + "▁Ease", + -13.373653411865234 + ], + [ + "▁Milford", + -13.37370777130127 + ], + [ + "▁Khu", + -13.37401294708252 + ], + [ + "Equipped", + -13.37414264678955 + ], + [ + "▁Drift", + -13.374420166015625 + ], + [ + "Edge", + -13.374491691589355 + ], + [ + "▁Claudia", + -13.374527931213379 + ], + [ + "computerized", + -13.374622344970703 + ], + [ + "▁Sanskrit", + -13.374786376953125 + ], + [ + "Boost", + -13.37496566772461 + ], + [ + "▁STOP", + -13.375112533569336 + ], + [ + "LIG", + -13.375136375427246 + ], + [ + "interplay", + -13.375226020812988 + ], + [ + "▁implo", + -13.3753080368042 + ], + [ + "▁Everywhere", + -13.375365257263184 + ], + [ + "▁latent", + -13.375417709350586 + ], + [ + "▁consignment", + -13.37543773651123 + ], + [ + "▁NEXT", + -13.375541687011719 + ], + [ + "▁Vinci", + -13.375541687011719 + ], + [ + "▁Voltage", + -13.375575065612793 + ], + [ + "▁ramifications", + -13.375958442687988 + ], + [ + "▁tarnish", + -13.375959396362305 + ], + [ + "▁miscellaneous", + -13.376089096069336 + ], + [ + "aligning", + -13.376103401184082 + ], + [ + "▁articulation", + -13.376229286193848 + ], + [ + "Three", + -13.376343727111816 + ], + [ + "▁Sovereign", + -13.376349449157715 + ], + [ + "evich", + -13.376479148864746 + ], + [ + "▁Tanner", + -13.376617431640625 + ], + [ + "ку", + -13.376839637756348 + ], + [ + "▁Wolverine", + -13.377001762390137 + ], + [ + "▁fumble", + -13.37723445892334 + ], + [ + "smoke", + -13.37730884552002 + ], + [ + "▁Lennon", + -13.377412796020508 + ], + [ + "elated", + -13.37755012512207 + ], + [ + "hugging", + -13.377605438232422 + ], + [ + "Electoral", + -13.377655029296875 + ], + [ + "wort", + -13.37768268585205 + ], + [ + "▁Edmond", + -13.377711296081543 + ], + [ + "▁blissful", + -13.377745628356934 + ], + [ + "/07/", + -13.378292083740234 + ], + [ + "▁Moist", + -13.378536224365234 + ], + [ + "▁gravitat", + -13.378568649291992 + ], + [ + "▁artichoke", + -13.378569602966309 + ], + [ + "000000", + -13.378661155700684 + ], + [ + "▁Kanye", + -13.378708839416504 + ], + [ + "▁Southeastern", + -13.378973007202148 + ], + [ + "propecia", + -13.379096984863281 + ], + [ + "▁slicing", + -13.379111289978027 + ], + [ + "▁parole", + -13.379165649414062 + ], + [ + "manager", + -13.37922477722168 + ], + [ + "unheard", + -13.379419326782227 + ], + [ + "assuring", + -13.379433631896973 + ], + [ + "▁Wrestling", + -13.379484176635742 + ], + [ + "▁Moose", + -13.379486083984375 + ], + [ + "▁0800", + -13.379491806030273 + ], + [ + "▁Accurate", + -13.379672050476074 + ], + [ + "▁waistband", + -13.379746437072754 + ], + [ + "▁Dickinson", + -13.379753112792969 + ], + [ + "Equally", + -13.379775047302246 + ], + [ + "MARK", + -13.38009262084961 + ], + [ + "Auth", + -13.380247116088867 + ], + [ + "▁Recall", + -13.380609512329102 + ], + [ + "▁celestial", + -13.380793571472168 + ], + [ + "supplemented", + -13.380796432495117 + ], + [ + "cramped", + -13.380914688110352 + ], + [ + "▁Cinderella", + -13.38105583190918 + ], + [ + "▁mainstay", + -13.381128311157227 + ], + [ + "▁populate", + -13.381139755249023 + ], + [ + "github", + -13.381707191467285 + ], + [ + "▁Ordinance", + -13.38171100616455 + ], + [ + "northeastern", + -13.381782531738281 + ], + [ + "everything", + -13.381854057312012 + ], + [ + "▁tentative", + -13.381964683532715 + ], + [ + "▁Tuft", + -13.381989479064941 + ], + [ + "atomic", + -13.382037162780762 + ], + [ + "▁Colombo", + -13.38210391998291 + ], + [ + "▁yoghurt", + -13.38210391998291 + ], + [ + "▁hamstring", + -13.382240295410156 + ], + [ + "▁holiness", + -13.382246971130371 + ], + [ + "▁Magistrate", + -13.382366180419922 + ], + [ + "siste", + -13.382370948791504 + ], + [ + "▁Avalon", + -13.382392883300781 + ], + [ + "ippo", + -13.382484436035156 + ], + [ + "▁trenches", + -13.382607460021973 + ], + [ + "▁prehistoric", + -13.38266658782959 + ], + [ + "fashion", + -13.382674217224121 + ], + [ + "▁Joker", + -13.382688522338867 + ], + [ + "▁picket", + -13.382804870605469 + ], + [ + "Radio", + -13.382955551147461 + ], + [ + "▁Reverend", + -13.38315486907959 + ], + [ + "collection", + -13.383228302001953 + ], + [ + "safety", + -13.383366584777832 + ], + [ + "▁magnification", + -13.383416175842285 + ], + [ + "▁SIGN", + -13.383426666259766 + ], + [ + "▁predominant", + -13.383462905883789 + ], + [ + "Content", + -13.38354206085205 + ], + [ + "▁acreage", + -13.383646965026855 + ], + [ + "▁heterogeneous", + -13.383679389953613 + ], + [ + "▁Mathew", + -13.38369369506836 + ], + [ + "▁Blizzard", + -13.383941650390625 + ], + [ + "▁oriental", + -13.384069442749023 + ], + [ + "▁Enrollment", + -13.384073257446289 + ], + [ + "▁Gorilla", + -13.384089469909668 + ], + [ + "▁Jammu", + -13.384099960327148 + ], + [ + "assessment", + -13.384149551391602 + ], + [ + "▁Gould", + -13.384166717529297 + ], + [ + "▁Attribution", + -13.38420581817627 + ], + [ + "▁dehydrated", + -13.384337425231934 + ], + [ + "▁McGill", + -13.384435653686523 + ], + [ + "sheltered", + -13.384458541870117 + ], + [ + "▁Infection", + -13.384469985961914 + ], + [ + "▁Paige", + -13.384537696838379 + ], + [ + "▁Grease", + -13.384710311889648 + ], + [ + "▁condemnation", + -13.384778022766113 + ], + [ + "▁philosophies", + -13.384861946105957 + ], + [ + "▁Segment", + -13.384908676147461 + ], + [ + "deputies", + -13.385001182556152 + ], + [ + "▁Gartner", + -13.385129928588867 + ], + [ + "▁Chattanooga", + -13.38525676727295 + ], + [ + "▁trespass", + -13.385257720947266 + ], + [ + "▁customise", + -13.385303497314453 + ], + [ + "▁abort", + -13.385416984558105 + ], + [ + "▁Freelance", + -13.385540962219238 + ], + [ + "osomal", + -13.385639190673828 + ], + [ + "bind", + -13.385760307312012 + ], + [ + "ств", + -13.385795593261719 + ], + [ + "▁Agnes", + -13.385835647583008 + ], + [ + "▁hostess", + -13.385893821716309 + ], + [ + "▁Janeiro", + -13.386103630065918 + ], + [ + "▁Wakefield", + -13.386188507080078 + ], + [ + "▁italian", + -13.386200904846191 + ], + [ + "▁facilitation", + -13.386445999145508 + ], + [ + "▁Vanderbilt", + -13.386573791503906 + ], + [ + "▁Reunion", + -13.386706352233887 + ], + [ + "criticised", + -13.386710166931152 + ], + [ + "▁conductivity", + -13.386734962463379 + ], + [ + "kota", + -13.386795043945312 + ], + [ + "▁racket", + -13.386799812316895 + ], + [ + "▁Icelandic", + -13.38683032989502 + ], + [ + "▁Stacey", + -13.386972427368164 + ], + [ + "▁politic", + -13.386972427368164 + ], + [ + "▁theorist", + -13.387168884277344 + ], + [ + "▁Confidence", + -13.387232780456543 + ], + [ + "▁cosmopolitan", + -13.387235641479492 + ], + [ + "▁Swansea", + -13.387237548828125 + ], + [ + "▁Cesar", + -13.387266159057617 + ], + [ + "annotated", + -13.387353897094727 + ], + [ + "▁Breeze", + -13.387396812438965 + ], + [ + "▁recourse", + -13.387425422668457 + ], + [ + "▁ligand", + -13.387585639953613 + ], + [ + "▁childbirth", + -13.387608528137207 + ], + [ + "Attribute", + -13.387837409973145 + ], + [ + "noise", + -13.387931823730469 + ], + [ + "▁Rotterdam", + -13.388023376464844 + ], + [ + "▁Earrings", + -13.388026237487793 + ], + [ + "spray", + -13.388094902038574 + ], + [ + "▁PURPOSE", + -13.388287544250488 + ], + [ + "▁structuring", + -13.388553619384766 + ], + [ + "▁Staples", + -13.388684272766113 + ], + [ + "▁Biotechnology", + -13.388737678527832 + ], + [ + "▁motorhome", + -13.388748168945312 + ], + [ + "▁prioritise", + -13.388864517211914 + ], + [ + "▁tavern", + -13.388947486877441 + ], + [ + "▁irritate", + -13.388973236083984 + ], + [ + "▁Scatter", + -13.389083862304688 + ], + [ + "▁gorilla", + -13.389265060424805 + ], + [ + "▁Dresses", + -13.38927936553955 + ], + [ + "▁prank", + -13.389344215393066 + ], + [ + "▁curricula", + -13.389412879943848 + ], + [ + "▁Raising", + -13.389601707458496 + ], + [ + "PRESS", + -13.389691352844238 + ], + [ + "▁winemaker", + -13.389713287353516 + ], + [ + "▁intermediary", + -13.39000415802002 + ], + [ + "▁EBITDA", + -13.390005111694336 + ], + [ + "▁Wyatt", + -13.390138626098633 + ], + [ + "▁bask", + -13.390155792236328 + ], + [ + "Place", + -13.390287399291992 + ], + [ + "▁Byzantine", + -13.390400886535645 + ], + [ + "▁Reese", + -13.390403747558594 + ], + [ + "▁Lahore", + -13.390533447265625 + ], + [ + "▁unethical", + -13.390533447265625 + ], + [ + "▁Antoine", + -13.390606880187988 + ], + [ + "▁fudge", + -13.390626907348633 + ], + [ + "▁avalanche", + -13.390666007995605 + ], + [ + "▁pergola", + -13.390686988830566 + ], + [ + "rès", + -13.39101791381836 + ], + [ + "▁fraternity", + -13.39106273651123 + ], + [ + "▁Polymer", + -13.391386985778809 + ], + [ + "▁Zhou", + -13.391393661499023 + ], + [ + "▁recollection", + -13.391501426696777 + ], + [ + "▁Statute", + -13.391679763793945 + ], + [ + "▁negotiator", + -13.391724586486816 + ], + [ + "▁meltdown", + -13.391956329345703 + ], + [ + "▁trimmer", + -13.392032623291016 + ], + [ + "creative", + -13.392168998718262 + ], + [ + "▁spyware", + -13.392404556274414 + ], + [ + "▁Culinary", + -13.392651557922363 + ], + [ + "▁enrolment", + -13.392651557922363 + ], + [ + "▁Angry", + -13.392790794372559 + ], + [ + "lroy", + -13.392925262451172 + ], + [ + "▁disparity", + -13.393050193786621 + ], + [ + "Christmas", + -13.393162727355957 + ], + [ + "▁cyclone", + -13.393203735351562 + ], + [ + "▁monogram", + -13.393216133117676 + ], + [ + "Gro", + -13.39356803894043 + ], + [ + "▁Corridor", + -13.393845558166504 + ], + [ + "▁Titanic", + -13.394062042236328 + ], + [ + "Document", + -13.3941011428833 + ], + [ + "▁Gamble", + -13.394184112548828 + ], + [ + "▁Archaeology", + -13.394509315490723 + ], + [ + "▁Tactical", + -13.394511222839355 + ], + [ + "▁OLED", + -13.394577980041504 + ], + [ + "▁ecstatic", + -13.394641876220703 + ], + [ + "▁ONLINE", + -13.394824028015137 + ], + [ + "▁Meteor", + -13.39482593536377 + ], + [ + "▁decorator", + -13.394944190979004 + ], + [ + "▁irrevocabl", + -13.39517593383789 + ], + [ + "▁Ramadan", + -13.395177841186523 + ], + [ + "/09/", + -13.395316123962402 + ], + [ + "▁Medication", + -13.395413398742676 + ], + [ + "▁Graduation", + -13.395450592041016 + ], + [ + "Brand", + -13.395561218261719 + ], + [ + "▁Married", + -13.395578384399414 + ], + [ + "▁discrepancy", + -13.395837783813477 + ], + [ + "scoring", + -13.395888328552246 + ], + [ + "approx", + -13.396063804626465 + ], + [ + "▁Narendra", + -13.396119117736816 + ], + [ + "layoffs", + -13.39616584777832 + ], + [ + "transformational", + -13.396207809448242 + ], + [ + "▁Sicily", + -13.396238327026367 + ], + [ + "intercepted", + -13.396280288696289 + ], + [ + "ventilated", + -13.396369934082031 + ], + [ + "engulf", + -13.396431922912598 + ], + [ + "kumar", + -13.396608352661133 + ], + [ + "▁orphanage", + -13.396620750427246 + ], + [ + "▁photovoltaic", + -13.397435188293457 + ], + [ + "▁Sahara", + -13.397503852844238 + ], + [ + "▁juggling", + -13.3975830078125 + ], + [ + "▁bailout", + -13.397599220275879 + ], + [ + "CONNECT", + -13.39763069152832 + ], + [ + "▁beachfront", + -13.397726058959961 + ], + [ + "photograph", + -13.397733688354492 + ], + [ + "apocalyptic", + -13.398367881774902 + ], + [ + "▁Ballroom", + -13.398466110229492 + ], + [ + "hovering", + -13.3985013961792 + ], + [ + "▁Glendale", + -13.398505210876465 + ], + [ + "▁xeno", + -13.39875602722168 + ], + [ + "▁upbringing", + -13.398767471313477 + ], + [ + "▁Revival", + -13.39899730682373 + ], + [ + "▁Announcement", + -13.399018287658691 + ], + [ + "▁rejoin", + -13.399044036865234 + ], + [ + "▁typography", + -13.399338722229004 + ], + [ + "SIM", + -13.399369239807129 + ], + [ + "Parameter", + -13.399676322937012 + ], + [ + "GFR", + -13.399734497070312 + ], + [ + "▁intertwined", + -13.399835586547852 + ], + [ + "▁Hodge", + -13.399991035461426 + ], + [ + "8′′", + -13.400026321411133 + ], + [ + "Robert", + -13.40004825592041 + ], + [ + "STRUCT", + -13.400092124938965 + ], + [ + "generalized", + -13.400248527526855 + ], + [ + "▁saline", + -13.400277137756348 + ], + [ + "▁sprite", + -13.400321006774902 + ], + [ + "BUILD", + -13.400369644165039 + ], + [ + "▁repercussions", + -13.400503158569336 + ], + [ + "▁Swami", + -13.40062427520752 + ], + [ + "▁Porch", + -13.400641441345215 + ], + [ + "▁reappear", + -13.40068244934082 + ], + [ + "soprano", + -13.400906562805176 + ], + [ + "▁MPEG", + -13.400959014892578 + ], + [ + "ام", + -13.400959968566895 + ], + [ + "sugar", + -13.401067733764648 + ], + [ + "blogged", + -13.401333808898926 + ], + [ + "▁Ibiza", + -13.401358604431152 + ], + [ + "▁oregano", + -13.40146541595459 + ], + [ + "punct", + -13.401739120483398 + ], + [ + "▁Tyne", + -13.401817321777344 + ], + [ + "▁flutter", + -13.402044296264648 + ], + [ + "convert", + -13.402082443237305 + ], + [ + "▁Caldwell", + -13.402242660522461 + ], + [ + "unbelievably", + -13.402425765991211 + ], + [ + "response", + -13.402487754821777 + ], + [ + "▁Yoko", + -13.402517318725586 + ], + [ + "▁Pascal", + -13.402555465698242 + ], + [ + "▁liberties", + -13.402643203735352 + ], + [ + "▁disparities", + -13.403044700622559 + ], + [ + "▁kisses", + -13.403080940246582 + ], + [ + "▁pathetic", + -13.403141975402832 + ], + [ + "▁Librarian", + -13.403178215026855 + ], + [ + "▁Biography", + -13.403273582458496 + ], + [ + "nsurprisingly", + -13.403312683105469 + ], + [ + "Reuters", + -13.403353691101074 + ], + [ + "budget", + -13.403427124023438 + ], + [ + "monger", + -13.403685569763184 + ], + [ + "▁footnote", + -13.403697967529297 + ], + [ + "UFF", + -13.403836250305176 + ], + [ + "▁PRODUCTS", + -13.403848648071289 + ], + [ + "▁stagnant", + -13.403848648071289 + ], + [ + "obtainable", + -13.40400505065918 + ], + [ + "cchio", + -13.404047012329102 + ], + [ + "revamped", + -13.404351234436035 + ], + [ + "▁estuar", + -13.404364585876465 + ], + [ + "▁Bhu", + -13.404370307922363 + ], + [ + "▁Flores", + -13.404379844665527 + ], + [ + "▁circumvent", + -13.4044828414917 + ], + [ + "▁sane", + -13.404502868652344 + ], + [ + "corrugated", + -13.404519081115723 + ], + [ + "________________", + -13.404520034790039 + ], + [ + "▁Jonah", + -13.40452766418457 + ], + [ + "▁Puppy", + -13.404611587524414 + ], + [ + "▁Analog", + -13.404765129089355 + ], + [ + "▁reddish", + -13.404778480529785 + ], + [ + "▁$30,000", + -13.404810905456543 + ], + [ + "rotated", + -13.404874801635742 + ], + [ + "▁toothpick", + -13.404985427856445 + ], + [ + "▁hummus", + -13.405004501342773 + ], + [ + "▁jade", + -13.405076026916504 + ], + [ + "FIA", + -13.405163764953613 + ], + [ + "ovsk", + -13.405213356018066 + ], + [ + "▁warehousing", + -13.40532398223877 + ], + [ + "appreciating", + -13.40559196472168 + ], + [ + "adventure", + -13.406030654907227 + ], + [ + "lodged", + -13.406031608581543 + ], + [ + "▁Hulu", + -13.40615177154541 + ], + [ + "tensile", + -13.406176567077637 + ], + [ + "whatever", + -13.406205177307129 + ], + [ + "▁Groove", + -13.406354904174805 + ], + [ + "▁consolation", + -13.40639877319336 + ], + [ + "▁polka", + -13.406705856323242 + ], + [ + "▁menopause", + -13.406935691833496 + ], + [ + "▁rejuvenation", + -13.406935691833496 + ], + [ + "▁fibrosis", + -13.407074928283691 + ], + [ + "▁Austen", + -13.407456398010254 + ], + [ + "▁sclerosis", + -13.40747356414795 + ], + [ + "▁surrogate", + -13.407608985900879 + ], + [ + "▁Glue", + -13.407743453979492 + ], + [ + "▁stimulant", + -13.407743453979492 + ], + [ + "daily", + -13.407912254333496 + ], + [ + "▁Aerial", + -13.408079147338867 + ], + [ + "▁inertia", + -13.408164978027344 + ], + [ + "breath", + -13.408281326293945 + ], + [ + "▁skepticism", + -13.408415794372559 + ], + [ + "▁Nvidia", + -13.408416748046875 + ], + [ + "▁Variation", + -13.408425331115723 + ], + [ + "▁anecdotes", + -13.408551216125488 + ], + [ + "▁Kylie", + -13.40876293182373 + ], + [ + "▁Trunk", + -13.408774375915527 + ], + [ + "kitchen", + -13.408838272094727 + ], + [ + "▁equine", + -13.408994674682617 + ], + [ + "▁judiciary", + -13.409090042114258 + ], + [ + "negate", + -13.409236907958984 + ], + [ + "offending", + -13.409318923950195 + ], + [ + "▁Radiation", + -13.409396171569824 + ], + [ + "▁cortisol", + -13.409494400024414 + ], + [ + "honoring", + -13.4097318649292 + ], + [ + "▁deterrent", + -13.409924507141113 + ], + [ + "▁bistro", + -13.409968376159668 + ], + [ + "unveiling", + -13.410032272338867 + ], + [ + "▁Radical", + -13.410283088684082 + ], + [ + "negotiable", + -13.410303115844727 + ], + [ + "▁Hobart", + -13.410304069519043 + ], + [ + "▁shawl", + -13.410416603088379 + ], + [ + "▁Ayurveda", + -13.41043758392334 + ], + [ + "▁escalation", + -13.4107084274292 + ], + [ + "▁Chateau", + -13.41080093383789 + ], + [ + "preneur", + -13.410849571228027 + ], + [ + "defining", + -13.410862922668457 + ], + [ + "▁grieve", + -13.410967826843262 + ], + [ + "Gareth", + -13.410982131958008 + ], + [ + "Fast", + -13.41104507446289 + ], + [ + "▁Rudy", + -13.41122055053711 + ], + [ + "unidentified", + -13.411248207092285 + ], + [ + "▁Dominion", + -13.411322593688965 + ], + [ + "Although", + -13.41136360168457 + ], + [ + "Magic", + -13.411505699157715 + ], + [ + "▁exec", + -13.411857604980469 + ], + [ + "confessed", + -13.412137985229492 + ], + [ + "enthusiastically", + -13.412282943725586 + ], + [ + "typing", + -13.412310600280762 + ], + [ + "▁Southwestern", + -13.412652969360352 + ], + [ + "NIS", + -13.412714004516602 + ], + [ + "▁Veronica", + -13.412725448608398 + ], + [ + "▁Jacuzzi", + -13.412734031677246 + ], + [ + "▁Vaughan", + -13.412734031677246 + ], + [ + "▁rotten", + -13.412869453430176 + ], + [ + "▁Botox", + -13.413056373596191 + ], + [ + "▁Participate", + -13.413140296936035 + ], + [ + "shaded", + -13.413405418395996 + ], + [ + "▁polypropylene", + -13.413421630859375 + ], + [ + "▁Poison", + -13.41342544555664 + ], + [ + "▁0-1", + -13.413538932800293 + ], + [ + "▁irresponsible", + -13.413681030273438 + ], + [ + "summoned", + -13.413959503173828 + ], + [ + "/30/", + -13.414060592651367 + ], + [ + "recognized", + -13.414081573486328 + ], + [ + "▁understatement", + -13.41408920288086 + ], + [ + "▁ballast", + -13.414163589477539 + ], + [ + "▁Kayak", + -13.414277076721191 + ], + [ + "Lady", + -13.414334297180176 + ], + [ + "▁Olson", + -13.414339065551758 + ], + [ + "evidently", + -13.414385795593262 + ], + [ + "▁Worst", + -13.414520263671875 + ], + [ + "▁conglomerate", + -13.414765357971191 + ], + [ + "▁macOS", + -13.41478443145752 + ], + [ + "▁drunken", + -13.41486930847168 + ], + [ + "▁Moderate", + -13.414921760559082 + ], + [ + "problem", + -13.415022850036621 + ], + [ + "▁marvellous", + -13.415037155151367 + ], + [ + "dried", + -13.41513442993164 + ], + [ + "neutral", + -13.415189743041992 + ], + [ + "▁inkjet", + -13.415203094482422 + ], + [ + "▁karma", + -13.415224075317383 + ], + [ + "▁Worse", + -13.415452003479004 + ], + [ + "▁Burial", + -13.415604591369629 + ], + [ + "▁Pentecost", + -13.4157133102417 + ], + [ + "▁Convenient", + -13.415757179260254 + ], + [ + "Japan", + -13.415792465209961 + ], + [ + "rford", + -13.415839195251465 + ], + [ + "▁Fibre", + -13.41590404510498 + ], + [ + "adequacy", + -13.416120529174805 + ], + [ + "▁consumable", + -13.416257858276367 + ], + [ + "raven", + -13.416460037231445 + ], + [ + "▁paramedic", + -13.416473388671875 + ], + [ + "▁Moldova", + -13.416711807250977 + ], + [ + "▁TEAM", + -13.41687297821045 + ], + [ + "▁Lorenzo", + -13.416894912719727 + ], + [ + "▁Modified", + -13.416948318481445 + ], + [ + "▁Incentive", + -13.417207717895508 + ], + [ + "weak", + -13.417350769042969 + ], + [ + "HSBC", + -13.417425155639648 + ], + [ + "▁IMPORTANT", + -13.417478561401367 + ], + [ + "▁Zelda", + -13.417627334594727 + ], + [ + ",000.00", + -13.41774845123291 + ], + [ + "▁sloppy", + -13.417750358581543 + ], + [ + "▁relinquish", + -13.418022155761719 + ], + [ + "▁Jeanne", + -13.418088912963867 + ], + [ + "▁waveform", + -13.418183326721191 + ], + [ + "nappy", + -13.41850471496582 + ], + [ + "▁Jewellery", + -13.418566703796387 + ], + [ + "▁garland", + -13.418621063232422 + ], + [ + "▁Juvenile", + -13.418974876403809 + ], + [ + "▁Greensboro", + -13.418983459472656 + ], + [ + "▁spade", + -13.419066429138184 + ], + [ + "▁proclamation", + -13.419246673583984 + ], + [ + "▁syllable", + -13.41938304901123 + ], + [ + "▁erratic", + -13.419438362121582 + ], + [ + "▁Distributed", + -13.419519424438477 + ], + [ + "bounced", + -13.41953182220459 + ], + [ + "metastatic", + -13.419696807861328 + ], + [ + "039;", + -13.419700622558594 + ], + [ + "▁McConnell", + -13.41995906829834 + ], + [ + "aptly", + -13.420100212097168 + ], + [ + "▁Bruins", + -13.420431137084961 + ], + [ + "▁Wildcats", + -13.420479774475098 + ], + [ + "brief", + -13.420880317687988 + ], + [ + "Mob", + -13.420940399169922 + ], + [ + "▁grenade", + -13.421566009521484 + ], + [ + "wrapped", + -13.421701431274414 + ], + [ + "▁Scrub", + -13.421740531921387 + ], + [ + "determined", + -13.421951293945312 + ], + [ + "▁Dumb", + -13.422197341918945 + ], + [ + "▁evaporate", + -13.422303199768066 + ], + [ + "▁Telugu", + -13.422399520874023 + ], + [ + "▁Zuckerberg", + -13.422656059265137 + ], + [ + "Fri", + -13.422730445861816 + ], + [ + "disposing", + -13.42292308807373 + ], + [ + "▁predicament", + -13.423065185546875 + ], + [ + "▁Cyrus", + -13.42320442199707 + ], + [ + "incubated", + -13.42347526550293 + ], + [ + "▁Citizenship", + -13.423715591430664 + ], + [ + "stemming", + -13.423857688903809 + ], + [ + "▁incubation", + -13.423885345458984 + ], + [ + "▁hostility", + -13.423954963684082 + ], + [ + "xiom", + -13.42403793334961 + ], + [ + "▁bogg", + -13.424077033996582 + ], + [ + "▁casualty", + -13.42410659790039 + ], + [ + "▁polygon", + -13.424311637878418 + ], + [ + "▁reindeer", + -13.424432754516602 + ], + [ + "▁Catalyst", + -13.424570083618164 + ], + [ + "▁Felici", + -13.42457389831543 + ], + [ + "▁symphony", + -13.424715042114258 + ], + [ + "Config", + -13.424839973449707 + ], + [ + "▁kosher", + -13.424843788146973 + ], + [ + "▁Extraordinary", + -13.424850463867188 + ], + [ + "▁preferential", + -13.424874305725098 + ], + [ + "▁erroneous", + -13.425165176391602 + ], + [ + "▁sprung", + -13.425339698791504 + ], + [ + "▁visceral", + -13.425392150878906 + ], + [ + "▁Prescott", + -13.425397872924805 + ], + [ + "Order", + -13.425960540771484 + ], + [ + "deserved", + -13.426158905029297 + ], + [ + "▁temperate", + -13.426383972167969 + ], + [ + "▁refinancing", + -13.426624298095703 + ], + [ + "inserting", + -13.42688274383545 + ], + [ + "▁Samaritan", + -13.426899909973145 + ], + [ + "▁Procurement", + -13.42703628540039 + ], + [ + "▁Lyft", + -13.427057266235352 + ], + [ + "cranial", + -13.427103996276855 + ], + [ + "Nestled", + -13.427484512329102 + ], + [ + "▁$2.5", + -13.427556991577148 + ], + [ + "implicated", + -13.427584648132324 + ], + [ + "▁Bazaar", + -13.427721977233887 + ], + [ + "organization", + -13.427754402160645 + ], + [ + "generating", + -13.427924156188965 + ], + [ + "▁denounce", + -13.427995681762695 + ], + [ + "▁unattended", + -13.427996635437012 + ], + [ + "▁thanksgiving", + -13.428009033203125 + ], + [ + "kissed", + -13.42801570892334 + ], + [ + "Break", + -13.4280424118042 + ], + [ + "ansen", + -13.428054809570312 + ], + [ + "▁werden", + -13.428295135498047 + ], + [ + "endowed", + -13.428362846374512 + ], + [ + "▁rarity", + -13.428409576416016 + ], + [ + "▁Responsive", + -13.428683280944824 + ], + [ + "▁snorkel", + -13.42872428894043 + ], + [ + "▁Dwight", + -13.42882251739502 + ], + [ + "Exporter", + -13.429410934448242 + ], + [ + "▁Mauritius", + -13.429508209228516 + ], + [ + "attie", + -13.429628372192383 + ], + [ + "▁Dessert", + -13.429648399353027 + ], + [ + "agency", + -13.429712295532227 + ], + [ + "nailed", + -13.429884910583496 + ], + [ + "mitigating", + -13.430335998535156 + ], + [ + "▁Chatham", + -13.430676460266113 + ], + [ + "ITIES", + -13.430768013000488 + ], + [ + "▁feta", + -13.430951118469238 + ], + [ + "Field", + -13.431379318237305 + ], + [ + "1999", + -13.43153190612793 + ], + [ + "▁btw", + -13.431546211242676 + ], + [ + "▁Renewal", + -13.431577682495117 + ], + [ + "▁Judgment", + -13.431711196899414 + ], + [ + "▁volcanoes", + -13.431717872619629 + ], + [ + "▁Yield", + -13.431890487670898 + ], + [ + "Think", + -13.431900024414062 + ], + [ + "accentuate", + -13.432214736938477 + ], + [ + "▁numeral", + -13.432538032531738 + ], + [ + "hosh", + -13.432676315307617 + ], + [ + "▁hypotheses", + -13.432676315307617 + ], + [ + "▁Mermaid", + -13.43309211730957 + ], + [ + "▁Achilles", + -13.433366775512695 + ], + [ + "▁Chandigarh", + -13.433366775512695 + ], + [ + "▁endothelial", + -13.433366775512695 + ], + [ + "▁Sunderland", + -13.433367729187012 + ], + [ + "▁exploding", + -13.433780670166016 + ], + [ + "▁Endowment", + -13.433918952941895 + ], + [ + "▁sabotage", + -13.433918952941895 + ], + [ + "discriminatory", + -13.434057235717773 + ], + [ + "▁discoloration", + -13.434057235717773 + ], + [ + "▁Possess", + -13.434182167053223 + ], + [ + "▁transact", + -13.434194564819336 + ], + [ + "▁(1995)", + -13.434200286865234 + ], + [ + "▁argumentative", + -13.434290885925293 + ], + [ + "▁mesmerizing", + -13.434332847595215 + ], + [ + "▁VIDEO", + -13.434337615966797 + ], + [ + "▁fancie", + -13.434337615966797 + ], + [ + "nagging", + -13.434391021728516 + ], + [ + "▁scarring", + -13.434624671936035 + ], + [ + "▁quake", + -13.434684753417969 + ], + [ + "▁spectroscopy", + -13.435162544250488 + ], + [ + "Jones", + -13.43536376953125 + ], + [ + "▁Elsewhere", + -13.435439109802246 + ], + [ + "▁Jurassic", + -13.435439109802246 + ], + [ + "▁lacrosse", + -13.435578346252441 + ], + [ + "▁saloon", + -13.435880661010742 + ], + [ + "▁cutlery", + -13.436416625976562 + ], + [ + "▁barefoot", + -13.436529159545898 + ], + [ + "▁demonstrator", + -13.436823844909668 + ], + [ + "▁jammer", + -13.4369478225708 + ], + [ + "▁seperate", + -13.436969757080078 + ], + [ + "corrosive", + -13.437100410461426 + ], + [ + "▁configurable", + -13.437239646911621 + ], + [ + "climate", + -13.437559127807617 + ], + [ + "24%", + -13.43757438659668 + ], + [ + "Frame", + -13.437816619873047 + ], + [ + "▁whey", + -13.43800163269043 + ], + [ + "▁grub", + -13.438047409057617 + ], + [ + "▁Seymour", + -13.438071250915527 + ], + [ + "▁synopsis", + -13.438209533691406 + ], + [ + "▁frugal", + -13.438401222229004 + ], + [ + "Glu", + -13.438612937927246 + ], + [ + "POINT", + -13.438824653625488 + ], + [ + "Deriv", + -13.438896179199219 + ], + [ + "▁Bethany", + -13.438969612121582 + ], + [ + "existence", + -13.439104080200195 + ], + [ + "▁memorandum", + -13.439181327819824 + ], + [ + "▁Differential", + -13.43919563293457 + ], + [ + "weakest", + -13.439241409301758 + ], + [ + "▁Retain", + -13.439323425292969 + ], + [ + "peeled", + -13.43943977355957 + ], + [ + "unsaturated", + -13.439458847045898 + ], + [ + "▁Lansing", + -13.44002628326416 + ], + [ + "▁Buckeye", + -13.440084457397461 + ], + [ + "▁detoxification", + -13.440093994140625 + ], + [ + "▁unpopular", + -13.440099716186523 + ], + [ + "atlantic", + -13.44011116027832 + ], + [ + "▁Processes", + -13.440146446228027 + ], + [ + "▁Giovanni", + -13.440154075622559 + ], + [ + "▁burrito", + -13.440154075622559 + ], + [ + "▁thromb", + -13.44029712677002 + ], + [ + "▁namesake", + -13.440383911132812 + ], + [ + "▁COME", + -13.440455436706543 + ], + [ + "▁Aztec", + -13.440492630004883 + ], + [ + "▁ironically", + -13.44096851348877 + ], + [ + "dahl", + -13.441277503967285 + ], + [ + "▁Essence", + -13.441411018371582 + ], + [ + "effi", + -13.441450119018555 + ], + [ + "▁Tammy", + -13.441598892211914 + ], + [ + "Saturday", + -13.44174575805664 + ], + [ + "▁Ludwig", + -13.44182300567627 + ], + [ + "▁clarinet", + -13.44182300567627 + ], + [ + "▁cranberries", + -13.441962242126465 + ], + [ + "▁Stanton", + -13.441972732543945 + ], + [ + "▁Magnesium", + -13.44210147857666 + ], + [ + "▁anesthetic", + -13.44210147857666 + ], + [ + "▁Prerequisite", + -13.442208290100098 + ], + [ + "▁dermato", + -13.44233512878418 + ], + [ + "▁applicator", + -13.442380905151367 + ], + [ + "bish", + -13.442426681518555 + ], + [ + "▁Punta", + -13.442465782165527 + ], + [ + "▁Aristotle", + -13.442659378051758 + ], + [ + "▁Respond", + -13.442778587341309 + ], + [ + "▁expelled", + -13.442798614501953 + ], + [ + "▁Crunch", + -13.44284725189209 + ], + [ + "shaved", + -13.44294548034668 + ], + [ + "▁transducer", + -13.44307804107666 + ], + [ + "▁Clothes", + -13.443105697631836 + ], + [ + "▁Peterborough", + -13.443153381347656 + ], + [ + "HTML", + -13.443280220031738 + ], + [ + "▁encroach", + -13.443355560302734 + ], + [ + "▁dictatorship", + -13.443693161010742 + ], + [ + "absorb", + -13.443696975708008 + ], + [ + "▁PHOTO", + -13.4437894821167 + ], + [ + "assembly", + -13.443816184997559 + ], + [ + "▁Nassau", + -13.444056510925293 + ], + [ + "▁adjourn", + -13.444193840026855 + ], + [ + "▁chute", + -13.444245338439941 + ], + [ + "cooperating", + -13.444332122802734 + ], + [ + "▁calculus", + -13.44433307647705 + ], + [ + "Mounted", + -13.4444580078125 + ], + [ + "▁wholeheartedly", + -13.444472312927246 + ], + [ + "▁flask", + -13.444477081298828 + ], + [ + "Utilize", + -13.444478034973145 + ], + [ + "▁bellow", + -13.444482803344727 + ], + [ + "▁Pebble", + -13.4447603225708 + ], + [ + "▁persevere", + -13.444772720336914 + ], + [ + "VISION", + -13.444832801818848 + ], + [ + "▁custodian", + -13.445170402526855 + ], + [ + "▁Tuition", + -13.445393562316895 + ], + [ + "▁fiance", + -13.44559097290039 + ], + [ + "▁Scoop", + -13.445612907409668 + ], + [ + "Lord", + -13.445652961730957 + ], + [ + "Complimentary", + -13.44572925567627 + ], + [ + "▁overheating", + -13.445879936218262 + ], + [ + "bearish", + -13.445974349975586 + ], + [ + "Request", + -13.445978164672852 + ], + [ + "▁Clever", + -13.44599437713623 + ], + [ + "▁Olivier", + -13.446008682250977 + ], + [ + "▁dissatisfied", + -13.446008682250977 + ], + [ + "▁Angola", + -13.44607162475586 + ], + [ + "sprayed", + -13.446290969848633 + ], + [ + "€“", + -13.44646167755127 + ], + [ + "▁horde", + -13.446552276611328 + ], + [ + "▁redecorat", + -13.446605682373047 + ], + [ + "Directed", + -13.446674346923828 + ], + [ + "zhi", + -13.446757316589355 + ], + [ + "freaking", + -13.446873664855957 + ], + [ + "coffee", + -13.446998596191406 + ], + [ + "Welcome", + -13.44708251953125 + ], + [ + "▁Impressive", + -13.447281837463379 + ], + [ + "▁crossroads", + -13.447418212890625 + ], + [ + "▁convict", + -13.447649002075195 + ], + [ + "▁Lithium", + -13.447688102722168 + ], + [ + "▁Mechanism", + -13.447968482971191 + ], + [ + "▁Hadoop", + -13.448108673095703 + ], + [ + "plasia", + -13.448123931884766 + ], + [ + "▁subdued", + -13.448251724243164 + ], + [ + "▁Chromebook", + -13.44856071472168 + ], + [ + "nuanced", + -13.448938369750977 + ], + [ + "boasting", + -13.449057579040527 + ], + [ + "▁Anthropology", + -13.449089050292969 + ], + [ + "▁Frankie", + -13.449246406555176 + ], + [ + "▁Phillies", + -13.449363708496094 + ], + [ + "▁Shampoo", + -13.449372291564941 + ], + [ + "▁Volcano", + -13.449440002441406 + ], + [ + "tida", + -13.449455261230469 + ], + [ + "▁hindsight", + -13.44951343536377 + ], + [ + "▁sandbox", + -13.449742317199707 + ], + [ + "vetted", + -13.44996166229248 + ], + [ + "Yeah", + -13.450094223022461 + ], + [ + "▁convection", + -13.450352668762207 + ], + [ + "▁Thrill", + -13.450445175170898 + ], + [ + "====", + -13.450491905212402 + ], + [ + "▁Hulk", + -13.45057201385498 + ], + [ + "▁fetus", + -13.450774192810059 + ], + [ + "▁derby", + -13.45092487335205 + ], + [ + "▁swimsuit", + -13.450994491577148 + ], + [ + "▁swoop", + -13.451054573059082 + ], + [ + "▁Toolkit", + -13.451248168945312 + ], + [ + "▁Spicy", + -13.45127010345459 + ], + [ + "Zero", + -13.45128059387207 + ], + [ + "musculoskeletal", + -13.451335906982422 + ], + [ + "▁Farrell", + -13.451422691345215 + ], + [ + "▁Craigslist", + -13.451621055603027 + ], + [ + "▁Enviro", + -13.45162296295166 + ], + [ + "saccharide", + -13.451898574829102 + ], + [ + "entrenched", + -13.45190143585205 + ], + [ + "----------------", + -13.452315330505371 + ], + [ + "convened", + -13.452323913574219 + ], + [ + "9-11", + -13.452583312988281 + ], + [ + "▁obscur", + -13.452829360961914 + ], + [ + "exploratory", + -13.453165054321289 + ], + [ + "▁LeBron", + -13.453165054321289 + ], + [ + "asana", + -13.453229904174805 + ], + [ + "▁crappy", + -13.45345687866211 + ], + [ + "mongst", + -13.453536987304688 + ], + [ + "▁?????????", + -13.45360279083252 + ], + [ + "▁Grund", + -13.45414924621582 + ], + [ + "graciously", + -13.454157829284668 + ], + [ + "▁Vegetarian", + -13.454292297363281 + ], + [ + "▁scrumptious", + -13.454292297363281 + ], + [ + "▁Hippo", + -13.454461097717285 + ], + [ + "▁Huffington", + -13.454573631286621 + ], + [ + "▁evangelist", + -13.454587936401367 + ], + [ + "▁Viet", + -13.454591751098633 + ], + [ + "▁Exclud", + -13.454815864562988 + ], + [ + "▁binoculars", + -13.455421447753906 + ], + [ + "▁quench", + -13.455456733703613 + ], + [ + "inscribed", + -13.455554962158203 + ], + [ + "▁jockey", + -13.455702781677246 + ], + [ + "▁drier", + -13.455726623535156 + ], + [ + "▁Fortnite", + -13.456002235412598 + ], + [ + "Biggest", + -13.456253051757812 + ], + [ + "▁technologist", + -13.456440925598145 + ], + [ + "sequence", + -13.456586837768555 + ], + [ + "hampton", + -13.456599235534668 + ], + [ + "availability", + -13.45667839050293 + ], + [ + "▁Diameter", + -13.456750869750977 + ], + [ + "▁Appropriate", + -13.456832885742188 + ], + [ + "reopened", + -13.457273483276367 + ], + [ + "outfitted", + -13.45737361907959 + ], + [ + "▁equestrian", + -13.457539558410645 + ], + [ + "▁Payroll", + -13.457756042480469 + ], + [ + "gori", + -13.457756996154785 + ], + [ + "braided", + -13.45779037475586 + ], + [ + "▁cohesion", + -13.457822799682617 + ], + [ + "assigning", + -13.458033561706543 + ], + [ + "▁Israelites", + -13.458144187927246 + ], + [ + "▁Cebu", + -13.458244323730469 + ], + [ + "▁(800)", + -13.458586692810059 + ], + [ + "tresses", + -13.458601951599121 + ], + [ + "▁Debian", + -13.458620071411133 + ], + [ + "▁cringe", + -13.45866584777832 + ], + [ + "▁assertive", + -13.458731651306152 + ], + [ + "▁figurine", + -13.458954811096191 + ], + [ + "▁embedding", + -13.459030151367188 + ], + [ + "▁inequalities", + -13.459238052368164 + ], + [ + "spawned", + -13.459380149841309 + ], + [ + "▁Transparency", + -13.459380149841309 + ], + [ + "hospital", + -13.45941162109375 + ], + [ + "▁Theoretical", + -13.459665298461914 + ], + [ + "▁holster", + -13.459688186645508 + ], + [ + "Honorary", + -13.46025276184082 + ], + [ + "▁Reliance", + -13.460371971130371 + ], + [ + "▁Addison", + -13.460474967956543 + ], + [ + "▁camaraderie", + -13.460514068603516 + ], + [ + "deau", + -13.460521697998047 + ], + [ + "smoking", + -13.460729598999023 + ], + [ + "▁wrongdoing", + -13.460799217224121 + ], + [ + "▁Courier", + -13.460819244384766 + ], + [ + "▁biofuel", + -13.460897445678711 + ], + [ + "Feb", + -13.461206436157227 + ], + [ + "Byte", + -13.461508750915527 + ], + [ + "perforated", + -13.461535453796387 + ], + [ + "▁Pulitzer", + -13.46165943145752 + ], + [ + "▁pennies", + -13.461799621582031 + ], + [ + "relegated", + -13.461935997009277 + ], + [ + "▁``", + -13.461989402770996 + ], + [ + "▁spanne", + -13.462021827697754 + ], + [ + "▁Adjustment", + -13.46215534210205 + ], + [ + "▁Helicopter", + -13.462360382080078 + ], + [ + "▁artefacts", + -13.462360382080078 + ], + [ + "▁incarceration", + -13.462360382080078 + ], + [ + "glaring", + -13.462482452392578 + ], + [ + "▁wade", + -13.46249008178711 + ], + [ + "neuronal", + -13.462516784667969 + ], + [ + "▁idiom", + -13.462574005126953 + ], + [ + "▁Ripple", + -13.462644577026367 + ], + [ + "▁Picnic", + -13.462892532348633 + ], + [ + "confronting", + -13.46290397644043 + ], + [ + "▁Taiwanese", + -13.463071823120117 + ], + [ + "familiarize", + -13.463129997253418 + ], + [ + "FIG", + -13.463419914245605 + ], + [ + "invoked", + -13.463443756103516 + ], + [ + "Support", + -13.463481903076172 + ], + [ + "▁neutron", + -13.463521003723145 + ], + [ + "module", + -13.463604927062988 + ], + [ + "▁pancreas", + -13.463765144348145 + ], + [ + "▁Fremont", + -13.463887214660645 + ], + [ + "▁Immediate", + -13.46418285369873 + ], + [ + "▁sincerity", + -13.46424674987793 + ], + [ + "▁10:4", + -13.4642915725708 + ], + [ + "iterative", + -13.464451789855957 + ], + [ + "▁stout", + -13.46454906463623 + ], + [ + "▁parachute", + -13.464921951293945 + ], + [ + "▁AWESOME", + -13.46506404876709 + ], + [ + "▁evaporation", + -13.46506404876709 + ], + [ + "▁palliative", + -13.46506404876709 + ], + [ + "sisting", + -13.465280532836914 + ], + [ + "▁skyrocket", + -13.465470314025879 + ], + [ + "▁Destroy", + -13.465936660766602 + ], + [ + "▁Woodstock", + -13.46605110168457 + ], + [ + "potential", + -13.466428756713867 + ], + [ + "▁contemplation", + -13.466489791870117 + ], + [ + "traffic", + -13.466954231262207 + ], + [ + "▁cramps", + -13.466987609863281 + ], + [ + "▁diocese", + -13.467061042785645 + ], + [ + "▁grapple", + -13.467066764831543 + ], + [ + "▁WooCommerce", + -13.46706771850586 + ], + [ + "unauthorised", + -13.467194557189941 + ], + [ + "artist", + -13.467241287231445 + ], + [ + "▁Buchanan", + -13.46734619140625 + ], + [ + "TYPE", + -13.467406272888184 + ], + [ + "thyroid", + -13.467409133911133 + ], + [ + "Personal", + -13.467572212219238 + ], + [ + "▁Dixie", + -13.467775344848633 + ], + [ + "▁multilingual", + -13.467780113220215 + ], + [ + "▁disbelief", + -13.467967987060547 + ], + [ + "LOSS", + -13.46800422668457 + ], + [ + "▁Guangzhou", + -13.468060493469238 + ], + [ + "▁Completion", + -13.468350410461426 + ], + [ + "▁Nominat", + -13.46837043762207 + ], + [ + "▁pavers", + -13.468403816223145 + ], + [ + "drenched", + -13.468514442443848 + ], + [ + "▁ridicule", + -13.468632698059082 + ], + [ + "▁parishes", + -13.468640327453613 + ], + [ + "potting", + -13.46907901763916 + ], + [ + "▁Eliza", + -13.469145774841309 + ], + [ + "strung", + -13.469444274902344 + ], + [ + "cystic", + -13.469474792480469 + ], + [ + "▁Bartlett", + -13.469497680664062 + ], + [ + "▁epithelial", + -13.469634056091309 + ], + [ + "▁Aruba", + -13.469647407531738 + ], + [ + "Charitable", + -13.469688415527344 + ], + [ + "▁legion", + -13.46997356414795 + ], + [ + "nyan", + -13.470160484313965 + ], + [ + "▁ransom", + -13.470186233520508 + ], + [ + "▁petite", + -13.47031307220459 + ], + [ + "▁gruel", + -13.470330238342285 + ], + [ + "Chinese", + -13.470349311828613 + ], + [ + "▁Stevie", + -13.47059440612793 + ], + [ + "▁Pelican", + -13.470780372619629 + ], + [ + "Western", + -13.470863342285156 + ], + [ + "Geoffrey", + -13.470870971679688 + ], + [ + "▁grandeur", + -13.471224784851074 + ], + [ + "▁Merkel", + -13.471237182617188 + ], + [ + "▁NOAA", + -13.471282005310059 + ], + [ + "Small", + -13.471327781677246 + ], + [ + "embarking", + -13.471487045288086 + ], + [ + "pixel", + -13.471497535705566 + ], + [ + "▁Ericsson", + -13.471500396728516 + ], + [ + "▁Hershey", + -13.471503257751465 + ], + [ + "ско", + -13.471583366394043 + ], + [ + "▁misguided", + -13.471640586853027 + ], + [ + "bagged", + -13.471680641174316 + ], + [ + "▁Pantry", + -13.471686363220215 + ], + [ + "▁Execut", + -13.471702575683594 + ], + [ + "▁reshape", + -13.471810340881348 + ], + [ + "ejected", + -13.471817016601562 + ], + [ + "▁Bloomington", + -13.471858024597168 + ], + [ + "▁AMERICA", + -13.472070693969727 + ], + [ + "FILE", + -13.472150802612305 + ], + [ + "▁dabbl", + -13.472423553466797 + ], + [ + "▁Polytechnic", + -13.472443580627441 + ], + [ + "ста", + -13.472513198852539 + ], + [ + "▁abode", + -13.472517013549805 + ], + [ + "▁Expense", + -13.472707748413086 + ], + [ + "▁narrat", + -13.472737312316895 + ], + [ + "▁Eff", + -13.472742080688477 + ], + [ + "scientific", + -13.472870826721191 + ], + [ + "tossing", + -13.473193168640137 + ], + [ + "diag", + -13.473219871520996 + ], + [ + "▁OFFER", + -13.473265647888184 + ], + [ + "▁Donovan", + -13.473278045654297 + ], + [ + "▁nutty", + -13.473319053649902 + ], + [ + "▁yoke", + -13.473381996154785 + ], + [ + "amoxicillin", + -13.473506927490234 + ], + [ + "▁McKenzie", + -13.473506927490234 + ], + [ + "voluntary", + -13.47375774383545 + ], + [ + "▁carousel", + -13.473794937133789 + ], + [ + "lify", + -13.473809242248535 + ], + [ + "▁reciprocal", + -13.474081993103027 + ], + [ + "fascist", + -13.474082946777344 + ], + [ + "televised", + -13.474102020263672 + ], + [ + "▁anguish", + -13.474112510681152 + ], + [ + "▁distrust", + -13.474127769470215 + ], + [ + "sculptural", + -13.474987030029297 + ], + [ + "▁Quincy", + -13.475507736206055 + ], + [ + "▁CHANGE", + -13.475811004638672 + ], + [ + "▁starvation", + -13.475811004638672 + ], + [ + "undefeated", + -13.476097106933594 + ], + [ + "district", + -13.476221084594727 + ], + [ + "▁Liberation", + -13.476275444030762 + ], + [ + "▁attendee", + -13.476436614990234 + ], + [ + "▁herald", + -13.476664543151855 + ], + [ + "analogous", + -13.476849555969238 + ], + [ + "▁Andersen", + -13.477108001708984 + ], + [ + "▁agony", + -13.477212905883789 + ], + [ + "delphi", + -13.47726821899414 + ], + [ + "iyah", + -13.477287292480469 + ], + [ + "diagnosing", + -13.47738265991211 + ], + [ + "▁inaccuracies", + -13.477395057678223 + ], + [ + "EIGHT", + -13.477397918701172 + ], + [ + "Facing", + -13.47752857208252 + ], + [ + "▁immoral", + -13.477683067321777 + ], + [ + "▁Wikimedia", + -13.47770881652832 + ], + [ + "▁Briggs", + -13.477766990661621 + ], + [ + "▁Isabella", + -13.477783203125 + ], + [ + "▁PEOPLE", + -13.477827072143555 + ], + [ + "audited", + -13.47786808013916 + ], + [ + "adhered", + -13.477901458740234 + ], + [ + "▁observance", + -13.478404998779297 + ], + [ + "▁pouches", + -13.478432655334473 + ], + [ + "▁Compassion", + -13.478522300720215 + ], + [ + "virtual", + -13.478523254394531 + ], + [ + "thoracic", + -13.478549003601074 + ], + [ + "▁Residency", + -13.478693962097168 + ], + [ + "▁Northampton", + -13.478734016418457 + ], + [ + "temperature", + -13.478784561157227 + ], + [ + "esophageal", + -13.478837966918945 + ], + [ + "iffy", + -13.47892951965332 + ], + [ + "weil", + -13.47913932800293 + ], + [ + "▁ketone", + -13.479212760925293 + ], + [ + "disrupting", + -13.479267120361328 + ], + [ + "▁Tarot", + -13.479379653930664 + ], + [ + "▁buttermilk", + -13.479705810546875 + ], + [ + "▁twenties", + -13.479705810546875 + ], + [ + "▁adamant", + -13.479715347290039 + ], + [ + "▁buoy", + -13.479927062988281 + ], + [ + "▁Piazza", + -13.480141639709473 + ], + [ + "▁Clifford", + -13.480142593383789 + ], + [ + "▁Mourinho", + -13.481587409973145 + ], + [ + "earthly", + -13.481616020202637 + ], + [ + "healthiest", + -13.481657981872559 + ], + [ + "favorably", + -13.481717109680176 + ], + [ + "▁Pharaoh", + -13.481732368469238 + ], + [ + "▁harmonies", + -13.481746673583984 + ], + [ + "WORD", + -13.482094764709473 + ], + [ + "▁Kidney", + -13.482378959655762 + ], + [ + "▁condenser", + -13.482747077941895 + ], + [ + "▁unresolved", + -13.483181953430176 + ], + [ + "perishable", + -13.483202934265137 + ], + [ + "urton", + -13.483266830444336 + ], + [ + "clomid", + -13.483275413513184 + ], + [ + "foothills", + -13.483388900756836 + ], + [ + "▁Lionel", + -13.483396530151367 + ], + [ + "▁Ipswich", + -13.483617782592773 + ], + [ + "▁battalion", + -13.483617782592773 + ], + [ + "▁Avatar", + -13.483620643615723 + ], + [ + "▁Townsend", + -13.48365306854248 + ], + [ + "gamut", + -13.48366641998291 + ], + [ + "▁negligible", + -13.483762741088867 + ], + [ + "▁iodine", + -13.483763694763184 + ], + [ + "▁cactus", + -13.483907699584961 + ], + [ + "▁sniper", + -13.484198570251465 + ], + [ + "▁Licence", + -13.484345436096191 + ], + [ + "▁detachment", + -13.484403610229492 + ], + [ + "▁IELTS", + -13.484780311584473 + ], + [ + "Doctoral", + -13.484885215759277 + ], + [ + "▁labyrinth", + -13.484925270080566 + ], + [ + "1.5%", + -13.485054016113281 + ], + [ + "insured", + -13.485090255737305 + ], + [ + "▁ANSWER", + -13.48521614074707 + ], + [ + "▁Seamless", + -13.485275268554688 + ], + [ + "according", + -13.485564231872559 + ], + [ + "▁rubble", + -13.485621452331543 + ], + [ + "▁dependant", + -13.485732078552246 + ], + [ + "admiring", + -13.485942840576172 + ], + [ + "▁Middlesex", + -13.485970497131348 + ], + [ + "Kudos", + -13.486050605773926 + ], + [ + "Crafted", + -13.486143112182617 + ], + [ + "▁Pinnacle", + -13.486233711242676 + ], + [ + "▁ominous", + -13.486235618591309 + ], + [ + "▁whirlwind", + -13.48624324798584 + ], + [ + "Neil", + -13.486364364624023 + ], + [ + "▁manoeuvr", + -13.48648738861084 + ], + [ + "▁Technological", + -13.486546516418457 + ], + [ + "▁probabilities", + -13.48681640625 + ], + [ + "▁kidnapping", + -13.486846923828125 + ], + [ + "▁Dangerous", + -13.48696231842041 + ], + [ + "▁Batteries", + -13.486963272094727 + ], + [ + "▁Commitment", + -13.487399101257324 + ], + [ + "▁Zebra", + -13.487821578979492 + ], + [ + "▁remission", + -13.48783016204834 + ], + [ + "▁Sanford", + -13.487923622131348 + ], + [ + "▁Pupil", + -13.48794174194336 + ], + [ + "sloping", + -13.487953186035156 + ], + [ + "▁miscarriage", + -13.487981796264648 + ], + [ + "▁Majestic", + -13.487982749938965 + ], + [ + "▁Vivo", + -13.48816967010498 + ], + [ + "collectively", + -13.488286972045898 + ], + [ + "▁shatter", + -13.488361358642578 + ], + [ + "▁Ninth", + -13.488375663757324 + ], + [ + "obscene", + -13.488419532775879 + ], + [ + "▁moisturize", + -13.488465309143066 + ], + [ + "accented", + -13.488541603088379 + ], + [ + "▁REQUIRE", + -13.488566398620605 + ], + [ + "▁jumbo", + -13.488627433776855 + ], + [ + "TOWN", + -13.488669395446777 + ], + [ + "▁blemishes", + -13.4887113571167 + ], + [ + "▁barren", + -13.488717079162598 + ], + [ + "▁Attachment", + -13.488860130310059 + ], + [ + "▁Rockefeller", + -13.48900318145752 + ], + [ + "▁beneficiation", + -13.48929500579834 + ], + [ + "▁Freud", + -13.489312171936035 + ], + [ + "▁Kettle", + -13.489372253417969 + ], + [ + "▁postpartum", + -13.48944091796875 + ], + [ + "Apr", + -13.48948860168457 + ], + [ + "▁Cupcake", + -13.489540100097656 + ], + [ + "▁Sequence", + -13.489733695983887 + ], + [ + "Wow", + -13.489848136901855 + ], + [ + "▁Juniper", + -13.49017333984375 + ], + [ + "▁renaissance", + -13.490317344665527 + ], + [ + "Wishing", + -13.490419387817383 + ], + [ + "▁Sutherland", + -13.490464210510254 + ], + [ + "▁Stol", + -13.490474700927734 + ], + [ + "▁Hayward", + -13.4906587600708 + ], + [ + "▁Hubbard", + -13.490757942199707 + ], + [ + "▁teddy", + -13.490766525268555 + ], + [ + "indicate", + -13.490926742553711 + ], + [ + "▁Profession", + -13.491086959838867 + ], + [ + "chased", + -13.49171257019043 + ], + [ + "▁Beirut", + -13.491927146911621 + ], + [ + "▁carcass", + -13.491951942443848 + ], + [ + "▁interrogation", + -13.49202823638916 + ], + [ + "▁Cadet", + -13.492122650146484 + ], + [ + "▁Legendary", + -13.492330551147461 + ], + [ + "▁Uzbekistan", + -13.492365837097168 + ], + [ + "Argument", + -13.492372512817383 + ], + [ + "▁cobalt", + -13.492375373840332 + ], + [ + "▁Acceptance", + -13.492378234863281 + ], + [ + "▁Sheldon", + -13.492448806762695 + ], + [ + "Eph", + -13.492487907409668 + ], + [ + "▁delicacies", + -13.492658615112305 + ], + [ + "▁COMPLETE", + -13.492659568786621 + ], + [ + "recognising", + -13.492951393127441 + ], + [ + "▁Abigail", + -13.492951393127441 + ], + [ + "authentic", + -13.49323844909668 + ], + [ + "▁theologian", + -13.493465423583984 + ], + [ + "▁adolescence", + -13.493537902832031 + ], + [ + "▁Dolby", + -13.493546485900879 + ], + [ + "Easy", + -13.493605613708496 + ], + [ + "▁Ancestry", + -13.493683815002441 + ], + [ + "▁archipelago", + -13.493684768676758 + ], + [ + "▁Emanuel", + -13.493685722351074 + ], + [ + "swallowed", + -13.493794441223145 + ], + [ + "▁Rift", + -13.493918418884277 + ], + [ + "▁PARTY", + -13.49393081665039 + ], + [ + "popular", + -13.493935585021973 + ], + [ + "▁titan", + -13.49406909942627 + ], + [ + "▁Hendrick", + -13.494272232055664 + ], + [ + "▁Dhaka", + -13.49431037902832 + ], + [ + "▁Evangelical", + -13.494427680969238 + ], + [ + "▁eyeshadow", + -13.494481086730957 + ], + [ + "▁Pigeon", + -13.494572639465332 + ], + [ + "Rank", + -13.494745254516602 + ], + [ + "▁angst", + -13.49477767944336 + ], + [ + "▁Gibbs", + -13.49485969543457 + ], + [ + "▁Representation", + -13.495136260986328 + ], + [ + "▁loudspeaker", + -13.495299339294434 + ], + [ + "blindly", + -13.495460510253906 + ], + [ + "▁$1,500", + -13.495668411254883 + ], + [ + "▁cacao", + -13.495742797851562 + ], + [ + "▁turbulence", + -13.49588680267334 + ], + [ + "▁Eurasia", + -13.495903968811035 + ], + [ + "▁refinery", + -13.496041297912598 + ], + [ + "▁trot", + -13.496306419372559 + ], + [ + "▁Stakes", + -13.496315002441406 + ], + [ + "▁Eureka", + -13.496329307556152 + ], + [ + "Stock", + -13.496392250061035 + ], + [ + "distinguishable", + -13.496414184570312 + ], + [ + "▁executor", + -13.496475219726562 + ], + [ + "▁(1994)", + -13.496479034423828 + ], + [ + "▁persuasion", + -13.496622085571289 + ], + [ + "▁accession", + -13.496672630310059 + ], + [ + "▁Maureen", + -13.496769905090332 + ], + [ + "▁Adirondack", + -13.497062683105469 + ], + [ + "▁Wilhelm", + -13.49736213684082 + ], + [ + "▁alligator", + -13.497515678405762 + ], + [ + "boosted", + -13.497729301452637 + ], + [ + "▁Jacqueline", + -13.497946739196777 + ], + [ + "▁reissue", + -13.498205184936523 + ], + [ + "▁Allergy", + -13.49824333190918 + ], + [ + "▁foes", + -13.49824333190918 + ], + [ + "ubuntu", + -13.498245239257812 + ], + [ + "▁Natasha", + -13.498687744140625 + ], + [ + "▁Chavez", + -13.498979568481445 + ], + [ + "ellini", + -13.499375343322754 + ], + [ + "▁reinvest", + -13.4995698928833 + ], + [ + "▁Ornament", + -13.499577522277832 + ], + [ + "Invest", + -13.499588012695312 + ], + [ + "sensitivity", + -13.499643325805664 + ], + [ + "▁Rahul", + -13.500004768371582 + ], + [ + "▁XII", + -13.500038146972656 + ], + [ + "savvy", + -13.500097274780273 + ], + [ + "▁registrant", + -13.500175476074219 + ], + [ + "Movie", + -13.500317573547363 + ], + [ + "inhibited", + -13.500324249267578 + ], + [ + "▁obstetric", + -13.500452995300293 + ], + [ + "▁Rupert", + -13.50046443939209 + ], + [ + "vehicle", + -13.500519752502441 + ], + [ + "▁Upstairs", + -13.500748634338379 + ], + [ + "scrupulous", + -13.500895500183105 + ], + [ + "▁propulsion", + -13.500895500183105 + ], + [ + "Presently", + -13.500967025756836 + ], + [ + "▁Pivot", + -13.501004219055176 + ], + [ + "▁AutoCAD", + -13.501103401184082 + ], + [ + "▁crusade", + -13.50119400024414 + ], + [ + "▁Seminole", + -13.501338958740234 + ], + [ + "Hyp", + -13.501344680786133 + ], + [ + "insanely", + -13.501350402832031 + ], + [ + "▁Amherst", + -13.501486778259277 + ], + [ + "▁rehearse", + -13.502079010009766 + ], + [ + "▁Crete", + -13.502202033996582 + ], + [ + "▁Carrot", + -13.502209663391113 + ], + [ + "▁Hiro", + -13.502565383911133 + ], + [ + "▁Blazer", + -13.50263786315918 + ], + [ + "▁AGAIN", + -13.50269889831543 + ], + [ + "▁tortoise", + -13.50281810760498 + ], + [ + "▁Bernstein", + -13.502878189086914 + ], + [ + "certain", + -13.502880096435547 + ], + [ + "insert", + -13.502897262573242 + ], + [ + "summarise", + -13.503064155578613 + ], + [ + "▁concoction", + -13.503113746643066 + ], + [ + "▁Mindfulness", + -13.503149032592773 + ], + [ + "▁fennel", + -13.503410339355469 + ], + [ + "▁tuft", + -13.503515243530273 + ], + [ + "▁Creature", + -13.504008293151855 + ], + [ + "▁blurry", + -13.504018783569336 + ], + [ + "result", + -13.504270553588867 + ], + [ + "▁vulgar", + -13.504304885864258 + ], + [ + "▁Klu", + -13.504472732543945 + ], + [ + "▁reverence", + -13.504594802856445 + ], + [ + "▁bullied", + -13.504618644714355 + ], + [ + "▁Ricardo", + -13.504744529724121 + ], + [ + "misc", + -13.504955291748047 + ], + [ + "▁saxophone", + -13.505040168762207 + ], + [ + "▁Limestone", + -13.505115509033203 + ], + [ + "▁ketchup", + -13.50518798828125 + ], + [ + "▁Kodak", + -13.505189895629883 + ], + [ + "▁Horizontal", + -13.505202293395996 + ], + [ + "lounging", + -13.50537109375 + ], + [ + "▁Clarence", + -13.505402565002441 + ], + [ + "▁Coyote", + -13.505638122558594 + ], + [ + "▁Amenities", + -13.50572681427002 + ], + [ + "▁elliptical", + -13.505782127380371 + ], + [ + "▁Espresso", + -13.50593090057373 + ], + [ + "▁Muir", + -13.506078720092773 + ], + [ + "▁Angular", + -13.50612735748291 + ], + [ + "proverbial", + -13.506375312805176 + ], + [ + "Meet", + -13.5064115524292 + ], + [ + "▁shaky", + -13.506531715393066 + ], + [ + "captivated", + -13.506562232971191 + ], + [ + "▁bubbling", + -13.506672859191895 + ], + [ + "▁snoring", + -13.506673812866211 + ], + [ + "▁trimester", + -13.50705337524414 + ], + [ + "Application", + -13.50710391998291 + ], + [ + "rejecting", + -13.507576942443848 + ], + [ + "▁McCartney", + -13.507713317871094 + ], + [ + "▁condiment", + -13.507713317871094 + ], + [ + "▁insolvency", + -13.507862091064453 + ], + [ + "messed", + -13.507905960083008 + ], + [ + "▁Ambulance", + -13.508159637451172 + ], + [ + "weakening", + -13.508275032043457 + ], + [ + "Roll", + -13.508474349975586 + ], + [ + "Spr", + -13.508654594421387 + ], + [ + "▁guinea", + -13.5089111328125 + ], + [ + "▁FIRE", + -13.509169578552246 + ], + [ + "▁$2,500", + -13.50955581665039 + ], + [ + "▁Entire", + -13.50963020324707 + ], + [ + "disclosing", + -13.509955406188965 + ], + [ + "clipped", + -13.509989738464355 + ], + [ + "▁Tanya", + -13.509990692138672 + ], + [ + "Returning", + -13.510051727294922 + ], + [ + "Zulu", + -13.510163307189941 + ], + [ + "▁Humphrey", + -13.510244369506836 + ], + [ + "▁archiving", + -13.510394096374512 + ], + [ + "▁barbeque", + -13.510395050048828 + ], + [ + "graphie", + -13.510518074035645 + ], + [ + "terminating", + -13.510783195495605 + ], + [ + "myocardial", + -13.510841369628906 + ], + [ + "▁Stuttgart", + -13.510841369628906 + ], + [ + "▁giraffe", + -13.510841369628906 + ], + [ + "▁lactose", + -13.511139869689941 + ], + [ + "▁zodiac", + -13.511139869689941 + ], + [ + "▁Northeastern", + -13.511147499084473 + ], + [ + "▁dumplings", + -13.511152267456055 + ], + [ + "Express", + -13.511300086975098 + ], + [ + "▁misinformation", + -13.511495590209961 + ], + [ + "intuitive", + -13.511606216430664 + ], + [ + "slotted", + -13.511817932128906 + ], + [ + "▁piracy", + -13.511923789978027 + ], + [ + "▁curvature", + -13.512035369873047 + ], + [ + "squeezing", + -13.512184143066406 + ], + [ + "▁spree", + -13.512226104736328 + ], + [ + "FIELD", + -13.512490272521973 + ], + [ + "infection", + -13.512807846069336 + ], + [ + "abbreviated", + -13.512931823730469 + ], + [ + "▁bureaucratic", + -13.512931823730469 + ], + [ + "▁hairdryer", + -13.512933731079102 + ], + [ + "Constructed", + -13.513176918029785 + ], + [ + "▁EVERYTHING", + -13.513529777526855 + ], + [ + "▁chisel", + -13.51381778717041 + ], + [ + "▁Garnish", + -13.513904571533203 + ], + [ + "maintenance", + -13.513925552368164 + ], + [ + "submit", + -13.514018058776855 + ], + [ + "▁guise", + -13.5140380859375 + ], + [ + "▁galore", + -13.51408576965332 + ], + [ + "▁Kaufman", + -13.514128684997559 + ], + [ + "▁refrigerant", + -13.514128684997559 + ], + [ + "Message", + -13.514540672302246 + ], + [ + "▁hazelnut", + -13.514577865600586 + ], + [ + "▁relatable", + -13.514577865600586 + ], + [ + "▁critters", + -13.514579772949219 + ], + [ + "niya", + -13.514664649963379 + ], + [ + "Before", + -13.514704704284668 + ], + [ + "▁Twitch", + -13.514884948730469 + ], + [ + "▁shredding", + -13.514949798583984 + ], + [ + "Largest", + -13.515329360961914 + ], + [ + "▁Percy", + -13.515353202819824 + ], + [ + "▁Bethel", + -13.515396118164062 + ], + [ + "▁paprika", + -13.515477180480957 + ], + [ + "▁autobiography", + -13.515625953674316 + ], + [ + "▁macroeconomic", + -13.51565933227539 + ], + [ + "ranches", + -13.51580810546875 + ], + [ + "▁Ownership", + -13.515837669372559 + ], + [ + "tinib", + -13.515857696533203 + ], + [ + "▁Wrangler", + -13.5159273147583 + ], + [ + "▁Sawyer", + -13.516271591186523 + ], + [ + "▁CHECK", + -13.516376495361328 + ], + [ + "nadi", + -13.516484260559082 + ], + [ + "ohne", + -13.516560554504395 + ], + [ + "aggregated", + -13.51673698425293 + ], + [ + "▁dissatisfaction", + -13.516825675964355 + ], + [ + "▁SOFTWARE", + -13.516976356506348 + ], + [ + "dictated", + -13.517088890075684 + ], + [ + "theism", + -13.517539024353027 + ], + [ + "Grilled", + -13.517695426940918 + ], + [ + "shimmering", + -13.517779350280762 + ], + [ + "▁Schultz", + -13.5179443359375 + ], + [ + "BODY", + -13.518163681030273 + ], + [ + "▁Ramirez", + -13.51817798614502 + ], + [ + "▁Embrace", + -13.518362045288086 + ], + [ + "▁Interim", + -13.51850414276123 + ], + [ + "emptied", + -13.518593788146973 + ], + [ + "▁frantic", + -13.518644332885742 + ], + [ + "▁Xerox", + -13.518930435180664 + ], + [ + "futon", + -13.519233703613281 + ], + [ + "▁cliche", + -13.519558906555176 + ], + [ + "▁aromatherapy", + -13.5195894241333 + ], + [ + "▁vot", + -13.519673347473145 + ], + [ + "▁JFK", + -13.519989967346191 + ], + [ + "Develop", + -13.52016830444336 + ], + [ + "rheumatoid", + -13.520434379577637 + ], + [ + "Accredited", + -13.520437240600586 + ], + [ + "▁Embedded", + -13.520451545715332 + ], + [ + "▁DISCLAIM", + -13.520584106445312 + ], + [ + "pitting", + -13.520825386047363 + ], + [ + "Supplemental", + -13.520893096923828 + ], + [ + "▁Barnett", + -13.520895957946777 + ], + [ + "provoked", + -13.520914077758789 + ], + [ + "essie", + -13.520991325378418 + ], + [ + "▁remit", + -13.52099895477295 + ], + [ + "▁Trudeau", + -13.521044731140137 + ], + [ + "▁Caramel", + -13.52121639251709 + ], + [ + "Implementing", + -13.52125072479248 + ], + [ + "Studio", + -13.521358489990234 + ], + [ + "troy", + -13.521649360656738 + ], + [ + "▁Accessibility", + -13.521659851074219 + ], + [ + "▁discrepancies", + -13.521790504455566 + ], + [ + "travers", + -13.521882057189941 + ], + [ + "▁misfortune", + -13.521941184997559 + ], + [ + "▁infiltration", + -13.521944046020508 + ], + [ + "unsuitable", + -13.522116661071777 + ], + [ + "▁PERFECT", + -13.522244453430176 + ], + [ + "▁Literally", + -13.522395133972168 + ], + [ + "▁descriptor", + -13.52254581451416 + ], + [ + "scientist", + -13.522818565368652 + ], + [ + "▁Collegiate", + -13.522847175598145 + ], + [ + "▁Convenience", + -13.522847175598145 + ], + [ + "▁Burgundy", + -13.522997856140137 + ], + [ + "▁connoisseur", + -13.523148536682129 + ], + [ + "▁crimp", + -13.523258209228516 + ], + [ + "oeuvre", + -13.523338317871094 + ], + [ + "▁agitation", + -13.523369789123535 + ], + [ + "▁disqualified", + -13.52344036102295 + ], + [ + "▁Cheltenham", + -13.52345085144043 + ], + [ + "Through", + -13.524067878723145 + ], + [ + "smartest", + -13.524567604064941 + ], + [ + "▁saree", + -13.524600982666016 + ], + [ + "▁Diablo", + -13.524741172790527 + ], + [ + "▁resurgence", + -13.524962425231934 + ], + [ + "▁romp", + -13.524981498718262 + ], + [ + "skinned", + -13.525029182434082 + ], + [ + "▁Bracket", + -13.525116920471191 + ], + [ + "▁horoscope", + -13.52526569366455 + ], + [ + "▁masala", + -13.525362968444824 + ], + [ + "▁ethereal", + -13.525430679321289 + ], + [ + "▁calligraphy", + -13.525569915771484 + ], + [ + "Second", + -13.525591850280762 + ], + [ + "realising", + -13.525777816772461 + ], + [ + "▁witches", + -13.525840759277344 + ], + [ + "Follow", + -13.525893211364746 + ], + [ + "▁disperse", + -13.525952339172363 + ], + [ + "undeniably", + -13.526022911071777 + ], + [ + "▁Hemisphere", + -13.526022911071777 + ], + [ + "savoury", + -13.526265144348145 + ], + [ + "▁Kawasaki", + -13.526628494262695 + ], + [ + "▁Prestige", + -13.526780128479004 + ], + [ + "postdoctoral", + -13.526931762695312 + ], + [ + "Fish", + -13.526969909667969 + ], + [ + "PRINT", + -13.527031898498535 + ], + [ + "▁pulveriz", + -13.527235984802246 + ], + [ + "▁presumption", + -13.527841567993164 + ], + [ + "▁Miriam", + -13.52784252166748 + ], + [ + "IFIED", + -13.527993202209473 + ], + [ + "▁Chamb", + -13.528044700622559 + ], + [ + "Autonomous", + -13.528144836425781 + ], + [ + "▁Tolkien", + -13.528144836425781 + ], + [ + "▁impoverished", + -13.528144836425781 + ], + [ + "▁Zenith", + -13.528160095214844 + ], + [ + "▁congrats", + -13.52829647064209 + ], + [ + "▁SOUTH", + -13.528301239013672 + ], + [ + "▁divisive", + -13.528449058532715 + ], + [ + "consult", + -13.52849006652832 + ], + [ + "Account", + -13.528525352478027 + ], + [ + "motivated", + -13.528572082519531 + ], + [ + "дл", + -13.52869701385498 + ], + [ + "impromptu", + -13.528752326965332 + ], + [ + "▁collapsing", + -13.528752326965332 + ], + [ + "▁Velcro", + -13.528820037841797 + ], + [ + "hundred", + -13.528841018676758 + ], + [ + "▁moose", + -13.528934478759766 + ], + [ + "▁snare", + -13.529464721679688 + ], + [ + "▁deteriorating", + -13.529512405395508 + ], + [ + "Emory", + -13.529577255249023 + ], + [ + "whipping", + -13.529748916625977 + ], + [ + "ceiling", + -13.529784202575684 + ], + [ + "▁hairdresser", + -13.529817581176758 + ], + [ + "▁Situation", + -13.529842376708984 + ], + [ + "Crypt", + -13.530097961425781 + ], + [ + "▁Antigua", + -13.530289649963379 + ], + [ + "tightened", + -13.53038501739502 + ], + [ + "▁Garbage", + -13.530426025390625 + ], + [ + "▁Scarborough", + -13.530475616455078 + ], + [ + "▁recuperat", + -13.530794143676758 + ], + [ + "▁malaysia", + -13.531033515930176 + ], + [ + "▁tungsten", + -13.53133773803711 + ], + [ + "▁radish", + -13.53140640258789 + ], + [ + "▁demeanor", + -13.531490325927734 + ], + [ + "▁humidifier", + -13.531512260437012 + ], + [ + "▁floppy", + -13.531549453735352 + ], + [ + "▁Elsevier", + -13.531641960144043 + ], + [ + "Road", + -13.532257080078125 + ], + [ + "▁extrusion", + -13.532861709594727 + ], + [ + "simplifying", + -13.532896041870117 + ], + [ + "synthesized", + -13.53299331665039 + ], + [ + "bestowed", + -13.533050537109375 + ], + [ + "▁Normandy", + -13.533181190490723 + ], + [ + "▁Goodreads", + -13.533185958862305 + ], + [ + "invading", + -13.533262252807617 + ], + [ + "▁gingerbread", + -13.533343315124512 + ], + [ + "Staying", + -13.533347129821777 + ], + [ + "▁Annapolis", + -13.53337574005127 + ], + [ + "Ephesians", + -13.53347110748291 + ], + [ + "charted", + -13.53391170501709 + ], + [ + "▁Physiology", + -13.533933639526367 + ], + [ + "resumably", + -13.534246444702148 + ], + [ + "▁monochrome", + -13.534387588500977 + ], + [ + "▁immature", + -13.534998893737793 + ], + [ + "▁coherence", + -13.535151481628418 + ], + [ + "▁Appearance", + -13.535304069519043 + ], + [ + "▁Unicorn", + -13.535516738891602 + ], + [ + "▁precedence", + -13.535530090332031 + ], + [ + "▁Resurrection", + -13.535916328430176 + ], + [ + "British", + -13.536286354064941 + ], + [ + "▁CONTACT", + -13.536681175231934 + ], + [ + "▁horribly", + -13.536681175231934 + ], + [ + "▁Emerg", + -13.536829948425293 + ], + [ + "▁Macintosh", + -13.536833763122559 + ], + [ + "▁McGregor", + -13.536834716796875 + ], + [ + "swirling", + -13.536840438842773 + ], + [ + "▁squeak", + -13.536852836608887 + ], + [ + "enealogical", + -13.537120819091797 + ], + [ + "▁geopolitical", + -13.537320137023926 + ], + [ + "▁transnational", + -13.53773307800293 + ], + [ + "▁Porcelain", + -13.537753105163574 + ], + [ + "▁twitch", + -13.537788391113281 + ], + [ + "▁brine", + -13.537837982177734 + ], + [ + "▁booze", + -13.53785228729248 + ], + [ + "▁reorganization", + -13.53795337677002 + ], + [ + "▁sobriety", + -13.538060188293457 + ], + [ + "▁Noida", + -13.53809928894043 + ], + [ + "▁whereabouts", + -13.538161277770996 + ], + [ + "▁Fifteen", + -13.538212776184082 + ], + [ + "chartered", + -13.538229942321777 + ], + [ + "▁bottling", + -13.538522720336914 + ], + [ + "rife", + -13.538524627685547 + ], + [ + "▁WHITE", + -13.538540840148926 + ], + [ + "electro", + -13.5386962890625 + ], + [ + "▁Islamabad", + -13.538981437683105 + ], + [ + "▁CNBC", + -13.538985252380371 + ], + [ + "▁wobbl", + -13.539244651794434 + ], + [ + "▁Athena", + -13.53935718536377 + ], + [ + "distinguishing", + -13.539629936218262 + ], + [ + "▁Psychologist", + -13.539780616760254 + ], + [ + "inflamed", + -13.539941787719727 + ], + [ + "▁Epidemiol", + -13.540105819702148 + ], + [ + "George", + -13.540352821350098 + ], + [ + "▁Burgess", + -13.54051399230957 + ], + [ + "▁transpire", + -13.540597915649414 + ], + [ + "▁Belgrade", + -13.540682792663574 + ], + [ + "▁Employ", + -13.541092872619629 + ], + [ + "unwavering", + -13.541131973266602 + ], + [ + "Everything", + -13.541234970092773 + ], + [ + "▁Florist", + -13.54136848449707 + ], + [ + "phri", + -13.541421890258789 + ], + [ + "▁regenerative", + -13.541476249694824 + ], + [ + "▁Constable", + -13.541755676269531 + ], + [ + "▁incarcerated", + -13.541899681091309 + ], + [ + "▁measles", + -13.541911125183105 + ], + [ + "▁Helmet", + -13.541980743408203 + ], + [ + "▁drawstring", + -13.54204273223877 + ], + [ + "▁Sparrow", + -13.542129516601562 + ], + [ + "▁Jaff", + -13.54220199584961 + ], + [ + "kilometre", + -13.542312622070312 + ], + [ + "international", + -13.542508125305176 + ], + [ + "Importantly", + -13.542606353759766 + ], + [ + "▁Encounter", + -13.542778968811035 + ], + [ + "fuelled", + -13.542851448059082 + ], + [ + "▁Capsule", + -13.543072700500488 + ], + [ + "▁DWI", + -13.543081283569336 + ], + [ + "▁Miniature", + -13.54313850402832 + ], + [ + "heaviest", + -13.543170928955078 + ], + [ + "Student", + -13.54322624206543 + ], + [ + "ffey", + -13.54349136352539 + ], + [ + "▁vandalism", + -13.543593406677246 + ], + [ + "plotted", + -13.54372787475586 + ], + [ + "▁Periodic", + -13.543736457824707 + ], + [ + "Error", + -13.543742179870605 + ], + [ + "▁Chevron", + -13.543902397155762 + ], + [ + "infringing", + -13.544222831726074 + ], + [ + "planning", + -13.544285774230957 + ], + [ + "spilled", + -13.544550895690918 + ], + [ + "▁exhale", + -13.544798851013184 + ], + [ + "▁888-6", + -13.544964790344238 + ], + [ + "▁Eileen", + -13.544986724853516 + ], + [ + "Which", + -13.54501724243164 + ], + [ + "▁merchandising", + -13.545136451721191 + ], + [ + "▁stipend", + -13.545136451721191 + ], + [ + "american", + -13.545268058776855 + ], + [ + "▁polycarbonate", + -13.545445442199707 + ], + [ + "▁Hitachi", + -13.545492172241211 + ], + [ + "▁triumphant", + -13.54551887512207 + ], + [ + "▁malform", + -13.545538902282715 + ], + [ + "commemorative", + -13.545572280883789 + ], + [ + "▁halloween", + -13.545907974243164 + ], + [ + "azepam", + -13.546088218688965 + ], + [ + "▁Huntsville", + -13.546443939208984 + ], + [ + "LIB", + -13.54647159576416 + ], + [ + "fjord", + -13.54661750793457 + ], + [ + "▁chutney", + -13.54668140411377 + ], + [ + "robbing", + -13.546821594238281 + ], + [ + "▁unbearable", + -13.546835899353027 + ], + [ + "unmanned", + -13.546853065490723 + ], + [ + "creeping", + -13.546935081481934 + ], + [ + "synaptic", + -13.547003746032715 + ], + [ + "blank", + -13.547372817993164 + ], + [ + "▁reggae", + -13.547454833984375 + ], + [ + "euer", + -13.54747486114502 + ], + [ + "▁insanity", + -13.547624588012695 + ], + [ + "▁Branson", + -13.547659873962402 + ], + [ + "Front", + -13.547741889953613 + ], + [ + "▁Collision", + -13.547764778137207 + ], + [ + "preparatory", + -13.547765731811523 + ], + [ + "▁Ladder", + -13.547937393188477 + ], + [ + "▁beckon", + -13.548215866088867 + ], + [ + "▁revising", + -13.54831314086914 + ], + [ + "▁Webinar", + -13.548408508300781 + ], + [ + "▁unlucky", + -13.548539161682129 + ], + [ + "▁misinterpret", + -13.54872989654541 + ], + [ + "▁Friedrich", + -13.549049377441406 + ], + [ + "▁Varsity", + -13.549178123474121 + ], + [ + "▁whistleblower", + -13.54931354522705 + ], + [ + "▁Sundance", + -13.549471855163574 + ], + [ + "Concerning", + -13.54970645904541 + ], + [ + "degraded", + -13.54970645904541 + ], + [ + "▁remedial", + -13.549778938293457 + ], + [ + "▁Convertible", + -13.549893379211426 + ], + [ + "▁smelt", + -13.550052642822266 + ], + [ + "тор", + -13.550162315368652 + ], + [ + "▁handicapped", + -13.550171852111816 + ], + [ + "▁Hutchinson", + -13.550249099731445 + ], + [ + "▁jalapeno", + -13.550554275512695 + ], + [ + "▁whirl", + -13.550623893737793 + ], + [ + "▁Pauline", + -13.550822257995605 + ], + [ + "▁Gainesville", + -13.550864219665527 + ], + [ + "▁Lobster", + -13.550865173339844 + ], + [ + "▁Corbyn", + -13.55097770690918 + ], + [ + "neurotransmitter", + -13.551019668579102 + ], + [ + "oppo", + -13.551088333129883 + ], + [ + "▁Chestnut", + -13.551196098327637 + ], + [ + "▁Transplant", + -13.551403999328613 + ], + [ + "▁Betsy", + -13.551407814025879 + ], + [ + "lagging", + -13.551674842834473 + ], + [ + "▁tangent", + -13.552178382873535 + ], + [ + "▁treble", + -13.552423477172852 + ], + [ + "▁futile", + -13.552656173706055 + ], + [ + "Identifying", + -13.552750587463379 + ], + [ + "▁Socio", + -13.552899360656738 + ], + [ + "▁Charlottesville", + -13.552988052368164 + ], + [ + "Launched", + -13.553175926208496 + ], + [ + "▁squadron", + -13.553203582763672 + ], + [ + "▁grantee", + -13.553276062011719 + ], + [ + "▁graveyard", + -13.553304672241211 + ], + [ + "Recognizing", + -13.553507804870605 + ], + [ + "▁repression", + -13.55380630493164 + ], + [ + "▁SVG", + -13.554014205932617 + ], + [ + "▁muzzle", + -13.554028511047363 + ], + [ + "▁reluctance", + -13.554286003112793 + ], + [ + "▁Semiconductor", + -13.554442405700684 + ], + [ + "▁Orchid", + -13.554450988769531 + ], + [ + "miento", + -13.554750442504883 + ], + [ + "lodi", + -13.554754257202148 + ], + [ + "Whichever", + -13.554766654968262 + ], + [ + "tourism", + -13.554792404174805 + ], + [ + "▁splurge", + -13.554909706115723 + ], + [ + "▁supremacy", + -13.554909706115723 + ], + [ + "▁Hawai", + -13.554959297180176 + ], + [ + "▁revitalize", + -13.55506420135498 + ], + [ + "▁Kremlin", + -13.555224418640137 + ], + [ + "▁fairytale", + -13.5552396774292 + ], + [ + "▁Parenthood", + -13.555285453796387 + ], + [ + "Wembley", + -13.555387496948242 + ], + [ + "wondrous", + -13.555484771728516 + ], + [ + "▁metaphorical", + -13.55566120147705 + ], + [ + "▁yogi", + -13.55577278137207 + ], + [ + "▁Subsequent", + -13.555838584899902 + ], + [ + "▁guacamole", + -13.555845260620117 + ], + [ + "chicago", + -13.555916786193848 + ], + [ + "unfavorable", + -13.556001663208008 + ], + [ + "▁Werner", + -13.556111335754395 + ], + [ + "▁Sponge", + -13.556156158447266 + ], + [ + "▁Volleyball", + -13.556158065795898 + ], + [ + "▁Autodesk", + -13.556235313415527 + ], + [ + "greased", + -13.5563383102417 + ], + [ + "▁Kavanaugh", + -13.556469917297363 + ], + [ + "cushioned", + -13.556525230407715 + ], + [ + "Perfect", + -13.556563377380371 + ], + [ + "Energy", + -13.556573867797852 + ], + [ + "▁hallucinat", + -13.556713104248047 + ], + [ + "▁Piedmont", + -13.556783676147461 + ], + [ + "shackle", + -13.556947708129883 + ], + [ + "Clear", + -13.557077407836914 + ], + [ + "▁Okinawa", + -13.55740737915039 + ], + [ + "▁captivity", + -13.557409286499023 + ], + [ + "validating", + -13.55754566192627 + ], + [ + "▁Hezbollah", + -13.557563781738281 + ], + [ + "▁Separation", + -13.557565689086914 + ], + [ + "LIMITATION", + -13.557720184326172 + ], + [ + "▁vignette", + -13.557876586914062 + ], + [ + "▁parlor", + -13.558040618896484 + ], + [ + "▁Ajax", + -13.558052062988281 + ], + [ + "populous", + -13.558053970336914 + ], + [ + "▁Kelsey", + -13.558064460754395 + ], + [ + "▁emulsion", + -13.558189392089844 + ], + [ + "Proposed", + -13.558635711669922 + ], + [ + "▁Mackenzie", + -13.559127807617188 + ], + [ + "▁carbide", + -13.55912971496582 + ], + [ + "lymphatic", + -13.559679985046387 + ], + [ + "▁lurk", + -13.560052871704102 + ], + [ + "▁SCHOOL", + -13.560224533081055 + ], + [ + "escorted", + -13.560380935668945 + ], + [ + "▁meditative", + -13.560538291931152 + ], + [ + "▁biographies", + -13.561165809631348 + ], + [ + "Formerly", + -13.561166763305664 + ], + [ + "▁Twice", + -13.561166763305664 + ], + [ + "▁Bieber", + -13.56122875213623 + ], + [ + "adoptive", + -13.561254501342773 + ], + [ + "▁Spectacular", + -13.561322212219238 + ], + [ + "▁splendor", + -13.561478614807129 + ], + [ + "indulging", + -13.56168270111084 + ], + [ + "advance", + -13.561809539794922 + ], + [ + "мен", + -13.561841011047363 + ], + [ + "▁excret", + -13.561882972717285 + ], + [ + "degenerative", + -13.561898231506348 + ], + [ + "▁Pembroke", + -13.56210708618164 + ], + [ + "▁Madame", + -13.562295913696289 + ], + [ + "▁rebirth", + -13.562348365783691 + ], + [ + "▁Routine", + -13.562423706054688 + ], + [ + "▁Talbot", + -13.562493324279785 + ], + [ + "radually", + -13.562541961669922 + ], + [ + "▁REALTORS", + -13.562735557556152 + ], + [ + "raig", + -13.562748908996582 + ], + [ + "▁patina", + -13.563002586364746 + ], + [ + "infested", + -13.563125610351562 + ], + [ + "▁galvani", + -13.56319522857666 + ], + [ + "▁Wilkinson", + -13.563206672668457 + ], + [ + "▁Activation", + -13.56337833404541 + ], + [ + "communication", + -13.563541412353516 + ], + [ + "▁WARNING", + -13.563677787780762 + ], + [ + "▁Thumb", + -13.563998222351074 + ], + [ + "bruising", + -13.564114570617676 + ], + [ + "▁Lorraine", + -13.5641508102417 + ], + [ + "▁magistrate", + -13.564308166503906 + ], + [ + "▁dismantle", + -13.564371109008789 + ], + [ + "▁gratification", + -13.564780235290527 + ], + [ + "▁Navajo", + -13.564939498901367 + ], + [ + "▁Taurus", + -13.565572738647461 + ], + [ + "▁Judiciary", + -13.565725326538086 + ], + [ + "▁oppressive", + -13.565725326538086 + ], + [ + "▁GeForce", + -13.565753936767578 + ], + [ + "▁Reeves", + -13.565754890441895 + ], + [ + "▁Clutch", + -13.565926551818848 + ], + [ + "▁Evaluate", + -13.566357612609863 + ], + [ + "continue", + -13.566596031188965 + ], + [ + "▁whack", + -13.566696166992188 + ], + [ + "▁Stow", + -13.566777229309082 + ], + [ + "import", + -13.56680965423584 + ], + [ + "0.75", + -13.567138671875 + ], + [ + "▁SHIPPING", + -13.567144393920898 + ], + [ + "cancerous", + -13.567150115966797 + ], + [ + "▁Nugget", + -13.567460060119629 + ], + [ + "▁Avocado", + -13.56777572631836 + ], + [ + "▁Abhi", + -13.567840576171875 + ], + [ + "permeable", + -13.567930221557617 + ], + [ + "undisclosed", + -13.567934036254883 + ], + [ + "▁Whiskey", + -13.567948341369629 + ], + [ + "Judging", + -13.567959785461426 + ], + [ + "▁Stabil", + -13.568062782287598 + ], + [ + "▁tequila", + -13.56809139251709 + ], + [ + "utti", + -13.568196296691895 + ], + [ + "▁incandescent", + -13.568249702453613 + ], + [ + "narrated", + -13.56827449798584 + ], + [ + "▁suffix", + -13.568565368652344 + ], + [ + "Corruption", + -13.568723678588867 + ], + [ + "stricken", + -13.568731307983398 + ], + [ + "▁jailbreak", + -13.568748474121094 + ], + [ + "▁deceit", + -13.569047927856445 + ], + [ + "▁McLean", + -13.569517135620117 + ], + [ + "receptor", + -13.569567680358887 + ], + [ + "▁Bernardino", + -13.569839477539062 + ], + [ + "Fannie", + -13.569976806640625 + ], + [ + "▁Irwin", + -13.570757865905762 + ], + [ + "▁Christoph", + -13.570826530456543 + ], + [ + "▁aristocrat", + -13.570938110351562 + ], + [ + "▁50/50", + -13.570972442626953 + ], + [ + "▁Warfare", + -13.571100234985352 + ], + [ + "▁fracking", + -13.57129955291748 + ], + [ + "EIA", + -13.571507453918457 + ], + [ + "▁Burnett", + -13.571654319763184 + ], + [ + "retrieving", + -13.571889877319336 + ], + [ + "Founder", + -13.572206497192383 + ], + [ + "▁Telescope", + -13.572728157043457 + ], + [ + "▁Blitz", + -13.57279109954834 + ], + [ + "▁Identifie", + -13.573121070861816 + ], + [ + "▁intracellular", + -13.57318115234375 + ], + [ + "▁Orientation", + -13.573476791381836 + ], + [ + "▁upheaval", + -13.573476791381836 + ], + [ + "▁connotation", + -13.573637008666992 + ], + [ + "Europe", + -13.573692321777344 + ], + [ + "Silver", + -13.573772430419922 + ], + [ + "▁Bengaluru", + -13.57381820678711 + ], + [ + "▁Citrix", + -13.57383918762207 + ], + [ + "lsson", + -13.573901176452637 + ], + [ + "▁Ganesh", + -13.573966979980469 + ], + [ + "expedited", + -13.574112892150879 + ], + [ + "▁utopia", + -13.574115753173828 + ], + [ + "▁Attendance", + -13.574414253234863 + ], + [ + "Secret", + -13.574615478515625 + ], + [ + "▁bullpen", + -13.574642181396484 + ], + [ + "Specify", + -13.575386047363281 + ], + [ + "▁complainant", + -13.575554847717285 + ], + [ + "▁*******", + -13.575616836547852 + ], + [ + "▁Applicant", + -13.575624465942383 + ], + [ + "Promoting", + -13.575677871704102 + ], + [ + "▁enchanted", + -13.575702667236328 + ], + [ + "automating", + -13.575872421264648 + ], + [ + "principally", + -13.576070785522461 + ], + [ + "ров", + -13.576186180114746 + ], + [ + "▁Fidelity", + -13.576498985290527 + ], + [ + "▁Loyalty", + -13.576498985290527 + ], + [ + "▁oscillation", + -13.576498985290527 + ], + [ + "▁vengeance", + -13.576498985290527 + ], + [ + "MIA", + -13.576787948608398 + ], + [ + "▁Eiffel", + -13.576817512512207 + ], + [ + "▁testimonial", + -13.576925277709961 + ], + [ + "Japanese", + -13.576952934265137 + ], + [ + "▁lieutenant", + -13.577296257019043 + ], + [ + "▁fiat", + -13.57734203338623 + ], + [ + "▁Confession", + -13.577455520629883 + ], + [ + "▁Remarkabl", + -13.577589988708496 + ], + [ + "▁(1993)", + -13.577619552612305 + ], + [ + "▁encapsulate", + -13.577776908874512 + ], + [ + "Foot", + -13.57779312133789 + ], + [ + "future", + -13.577828407287598 + ], + [ + "▁appendix", + -13.577838897705078 + ], + [ + "▁remittance", + -13.577939987182617 + ], + [ + "Journal", + -13.5779447555542 + ], + [ + "▁Confederation", + -13.578252792358398 + ], + [ + "▁Societies", + -13.578252792358398 + ], + [ + "▁Sesame", + -13.578254699707031 + ], + [ + "▁McGraw", + -13.578457832336426 + ], + [ + "venue", + -13.578584671020508 + ], + [ + "▁integrative", + -13.578731536865234 + ], + [ + "▁cockroach", + -13.579051971435547 + ], + [ + "▁arrogance", + -13.579370498657227 + ], + [ + "▁twilight", + -13.579530715942383 + ], + [ + "▁accordion", + -13.57965087890625 + ], + [ + "istori", + -13.579818725585938 + ], + [ + "WHICH", + -13.580009460449219 + ], + [ + "▁integrator", + -13.580009460449219 + ], + [ + "▁engross", + -13.580013275146484 + ], + [ + "colonial", + -13.580114364624023 + ], + [ + "▁untu", + -13.580192565917969 + ], + [ + "renewing", + -13.580403327941895 + ], + [ + "EASE", + -13.580660820007324 + ], + [ + "▁lovable", + -13.580739974975586 + ], + [ + "ccompanied", + -13.580793380737305 + ], + [ + "▁detriment", + -13.581174850463867 + ], + [ + "▁hamlet", + -13.58119010925293 + ], + [ + "▁Centro", + -13.581408500671387 + ], + [ + "▁unsettling", + -13.581609725952148 + ], + [ + "▁decomposition", + -13.581610679626465 + ], + [ + "udra", + -13.582195281982422 + ], + [ + "▁endearing", + -13.582592964172363 + ], + [ + "▁Assault", + -13.582792282104492 + ], + [ + "Fulham", + -13.582819938659668 + ], + [ + "beaded", + -13.582980155944824 + ], + [ + "▁Waterford", + -13.5830659866333 + ], + [ + "▁phantom", + -13.58353328704834 + ], + [ + "▁headlamp", + -13.583536148071289 + ], + [ + "nurtured", + -13.583561897277832 + ], + [ + "▁ANSI", + -13.583587646484375 + ], + [ + "▁Beetle", + -13.58373737335205 + ], + [ + "Kindly", + -13.583758354187012 + ], + [ + "attaining", + -13.584131240844727 + ], + [ + "Micro", + -13.584278106689453 + ], + [ + "▁microprocessor", + -13.584335327148438 + ], + [ + "▁Pelosi", + -13.58441162109375 + ], + [ + "▁Thumbnail", + -13.584820747375488 + ], + [ + "▁Introduce", + -13.58498477935791 + ], + [ + "Microsoft", + -13.585063934326172 + ], + [ + "streamlining", + -13.585299491882324 + ], + [ + "Replacing", + -13.585467338562012 + ], + [ + "▁alternator", + -13.585646629333496 + ], + [ + "▁parody", + -13.58578109741211 + ], + [ + "▁MUSIC", + -13.586041450500488 + ], + [ + "▁Gluco", + -13.586233139038086 + ], + [ + "BIA", + -13.586256980895996 + ], + [ + "false", + -13.586419105529785 + ], + [ + "▁intimidation", + -13.586424827575684 + ], + [ + "▁HEALTH", + -13.586585998535156 + ], + [ + "▁Discipline", + -13.586907386779785 + ], + [ + "▁Dresden", + -13.586908340454102 + ], + [ + "▁entitle", + -13.5869779586792 + ], + [ + "▁Lincolnshire", + -13.587198257446289 + ], + [ + "▁Lamborghini", + -13.587712287902832 + ], + [ + "formulating", + -13.587769508361816 + ], + [ + "▁Rockford", + -13.588046073913574 + ], + [ + "Manufacture", + -13.588071823120117 + ], + [ + "▁chaplain", + -13.588088035583496 + ], + [ + "▁conclusive", + -13.588095664978027 + ], + [ + "ydia", + -13.588115692138672 + ], + [ + "▁origami", + -13.588357925415039 + ], + [ + "▁Intelli", + -13.588361740112305 + ], + [ + "Body", + -13.588388442993164 + ], + [ + "▁murk", + -13.588885307312012 + ], + [ + "▁Entertain", + -13.588888168334961 + ], + [ + "crumbling", + -13.588970184326172 + ], + [ + "▁Salzburg", + -13.58900260925293 + ], + [ + "▁THREE", + -13.589025497436523 + ], + [ + "Current", + -13.589044570922852 + ], + [ + "ahua", + -13.589189529418945 + ], + [ + "▁Staffordshire", + -13.589343070983887 + ], + [ + "▁incompetent", + -13.589486122131348 + ], + [ + "▁affliction", + -13.589552879333496 + ], + [ + "▁lubrication", + -13.58980941772461 + ], + [ + "▁quarantine", + -13.58980941772461 + ], + [ + "lobbie", + -13.590089797973633 + ], + [ + "segregated", + -13.590131759643555 + ], + [ + "▁844-244-6", + -13.590292930603027 + ], + [ + "▁Conservancy", + -13.590293884277344 + ], + [ + "▁Davenport", + -13.59045696258545 + ], + [ + "▁burgundy", + -13.590616226196289 + ], + [ + "▁rambling", + -13.590625762939453 + ], + [ + "Roasted", + -13.59066390991211 + ], + [ + "celebratory", + -13.590778350830078 + ], + [ + "▁Richie", + -13.591068267822266 + ], + [ + "william", + -13.591180801391602 + ], + [ + "▁categorical", + -13.591264724731445 + ], + [ + "▁Antenna", + -13.591437339782715 + ], + [ + "worsening", + -13.59183406829834 + ], + [ + "memory", + -13.591893196105957 + ], + [ + "halted", + -13.59190559387207 + ], + [ + "Louis", + -13.592225074768066 + ], + [ + "▁deodorant", + -13.592233657836914 + ], + [ + "▁licensure", + -13.592233657836914 + ], + [ + "▁octopus", + -13.592233657836914 + ], + [ + "display", + -13.592304229736328 + ], + [ + "▁vinaigrette", + -13.592395782470703 + ], + [ + "arrett", + -13.592741012573242 + ], + [ + "neonatal", + -13.592865943908691 + ], + [ + "▁Brasil", + -13.593024253845215 + ], + [ + "bedded", + -13.593156814575195 + ], + [ + "▁archetype", + -13.593206405639648 + ], + [ + "▁Gamma", + -13.593362808227539 + ], + [ + "▁Furnace", + -13.593528747558594 + ], + [ + "▁birdie", + -13.593605041503906 + ], + [ + "▁sporadic", + -13.593713760375977 + ], + [ + "▁ratchet", + -13.593856811523438 + ], + [ + "▁placenta", + -13.594120979309082 + ], + [ + "described", + -13.59423542022705 + ], + [ + "▁glitches", + -13.594436645507812 + ], + [ + "▁emergent", + -13.59463119506836 + ], + [ + "▁Brochure", + -13.594825744628906 + ], + [ + "▁Narrative", + -13.59531307220459 + ], + [ + "▁reunite", + -13.595515251159668 + ], + [ + "▁earmark", + -13.595660209655762 + ], + [ + "▁Pollution", + -13.595664978027344 + ], + [ + "▁recoup", + -13.595800399780273 + ], + [ + "▁Heidelberg", + -13.595962524414062 + ], + [ + "crammed", + -13.59631061553955 + ], + [ + "▁Quantitative", + -13.596449851989746 + ], + [ + "▁Dudley", + -13.596456527709961 + ], + [ + "PHY", + -13.596883773803711 + ], + [ + "implying", + -13.596985816955566 + ], + [ + "▁Derbyshire", + -13.596986770629883 + ], + [ + "wering", + -13.59708309173584 + ], + [ + "▁Alvin", + -13.597084045410156 + ], + [ + "▁naughty", + -13.597105026245117 + ], + [ + "illustrious", + -13.597262382507324 + ], + [ + "▁tassel", + -13.597278594970703 + ], + [ + "▁hobbyist", + -13.597728729248047 + ], + [ + "innumerable", + -13.597752571105957 + ], + [ + "▁embossing", + -13.59791374206543 + ], + [ + "▁Thunderbird", + -13.597949981689453 + ], + [ + "▁Couture", + -13.597996711730957 + ], + [ + "▁Ethnic", + -13.598243713378906 + ], + [ + "tainted", + -13.598318099975586 + ], + [ + "▁hiccup", + -13.598727226257324 + ], + [ + "glorify", + -13.599006652832031 + ], + [ + "▁Erdogan", + -13.599053382873535 + ], + [ + "orchestrated", + -13.599055290222168 + ], + [ + "▁occult", + -13.5990629196167 + ], + [ + "hectare", + -13.599522590637207 + ], + [ + "▁Javier", + -13.600043296813965 + ], + [ + "▁Basilica", + -13.600299835205078 + ], + [ + "Placing", + -13.60031509399414 + ], + [ + "▁theorem", + -13.600489616394043 + ], + [ + "▁Plateau", + -13.60053539276123 + ], + [ + "incident", + -13.600550651550293 + ], + [ + "exacerbated", + -13.60068416595459 + ], + [ + "▁metaphysical", + -13.60071849822998 + ], + [ + "▁scrubbing", + -13.600744247436523 + ], + [ + "▁opportunist", + -13.600846290588379 + ], + [ + "Estimated", + -13.600982666015625 + ], + [ + "uego", + -13.601029396057129 + ], + [ + "pinion", + -13.601264953613281 + ], + [ + "99.99", + -13.601300239562988 + ], + [ + "▁Pontiac", + -13.601337432861328 + ], + [ + "▁divergence", + -13.601337432861328 + ], + [ + "▁$1.3", + -13.601595878601074 + ], + [ + "Bird", + -13.601832389831543 + ], + [ + "kaufen", + -13.601990699768066 + ], + [ + "▁Loyola", + -13.602316856384277 + ], + [ + "▁atrocities", + -13.602317810058594 + ], + [ + "dros", + -13.602473258972168 + ], + [ + "Security", + -13.6024751663208 + ], + [ + "fabric", + -13.602477073669434 + ], + [ + "multifaceted", + -13.602554321289062 + ], + [ + "▁Paolo", + -13.602584838867188 + ], + [ + "prioritized", + -13.602635383605957 + ], + [ + "Additional", + -13.602643013000488 + ], + [ + "Conveniently", + -13.602919578552246 + ], + [ + "▁pregnancies", + -13.602971076965332 + ], + [ + "Participating", + -13.603135108947754 + ], + [ + "▁carpentry", + -13.60313606262207 + ], + [ + "▁excise", + -13.603185653686523 + ], + [ + "▁Ferdinand", + -13.60329818725586 + ], + [ + "▁impractical", + -13.60329818725586 + ], + [ + "ousness", + -13.603414535522461 + ], + [ + "breezy", + -13.603483200073242 + ], + [ + "▁gothic", + -13.603556632995605 + ], + [ + "▁Affiliation", + -13.603626251220703 + ], + [ + "Upcoming", + -13.603940963745117 + ], + [ + "▁indulgent", + -13.604007720947266 + ], + [ + "▁profess", + -13.604119300842285 + ], + [ + "▁Mimi", + -13.60422420501709 + ], + [ + "▁Accelerator", + -13.60444450378418 + ], + [ + "▁lucid", + -13.604616165161133 + ], + [ + "Washington", + -13.604843139648438 + ], + [ + "permanent", + -13.605027198791504 + ], + [ + "hindered", + -13.605229377746582 + ], + [ + "Department", + -13.605691909790039 + ], + [ + "▁pedagogical", + -13.605755805969238 + ], + [ + "▁slurry", + -13.605756759643555 + ], + [ + "conveying", + -13.606061935424805 + ], + [ + "▁populist", + -13.606414794921875 + ], + [ + "referred", + -13.60643196105957 + ], + [ + "Load", + -13.606541633605957 + ], + [ + "pretty", + -13.606578826904297 + ], + [ + "▁philanthropist", + -13.606740951538086 + ], + [ + "▁animate", + -13.606942176818848 + ], + [ + "ewicz", + -13.607006072998047 + ], + [ + "colossal", + -13.607131958007812 + ], + [ + "▁osteoarthritis", + -13.607562065124512 + ], + [ + "▁onslaught", + -13.607891082763672 + ], + [ + "▁squish", + -13.607941627502441 + ], + [ + "industry", + -13.60823917388916 + ], + [ + "congested", + -13.608386039733887 + ], + [ + "▁Lucie", + -13.60875415802002 + ], + [ + "▁blitz", + -13.608818054199219 + ], + [ + "marrying", + -13.6089506149292 + ], + [ + "▁Limerick", + -13.609090805053711 + ], + [ + "equipping", + -13.609129905700684 + ], + [ + "▁candidacy", + -13.609235763549805 + ], + [ + "astie", + -13.609403610229492 + ], + [ + "▁ointment", + -13.609536170959473 + ], + [ + "▁transfusion", + -13.609610557556152 + ], + [ + "▁tremor", + -13.609704971313477 + ], + [ + "▁CLOSE", + -13.609726905822754 + ], + [ + "Chicago", + -13.60976791381836 + ], + [ + "▁Expedia", + -13.609920501708984 + ], + [ + "▁Appreciation", + -13.610359191894531 + ], + [ + "▁Sherwood", + -13.610377311706543 + ], + [ + "▁Sweepstakes", + -13.610689163208008 + ], + [ + "antitrust", + -13.610815048217773 + ], + [ + "implanted", + -13.610896110534668 + ], + [ + "opulent", + -13.611005783081055 + ], + [ + "▁Routledge", + -13.611019134521484 + ], + [ + "▁retaliat", + -13.6110258102417 + ], + [ + "▁Courage", + -13.61105728149414 + ], + [ + "▁Fundraising", + -13.611076354980469 + ], + [ + "▁888-66", + -13.611162185668945 + ], + [ + "Universidad", + -13.611184120178223 + ], + [ + "Watford", + -13.611544609069824 + ], + [ + "▁Diwali", + -13.611679077148438 + ], + [ + "▁Camaro", + -13.611862182617188 + ], + [ + "caine", + -13.611913681030273 + ], + [ + "▁gulf", + -13.61198616027832 + ], + [ + "Linux", + -13.61216926574707 + ], + [ + "▁Criteria", + -13.61233901977539 + ], + [ + "▁EASY", + -13.612367630004883 + ], + [ + "otoxin", + -13.612425804138184 + ], + [ + "▁Magnificent", + -13.612504005432129 + ], + [ + "enem", + -13.612532615661621 + ], + [ + "▁cyclical", + -13.61283016204834 + ], + [ + "▁Bologna", + -13.612998962402344 + ], + [ + "▁Strauss", + -13.613044738769531 + ], + [ + "▁melancholy", + -13.613164901733398 + ], + [ + "producer", + -13.613171577453613 + ], + [ + "▁abolition", + -13.613330841064453 + ], + [ + "▁Sacrament", + -13.613374710083008 + ], + [ + "leaky", + -13.613924026489258 + ], + [ + "▁Disabled", + -13.614026069641113 + ], + [ + "▁Knicks", + -13.614347457885742 + ], + [ + "▁TRUE", + -13.614517211914062 + ], + [ + "▁Obesity", + -13.614652633666992 + ], + [ + "▁graze", + -13.614767074584961 + ], + [ + "▁Hertfordshire", + -13.614818572998047 + ], + [ + "▁Peugeot", + -13.614984512329102 + ], + [ + "confident", + -13.61508560180664 + ], + [ + "▁UNICEF", + -13.61514949798584 + ], + [ + "anabolic", + -13.615285873413086 + ], + [ + "▁Banquet", + -13.61534595489502 + ], + [ + "▁Saddam", + -13.615368843078613 + ], + [ + "▁Consciousness", + -13.615480422973633 + ], + [ + "▁periphery", + -13.61548137664795 + ], + [ + "budgetary", + -13.615519523620605 + ], + [ + "Drizzle", + -13.615547180175781 + ], + [ + "Archaeological", + -13.615646362304688 + ], + [ + "affixed", + -13.61564826965332 + ], + [ + "▁Deacon", + -13.615774154663086 + ], + [ + "cautionary", + -13.615896224975586 + ], + [ + "▁depressive", + -13.615978240966797 + ], + [ + "disguised", + -13.616130828857422 + ], + [ + "▁delicacy", + -13.61630916595459 + ], + [ + "▁Paraguay", + -13.6166410446167 + ], + [ + "▁obedient", + -13.6166410446167 + ], + [ + "Client", + -13.616717338562012 + ], + [ + "Germain", + -13.616805076599121 + ], + [ + "Slightly", + -13.616929054260254 + ], + [ + "▁dazzle", + -13.616978645324707 + ], + [ + "▁Laurence", + -13.617032051086426 + ], + [ + "ethnic", + -13.618043899536133 + ], + [ + "▁Ophthalmol", + -13.618069648742676 + ], + [ + "▁gypsum", + -13.618134498596191 + ], + [ + "▁alcoholism", + -13.618155479431152 + ], + [ + "▁subwoofer", + -13.6184663772583 + ], + [ + "▁encircl", + -13.618468284606934 + ], + [ + "▁Xmas", + -13.61872386932373 + ], + [ + "▁immigrat", + -13.619500160217285 + ], + [ + "▁Baptism", + -13.619796752929688 + ], + [ + "conserved", + -13.619805335998535 + ], + [ + "▁Appraisal", + -13.619962692260742 + ], + [ + "▁pelvis", + -13.61997127532959 + ], + [ + "Haunted", + -13.6205472946167 + ], + [ + "▁eaves", + -13.620651245117188 + ], + [ + "▁sprawl", + -13.620931625366211 + ], + [ + "enviable", + -13.620955467224121 + ], + [ + "▁cloning", + -13.621140480041504 + ], + [ + "spiced", + -13.621292114257812 + ], + [ + "▁caliper", + -13.621298789978027 + ], + [ + "Tube", + -13.621444702148438 + ], + [ + "▁ireland", + -13.621469497680664 + ], + [ + "Smoky", + -13.621509552001953 + ], + [ + "▁CONTROL", + -13.621627807617188 + ], + [ + "▁Umbrella", + -13.621627807617188 + ], + [ + "▁Diagnosis", + -13.621794700622559 + ], + [ + "▁jigsaw", + -13.621978759765625 + ], + [ + "▁Sonny", + -13.622042655944824 + ], + [ + "einem", + -13.622092247009277 + ], + [ + "▁Montenegro", + -13.6221284866333 + ], + [ + "▁malnutrition", + -13.6221284866333 + ], + [ + "▁Tetra", + -13.622233390808105 + ], + [ + "liberal", + -13.622275352478027 + ], + [ + "▁tunic", + -13.622307777404785 + ], + [ + "▁Octav", + -13.622400283813477 + ], + [ + "effe", + -13.622445106506348 + ], + [ + "Consolidated", + -13.622461318969727 + ], + [ + "▁Hungry", + -13.622461318969727 + ], + [ + "obby", + -13.62252140045166 + ], + [ + "▁Acne", + -13.622546195983887 + ], + [ + "▁hunch", + -13.622550010681152 + ], + [ + "▁eyeglasses", + -13.623128890991211 + ], + [ + "isolating", + -13.623169898986816 + ], + [ + "▁consulate", + -13.623198509216309 + ], + [ + "▁Galactic", + -13.623213768005371 + ], + [ + "▁reverb", + -13.62346363067627 + ], + [ + "funniest", + -13.623464584350586 + ], + [ + "▁ramen", + -13.623478889465332 + ], + [ + "deepening", + -13.623531341552734 + ], + [ + "hospitable", + -13.623629570007324 + ], + [ + "▁liposuction", + -13.623629570007324 + ], + [ + "compete", + -13.623679161071777 + ], + [ + "generative", + -13.623758316040039 + ], + [ + "▁Impossible", + -13.623804092407227 + ], + [ + "▁Maori", + -13.624165534973145 + ], + [ + "conceived", + -13.624175071716309 + ], + [ + "▁Botanic", + -13.624266624450684 + ], + [ + "▁vortex", + -13.624317169189453 + ], + [ + "MOUNT", + -13.624338150024414 + ], + [ + "▁knead", + -13.62468433380127 + ], + [ + "▁bogus", + -13.624820709228516 + ], + [ + "Ticket", + -13.62498664855957 + ], + [ + "▁Synchron", + -13.624993324279785 + ], + [ + "▁Redskins", + -13.625320434570312 + ], + [ + "▁Fedora", + -13.625565528869629 + ], + [ + "cien", + -13.625804901123047 + ], + [ + "▁cheerleader", + -13.625994682312012 + ], + [ + "▁bohemian", + -13.626137733459473 + ], + [ + "▁intoxicated", + -13.626140594482422 + ], + [ + "recognisable", + -13.62630558013916 + ], + [ + "▁applicability", + -13.62630558013916 + ], + [ + "▁hummingbird", + -13.62630558013916 + ], + [ + "chrys", + -13.626630783081055 + ], + [ + "skewed", + -13.626640319824219 + ], + [ + "▁Juventus", + -13.626640319824219 + ], + [ + "BURG", + -13.626696586608887 + ], + [ + "▁wristband", + -13.626808166503906 + ], + [ + "Cuomo", + -13.626814842224121 + ], + [ + "Cortez", + -13.62690258026123 + ], + [ + "▁Reflect", + -13.627007484436035 + ], + [ + "advisor", + -13.62706184387207 + ], + [ + "▁Scandinavia", + -13.627126693725586 + ], + [ + "▁motivator", + -13.627477645874023 + ], + [ + "employee", + -13.627585411071777 + ], + [ + "▁detonat", + -13.628195762634277 + ], + [ + "▁junkie", + -13.628366470336914 + ], + [ + "▁bodice", + -13.628656387329102 + ], + [ + "▁scones", + -13.628825187683105 + ], + [ + "▁mammoth", + -13.628987312316895 + ], + [ + "▁Assoc", + -13.628993034362793 + ], + [ + "exploiting", + -13.629242897033691 + ], + [ + "▁bandwagon", + -13.629659652709961 + ], + [ + "▁Raphael", + -13.629668235778809 + ], + [ + "▁Avant", + -13.629676818847656 + ], + [ + "Suggested", + -13.62996768951416 + ], + [ + "individual", + -13.630006790161133 + ], + [ + "Quality", + -13.630119323730469 + ], + [ + "method", + -13.630123138427734 + ], + [ + "▁Genealogy", + -13.630166053771973 + ], + [ + "▁coyote", + -13.630170822143555 + ], + [ + "▁Attitude", + -13.630171775817871 + ], + [ + "▁Crochet", + -13.630675315856934 + ], + [ + "▁Fernandez", + -13.631004333496094 + ], + [ + "▁quantified", + -13.631174087524414 + ], + [ + "lauded", + -13.63123607635498 + ], + [ + "oxetine", + -13.631340980529785 + ], + [ + "emotional", + -13.63134479522705 + ], + [ + "riol", + -13.631351470947266 + ], + [ + "▁enclave", + -13.631508827209473 + ], + [ + "▁trove", + -13.631958961486816 + ], + [ + "Facebook", + -13.63196849822998 + ], + [ + "▁Appreciate", + -13.632014274597168 + ], + [ + "swath", + -13.632427215576172 + ], + [ + "▁Saratoga", + -13.632856369018555 + ], + [ + "Shift", + -13.633370399475098 + ], + [ + "▁EXCLUSI", + -13.633530616760254 + ], + [ + "▁Regulator", + -13.633658409118652 + ], + [ + "Basic", + -13.633729934692383 + ], + [ + "creating", + -13.633893013000488 + ], + [ + "▁tragedies", + -13.634037017822266 + ], + [ + "▁NORTH", + -13.634208679199219 + ], + [ + "▁Departure", + -13.634374618530273 + ], + [ + "▁Presidency", + -13.634374618530273 + ], + [ + "museum", + -13.634382247924805 + ], + [ + "Jewish", + -13.634407997131348 + ], + [ + "▁Melody", + -13.634454727172852 + ], + [ + "▁Hahn", + -13.634507179260254 + ], + [ + "▁Québec", + -13.634712219238281 + ], + [ + "▁Ortiz", + -13.635276794433594 + ], + [ + "▁proxies", + -13.635896682739258 + ], + [ + "▁Injuries", + -13.636065483093262 + ], + [ + "▁Cancun", + -13.636075019836426 + ], + [ + "▁Beaumont", + -13.63630199432373 + ], + [ + "▁splice", + -13.636756896972656 + ], + [ + "▁mousse", + -13.636762619018555 + ], + [ + "parametric", + -13.63708782196045 + ], + [ + "▁Magdalen", + -13.637255668640137 + ], + [ + "▁paranoid", + -13.63748836517334 + ], + [ + "▁monograph", + -13.637690544128418 + ], + [ + "wealth", + -13.637702941894531 + ], + [ + "gallon", + -13.637847900390625 + ], + [ + "operator", + -13.637927055358887 + ], + [ + "▁amenity", + -13.637930870056152 + ], + [ + "▁bittersweet", + -13.637948036193848 + ], + [ + "▁Thrive", + -13.63800048828125 + ], + [ + "▁Cyril", + -13.638273239135742 + ], + [ + "Member", + -13.638465881347656 + ], + [ + "laise", + -13.638616561889648 + ], + [ + "intervening", + -13.63867473602295 + ], + [ + "▁Atmospheric", + -13.638772964477539 + ], + [ + "▁displac", + -13.638800621032715 + ], + [ + "▁mobilization", + -13.63895034790039 + ], + [ + "▁Ascend", + -13.638964653015137 + ], + [ + "▁defrost", + -13.639141082763672 + ], + [ + "▁wavy", + -13.639310836791992 + ], + [ + "▁catapult", + -13.63945198059082 + ], + [ + "▁Rodeo", + -13.639534950256348 + ], + [ + "▁Shabbat", + -13.63962173461914 + ], + [ + "Cost", + -13.6397123336792 + ], + [ + "▁evict", + -13.639891624450684 + ], + [ + "lissa", + -13.639902114868164 + ], + [ + "sedentary", + -13.639962196350098 + ], + [ + "hunted", + -13.639972686767578 + ], + [ + "▁COLOR", + -13.640167236328125 + ], + [ + "▁sailboat", + -13.640192031860352 + ], + [ + "▁retweet", + -13.640299797058105 + ], + [ + "▁physiotherapy", + -13.640470504760742 + ], + [ + "▁geese", + -13.640472412109375 + ], + [ + "▁888-5", + -13.64071273803711 + ], + [ + "▁Grocery", + -13.641149520874023 + ], + [ + "Shelves", + -13.641386985778809 + ], + [ + "▁Yogi", + -13.642106056213379 + ], + [ + "▁Receiving", + -13.642339706420898 + ], + [ + "▁Titus", + -13.642721176147461 + ], + [ + "▁impediment", + -13.643190383911133 + ], + [ + "▁ukulele", + -13.643190383911133 + ], + [ + "guitar", + -13.643218994140625 + ], + [ + "⁄", + -14.118217468261719 + ] + ], + "byte_fallback": true + } +} \ No newline at end of file diff --git a/siglip-so400m-patch14-384/tokenizer.json b/siglip-so400m-patch14-384/tokenizer.json new file mode 100644 index 0000000000000000000000000000000000000000..1095a2dbe8a34b17f48d1eaba76c0f1b88cd93a7 --- /dev/null +++ b/siglip-so400m-patch14-384/tokenizer.json @@ -0,0 +1,82501 @@ +{ + "version": "1.0", + "truncation": null, + "padding": null, + "added_tokens": [ + { + "id": 0, + "content": "", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 1, + "content": "", + "single_word": false, + "lstrip": true, + "rstrip": true, + "normalized": false, + "special": true + }, + { + "id": 2, + "content": "", + "single_word": false, + "lstrip": true, + "rstrip": true, + "normalized": false, + "special": true + } + ], + "normalizer": { + "type": "Sequence", + "normalizers": [ + { + "type": "Lowercase" + }, + { + "type": "Replace", + "pattern": { + "Regex": "[!\"\\#\\$%\\&'\\(\\)\\*\\+,\\-\\.:;=\\?@\\[\\\\\\]\\^_`\\{\\|\\}\\~]" + }, + "content": "" + }, + { + "type": "Replace", + "pattern": { + "Regex": "\\s+" + }, + "content": " " + }, + { + "type": "Strip", + "strip_left": true, + "strip_right": true + }, + { + "type": "Precompiled", + "precompiled_charsmap": "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gAkAAIRlAAD9GwCAzNAHAMzwBwAFHACAkYkAAMxMBgDNBAYAzHAGAM10BgDMQAcAmy0PAMyoBwDNrAcAhg0AAIdVDwCEQQ8ACQsAgIIBDACDVQ8AgDUBAIHZAQCkDACAj+kAAIztAACSDACA3R0AgIv1AACIbQ8AiQ0AAA8LAIC0CwCAgiUAAE0MAICBQQAAUwwAgBUeAIANHgCAJR4AgB0eAIAtHgCABR4AgIApAACBKQAA/AsAgA0cAICEeQAAFRwAgIFNAQCAoQEAGAsAgKP9DwDMOAIAzUgDAB0cAICBWQAAzXwCAMykDQAkCwCAWQwAgKjJDwCHOQAA1wkAgImhDwADCwCAkREAAJ4MAIDaCQCAmQsAgF8MAICAuQ8AgbkPANUdAICDjQ8A9gsAgCUcAICEBQAALRwAgB4LAIA1HACAKgsAgIGdDwCHIQAAh7UPAMyoAgDN6AIAzLQMAM3cDACmzQAAp8UAAE0cAICPgQ8AjIkPAKPlAAAwCwCAPRwAgDwLAICxyQAAhwUAAFUcAIBFHACAhz0AAF0cAIBxDACANgsAgKMFDwCB+QAAzKgDAGUcAIBICwCAjEkAAKPxAABtHACAdwwAgEILAICnlQAAfRwAgHUcAIDMrAMAzcgAAN0JAICHaQAA4AkAgIG9AACCeQAA4wkAgIe5AQBOCwCAkaUAAIEdAACdHACAVAsAgIgFAAClHACAm5EAAFoLAIDmCQCAjJEBANILAIDGCwCAwAsAgMwLAICDRQAAgrkBAIG5AQCApQEAPR4AgIZxAABgCwCAhEkAAIsVAACKPQAAiTkAAIhFAACP+QAAZgsAgLoLAICMBQAAp1EBAKZJAQBlDACAsHkAAKNZAQCMqQAAgKkAAIGpAACBlQAAgJUAAK1xAQBrDACAogsAgISNAABNHgCARR4AgKMhAABdHgCAVR4AgGUeAICBbQAAgG0AALEFAQCkOQAANR4AgIUcAIBsCwCAqAUAAJUcAICNHACArQkAAMywAQCBvQMAgL0DAIPNAwCtHACAtRwAgL0cAIDMvAEAzYQBAInpAwDMHAEAgdkCAIDFAgDNOAEAzDwBAMxoAgDNRAIAg00AAMUcAICH2QAAhy0AAIBFAACBEQAAggUAAHILAIDVHACAzRwAgN0cAIDMOAIAiBUAAIjhAACAbQAAgTkAAMyEAgDNUAEA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vBkBAL0ZAQC+fQEAv3UBAKPtAQCeOwCAojsAgKY7AICqOwCApu0BAKXtAQCuOwCAq3kBAKpxAQCyOwCAtjsAgK85AQCuMQEArVUBAKxVAQC6OwCAvjsAgMI7AIDGOwCAyjsAgOGsAQDOOwCA42AGANI7AIDWOwCA2jsAgO9UBgDeOwCA4jsAgL60GgDmOwCA6jsAgO47AICGaBwAh4wDAPI7AID2OwCA+jsAgP47AICAOQAAgTkAAIIFAAACPACACjwAgA48AIASPACAFjwAgKgdAwCpQQMAqkEDAKtBAwCsQQMArUkDAK5xAwCvcQMAhCAdABo8AIAePACAIjwAgCY8AIAqPACALjwAgDI8AIC46QAAufUAALr9AAC78QAAvJEAAL2RAAC+iQAAv4kAALDhAACx4QAAsuEAALPhAAC04QAAte0AALbZAAC32QAA4wwHAOEgBwDhMAEA4wgHADY8AIA6PACAPjwAgEI8AIBGPACASjwAgE48AIBSPACA75gHAFY8AIBaPACA74gHALOJAgBePACAYjwAgL6AGgBmPACAtokCALWJAgBqPACAu2UBALplAQBuPACAcjwAgL9pAQC+ZQEAvXUBALx1AQC3PQYAtj0GALU9BgC0IQYAszUGALI1BgCxAQYAsAkGAL9ZBgC+UQYAvVkGALxNBgC7bQYAunkGALlxBgC4eQYAgJ0AAIGtAACCpQAAejwAgH48AICCPACAhjwAgIo8AICvcQYArmkGAK1tBgCsbQYAq4EGAKqZBgCpkQYAqJkGAAY8AIB2PACAjjwAgKPFHQCSPACApcUdAKbFHQCWPACAhgADAIdkAwCqKR4AqykeAKw5HgCtOR4ArikeAK8lHgCzOR4AmjwAgJ48AICiPACApjwAgLb9HgC1/R4AqjwAgLvZHgC60R4ArjwAgLI8AIC/aR8AvmEfAL1pHwC8wR4AqPEeAKnxHgCq8R4Aq/EeAKw1HgCtPR4ArjUeAK8tHgC2PACAujwAgL48AIDCPACAxjwAgMo8AIDOPACA0jwAgLjlHwC57R8AuuUfALv5HwC86R8AvZEfAL6RHwC/jR8AsFUeALFdHgCyVR4As/0fALTlHwC17R8AtuUfALfdHwCjeR8A1jwAgNo8AIDePACA4jwAgKa9HwClvR8A5jwAgKuZHwCqkR8AhogAAIdMAQCvKR4AriEeAK0pHgCsgR8AgEkAAIFJAACCWQAAs5keAOo8AIC1iR4AtlEBAO48AIDyPACA9jwAgLotAQC7JQEAvD0BAL0lAQC+JQEAvxUBAKhNHgCpVR4Aql0eAKtVHgCsTR4ArZ0BAK6JAQCvgQEAhKwBAPo8AID+PACAAj0AgAY9AIAKPQCADj0AgBI9AIC4ZQEAuW0BALplAQC7fQEAvGUBAL1tAQC+ZQEAv9kAALClAQCxrQEAsqUBALO9AQC0rQEAtZ0BALaVAQC3XQEAo9UdABY9AIAaPQCAHj0AgCI9AICmHQIApcUdACY9AICraQIAqmECACo9AIAuPQCAr1kCAK5pAgCtaQIArHECADI9AIA2PQCAOj0AgD49AIBCPQCARj0AgEo9AIBOPQCAgDkAAIE5AACCBQAAUj0AgFo9AIBePQCAh0ADAIZcBACETAQAYj0AgGY9AICEBAUA4yABAGo9AIDhqAEAbj0AgO+UGgByPQCAdj0AgHo9AIB+PQCAgj0AgIY9AICKPQCAs6EDAI49AICSPQCAlj0AgJo9AIC2fQMAtX0DAJ49AIC7WQMAulEDAKI9AICmPQCAv/0AAL79AAC9/QAAvEEDAKhRAgCpWQIAqmkCAKtpAgCstQIArb0CAK61AgCvrQIAhKgHAKo9AICuPQCAsj0AgIKpAAC2PQCAgKkAAIGpAAC4aQEAuWkBALoJAQC7CQEAvBkBAL0ZAQC+CQEAvwkBALDVAgCx3QIAstUCALNpAQC0eQEAtXkBALZpAQC3YQEA4bgBAOHUHwDjOB8A4wwbALo9AIC+PQCAwj0AgMo9AIDOPQCA0j0AgNY9AIDaPQCAvjwJAN49AIDvhBsA74QbAKOhAgDiPQCAhugEAIe8BQDmPQCApn0CAKV9AgDqPQCAq1kCAKpRAgDuPQCA8j0AgK/9AQCu/QEArf0BAKxBAgCzhQYAxj0AgPY9AID6PQCA/j0AgLaJBgC1jQYAAj4AgLuRBgC6iQYABj4AgAo+AIC/9QYAvokGAL2BBgC8iQYADj4AgBI+AIAWPgCAGj4AgB4+AIAiPgCAJj4AgO+EHQAqPgCA4QAEAC4+AIDj/AQAgBEAAIEdAACCBQAAMj4AgKjxBgCp8QYAqg0GAKsFBgCsBQYArQkGAK49BgCvNQYANj4AgDo+AICGiAAAhxADAD4+AIBCPgCA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GkUAgB5FAIAiRQCAJkUAgIANAACBFQAAgh0AACpFAIAuRQCAMkUAgIR4AQC+FAAA4xQPADpFAIDh4A0AhAADAIawBACHFAMAPkUAgEJFAIBGRQCASkUAgE5FAIBSRQCA78APAFZFAIBaRQCAXkUAgGJFAIBmRQCAakUAgLNtAwBuRQCAtX0DALZ1AwByRQCAdkUAgHpFAIC6UQMAu1EDALz1AwC9/QMAvukDAL/hAwB+RQCAgkUAgIZFAICKRQCAjkUAgJJFAICWRQCAmkUAgKhxAgCpeQIAqokDAKuJAwCsmQMArZkDAK6JAwCviQMAsPkDALH5AwCyTQMAs0UDALRBAwC1SQMAtnEDALdxAwC4IQMAuSEDALohAwC7IQMAvCEDAL0hAwC+IQMAvyEDAICdAQCBEQAAghEAAIQEBQDvFAAAnkUAgKJFAIC+EAUA48gAAKpFAIDh0AEArkUAgLJFAIC2RQCAukUAgL5FAICqeQIAq3kCAIboBACHYAUArsECAK/JAgCs3QIArdUCAMJFAICjRQIAxkUAgMpFAICmXQIAzkUAgNJFAIClVQIA1kUAgNpFAIDeRQCA4kUAgOZFAIDqRQCA7kUAgO+EDgC+rAQA4dAOAPJFAIDjFAEA9kUAgPpFAID+RQCAAkYAgLPdAQAGRgCACkYAgA5GAIASRgCAtv0BALX9AQAaRgCAu90BALrdAQCE4AQAHkYAgL+hAQC+vQEAvb0BALy9AQCoBQYAqR0GAKoVBgCrLQYArDUGAK09BgCuNQYArykGAKZFAICC9QcAgeUHAIDlBwAWRgCAIkYAgIYcAACHsAMAuCUGALnFBgC6zQYAu8UGALzdBgC9xQYAvs0GAL/FBgCwWQYAsVkGALIpBgCzKQYAtDkGALUlBgC2JQYAtx0GAKOdBgAmRgCAKkYAgC5GAIAyRgCApr0GAKW9BgA2RgCAq50GAKqdBgA6RgCAPkYAgK/hBgCu/QYArf0GAKz9BgBCRgCAs/UHAEZGAIBKRgCAtu0HAE5GAIBSRgCAteUHALqNBwC7kQcAVkYAgFpGAIC+dQcAv30HALyBBwC9fQcAqCUGAKkpBgCqOQYAqzkGAKwpBgCtKQYArnkGAK91BgBeRgCAYkYAgGZGAIBqRgCAbkYAgHJGAIB2RgCAekYAgLjVBgC53QYAuuEGALv9BgC85QYAve0GAL7lBgC/mQYAsA0GALERBgCyEQYAs+0GALT1BgC1/QYAtvUGALftBgCjsQYAgi0AAIEVAACAsQAANkUAgKapBgCloQYAfkYAgKvVBgCqyQYAgkYAgL5oAQCvOQYArjEGAK05BgCsxQYAikYAgLPxAQCGaAAAh3wBALZdAQCORgCAkkYAgLVVAQC6SQEAu0kBAJZGAICaRgCAvj0BAL8hAQC8OQEAvTUBAJ5GAICiRgCAhAQDAL6AHACmRgCA4RwGAKpGAIDjAAYAvwguAK5GAICyRgCA78gHALZGAIC6RgCAvkYAgMJGAIDGRgCAykYAgKN9AgDORgCApdkCANJGAIDWRgCAptECANpGAIDeRgCAq8UCAKrFAgCtuQIArLUCAK+tAgCusQIAqW0FAKhZBQCrDQIAqrkCAK0dAgCsHQIArwUCAK4NAgC+aB0A4kYAgOZGAIDqRgCAgB0AAIEJAACCmQEA7kYAgLnhAwC4KQIAu+EDALrpAwC94QMAvPkDAL/hAwC+6QMAsU0CALBNAgCzIQIAsi0CALUlAgC0OQIAtxECALYlAgCowQIAqdECAKrRAgCr5QIArP0CAK0VAQCuHQEArw0BAPJGAID6RgCA/kYAgAJHAIAGRwCACkcAgA5HAIASRwCAuAUBALkJAQC6HQEAuxUBALwxAQC9MQEAvv0BAL/1AQCweQEAsUEBALJBAQCzXQEAtEUBALVNAQC2RQEAtz0BAIagHQCHxB0AFkcAgO/YAAAaRwCAHkcAgCJHAIDvxAYAhGwcAOH0BgAmRwCA47AGACpHAIDhlAEALkcAgONEBgCzGQIAMkcAgDZHAIA6RwCAhewsALbVAQC1NQIAPkcAgLvFAQC6/QEAQkcAgEZHAIC/yQEAvsEBAL3JAQC81QEAo9kdAPZGAIBKRwCATkcAgFJHAICmFR4ApfUdAFZHAICrBR4Aqj0eAFpHAIBeRwCArwkeAK4BHgCtCR4ArBUeAIBpAACBaQAAggUAAGJHAIBmRwCAakcAgIcQAwCGfAMAbkcAgHJHAIB2RwCAekcAgH5HAICCRwCAhkcAgIpHAICopR8Aqa0fAKqlHwCrvR8ArKUfAK2tHwCupR8ArxUfAI5HAICSRwCAlkcAgJpHAICeRwCAokcAgKZHAICqRwCAuA0fALkZHwC6IR8AuyEfALzZAAC92QAAvskAAL/BAACwcR8AsXEfALJxHwCzRR8AtEEfALVNHwC2PR8AtzUfALMtHgCuRwCAskcAgLZHAIC6RwCAti0eALUtHgC+RwCAu7UeALq1HgDCRwCAxkcAgL+JHgC+hR4AvZEeALylHgCCKQAAo2keAIAdAACBFQAApmkeAMpHAIDORwCApWkeAKrxHgCr8R4A0kcAgITgAQCuwR4Ar80eAKzhHgCt1R4AqNUBAKnlAQCq7QEAq+UBAKz9AQCt5QEAru0BAK/lAQC+oAEAhkYAgNZHAIDaRwCAhhAAAId0AQDeRwCA4kcAgLh9AQC5wQAAusEAALvBAAC8wQAAvckAAL7xAAC/8QAAsJ0BALFFAQCyTQEAs0UBALRdAQC1RQEAtk0BALdFAQDmRwCA6kcAgO5HAIDyRwCA9kcAgO80AgDv7B4A+kcAgOHwHQDj4AIA4zAeAOGEAQD+RwCAAkgAgAZIAIAKSACAsyUCAJQAAAAOSACAEkgAgBZIAIC2JQIAtTUCABpIAIC7wQIAuhkCAB5IAIAiSACAv8ECAL7ZAgC90QIAvNkCACZIAIAqSACALkgAgKPpAgAySACApfkCAKbpAgA2SACAOkgAgD5IAICq1QIAqw0CAKwVAgCtHQIArhUCAK8NAgCAYQAAgWEAAIIFAABCSACASkgAgIQABAC+FAQATkgAgIbABACHUAMAUkgAgFZIAIBaSACAXkgAgGJIAIBmSACAqK0CAKm9AgCqtQIAqw0BAKwVAQCtHQEArhUBAK8NAQCE7AQAakgAgG5IAIBySACAdkgAgHpIAIB+SACAgkgAgLgdAQC5LQEAuiUBALvNAQC81QEAvd0BAL7JAQC/wQEAsH0BALFVAQCyXQEAs1UBALRNAQC1PQEAtjUBALctAQDhGB4AhkgAgOM4HgCKSACAjkgAgJJIAICWSACAmkgAgJ5IAICiSACAvmAEAKZIAICBdQAAgHUAAO/gHwCCbQAAqkgAgK5IAICG6AQAh3wFALJIAIDhkAEAukgAgOOgAAC+SACAwkgAgMZIAIDvtAAAykgAgM5IAIDSSACA1kgAgLUFBgBGSACAtkgAgLYFBgDaSACA3kgAgLOlBQDiSACAvRkGALwRBgC/YQYAvhEGAOZIAIDqSACAuwkGALohBgCj/QUA7kgAgPJIAID2SACA+kgAgKZdBgClXQYA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sY0CALKFAgCzbQEAtHkBALV5AQC2aQEAt2kBAIYgBACHCAUAYksAgGZLAIBqSwCAbksAgHJLAIDvXAAAhOwEAOFcDgB2SwCA44wOAHpLAIB+SwCAgksAgIZLAICjVQIAiksAgI5LAICSSwCAlksAgKYdAgClHQIAmksAgKsJAgCqOQIAnksAgKJLAICv/QEArv0BAK35AQCsEQIAqGkGAKlpBgCqeQYAq3kGAKxpBgCtaQYArp0GAK+VBgBWSwCApksAgKpLAICuSwCAsksAgLZLAIC6SwCAvksAgLj1BgC5+QYAuo0GALuFBgC8nQYAvYUGAL6FBgC/tQYAsO0GALH1BgCy/QYAs/UGALTtBgC10QYAttEGALfRBgCz8QYAghUAAIG1AACAtQAAwksAgLbpBgC14QYAvtQDALsxBgC6KQYAxksAgMpLAIC/FQYAvikGAL0hBgC8KQYAzksAgKO1BgCGyAAAh8gAAKatBgDSSwCA1ksAgKWlBgCqbQYAq3UGANpLAIDeSwCArm0GAK9RBgCsbQYArWUGAKg1BgCpOQYAqoEGAKuBBgCsgQYArYEGAK6BBgCvtQYA4ksAgOZLAIDqSwCA7ksAgPJLAID2SwCA+ksAgP5LAIC4nQYAua0GALqlBgC7aQEAvHkBAL15AQC+aQEAv2kBALDRBgCx0QYAstEGALPRBgC0tQYAtb0GALa1BgC3rQYAswkGAAJMAIAGTACACkwAgA5MAIC2AQYAtQkGABJMAIC7FQYAuhUGABZMAIAaTACAv3kGAL5xBgC9BQYAvAUGAB5MAICjTQYAIkwAgOZKAICmRQYAJkwAgCpMAIClTQYAqlEGAKtRBgAuTACAMkwAgK41BgCvPQYArEEGAK1BBgCB6QMAgN0DAISIAwCC4QMAhrA8AIeIAgC+VAMAOkwAgD5MAIBCTACARkwAgEpMAIBOTACAUkwAgFZMAIBaTACA4/AGAF5MAIDhMAYAhAA8AGJMAIBmTACAakwAgG5MAIByTACAhTQ9AHZMAIB6TACA77AHAH5MAICCTACAhkwAgIpMAICOTACAkkwAgL7EPACWTACAgp0BAIGdAQCAnQEAqA0CAKllAgCqfQIAq3UCAKxZAgCtWQIArpkDAK+ZAwCw6QMAsekDALL5AwCz+QMAtOkDALXpAwC2XQMAt1UDALhtAwC5dQMA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t/0eALO5HgBeUgCAYlIAgGZSAIBqUgCAtsUeALXVHgBuUgCAu8EeALr5HgByUgCAdlIAgL/FHgC+2R4AvdEeALzZHgB6UgCAo/0eAH5SAICCUgCApoEeAIZSAICKUgCApZEeAKq9HgCrhR4AjlIAgJJSAICunR4Ar4EeAKydHgCtlR4AqCkeAKkpHgCqVR4Aq20eAKx1HgCtfR4ArnUeAK9pHgCWUgCAmlIAgJ5SAICiUgCAplIAgKpSAICuUgCAslIAgLjpHgC59R4Auv0eALv1HgC87R4AvZEeAL6RHgC/kR4AsB0eALHlHgCy7R4As+UeALT9HgC15R4Atu0eALflHgCz3R4AtlIAgLpSAIC+UgCAwlIAgLb9HgC1/R4AhFgBALshHgC62R4AvigAAMpSAIC/IR4AvjkeAL0xHgC8OR4AgU0AAIBNAACjlR4Agl0AAKW1HgDGUgCAzlIAgKa1HgB2UQCA0lIAgKtpHgCqkR4ArXkeAKxxHgCvaR4ArnEeAIYABACHRAMAs4ECANZSAIC1gQIA2lIAgN5SAIC2gQIAiAAAAOJSAIC74QIAuu0CAL3lAgC8+QIAv9ECAL7lAgDmUgCA6lIAgIREAwC+jAMA4UgCAO5SAIDjAAIA7/wfAPJSAIDhPB4A79wCAONgHwD2UgCA+lIAgP5SAIACUwCAqQUCAKixAgCrBQIAqgUCAK0NAgCsBQIArzUCAK41AgCEbAUABlMAgApTAIAOUwCAElMAgBZTAIAaUwCAHlMAgLnpAwC44QMAu/kDALrhAwC96QMAvOEDAL9dAwC+4QMAsSkCALAlAgCzPQIAsiECALUZAgC0LQIAt9kDALYRAgAiUwCAJlMAgCpTAICjhQMALlMAgKWFAwCmhQMAMlMAgDpTAIA+UwCAqukDAKvlAwCs/QMAreEDAK7hAwCv1QMAgEkAAIFVAACCVQAAo6kCAL6YBAClQQEApkEBAEJTAICG4AUAh+AFAKotAQCrOQEArBEBAK0FAQCuDQEArwUBAEZTAIBKUwCATlMAgO/cAABSUwCAVlMAgFpTAIDviB4AhCwHAOHsHgBeUwCA4xweAGJTAIDhlAEAZlMAgOMwAACzJQIAhWDmAGpTAIBuUwCAclMAgLbNAQC1zQEAdlMAgLu1AQC6oQEAelMAgH5TAIC/iQEAvoEBAL2JAQC8nQEANlMAgIJTAICGUwCAilMAgI5TAICSUwCAllMAgJpTAICoAQcAqQEHAKp1BwCrrQcArLUHAK29BwCuqQcAr6kHALDZBwCx7QcAsvkHALP1BwC0mQcAtZkHALaJBwC3gQcAuIkHALmJBwC6bQAAu2UAALx9AAC9ZQAAvm0AAL9lAACBCQAAgJkAAJ5TAICCHQAAolMAgKZTAICqUwCArlMAgKgNBQCpfQUAqk0FAKuhBgCspQYAra0GAK6dBgCv/QYAsIUGALGRBgCyqQYAs70GALSlBgC1rQYAtqUGALd5BgC4SQYAuUkGALpZBgC7WQYAvEkGAL1JBgC++QcAv/kHALNdBgCyUwCAhigCAIcsAQC2UwCAtp0GALWdBgC6UwCAu4kGALq9BgC+UwCAwlMAgL/9BgC+/QYAvYEGALyNBgDGUwCAoxkGAMpTAIDOUwCAptkGANJTAIDWUwCApdkGAKr5BgCrzQYA2lMAgN5TAICuuQYAr7kGAKzJBgCtxQYAqBkBAKkZAQCqjQAAq50AAKyNAACtvQAArrUAAK/dAADiUwCA5lMAgOpTAIDuUwCA8lMAgPZTAID6UwCA/lMAgLhpAAC5aQAAunkAALt5AAC8aQAAvWkAAL7dAwC/1QMAsKkAALGpAACyvQAAs7UAALSZAAC1mQAAtlkAALdZAAC+LAIAAlQAgAZUAIAKVACADlQAgBJUAIAaVACAHlQAgIAtAACBNQAAgj0AACJUAICGkAwAh+gCACZUAIAqVACAs0UDAC5UAIAyVACANlQAgDpUAIC2fQMAtUUDAD5UAIC7LQMAui0DAEJUAIBGVACAvx0DAL4dAwC9IQMAvCkDAKvNAwCqzQMASlQAgE5UAICv/QMArv0DAK3BAwCsyQMAo6UDAFJUAIBWVACAWlQAgF5UAICmnQMApaUDAGJUAIBmVACAalQAgG5UAIByVACAdlQAgII9AACBPQAAgD0AAHpUAIB+VACAglQAgIRgAwCG0AwAhzADAIpUAICOVACAvkQCAJJUAICWVACAmlQAgOEAAACeVACA46gGAKJUAICE7AwAplQAgO/QAwCqVACArlQAgLJUAIC2VACAulQAgLNtAQC+VACAwlQAgMZUAIDKVACAthEBALVlAQDOVACAuz0BALo1AQDSVACA1lQAgL/9AQC+/QEAvRUBALwVAQDaVACA4fwGAN5UAIDjPAcA4lQAgOZUAIDqVACA7lQAgPJUAIC+bAwA+lQAgP5UAIACVQCABlUAgApVAIDvFAYAgV0AAIBdAACj5QEAgm0AAKXtAQAOVQCAElUAgKaZAQCHqAwAhuQMAKu1AQCqvQEArZ0BAKydAQCvdQEArnUBAKgZDgCpGQ4AqiUOAKs1DgCsLQ4ArVEOAK5RDgCvUQ4AhlQAgPZUAIAWVQCAGlUAgB5VAIAiVQCAJlUAgCpVAIC47Q4AufUOALr1DgC7jQ4AvJUOAL2dDgC+lQ4Av40OALAxDgCxOQ4AsgEOALMBDgC0+Q4AtfkOALbdDgC31Q4AqHkOAKl5DgCqjQ8Aq4UPAKydDwCtgQ8AroUPAK+5DwAuVQCAMlUAgDZVAIA6VQCAPlUAgEJVAIBGVQCASlUAgLiRDwC5mQ8AuqEPALuhDwC8UQ8AvV0PAL5JDwC/SQ8AsM0PALHVDwCy3Q8As9UPALTNDwC1sQ8AtrEPALexDwCzBQ4ATlUAgFJVAIBWVQCAWlUAgLYBDgC1FQ4AXlUAgLsRDgC6CQ4AYlUAgISgAQC/dQ4AvgkOAL0BDgC8CQ4AgmkAAKNBDgCAWQAAgVEAAKZFDgC+WAEAZlUAgKVRDgCqTQ4Aq1UOAIbIAACHrAEArk0OAK8xDgCsTQ4ArUUOAGpVAIBuVQCAclUAgHZVAIB6VQCAflUAgBZUAICCVQCAqAkOAKkJDgCqGQ4AqxkOAKwJDgCtYQ4ArmEOAK+VAQCw7QEAsfUBALL9AQCz9QEAtO0BALV1AQC2fQEAt3UBALhNAQC5VQEAul0BALtVAQC8TQEAvfEAAL7xAAC/8QAAhlUAgIpVAICOVQCAklUAgJZVAIDj6A4AmlUAgOE0DgC+AAQA79wPAJ5VAICiVQCAplUAgKpVAICuVQCAslUAgLPxDQC2VQCAulUAgL5VAIDCVQCAtoENALXhDQDGVQCAu1ECALpJAgDKVQCAzlUAgL/RAgC+SQIAvUECALxJAgCjMQ0A0lUAgISIAwDaVQCA3lUAgKZBDQClIQ0A4lUAgKuRAgCqiQIA5lUAgOpVAICvEQIArokCAK2BAgCsiQIAgKkAAIGpAACCTQAA7lUAgOFkEgDjTAIA4wgLAOGsAQDyVQCA7zwCAO8YFgD2VQCAhlAGAIdIAwD6VQCA/lUAgKiBAgCpgQIAqoECAKuBAgCsgQIArYECAK6FAgCvHQEAAlYAgAZWAIAKVgCADlYAgBJWAIAWVgCAGlYAgIS4BQC4dQEAuX0BALp1AQC7CQEAvBkBAL0ZAQC+CQEAvwEBALBlAQCxbQEAsmUBALN9AQC0aQEAtV0BALZVAQC3TQEAHlYAgCJWAIAmVgCAKlYAgC5WAIAyVgCA7zQAAO/ADgDhXA4A4UwPAOOUAADjnA4ANlYAgIJlAACBfQAAgH0AADpWAIA+VgCAvsQHALNFAgBCVgCAtUUCALZNAgBKVgCAhkAGAIeQBAC67QEAu+UBALz9AQC95QEAvuEBAL/VAQCflQgAngUIAJ3dDQCcPQwAmzEMAJr1DQCZ7RAAmD0QAJfVEQCWsRUAlQUUAJTlFQCTtRkAkjEYAJE5GACQDRwAj2EcANZVAICz1QYATlYAgLX9BgBGVgCAUlYAgLaRBgBWVgCAWlYAgLuVBgC6lQYAvVUHALxVBwC/VQcAvlUHAF5WAIBiVgCAqo0GAKuFBgCsnQYArYUGAK6BBgCvtQYAhKgAAGZWAIBqVgCAoyUFAG5WAIClJQUApi0FAHJWAIB2VgCAelYAgH5WAICCVgCAhlYAgIpWAICOVgCAklYAgJZWAICaVgCAnlYAgKJWAICjqQUAotEEAKHZBACgZQUAgiEdAIM1HQCmVgCAqlYAgIaVGACH3RQAhBkZAIUZGQCKDRUAi7EUAK5WAICyVgCAjsURAI/VDACMzRAAjR0RAJJhDQCTdQ0AvkwAALpWAICWxQkAl80EAJSNDACVXQkAmkEFAJtBBQCGyP8Ah0wAAIFZAACAeQAAnCEEAIJRAAChxQEAvlYAgKMB/ACi2QEApRX9AKS1/QCnufkApgH4AKkJ+AColfkAqwX1AKqt9QCtsfEArAHwAK8d8ACurfEAseHtALAB7ACzAegAsv3sALVd6QC09ekAwlYAgMZWAIDKVgCAzlYAgNJWAIDWVgCA2lYAgN5WAIDiVgCA5lYAgKiNBACplQQAqpUEAKulBACsvQQArdkEAK75BACv8QQAhGz8AOpWAIDuVgCA8lYAgPZWAID6VgCA/lYAgAJXAIC4eQUAucUFALrNBQC7xQUAvN0FAL3FBQC+zQUAv+0FALCZBACxmQQAskkFALNJBQC0WQUAtVkFALZJBQC3SQUAox0EAL7M/AAGVwCAClcAgA5XAICmWQQApTUEABJXAICrXQQAql0EABZXAIAaVwCAr50FAK6dBQCtnQUArJ0FAB5XAICznQIAIlcAgCpXAIC2UQIALlcAgDJXAIC1uQIAukkCALtVAgCGSP0Ah8D8AL41AgC/PQIAvEUCAL09AgCo3QQAqUkDAKpRAwCrbQMArHUDAK2VAwCunQMAr7kDAICNAQCB5QEAguEBADZXAIA6VwCAPlcAgEJXAIBGVwCAuJUDALmdAwC6lQMAu60DALy1AwC9vQMAvrUDAL9VAgCwyQMAsdUDALLVAwCzrQMAtLUDALW9AwC2tQMAt60DAEpXAIBOVwCAo9EDAFJXAICl9QMAVlcAgFpXAICmHQMAXlcAgGJXAICrGQMAqgUDAK1xAwCsCQMAr3EDAK55AwDhKAcAZlcAgOPkBgBqVwCA4SgGAG5XAIDjaAEAclcAgHZXAIB6VwCA71gAAH5XAICCVwCAhlcAgO/IBgCKVwCAqE39AKmB/QCq0f0Aq9H9AKzx/QCt8f0ArvH9AK/x/QAmVwCAghEAAIEZAACA0f8AjlcAgJJXAICEdAMAvnQDALh1/gC5ff4AunX+ALvF/gC83f4AvcX+AL7F/gC/9f4AsJH9ALGR/QCykf0As5H9ALRV/gC1Xf4AtlX+ALdN/gCzWf0AllcAgIasAACHRAMAmlcAgLZx/QC1ef0AnlcAgLtV/QC6Vf0AolcAgKZXAIC/mf4AvpH+AL1F/QC8Rf0AqlcAgKMd/QCuVwCAslcAgKY1/QC2VwCAulcAgKU9/QCqEf0AqxH9AL5XAIDCVwCArtX+AK/d/gCsAf0ArQH9AKjN/wCp0f8AqtH/AKsh/gCsIf4ArSH+AK4h/gCvIf4AxlcAgMpXAIDOVwCA0lcAgNZXAIDaVwCA3lcAgOJXAIC4jf4AuZH+ALqV/gC7rf4AvLX+AL25/gC+qf4Av6n+ALDh/gCx4f4AsuX+ALP5/gC06f4AtdX+ALbd/gC3uf4As1n/AOZXAIC2VgCA6lcAgO5XAIC2of4Atan+APJXAIC7Jf4AuiX+APZXAID6VwCAvxH+AL4t/gC9Lf4AvDH+AIIZAACjHf8AgGUAAIEZAACm5f4A/lcAgAJYAICl7f4AqmH+AKth/gCEZAEAviAAAK5p/gCvVf4ArHX+AK1p/gAKWACA4zT+AA5YAIDhfP0AhrAEAIcIAwASWACAFlgAgBpYAIAeWACAhCQDAIQkBAAiWACA70j+ACZYAIAqWACAs+kCAC5YAIC+RAQAvkAFADJYAIC2nQIAtZkCADZYAIC7iQIAur0CADpYAIA+WACAv1kDAL5RAwC9WQMAvJECAKkdAgCoFQIAqyUCAKolAgCtWQIArFUCAK9NAgCuUQIAvmQGAEJYAIBGWACASlgAgE5YAIBSWACAVlgAgFpYAIC5+QMAuPEDALtNAwC68QMAvUEDALxZAwC/cQMAvkEDALEJAgCwPQIAs8kDALIBAgC12QMAtNEDALfJAwC20QMA4ZABAF5YAIDj8AAAYlgAgGZYAICCPQAAgT0AAIA9AABqWACAblgAgHJYAIB6WACAflgAgIJYAIDvLAAAhlgAgKPpAwCKWACAhugEAIdgBQCOWACApp0DAKWZAwCSWACAq4kDAKq9AwCWWACAmlgAgK9ZAgCuUQIArVkCAKyRAwCeWACAolgAgKZYAICqWACArlgAgLJYAIC2WACA71gBAISgBADhVP8AulgAgOOEAQC+WACAwlgAgMZYAIDKWACAs9kBAM5YAICFzBkA0lgAgNZYAIC28QEAtfkBANpYAIC7pQEAutkBAN5YAIDiWACAv50BAL6dAQC9pQEAvK0BAKgBBgCpDQYAqhEGAKsRBgCsMQYArTEGAK4pBgCvJQYAdlgAgILJBwCBwQcAgPEHAOZYAIDqWACAhhwAAIf8AwC47QYAufUGALr9BgC79QYAvO0GAL1RBwC+VQcAv00HALBdBgCxIQYAsjkGALMxBgC0GQYAtRkGALbdBgC31QYAo5kGAO5YAIDyWACA9lgAgPpYAICmsQYApbkGAP5YAICr5QYAqpkGAAJZAIAGWQCAr90GAK7dBgCt5QYArO0GAApZAICz8QcADlkAgBJZAIC2gQcAFlkAgBpZAIC1mQcAuo0HALtlBwAeWQCAIlkAgL59BwC/ZQcAvH0HAL11BwCoLQYAqTUGAKo9BgCrMQYArFUGAK1FBgCuRQYAr3UGACZZAIAqWQCALlkAgDJZAIA2WQCAOlkAgD5ZAIBCWQCAuOkGALn1BgC6/QYAu/UGALztBgC9kQYAvpUGAL+NBgCwDQYAseUGALLtBgCz5QYAtP0GALXlBgC27QYAt+UGAKO1BgBGWQCASlkAgE5ZAIBSWQCA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nlsAgLshBwC6yQcAolsAgKZbAIC/KQcAviEHAL0pBwC8NQcAqlsAgKOBBwCuWwCAslsAgKaBBwC2WwCAulsAgKWRBwCqjQcAq2UHAL5bAIDCWwCArmUHAK9tBwCscQcArW0HAKgVAQCpgQEAqoEBAKuBAQCsgQEArYkBAK6xAQCvsQEAxlsAgMpbAIDOWwCA0lsAgNZbAIDaWwCA3lsAgOJbAIC4ZQAAuW0AALplAAC7fQAAvGUAAL1tAAC+ZQAAv90AALChAQCxrQEAsqUBALO5AQC0qQEAtZ0BALaVAQC3XQAA5lsAgIIdAACBHQAAgB0AAOpbAIDuWwCA8lsAgL5YAQCErAIA9lsAgIcIAQCGjAEA+lsAgKZaAID+WwCAAlwAgLNJAQAGXACAClwAgA5cAIASXACAtkkBALVJAQAWXACAuykBALolAQAaXACAHlwAgL8ZAQC+LQEAvS0BALwxAQC+2AMAIlwAgO/4BgAmXACAKlwAgC5cAIDv4AIAMlwAgOGUAQA2XACA43QCADpcAIDhmAUAPlwAgOMMBwBCXACARlwAgEpcAICjwQIAhIwDAKXBAgBOXACAUlwAgKbBAgBWXACAWlwAgKuhAgCqrQIAraUCAKy5AgCvkQIArqUCAKgxAwCpPQMAqjUDAKtJAwCsWQMArVkDAK5JAwCvQQMAgMUAAIEJAACCGQAAXlwAgGJcAIBqXACAh2wDAIYcHAC47QAAufEAALr1AAC7jQAAvJUAAL2BAAC+gQAAv70AALAJAwCxCQMAsu0AALPhAAC04QAAteEAALblAAC32QAAblwAgHJcAIB2XACAs7ECAHpcAIC13QIAttUCAH5cAICCXACAhlwAgLrBAgC7wQIAvDUBAL05AQC+KQEAvykBAKaNAgCKXACAjlwAgKWFAgCSXACAo+kCAJZcAICaXACArnEBAK9xAQCsbQEArWEBAKqZAgCrmQIAnlwAgKJcAICmXACA4YQGAKpcAIDjJAYArlwAgOGUAQCyXACA4ywAAL7oHQC2XACAulwAgO/IAACE/B0AvvAcAL5cAIDvSAcAwlwAgMZcAIDKXACAzlwAgIEdAACAHQAA0lwAgIIFAACGQBwAh8QcANpcAIDeXACA4lwAgOZcAIDqXACA7lwAgKi1HgCpBR8Aqg0fAKsFHwCsAR8ArQkfAK45HwCvOR8A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rmU+AK1xPgCsAT4A0mIAgNZiAIDaYgCA3mIAgOJiAIDmYgCA6mIAgO5iAICAOQAAgTkAAIIFAADyYgCAvrgBAIS4AQD6YgCA/mIAgKitAgCp1QIAqtUCAKstAwCsNQMArT0DAK41AwCvLQMAAmMAgAZjAIAKYwCADmMAgBJjAIAWYwCAGmMAgB5jAIC46QMAuekDALqJAwC7iQMAvJkDAL2ZAwC+iQMAv4kDALBVAwCxXQMAslUDALPpAwC0+QMAtfkDALbpAwC34QMAs10CACJjAICGKAQAh8wDACZjAIC2vQMAtb0DACpjAIC7mQMAupEDAC5jAIAyYwCAvz0DAL49AwC9PQMAvIEDAIUAFACjGQIANmMAgDpjAICm+QMAPmMAgEJjAICl+QMAqtUDAKvdAwBGYwCASmMAgK55AwCveQMArMUDAK15AwDjVD4A4dw/AOHQPgDjPD4ATmMAgO8cAABSYwCAVmMAgFpjAIDjwAAAXmMAgOHUAQDvYD4AYmMAgGpjAIDvRD8AgGEAAIFtAACCfQAAhAAFAIbwBACHnAUAvhAFAG5jAIByYwCAdmMAgHpjAIB+YwCAgmMAgIZjAICKYwCAjmMAgLiJPQC5iT0Aupk9ALuRPQC8uT0Avbk9AL7RPQC/0T0AsAU+ALENPgCyBT4Asx0+ALQFPgC1DT4AtgU+ALe5PQConT4Aqa0+AKqlPgCrvT4ArKU+AK2tPgCupT4Ar30+AISsBAC+rAQAkmMAgJZjAICaYwCAnmMAgKJjAICmYwCAqPkFAKn5BQCqKQYAqykGAKw5BgCtOQYArikGAK8pBgBmYwCAqmMAgK5jAICyYwCAtmMAgLpjAIC+YwCAwmMAgLiNBgC5kQYAupEGALulBgC8vQYAvUUHAL5BBwC/QQcAsFkGALFZBgCy7QYAs/0GALTtBgC13QYAttUGALe1BgCzoQYAxmMAgMpjAIDOYwCA0mMAgLa5BgC1sQYA2mMAgLudBgC6nQYA1mMAgPZiAIC/GQYAvikGAL0pBgC8OQYAglEAAKPlBgCAQQAAgUEAAKb9BgDeYwCA4mMAgKX1BgCq2QYAq9kGAIZIAACHbAAArm0GAK9dBgCsfQYArW0GAKg5BgCpWQYAqmkGAKtpBgCseQYArXkGAK5pBgCvaQYA5mMAgOpjAIDuYwCA8mMAgPZjAID6YwCA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uNEGALnZBgC64QYAu+EGALyRBgC9nQYAvpUGAL+JBgCwSQYAsUkGALJdBgCzVQYAtE0GALXxBgC28QYAt/EGALDhBwCx4QcAsgkHALMJBwC0GQcAtRkHALYJBwC3CQcAuDkHALkNBwC6GQcAuxkHALwJBwC9CQcAvn0HAL9xBwCCZgCAlmUAgIZmAICKZgCAjmYAgJJmAICWZgCAmmYAgKjxBwCpxQcAqsEHAKvdBwCsyQcArb0HAK6pBwCvoQcAsykGAJ5mAICiZgCApmYAgKpmAIC2XQYAtSEGAK5mAIC7RQYAukUGALJmAIC2ZgCAv70GAL69BgC9vQYAvL0GALpmAICjbQYAvmYAgMJmAICmGQYAxmYAgMpmAIClZQYAqgEGAKsBBgDOZgCA0mYAgK75BgCv+QYArPkGAK35BgCobQYAqbEBAKpJAQCrRQEArF0BAK1FAQCuTQEAr0UBANZmAICCHQAAgR0AAIAdAADaZgCA3mYAgOJmAIC+VAEAuIEAALmNAAC6hQAAu5kAALyJAAC9vQAAvrUAAL99AACwPQEAseEAALLhAACz4QAAtOEAALXpAAC20QAAt9EAALsFAwC62QIAhiwCAIcsAwC/DQMAvgUDAL0VAwC8FQMAs+ECAOpmAIDuZgCAhCwDAPJmAIC25QIAtfUCAPZmAICqnQIAq0EDAPpmAID+ZgCArkEDAK9JAwCsUQMArVEDAAJnAICjpQIABmcAgApnAICmoQIADmcAgBJnAIClsQIAqakAAKihAACrtQAAqr0AAK3dAACs3QAAr/EAAK79AAC+LBwAFmcAgBpnAIAeZwCAImcAgCZnAIAqZwCALmcAgLl9AAC4fQAAu80BALrNAQC93QEAvN0BAL/NAQC+zQEAsZUAALCJAACzTQAAspUAALVdAAC0XQAAt00AALZNAAAyZwCANmcAgDpnAIA+ZwCAQmcAgEZnAIBKZwCATmcAgIA5AACBOQAAggUAAFJnAIBaZwCAXmcAgIf4AgCGfB0A4bgEAL7IHADjQAYAYmcAgGZnAIBqZwCAbmcAgHJnAIB2ZwCAemcAgH5nAICCZwCAhmcAgIpnAIDvsAcAjmcAgJJnAICWZwCAmmcAgO/IAACeZwCAomcAgKZnAIDvQAYAqmcAgOH8BgCuZwCA4xwGALJnAIDhlAEAtmcAgONkBgCAEQAAgRkAAIIpAACz/QEAumcAgLWdAQC2lQEAvmcAgMJnAICEbB0AuoUBALuZAQC8iQEAvVEBAL5RAQC/UQEAozEeAFZnAIDGZwCAymcAgM5nAICmWR4ApVEeANJnAICrVR4AqkkeAIYIAwCHbAMAr50eAK6dHgCtnR4ArEUeANZnAICzCR8A2mcAgN5nAIC2CR8A4mcAgOZnAIC1CR8AugUfALsNHwDqZwCA7mcAgL4FHwC/CR8AvBUfAL0NHwCw5R8Ase0fALLlHwCz/R8AtOUfALXpHwC2GR8AtxkfALgpHwC5NR8Auj0fALs1HwC8ER8AvR0fAL4JHwC/BR8A8mcAgPZnAIDmZgCA+mcAgP5nAIACaACABmgAgApoAICo0R8AqdEfAKqlHwCrvR8ArKUfAK2tHwCupR8Ar50fAKNNHgAOaACAEmgAgBZoAIAaaACApk0eAKVNHgAeaACAq0keAKpBHgAiaACAJmgAgK9NHgCuQR4ArUkeAKxRHgCADQAAgRUAAIIdAAAqaACALmgAgDJoAICEtAEAvrQBAL/oAQA6aACAhkgHAIc0AACEvAYAPmgAgEJoAIC+tAYAqI0BAKmVAQCqlQEAq80BAKzZAQCt2QEArs0BAK/FAQBGaACASmgAgE5oAIBSaACAVmgAgFpoAIBeaACAYmgAgLgdAQC5wQAAusEAALvBAAC8wQAAvckAAL7xAAC/8QAAsIkBALGJAQCyKQEAsykBALQ9AQC1JQEAti0BALclAQC7bQIAum0CAGZoAIBqaACAv8ECAL7ZAgC93QIAvN0CALM9AgBuaACAcmgAgHZoAICE/AYAtnkCALVxAgB6aACAqikCAKspAgB+aACAgmgAgK6dAgCvhQIArJkCAK2ZAgCGaACAo3kCAIpoAICOaACApj0CAJJoAICWaACApTUCAIJtJwCDjSoAhqgFAIdsAwCGmS4Ah80vAIQRLgCFmS4AiiESAIspEgCaaACAnmgAgI6RFgCPHRYAjBESAI0RFgCScRoAk+UaAKJoAIDvlHYAlvEeAJflHgCUSRoAlRkeAJopAgCb4QIAqmgAgK5oAICyaACA4SASAJzxAgDjIBYAnyEfAJ7BHwCdmRsAnC0bAJuhGwCavRcAmTkXAJixFwCXiRMAlqkTAJWpEwCUdS4AkzkvAJIxLwCRsS8AkDUrAI+tJgDjeB8A0gAAAOFcHwCCmQEAtmgAgIDxAQCB8QEAvqgHALpoAIC+aACAwmgAgIS8BgDvLB8AxmgAgMpoAIDhpB4A48wAAON8HgDhvAEAzmgAgNJoAIDWaACAhJwGANpoAIC+bAYA3mgAgOJoAIDmaACA7xAAAO8EHgDqaACA7mgAgPJoAID2aACA+mgAgP5oAIACaQCABmkAgAppAICAPQAAgQkAAILJBwAOaQCAo/kDAKLxAwChMQMAoM0fALBJcQCxAXwAsgl8ALMhfQC0AXgAtRV4ADZoAICmaACAEmkAgL4oDgCGDAAAh4wDABZpAIAaaQCAHmkAgCJpAIAmaQCAoV0AAKJVAACjfQAApAEMAKUVDACm9QwApwEIAKghCACpxQgAqgF0AKsJdACsAXQArR11AK55cACveXAAqOUFAKnxBQCq8QUAqy0FAKw1BQCtPQUArjUFAK8tBQAqaQCALmkAgDJpAIA2aQCAOmkAgD5pAIBCaQCARmkAgLj9BgC5jQYAuoUGALutBgC8uQYAvbkGAL6tBgC/pQYAsFUFALFdBQCyVQUAs+UGALT9BgC10QYAttEGALfRBgCzeQQASmkAgE5pAIBSaQCAVmkAgLa9BAC1vQQAWmkAgLuZBAC6kQQAXmkAgGJpAIC/FQcAvjkHAL0xBwC8gQQAZmkAgKM9BABqaQCAbmkAgKb5BAByaQCAdmkAgKX5BACq1QQAq90EAHppAIB+aQCArn0HAK9RBwCsxQQArXUHAKhpBwCpaQcAqnkHAKvZBgCs9QYArf0GAK71BgCv5QYAgMkAAIHJAACCBQAAgmkAgIZwDwCHNAAAimkAgI5pAIC4fQYAuQUGALoNBgC7BQYAvB0GAL0FBgC+DQYAvwUGALCdBgCxdQYAsn0GALN1BgC0UQYAtV0GALZVBgC3TQYAs/EEAJJpAICWaQCAmmkAgJ5pAIC2fQUAtX0FAKJpAIC7sQUAulkFAKZpAICqaQCAv5kFAL6VBQC9oQUAvKkFAK5pAICjtQQAsmkAgLZpAICmOQUAumkAgL5pAIClOQUAqh0FAKv1BQDCaQCAxmkAgK7RBQCv3QUArO0FAK3lBQCpuQIAqLECAKvJAgCqsQIArTUCAKw1AgCvNQIArjUCAMppAIDOaQCA0mkAgNZpAIDaaQCA3mkAgOJpAIDmaQCAuekDALjZAwC7iQMA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teEBALbhAQC3zQEAo60NAKp1AICudQCAsnUAgLZ1AICm1Q0ApaENALp1AICr/Q0AqvUNAL51AIDCdQCAryUCAK4lAgCt3Q0ArN0NAIBdAACBbQAAgmUAALNRAwC+nAMAtXkDALYZAwDKdQCAhOACAM51AIC6PQMAuzUDALwZAwC9GQMAvtkDAL/ZAwCohQMAqZUDAKqVAwCrpQMArL0DAK3VAwCu0QMAr9EDAIYABACHNAMAv6AzANJ1AIDWdQCA2nUAgN51AIDidQCAuHEDALlxAwC6cQMAu3EDALzVAAC93QAAvtUAAL/NAACwtQMAsb0DALKBAwCzgQMAtFEDALVRAwC2UQMAt1EDAO+oAwDmdQCA6nUAgO51AICEHAIA8nUAgPZ1AID6dQCAviwFAP51AIACdgCABnYAgONAAwAKdgCA4SgAAA52AICjXQIAEnYAgBZ2AIAadgCAHnYAgKYVAgCldQIAInYAgKs5AgCqMQIAJnYAgCp2AICv1QIArtUCAK0VAgCsFQIA4ygBAOEADwDhCA4A4wgOAID9AACBCQAAgjkAAC52AIAydgCAOnYAgD52AIBCdgCA7+gOAEZ2AIBKdgCA72QOALNtAQBOdgCAhugEAIcMBQBSdgCAtm0BALVtAQBWdgCAu+0AALrtAABadgCAXnYAgL/VAAC+6QAAveEAALzpAACoXQYAqWEGAKqlBgCrvQYArKUGAK2tBgCupQYArxkHADZ2AIBidgCAZnYAgGp2AIBudgCAcnYAgHZ2AIB6dgCAuHUHALl5BwC6DQcAuwUHALwdBwC9BQcAvgUHAL81BwCwaQcAsWkHALJ9BwCzdQcAtG0HALVRBwC2UQcAt1EHAKMtBgB+dgCAgnYAgIZ2AICKdgCApi0GAKUtBgCOdgCAq60HAKqtBwCSdgCAlnYAgK+VBwCuqQcAraEHAKypBwCADQAAgRUAAIIdAACadgCAnnYAgKJ2AICEVAMAvlwAAKZ2AICqdgCAhugAAIdMAwCudgCAsnYAgLZ2AIC6dgCAvnYAgOMEBADCdgCA4bQFAMZ2AIDKdgCAznYAgNJ2AIDWdgCA2nYAgN52AIDidgCA5nYAgO/sBADqdgCA7nYAgLPtBgDydgCA9nYAgPp2AID+dgCAtpEGALXhBgACdwCAu40GALqNBgAGdwCACncAgL9BAQC+WQEAvVEBALxZAQCoJQYAqS0GAKolBgCrOQYArCkGAK1RBgCuSQYAr0EGAIDNAACBCQAAghkAAA53AIASdwCAhCwBAL40AAAadwCAuP0BALlBAQC6QQEAu0EBALxBAQC9SQEAvnEBAL9xAQCwCQYAsQkGALLNAQCzxQEAtN0BALXFAQC2zQEAt8UBAIagPACHRAMAHncAgKOhBQAidwCApa0FAKbdBQAmdwCAKncAgL4oPACqwQUAq8EFAKwVAgCtHQIArhUCAK8NAgC2QQMALncAgDJ3AIC1sQIANncAgLOhAgA6dwCAPncAgL5FAwC/TQMAvHUDAL1NAwC6ZQMAu20DAEJ3AIBGdwCASncAgE53AIDGdQCAUncAgFZ3AIBadwCAXncAgGJ3AICoRQIAqVUCAKpdAgCrVQIArE0CAK21AwCusQMAr60DALDVAwCx3QMAstUDALPtAwC09QMAtf0DALb1AwC37QMAuNkDALnZAwC6rQMAu6UDALy9AwC9pQMAvqUDAL+VAwCj9QMAZncAgGp3AIBudwCAcncAgKYVAgCl5QMAdncAgKs5AgCqMQIAencAgH53AICvGQIArhECAK0ZAgCsIQIAgGkAAIFpAACCBQAAgncAgIp3AICOdwCAkncAgO8cAACEbAIA4ZQBAJZ3AIDjyAAAmncAgJ53AICGWDwAh1A9AKJ3AICmdwCAqncAgISEPQCudwCAsncAgLZ3AIDvuAEAvmw8AOF0BgC6dwCA42QBAL53AIDCdwCAxncAgMp3AICz0QEAzncAgNJ3AIDWdwCA2ncAgLaRAQC1+QEA3ncAgLu9AQC6vQEA4ncAgOZ3AIC/dQEAvnUBAL2FAQC8hQEAqL09AKkNPgCqGT4AqxE+AKwxPgCtUT4ArlE+AK9NPgCGdwCAgh0AAIEdAACAHQAA6ncAgO53AIDydwCA9ncAgLjVPgC53T4AutU+ALtJPwC8WT8AvVk/AL5JPwC/QT8AsDk+ALE5PgCyET4AsxE+ALTxPgC18T4AtvU+ALftPgCjkT4A+ncAgIYoAACHwAMA/ncAgKbRPgCluT4AAngAgKv9PgCq/T4ABngAgAp4AICvNT4ArjU+AK3FPgCsxT4ADngAgLOdPwASeACAFngAgLalPwAaeACAHngAgLWtPwC6aT8Au3U/ACJ4AIAmeACAvlk/AL9FPwC8bT8A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IoUAgOH8AQBWgwCAJoUAgO/IBgAqhQCALoUAgDKFAICzjQMANoUAgLWNAwA6hQCAPoUAgLa1AwBChQCARoUAgLtBAwC6SQMAvUEDALxZAwC/QQMAvkkDAKNFDACmhACAFoUAgEqFAIBOhQCApn0MAKVFDABShQCAq4kMAKqBDABWhQCAWoUAgK+JDACugQwArYkMAKyRDACAFQ8AgR0PAIIhDwCzIQ4AXoUAgLUhDgC2JQ4AYoUAgGaFAIBqhQCAusEOALvBDgC8wQ4AvcEOAL7BDgC/wQ4AqK0OAKntDgCq5Q4Aq/0OAKzlDgCt6Q4ArjkOAK85DgBuhQCAcoUAgHaFAIB6hQCAgB0AAIEJAACCvQEAfoUAgLjNDwC51Q8AutUPALvlDwC8/Q8AvZUPAL6RDwC/kQ8AsEkOALFJDgCyWQ4As1kOALRJDgC1SQ4Atv0PALf1DwCjbQ8AgoUAgL6EAQCKhQCAjoUAgKZpDwClbQ8AkoUAgKuNDwCqjQ8AhogAAIdsAQCvjQ8Aro0PAK2NDwCsjQ8AloUAgLPtDgCahQCAnoUAgLaRDgCihQCApoUAgLXhDgC6tQ4Au70OAKqFAICuhQCAvn0BAL9lAQC8mQ4AvZkOAKgRDgCpJQ4AqiEOAKs5DgCsLQ4ArVUOAK5dDgCvUQ4AhKgAALKFAIC2hQCAuoUAgL6FAIDChQCAxoUAgMqFAIC47QEAuZUBALqVAQC7rQEAvLUBAL11AQC+fQEAv3UBALA1DgCxPQ4AsgkOALMJDgC0/QEAteUBALblAQC31QEAo6kNAM6FAIDShQCA1oUAgNqFAICm1Q0ApaUNAN6FAICr+Q0AqvENAOKFAIDmhQCAryECAK45AgCt3Q0ArN0NAIANAACBFQAAgh0AAOqFAIDuhQCA8oUAgIeQAwCGfAQAvuwEAPqFAID+hQCAAoYAgAaGAIAKhgCADoYAgBKGAICyLQ4AszUOALAtDgCxJQ4Ati0OALedDwC0LQ4AtSUOALq9DwC7jQ8AuKUPALm9DwC+LQ8AvxUPALyVDwC9JQ8AFoYAgBqGAIAehgCAIoYAgCaGAIAqhgCALoYAgDKGAICqpQ4Aq7UOAKjFDgCp3Q4Arp0OAK9VDgCspQ4ArZUOAKgNAgCpFQIAqhUCAKtNAgCsWQIArVkCAK5NAgCvRQIAhKgFADaGAIA6hgCA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mogAgJ6IAIC+cAMAgGkAAIFpAACCeQAAhAAEAIbwBACHdAMAoogAgO8MHwCmiACA4aweAKqIAIDj8B4ArogAgLKIAIC2iACAuogAgL6IAIDCiACAxogAgMqIAIDvVAIAzogAgNKIAIDWiACA46QCANqIAIDhgAEA3ogAgOKIAIDmiACA6ogAgO6IAICzRQMA8ogAgPaIAID6iACA/ogAgLZFAwC1VQMAAokAgLshAwC6SQMAvqAEAAqJAIC/KQMAviEDAL01AwC8OQMAqDkCAKk5AgCqjQIAq4UCAKydAgCthQIAroUCAK+1AgCA7QEAgfUBAIL1AQAOiQCAhpAEAIcEBQASiQCAFokAgLhFAQC5TQEAukUBALtdAQC8SQEAvUkBAL55AQC/eQEAsM0CALGlAgCyrQIAs6ECALSlAgC1rQIAtp0CALd9AQAaiQCAHokAgCKJAIAmiQCAKokAgC6JAIAyiQCA74gBAITsBADhVB4ANokAgONUAQA6iQCAPokAgEKJAIBGiQCAo0UCAEqJAIBOiQCAUokAgFaJAICmRQIApVUCAFqJAICrIQIAqkkCAF6JAIBiiQCArykCAK4hAgCtNQIArDkCAKg1BgCpPQYAqlEGAKttBgCseQYArWUGAK5tBgCvZQYABokAgGaJAIBqiQCAbokAgIAZAACBGQAAggUAAHKJAIC45QYAuekGALr5BgC7+QYAvOkGAL3pBgC+nQYAv5UGALAdBgCx5QYAsu0GALPlBgC0/QYAteEGALbhBgC34QYAs9kGAL7QAwB2iQCAeokAgH6JAIC25QYAtfEGAIKJAIC7IQYAutkGAIaYAACHeAMAvyUGAL45BgC9MQYAvDkGAIaJAICjnQYAiokAgI6JAICmoQYAkokAgJaJAICltQYAqp0GAKtlBgCaiQCAnokAgK59BgCvYQYArH0GAK11BgCo7QcAqSkGAKoxBgCrMQYArJEGAK2RBgCukQYAr5EGAKKJAICmiQCAqokAgK6JAICyiQCAtokAgLqJAIC+iQCAuIUGALmNBgC6hQYAu50GALyNBgC9vQYAvrUGAL95AQCw8QYAsfEGALLxBgCzxQYAtMEGALXBBgC2wQYAt8EGALO5BgDCiQCAxokAgMqJAIDOiQCAthEGALUZBgDSiQCAuzUGALo1BgDWiQCA2okAgL8FBgC+BQYAvREGALwlBgClQQYA3okAgOKJAICmSQYAgRUAAIB5AACj4QYAghUAAK1JBgCsfQYAr10GAK5dBgCENAEAlogAgKttBgCqbQYAvswDAOqJAICzlQIA7okAgLXZAgDyiQCA9okAgLbRAgCGgAwAhzgDALvFAgC6xQIAvRUDALwVAwC/FQMAvhUDAPqJAID+iQCA71gGAIRAAwACigCABooAgAqKAIAOigCAEooAgBaKAIAaigCAHooAgOE4BgAiigCA4yQGAL5wDACsSQIArUkCAK5dAgCvVQIAqB0CAKkFAgCqBQIAq10CAISoDAAmigCAKooAgC6KAIC+vA0AMooAgDaKAIA6igCAvE0DAL1VAwC+VQMAv2UDALjpAwC56QMAul0DALtVAwC0yQMAtckDALbZAwC32QMAsBkCALEZAgCy2QMAs9kDAD6KAIDj5AAAQooAgOG8AQBGigCAgj0AAIE9AACAPQAASooAgE6KAIBSigCAWooAgF6KAIDvzAMAYooAgGaKAICj3QMAaooAgIboDACHYA0AbooAgKaZAwClkQMAcooAgKuNAwCqjQMAdooAgHqKAICvXQIArl0CAK1dAgCsXQIAfooAgIKKAICGigCAiooAgI6KAICSigCAlooAgO/gAQCEvAwA4YwGAJqKAIDjHAYAnooAgKKKAICmigCAqooAgLPVAQCuigCAsooAgLaKAIC6igCAtpEBALWZAQC+igCAu70BALq9AQDCigCAyooAgL+dAQC+nQEAvZ0BALydAQCoBQ4AqQkOAKodDgCrFQ4ArFEOAK1RDgCuSQ4Ar0kOAFaKAICCzQ8AgfUPAID9DwDGigCAzooAgIYcAACHsAMAuOkOALnpDgC6/Q4Au/UOALztDgC9VQ8AvlEPAL9NDwCwOQ4AsTkOALIJDgCzCQ4AtBkOALUZDgC2DQ4At9kOAKOVDgDSigCA1ooAgNqKAIDeigCAptEOAKXZDgDiigCAq/0OAKr9DgDmigCA6ooAgK/dDgCu3Q4Ard0OAKzdDgDuigCAs/0PAPKKAID2igCAtoEPAPqKAID+igCAtZkPALqNDwC7ZQ8AAosAgAaLAIC+fQ8Av2UPALx9DwC9dQ8AqC0OAKk1DgCqMQ4AqzEOAKxVDgCtRQ4ArkUOAK91DgAKiwCADosAgBKLAIAWiwCAGosAgB6LAIAiiwCAJosAgLjpDgC59Q4Auv0OALv1DgC87Q4AvZEOAL6RDgC/kQ4AsA0OALHlDgCy7Q4As+UOALT9DgC15Q4Atu0OALflDgCjuQ4Agi0AAIEVAACAHQAAKosAgKbFDgCl3Q4ALosAgKshDgCqyQ4AMosAgL4sAQCvIQ4ArjkOAK0xDgCsOQ4AOosAgLZVAQC1RQEANosAgLNVAQA+iwCAhngAAIdcAAC/OQEAvjEBAL0lAQC8JQEAuzEBALpZAQDmiQCAQosAgEaLAIBKiwCAhAQDAKOJAgBOiwCApZkCAKaJAgBSiwCAvyg5AFaLAICqhQIAq+0CAKz5AgCt+QIAru0CAK/lAgDjWAIA78AOAOGIAQBaiwCAXosAgGKLAIBmiwCAaosAgG6LAIByiwCAdosAgHqLAIDvKAIA4ygOAH6LAIDhRA4AqbUCAKhpDQCrAQIAqgkCAK0BAgCsGQIArzECAK4BAgC+AAQAgosAgIaLAICKiwCAjosAgJKLAICWiwCAmosAgLnlAwC45QMAu+UDALrlAwC95QMAvOUDAL/lAwC+5QMAsSECALBJAgCzJQIAsiUCALUpAgC0IQIAtxUCALYVAgCowQIAqdECAKr1AgCrDQEArBUBAK0FAQCuBQEArzkBAJ6LAICiiwCAqosAgK6LAICyiwCAtosAgLqLAIC+iwCAuC0BALk9AQC67QEAu+UBALz9AQC95QEAvu0BAL/lAQCwLQEAsTUBALI9AQCzNQEAtC0BALUVAQC2HQEAtxUBAIA9AQCBpQAAgq0AAO/YAACGsAUAh9gFAMKLAIDv1A8AhGwEAOH0DgDGiwCA4xwPAMqLAIDhlAEAzosAgOMMDgCzPQIA0osAgNaLAIDaiwCA3osAgLbFAQC13QEA4osAgLuxAQC6qQEA5osAgOqLAIC/kQEAvqkBAL2hAQC8qQEAposAgO6LAICqRQYAq10GAKxFBgCtTQYArkUGAK99BgDyiwCA9osAgPqLAICj0QUA/osAgKUxBgCmKQYAAowAgAaMAICCHQAAgR0AAIAdAAAKjACADowAgBKMAIC+lAMAFowAgBqMAICGSAMAh8wDAB6MAIAijACAJowAgCqMAICoqQcAqakHAKq5BwCruQcArKkHAK2pBwCuAQcArzUHAC6MAIAyjACANowAgDqMAIA+jACAQowAgEaMAIBKjACAuC0HALnBAAC66QAAu+kAALz5AAC95QAAvuUAAL+dAACwUQcAsV0HALItBwCzJQcAtD0HALUlBwC2JQcAtxUHALMxBgBOjACAUowAgFaMAIBajACAtikGALUhBgBejACAu5kGALqVBgBijACAZowAgL/hBgC++QYAvfEGALz5BgBqjACAo3UGAG6MAIByjACApm0GAHaMAIB6jACApWUGAKrRBgCr3QYAfowAgIKMAICuvQYAr6UGAKy9BgCttQYAqOUBAKn1AQCq/QEAq/UBAKztAQCtNQEArj0BAK81AQCA+QAAgc0AAILFAACEYAEAvngBAIqMAICHrAAAhpABALjRAAC52QAAuuEAALvhAAC8kQAAvZ0AAL6VAAC/iQAAsE0BALFVAQCyXQEAs1UBALRNAQC18QAAtvEAALfxAACzdQIAjowAgJKMAICWjACAmowAgLa1AgC1ZQIAnowAgLuRAgC6iQIAoowAgKaMAIC/NQMAvokCAL2BAgC8iQIAqowAgKMxAgCujACAhMADAKbxAgCyjACAtowAgKUhAgCqzQIAq9UCALqMAIC+jACArs0CAK9xAwCszQIArcUCAKuNAACqjQAAqY0AAKg5AwCvvQAArr0AAK2FAACsjQAAqgAAAKsAAADCjACAxowAgMqMAIDOjACA0owAgNaMAIC7fQAAun0AALl9AAC4fQAAv90BAL7dAQC93QEAvN0BALO5AACysQAAsaEAALCtAAC3XQAAtl0AALWVAAC0lQAA2owAgN6MAIDijACA5owAgIE1AACADQAA6owAgII1AAC+rD0A7owAgPKMAICFaD0A+owAgP6MAICGODwAh8ACALNJAQACjQCA0AAAAAaNAIAKjQCAtkkBALVJAQAOjQCAuykBALolAQASjQCAFo0AgL8dAQC+HQEAvSEBALwpAQDjNDYA4QwGAOGwAgDjPAYAGo0AgB6NAIAijQCAJo0AgIQsPwC+oD8AKo0AgC6NAIDvfDcAMo0AgDaNAIDvGAEAOo0AgD6NAICGaD4Ah8w/AEKNAIBGjQCASo0AgO+UAABOjQCA4ZQBAFKNAIDjUAAAVo0AgILpPwCB6T8AgPE/AKMJPgCPASQA9owAgFqNAIBejQCApgk+AKUJPgBijQCAq2k+AKplPgBmjQCAao0AgK9dPgCuXT4ArWE+AKxpPgCeYTgA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vY0CAL69AgC/fQMAsFkCALFZAgCy7QIAs+UCALT9AgC15QIAtuUCALfVAgCjUQUAEpIAgBaSAIAakgCAHpIAgKZ5BQClcQUAIpIAgKudAgCqnQIAJpIAgCqSAICvIQIArjkCAK0xAgCsOQIAghEAAC6SAICAZQAAgQkAADKSAIC+mAMAOpIAgD6SAICEJAMAQpIAgIdoAwCGjBwARpIAgEqSAIBOkgCAUpIAgFaSAIBakgCAs6ECAITAHAC10QIAXpIAgGKSAIC21QIAZpIAgGqSAIC7wQIAuvUCAL0RAQC82QIAvxEBAL4ZAQBukgCAcpIAgHaSAIB6kgCAfpIAgIKSAICGkgCA77gGAIqSAIDhnAQAjpIAgON0BgCSkgCAlpIAgJqSAICekgCAgPkAAIH5AACCBQAAopIAgL5YHACEWB8A71wAAO9ABgDhkAEA4fwGAOM8AADjdAYAqpIAgK6SAICGmBwAh/QcAKNpAgC+DB8AspIAgLaSAIC6kgCAph0CAKUZAgC+kgCAqwkCAKo9AgDCkgCAxpIAgK/ZAQCu0QEArdkBAKwRAgCokR0AqZkdAKqhHQCroR0ArNEdAK3dHQCu1R0Ar8kdADaSAICmkgCAypIAgM6SAIDSkgCA1pIAgNqSAIDekgCAuHkeALl5HgC6zR4Au8UeALzdHgC9xR4AvsUeAL/1HgCwuR0AsY0dALKFHQCzTR4AtFUeALVdHgC2VR4At0keALjNHwC51R8Aut0fALvVHwC88R8Avf0fAL7pHwC/6R8AsKUfALGxHwCysR8As40fALSVHwC19R8Atv0fALf1HwCoGR4AqRkeAKotHgCrPR4ArCUeAK0tHgCuJR4Ar90fAOKSAIDmkgCA6pIAgO6SAIDykgCAxpEAgPaSAID6kgCAs+UfAP6SAIACkwCABpMAgAqTAIC27R8Ate0fAA6TAIC7NR4AuiEeABKTAIAWkwCAv3EeAL4RHgC9GR4AvCUeAIJpAACjoR8AgFkAAIFRAACmqR8AGpMAgB6TAIClqR8AqmUeAKtxHgCGAAQAh+wBAK5VHgCvNR4ArGEeAK1dHgCoMR4AqTEeAKpBHgCrQR4ArEEeAK1JHgCucR4Ar3EeACKTAIAmkwCAKpMAgC6TAIAykwCANpMAgDqTAIA+kwCAuCkBALkpAQC6OQEAuzUBALwtAQC90QAA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qnkOAKshDgC2lQCAupUAgK4hDgCvKQ4ArDEOAK0xDgCoYQ4AqXUOAKp9DgCrdQ4ArG0OAK31DgCu/Q4Ar/UOAIaAAQCHpAEAvpUAgMKVAIDGlQCAypUAgM6VAIDSlQCAuHUBALl9AQC6dQEAu8kBALzdAQC9xQEAvsUBAL/1AQCwjQ4AsZUOALKdDgCzkQ4AtFUBALVdAQC2VQEAt00BALP1DgDWlQCA2pUAgN6VAIDilQCAtnUOALXlDgDmlQCAu1EOALpJDgDqlQCA7pUAgL+ZAQC+kQEAvUUOALxJDgDylQCAo7EOAPaVAID6lQCApjEOAP6VAIAClgCApaEOAKoNDgCrFQ4ABpYAgAqWAICu1QEAr90BAKwNDgCtAQ4AqO0CAKktAwCqJQMAqz0DAKwlAwCtLQMAriUDAK+ZAwAOlgCAEpYAgBaWAIAalgCAHpYAgCKWAIC+dAIAKpYAgLiNAwC5kQMAupEDALulAwC8vQMAvXUAAL59AAC/dQAAsOkDALHpAwCy+QMAs/EDALTZAwC12QMAtrkDALe1AwCArQAAgbUAAIK9AACzoQMALpYAgLWhAwC2oQMAMpYAgITgAgA2lgCAuiEDALshAwC8IQMAvSkDAL4RAwC/EQMAo+0DAIXABACFtG8AOpYAgD6WAICm7QMApe0DAEKWAICrbQMAqm0DAIZIBQCHbAMAr10DAK5dAwCtZQMArG0DAEaWAIDjAA4A71hsAOG0DwBKlgCATpYAgFKWAIBWlgCAoakDAKD9DwCjwQMAog0DAOHgAwDv4A8A4+QDAFqWAIBelgCAYpYAgIQEBAC+BAQAZpYAgO+UAwBqlgCAbpYAgHKWAIDj1AMAdpYAgOFUAAB6lgCAfpYAgIKWAICGlgCAgA0AAIEVAACCHQAAipYAgI6WAICSlgCAj5EbAO+cDgCE4AcA4dQOAJqWAIDj8A4AnpYAgKKWAICGGAcAh5AEAJnlFwCY5RcAm+kLAJo5CwCd/QoAnPELAJ9VDwCeXQ8AkSkfAJDNGwCTJR8Aks0fAJXREwCUKRMAlxkXAJZ1EwCM4RAAjSUQAI4tEACP+QwAJpYAgJaWAICKORQAi5UUAITpGACFBRgAhuUYAIfxFACmlgCAqpYAgIIxHACDFRwAnKkEAK6WAICylgCAtpYAgLqWAIC+lgCAmtEEAJt9BACUTQ0AleUIAJblCACXtQgAwpYAgMaWAICSWQwAk1kMAKGRAADKlgCAowF8AKKZAACluXwApJF8AKeZeACm4X0AqYF5AKiheACriXQAqgF0AK0BcACsWXQAr4VwAK6dcACx4WwAsAFsALMBaACyHWwAtfVoALT1aADOlgCA0pYAgNaWAIDalgCA3pYAgOKWAIDmlgCA6pYAgO6WAIDylgCAqD0HAKmVBwCqlQcAq6kHAKzdBwCtxQcArsUHAK8dBgD2lgCAgh0AAIEdAACAHQAA+pYAgP6WAIAClwCAvmABALgZBgC5GQYAuikGALslBgC8IQYAvSEGAL4hBgC/IQYAsHEGALFxBgCycQYAs3EGALRNBgC1NQYAtj0GALctBgCzHQcACpcAgIYoAACHqAAADpcAgLZFBwC1VQcAEpcAgLu1BgC6tQYAFpcAgBqXAIC/8QYAvokGAL2lBgC8pQYAHpcAgKNZBwAilwCAJpcAgKYBBwAqlwCALpcAgKURBwCq8QYAq/EGADKXAIA2lwCArs0GAK+1BgCs4QYAreEGAKipBQCptQUAqr0FAKs9AgCsJQIArVECAK5RAgCvUQIAOpcAgD6XAIBClwCARpcAgIQ8AwBKlwCATpcAgFKXAIC4pQIAua0CALqlAgC7vQIAvKUCAL2tAgC+pQIAv30DALAxAgCxMQIAshkCALMZAgC09QIAta0CALalAgC3nQIAVpcAgFqXAIBelwCAszkFAGKXAIC1oQIAtt0CAGaXAIBqlwCAbpcAgLr5AgC7+QIAvMECAL3BAgC+PQIAv2UCAHKXAICmgQIApf0CAHqXAICjZQUAvlh8AIbYfACHnHwArzkCAK5hAgCtnQIArJ0CAKulAgCqpQIAfpcAgIKXAICohQIAqZUCAKqVAgCrpQIArL0CAK3VAgCu0QIAr9ECAIGFAQCAhQEAhpcAgILtAQCKlwCAjpcAgJKXAICWlwCAuHUBALl9AQC6dQEAu80BALzVAQC93QEAvskBAL/BAQCwtQIAsb0CALKBAgCzgQIAtFEBALVRAQC2UQEAt1EBAJqXAICelwCAopcAgKaXAIDhMAYA4WQHAOMoBgDjxAYAhCB9AKqXAIDvbAAA7xgGAK6XAICylwCAtpcAgLqXAICzXQIAvkh8AL6XAIDClwCAxpcAgLYVAgC1dQIAypcAgLs5AgC6MQIAzpcAgNKXAIC/1QEAvtUBAL0VAgC8FQIAo519AHaXAIDWlwCA2pcAgN6XAICm1X0ApbV9AOKXAICr+X0AqvF9AOaXAIDqlwCArxV+AK4VfgCt1X0ArNV9AIBNAACBVQAAglUAALOxfgDulwCAtWV/ALZtfwDylwCAhkADAIcEAwC66X8Au+l/ALz5fwC9+X8Avt1/AL/NfwD2lwCA+pcAgAaXAID+lwCAApgAgAaYAIAKmACADpgAgKhtfgCpXX4AqlV+AKuFfwCsgX8ArYF/AK6BfwCvgX8AsEF/ALFBfwCyQX8As0F/ALR1fwC1ZX8Atm1/ALdlfwC4XX8AuS1/ALolfwC7PX8AvC1/AL0dfwC+FX8Av/UAAKP9fwASmACAFpgAgBqYAIAemACApiF+AKUpfgAimACAq6V+AKqlfgAmmACAKpgAgK+BfgCukX4ArbV+AKy1fgAumACAMpgAgDaYAIA6mACAPpgAgEKYAIBGmACASpgAgIA9AACBCQAAghkAAE6YAIBSmACAhLgBAL6wAQBWmACAqK0BAKnVAQCq1QEAqw0BAKwVAQCtGQEArgkBAK8JAQCGAAQAhwQBAFqYAIBemACAYpgAgGaYAIBqmACAbpgAgLjtAAC5hQAAuo0AALuFAAC8nQAAvYUAAL6NAAC/hQAAsHkBALF5AQCy7QAAs+UAALT9AAC15QAAtuUAALfVAACzXQIAcpgAgHaYAIB6mACAfpgAgLaZAgC1nQIAgpgAgLu9AgC6vQIAhpgAgIqYAIC/IQMAvjkDAL0xAwC8OQMAvigDAKMZAgCOmACAkpgAgKbdAgCWmACAmpgAgKXZAgCq+QIAq/kCAJ6YAICimACArn0DAK9lAwCsfQMArXUDAL7IBACmmACAqpgAgL7EBQCumACAspgAgLaYAIC6mACAgD0AAIEJAACCGQAAvpgAgMKYAICEOAMAypgAgM6YAIDveAIA0pgAgIZIBACHVAMA1pgAgNqYAIDemACA4pgAgOaYAIDqmACA7pgAgPKYAIDjVAIA9pgAgOFAAQD6mACA/pgAgOMkfwACmQCA4Zx8AAaZAIAKmQCADpkAgBKZAICEbAUAFpkAgBqZAIAemQCAIpkAgO8YfwAmmQCAKpkAgLPxAgAumQCAMpkAgDqZAIA+mQCAtukCALXhAgBCmQCAu3EBALppAQCHoAUAhswEAL85AQC+WQEAvVEBALxhAQDhQH8ARpkAgOM4fgCEwAQAgtkAAO8UAACApQAAgdkAAEqZAIDjwAAATpkAgOHUAQBSmQCAVpkAgO+EfgBamQCAqs0BAKvVAQBemQCAYpkAgK79AQCvnQEArMUBAK31AQBmmQCAo1UCAGqZAIBumQCApk0CAHKZAIB2mQCApUUCAMaYAIA2mQCAepkAgH6ZAICCmQCAhpkAgIqZAICOmQCAqJkGAKmZBgCq7QYAq/0GAKzlBgCt7QYAruUGAK/dBgCwpQYAsa0GALKlBgCzuQYAtK0GALVVBwC2UQcAt00HALh1BwC5fQcAunUHALtJBwC8WQcAvVkHAL5JBwC/RQcAs0UGAJKZAICWmQCAmpkAgJ6ZAIC2TQYAtU0GAKKZAIC7SQYAukEGAIYIAACHjAAAv7EHAL5JBgC9TQYAvFEGAIJdAACjAQYAgEUAAIFdAACmCQYAqpkAgK6ZAIClCQYAqgUGAKsNBgCymQCAtpkAgK4NBgCv9QcArBUGAK0JBgCoTQYAqVUGAKpVBgCriQYArLEGAK29BgCuqQYAr6kGAKaZAIC6mQCAvpkAgMKZAIDGmQCAypkAgM6ZAIDSmQCAuEkBALlJAQC6WQEAu1kBALxJAQC9SQEAvt0BAL/VAQCw3QYAsa0GALKlBgCzjQYAtJkGALWZBgC2jQYAt4UGALPdBgDWmQCA2pkAgN6ZAIDimQCAtj0GALU5BgDmmQCAu2kGALoZBgDqmQCA7pkAgL9dBgC+XQYAvVkGALxxBgDymQCAo5kGAPaZAID6mQCApnkGAP6ZAIACmgCApX0GAKpdBgCrLQYABpoAgAqaAICuGQYArxkGAKw1BgCtHQYAqNUCAKndAgCq4QIAq+ECAKw1AwCtPQMArjUDAK8tAwCAzQMAgQkAAIIZAAAOmgCAEpoAgIQYAgC+dAMAGpoAgLjpAwC56QMAuokDALuFAwC8nQMAvYEDAL6BAwC/tQMAsFUDALFdAwCyVQMAs+kDALT5AwC1+QMAtukDALfhAwCGIAwAhxADAB6aAIAimgCAJpoAgCqaAIAumgCA71wCADKaAIDhFAAANpoAgOOIAgC++AwAOpoAgD6aAIBCmgCAu/kDALrxAwC+gA0ARpoAgL9dAwC+XQMAvV0DALzhAwCzCQIASpoAgE6aAIBSmgCAVpoAgLbdAwC13QMAWpoAgKipBgCpqQYAqrkGAKu5BgCsqQYArakGAK4dBQCvFQUAXpoAgGKaAIBmmgCAapoAgG6aAIBymgCAdpoAgHqaAIC4GQUAuS0FALolBQC7yQUAvNkFAL3FBQC+zQUAv8UFALBtBQCxdQUAsnUFALNFBQC0XQUAtT0FALY1BQC3KQUA4fQGAOFUBwDjFAYA47wGAIEJAACAqQAAfpoAgII5AACE7A0AgpoAgIeIDACGDAwAipoAgI6aAIDvzAcA78QHAKMpAwCSmgCAlpoAgJqaAICemgCApv0CAKX9AgCimgCAq9kCAKrRAgCmmgCAqpoAgK99AgCufQIArX0CAKzBAgCoPQ4AqY0OAKqFDgCrnQ4ArIUOAK2NDgCuuQ4Ar7UOAIaaAICumgCAspoAgLaaAIC6mgCAvpoAgMKaAIDGmgCAuL0OALllDwC6bQ8Au2UPALx9DwC9ZQ8Avm0PAL9lDwCw1Q4Asd0OALLVDgCzoQ4AtJUOALWdDgC2lQ4At40OALMNDgDKmgCAzpoAgNKaAIDWmgCAtg0OALUNDgDamgCAuxkOALoRDgDemgCAFpoAgL9ZDgC+UQ4AvXUOALwBDgDimgCAo0kOAOaaAIDqmgCApkkOAO6aAIDymgCApUkOAKpVDgCrXQ4AhKQDAPaaAICuFQ4Arx0OAKxFDgCtMQ4AqLEOAKmxDgCqzQ4Aq8UOAKzdDgCtxQ4ArsUOAK/1DgCA7QEAgfEBAILxAQD6mgCAhpABAIe0AQD+mgCAApsAgLjFAQC5zQEAusUBALvdAQC8zQEAvf0BAL6ZAQC/lQEAsI0OALFBAQCyQQEAs0EBALRBAQC1QQEAtkEBALdBAQCzRQ4ABpsAgAqbAIAOmwCAEpsAgLZFDgC1VQ4AFpsAgLuFAQC6SQ4AGpsAgB6bAIC/hQEAvoUBAL2VAQC8lQEAIpsAgKMBDgAmmwCAKpsAgKYBDgAumwCAMpsAgKURDgCqDQ4Aq8EBADabAIA6mwCArsEBAK/BAQCs0QEArdEBAKgtAwCpPQMAqjUDAKuJAwCsmQMArZkDAK6JAwCvgQMAPpsAgEKbAIBGmwCASpsAgE6bAIBSmwCAVpsAgFqbAIC4rQMAuWUAALptAAC7ZQAAvH0AAL1lAAC+bQAAv2UAALDJAwCxyQMAsqkDALOlAwC0vQMAtaEDALahAwC3lQMAgL0AAIEJAACCGQAAXpsAgGKbAIC+2AMAapsAgG6bAICErAIAcpsAgIfoAwCGDAQAdpsAgHqbAIB+mwCAgpsAgLP9AwCGmwCAipsAgI6bAICSmwCAtlkDALVRAwCWmwCAu00DALpNAwCamwCAnpsAgL8lAwC+OQMAvTEDALw9AwCimwCAppsAgKqbAICumwCA71gPALKbAIC2mwCAupsAgOOQDgC+mwCA4bAPAMKbAIDGmwCAypsAgM6bAIDSmwCAgHUAAIF9AACCdQAAhBgFAO88AwDamwCAvhQFAN6bAIDj0AMA4psAgOFAAADmmwCAhtAEAIdYBQDqmwCA7psAgPKbAID2mwCA+psAgP6bAIACnACABpwAgAqcAIDvrA8AhOwEAOEQDgAOnACA41QBABKcAIAWnACAGpwAgB6cAICj/QIAIpwAgCacAIAqnACALpwAgKZZAgClUQIAMpwAgKtNAgCqTQIANpwAgDqcAICvJQIArjkCAK0xAgCsPQIAqJkGAKmZBgCqrQYAq70GAKylBgCtrQYArqUGAK/ZBgDWmwCAghEAAIEZAACAwQcAPpwAgEKcAIC+cAMARpwAgLhJBwC5SQcAul0HALtVBwC8TQcAvXEHAL51BwC/bQcAsKkGALGpBgCyuQYAs7EGALSZBgC1mQYAtnkHALd5BwC1NQYASpwAgE6cAIC2NQYAhjAAAIdcAwCzPQYAUpwAgL19BgC8dQYAv0UGAL5FBgBmmwCAVpwAgLt1BgC6dQYAo2UGAFqcAIBenACAYpwAgGacAICmbQYApW0GAGqcAICrLQYAqi0GAG6cAIBynACArx0GAK4dBgCtJQYArC0GAKhVBgCpWQYAqm0GAKthBgCsaQYArWkGAK6ZBgCvmQYAdpwAgHqcAIB+nACAgpwAgIacAICKnACAjpwAgJKcAIC4+QYAufkGALqNBgC7hQYAvJ0GAL2FBgC+hQYAv7UGALDpBgCx6QYAsvkGALP5BgC06QYAtd0GALbJBgC3yQYAs+UGAJacAICanACAnpwAgKKcAIC26QYAteEGAKacAIC7LQYAui0GAKqcAICunACAvxkGAL4tBgC9LQYAvC0GAIIVAACjoQYAgGEAAIFhAACmrQYAspwAgL6QAQClpQYAqmkGAKtpBgCEpAEAupwAgK5pBgCvXQYArGkGAK1pBgCohQIAqY0CAKqVAgCruQIArNUCAK3dAgCu1QIAr80CAIaAHACHZAMAvpwAgL5gAwDCnACAxpwAgMqcAIDOnACAuHUDALl9AwC6dQMAu8kDALzZAwC92QMAvskDAL/BAwCwvQIAsY0CALKFAgCzTQMAtFUDALVdAwC2VQMAt00DALMdAgDSnACAhAgDANacAIDanACAtl0CALVdAgDenACAu0kCALp5AgDinACA5pwAgL+ZAwC+kQMAvZkDALxRAgCwAAAAo1kCAOqcAIDunACAphkCAPKcAID2nACApRkCAKo9AgCrDQIA+pwAgP6cAICu1QMAr90DAKwVAgCt3QMAAp0AgAadAIAKnQCA76wGAA6dAIASnQCAFp0AgBqdAIC+6BwAHp0AgCKdAIAqnQCALp0AgOGABwAynQCA42AGAIBdAACBYQAAgmEAALN9AQA2nQCAtW0BALZlAQA6nQCAhiAdAIdYHQC6+QEAu/EBALzZAQC92QEAvrEBAL+xAQDvoAAAPp0AgEKdAIBGnQCASp0AgE6dAIBSnQCA71wBAIRsHADhzAYAVp0AgOMcBgDjSAAAWp0AgOEwAQBenQCAo/EBAGKdAICFABQAZp0AgGqdAICm6QEApeEBAG6dAICrfQEAqnUBAHKdAIB2nQCArz0BAK49AQCtVQEArFUBAKjtHQCpLR4AqjkeAKs5HgCsKR4ArSkeAK6dHgCvkR4AJp0AgHqdAIB+nQCAgp0AgIadAICC+QAAgfEAAID9AAC4qR4AuakeALpJHwC7SR8AvFkfAL1FHwC+TR8Av0UfALDxHgCx+R4AssEeALPBHgC0uR4AtbkeALatHgC3pR4AsBEfALERHwCyER8AsyUfALQlHwC1KR8Atl0fALdRHwC4cR8AuXkfALpBHwC7QR8AvJUAAL2dAAC+lQAAv40AAIqdAIC2nACAjp0AgJKdAICWnQCAmp0AgIb4AwCH0AAAqM0fAKnVHwCq0R8Aq70fAKytHwCtcR8ArnEfAK9xHwCzOR4Anp0AgKKdAICmnQCAqp0AgLaRHgC1RR4Arp0AgLu1HgC6tR4Asp0AgLadAIC/jR4AvoEeAL2RHgC8pR4Aup0AgKN9HgC+nQCAwp0AgKbVHgDGnQCAyp0AgKUBHgCq8R4Aq/EeAM6dAIDSnQCArsUeAK/JHgCs4R4A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gqIAgIaiAICKogCAjqIAgO9EBgCSogCA4dQGAJaiAIDjDAcAmqIAgJ6iAICiogCApqIAgLP1AQCqogCArqIAgLKiAIC2ogCAtkUBALXlAQC6ogCAuzEBALopAQC+ogCAwqIAgL8dAQC+HQEAvRkBALwlAQCoLT4AqTU+AKo9PgCrNT4ArC0+AK2FPgCuhT4Ar7k+AGaiAIDGogCAyqIAgM6iAICAGQAAgRkAAIIFAADSogCAuLk+ALm5PgC6ST8Au0k/ALxZPwC9WT8Avk0/AL9BPwCwrT4AsbU+ALKxPgCzjT4AtJk+ALWZPgC2iT4At4k+AKO1PgCEjAIA1qIAgNqiAIDeogCApgU+AKWlPgDiogCAq3E+AKppPgCGCAAAh2gDAK9dPgCuXT4ArVk+AKxlPgDmogCAs5E/AOqiAIDuogCAtlk/APKiAID2ogCAtbk/ALp1PwC7fT8A+qIAgP6iAIC+QT8Av0E/ALxZPwC9VT8AsJU+ALGdPgCyqT4As6U+ALShPgC1oT4AtqE+ALehPgC45T4Aue0+ALrlPgC7/T4AvO0+AL3dPgC+1T4AvxkBAAKjAIAGowCACqMAgA6jAIASowCA9qEAgBajAIAaowCAqF0+AKkhPgCqPT4AqzU+AKwVPgCt/T4ArvU+AK/tPgCj1T4AHqMAgCKjAIAmowCAKqMAgKYdPgCl/T4ALqMAgKs5PgCqMT4AMqMAgDajAICvBT4ArgU+AK0RPgCsHT4AgREAAIANAAA6owCAghkAAD6jAIBCowCAhJQBAL4QAACGQAcAhwABAEqjAIBOowCAUqMAgFajAIBaowCAXqMAgKiNAgCplQIAqpUCAKvNAgCs2QIArdkCAK7NAgCvxQIAYqMAgGajAIBqowCAbqMAgIwAAAByowCAdqMAgHqjAIC4HQMAucEDALrBAwC7wQMAvMEDAL3JAwC+8QMAv/EDALCJAgCxiQIAsikDALMpAwC0OQMAtTkDALYpAwC3JQMAsx0CAH6jAICCowCAhqMAgIqjAIC2WQIAtVECAI6jAIC7TQIAuk0CAJKjAICWowCAv/0DAL79AwC9/QMAvP0DAJqjAICeowCAoqMAgKajAIDhDD4AqqMAgOOoPwCuowCAgT0AAIAxAADvUD8Agh0AALKjAIC++AQAhhgFAIdMAwCEDAIA48wAALqjAIDhvAEA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tUkCACKmAIC7hQIAuoUCACamAIAqpgCAv4UCAL6FAgC9lQIAvJUCAIU8GgCjVQIALqYAgDKmAICmDQIANqYAgDqmAIClDQIAqsECAKvBAgA+pgCAQqYAgK7BAgCvwQIArNECAK3RAgCCGQAARqYAgIAZAACBGQAASqYAgE6mAIBSpgCAWqYAgL4ABABepgCAYqYAgGamAIBqpgCAbqYAgHKmAIB2pgCA7+gOAHqmAICG6AQAh1ADAH6mAICCpgCA74ACAIamAIDhlAEAiqYAgONYAQCOpgCA4wAOAJKmAIDhaA0AlqYAgKhxAgCpcQIAqnECAKupAgCsuQIArbkCAK6pAgCvqQIAhKwFAJqmAICepgCAoqYAgKamAICqpgCArqYAgLKmAIC4bQEAuQ0BALoFAQC7GQEAvAkBAL09AQC+NQEAv9kBALDZAgCx2QIAsm0BALNlAQC0fQEAtWUBALZlAQC3VQEA4WAPAOP0AADjHA4A4bwBALamAICCOQAAgTEAAIA9AAC6pgCAvigEAL6mAIDCpgCAvjwHAO8QAADv0A4AyqYAgIbgBACHyAQAzqYAgLO1AgDSpgCAtX0CALZ1AgDWpgCA2qYAgN6mAIC6UQIAu1ECALz1AQC9/QEAvvUBAL/tAQBWpgCAxqYAgKqxBQCrsQUArBUGAK0dBgCuFQYArw0GAOKmAIDmpgCA6qYAgKNVBQDupgCApZ0FAKaVBQDypgCAs+kGAPamAID6pgCA/qYAgAKnAIC24QYAtekGAAanAIC7sQYAuqEGAAqnAIAOpwCAv50GAL6RBgC9pQYAvKkGAKgdBgCpIQYAqiEGAKshBgCsIQYArSEGAK4hBgCvIQYAEqcAgBanAIAapwCAHqcAgCKnAIAmpwCAKqcAgC6nAIC45QcAue0HALrlBwC7/QcAvOUHAL3tBwC+5QcAv00HALAlBgCxNQYAsj0GALMxBgC0FQYAtRkGALYNBgC3AQYAo6kHAIIVAACBtQEAgLUBADKnAICmoQcApakHADanAICr8QcAquEHAISgAgA6pwCAr90HAK7RBwCt5QcArOkHAD6nAICzlQYAhugAAIcYAQC2tQYAQqcAgEanAIC1vQYAukkBALtVAQBKpwCATqcAgL45AQC/OQEAvEUBAL05AQCoPQYAqU0GAKpZBgCrUQYArHEGAK1xBgCuuQEAr7kBAISsAQBSpwCAVqcAgFqnAIBepwCAYqcAgGanAIBqpwCAuKkBALmpAQC6aQEAu2kBALx5AQC9eQEAvmkBAL9pAQCwyQEAsdUBALLVAQCzqQEAtLkBALW5AQC2qQEAt6EBAKPRBQBupwCAcqcAgHanAIB6pwCApvEFAKX5BQB+pwCAqxECAKoNAgCCpwCAhqcAgK99AgCufQIArX0CAKwBAgCKpwCAjqcAgJKnAICWpwCAgTEAAIANAACapwCAgjkAAJ6nAICipwCAviQDAKqnAICupwCAsqcAgIbYHACHTAMAtqcAgLqnAIC+pwCAhMAcAOMgAQDCpwCA4cgBAManAIDvMAIAyqcAgM6nAIDSpwCA1qcAgNqnAIDepwCA4qcAgLOVAwDmpwCA6qcAgO6nAIDypwCAtrkDALWxAwD2pwCAu1EDALpJAwD6pwCA/qcAgL/1AAC+SQMAvUEDALxJAwCoLQIAqUUCAKpdAgCrVQIArHkCAK15AgCuvQIAr7UCAL5oHQACqACABqgAgAqoAICAHQAAgQkAAIKpAAAOqACAuFEBALlZAQC6YQEAu2EBALwRAQC9EQEAvhEBAL8RAQCwzQIAsdUCALLdAgCz1QIAtM0CALVxAQC2cQEAt3EBAOFYBgDhVAcA47AAAOO8BgASqACAGqgAgIYYHACHVB0AHqgAgCKoAIAmqACAKqgAgL74HAAuqACA7/AGAO/gBgCjlQIAMqgAgDaoAIA6qACAPqgAgKa5AgClsQIAQqgAgKtRAgCqSQIARqgAgEqoAICv9QEArkkCAK1BAgCsSQIAqG0eAKl1HgCqfR4Aq40eAKyVHgCtnR4Aro0eAK+BHgAWqACATqgAgFKoAIBWqACAWqgAgF6oAIBiqACAZqgAgLiJHgC5iR4AupkeALuRHgC8uR4AvbkeAL59HwC/dR8AsMUeALHNHgCyxR4As90eALTFHgC1zR4AtsUeALe5HgCz9R4AaqgAgG6oAIByqACAdqgAgLYdHgC1HR4AeqgAgLsJHgC6AR4AfqgAgIKoAIC/CR4AvgEeAL0JHgC8ER4Agm0AAKOxHgCAVQAAgWUAAKZZHgCEmAMAv9ABAKVZHgCqRR4Aq00eAIYABACHmAEArkUeAK9NHgCsVR4ArU0eAIqoAICOqACAhCQAAJKoAICWqACAmqgAgKanAICGqACA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5qsAgIR0BwDqqwCA72gBAO6rAIDyqwCApXkCAKbNAQD2qwCAgCEAAIEhAACC3QcAo2kCAKzJAQCtyQEArqEBAK+hAQD6qwCA/qsAgKrpAQCr4QEAlqsAgAKsAIC+QAIABqwAgIYwAwCHMAMACqwAgA6sAICoOQcAqTkHAKoNBwCrHQcArAUHAK0NBwCuBQcAr3kHALAJBwCxCQcAshkHALMRBwC0OQcAtTkHALbdBwC3yQcAuPkHALn5BwC6zQcAu8EHALzFBwC9yQcAvrkHAL+xBwCzpQcAEqwAgBasAIAarACAHqwAgLatBwC1rQcAIqwAgLvtBwC67QcAJqwAgCqsAIC/3QcAvt0HAL3lBwC87QcALqwAgKPhBwAyrACANqwAgKbpBwA6rACAPqwAgKXpBwCqqQcAq6kHAEKsAIBGrACArpkHAK+ZBwCsqQcAraEHAEqsAIBOrACAUqwAgFasAIBarACAXqwAgGKsAIBmrACAgREAAIANAABqrACAghkAAG6sAIByrACAvuQBAHasAICG4AAAhxgBAHqsAIB+rACAgqwAgIasAICKrACA77AEAI6sAIDh1AYAkqwAgONcBACWrACAmqwAgJ6sAICirACAqJkBAKmZAQCqDQEAqwUBAKwdAQCtBQEArgUBAK81AQCEiAEApqwAgKqsAICurACAsqwAgLasAIC6rACAvqwAgLjBAAC5wQAAusEAALvBAAC8wQAAvcEAAL7BAAC/wQAAsE0BALElAQCyIQEAsyEBALQlAQC1LQEAthEBALcRAQDCrACAxqwAgLONAgDKrACAtZ0CAM6sAIDSrACAto0CANasAIDarACAu+kCALqBAgC9/QIAvP0CAL/hAgC+6QIA3qwAgKbVAgClxQIAvggDAKPVAgCCLQAAgRkAAIB5AACvuQIArrECAK2lAgCspQIAq7ECAKrZAgDirACA6qwAgO80AgDurACAhxgDAIYs/ADyrACA9qwAgPqsAID+rACAAq0AgAatAIAKrQCADq0AgOMAAQASrQCA4eABABatAIC6tQMAu70DABqtAIAerQCAvnkDAL95AwC8pQMAvXkDACarAICztQMAIq0AgCatAIC2kQMAKq0AgC6tAIC1pQMAqEkCAKlJAgCqWQIAq1kCAKxJAgCtdQIArnECAK9tAgC+aP0AvqT/ADKtAIA2rQCA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s1kGAA2yAIARsgCAFbIAgBmyAIC2ZQYAtXUGAB2yAIC7KQYAuiEGACGyAIAlsgCAvxUGAL4VBgC9JQYAvC0GAKOZBgCPmfwAKbIAgDGyAIA1sgCApqUGAKW1BgA5sgCAq+kGAKrhBgCGKB8Ah5wAAK/VBgCu1QYAreUGAKztBgCebQkAn30HAJwNCwCd7QkAmvENAJs5DQCY5fAAmQ0PAJbh8QCX6fEAlMX1AJUN8wCSHfcAk/H1AJD9+QCR7fkAgh3/AIMB+gA9sgCAQbIAgIYV9gCHOfYAhAn6AIXx9ACKwfAAiyXyAEWyAIBJsgCAjuEMAI8VDgCMNfIAjQHzAJKtDgCTgQgATbIAgFGyAICW6QQAl3UGAJR5CgCV8QoAmtEGAJvJAABVsgCAWbIAgIEdAwCAHQMAnFkCAIL1AwCrARAAqpUWAKmNFgCojRYAr5UuAK4BLACt/RIArJkSAKOlHgCipR4AoY0CAN2wAICnGRoAppUaAKUBGACknR8AXbIAgGGyAIBlsgCAabIAgG2yAIBxsgCAdbIAgHmyAICz5SoAsuUqALGtLwCw5S4AfbIAgIGyAIC1ASQAtBEqAKgpAwCpNQMAqj0DAKs1AwCsLQMArbUDAK69AwCvtQMAhbIAgImyAICNsgCAkbIAgIAdAACBCQAAgrkAAJWyAIC4TQIAuV0CALptAgC7CQIAvBkCAL0ZAgC+CQIAvwECALDNAwCx1QMAst0DALPVAwC0zQMAtXUCALZ9AgC3dQIAmbIAgITIHQChsgCAvgwfAKWyAICpsgCA70gGAO9YBwDhWAYA4ZgGAOOUAQDjAAYAhhAcAId8HQC+9B4ArbIAgLGyAIC2ZQMAtfUDALWyAICz5QMAubIAgL2yAIDBsgCAv+ECAL5ZAwC9UQMAvFkDALtBAwC6WQMAxbIAgMmyAIAtsgCAnbIAgM2yAIDRsgCA1bIAgNmyAIDdsgCA4bIAgKitHQCptR0AqrUdAKslHgCsPR4ArR0eAK4VHgCvdR4AsA0eALEtHgCyJR4As40eALSVHgC1nR4AtpUeALeNHgC4tR4Aub0eALq1HgC7nR4AvIUeAL1VHwC+XR8Av1UfALMdHQDlsgCA6bIAgO2yAIDxsgCAtr0eALWVHgD1sgCAu8keALrpHgD5sgCA/bIAgL95HgC+cR4AvXkeALzRHgCCKQAA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vPkBAL35AQC+mQEAv5UBALAFAQCxDQEAsgUBALMdAQC0BQEAtQ0BALYFAQC3+QEA4WQPAOGcDwDjFA4A49QPAJ22AIDhPA4AobYAgOPkAAC+rAQApbYAgKm2AIDvDAAArbYAgLG2AIDvYA4A77QPALW2AIC5tgCAhEQEALNhAgC9tgCAtWECALZhAgDBtgCAxbYAgMm2AIC6jQEAu4UBALydAQC9hQEAvo0BAL+FAQCjrQUAjbYAgM22AIDRtgCA1bYAgKatBQClrQUA2bYAgKtJBgCqQQYA3bYAgOG2AICvSQYArkEGAK1JBgCsUQYA5bYAgOm2AIDttgCA8bYAgIAdAACBCQAAgjkAAPW2AID5tgCA/bYAgIbIAACHIAMAAbcAgAW3AIAJtwCADbcAgKhtBgCptQcAqr0HAKsdBwCsCQcArTEHAK4xBwCvLQcAhKgDABG3AIAVtwCAGbcAgB23AIAhtwCAJbcAgCm3AIC4zQAAudUAALrVAAC75QAAvP0AAL2VAAC+nQAAv5UAALBVBwCxJQcAsi0HALM9BwC0LQcAtRUHALYdBwC39QAALbcAgOG8BgAxtwCA4/QFADW3AIA5twCAPbcAgEG3AIBFtwCASbcAgE23AIBRtwCAVbcAgFm3AIBdtwCA7+gEALN1BgCCLQAAgRUAAIAdAABhtwCAtvEGALXBBgBltwCAu6EGALrRBgBptwCAvmwBAL+RBgC+qQYAvakGALy5BgCjtQYAcbcAgIYoAACHTAEAdbcAgKYxBgClAQYAebcAgKthBgCqEQYAfbcAgIG3AICvUQYArmkGAK1pBgCseQYAhbcAgLO9AQCJtwCAjbcAgLZ5AQCRtwCAlbcAgLV5AQC6VQEAu10BAJm3AICdtwCAvvkAAL/lAAC8RQEAvf0AAKhxAgCpcQIAqnECAKtxAgCstQIArb0CAK61AgCvrQIAhOw8AKG3AICltwCAqbcAgK23AICxtwCAtbcAgLm3AIC4XQMAuWUDALptAwC7ZQMAvH0DAL1lAwC+bQMAv2UDALDVAgCx3QIAstUCALNtAwC0eQMAtWUDALZtAwC3ZQMAHbYAgL23AIDBtwCAo/UCAMW3AIClMQIApjECAMm3AIDNtwCA0bcAgKodAgCrFQIArA0CAK21AwCusQMAr60DAIBlAACBCQAAghkAANW3AIDZtwCA4bcAgL4QPADltwCAhsA8AIcgAwDptwCA7bcAgPG3AID1twCA+bcAgP23AICohQIAqZUCAKqVAgCrpQIArL0CAK3VAgCu0QIAr9ECAAG4AIAFuACACbgAgA24AIARuACAFbgAgBm4AIAduACAuHUBALl9AQC6dQEAu8kBALzZAQC9xQEAvsUBAL/9AQCwtQIAsb0CALKBAgCzgQIAtFUBALVdAQC2VQEAt00BAOGkBgAhuACA41AGAL6APACEHDwAvoA/ACW4AIApuACALbgAgDG4AIA1uACAObgAgD24AIBBuACA7+AGAEW4AICBfQAAgHEAAEm4AICCBQAAUbgAgFW4AIDvTAAAWbgAgOGQAQBduACA41gBAGG4AIBluACAabgAgIZYPwCH/DwAs509AN23AIBNuACAbbgAgHG4AIC21T0AtbU9AHW4AIC7+T0AuvE9AHm4AIB9uACAvxk+AL4RPgC91T0AvNU9AIG4AICj2T0AhbgAgIm4AICmkT0AjbgAgJG4AICl8T0AqrU9AKu9PQCVuACAmbgAgK5VPgCvXT4ArJE9AK2RPQCoVT4AqVk+AKphPgCrYT4ArGE+AK1hPgCuYT4Ar2E+AISoAwCduACAobgAgKW4AICpuACArbgAgLG4AIC1uACAuEU/ALldPwC6VT8Au20/ALx1PwC9fT8AvnU/AL9tPwCwwT8AscE/ALLBPwCzwT8AtME/ALXBPwC2wT8At8E/AIC5AQCBuQEAggUAALm4AIDhgD4AwbgAgOMoPQDFuACAhoAAAIcEAQDvCD0AybgAgM24AIDRuACA1bgAgNm4AICzqT8AvbgAgN24AIDhuACA5bgAgLahPwC1qT8A6bgAgLtFPgC6RT4A7bgAgPG4AIC/RT4AvkU+AL1VPgC8VT4Ao2k/APW4AID5uACA/bgAgAG5AICmYT8ApWk/AAW5AICrhT4AqoU+AAm5AIANuQCAr4U+AK6FPgCtlT4ArJU+ABG5AICzGT4AFbkAgBm5AIC2IT4AHbkAgCG5AIC1MT4AuvEBALv5AQAluQCAKbkAgL6xAQC/vQEAvNEBAL3RAQCo0T0AqdE9AKrVPQCr6T0ArP09AK3lPQCu7T0ArxECAID5AwCBzQMAgsUDAIQkAwC+AAQAMbkAgIesAwCGvAQAuBkCALktAgC6JQIAu+kCALz5AgC9+QIA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eLsAgOE0AgB8uwCA4zQBAIC7AIDjCAwAhLsAgOEIDQChoQEAiLsAgKMJBQCibQMApc0EAKQRBQCnHRkAph0ZAKmhHQCoORkAq+kcAKqpHQCtkREArAEQAK8BFACuUREAsfkVALDlFQCz6WkAsgFoALUBbAC0eWkAjLsAgJC7AICUuwCAmLsAgJy7AICguwCAowkDAKIZDQCh/Q0AoP0NAIIlJgCDBToApLsAgKi7AICGqTwAhzU+AIQdOgCFPTsAiok+AIslMgCsuwCAsLsAgI6xNACPMTYAjD0yAI0tMgCSJTYAk9EIAIREAwC+wAQAlhULAJdVDgCUXQoAlVUKAJplDgCbiQ4AtLsAgLi7AIC8uwCAwLsAgJyBAADEuwCAuLUCALm9AgC6tQIAuwkCALwZAgC9GQIAvgkCAL8BAgCwdQ0AsX0NALJJDQCzSQ0AtJUCALWdAgC2lQIAt40CAKi9DQCpUQ0AqlUNAKtpDQCsfQ0ArWUNAK5tDQCvEQ0AZLsAgILtAQCBHQAAgB0AAMi7AIDMuwCAfboAgL5wBQCznQwAhIwFANC7AIDYuwCA3LsAgLalDAC1tQwA4LsAgLv5DAC68QwAhigFAIcgBQC/GQMAvhEDAL3dDAC83QwA5LsAgKPZDADouwCA7LsAgKbhDADwuwCA9LsAgKXxDACqtQwAq70MAPi7AID8uwCArlUDAK9dAwCsmQwArZkMAAC8AIAEvACACLwAgAy8AIAQvACAFLwAgBi8AIDvvAEAHLwAgOF8DgAgvACA41ABACS8AIAovACALLwAgDC8AICzlQIANLwAgDi8AIA8vACAQLwAgLa9AgC1uQIASLwAgLs5AgC6YQIAhsgEAIesBAC/GQIAvhECAL0ZAgC8IQIAo1UFAILVBwCBxQcAgMUHAEy8AICmfQUApXkFAFC8AICr+QUAqqEFAFS8AIBYvACAr9kFAK7RBQCt2QUArOEFAFy8AICzWQcAYLwAgGS8AIC2HQcAaLwAgGy8AIC1FQcAugkHALsJBwBwvACAdLwAgL75BwC/+QcAvPkHAL35BwDUuwCARLwAgHi8AIB8vACAgLwAgIS8AICIvACAjLwAgKitBwCptQcAqrUHAKvtBwCs+QcArfkHAK7tBwCv5QcAsKkHALGpBwCySQcAs0kHALRZBwC1WQcAtkkHALdJBwC4eQcAuUUHALpBBwC7XQcAvEUHAL1NBwC+RQcAvzkHAKMdBgCQvACAlLwAgJi8AICcvACAplkGAKVRBgCgvACAq00GAKpNBgCkvACAqLwAgK+9BgCuvQYArb0GAKy9BgCAbQAAgQkAAIIZAACsvACAsLwAgISYAQC+kAEAtLwAgIYAHACHxAEAuLwAgLy8AIDAvACAxLwAgMi8AIDMvACAqF0GAKmVAQCqlQEAq6UBAKy9AQCt1QEArtEBAK/RAQDQvACA1LwAgNi8AIDcvACA4LwAgOS8AIDovACA7LwAgLhZAQC5WQEAus0AALvFAAC83QAAvcUAAL7FAAC/9QAAsLUBALG9AQCygQEAs4EBALR5AQC1eQEAtmkBALdpAQCzHQIA8LwAgPS8AIC+gBwA+LwAgLZVAgC1NQIA/LwAgLt5AgC6cQIAAL0AgAS9AIC/vQIAvr0CAL1VAgC8VQIACL0AgKNZAgAMvQCAEL0AgKYRAgAUvQCAGL0AgKVxAgCqNQIAqz0CABy9AIAgvQCArvkCAK/5AgCsEQIArRECACi9AIAsvQCAvgQdAL4AHgAwvQCANL0AgDi9AIA8vQCAgPkAAIHNAACCxQAAhCADAIawHACHlAMAQL0AgES9AIBIvQCATL0AgFC9AIBUvQCA42wCAFi9AIDhoAEAXL0AgO8UAgBgvQCAZL0AgGi9AIBsvQCAcL0AgHS9AIB4vQCA4fAGAOE0BgDjTAAA4xgGAHy9AICAvQCAhL0AgIi9AICAPQAAgQkAAIIZAACMvQCAkL0AgIS8HQDvmAAA7zgHALMxAgDRAAAAh9gdAIZsHACYvQCAtikCALUhAgCcvQCAu80CALrNAgCgvQCApL0AgL/NAgC+zQIAvc0CALzNAgCyXQYAs2UGALANBgCxVQYAtn0GALedBQC0fQYAtXUGALqNBQC7zQUAuKUFALmFBQC+xQUAv8kFALzVBQC9zQUAqL0AgKy9AICwvQCAtL0AgLi9AIC8vQCAwL0AgMS9AICqtQYAq70GAKgBBwCpvQYAroEGAK+NBgCsmQYArZUGAKNxHQDIvQCAzL0AgNC9AIDUvQCApmkdAKVhHQDYvQCAq40dAKqNHQDcvQCA4L0AgK+NHQCujR0ArY0dAKyNHQDkvQCAs9UeAOi9AIDsvQCAts0eAPC9AID0vQCAtcUeALqhHgC7oR4A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s5EOAPDFAID0xQCAtqUOAPjFAID8xQCAta0OALrhDgC74Q4AAMYAgATGAIC+6Q4Av9UOALz1DgC96Q4Ao6UKAAjGAIAMxgCAEMYAgBTGAICmzQ0Apc0NABjGAICrbQwAqm0MABzGAIAgxgCArz0MAK49DACtVQwArFUMAKgJDgCpCQ4Aqh0OAKsVDgCsIQ4ArSEOAK4hDgCvIQ4AJMYAgCjGAIAsxgCAMMYAgDTGAIA4xgCAPMYAgEDGAIC4zQEAudUBALrdAQC71QEAvM0BAL1RAQC+UQEAv1EBALAhDgCxIQ4AsiUOALM5DgC0KQ4AtRUOALYdDgC39QEARMYAgEjGAIBMxgCAo5kNAFDGAIClpQ0Apq0NAL7cAgCE7AMAWMYAgKrpDQCr6Q0ArP0NAK3hDQCu4Q0Ar90NAIBFAACBTQAAglkAAKNFAwBcxgCApUEDAKZBAwBgxgCAhsAEAIcAAwCqLQMAqyUDAKw9AwCtJQMAriUDAK8VAwCoWQIAqYUDAKqBAwCrgQMArIUDAK2NAwCusQMAr7EDAGTGAIBoxgCAbMYAgHDGAIB0xgCAeMYAgHzGAICAxgCAuGUDALltAwC6ZQMAu30DALxlAwC9bQMAvmUDAL/dAACwpQMAsa0DALKlAwCzvQMAtK0DALWdAwC2lQMAt10DALMJAgCExgCAiMYAgIzGAICQxgCAtg0CALUNAgCUxgCAu2kCALphAgCYxgCAnMYAgL9ZAgC+aQIAvWkCALxxAgCgxgCApMYAgKjGAICsxgCA4aABALDGAIDjaAMAtMYAgIEVAACAFQAA74wDAIIVAAC4xgCAvMYAgMDGAIC+cAUA4RgOAOGUDwDjOA8A49QPAISUAgDIxgCAzMYAgNDGAIDUxgCA2MYAgNzGAIDgxgCA5MYAgOjGAIDv7AEA7/gPAIZgBACHBAUAs5UBAITMBQC1dQEA7MYAgPDGAIC2dQEA9MYAgPjGAIC7UQEAulkBAL31AAC8SQEAv/UAAL71AACoJQYAqVUGAKpVBgCrrQYArLUGAK29BgCutQYAr60GAMTGAID8xgCAAMcAgATHAIAIxwCADMcAgBDHAIAUxwCAuGkHALlpBwC6CQcAuwkHALwZBwC9GQcAvg0HAL8BBwCw1QYAsd0GALLVBgCzaQcAtHkHALV5BwC2aQcAt2EHAKPdBgAYxwCAHMcAgCDHAIAkxwCApj0GAKU9BgAoxwCAqxkGAKoRBgAsxwCAMMcAgK+9BwCuvQcArb0HAKwBBgCAXQAAgW0AAIJlAACzUQcAvtgDALVxBwC2cQcANMcAgIbgAACHFAMAul0HALs5BwC8KQcAvRUHAL4dBwC/2QAAqJUGAKmdBgCqlQYAq60GAKy1BgCtvQYArrUGAK+tBgA4xwCAPMcAgEDHAIBExwCASMcAgEzHAIBQxwCAVMcAgLhxAQC5cQEAunEBALtxAQC81QEAvd0BAL7VAQC/zQEAsNUGALGxBgCysQYAs40GALSVBgC1UQEAtlEBALdRAQBYxwCAoxkGAFzHAIBgxwCApjkGAFTGAIBkxwCApTkGAKoVBgCrcQYAaMcAgGzHAICuVQYAr5EBAKxhBgCtXQYAcMcAgHTHAIB4xwCAfMcAgIDHAICExwCAiMcAgIzHAICQxwCAlMcAgJjHAICcxwCAgBkAAIEZAACCBQAAoMcAgISAAgC+gAMAhwwDAIasHADhaAYAqMcAgOOYBwCsxwCAsMcAgLTHAIDvrAcAuMcAgLzHAIDAxwCAxMcAgMjHAIDMxwCA0McAgNTHAICzZQMA2McAgLVlAwC2bQMA3McAgODHAIDkxwCAuukDALvlAwC8/QMAve0DAL7RAwC/0QMA6McAgOzHAIDwxwCA9McAgPjHAID8xwCAAMgAgATIAICogQMAqYEDAKqBAwCrgQMArIEDAK2BAwCugQMAr4EDALBBAwCxTQMAskUDALNVAwC0eQMAtXkDALYZAwC3GQMAuCkDALkpAwC6OQMAuzkDALwpAwC9KQMAvhkDAL8ZAwCBGQAAgBEAAKMhAgCCLQAApSECAAjIAIAMyACApikCABDIAIAYyACAq6ECAKqtAgCtqQIArLkCAK+VAgCulQIAhEwCAL5IHQCHZB0AhuwcAONAAwAcyACA4aABACDIAIDvnAMAJMgAgCjIAIAsyACAMMgAgDTIAIA4yACAPMgAgEDIAIBEyACASMgAgEzIAIBQyACAVMgAgFjIAIDvtAEAhKgdAOF8BgBcyACA43AGAGDIAIBkyACAaMgAgGzIAICz4QEAcMgAgHTIAIB4yACAfMgAgLblAQC19QEAgMgAgLuhAQC62QEAvuQcAIjIAIC/rQEAvqUBAL2xAQC8uQEAqBUeAKkZHgCqKR4AqykeAKw9HgCtJR4Ari0eAK8lHgAUyACAgvkfAIH5HwCA4R8AhMgAgIzIAICGHAAAh7ADALjBHgC5wR4AusEeALvBHgC8wR4AvcEeAL7BHgC/wR4AsF0eALElHgCyLR4AsyUeALQhHgC1KR4AthkeALcZHgCjoR4AkMgAgJTIAICYyACAnMgAgKalHgCltR4AoMgAgKvhHgCqmR4ApMgAgKjIAICv7R4AruUeAK3xHgCs+R4ArMgAgLOZHwCwyACAtMgAgLa9HwC4yACAvMgAgLW1HwC6mR8Au5kfAMDIAIDEyACAvnkfAL95HwC8eR8AvXkfAKglHgCpUR4AqlUeAKtpHgCseR4ArXkeAK5pHgCvaR4AyMgAgMzIAIDQyACA1MgAgNjIAIDcyACA4MgAgOTIAIC42R4Aue0eALr5HgC7+R4AvOkeAL3pHgC+nR4Av5UeALAZHgCxGR4AsukeALPpHgC0+R4AtfkeALbpHgC36R4Ao90eAIIpAACBFQAAgB0AAOjIAICm+R4ApfEeAOzIAICr3R4Aqt0eAKTHAIDwyACArz0eAK49HgCtPR4ArD0eAITIAgCzQQEAvgwBAPjIAIC2QQEA/MgAgADJAIC1UQEAuk0BALslAQCGSAAAh1ABAL4lAQC/LQEAvDEBAL0xAQAEyQCACMkAgIQEAwC+gAQADMkAgO+oHwAQyQCAFMkAgL8oMQDjdB8AGMkAgOE4HgAcyQCAIMkAgCTJAIAoyQCALMkAgDDJAICjzQIANMkAgKXdAgA4yQCAPMkAgKbNAgBAyQCARMkAgKupAgCqwQIArb0CAKy9AgCvoQIArqkCAKm1AgCoaR0AqwECAKoJAgCtAQIArBkCAK8xAgCuAQIAhGwFAEjJAIBMyQCAUMkAgFTJAICCnQEAgZ0BAICdAQC55QMAuOUDALvlAwC65QMAveUDALzlAwC/5QMAvuUDALEhAgCwSQIAsyUCALIlAgC1KQIAtCECALcVAgC2FQIAqM0CAKnRAgCq0QIAqw0BAKwVAQCtBQEArgEBAK8BAQBYyQCAXMkAgGDJAIBoyQCAvvgEAGzJAIBwyQCAdMkAgLgVAQC5HQEAuikBALspAQC89QEAvf0BAL71AQC/7QEAsEkBALFVAQCyXQEAs1UBALRNAQC1NQEAtj0BALcxAQCGoAUAh8gFAHjJAIDvvAAA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t6EFALa9BQC1vQUAtL0FAKu9BgCqvQYAqb0GAKi9BgCvfQYArn0GAK19BgCsfQYAJNMAgCjTAIAs0wCAMNMAgDTTAIA40wCAPNMAgEDTAICo7R0AqS0eAKoxHgCrMR4ArJUeAK2dHgCulR4Ar40eAATTAIBE0wCASNMAgEzTAIBQ0wCAVNMAgFjTAIBc0wCAuKkeALmpHgC6XR8Au1EfALxxHwC9cR8AvnUfAL9pHwCw/R4Asc0eALLFHgCzrR4AtLkeALW5HgC2rR4At6UeALO5HgBg0wCAZNMAgGjTAICU0gCAth0eALUdHgBs0wCAuwkeALo5HgBw0wCAhOADAL99HgC+fR4AvXkeALwRHgCCaQAAo/0eAIBFAACBUQAAplkeAL6cAwB00wCApVkeAKp9HgCrTR4AhkgAAIdsAACuOR4ArzkeAKxVHgCtPR4AqF0eAKltHgCqZR4Aq30eAKxlHgCtbR4ArmUeAK/9HgB40wCAfNMAgIDTAICE0wCAiNMAgIzTAICQ0wCAlNMAgLhpAQC5aQEAunkBALt5AQC8aQEAvWkBAL7dAQC/1QEAsIUeALGNHgCyhR4As50eALSFHgC1jR4AtoUeALdZAQCz7R4AmNMAgJzTAICg0wCApNMAgLbtHgC17R4AqNMAgLtJHgC6QR4ArNMAgLDTAIC/SR4AvkEeAL1JHgC8UR4AtNMAgKOpHgC40wCAvNMAgKapHgDA0wCAxNMAgKWpHgCqBR4Aqw0eAMjTAIDM0wCArgUeAK8NHgCsFR4ArQ0eAKghAwCpIQMAqiEDAKshAwCsIQMArSEDAK4hAwCvIQMA0NMAgNTTAIDY0wCAvmACANzTAIDg0wCA6NMAgOzTAIC4iQMAuYkDALqdAwC7lQMAvLkDAL25AwC+eQAAv3kAALDlAwCx7QMAsuUDALP9AwC07QMAtd0DALbVAwC3vQMAgKkAAIG1AACCvQAAs6UDAPDTAIC1pQMAtq0DAPTTAICE4AIA+NMAgLotAwC7JQMAvD0DAL0lAwC+JQMAvxUDAKPpAwD80wCAhmgEAIeAAwAA1ACApuEDAKXpAwAE1ACAq2kDAKphAwAI1ACADNQAgK9ZAwCuaQMArWkDAKxxAwAQ1ACAFNQAgBjUAIAc1ACAINQAgOE8HwAk1ACA40AeACjUAIAs1ACAMNQAgO+MHgA01ACAONQAgDzUAIBA1ACARNQAgIIlAACBEQAAgB0AAEjUAIDj5AMATNQAgOGsAQBQ1ACA77ADAIRkAgC+YAUAhtAEAIdEBQBY1ACAXNQAgGDUAIBk1ACAaNQAgGzUAIBw1ACAdNQAgHjUAIDvsAEAhKQFAOHcHgB81ACA4xABAIDUAICE1ACAiNQAgIzUAICzUQEAkNQAgJTUAICY1ACAnNQAgLYRAQC1fQEAoNQAgLsNAQC6DQEApNQAgKjUAIC//QAAvv0AAL39AAC8/QAAqDkGAKk5BgCqmQYAq5EGAKy1BgCt0QYArskGAK/BBgBU1ACArNQAgLDUAIC01ACAgA0AAIGxAACCsQAAuNQAgLhhBwC5YQcAumEHALt9BwC8ZQcAvW0HAL5lBwC/HQcAsIkGALGJBgCyaQcAs2kHALR5BwC1eQcAtmkHALdlBwCjEQYAvNQAgMDUAIC+gAMAxNQAgKZRBgClPQYAyNQAgKtNBgCqTQYAhggAAId8AwCvvQcArr0HAK29BwCsvQcAzNQAgNDUAICzSQcA1NQAgLVZBwDY1ACA3NQAgLZRBwDg1ACA5NMAgLtBBwC6dQcAvUUHALxFBwC/RQcAvkUHAKh5BgCpeQYAqokGAKuJBgCsmQYArZkGAK6JBgCviQYA5NQAgOjUAIDs1ACA8NQAgPTUAID41ACA/NQAgADVAIC4jQYAuZUGALqVBgC7pQYAvL0GAL1xAQC+cQEAv3EBALD5BgCxzQYAstkGALPZBgC0yQYAtckGALa9BgC3tQYAowEGAATVAIAI1QCADNUAgBDVAICmGQYApREGABTVAICrCQYAqj0GABjVAIAc1QCArw0GAK4NBgCtDQYArA0GACDVAIAk1QCAKNUAgCzVAICAGQAAgRkAAIIFAAAw1QCAhKwBAL6sAQCH6AAAhkwPADjVAIA81QCAQNUAgETVAIConQIAqcUCAKrNAgCrwQIArMUCAK3NAgCu+QIArz0DAEjVAIBM1QCAUNUAgFTVAIC+PAwAWNUAgFzVAIBg1QCAuMkDALnJAwC62QMAu9EDALz5AwC9+QMAvpkDAL+ZAwCwRQMAsU0DALJFAwCzXQMAtEUDALVNAwC2RQMAt/kDALNFAgBk1QCAaNUAgGzVAIBw1QCAtk0CALVNAgB01QCAu4kDALqBAwB41QCAfNUAgL+JAwC+gQMAvYkDALyRAwCA1QCAowECAITVAICI1QCApgkCAIzVAICQ1QCApQkCAKrFAwCrzQMAlNUAgJjVAICuxQMAr80DAKzVAwCtzQMAgO0BAIEVAACCEQAAhAACAJzVAIDhpAEAoNUAgOPsAACo1QCArNUAgLDVAIDvMAAAtNUAgLjVAIC81QCAwNUAgIbgDACH9AIAxNUAgMjVAIDM1QCA0NUAgO/MBgDU1QCA4bAHANjVAIDjEAYA3NUAgODVAIDk1QCA6NUAgOzVAIDw1QCA9NUAgPjVAID81QCAANYAgATWAIAI1gCA7+gBAIUYDwDhzAYADNYAgOMcBgCAKQAAgR0AAIIFAAAQ1gCAszkCAITMDQCGaA8Ah/wMAOHQ0gO28QEAtfkBABjWAIC72QEAutEBAL7kDAAc1gCAv30BAL59AQC9fQEAvMEBAKjxDQCp8Q0AqvENAKvxDQCsMQ4ArTEOAK4xDgCvMQ4ApNUAgBTWAIAg1gCAJNYAgCjWAIAs1gCAMNYAgDTWAIC46Q4AuekOALqJDgC7hQ4AvJ0OAL2BDgC+gQ4Av7UOALBVDgCxXQ4AslUOALPpDgC0+Q4AtfkOALbpDgC34Q4Ao3kNADjWAIA81gCAQNYAgETWAICmsQ4ApbkOAEjWAICrmQ4AqpEOAEzWAIBQ1gCArz0OAK49DgCtPQ4ArIEOAFTWAICz7Q8AWNYAgFzWAIC26Q8AYNYAgGTWAIC16Q8Auq0PALu1DwA01QCAaNYAgL6VDwC/mQ8AvK0PAL2hDwCoIQ4AqSEOAKohDgCrPQ4ArCUOAK0tDgCuJQ4Ar1UOAGzWAIBw1gCAdNYAgHjWAICAHQAAgQkAAIK9AAB81gCAuDkOALk5DgC6yQ4Au8kOALzZDgC92Q4AvskOAL/JDgCwLQ4AsTUOALI9DgCzMQ4AtBUOALUZDgC2CQ4AtwkOAKOpDgCA1gCAhIACAL6AAQCFAAQApq0OAKWtDgCI1gCAq/EOAKrpDgCGKAcAhxgAAK/dDgCu0Q4AreUOAKzpDgCM1gCAs+0BAJDWAICU1gCAtuUBAJjWAICc1gCAte0BALplAQC7bQEAoNYAgKTWAIC+bQEAv10BALx1AQC9bQEAqN0NAKnpDQCqIQIAqyECAKwhAgCtIQIAriECAK8hAgCo1gCArNYAgLDWAIC01gCAohECAKMRAgCgqQ4AodUCALiJAgC5iQIAup0CALuVAgC8vQIAvXUDAL59AwC/dQMAsOUCALHtAgCy5QIAs/0CALTtAgC13QIAttUCALe9AgCjqQIAj8UaALjWAIC81gCAwNYAgKahAgClqQIAxNYAgKspAgCqIQIAyNYAgMzWAICvGQIArikCAK0pAgCsMQIAniUOAJ/lDgCc6QoAnRUKAJpFFgCbRQoAmFkWAJlRFgCWcRIAl4ETAJRVEgCV7RIAktEeAJPZHgCQtRoAkVUeAISpHwCFJR8AhiUfAIexEwDQ1gCA1NYAgIJZGwCDURsAjEUSAI2lFwCOpRcAj7kXAIA5+wHY1gCAijkTAIutEwCUmQsAlaEPAJZpDwCX3Q8A3NYAgO+cDwCSyQsAk30LAJxFAwDjeA4A4NYAgOGYDADk1gCAhHgCAJqRAwCbXQMA4QQAAL6IBQDj3OoD6NYAgOzWAIDw1gCA7+wAAO+MDgDhcA4A4fwOAOMwAADjeA4AgSEAAIA5AADvtO0DgikAALMJAgD41gCAhmgEAIcsBQD81gCAtg0CALUNAgAA1wCAu8UBALrFAQAE1wCACNcAgL99AQC+fQEAvdUBALzVAQCE1gCA9NYAgAzXAIAQ1wCAFNcAgBjXAIAc1wCAINcAgKi9BQCp5QUAquEFAKvhBQCs5QUAre0FAK7RBQCv0QUAsGEGALFhBgCyYQYAs2EGALTZBgC12QYAtskGALfBBgC4yQYAuckGALp5BwC7eQcAvEUHAL0lBwC+EQcAvw0HAKNJBQAk1wCAKNcAgCzXAIAw1wCApk0FAKVNBQA01wCAq4UGAKqFBgA41wCAPNcAgK89BgCuPQYArZUGAKyVBgBA1wCARNcAgEjXAIBM1wCAUNcAgFTXAIBY1wCAXNcAgIA5AACBOQAAggUAAGDXAIC+uAMAhLgDAGjXAIBs1wCAqMUGAKnVBgCq1QYAq+UGAKz9BgCtHQEArhUBAK8NAQBk1wCAcNcAgIaIAQCHHAEAdNcAgHjXAIB81wCAgNcAgLjpAQC56QEAuokBALuJAQC8mQEAvZkBAL6JAQC/iQEAsHUBALF9AQCydQEAs+kBALT5AQC1+QEAtukBALfhAQCzXQYAhNcAgIjXAICM1wCAhLwBALadAQC1dQYAkNcAgLu5AQC6sQEAlNcAgJjXAIC/PQEAvj0BAL09AQC8oQEA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gNwAgLYVAgC1dQIAhNwAgLs5AgC6MQIAiNwAgIzcAIC/2QEAvtEBAL0VAgC8FQIAo50FADTcAICQ3ACAlNwAgJjcAICm1QUApbUFAJzcAICr+QUAqvEFAKDcAICk3ACArxkGAK4RBgCt1QUArNUFAIBRAACBWQAAgmEAALOVBgCo3ACAtXEHALZxBwCs3ACAhkADAIdUAwC67QcAu+UHALzlBwC97QcAvtEHAL/NBwCw3ACAtNwAgLjcAIC83ACAwNwAgMTcAIDvQAQAyNwAgOEwBwDM3ACA45QEANDcAIDU3ACA2NwAgNzcAIDg3ACAoxkGAOTcAIDo3ACA7NwAgPDcAICm/QcApf0HAPTcAICraQcAqmEHAPjcAID83ACAr0EHAK5dBwCtYQcArGkHAKjNBwCp0QcAqtEHAKstBgCsNQYArT0GAK41BgCvnQYAAN0AgATdAIAI3QCADN0AgIAZAACBGQAAggUAABDdAIC4iQYAuYkGALqZBgC7kQYAvLkGAL25BgC+UQEAv1EBALDlBgCx7QYAsv0GALP1BgC02QYAtcUGALbBBgC3uQYAqNEBAKnZAQCqCQEAqwkBAKwZAQCtGQEArgkBAK8JAQCEYAEAvnwBAIeoAACGjAEAGN0AgBzdAIAg3QCAJN0AgLgJAQC5CQEAuhkBALsRAQC8OQEAvTkBAL75AAC/+QAAsH0BALFBAQCyRQEAs10BALRFAQC1TQEAtkUBALc5AQAo3QCALN0AgDDdAICzjQIANN0AgLWdAgC2lQIAON0AgDzdAIBA3QCAurUCALuJAgC8nQIAvYUCAL6NAgC/hQIAps0CAETdAIBI3QCApcUCAEzdAICj1QIAUN0AgFTdAICu1QIAr90CAKzFAgCt3QIAqu0CAKvRAgCE9AMAWN0AgKgxAwCpMQMAqjEDAKsxAwCskQAArZEAAK6RAACvjQAAXN0AgGDdAIBk3QCAaN0AgGzdAIBw3QCAdN0AgHjdAIC4vQAAuWUAALptAAC7ZQAAvH0AAL1lAAC+bQAAv2UAALD9AACxxQAAss0AALOpAAC0uQAAtaUAALahAAC3oQAAgL0BAIEJAACCGQAAfN0AgIDdAIC+WAIAhxQdAIacHQCEbB0AxNsAgIjdAICM3QCAvrwcAJDdAICU3QCAmN0AgLP5AgCc3QCAoN0AgKTdAICo3QCAtlEBALVZAQC+3B8Au0EBALp5AQCs3QCAsN0AgL8hAQC+PQEAvT0BALxZAQDhcAcAtN0AgOMIBgC43QCA78wAALzdAIDA3QCAxN0AgOMQAADI3QCA4dABAMzdAICGkBwAh/QcAO/gBgDQ3QCAo3kCANTdAIDY3QCA3N0AgODdAICm0QEApdkBAOTdAICrwQEAqvkBAOjdAIDs3QCAr6EBAK69AQCtvQEArNkBAITdAICCFQAAgeUfAIDlHwDw3QCA9N0AgPjdAID83QCAqAkfAKkJHwCqHR8AqxUfAKwNHwCtcR8ArnEfAK9xHwCwER8AsS0fALIlHwCzyR8AtN0fALXBHwC2wR8At8EfALjFHwC5yR8AutUfALupHwC8uR8AvbkfAL6pHwC/oR8As7UfAADeAIAE3gCACN4AgAzeAIC20R8AtaUfABDeAIC7yR8AuvUfABTeAIAY3gCAvyUfAL45HwC9PR8AvNEfABzeAIAg3gCAJN4AgCjeAIAs3gCA4WAfADDeAIDjtBwANN4AgDjeAIA83gCA7wAdAEDeAIBE3gCASN4AgEzeAICjNR4AUN4AgFTeAIBY3gCAXN4AgKZRHgClJR4AYN4AgKtJHgCqdR4AhKgCAGTeAICvpR4ArrkeAK29HgCsUR4AgE0AAIFVAACCVQAAs8kBAGjeAIC12QEAtskBAGzeAICGoAAAhwQBALrFAQC7rQEAvLUBAL29AQC+tQEAv60BAKiZAQCpmQEAqg0BAKsFAQCsHQEArQUBAK4FAQCvNQEAcN4AgHTeAIB43gCAfN4AgIDeAICE3gCAiN4AgIzeAIC4JQEAuS0BALo5AQC7OQEAvCkBAL0pAQC+3QAAv9UAALBNAQCxJQEAsi0BALMlAQC0PQEAtSUBALYhAQC3HQEAkN4AgJTeAICY3gCAo4kCAJzeAIClmQIApokCAKDeAICk3gCAqN4AgKqFAgCr7QIArPUCAK39AgCu9QIAr+0CAKzeAICw3gCAtN4AgIRAAgC43gCAvN4AgMDeAIDE3gCAgA0AAIEVAACCHQAAyN4AgMzeAIDQ3gCAh7QDAIbcBAC+zAMA2N4AgNzeAIDg3gCA7+gCAOTeAIDo3gCA7N4AgOP8AgDw3gCA4dABAPTeAID43gCA/N4AgADfAIAE3wCAs2EDAAjfAIAM3wCAEN8AgBTfAIC2eQMAtXEDABjfAIC7XQMAul0DABzfAIAg3wCAv+EAAL79AAC9/QAAvP0AALC5AgCxuQIAsgkBALMJAQC0GQEAtQUBALYFAQC3PQEAuAUBALllAQC6bQEAu2UBALxhAQC9YQEAvmEBAL9hAQCFXAcAJN8AgCjfAIAs3wCAFN0AgDDfAIA03wCAON8AgKgxAgCpOQIAqskCAKvJAgCs2QIArdkCAK7JAgCvyQIAhMwFAOGAHgA83wCA47weAOE4HgBA3wCA46AAAL4QBABI3wCATN8AgO8MHgBQ3wCAVN8AgFjfAIBc3wCA73QeAKNhAgCCUQAAgUEAAICRAABg3wCApnkCAKVxAgBk3wCAq10CAKpdAgCGyAQAhzwFAK/hAQCu/QEArf0BAKz9AQCohQYAqY0GAKqFBgCrmQYArIkGAK2JBgCuvQYAr7EGAETfAIBo3wCAbN8AgHDfAIB03wCAeN8AgHzfAICA3wCAuJ0GALmtBgC6pQYAuwkHALwZBwC9GQcAvg0HAL8FBwCw0QYAsdEGALLRBgCz0QYAtLUGALW9BgC2tQYAt60GALMNBgCE3wCAiN8AgIzfAICQ3wCAtgkGALUBBgCU3wCAuxUGALoVBgCY3wCAnN8AgL95BgC+cQYAvQUGALwFBgCg3wCA4aAEAKTfAIDjXAUAgA0AAIE1AACCPQAAqN8AgKzfAICw3wCAhGADAL5sAAC/8AEAhZAAALTfAIDvmAUAo40HAIQIAACGAAwAh4wAALjfAICmiQcApYEHALzfAICrlQcAqpUHAMDfAIDE3wCAr/kHAK7xBwCthQcArIUHAMjfAICz6QYAzN8AgNDfAIC26QYA1N8AgNjfAIC16QYAukUBALtNAQDc3wCA4N8AgL5FAQC/TQEAvFUBAL1NAQCoIQYAqSEGAKolBgCrPQYArCUGAK0tBgCuSQYAr0EGAOTfAIDo3wCA7N8AgPDfAID03wCA+N8AgPzfAIAA4ACAuEkBALlJAQC6WQEAu1EBALx5AQC9eQEAvhkBAL8VAQCwxQEAsc0BALLFAQCz3QEAtMUBALXNAQC2xQEAt3kBAATgAIAI4ACADOAAgKOhBQAQ4ACApaEFAKahBQAU4ACAjyHqAxjgAICqDQIAqwUCAKwdAgCtBQIArg0CAK8FAgCX7RIAlmUSAJVFEQCUnRYAk3EWAJJVFQCReesDkFnqA59hBgCeNQUAnUUaAJxpGgCbVRkAmkUeAJlZHgCYRR0A4WAAABzgAIDjTD4AIOAAgKOxAgCi1QEAobUHAKCJBgCxATgAsAk+ALOVOgCyjToAtbUmALQBJADvaDoAvjAMAKnJNgCowTYAqwEwAKrhNwCtzTMArPUyAK/5PgCuATwAoRkCACjgAICjbQ4Aom0OAKX1CgCkAQgAp4ULAKaZCgCGAA0Ah0QNAIIJ6wODCesDhDHqA4UVFACGORcAh80XAISgDQAs4ACAiiUQAIsNEwCMnRMAjQ0cAI4ZHwCPDR8A1N4AgO8AAwCSbRgAk0kbAJR9GwCVBQQAllkHAJdJBwAw4ACANOAAgJpFBgCbLQAAnFEDAONgAAA44ACA4WwAAIClAQCBAQEAggUBAL4ADAA84ACAQOAAgETgAIDviAEASOAAgOFUBgBM4ACA41QBAFDgAIBU4ACAWOAAgFzgAICz6QIAYOAAgGTgAIBo4ACAbOAAgLadAgC1mQIAcOAAgLuJAgC6vQIAdOAAgHjgAIC/WQIAvlECAL1ZAgC8kQIAoykNAHzgAICA4ACAhOAAgIjgAICmXQ0ApVkNAIzgAICrSQ0Aqn0NAJDgAICY4ACAr5kNAK6RDQCtmQ0ArFENAIBRAACBWQAAgmEAALMtDwCc4ACAtS0PALbJDwCg4ACAhkADAIcIAwC6yQ8Au8UPALzBDwC9wQ8AvsEPAL/BDwAk4ACAlOAAgKTgAICo4ACArOAAgLDgAIC04ACAuOAAgKhFDgCpgQ8AqskPAKvJDwCsyQ8ArSUPAK4tDwCvJQ8AsGEPALFtDwCyeQ8As3kPALRpDwC1aQ8Ath0PALcVDwC4LQ8AuTUPALo1DwC7BQ8AvB0PAL3xAAC+8QAAv/EAAKNhDgC84ACAhMQBAMDgAIDE4ACApoUOAKVhDgDI4ACAq4kOAKqFDgDM4ACA0OAAgK+NDgCujQ4ArY0OAKyNDgDU4ACA2OAAgNzgAIDg4ACA5OAAgOjgAIDs4ACA8OAAgPTgAICCHQAAgR0AAIAdAAD44ACA/OAAgADhAIC+tAEAqK0BAKnVAQCq1QEAqwUBAKwdAQCtBQEArg0BAK8FAQCGgAEAhxgBAAjhAIAM4QCAEOEAgBThAIAY4QCAHOEAgLiFAAC5jQAAuoUAALudAAC8hQAAvY0AAL6FAAC/vQAAsH0BALHhAACy5QAAs/0AALTtAAC13QAAttUAALe9AACzXQIAIOEAgCThAIAo4QCALOEAgLaFAgC1lQIAMOEAgLslAwC6uQIANOEAgDjhAIC/GQMAvikDAL0pAwC8MQMAvswEAKMZAgA84QCAQOEAgKbBAgBE4QCASOEAgKXRAgCq/QIAq2EDAEzhAIBQ4QCArm0DAK9dAwCsdQMArW0DAKgpAwCpKQMAqjkDAKs5AwCsKQMArSkDAK6dAACvlQAAVOEAgFjhAIBc4QCAYOEAgGThAICCqQEAga0BAICtAQC4mQAAua0AALqlAAC7bQAAvHUAAL19AAC+dQAAv20AALDtAACx9QAAsvUAALPFAAC03QAAtb0AALa1AAC3qQAA4XgBAOEcDgDjEAAA4zwOAGjhAIBs4QCAvhQEAHDhAICErAIAeOEAgId4BQCGDAUAfOEAgIDhAIDvvAAA70gOALPxAgCE4QCAiOEAgIzhAICQ4QCAtukCALXhAgCU4QCAu3EBALppAQCY4QCAhKAEAL85AQC+WQEAvVEBALxhAQCc4QCAhIwEAKDhAICEADgApOEAgKjhAICs4QCAsOEAgKqJDgCriQ4AqLkOAKmxDgCu/Q4Ar+EOAKz5DgCt9Q4Asq0OALNlDgCwkQ4AsaUOALZ9DgC3ZQ4AtH0OALV1DgC6XQ4Au+UNALhdDgC5VQ4AvuENAL/pDQC8/Q0AvfUNAKOxBQB04QCAtOEAgLjhAIC84QCApqkFAKWhBQDA4QCAqzEGAKopBgDE4QCAyOEAgK95BgCuGQYArREGAKwhBgDM4QCA0OEAgNThAIDY4QCAgB0AAIEJAACCOQAA3OEAgODhAIDk4QCAhsgAAIcMAwDo4QCA7OEAgPDhAID04QCAqKUHAKm1BwCqvQcAq8kHAKzZBwCt2QcArskHAK/BBwC+oAAA+OEAgPzhAIAA4gCABOIAgAjiAIAM4gCAEOIAgLjNAAC51QAAutUAALvlAAC8/QAAvZUAAL6dAAC/lQAAsIkHALFlBwCyYQcAs30HALRlBwC1bQcAtmUHALf1AACzNQYAFOIAgBjiAIAc4gCAIOIAgLZZBgC1UQYAJOIAgLuhBgC6TQYAKOIAgCziAIC/qQYAvqEGAL2pBgC8tQYAMOIAgDTiAIDv8AUAOOIAgDziAIBA4gCAROIAgEjiAICAPQAAgQkAAIIdAABM4gCA4cgGAFDiAIDjSAQAVOIAgKO1BgBY4gCAhigAAIdAAQBc4gCAptkGAKXRBgBg4gCAqyEGAKrNBgBk4gCAaOIAgK8pBgCuIQYArSkGAKw1BgBs4gCAs70BAHDiAIB04gCAtnkBAHjiAIB84gCAtXkBALpVAQC7XQEAgOIAgITiAIC++QAAv/kAALxFAQC9+QAAqHECAKlxAgCqcQIAq3ECAKy1AgCtvQIArrUCAK+tAgC+rDwAiOIAgIziAICQ4gCAlOIAgJjiAICc4gCAoOIAgLhpAwC5aQMAugkDALsJAwC8HQMAvQUDAL4NAwC/BQMAsNUCALHdAgCy1QIAs2kDALR5AwC1eQMAtmkDALdhAwCk4gCAqOIAgKziAICj9QIAsOIAgKUxAgCmMQIAtOIAgLjiAIC84gCAqh0CAKsVAgCsDQIArbEDAK6xAwCvsQMA7xgCAIIVAACBbQAAgG0AAMDiAIDI4gCAhvg8AIcYAwDM4gCA0OIAgNTiAIDY4gCA42wHAAThAIDhaAEA3OIAgKiFAgCplQIAqpUCAKulAgCsvQIArdUCAK7RAgCv0QIA4OIAgOTiAIDo4gCA7OIAgPDiAID04gCA+OIAgPziAIC4dQEAuX0BALp1AQC7zQEAvNUBAL3dAQC+yQEAv8EBALC1AgCxvQIAsoECALOBAgC0VQEAtV0BALZVAQC3TQEA4bQGAADjAIDj9AYABOMAgIQYPQAI4wCADOMAgBDjAIAU4wCAGOMAgBzjAIAg4wCAJOMAgCjjAIDvWAYALOMAgIF9AACAcQAAMOMAgIIFAAA44wCAPOMAgO+AAQC+VDwA4ZABAEDjAIDjfAYAROMAgEjjAIBM4wCAhtg8AIf0PACjnT0AxOIAgDTjAIBQ4wCAVOMAgKbVPQCltT0AWOMAgKv5PQCq8T0AXOMAgGDjAICvGT4ArhE+AK3VPQCs1T0AZOMAgLOhPgBo4wCAbOMAgLatPgBw4wCAdOMAgLWxPgC6ST8Au0k/AHjjAIB84wCAvkk/AL9JPwC8ST8AvUk/AKhVPgCpZT4Aqm0+AKtlPgCsfT4ArWk+AK65PwCvuT8AgOMAgITjAICI4wCAjOMAgJDjAICU4wCAmOMAgJzjAIC4VT8AuV0/ALpVPwC7bT8AvHU/AL19PwC+dT8Av20/ALDJPwCxyT8A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rjUCAK1VAgCsVQIAPOcAgEDnAIBE5wCASOcAgEznAIBQ5wCAVOcAgO/4AQC+bAQA4YAOAFjnAIDjFAEAXOcAgGDnAIBk5wCAaOcAgGznAIBw5wCAdOcAgLPdAQB45wCAtf0BALb1AQB85wCAgOcAgITnAIC6sQEAu4UBALydAQC9NQEAvj0BAL81AQCpBQYAqLkFAKsVBgCqHQYArT0GAKw9BgCvTQYArl0GACTnAICCHQAAgR0AAIAdAACI5wCAjOcAgJDnAICU5wCAuUEHALidBgC7QQcAukkHAL1FBwC8WQcAv0UHAL5FBwCxCQYAsD0GALOpBgCyAQYAtbkGALSxBgC3rQYAtrEGAKORBgCEjAIAhigAAIfAAwCY5wCAprkGAKWxBgCc5wCAq8kGAKr9BgCg5wCApOcAgK95BgCucQYArXkGAKzRBgCo5wCAs5kHAKznAICw5wCAtlEHALTnAIC45wCAtbEHALptBwC7dQcAvOcAgMDnAIC+WQcAv0UHALxtBwC9ZQcAxOcAgMjnAIDM5wCA0OcAgNTnAIDY5wCA3OcAgO+oBQDg5wCA4TQFAOTnAIDjdAUA6OcAgOznAIDw5wCA9OcAgKMdBgCCLQAAgRUAAIAdAAD45wCAptUGAKU1BgD85wCAq/EGAKrpBgAA6ACAhCgBAK/BBgCu3QYAreEGAKzpBgCoxQYAqdUGAKrVBgCr5QYArP0GAK0VBgCuHQYArxUGAL7sAQAI6ACAhggAAIcgAAAM6ACAEOgAgBToAIAY6ACAuH0GALkFBgC6DQYAuwUGALwBBgC9CQYAvjkGAL85BgCwbQYAsXUGALJ9BgCzdQYAtFkGALVFBgC2TQYAt0UGAKiRAgCpmQIAqqECAKuhAgCs0QIArd0CAK7VAgCvyQIAHOgAgCDoAIAk6ACAvyweACjoAIAs6ACAMOgAgDToAIC4VQMAuV0DALppAwC7ZQMAvGEDAL1hAwC+YQMAv2EDALC5AgCxjQIAsoUCALNtAwC0dQMAtX0DALZ1AwC3bQMAOOgAgDzoAICzIQIAQOgAgLVRAgCEiAMAROgAgLZVAgC05gCAvigcALtBAgC6dQIAvbEDALxZAgC/sQMAvrkDAKNpAgBI6ACATOgAgFDoAIBU6ACAph0CAKUZAgBY6ACAqwkCAKo9AgBc6ACAYOgAgK/5AwCu8QMA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hLkHAIW5BwCG2QcAh9kHAIjpBwCJ6QcAivkHAIv5BwCM6QcAjekHAI7RBwCP0QcAkLEHAJGxBwCSSQEAk0kBAJRZAQCVWQEAlkkBAJdJAQCYeQEAmXkBAJpJAQCbSQEAnFkBAJ1ZAQCeSQEAn0kBAKC5AQChuQEAoskBAKPJAQCk2QEApdkBAKbJAQCnyQEAqPkBAKn5AQCqyQEAq8kBAKzZAQCt2QEArskBAK/JAQCwuQEAsbkBALJJAQCzSQEAtFkBALVZAQC2SQEAt0kBALh5AQC5eQEAukkBALtJAQC8WQEAvVkBAL5JAQC/SQEA0jEAgNYxAIDaMQCAkjIAgNoyAIDmMgCA6jIAgO4yAIDyMgCA+jIAgP4yAIASMwCALjMAgDYzAIB2MwCAejMAgIIzAICGMwCAjjMAgJIzAIC2MwCAujMAgNYzAIDaMwCA3jMAgOIzAID2MwCAGjQAgB40AIAiNACARjQAgIY0AICKNACAqjQAgLo0AIDCNACA4jQAgAY1AIBKNQCAUjUAgGY1AIByNQCAejUAgII1AICGNQCAijUAgKI1AICmNQCAwjUAgMo1AIDSNQCA1jUAgOI1AIDqNQCA7jUAgPI1AID6NQCA/jUAgJ42AICyNgCAnoUMAOY2AIDqNgCA8jYAgIC5AwCBuQMAgskDAIPJAwCE2QMAhdkDAIbJAwCHyQMAiPkDAIn5AwCKyQMAi8kDAIzZAwCN2QMAjs0DAI/FAwCQvQMAkQEMAJJJDgCTSQ4AlFkOAJVZDgCWSQ4Al0kOAJh5DgCZeQ4AmkkOAJtJDgCcWQ4AnVkOAJ5JDgCfSQ4AoLkOAKG5DgCiyQ4Ao8kOAKTZDgCl2Q4ApskOAKfJDgCo+Q4AqfkOAKrJDgCryQ4ArNkOAK3ZDgCuyQ4Ar8kOALC5DgCxuQ4AskkOALNJDgC0WQ4AtVkOALZJDgC3SQ4AuHkOALl5DgC6SQ4Au0kOALxZDgC9WQ4AvkkOAL9JDgC8eQQAvXkEAL6JBAC/nQQAuHUEALl9BAC6aQQAu2kEALRxBAC1cQQAtnEEALdxBACwcQQAsXEEALJxBACzcQQArGkEAK1pBACucQQAr3EEAKhBBACpQQQAqkEEAKtBBACknQUApWEEAKZhBACnYQQAoJ0FAKGFBQCijQUAo4UFAJxdBQCdZQUAnm0FAJ9lBQCYXQUA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NAYAgEsGAIBoBgCAfwYAgJYGAIDdAwCA9gMAgA8EAIASBwCAQQgAgD4IAIA/BwCAOSQAgHIkAICjJACAyCQAgLkmAIDEJgCAyCYAgMwmAIDQJgCALygAgG4oAICWKACAmigAgL8oAIDHKACA4ygAgPUoAID5KACA/SgAgLrp0wAVKQCAMCkAgEspAIA9JACASiQAgFckAIBkJACAdiQAgIMkAICVJACApyQAgLckAIDMJACA1iQAgOQkAIDuJACA+yQAgAwlAIAWJQCAbyUAgHYlAIAkJQCAgBkDAIEZAwCCKQMAgykDAIQ5AwCFOQMAhikDAIcpAwCIGQMAiRkDAIppAwCLaQMAjHkDAI15AwCOaQMAj2kDAJAZAwCRGQMAkgEEAJMtAwCUNQMAlVUGAJZdBgCXVQYAmG0GAJl1BgCafQYAm3UGAJxtBgCdNQYAnj0GAJ81BgCgzQYAodUGAKLdBgCj1QYApPkDAKX5AwCm6QMAp+kDAKjZAwCp+QYAqikGAKspBgCsOQYArTkGAK7FAwCvPQMAsEUDALFNAwCyRQMAs10DALRFAwC1TQMAtkUDALd9AwC4SQMAuUkDALpZAwC7fQYAvGUGAL1tBgC+ZQYAgCUAgKkVDwCoAQ8Aq00PAKpNDwCtRQ8ArEUPAK+hDQCuqQ0AoXULAKBhCwCj7QsAoqkLAKXlCwCk5QsApzkPAKZZCAC5oQ0AuJkNALuhDQC6qQ0AvaENALy5DQAxJQCAvqkNALGhDQCw2Q0As6ENALKpDQC1oQ0AtLkNALehDQC2qQ0AOCUAgEglAIBbJQCAsiUAgLwlAICRJQCAoSUAgNAlAICB7Q0AgO0NAIP9DQCC/Q0Ahe0NAITtDQCH2Q0AhiEYAJlNDQCYTQ0Am1ENAJpdDQCdeQ0AnHUNAJ9pDQCecQ0AkYkNAJCBDQCTmQ0AkoENAJWJDQCUgQ0Al30NAJaBDQDgJACAICUAgI0lAIDMJQCA3iUAgAgmAIAtJgCAQiYAgPAlAID6JQCADCYAgBkmAIAxJgCATiYAgFgmAIB2JgCASiYAgGYmAIBuJgCAgCYAgIwmAICUJgCAoyYAgN4mAICcJgCAsiYAgKcmAIC9JgCA1CYAgOImAIABJwCAEScAgBsnAIBPJwCAkicAgOcnAIBPKQCAXSkAgGEpAIBlKQCA8CYAgC4nAIA+JwCASCcAgCMnAIBTJwCAYycAgH4nAIBwJwCAlicAgMInAIDJJwCApicAgNMnAIDdJwCAtCcAgBgoAIAKKACA6ycAgCUoAIDyJwCA/CcAgDMoAIBAKACASigAgFQoAIBeKACAcigAgH8oAICGKACAnigAgKUoAICyKACAyygAgNUoAIDnKACAASkAgA4pAIAZKQCAIykAgDQpAIA7KQCAUykAgMMDAIDmBACAhQUAgNgFAIATBgCAOQYAgFAGAIBtBgCAhAYAgJsGAIDjAwCA/AMAgBUEAIAoBACAOwQAgE4EAIBhBACAdAQAgIcEAICaBACAAAUAgA8FAIAeBQCALQUAgDwFAIBjCACAJAgAgMEGAID8BwCAHQkAgOMoEwAzCQCAKggAgC0IAIAxCACAJAcAgNwuAIDKMACA2S0AgLswAIBFMQCAJwkAgO/sEwAGCQCA3A0AgM8IAICDCACAMQcAgEwHAID8BgCACggAgJQIAIAqCQCACQkAgOANAIDsDQCA2wgAgJkIAIAVBwCAhggAgFUHAID/BgCApgcAgJEkAIDwDQCA4ggAgCcIAICcCACAWAgAgBUJAID0DQCA5QgAgBQIAICfCACA6AgAgBcIAIDJCACAoggAgOwIAIAbCACAzAgAgKYIAID3CACA/QgAgIgHAICKCACAWQcAgAMHAIA9CQCAQQkAgEkJAIA2CQCAGAkAgPgNAID0CACALQkAgAwJAIDkDQCA0ggAgI4IAIBdBwCAMAkAgA8JAIDoDQCA1QgAgJEIAIBgBwCArQgAgGMHAIDjSBIA4xQSAOP4EwDjuBMA4+wSAOOgEgDjbBIA43gSAO/ADQDv2A0A73QSAO9QEgDvqBIA79wSAO8oEwDvIBMA6QcAgMwGAIAOCACAEQgAgNgGAIDUBgCAIQgAgAcHAIBnCACADAcAgHYIAIA0BwCANwcAgKoIAIC2CACAuQgAgOPYEADjoBAA46AQAON0EQDjNBAA4wgQAOPkEADj9BAA77wQAO/gEADvzBAA7zgQAO8QEADvcBAA73AQAO9MEADjhBMA4+gTAOMwEADjEBAA42ATAONAEwDjpBMA47QTAO/IEwDvtBMA75gTAO98EwDvXBMA70wTAO8UEwDv6BAAgO08AIH1PACC/TwAg/U8AITtPACFFT0Ahh09AIcVPQCILT0AiTU9AIo9PQCLNT0AjC09AI0VPQCOHT0AjxU9AJBtPQCRdT0Akn09AJN1PQCUbT0AlRU9AJYdPQCXFT0AmC09AJk1PQCaPT0AmzU9AJwtPQCdFT0Anh09AJ8VPQCg7T0AofU9AKL9PQCj9T0ApO09AKUVPQCmHT0ApxU9AKgtPQCpNT0Aqj09AKs1PQCsLT0ArRU9AK4dPQCvFT0AsG09ALF1PQCyfT0As3U9ALRtPQC1FT0AthE9ALcRPQC4MT0AuTE9ALoxPQC7MT0AvBE9AL0RPQC+ET0AvxE9AIDxPACB/TwAgvU8AIMNPwCEFT8AhR0/AIYVPwCHDT8AiDU/AIk9PwCKNT8Aiw0/AIwVPwCNHT8AjhU/AI8NPwCQdT8AkX0/AJJ1PwCTDT8AlBU/AJUZPwCWCT8Alwk/AJg5PwCZOT8Amgk/AJsJPwCcGT8AnRk/AJ4JPwCfCT8AoPk/AKH5PwCiCT8Aowk/AKQZPwClGT8Apgk/AKcJPwCoOT8AqTk/AKoJPwCrCT8ArBk/AK0ZPwCuCT8Arwk/ALB5PwCxeT8Asgk/ALMJPwC0GT8AtRk/ALYJPwC3CT8AuDk/ALk5PwC6CT8Auwk/ALwZPwC9GT8Avgk/AL8JPwCA+TwAgfk8AIJJPQCDST0AhFk9AIVZPQCGST0Ah0k9AIh5PQCJeT0Aikk9AItJPQCMWT0AjVk9AI5JPQCPST0AkDk9AJE5PQCSAQQAk00GAJRVBgCVXQYAllUGAJdNBgCYdQYAmX0GAJp1BgCbTQYAnFUGAJ1dBgCeVQYAn00GAKC1BgChvQYAorUGAKPNBgCk1QYApd0GAKbVBgCnzQYAqPUGAKn9BgCq9QYAq80GAKzVBgCt3QYArtUGAK/NBgCwtQYAsb0GALK1BgCzTQYAtFUGALVdBgC2VQYAt00GALh1BgC5fQYAunUGALtNBgC8VQYAvV0GAL5VBgC/TQYArH0/AK2lPwCurT8Ar6U/AKh9PwCpZT8Aqm0/AKtlPwCkHT8ApUU/AKZNPwCnRT8AoB0/AKEFPwCiDT8AowU/ALydPwC9pT8Avq0/AL+lPwC4nT8AuYU/ALqNPwC7hT8AtN0/ALWlPwC2rT8At6U/ALDdPwCxxT8Ass0/ALPFPwCMZToAjW06AI5lOgCPfToAiEU6AIlNOgCKRToAi306AIRlOgCFbToAhmU6AId9OgCABToA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ACDZjgAg2Y7ZkQAg2Y8AINmP2ZEAINmQACDZkNmRACDZkQAg2ZHZsAAg2ZIAIOOCmQAg44KaACEAISEAIT8AIgAjACQAJQAmACcAKAAoMSkAKDEwKQAoMTEpACgxMikAKDEzKQAoMTQpACgxNSkAKDE2KQAoMTcpACgxOCkAKDE5KQAoMikAKDIwKQAoMykAKDQpACg1KQAoNikAKDcpACg4KQAoOSkAKEEpAChCKQAoQykAKEQpAChFKQAoRikAKEcpAChIKQAoSSkAKEopAChLKQAoTCkAKE0pAChOKQAoTykAKFApAChRKQAoUikAKFMpAChUKQAoVSkAKFYpAChXKQAoWCkAKFkpAChaKQAoYSkAKGIpAChjKQAoZCkAKGUpAChmKQAoZykAKGgpAChpKQAoaikAKGspAChsKQAobSkAKG4pAChvKQAocCkAKHEpAChyKQAocykAKHQpACh1KQAodikAKHcpACh4KQAoeSkAKHopACjhhIApACjhhIIpACjhhIMpACjhhIUpACjhhIYpACjhhIcpACjhhIkpACjhhIspACjhhIwpACjhhI4pACjhhI8pACjhhJApACjhhJEpACjhhJIpACjkuIApACjkuIMpACjkuIkpACjkuZ0pACjkuowpACjkupQpACjku6MpACjkvIEpACjkvJEpACjlhaspACjlha0pACjlirQpACjljYEpACjljZQpACjlkI0pACjlkbwpACjlm5spACjlnJ8pACjlraYpACjml6UpACjmnIgpACjmnIkpACjmnKgpACjmoKopACjmsLQpACjngaspACjnibkpACjnm6MpACjnpL4pACjnpZ0pACjnpa0pACjoh6opACjoh7MpACjosqEpACjos4cpACjph5EpACjqsIApACjrgpgpACjri6QpACjrnbwpACjrp4gpACjrsJQpACjsgqwpACjslYQpACjsmKTsoIQpACjsmKTtm4QpACjsnpApACjso7wpACjssKgpACjsubQpACjtg4ApACjtjIwpACjtlZgpACkAKgArACwALQAuAC4uAC4uLgAvADAAMCwAMC4AMOKBhDMAMOeCuQAxADEsADEuADEwADEwLgAxMOaXpQAxMOaciAAxMOeCuQAxMQAxMS4AMTHml6UAMTHmnIgAMTHngrkAMTIAMTIuADEy5pelADEy5pyIADEy54K5ADEzADEzLgAxM+aXpQAxM+eCuQAxNAAxNC4AMTTml6UAMTTngrkAMTUAMTUuADE15pelADE154K5ADE2ADE2LgAxNuaXpQAxNueCuQAxNwAxNy4AMTfml6UAMTfngrkAMTgAMTguADE45pelADE454K5ADE5ADE5LgAxOeaXpQAxOeeCuQAx4oGEADHigYQxMAAx4oGEMgAx4oGEMwAx4oGENAAx4oGENQAx4oGENgAx4oGENwAx4oGEOAAx4oGEOQAx5pelADHmnIgAMeeCuQAyADIsADIuADIwADIwLgAyMOaXpQAyMOeCuQAyMQAyMeaXpQAyMeeCuQAyMgAyMuaXpQAyMueCuQAyMwAyM+aXpQAyM+eCuQAyNAAyNOaXpQAyNOeCuQAyNQAyNeaXpQAyNgAyNuaXpQAyNwAyN+aXpQAyOAAyOOaXpQAyOQAyOeaXpQAy4oGEMwAy4oGENQAy5pelADLmnIgAMueCuQAzADMsADMuADMwADMw5pelADMxADMx5pelADMyADMzADM0ADM1ADM2ADM3ADM4ADM5ADPigYQ0ADPigYQ1ADPigYQ4ADPml6UAM+aciAAz54K5ADQANCwANC4ANDAANDEANDIANDMANDQANDUANDYANDcANDgANDkANOKBhDUANOaXpQA05pyIADTngrkANQA1LAA1LgA1MAA14oGENgA14oGEOAA15pelADXmnIgANeeCuQA2ADYsADYuADbml6UANuaciAA254K5ADcANywANy4AN+KBhDgAN+aXpQA35pyIADfngrkAOAA4LAA4LgA45pelADjmnIgAOOeCuQA5ADksADkuADnml6UAOeaciAA554K5ADoAOjo9ADsAPAA9AD09AD09PQA+AD8APyEAPz8AQABBAEFVAEHiiJVtAEIAQnEAQwBDRABDby4AQ+KIlWtnAEQAREoARFoARHoARMW9AETFvgBFAEYARkFYAEcAR0IAR0h6AEdQYQBHeQBIAEhQAEhWAEhnAEh6AEkASUkASUlJAElKAElVAElWAElYAEoASwBLQgBLSwBLTQBMAExKAExURABMagBMwrcATQBNQgBNQwBNRABNSHoATVBhAE1WAE1XAE3OqQBOAE5KAE5qAE5vAE8AUABQSABQUE0AUFBWAFBSAFBURQBQYQBRAFIAUnMAUwBTRABTTQBTUwBTdgBUAFRFTABUSHoAVE0AVQBWAFZJAFZJSQBWSUlJAFbiiJVtAFcAV0MAV1oAV2IAWABYSQBYSUkAWQBaAFsAXABdAF4AXwBgAGEAYS5tLgBhL2MAYS9zAGHKvgBiAGJhcgBjAGMvbwBjL3UAY2FsAGNjAGNkAGNtAGNtMgBjbTMAZABkQgBkYQBkbABkbQBkbTIAZG0zAGR6AGTFvgBlAGVWAGVyZwBmAGZmAGZmaQBmZmwAZmkAZmwAZm0AZwBnYWwAaABoUGEAaGEAaQBpaQBpaWkAaWoAaW4AaXYAaXgAagBrAGtBAGtIegBrUGEAa1YAa1cAa2NhbABrZwBrbABrbQBrbTIAa20zAGt0AGvOqQBsAGxqAGxtAGxuAGxvZwBseABswrcAbQBtMgBtMwBtQQBtVgBtVwBtYgBtZwBtaWwAbWwAbW0AbW0yAG1tMwBtb2wAbXMAbeKIlXMAbeKIlXMyAG4AbkEAbkYAblYAblcAbmoAbm0AbnMAbwBvVgBwAHAubS4AcEEAcEYAcFYAcFcAcGMAcHMAcQByAHJhZAByYWTiiJVzAHJhZOKIlXMyAHMAc3IAc3QAdAB1AHYAdmkAdmlpAHZpaWkAdwB4AHhpAHhpaQB5AHoAewB8AH0AwqIAwqMAwqUAwqYAwqwAwrBDAMKwRgDCtwDDgADDgQDDggDDgwDDhADDhQDDhgDDhwDDiADDiQDDigDDiwDDjADDjQDDjgDDjwDDkQDDkgDDkwDDlADDlQDDlgDDmQDDmgDDmwDDnADDnQDDoADDoQDDogDDowDDpADDpQDDpwDDqADDqQDDqgDDqwDDrADDrQDDrgDDrwDDsADDsQDDsgDDswDDtADDtQDDtgDDuQDDugDDuwDDvADDvQDDvwDEgADEgQDEggDEgwDEhADEhQDEhgDEhwDEiADEiQDEigDEiwDEjADEjQDEjgDEjwDEkgDEkwDElADElQDElgDElwDEmADEmQDEmgDEmwDEnADEnQDEngDEnwDEoADEoQDEogDEowDEpADEpQDEpgDEpwDEqADEqQDEqgDEqwDErADErQDErgDErwDEsADEsQDEtADEtQDEtgDEtwDEuQDEugDEuwDEvADEvQDEvgDFgwDFhADFhQDFhgDFhwDFiADFiwDFjADFjQDFjgDFjwDFkADFkQDFkwDFlADFlQDFlgDFlwDFmADFmQDFmgDFmwDFnADFnQDFngDFnwDFoADFoQDFogDFowDFpADFpQDFqADFqQDFqgDFqwDFrADFrQDFrgDFrwDFsADFsQDFsgDFswDFtADFtQDFtgDFtwDFuADFuQDFugDFuwDFvADFvQDFvgDGjgDGkADGoADGoQDGqwDGrwDGsADHjQDHjgDHjwDHkADHkQDHkgDHkwDHlADHlQDHlgDHlwDHmADHmQDHmgDHmwDHnADHngDHnwDHoADHoQDHogDHowDHpgDHpwDHqADHqQDHqgDHqwDHrADHrQDHrgDHrwDHsADHtADHtQDHuADHuQDHugDHuwDHvADHvQDHvgDHvwDIgADIgQDIggDIgwDIhADIhQDIhgDIhwDIiADIiQDIigDIiwDIjADIjQDIjgDIjwDIkADIkQDIkgDIkwDIlADIlQDIlgDIlwDImADImQDImgDImwDIngDInwDIogDIpgDIpwDIqADIqQDIqgDIqwDIrADIrQDIrgDIrwDIsADIsQDIsgDIswDItwDJkADJkQDJkgDJlADJlQDJmQDJmwDJnADJnwDJoQDJowDJpQDJpgDJqADJqQDJqgDJqwDJrQDJrwDJsADJsQDJsgDJswDJtADJtQDJuADJuQDJuwDKgQDKggDKgwDKiQDKigDKiwDKjADKkADKkQDKkgDKlQDKnQDKnwDKuQDKvG4AzIAAzIEAzIjMgQDMkwDOhgDOiADOiQDOigDOjADOjgDOjwDOkADOkQDOkgDOkwDOlADOlQDOlgDOlwDOmADOmQDOmgDOmwDOnADOnQDOngDOnwDOoADOoQDOowDOpADOpQDOpgDOpwDOqADOqQDOqgDOqwDOrADOrQDOrgDOrwDOsADOsQDOsgDOswDOtADOtQDOtgDOtwDOuADOuQDOugDOuwDOvADOvEEAzrxGAM68VgDOvFcAzrxnAM68bADOvG0AzrxzAM69AM6+AM6/AM+AAM+BAM+CAM+DAM+EAM+FAM+GAM+HAM+IAM+JAM+KAM+LAM+MAM+NAM+OAM+cAM+dANCAANCBANCDANCHANCMANCNANCOANCZANC5ANC9ANGKANGMANGQANGRANGTANGXANGcANGdANGeANG2ANG3ANOBANOCANOQANORANOSANOTANOWANOXANOaANObANOcANOdANOeANOfANOiANOjANOkANOlANOmANOnANOqANOrANOsANOtANOuANOvANOwANOxANOyANOzANO0ANO1ANO4ANO5ANWl1oIA1bTVpQDVtNWrANW01a0A1bTVtgDVvtW2ANeQANeQ1rcA15DWuADXkNa8ANeQ15wA15EA15HWvADXkda/ANeSANeS1rwA15MA15PWvADXlADXlNa8ANeV1rkA15XWvADXlta8ANeY1rwA15nWtADXmda8ANea1rwA15sA15vWvADXm9a/ANecANec1rwA150A157WvADXoNa8ANeh1rwA16IA16PWvADXpNa8ANek1r8A16bWvADXp9a8ANeoANeo1rwA16nWvADXqda814EA16nWvNeCANep14EA16nXggDXqgDXqta8ANey1rcA2KEA2KIA2KMA2KQA2KUA2KYA2KbYpwDYptisANim2K0A2KbYrgDYptixANim2LIA2KbZhQDYptmGANim2YcA2KbZiADYptmJANim2YoA2KbbhgDYptuHANim24gA2KbbkADYptuVANinANin2YPYqNixANin2YTZhNmHANin2YsA2KfZtADYqADYqNisANio2K0A2KjYrdmKANio2K4A2KjYrtmKANio2LEA2KjYsgDYqNmFANio2YYA2KjZhwDYqNmJANio2YoA2KkA2KoA2KrYrADYqtis2YUA2KrYrNmJANiq2KzZigDYqtitANiq2K3YrADYqtit2YUA2KrYrgDYqtiu2YUA2KrYrtmJANiq2K7ZigDYqtixANiq2LIA2KrZhQDYqtmF2KwA2KrZhditANiq2YXYrgDYqtmF2YkA2KrZhdmKANiq2YYA2KrZhwDYqtmJANiq2YoA2KsA2KvYrADYq9ixANir2LIA2KvZhQDYq9mGANir2YcA2KvZiQDYq9mKANisANis2K0A2KzYrdmJANis2K3ZigDYrNmEINis2YTYp9mE2YcA2KzZhQDYrNmF2K0A2KzZhdmJANis2YXZigDYrNmJANis2YoA2K0A2K3YrADYrdis2YoA2K3ZhQDYrdmF2YkA2K3ZhdmKANit2YkA2K3ZigDYrgDYrtisANiu2K0A2K7ZhQDYrtmJANiu2YoA2K8A2LAA2LDZsADYsQDYsdiz2YjZhADYsdmwANix24zYp9mEANiyANizANiz2KwA2LPYrNitANiz2KzZ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AOGEjQDhhI4A4YSPAOGEkADhhJEA4YSSAOGElADhhJUA4YSaAOGEnADhhJ0A4YSeAOGEoADhhKEA4YSiAOGEowDhhKcA4YSpAOGEqwDhhKwA4YStAOGErgDhhK8A4YSyAOGEtgDhhYAA4YWHAOGFjADhhZcA4YWYAOGFmQDhhaAA4YWhAOGFogDhhaMA4YWkAOGFpQDhhaYA4YWnAOGFqADhhakA4YWqAOGFqwDhhawA4YWtAOGFrgDhha8A4YWwAOGFsQDhhbIA4YWzAOGFtADhhbUA4YaEAOGGhQDhhogA4YaRAOGGkgDhhpQA4YaeAOGGoQDhhqoA4YasAOGGrQDhhrAA4YaxAOGGsgDhhrMA4Ya0AOGGtQDhh4cA4YeIAOGHjADhh44A4YeTAOGHlwDhh5kA4YedAOGHnwDhh7EA4YeyAOGshgDhrIgA4ayKAOGsjADhrI4A4aySAOGsuwDhrL0A4a2AAOGtgQDhrYMA4bSCAOG0lgDhtJcA4bScAOG0nQDhtKUA4bW7AOG2hQDhuIAA4biBAOG4ggDhuIMA4biEAOG4hQDhuIYA4biHAOG4iADhuIkA4biKAOG4iwDhuIwA4biNAOG4jgDhuI8A4biQAOG4kQDhuJIA4biTAOG4lADhuJUA4biWAOG4lwDhuJgA4biZAOG4mgDhuJsA4bicAOG4nQDhuJ4A4bifAOG4oADhuKEA4biiAOG4owDhuKQA4bilAOG4pgDhuKcA4bioAOG4qQDhuKoA4birAOG4rADhuK0A4biuAOG4rwDhuLAA4bixAOG4sgDhuLMA4bi0AOG4tQDhuLYA4bi3AOG4uADhuLkA4bi6AOG4uwDhuLwA4bi9AOG4vgDhuL8A4bmAAOG5gQDhuYIA4bmDAOG5hADhuYUA4bmGAOG5hwDhuYgA4bmJAOG5igDhuYsA4bmMAOG5jQDhuY4A4bmPAOG5kADhuZEA4bmSAOG5kwDhuZQA4bmVAOG5lgDhuZcA4bmYAOG5mQDhuZoA4bmbAOG5nADhuZ0A4bmeAOG5nwDhuaAA4bmhAOG5ogDhuaMA4bmkAOG5pQDhuaYA4bmnAOG5qADhuakA4bmqAOG5qwDhuawA4bmtAOG5rgDhua8A4bmwAOG5sQDhubIA4bmzAOG5tADhubUA4bm2AOG5twDhubgA4bm5AOG5ugDhubsA4bm8AOG5vQDhub4A4bm/AOG6gADhuoEA4bqCAOG6gwDhuoQA4bqFAOG6hgDhuocA4bqIAOG6iQDhuooA4bqLAOG6jADhuo0A4bqOAOG6jwDhupAA4bqRAOG6kgDhupMA4bqUAOG6lQDhupYA4bqXAOG6mADhupkA4bqgAOG6oQDhuqIA4bqjAOG6pADhuqUA4bqmAOG6pwDhuqgA4bqpAOG6qgDhuqsA4bqsAOG6rQDhuq4A4bqvAOG6sADhurEA4bqyAOG6swDhurQA4bq1AOG6tgDhurcA4bq4AOG6uQDhuroA4bq7AOG6vADhur0A4bq+AOG6vwDhu4AA4buBAOG7ggDhu4MA4buEAOG7hQDhu4YA4buHAOG7iADhu4kA4buKAOG7iwDhu4wA4buNAOG7jgDhu48A4buQAOG7kQDhu5IA4buTAOG7lADhu5UA4buWAOG7lwDhu5gA4buZAOG7mgDhu5sA4bucAOG7nQDhu54A4bufAOG7oADhu6EA4buiAOG7owDhu6QA4bulAOG7pgDhu6cA4buoAOG7qQDhu6oA4burAOG7rADhu60A4buuAOG7rwDhu7AA4buxAOG7sgDhu7MA4bu0AOG7tQDhu7YA4bu3AOG7uADhu7kA4byAAOG8gQDhvIIA4byDAOG8hADhvIUA4byGAOG8hwDhvIgA4byJAOG8igDhvIsA4byMAOG8jQDhvI4A4byPAOG8kADhvJEA4bySAOG8kwDhvJQA4byVAOG8mADhvJkA4byaAOG8mwDhvJwA4bydAOG8oADhvKEA4byiAOG8owDhvKQA4bylAOG8pgDhvKcA4byoAOG8qQDhvKoA4byrAOG8rADhvK0A4byuAOG8rwDhvLAA4byxAOG8sgDhvLMA4by0AOG8tQDhvLYA4by3AOG8uADhvLkA4by6AOG8uwDhvLwA4by9AOG8vgDhvL8A4b2AAOG9gQDhvYIA4b2DAOG9hADhvYUA4b2IAOG9iQDhvYoA4b2LAOG9jADhvY0A4b2QAOG9kQDhvZIA4b2TAOG9lADhvZUA4b2WAOG9lwDhvZkA4b2bAOG9nQDhvZ8A4b2gAOG9oQDhvaIA4b2jAOG9pADhvaUA4b2mAOG9pwDhvagA4b2pAOG9qgDhvasA4b2sAOG9rQDhva4A4b2vAOG9sADhvbIA4b20AOG9tgDhvbgA4b26AOG9vADhvoAA4b6BAOG+ggDhvoMA4b6EAOG+hQDhvoYA4b6HAOG+iADhvokA4b6KAOG+iwDhvowA4b6NAOG+jgDhvo8A4b6QAOG+kQDhvpIA4b6TAOG+lADhvpUA4b6WAOG+lwDhvpgA4b6ZAOG+mgDhvpsA4b6cAOG+nQDhvp4A4b6fAOG+oADhvqEA4b6iAOG+owDhvqQA4b6lAOG+pgDhvqcA4b6oAOG+qQDhvqoA4b6rAOG+rADhvq0A4b6uAOG+rwDhvrAA4b6xAOG+sgDhvrMA4b60AOG+tgDhvrcA4b64AOG+uQDhvroA4b68AOG/ggDhv4MA4b+EAOG/hgDhv4cA4b+IAOG/igDhv4wA4b+QAOG/kQDhv5IA4b+WAOG/lwDhv5gA4b+ZAOG/mgDhv6AA4b+hAOG/ogDhv6QA4b+lAOG/pgDhv6cA4b+oAOG/qQDhv6oA4b+sAOG/sgDhv7MA4b+0AOG/tgDhv7cA4b+4AOG/ugDhv7wA4oCQAOKAkwDigJQA4oCy4oCyAOKAsuKAsuKAsgDigLLigLLigLLigLIA4oC14oC1AOKAteKAteKAtQDigqkA4oaQAOKGkQDihpIA4oaTAOKGmgDihpsA4oauAOKHjQDih44A4oePAOKIggDiiIQA4oiHAOKIiQDiiIwA4oiRAOKIkgDiiKQA4oimAOKIq+KIqwDiiKviiKviiKsA4oir4oir4oir4oirAOKIruKIrgDiiK7iiK7iiK4A4omBAOKJhADiiYcA4omJAOKJoADiiaIA4omtAOKJrgDiia8A4omwAOKJsQDiibQA4om1AOKJuADiibkA4oqAAOKKgQDiioQA4oqFAOKKiADiiokA4oqsAOKKrQDiiq4A4oqvAOKLoADii6EA4ouiAOKLowDii6oA4ourAOKLrADii60A4pSCAOKWoADil4sA4qaFAOKmhgDiq53MuADitaEA44CBAOOAggDjgIgA44CJAOOAigDjgIsA44CMAOOAjQDjgI4A44CPAOOAkADjgJEA44CSAOOAlADjgJRT44CVAOOAlOS4ieOAlQDjgJTkuozjgJUA44CU5Yud44CVAOOAlOWuieOAlQDjgJTmiZPjgJUA44CU5pWX44CVAOOAlOacrOOAlQDjgJTngrnjgJUA44CU55uX44CVAOOAlQDjgJYA44CXAOOBjADjgY4A44GQAOOBkgDjgZQA44GWAOOBmADjgZoA44GcAOOBngDjgaAA44GiAOOBpQDjgacA44GpAOOBsADjgbEA44GzAOOBtADjgbYA44G3AOOBuQDjgboA44G744GLAOOBvADjgb0A44KI44KKAOOClADjgpkA44KaAOOCngDjgqEA44KiAOOCouODkeODvOODiADjgqLjg6vjg5XjgqEA44Ki44Oz44Oa44KiAOOCouODvOODqwDjgqMA44KkAOOCpOODi+ODs+OCsADjgqTjg7Pjg4EA44KlAOOCpgDjgqbjgqnjg7MA44KnAOOCqADjgqjjgrnjgq/jg7zjg4kA44Ko44O844Kr44O8AOOCqQDjgqoA44Kq44Oz44K5AOOCquODvOODoADjgqsA44Kr44Kk44OqAOOCq+ODqeODg+ODiADjgqvjg63jg6rjg7wA44KsAOOCrOODreODswDjgqzjg7Pjg54A44KtAOOCreODpeODquODvADjgq3jg60A44Kt44Ot44Kw44Op44OgAOOCreODreODoeODvOODiOODqwDjgq3jg63jg6/jg4Pjg4gA44KuAOOCruOCrADjgq7jg4vjg7wA44Ku44Or44OA44O8AOOCrwDjgq/jg6vjgrzjgqTjg60A44Kv44Ot44O844ONAOOCsADjgrDjg6njg6AA44Kw44Op44Og44OI44OzAOOCsQDjgrHjg7zjgrkA44KyAOOCswDjgrPjgrMA44Kz44OIAOOCs+ODq+ODigDjgrPjg7zjg50A44K0AOOCtQDjgrXjgqTjgq/jg6sA44K144Oz44OB44O844OgAOOCtgDjgrcA44K344Oq44Oz44KwAOOCuADjgrkA44K6AOOCuwDjgrvjg7Pjg4EA44K744Oz44OIAOOCvADjgr0A44K+AOOCvwDjg4AA44OA44O844K5AOODgQDjg4IA44ODAOODhADjg4UA44OGAOODhwDjg4fjgrcA44OIAOODiOODswDjg4kA44OJ44OrAOODigDjg4rjg44A44OLAOODjADjg40A44OOAOODjuODg+ODiADjg48A44OP44Kk44OEAOODkADjg5Djg7zjg6zjg6sA44ORAOODkeODvOOCu+ODs+ODiADjg5Hjg7zjg4QA44OSAOODkwDjg5Pjg6sA44OUAOODlOOCouOCueODiOODqwDjg5Tjgq/jg6sA44OU44KzAOODlQDjg5XjgqHjg6njg4Pjg4kA44OV44Kj44O844OIAOODleODqeODswDjg5YA44OW44OD44K344Kn44OrAOODlwDjg5gA44OY44Kv44K/44O844OrAOODmOODq+ODhADjg5kA44OZ44O844K/AOODmgDjg5rjgr0A44Oa44OL44OSAOODmuODs+OCuQDjg5rjg7zjgrgA44ObAOODm+ODswDjg5vjg7zjg6sA44Ob44O844OzAOODnADjg5zjg6vjg4gA44OdAOODneOCpOODs+ODiADjg53jg7Pjg4kA44OeAOODnuOCpOOCr+ODrQDjg57jgqTjg6sA44Oe44OD44OPAOODnuODq+OCrwDjg57jg7Pjgrfjg6fjg7MA44OfAOODn+OCr+ODreODswDjg5/jg6oA44Of44Oq44OQ44O844OrAOODoADjg6EA44Oh44KsAOODoeOCrOODiOODswDjg6Hjg7zjg4jjg6sA44OiAOODowDjg6QA44Ok44O844OJAOODpOODvOODqwDjg6UA44OmAOODpuOCouODswDjg6cA44OoAOODqQDjg6oA44Oq44OD44OI44OrAOODquODqQDjg6sA44Or44OU44O8AOODq+ODvOODluODqwDjg6wA44Os44OgAOODrOODs+ODiOOCsuODswDjg60A44OvAOODr+ODg+ODiADjg7AA44OxAOODsgDjg7MA44O0AOODtwDjg7gA44O5AOODugDjg7sA44O8AOODvgDjkp4A45K5AOOSuwDjk58A45SVAOObrgDjm7wA456BAOOgrwDjoaIA46G8AOOjhwDjo6MA46ScAOOkugDjqK4A46msAOOrpADjrIgA46yZAOOtiQDjrp0A47CYAOOxjgDjtLMA47aWAOO6rADjurgA47ybAOO/vADkgIgA5ICYAOSAuQDkgYYA5IKWAOSDowDkhK8A5IiCAOSIpwDkiqAA5IyBAOSMtADkjZkA5I+VAOSPmQDkkIsA5JGrAOSUqwDklZ0A5JWhAOSVqwDkl5cA5Je5AOSYtQDkmr4A5JuHAOSmlQDkp6YA5KmuAOSptgDkqrIA5KyzAOSvjgDks44A5LOtAOSzuADktZYA5LiAAOS4gQDkuIMA5LiJAOS4igDkuIsA5LiNAOS4mQDkuKYA5Lio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jQDmr5QA5q+bAOawjwDmsJQA5rC0AOaxjgDmsacA5rKIAOayvwDms4wA5rONAOazpQDms6gA5rSWAOa0mwDmtJ4A5rS0AOa0vgDmtYEA5rWpAOa1qgDmtbcA5rW4AOa2hQDmt4sA5reaAOa3qgDmt7kA5riaAOa4rwDmua4A5rqAAOa6nADmuroA5ruHAOa7iwDmu5EA5rubAOa8jwDmvJQA5ryiAOa8owDmva4A5r+GAOa/qwDmv74A54CbAOeAngDngLkA54GKAOeBqwDngbAA54G3AOeBvQDngpkA54KtAOeDiADng5kA54ShAOeFhQDnhYkA54WuAOeGnADnh44A54eQAOeIkADniJsA54ioAOeIqgDniKsA54i1AOeItgDniLsA54i/AOeJhwDniZAA54mZAOeJmwDniaIA54m5AOeKgADnipUA54qsAOeKrwDni4AA54u8AOeMqgDnjbUA5426AOeOhADnjocA546JAOeOiwDnjqUA546yAOePngDnkIYA55CJAOeQogDnkYcA55GcAOeRqQDnkbEA55KFAOeSiQDnkpgA55OKAOeTnADnk6YA55SGAOeUmADnlJ8A55SkAOeUqADnlLAA55SyAOeUswDnlLcA55S7AOeUvgDnlZkA55WlAOeVsADnlosA55aSAOeXogDnmJAA55idAOeYnwDnmYIA55mpAOeZtgDnmb0A55quAOeavwDnm4oA55ubAOebowDnm6cA55uuAOebtADnnIEA55yeAOecnwDnnYAA552KAOeeiwDnnqcA55+bAOefogDnn7MA56GOAOehqwDnoowA56KRAOejigDno4wA56O7AOekqgDnpLoA56S8AOekvgDnpYgA56WJAOelkADnpZYA56WdAOelngDnpaUA56W/AOemgQDnpo0A56aOAOemjwDnpq4A56a4AOemvgDnp4oA56eYAOenqwDnqJwA56mAAOepigDnqY8A56m0AOepugDnqoEA56qxAOeriwDnq64A56u5AOesoADnro8A56+AAOevhgDnr4kA57C+AOexoADnsbMA57G7AOeykgDnsr4A57OSAOezlgDns6MA57OnAOezqADns7gA57SAAOe0kADntKIA57SvAOe1ggDntZsA57WjAOe2oADntr4A57eHAOe3tADnuIIA57iJAOe4twDnuYEA57mFAOe8tgDnvL4A572RAOe9sgDnvbkA5726AOe+hQDnvooA576VAOe+mgDnvr0A57+6AOiAgQDogIUA6ICMAOiAkgDogLMA6IGGAOiBoADoga8A6IGwAOiBvgDogb8A6IKJAOiCiwDogq0A6IKyAOiEgwDohL4A6IeYAOiHowDoh6gA6IeqAOiHrQDoh7MA6Ie8AOiIgQDoiIQA6IiMAOiImADoiJsA6IifAOiJrgDoia8A6ImyAOiJuADoibkA6IqLAOiKkQDoip0A6IqxAOiKswDoir0A6IulAOiLpgDojJ0A6IyjAOiMtgDojZIA6I2TAOiNowDojq0A6I69AOiPiQDoj4oA6I+MAOiPnADoj6cA6I+vAOiPsQDokL0A6JGJAOiRlwDok64A6JOxAOiTswDok7wA6JSWAOiVpADol40A6Je6AOiYhgDomJIA6JitAOiYvwDomY0A6JmQAOiZnADomacA6JmpAOiZqwDomogA6JqpAOibogDonI4A6JyoAOidqwDonbkA6J6GAOieugDon6EA6KCBAOignwDooYAA6KGMAOihoADooaMA6KOCAOijjwDoo5cA6KOeAOijoQDoo7gA6KO6AOikkADopYEA6KWkAOilvgDopoYA6KaLAOimlgDop5IA6KejAOiogADoqqAA6KqqAOiqvwDoq4sA6KuSAOirlgDoq60A6Ku4AOirvgDorIEA6Ky5AOitmADoroAA6K6KAOiwtwDosYYA6LGIAOixlQDosbgA6LKdAOiyoQDosqkA6LKrAOizgQDos4IA6LOHAOiziADos5MA6LSIAOi0mwDotaQA6LWwAOi1twDotrMA6La8AOi3iwDot68A6LewAOi6qwDou4oA6LuUAOi8pgDovKoA6Ly4AOi8uwDovaIA6L6bAOi+ngDovrAA6L61AOi+tgDpgKMA6YC4AOmBigDpgakA6YGyAOmBvADpgo8A6YKRAOmClADpg44A6YOeAOmDsQDpg70A6YSRAOmEmwDphYkA6YWqAOmGmQDphrQA6YeGAOmHjADph48A6YeRAOmItADpiLgA6Ym2AOmJvADpi5cA6YuYAOmMhADpjYoA6Y+5AOmQlQDplbcA6ZaAAOmWiwDplq0A6Za3AOmYnADpmK4A6ZmLAOmZjQDpmbUA6Zm4AOmZvADpmoYA6ZqjAOmatgDpmrcA6Zq4AOmauQDpm4MA6ZuiAOmbowDpm6gA6Zu2AOmbtwDpnKMA6ZyyAOmdiADpnZEA6Z2WAOmdngDpnaIA6Z2pAOmfiwDpn5sA6Z+gAOmfrQDpn7MA6Z+/AOmggQDpoIUA6aCLAOmgmADpoKkA6aC7AOmhngDpoqgA6aObAOmjnwDpo6IA6aOvAOmjvADppKgA6aSpAOmmlgDpppkA6aanAOmmrADpp4IA6aexAOmnvgDpqaoA6aqoAOmrmADpq58A6aySAOmspQDprK8A6ayyAOmsvADprZoA6a2vAOmxgADpsZcA6bOlAOmzvQDptacA6ba0AOm3ugDpuJ4A6bm1AOm5vwDpupcA6bqfAOm6pQDpursA6buDAOm7jQDpu44A6buRAOm7uQDpu70A6bu+AOm8hQDpvI4A6byPAOm8kwDpvJYA6bygAOm8uwDpvYMA6b2KAOm9kgDpvo0A6b6OAOm+nADpvp8A6b6gAOqcpwDqna8A6qy3AOqtkgDqsIAA6rCBAOqwggDqsIMA6rCEAOqwhQDqsIYA6rCHAOqwiADqsIkA6rCKAOqwiwDqsIwA6rCNAOqwjgDqsI8A6rCQAOqwkQDqsJIA6rCTAOqwlADqsJUA6rCWAOqwlwDqsJgA6rCZAOqwmgDqsJsA6rCcAOqwnQDqsJ4A6rCfAOqwoADqsKEA6rCiAOqwowDqsKQA6rClAOqwpgDqsKcA6rCoAOqwqQDqsKoA6rCrAOqwrADqsK0A6rCuAOqwrwDqsLAA6rCxAOqwsgDqsLMA6rC0AOqwtQDqsLYA6rC3AOqwuADqsLkA6rC6AOqwuwDqsLwA6rC9AOqwvgDqsL8A6rGAAOqxgQDqsYIA6rGDAOqxhADqsYUA6rGGAOqxhwDqsYgA6rGJAOqxigDqsYsA6rGMAOqxjQDqsY4A6rGPAOqxkADqsZEA6rGSAOqxkwDqsZQA6rGVAOqxlgDqsZcA6rGYAOqxmQDqsZoA6rGbAOqxnADqsZ0A6rGeAOqxnwDqsaAA6rGhAOqxogDqsaMA6rGkAOqxpQDqsaYA6rGnAOqxqADqsakA6rGqAOqxqwDqsawA6rGtAOqxrgDqsa8A6rGwAOqxsQDqsbIA6rGzAOqxtADqsbUA6rG2AOqxtwDqsbgA6rG5AOqxugDqsbsA6rG8AOqxvQDqsb4A6rG/AOqygADqsoEA6rKCAOqygwDqsoQA6rKFAOqyhgDqsocA6rKIAOqyiQDqsooA6rKLAOqyjADqso0A6rKOAOqyjwDqspAA6rKRAOqykgDqspMA6rKUAOqylQDqspYA6rKXAOqymADqspkA6rKaAOqymwDqspwA6rKdAOqyngDqsp8A6rKgAOqyoQDqsqIA6rKjAOqypADqsqUA6rKmAOqypwDqsqgA6rKpAOqyqgDqsqsA6rKsAOqyrQDqsq4A6rKvAOqysADqsrEA6rKyAOqyswDqsrQA6rK1AOqytgDqsrcA6rK4AOqyuQDqsroA6rK7AOqyvADqsr0A6rK+AOqyvwDqs4AA6rOBAOqzggDqs4MA6rOEAOqzhQDqs4YA6rOHAOqziADqs4kA6rOKAOqziwDqs4wA6rONAOqzjgDqs48A6rOQAOqzkQDqs5IA6rOTAOqzlADqs5UA6rOWAOqzlwDqs5gA6rOZAOqzmgDqs5sA6rOcAOqznQDqs54A6rOfAOqzoADqs6EA6rOiAOqzowDqs6QA6rOlAOqzpgDqs6cA6rOoAOqzqQDqs6oA6rOrAOqzrADqs60A6rOuAOqzrwDqs7AA6rOxAOqzsgDqs7MA6rO0AOqztQDqs7YA6rO3AOqzuADqs7kA6rO6AOqzuwDqs7wA6rO9AOqzvgDqs78A6rSAAOq0gQDqtIIA6rSDAOq0hADqtIUA6rSGAOq0hwDqtIgA6rSJAOq0igDqtIsA6rSMAOq0jQDqtI4A6rSPAOq0kADqtJEA6rSSAOq0kwDqtJQA6rSVAOq0lgDqtJcA6rSYAOq0mQDqtJoA6rSbAOq0nADqtJ0A6rSeAOq0nwDqtKAA6rShAOq0ogDqtKMA6rSkAOq0pQDqtKYA6rSnAOq0qADqtKkA6rSqAOq0qwDqtKwA6rStAOq0rgDqtK8A6rSwAOq0sQDqtLIA6rSzAOq0tADqtLUA6rS2AOq0twDqtLgA6rS5AOq0ugDqtLsA6rS8AOq0vQDqtL4A6rS/AOq1gADqtYEA6rWCAOq1gwDqtYQA6rWFAOq1hgDqtYcA6rWIAOq1iQDqtYoA6rWLAOq1jADqtY0A6rWOAOq1jwDqtZAA6rWRAOq1kgDqtZMA6rWUAOq1lQDqtZYA6rWXAOq1mADqtZkA6rWaAOq1mwDqtZwA6rWdAOq1ngDqtZ8A6rWgAOq1oQDqtaIA6rWjAOq1pADqtaUA6rWmAOq1pwDqtagA6rWpAOq1qgDqtasA6rWsAOq1rQDqta4A6rWvAOq1sADqtbEA6rWyAOq1swDqtbQA6rW1AOq1tgDqtbcA6rW4AOq1uQDqtboA6rW7AOq1vADqtb0A6rW+AOq1vwDqtoAA6raBAOq2ggDqtoMA6raEAOq2hQDqtoYA6raHAOq2iADqtokA6raKAOq2iwDqtowA6raNAOq2jgDqto8A6raQAOq2kQDqtpIA6raTAOq2lADqtpUA6raWAOq2lwDqtpgA6raZAOq2mgDqtpsA6racAOq2nQDqtp4A6rafAOq2oADqtqEA6raiAOq2owDqtqQA6ralAOq2pgDqtqcA6raoAOq2qQDqtqoA6rarAOq2rADqtq0A6rauAOq2rwDqtrAA6raxAOq2sgDqtrMA6ra0AOq2tQDqtrYA6ra3AOq2uADqtrkA6ra6AOq2uwDqtrwA6ra9AOq2vgDqtr8A6reAAOq3gQDqt4IA6reDAOq3hADqt4UA6reGAOq3hwDqt4gA6reJAOq3igDqt4sA6reMAOq3jQDqt44A6rePAOq3kADqt5EA6reSAOq3kwDqt5QA6reVAOq3lgDqt5cA6reYAOq3mQDqt5oA6rebAOq3nADqt50A6reeAOq3nwDqt6AA6rehAOq3ogDqt6MA6rekAOq3pQDqt6YA6renAOq3qADqt6kA6reqAOq3qwDqt6wA6retAOq3rgDqt68A6rewAOq3sQDqt7IA6rezAOq3tADqt7UA6re2AOq3twDqt7gA6re5AOq3ugDqt7sA6re8AOq3vQDqt74A6re/AOq4gADquIEA6riCAOq4gwDquIQA6riFAOq4hgDquIcA6riIAOq4iQDquIoA6riLAOq4jADquI0A6riOAOq4jwDquJAA6riRAOq4kgDquJMA6riUAOq4lQDquJYA6riXAOq4mADquJkA6riaAOq4mwDquJwA6ridAOq4ngDquJ8A6rigAOq4oQDquKIA6rijAOq4pADquKUA6rimAOq4pwDquKgA6ripAOq4qgDquKsA6risAOq4rQDquK4A6rivAOq4sADquLEA6riyAOq4swDquLQA6ri1AOq4tgDquLcA6ri4AOq4uQDquLoA6ri7AOq4vADquL0A6ri+AOq4vwDquYAA6rmBAOq5ggDquYMA6rmEAOq5hQDquYYA6rmHAOq5iADquYkA6rmKAOq5iwDquYwA6rmNAOq5jgDquY8A6rmQAOq5kQDquZIA6rmTAOq5lADquZUA6rmWAOq5lwDquZgA6rmZAOq5mgDquZsA6rmcAOq5nQDquZ4A6rmfAOq5oADquaEA6rmiAOq5owDquaQA6rmlAOq5pgDquacA6rmoAOq5qQDquaoA6rmrAOq5rADqua0A6rmuAOq5rwDqubAA6rmxAOq5sgDqubMA6rm0AOq5tQDqubYA6rm3AOq5uADqubkA6rm6AOq5uwDqubwA6rm9AOq5vgDqub8A6rqAAOq6gQDquoIA6rqDAOq6hADquoUA6rqGAOq6hwDquogA6rqJAOq6igDquosA6rqMAOq6jQDquo4A6rqPAOq6kADqupEA6rqSAOq6kwDqupQA6rqVAOq6lgDqupcA6rqYAOq6mQDqupoA6rqbAOq6nADqup0A6rqeAOq6nwDquqAA6rqhAOq6ogDquqMA6rqkAOq6pQDquqYA6rqnAOq6qADquqkA6rqqAOq6qwDquqwA6rqtAOq6rgDquq8A6rqwAOq6sQDqurIA6rqzAOq6tADqurUA6rq2AOq6twDqurgA6rq5AOq6ugDqursA6rq8AOq6vQDqur4A6rq/AOq7gADqu4EA6ruCAOq7gwDqu4QA6ruFAOq7hgDqu4cA6ruIAOq7iQDqu4oA6ruLAOq7jADqu40A6ruOAOq7jwDqu5AA6ruRAOq7kgDqu5MA6ruUAOq7lQDqu5YA6ruXAOq7mADqu5kA6ruaAOq7mwDqu5wA6rudAOq7ngDqu58A6rugAOq7oQDqu6IA6rujAOq7pADqu6UA6rumAOq7pwDqu6gA6rupAOq7qgDqu6sA6rusAOq7rQDqu64A6ruvAOq7sADqu7EA6ruyAOq7swDqu7QA6ru1AOq7tgDqu7cA6ru4AOq7uQDqu7oA6ru7AOq7vADqu70A6ru+AOq7vwDqvIAA6ryBAOq8ggDqvIMA6ryEAOq8hQDqvIYA6ryHAOq8iADqvIkA6ryKAOq8iwDqvIwA6ryNAOq8jgDqvI8A6ryQAOq8kQDqvJIA6ryTAOq8lADqvJUA6ryWAOq8lwDqvJgA6ryZAOq8mgDqvJsA6rycAOq8nQDqvJ4A6ryfAOq8oADqvKEA6ryiAOq8owDqvKQA6rylAOq8pgDqvKcA6ryoAOq8qQDqvKoA6ryrAOq8rADqvK0A6ryuAOq8rwDqvLAA6ryxAOq8sgDqvLMA6ry0AOq8tQDqvLYA6ry3AOq8uADqvLkA6ry6AOq8uwDqvLwA6ry9AOq8vgDqvL8A6r2AAOq9gQDqvYIA6r2DAOq9hADqvYUA6r2GAOq9hwDqvYgA6r2JAOq9igDqvYsA6r2MAOq9jQDqvY4A6r2PAOq9kADqvZEA6r2SAOq9kwDqvZQA6r2VAOq9lgDqvZcA6r2YAOq9mQDqvZoA6r2bAOq9nADqvZ0A6r2eAOq9nwDqvaAA6r2hAOq9ogDqvaMA6r2kAOq9pQDqvaYA6r2nAOq9qADqvakA6r2qAOq9qwDqvawA6r2tAOq9rgDqva8A6r2wAOq9sQDqvbIA6r2zAOq9tADqvbUA6r22AOq9twDqvbgA6r25AOq9ugDqvbsA6r28AOq9vQDqvb4A6r2/AOq+gADqvoEA6r6CAOq+gwDqvoQA6r6FAOq+hgDqvocA6r6IAOq+iQDqvooA6r6LAOq+jADqvo0A6r6OAOq+jwDqvpAA6r6RAOq+kgDqvpMA6r6UAOq+lQDqvpYA6r6XAOq+mADqvpkA6r6aAOq+mwDqvpwA6r6dAOq+ngDqvp8A6r6gAOq+oQDqvqIA6r6jAOq+pADqvqUA6r6mAOq+pwDqvqgA6r6pAOq+qgDqvqsA6r6sAOq+rQDqvq4A6r6vAOq+sADqvrEA6r6yAOq+swDqvrQA6r61AOq+tgDqvrcA6r64AOq+uQDqvroA6r67AOq+vADqvr0A6r6+AOq+vwDqv4AA6r+BAOq/ggDqv4MA6r+EAOq/hQDqv4YA6r+HAOq/iADqv4kA6r+KAOq/iwDqv4wA6r+NAOq/jgDqv48A6r+QAOq/kQDqv5IA6r+TAOq/lADqv5UA6r+WAOq/lwDqv5gA6r+ZAOq/mgDqv5sA6r+cAOq/nQDqv54A6r+fAOq/oADqv6EA6r+iAOq/owDqv6QA6r+lAOq/pgDqv6cA6r+oAOq/qQDqv6oA6r+rAOq/rADqv60A6r+uAOq/rwDqv7AA6r+xAOq/sgDqv7MA6r+0AOq/tQDqv7YA6r+3AOq/uADqv7kA6r+6AOq/uwDqv7wA6r+9AOq/vgDqv78A64CAAOuAgQDrgIIA64CDAOuAhADrgIUA64CGAOuAhwDrgIgA64CJAOuAigDrgIsA64CMAOuAjQDrgI4A64CPAOuAkADrgJEA64CSAOuAkwDrgJQA64CVAOuAlgDrgJcA64CYAOuAmQDrgJoA64CbAOuAnADrgJ0A64CeAOuAnwDrgKAA64ChAOuAogDrgKMA64CkAOuApQDrgKYA64CnAOuAqADrgKkA64CqAOuAqwDrgKwA64CtAOuArgDrgK8A64CwAOuAsQDrgLIA64CzAOuAtADrgLUA64C2AOuAtwDrgLgA64C5AOuAugDrgLsA64C8AOuAvQDrgL4A64C/AOuBgADrgYEA64GCAOuBgwDrgYQA64GFAOuBhgDrgYcA64GIAOuBiQDrgYoA64GLAOuBjADrgY0A64GOAOuBjwDrgZAA64GRAOuBkgDrgZMA64GUAOuBlQDrgZYA64GXAOuBmADrgZkA64GaAOuBmwDrgZwA64GdAOuBngDrgZ8A64GgAOuBoQDrgaIA64GjAOuBpADrgaUA64GmAOuBpwDrgagA64GpAOuBqgDrgasA64GsAOuBrQDrga4A64GvAOuBsADrgbEA64GyAOuBswDrgbQA64G1AOuBtgDrgbcA64G4AOuBuQDrgboA64G7AOuBvADrgb0A64G+AOuBvwDrgoAA64KBAOuCggDrgoMA64KEAOuChQDrgoYA64KHAOuCiADrgokA64KKAOuCiwDrgowA64KNAOuCjgDrgo8A64KQAOuCkQDrgpIA64KTAOuClADrgpUA64KWAOuClwDrgpgA64KZAOuCmgDrgpsA64KcAOuCnQDrgp4A64KfAOuCoADrgqEA64KiAOuCowDrgqQA64KlAOuCpgDrgqcA64KoAOuCqQDrgqoA64KrAOuCrADrgq0A64KuAOuCrwDrgrAA64KxAOuCsgDrgrMA64K0AOuCtQDrgrYA64K3AOuCuADrgrkA64K6AOuCuwDrgrwA64K9AOuCvgDrgr8A64OAAOuDgQDrg4IA64ODAOuDhADrg4UA64OGAOuDhwDrg4gA64OJAOuDigDrg4sA64OMAOuDjQDrg44A64OPAOuDkADrg5EA64OSAOuDkwDrg5QA64OVAOuDlgDrg5cA64OYAOuDmQDrg5oA64ObAOuDnADrg50A64OeAOuDnwDrg6AA64OhAOuDogDrg6MA64OkAOuDpQDrg6YA64OnAOuDqADrg6kA64OqAOuDqwDrg6wA64OtAOuDrgDrg68A64OwAOuDsQDrg7IA64OzAOuDtADrg7UA64O2AOuDtwDrg7gA64O5AOuDugDrg7sA64O8AOuDvQDrg74A64O/AOuEgADrhIEA64SCAOuEgwDrhIQA64SFAOuEhgDrhIcA64SIAOuEiQDrhIoA64SLAOuEjADrhI0A64SOAOuEjwDrhJAA64SRAOuEkgDrhJMA64SUAOuElQDrhJYA64SXAOuEmADrhJkA64SaAOuEmwDrhJwA64SdAOuEngDrhJ8A64SgAOuEoQDrhKIA64SjAOuEpADrhKUA64SmAOuEpwDrhKgA64SpAOuEqgDrhKsA64SsAOuErQDrhK4A64SvAOuEsADrhLEA64SyAOuEswDrhLQA64S1AOuEtgDrhLcA64S4AOuEuQDrhLoA64S7AOuEvADrhL0A64S+AOuEvwDrhYAA64WBAOuFggDrhYMA64WEAOuFhQDrhYYA64WHAOuFiADrhYkA64WKAOuFiwDrhYwA64WNAOuFjgDrhY8A64WQAOuFkQDrhZIA64WTAOuFlADrhZUA64WWAOuFlwDrhZgA64WZAOuFmgDrhZsA64WcAOuFnQDrhZ4A64WfAOuFoADrhaEA64WiAOuFowDrhaQA64WlAOuFpgDrhacA64WoAOuFqQDrhaoA64WrAOuFrADrha0A64WuAOuFrwDrhbAA64WxAOuFsgDrhbMA64W0AOuFtQDrhbYA64W3AOuFuADrhbkA64W6AOuFuwDrhbwA64W9AOuFvgDrhb8A64aAAOuGgQDrhoIA64aDAOuGhADrhoUA64aGAOuGhwDrhogA64aJAOuGigDrhosA64aMAOuGjQDrho4A64aPAOuGkADrhpEA64aSAOuGkwDrhpQA64aVAOuGlgDrhpcA64aYAOuGmQDrhpoA64abAOuGnADrhp0A64aeAOuGnwDrhqAA64ahAOuGogDrhqMA64akAOuGpQDrhqYA64anAOuGqADrhqkA64aqAOuGqwDrhqwA64atAOuGrgDrhq8A64awAOuGsQDrhrIA64azAOuGtADrhrUA64a2AOuGtwDrhrgA64a5AOuGugDrhrsA64a8AOuGvQDrhr4A64a/AOuHgADrh4EA64eCAOuHgwDrh4QA64eFAOuHhgDrh4cA64eIAOuHiQDrh4oA64eLAOuHjADrh40A64eOAOuHjwDrh5AA64eRAOuHkgDrh5MA64eUAOuHlQDrh5YA64eXAOuHmADrh5kA64eaAOuHmwDrh5wA64edAOuHngDrh58A64egAOuHoQDrh6IA64ejAOuHpADrh6UA64emAOuHpwDrh6gA64epAOuHqgDrh6sA64esAOuHrQDrh64A64evAOuHsADrh7EA64eyAOuHswDrh7QA64e1AOuHtgDrh7cA64e4AOuHuQDrh7oA64e7AOuHvADrh70A64e+AOuHvwDriIAA64iBAOuIggDriIMA64iEAOuIhQDriIYA64iHAOuIiADriIkA64iKAOuIiwDriIwA64iNAOuIjgDriI8A64iQAOuIkQDriJIA64iTAOuIlADriJUA64iWAOuIlwDriJgA64iZAOuImgDriJsA64icAOuInQDriJ4A64ifAOuIoADriKEA64iiAOuIowDriKQA64ilAOuIpgDriKcA64ioAOuIqQDriKoA64irAOuIrADriK0A64iuAOuIrwDriLAA64ixAOuIsgDriLMA64i0AOuItQDriLYA64i3AOuIuADriLkA64i6AOuIuwDriLwA64i9AOuIvgDriL8A64mAAOuJgQDriYIA64mDAOuJhADriYUA64mGAOuJhwDriYgA64mJAOuJigDriYsA64mMAOuJjQDriY4A64mPAOuJkADriZEA64mSAOuJkwDriZQA64mVAOuJlgDriZcA64mYAOuJmQDriZoA64mbAOuJnADriZ0A64meAOuJnwDriaAA64mhAOuJogDriaMA64mkAOuJpQDriaYA64mnAOuJqADriakA64mqAOuJqwDriawA64mtAOuJrgDria8A64mwAOuJsQDribIA64mzAOuJtADribUA64m2AOuJtwDribgA64m5AOuJugDribsA64m8AOuJvQDrib4A64m/AOuKgADrioEA64qCAOuKgwDrioQA64qFAOuKhgDriocA64qIAOuKiQDriooA64qLAOuKjADrio0A64qOAOuKjwDripAA64qRAOuKkgDripMA64qUAOuKlQDripYA64qXAOuKmADripkA64qaAOuKmwDripwA64qdAOuKngDrip8A64qgAOuKoQDriqIA64qjAOuKpADriqUA64qmAOuKpwDriqgA64qpAOuKqgDriqsA64qsAOuKrQDriq4A64qvAOuKsADrirEA64qyAOuKswDrirQA64q1AOuKtgDrircA64q4AOuKuQDriroA64q7AOuKvADrir0A64q+AOuKvwDri4AA64uBAOuLggDri4MA64uEAOuLhQDri4YA64uHAOuLiADri4kA64uKAOuLiwDri4wA64uNAOuLjgDri48A64uQAOuLkQDri5IA64uTAOuLlADri5UA64uWAOuLlwDri5gA64uZAOuLmgDri5sA64ucAOuLnQDri54A64ufAOuLoADri6EA64uiAOuLowDri6QA64ulAOuLpgDri6cA64uoAOuLqQDri6oA64urAOuLrADri60A64uuAOuLrwDri7AA64uxAOuLsgDri7MA64u0AOuLtQDri7YA64u3AOuLuADri7kA64u6AOuLuwDri7wA64u9AOuLvgDri78A64yAAOuMgQDrjIIA64yDAOuMhADrjIUA64yGAOuMhwDrjIgA64yJAOuMigDrjIsA64yMAOuMjQDrjI4A64yPAOuMkADrjJEA64ySAOuMkwDrjJQA64yVAOuMlgDrjJcA64yYAOuMmQDrjJoA64ybAOuMnADrjJ0A64yeAOuMnwDrjKAA64yhAOuMogDrjKMA64ykAOuMpQDrjKYA64ynAOuMqADrjKkA64yqAOuMqwDrjKwA64ytAOuMrgDrjK8A64ywAOuMsQDrjLIA64yzAOuMtADrjLUA64y2AOuMtwDrjLgA64y5AOuMugDrjLsA64y8AOuMvQDrjL4A64y/AOuNgADrjYEA642CAOuNgwDrjYQA642FAOuNhgDrjYcA642IAOuNiQDrjYoA642LAOuNjADrjY0A642OAOuNjwDrjZAA642RAOuNkgDrjZMA642UAOuNlQDrjZYA642XAOuNmADrjZkA642aAOuNmwDrjZwA642dAOuNngDrjZ8A642gAOuNoQDrjaIA642jAOuNpADrjaUA642mAOuNpwDrjagA642pAOuNqgDrjasA642sAOuNrQDrja4A642vAOuNsADrjbEA642yAOuNswDrjbQA6421AOuNtgDrjbcA6424AOuNuQDrjboA6427AOuNvADrjb0A642+AOuNvwDrjoAA646BAOuOggDrjoMA646EAOuOhQDrjoYA646HAOuOiADrjokA646KAOuOiwDrjowA646NAOuOjgDrjo8A646QAOuOkQDrjpIA646TAOuOlADrjpUA646WAOuOlwDrjpgA646ZAOuOmgDrjpsA646cAOuOnQDrjp4A646fAOuOoADrjqEA646iAOuOowDrjqQA646lAOuOpgDrjqcA646oAOuOqQDrjqoA646rAOuOrADrjq0A646uAOuOrwDrjrAA646xAOuOsgDrjrMA6460AOuOtQDrjrYA6463AOuOuADrjrkA6466AOuOuwDrjrwA6469AOuOvgDrjr8A64+AAOuPgQDrj4IA64+DAOuPhADrj4UA64+GAOuPhwDrj4gA64+JAOuPigDrj4sA64+MAOuPjQDrj44A64+PAOuPkADrj5EA64+SAOuPkwDrj5QA64+VAOuPlgDrj5cA64+YAOuPmQDrj5oA64+bAOuPnADrj50A64+eAOuPnwDrj6AA64+hAOuPogDrj6MA64+kAOuPpQDrj6YA64+nAOuPqADrj6kA64+qAOuPqwDrj6wA64+tAOuPrgDrj68A64+wAOuPsQDrj7IA64+zAOuPtADrj7UA64+2AOuPtwDrj7gA64+5AOuPugDrj7sA64+8AOuPvQDrj74A64+/AOuQgADrkIEA65CCAOuQgwDrkIQA65CFAOuQhgDrkIcA65CIAOuQiQDrkIoA65CLAOuQjADrkI0A65COAOuQjwDrkJAA65CRAOuQkgDrkJMA65CUAOuQlQDrkJYA65CXAOuQmADrkJkA65CaAOuQmwDrkJwA65CdAOuQngDrkJ8A65CgAOuQoQDrkKIA65CjAOuQpADrkKUA65CmAOuQpwDrkKgA65CpAOuQqgDrkKsA65CsAOuQrQDrkK4A65CvAOuQsADrkLEA65CyAOuQswDrkLQA65C1AOuQtgDrkLcA65C4AOuQuQDrkLoA65C7AOuQvADrkL0A65C+AOuQvwDrkYAA65GBAOuRggDrkYMA65GEAOuRhQDrkYYA65GHAOuRiADrkYkA65GKAOuRiwDrkYwA65GNAOuRjgDrkY8A65GQAOuRkQDrkZIA65GTAOuRlADrkZUA65GWAOuRlwDrkZgA65GZAOuRmgDrkZsA65GcAOuRnQDrkZ4A65GfAOuRoADrkaEA65GiAOuRowDrkaQA65GlAOuRpgDrkacA65GoAOuRqQDrkaoA65GrAOuRrADrka0A65GuAOuRrwDrkbAA65GxAOuRsgDrkbMA65G0AOuRtQDrkbYA65G3AOuRuADrkbkA65G6AOuRuwDrkbwA65G9AOuRvgDrkb8A65KAAOuSgQDrkoIA65KDAOuShADrkoUA65KGAOuShwDrkogA65KJAOuSigDrkosA65KMAOuSjQDrko4A65KPAOuSkADrkpEA65KSAOuSkwDrkpQA65KVAOuSlgDrkpcA65KYAOuSmQDrkpoA65KbAOuSnADrkp0A65KeAOuSnwDrkqAA65KhAOuSogDrkqMA65KkAOuSpQDrkqYA65KnAOuSqADrkqkA65KqAOuSqwDrkqwA65KtAOuSrgDrkq8A65KwAOuSsQDrkrIA65KzAOuStADrkrUA65K2AOuStwDrkrgA65K5AOuSugDrkrsA65K8AOuSvQDrkr4A65K/AOuTgADrk4EA65OCAOuTgwDrk4QA65OFAOuThgDrk4cA65OIAOuTiQDrk4oA65OLAOuTjADrk40A65OOAOuTjwDrk5AA65ORAOuTkgDrk5MA65OUAOuTlQDrk5YA65OXAOuTmADrk5kA65OaAOuTmwDrk5wA65OdAOuTngDrk58A65OgAOuToQDrk6IA65OjAOuTpADrk6UA65OmAOuTpwDrk6gA65OpAOuTqgDrk6sA65OsAOuTrQDrk64A65OvAOuTsADrk7EA65OyAOuTswDrk7QA65O1AOuTtgDrk7cA65O4AOuTuQDrk7oA65O7AOuTvADrk70A65O+AOuTvwDrlIAA65SBAOuUggDrlIMA65SEAOuUhQDrlIYA65SHAOuUiADrlIkA65SKAOuUiwDrlIwA65SNAOuUjgDrlI8A65SQAOuUkQDrlJIA65STAOuUlADrlJUA65SWAOuUlwDrlJgA65SZAOuUmgDrlJsA65ScAOuUnQDrlJ4A65SfAOuUoADrlKEA65SiAOuUowDrlKQA65SlAOuUpgDrlKcA65SoAOuUqQDrlKoA65SrAOuUrADrlK0A65SuAOuUrwDrlLAA65SxAOuUsgDrlLMA65S0AOuUtQDrlLYA65S3AOuUuADrlLkA65S6AOuUuwDrlLwA65S9AOuUvgDrlL8A65WAAOuVgQDrlYIA65WDAOuVhADrlYUA65WGAOuVhwDrlYgA65WJAOuVigDrlYsA65WMAOuVjQDrlY4A65WPAOuVkADrlZEA65WSAOuVkwDrlZQA65WVAOuVlgDrlZcA65WYAOuVmQDrlZoA65WbAOuVnADrlZ0A65WeAOuVnwDrlaAA65WhAOuVogDrlaMA65WkAOuVpQDrlaYA65WnAOuVqADrlakA65WqAOuVqwDrlawA65WtAOuVrgDrla8A65WwAOuVsQDrlbIA65WzAOuVtADrlbUA65W2AOuVtwDrlbgA65W5AOuVugDrlbsA65W8AOuVvQDrlb4A65W/AOuWgADrloEA65aCAOuWgwDrloQA65aFAOuWhgDrlocA65aIAOuWiQDrlooA65aLAOuWjADrlo0A65aOAOuWjwDrlpAA65aRAOuWkgDrlpMA65aUAOuWlQDrlpYA65aXAOuWmADrlpkA65aaAOuWmwDrlpwA65adAOuWngDrlp8A65agAOuWoQDrlqIA65ajAOuWpADrlqUA65amAOuWpwDrlqgA65apAOuWqgDrlqsA65asAOuWrQDrlq4A65avAOuWsADrlrEA65ayAOuWswDrlrQA65a1AOuWtgDrlrcA65a4AOuWuQDrlroA65a7AOuWvADrlr0A65a+AOuWvwDrl4AA65eBAOuXggDrl4MA65eEAOuXhQDrl4YA65eHAOuXiADrl4kA65eKAOuXiwDrl4wA65eNAOuXjgDrl48A65eQAOuXkQDrl5IA65eTAOuXlADrl5UA65eWAOuXlwDrl5gA65eZAOuXmgDrl5sA65ecAOuXnQDrl54A65efAOuXoADrl6EA65eiAOuXowDrl6QA65elAOuXpgDrl6cA65eoAOuXqQDrl6oA65erAOuXrADrl60A65euAOuXrwDrl7AA65exAOuXsgDrl7MA65e0AOuXtQDrl7YA65e3AOuXuADrl7kA65e6AOuXuwDrl7wA65e9AOuXvgDrl78A65iAAOuYgQDrmIIA65iDAOuYhADrmIUA65iGAOuYhwDrmIgA65iJAOuYigDrmIsA65iMAOuYjQDrmI4A65iPAOuYkADrmJEA65iSAOuYkwDrmJQA65iVAOuYlgDrmJcA65iYAOuYmQDrmJoA65ibAOuYnADrmJ0A65ieAOuYnwDrmKAA65ihAOuYogDrmKMA65ikAOuYpQDrmKYA65inAOuYqADrmKkA65iqAOuYqwDrmKwA65itAOuYrgDrmK8A65iwAOuYsQDrmLIA65izAOuYtADrmLUA65i2AOuYtwDrmLgA65i5AOuYugDrmLsA65i8AOuYvQDrmL4A65i/AOuZgADrmYEA65mCAOuZgwDrmYQA65mFAOuZhgDrmYcA65mIAOuZiQDrmYoA65mLAOuZjADrmY0A65mOAOuZjwDrmZAA65mRAOuZkgDrmZMA65mUAOuZlQDrmZYA65mXAOuZmADrmZkA65maAOuZmwDrmZwA65mdAOuZngDrmZ8A65mgAOuZoQDrmaIA65mjAOuZpADrmaUA65mmAOuZpwDrmagA65mpAOuZqgDrmasA65msAOuZrQDrma4A65mvAOuZsADrmbEA65myAOuZswDrmbQA65m1AOuZtgDrmbcA65m4AOuZuQDrmboA65m7AOuZvADrmb0A65m+AOuZvwDrmoAA65qBAOuaggDrmoMA65qEAOuahQDrmoYA65qHAOuaiADrmokA65qKAOuaiwDrmowA65qNAOuajgDrmo8A65qQAOuakQDrmpIA65qTAOualADrmpUA65qWAOualwDrmpgA65qZAOuamgDrmpsA65qcAOuanQDrmp4A65qfAOuaoADrmqEA65qiAOuaowDrmqQA65qlAOuapgDrmqcA65qoAOuaqQDrmqoA65qrAOuarADrmq0A65quAOuarwDrmrAA65qxAOuasgDrmrMA65q0AOuatQDrmrYA65q3AOuauADrmrkA65q6AOuauwDrmrwA65q9AOuavgDrmr8A65uAAOubgQDrm4IA65uDAOubhADrm4UA65uGAOubhwDrm4gA65uJAOubigDrm4sA65uMAOubjQDrm44A65uPAOubkADrm5EA65uSAOubkwDrm5QA65uVAOublgDrm5cA65uYAOubmQDrm5oA65ubAOubnADrm50A65ueAOubnwDrm6AA65uhAOubogDrm6MA65ukAOubpQDrm6YA65unAOubqADrm6kA65uqAOubqwDrm6wA65utAOubrgDrm68A65uwAOubsQDrm7IA65uzAOubtADrm7UA65u2AOubtwDrm7gA65u5AOubugDrm7sA65u8AOubvQDrm74A65u/AOucgADrnIEA65yCAOucgwDrnIQA65yFAOuchgDrnIcA65yIAOuciQDrnIoA65yLAOucjADrnI0A65yOAOucjwDrnJAA65yRAOuckgDrnJMA65yUAOuclQDrnJYA65yXAOucmADrnJkA65yaAOucmwDrnJwA65ydAOucngDrnJ8A65ygAOucoQDrnKIA65yjAOucpADrnKUA65ymAOucpwDrnKgA65ypAOucqgDrnKsA65ysAOucrQDrnK4A65yvAOucsADrnLEA65yyAOucswDrnLQA65y1AOuctgDrnLcA65y4AOucuQDrnLoA65y7AOucvADrnL0A65y+AOucvwDrnYAA652BAOudggDrnYMA652EAOudhQDrnYYA652HAOudiADrnYkA652KAOudiwDrnYwA652NAOudjgDrnY8A652QAOudkQDrnZIA652TAOudlADrnZUA652WAOudlwDrnZgA652ZAOudmgDrnZsA652cAOudnQDrnZ4A652fAOudoADrnaEA652iAOudowDrnaQA652lAOudpgDrnacA652oAOudqQDrnaoA652rAOudrADrna0A652uAOudrwDrnbAA652xAOudsgDrnbMA6520AOudtQDrnbYA6523AOuduADrnbkA6526AOuduwDrnbwA6529AOudvgDrnb8A656AAOuegQDrnoIA656DAOuehADrnoUA656GAOuehwDrnogA656JAOueigDrnosA656MAOuejQDrno4A656PAOuekADrnpEA656SAOuekwDrnpQA656VAOuelgDrnpcA656YAOuemQDrnpoA656bAOuenADrnp0A656eAOuenwDrnqAA656hAOueogDrnqMA656kAOuepQDrnqYA656nAOueqADrnqkA656qAOueqwDrnqwA656tAOuergDrnq8A656wAOuesQDrnrIA656zAOuetADrnrUA6562AOuetwDrnrgA6565AOueugDrnrsA6568AOuevQDrnr4A656/AOufgADrn4EA65+CAOufgwDrn4QA65+FAOufhgDrn4cA65+IAOufiQDrn4oA65+LAOufjADrn40A65+OAOufjwDrn5AA65+RAOufkgDrn5MA65+UAOuflQDrn5YA65+XAOufmADrn5kA65+aAOufmwDrn5wA65+dAOufngDrn58A65+gAOufoQDrn6IA65+jAOufpADrn6UA65+mAOufpwDrn6gA65+pAOufqgDrn6sA65+sAOufrQDrn64A65+vAOufsADrn7EA65+yAOufswDrn7QA65+1AOuftgDrn7cA65+4AOufuQDrn7oA65+7AOufvADrn70A65++AOufvwDroIAA66CBAOugggDroIMA66CEAOughQDroIYA66CHAOugiADroIkA66CKAOugiwDroIwA66CNAOugjgDroI8A66CQAOugkQDroJIA66CTAOuglADroJUA66CWAOuglwDroJgA66CZAOugmgDroJsA66CcAOugnQDroJ4A66CfAOugoADroKEA66CiAOugowDroKQA66ClAOugpgDroKcA66CoAOugqQDroKoA66CrAOugrADroK0A66CuAOugrwDroLAA66CxAOugsgDroLMA66C0AOugtQDroLYA66C3AOuguADroLkA66C6AOuguwDroLwA66C9AOugvgDroL8A66GAAOuhgQDroYIA66GDAOuhhADroYUA66GGAOuhhwDroYgA66GJAOuhigDroYsA66GMAOuhjQDroY4A66GPAOuhkADroZEA66GSAOuhkwDroZQA66GVAOuhlgDroZcA66GYAOuhmQDroZoA66GbAOuhnADroZ0A66GeAOuhnwDroaAA66GhAOuhogDroaMA66GkAOuhpQDroaYA66GnAOuhqADroakA66GqAOuhqwDroawA66GtAOuhrgDroa8A66GwAOuhsQDrobIA66GzAOuhtADrobUA66G2AOuhtwDrobgA66G5AOuhugDrobsA66G8AOuhvQDrob4A66G/AOuigADrooEA66KCAOuigwDrooQA66KFAOuihgDroocA66KIAOuiiQDroooA66KLAOuijADroo0A66KOAOuijwDropAA66KRAOuikgDropMA66KUAOuilQDropYA66KXAOuimADropkA66KaAOuimwDropwA66KdAOuingDrop8A66KgAOuioQDroqIA66KjAOuipADroqUA66KmAOuipwDroqgA66KpAOuiqgDroqsA66KsAOuirQDroq4A66KvAOuisADrorEA66KyAOuiswDrorQA66K1AOuitgDrorcA66K4AOuiuQDroroA66K7AOuivADror0A66K+AOuivwDro4AA66OBAOujggDro4MA66OEAOujhQDro4YA66OHAOujiADro4kA66OKAOujiwDro4wA66ONAOujjgDro48A66OQAOujkQDro5IA66OTAOujlADro5UA66OWAOujlwDro5gA66OZAOujmgDro5sA66OcAOujnQDro54A66OfAOujoADro6EA66OiAOujowDro6QA66OlAOujpgDro6cA66OoAOujqQDro6oA66OrAOujrADro60A66OuAOujrwDro7AA66OxAOujsgDro7MA66O0AOujtQDro7YA66O3AOujuADro7kA66O6AOujuwDro7wA66O9AOujvgDro78A66SAAOukgQDrpIIA66SDAOukhADrpIUA66SGAOukhwDrpIgA66SJAOukigDrpIsA66SMAOukjQDrpI4A66SPAOukkADrpJEA66SSAOukkwDrpJQA66SVAOuklgDrpJcA66SYAOukmQDrpJoA66SbAOuknADrpJ0A66SeAOuknwDrpKAA66ShAOukogDrpKMA66SkAOukpQDrpKYA66SnAOukqADrpKkA66SqAOukqwDrpKwA66StAOukrgDrpK8A66SwAOuksQDrpLIA66SzAOuktADrpLUA66S2AOuktwDrpLgA66S5AOukugDrpLsA66S8AOukvQDrpL4A66S/AOulgADrpYEA66WCAOulgwDrpYQA66WFAOulhgDrpYcA66WIAOuliQDrpYoA66WLAOuljADrpY0A66WOAOuljwDrpZAA66WRAOulkgDrpZMA66WUAOullQDrpZYA66WXAOulmADrpZkA66WaAOulmwDrpZwA66WdAOulngDrpZ8A66WgAOuloQDrpaIA66WjAOulpADrpaUA66WmAOulpwDrpagA66WpAOulqgDrpasA66WsAOulrQDrpa4A66WvAOulsADrpbEA66WyAOulswDrpbQA66W1AOultgDrpbcA66W4AOuluQDrpboA66W7AOulvADrpb0A66W+AOulvwDrpoAA66aBAOumggDrpoMA66aEAOumhQDrpoYA66aHAOumiADrpokA66aKAOumiwDrpowA66aNAOumjgDrpo8A66aQAOumkQDrppIA66aTAOumlADrppUA66aWAOumlwDrppgA66aZAOummgDrppsA66acAOumnQDrpp4A66afAOumoADrpqEA66aiAOumowDrpqQA66alAOumpgDrpqcA66aoAOumqQDrpqoA66arAOumrADrpq0A66auAOumrwDrprAA66axAOumsgDrprMA66a0AOumtQDrprYA66a3AOumuADrprkA66a6AOumuwDrprwA66a9AOumvgDrpr8A66eAAOungQDrp4IA66eDAOunhADrp4UA66eGAOunhwDrp4gA66eJAOunigDrp4sA66eMAOunjQDrp44A66ePAOunkADrp5EA66eSAOunkwDrp5QA66eVAOunlgDrp5cA66eYAOunmQDrp5oA66ebAOunnADrp50A66eeAOunnwDrp6AA66ehAOunogDrp6MA66ekAOunpQDrp6YA66enAOunqADrp6kA66eqAOunqwDrp6wA66etAOunrgDrp68A66ewAOunsQDrp7IA66ezAOuntADrp7UA66e2AOuntwDrp7gA66e5AOunugDrp7sA66e8AOunvQDrp74A66e/AOuogADrqIEA66iCAOuogwDrqIQA66iFAOuohgDrqIcA66iIAOuoiQDrqIoA66iLAOuojADrqI0A66iOAOuojwDrqJAA66iRAOuokgDrqJMA66iUAOuolQDrqJYA66iXAOuomADrqJkA66iaAOuomwDrqJwA66idAOuongDrqJ8A66igAOuooQDrqKIA66ijAOuopADrqKUA66imAOuopwDrqKgA66ipAOuoqgDrqKsA66isAOuorQDrqK4A66ivAOuosADrqLEA66iyAOuoswDrqLQA66i1AOuotgDrqLcA66i4AOuouQDrqLoA66i7AOuovADrqL0A66i+AOuovwDrqYAA66mBAOupggDrqYMA66mEAOuphQDrqYYA66mHAOupiADrqYkA66mKAOupiwDrqYwA66mNAOupjgDrqY8A66mQAOupkQDrqZIA66mTAOuplADrqZUA66mWAOuplwDrqZgA66mZAOupmgDrqZsA66mcAOupnQDrqZ4A66mfAOupoADrqaEA66miAOupowDrqaQA66mlAOuppgDrqacA66moAOupqQDrqaoA66mrAOuprADrqa0A66muAOuprwDrqbAA66mxAOupsgDrqbMA66m0AOuptQDrqbYA66m3AOupuADrqbkA66m6AOupuwDrqbwA66m9AOupvgDrqb8A66qAAOuqgQDrqoIA66qDAOuqhADrqoUA66qGAOuqhwDrqogA66qJAOuqigDrqosA66qMAOuqjQDrqo4A66qPAOuqkADrqpEA66qSAOuqkwDrqpQA66qVAOuqlgDrqpcA66qYAOuqmQDrqpoA66qbAOuqnADrqp0A66qeAOuqnwDrqqAA66qhAOuqogDrqqMA66qkAOuqpQDrqqYA66qnAOuqqADrqqkA66qqAOuqqwDrqqwA66qtAOuqrgDrqq8A66qwAOuqsQDrqrIA66qzAOuqtADrqrUA66q2AOuqtwDrqrgA66q5AOuqugDrqrsA66q8AOuqvQDrqr4A66q/AOurgADrq4EA66uCAOurgwDrq4QA66uFAOurhgDrq4cA66uIAOuriQDrq4oA66uLAOurjADrq40A66uOAOurjwDrq5AA66uRAOurkgDrq5MA66uUAOurlQDrq5YA66uXAOurmADrq5kA66uaAOurmwDrq5wA66udAOurngDrq58A66ugAOuroQDrq6IA66ujAOurpADrq6UA66umAOurpwDrq6gA66upAOurqgDrq6sA66usAOurrQDrq64A66uvAOursADrq7EA66uyAOurswDrq7QA66u1AOurtgDrq7cA66u4AOuruQDrq7oA66u7AOurvADrq70A66u+AOurvwDrrIAA66yBAOusggDrrIMA66yEAOushQDrrIYA66yHAOusiADrrIkA66yKAOusiwDrrIwA66yNAOusjgDrrI8A66yQAOuskQDrrJIA66yTAOuslADrrJUA66yWAOuslwDrrJgA66yZAOusmgDrrJsA66ycAOusnQDrrJ4A66yfAOusoADrrKEA66yiAOusowDrrKQA66ylAOuspgDrrKcA66yoAOusqQDrrKoA66yrAOusrADrrK0A66yuAOusrwDrrLAA66yxAOussgDrrLMA66y0AOustQDrrLYA66y3AOusuADrrLkA66y6AOusuwDrrLwA66y9AOusvgDrrL8A662AAOutgQDrrYIA662DAOuthADrrYUA662GAOuthwDrrYgA662JAOutigDrrYsA662MAOutjQDrrY4A662PAOutkADrrZEA662SAOutkwDrrZQA662VAOutlgDrrZcA662YAOutmQDrrZoA662bAOutnADrrZ0A662eAOutnwDrraAA662hAOutogDrraMA662kAOutpQDrraYA662nAOutqADrrakA662qAOutqwDrrawA662tAOutrgDrra8A662wAOutsQDrrbIA662zAOuttADrrbUA6622AOuttwDrrbgA6625AOutugDrrbsA6628AOutvQDrrb4A662/AOuugADrroEA666CAOuugwDrroQA666FAOuuhgDrrocA666IAOuuiQDrrooA666LAOuujADrro0A666OAOuujwDrrpAA666RAOuukgDrrpMA666UAOuulQDrrpYA666XAOuumADrrpkA666aAOuumwDrrpwA666dAOuungDrrp8A666gAOuuoQDrrqIA666jAOuupADrrqUA666mAOuupwDrrqgA666pAOuuqgDrrqsA666sAOuurQDrrq4A666vAOuusADrrrEA666yAOuuswDrrrQA6661AOuutgDrrrcA6664AOuuuQDrrroA6667AOuuvADrrr0A666+AOuuvwDrr4AA66+BAOuvggDrr4MA66+EAOuvhQDrr4YA66+HAOuviADrr4kA66+KAOuviwDrr4wA66+NAOuvjgDrr48A66+QAOuvkQDrr5IA66+TAOuvlADrr5UA66+WAOuvlwDrr5gA66+ZAOuvmgDrr5sA66+cAOuvnQDrr54A66+fAOuvoADrr6EA66+iAOuvowDrr6QA66+lAOuvpgDrr6cA66+oAOuvqQDrr6oA66+rAOuvrADrr60A66+uAOuvrwDrr7AA66+xAOuvsgDrr7MA66+0AOuvtQDrr7YA66+3AOuvuADrr7kA66+6AOuvuwDrr7wA66+9AOuvvgDrr78A67CAAOuwgQDrsIIA67CDAOuwhADrsIUA67CGAOuwhwDrsIgA67CJAOuwigDrsIsA67CMAOuwjQDrsI4A67CPAOuwkADrsJEA67CSAOuwkwDrsJQA67CVAOuwlgDrsJcA67CYAOuwmQDrsJoA67CbAOuwnADrsJ0A67CeAOuwnwDrsKAA67ChAOuwogDrsKMA67CkAOuwpQDrsKYA67CnAOuwqADrsKkA67CqAOuwqwDrsKwA67CtAOuwrgDrsK8A67CwAOuwsQDrsLIA67CzAOuwtADrsLUA67C2AOuwtwDrsLgA67C5AOuwugDrsLsA67C8AOuwvQDrsL4A67C/AOuxgADrsYEA67GCAOuxgwDrsYQA67GFAOuxhgDrsYcA67GIAOuxiQDrsYoA67GLAOuxjADrsY0A67GOAOuxjwDrsZAA67GRAOuxkgDrsZMA67GUAOuxlQDrsZYA67GXAOuxmADrsZkA67GaAOuxmwDrsZwA67GdAOuxngDrsZ8A67GgAOuxoQDrsaIA67GjAOuxpADrsaUA67GmAOuxpwDrsagA67GpAOuxqgDrsasA67GsAOuxrQDrsa4A67GvAOuxsADrsbEA67GyAOuxswDrsbQA67G1AOuxtgDrsbcA67G4AOuxuQDrsboA67G7AOuxvADrsb0A67G+AOuxvwDrsoAA67KBAOuyggDrsoMA67KEAOuyhQDrsoYA67KHAOuyiADrsokA67KKAOuyiwDrsowA67KNAOuyjgDrso8A67KQAOuykQDrspIA67KTAOuylADrspUA67KWAOuylwDrspgA67KZAOuymgDrspsA67KcAOuynQDrsp4A67KfAOuyoADrsqEA67KiAOuyowDrsqQA67KlAOuypgDrsqcA67KoAOuyqQDrsqoA67KrAOuyrADrsq0A67KuAOuyrwDrsrAA67KxAOuysgDrsrMA67K0AOuytQDrsrYA67K3AOuyuADrsrkA67K6AOuyuwDrsrwA67K9AOuyvgDrsr8A67OAAOuzgQDrs4IA67ODAOuzhADrs4UA67OGAOuzhwDrs4gA67OJAOuzigDrs4sA67OMAOuzjQDrs44A67OPAOuzkADrs5EA67OSAOuzkwDrs5QA67OVAOuzlgDrs5cA67OYAOuzmQDrs5oA67ObAOuznADrs50A67OeAOuznwDrs6AA67OhAOuzogDrs6MA67OkAOuzpQDrs6YA67OnAOuzqADrs6kA67OqAOuzqwDrs6wA67OtAOuzrgDrs68A67OwAOuzsQDrs7IA67OzAOuztADrs7UA67O2AOuztwDrs7gA67O5AOuzugDrs7sA67O8AOuzvQDrs74A67O/AOu0gADrtIEA67SCAOu0gwDrtIQA67SFAOu0hgDrtIcA67SIAOu0iQDrtIoA67SLAOu0jADrtI0A67SOAOu0jwDrtJAA67SRAOu0kgDrtJMA67SUAOu0lQDrtJYA67SXAOu0mADrtJkA67SaAOu0mwDrtJwA67SdAOu0ngDrtJ8A67SgAOu0oQDrtKIA67SjAOu0pADrtKUA67SmAOu0pwDrtKgA67SpAOu0qgDrtKsA67SsAOu0rQDrtK4A67SvAOu0sADrtLEA67SyAOu0swDrtLQA67S1AOu0tgDrtLcA67S4AOu0uQDrtLoA67S7AOu0vADrtL0A67S+AOu0vwDrtYAA67WBAOu1ggDrtYMA67WEAOu1hQDrtYYA67WHAOu1iADrtYkA67WKAOu1iwDrtYwA67WNAOu1jgDrtY8A67WQAOu1kQDrtZIA67WTAOu1lADrtZUA67WWAOu1lwDrtZgA67WZAOu1mgDrtZsA67WcAOu1nQDrtZ4A67WfAOu1oADrtaEA67WiAOu1owDrtaQA67WlAOu1pgDrtacA67WoAOu1qQDrtaoA67WrAOu1rADrta0A67WuAOu1rwDrtbAA67WxAOu1sgDrtbMA67W0AOu1tQDrtbYA67W3AOu1uADrtbkA67W6AOu1uwDrtbwA67W9AOu1vgDrtb8A67aAAOu2gQDrtoIA67aDAOu2hADrtoUA67aGAOu2hwDrtogA67aJAOu2igDrtosA67aMAOu2jQDrto4A67aPAOu2kADrtpEA67aSAOu2kwDrtpQA67aVAOu2lgDrtpcA67aYAOu2mQDrtpoA67abAOu2nADrtp0A67aeAOu2nwDrtqAA67ahAOu2ogDrtqMA67akAOu2pQDrtqYA67anAOu2qADrtqkA67aqAOu2qwDrtqwA67atAOu2rgDrtq8A67awAOu2sQDrtrIA67azAOu2tADrtrUA67a2AOu2twDrtrgA67a5AOu2ugDrtrsA67a8AOu2vQDrtr4A67a/AOu3gADrt4EA67eCAOu3gwDrt4QA67eFAOu3hgDrt4cA67eIAOu3iQDrt4oA67eLAOu3jADrt40A67eOAOu3jwDrt5AA67eRAOu3kgDrt5MA67eUAOu3lQDrt5YA67eXAOu3mADrt5kA67eaAOu3mwDrt5wA67edAOu3ngDrt58A67egAOu3oQDrt6IA67ejAOu3pADrt6UA67emAOu3pwDrt6gA67epAOu3qgDrt6sA67esAOu3rQDrt64A67evAOu3sADrt7EA67eyAOu3swDrt7QA67e1AOu3tgDrt7cA67e4AOu3uQDrt7oA67e7AOu3vADrt70A67e+AOu3vwDruIAA67iBAOu4ggDruIMA67iEAOu4hQDruIYA67iHAOu4iADruIkA67iKAOu4iwDruIwA67iNAOu4jgDruI8A67iQAOu4kQDruJIA67iTAOu4lADruJUA67iWAOu4lwDruJgA67iZAOu4mgDruJsA67icAOu4nQDruJ4A67ifAOu4oADruKEA67iiAOu4owDruKQA67ilAOu4pgDruKcA67ioAOu4qQDruKoA67irAOu4rADruK0A67iuAOu4rwDruLAA67ixAOu4sgDruLMA67i0AOu4tQDruLYA67i3AOu4uADruLkA67i6AOu4uwDruLwA67i9AOu4vgDruL8A67mAAOu5gQDruYIA67mDAOu5hADruYUA67mGAOu5hwDruYgA67mJAOu5igDruYsA67mMAOu5jQDruY4A67mPAOu5kADruZEA67mSAOu5kwDruZQA67mVAOu5lgDruZcA67mYAOu5mQDruZoA67mbAOu5nADruZ0A67meAOu5nwDruaAA67mhAOu5ogDruaMA67mkAOu5pQDruaYA67mnAOu5qADruakA67mqAOu5qwDruawA67mtAOu5rgDrua8A67mwAOu5sQDrubIA67mzAOu5tADrubUA67m2AOu5twDrubgA67m5AOu5ugDrubsA67m8AOu5vQDrub4A67m/AOu6gADruoEA67qCAOu6gwDruoQA67qFAOu6hgDruocA67qIAOu6iQDruooA67qLAOu6jADruo0A67qOAOu6jwDrupAA67qRAOu6kgDrupMA67qUAOu6lQDrupYA67qXAOu6mADrupkA67qaAOu6mwDrupwA67qdAOu6ngDrup8A67qgAOu6oQDruqIA67qjAOu6pADruqUA67qmAOu6pwDruqgA67qpAOu6qgDruqsA67qsAOu6rQDruq4A67qvAOu6sADrurEA67qyAOu6swDrurQA67q1AOu6tgDrurcA67q4AOu6uQDruroA67q7AOu6vADrur0A67q+AOu6vwDru4AA67uBAOu7ggDru4MA67uEAOu7hQDru4YA67uHAOu7iADru4kA67uKAOu7iwDru4wA67uNAOu7jgDru48A67uQAOu7kQDru5IA67uTAOu7lADru5UA67uWAOu7lwDru5gA67uZAOu7mgDru5sA67ucAOu7nQDru54A67ufAOu7oADru6EA67uiAOu7owDru6QA67ulAOu7pgDru6cA67uoAOu7qQDru6oA67urAOu7rADru60A67uuAOu7rwDru7AA67uxAOu7sgDru7MA67u0AOu7tQDru7YA67u3AOu7uADru7kA67u6AOu7uwDru7wA67u9AOu7vgDru78A67yAAOu8gQDrvIIA67yDAOu8hADrvIUA67yGAOu8hwDrvIgA67yJAOu8igDrvIsA67yMAOu8jQDrvI4A67yPAOu8kADrvJEA67ySAOu8kwDrvJQA67yVAOu8lgDrvJcA67yYAOu8mQDrvJoA67ybAOu8nADrvJ0A67yeAOu8nwDrvKAA67yhAOu8ogDrvKMA67ykAOu8pQDrvKYA67ynAOu8qADrvKkA67yqAOu8qwDrvKwA67ytAOu8rgDrvK8A67ywAOu8sQDrvLIA67yzAOu8tADrvLUA67y2AOu8twDrvLgA67y5AOu8ugDrvLsA67y8AOu8vQDrvL4A67y/AOu9gADrvYEA672CAOu9gwDrvYQA672FAOu9hgDrvYcA672IAOu9iQDrvYoA672LAOu9jADrvY0A672OAOu9jwDrvZAA672RAOu9kgDrvZMA672UAOu9lQDrvZYA672XAOu9mADrvZkA672aAOu9mwDrvZwA672dAOu9ngDrvZ8A672gAOu9oQDrvaIA672jAOu9pADrvaUA672mAOu9pwDrvagA672pAOu9qgDrvasA672sAOu9rQDrva4A672vAOu9sADrvbEA672yAOu9swDrvbQA6721AOu9tgDrvbcA6724AOu9uQDrvboA6727AOu9vADrvb0A672+AOu9vwDrvoAA676BAOu+ggDrvoMA676EAOu+hQDrvoYA676HAOu+iADrvokA676KAOu+iwDrvowA676NAOu+jgDrvo8A676QAOu+kQDrvpIA676TAOu+lADrvpUA676WAOu+lwDrvpgA676ZAOu+mgDrvpsA676cAOu+nQDrvp4A676fAOu+oADrvqEA676iAOu+owDrvqQA676lAOu+pgDrvqcA676oAOu+qQDrvqoA676rAOu+rADrvq0A676uAOu+rwDrvrAA676xAOu+sgDrvrMA6760AOu+tQDrvrYA6763AOu+uADrvrkA6766AOu+uwDrvrwA6769AOu+vgDrvr8A67+AAOu/gQDrv4IA67+DAOu/hADrv4UA67+GAOu/hwDrv4gA67+JAOu/igDrv4sA67+MAOu/jQDrv44A67+PAOu/kADrv5EA67+SAOu/kwDrv5QA67+VAOu/lgDrv5cA67+YAOu/mQDrv5oA67+bAOu/nADrv50A67+eAOu/nwDrv6AA67+hAOu/ogDrv6MA67+kAOu/pQDrv6YA67+nAOu/qADrv6kA67+qAOu/qwDrv6wA67+tAOu/rgDrv68A67+wAOu/sQDrv7IA67+zAOu/tADrv7UA67+2AOu/twDrv7gA67+5AOu/ugDrv7sA67+8AOu/vQDrv74A67+/AOyAgADsgIEA7ICCAOyAgwDsgIQA7ICFAOyAhgDsgIcA7ICIAOyAiQDsgIoA7ICLAOyAjADsgI0A7ICOAOyAjwDsgJAA7ICRAOyAkgDsgJMA7ICUAOyAlQDsgJYA7ICXAOyAmADsgJkA7ICaAOyAmwDsgJwA7ICdAOyAngDsgJ8A7ICgAOyAoQDsgKIA7ICjAOyApADsgKUA7ICmAOyApwDsgKgA7ICpAOyAqgDsgKsA7ICsAOyArQDsgK4A7ICvAOyAsADsgLEA7ICyAOyAswDsgLQA7IC1AOyAtgDsgLcA7IC4AOyAuQDsgLoA7IC7AOyAvADsgL0A7IC+AOyAvwDsgYAA7IGBAOyBggDsgYMA7IGEAOyBhQDsgYYA7IGHAOyBiADsgYkA7IGKAOyBiwDsgYwA7IGNAOyBjgDsgY8A7IGQAOyBkQDsgZIA7IGTAOyBlADsgZUA7IGWAOyBlwDsgZgA7IGZAOyBmgDsgZsA7IGcAOyBnQDsgZ4A7IGfAOyBoADsgaEA7IGiAOyBowDsgaQA7IGlAOyBpgDsgacA7IGoAOyBqQDsgaoA7IGrAOyBrADsga0A7IGuAOyBrwDsgbAA7IGxAOyBsgDsgbMA7IG0AOyBtQDsgbYA7IG3AOyBuADsgbkA7IG6AOyBuwDsgbwA7IG9AOyBvgDsgb8A7IKAAOyCgQDsgoIA7IKDAOyChADsgoUA7IKGAOyChwDsgogA7IKJAOyCigDsgosA7IKMAOyCjQDsgo4A7IKPAOyCkADsgpEA7IKSAOyCkwDsgpQA7IKVAOyClgDsgpcA7IKYAOyCmQDsgpoA7IKbAOyCnADsgp0A7IKeAOyCnwDsgqAA7IKhAOyCogDsgqMA7IKkAOyCpQDsgqYA7IKnAOyCqADsgqkA7IKqAOyCqwDsgqwA7IKtAOyCrgDsgq8A7IKwAOyCsQDsgrIA7IKzAOyCtADsgrUA7IK2AOyCtwDsgrgA7IK5AOyCugDsgrsA7IK8AOyCvQDsgr4A7IK/AOyDgADsg4EA7IOCAOyDgwDsg4QA7IOFAOyDhgDsg4cA7IOIAOyDiQDsg4oA7IOLAOyDjADsg40A7IOOAOyDjwDsg5AA7IORAOyDkgDsg5MA7IOUAOyDlQDsg5YA7IOXAOyDmADsg5kA7IOaAOyDmwDsg5wA7IOdAOyDngDsg58A7IOgAOyDoQDsg6IA7IOjAOyDpADsg6UA7IOmAOyDpwDsg6gA7IOpAOyDqgDsg6sA7IOsAOyDrQDsg64A7IOvAOyDsADsg7EA7IOyAOyDswDsg7QA7IO1AOyDtgDsg7cA7IO4AOyDuQDsg7oA7IO7AOyDvADsg70A7IO+AOyDvwDshIAA7ISBAOyEggDshIMA7ISEAOyEhQDshIYA7ISHAOyEiADshIkA7ISKAOyEiwDshIwA7ISNAOyEjgDshI8A7ISQAOyEkQDshJIA7ISTAOyElADshJUA7ISWAOyElwDshJgA7ISZAOyEmgDshJsA7IScAOyEnQDshJ4A7ISfAOyEoADshKEA7ISiAOyEowDshKQA7ISlAOyEpgDshKcA7ISoAOyEqQDshKoA7ISrAOyErADshK0A7ISuAOyErwDshLAA7ISxAOyEsgDshLMA7IS0AOyEtQDshLYA7IS3AOyEuADshLkA7IS6AOyEuwDshLwA7IS9AOyEvgDshL8A7IWAAOyFgQDshYIA7IWDAOyFhADshYUA7IWGAOyFhwDshYgA7IWJAOyFigDshYsA7IWMAOyFjQDshY4A7IWPAOyFkADshZEA7IWSAOyFkwDshZQA7IWVAOyFlgDshZcA7IWYAOyFmQDshZoA7IWbAOyFnADshZ0A7IWeAOyFnwDshaAA7IWhAOyFogDshaMA7IWkAOyFpQDshaYA7IWnAOyFqADshakA7IWqAOyFqwDshawA7IWtAOyFrgDsha8A7IWwAOyFsQDshbIA7IWzAOyFtADshbUA7IW2AOyFtwDshbgA7IW5AOyFugDshbsA7IW8AOyFvQDshb4A7IW/AOyGgADshoEA7IaCAOyGgwDshoQA7IaFAOyGhgDshocA7IaIAOyGiQDshooA7IaLAOyGjADsho0A7IaOAOyGjwDshpAA7IaRAOyGkgDshpMA7IaUAOyGlQDshpYA7IaXAOyGmADshpkA7IaaAOyGmwDshpwA7IadAOyGngDshp8A7IagAOyGoQDshqIA7IajAOyGpADshqUA7IamAOyGpwDshqgA7IapAOyGqgDshqsA7IasAOyGrQDshq4A7IavAOyGsADshrEA7IayAOyGswDshrQA7Ia1AOyGtgDshrcA7Ia4AOyGuQDshroA7Ia7AOyGvADshr0A7Ia+AOyGvwDsh4AA7IeBAOyHggDsh4MA7IeEAOyHhQDsh4YA7IeHAOyHiADsh4kA7IeKAOyHiwDsh4wA7IeNAOyHjgDsh48A7IeQAOyHkQDsh5IA7IeTAOyHlADsh5UA7IeWAOyHlwDsh5gA7IeZAOyHmgDsh5sA7IecAOyHnQDsh54A7IefAOyHoADsh6EA7IeiAOyHowDsh6QA7IelAOyHpgDsh6cA7IeoAOyHqQDsh6oA7IerAOyHrADsh60A7IeuAOyHrwDsh7AA7IexAOyHsgDsh7MA7Ie0AOyHtQDsh7YA7Ie3AOyHuADsh7kA7Ie6AOyHuwDsh7wA7Ie9AOyHvgDsh78A7IiAAOyIgQDsiIIA7IiDAOyIhADsiIUA7IiGAOyIhwDsiIgA7IiJAOyIigDsiIsA7IiMAOyIjQDsiI4A7IiPAOyIkADsiJEA7IiSAOyIkwDsiJQA7IiVAOyIlgDsiJcA7IiYAOyImQDsiJoA7IibAOyInADsiJ0A7IieAOyInwDsiKAA7IihAOyIogDsiKMA7IikAOyIpQDsiKYA7IinAOyIqADsiKkA7IiqAOyIqwDsiKwA7IitAOyIrgDsiK8A7IiwAOyIsQDsiLIA7IizAOyItADsiLUA7Ii2AOyItwDsiLgA7Ii5AOyIugDsiLsA7Ii8AOyIvQDsiL4A7Ii/AOyJgADsiYEA7ImCAOyJgwDsiYQA7ImFAOyJhgDsiYcA7ImIAOyJiQDsiYoA7ImLAOyJjADsiY0A7ImOAOyJjwDsiZAA7ImRAOyJkgDsiZMA7ImUAOyJlQDsiZYA7ImXAOyJmADsiZkA7ImaAOyJmwDsiZwA7ImdAOyJngDsiZ8A7ImgAOyJoQDsiaIA7ImjAOyJpADsiaUA7ImmAOyJpwDsiagA7ImpAOyJqgDsiasA7ImsAOyJrQDsia4A7ImvAOyJsADsibEA7ImyAOyJswDsibQA7Im1AOyJtgDsibcA7Im4AOyJuQDsiboA7Im7AOyJvADsib0A7Im+AOyJvwDsioAA7IqBAOyKggDsioMA7IqEAOyKhQDsioYA7IqHAOyKiADsiokA7IqKAOyKiwDsiowA7IqNAOyKjgDsio8A7IqQAOyKkQDsipIA7IqTAOyKlADsipUA7IqWAOyKlwDsipgA7IqZAOyKmgDsipsA7IqcAOyKnQDsip4A7IqfAOyKoADsiqEA7IqiAOyKowDsiqQA7IqlAOyKpgDsiqcA7IqoAOyKqQDsiqoA7IqrAOyKrADsiq0A7IquAOyKrwDsirAA7IqxAOyKsgDsirMA7Iq0AOyKtQDsirYA7Iq3AOyKuADsirkA7Iq6AOyKuwDsirwA7Iq9AOyKvgDsir8A7IuAAOyLgQDsi4IA7IuDAOyLhADsi4UA7IuGAOyLhwDsi4gA7IuJAOyLigDsi4sA7IuMAOyLjQDsi44A7IuPAOyLkADsi5EA7IuSAOyLkwDsi5QA7IuVAOyLlgDsi5cA7IuYAOyLmQDsi5oA7IubAOyLnADsi50A7IueAOyLnwDsi6AA7IuhAOyLogDsi6MA7IukAOyLpQDsi6YA7IunAOyLqADsi6kA7IuqAOyLqwDsi6wA7IutAOyLrgDsi68A7IuwAOyLsQDsi7IA7IuzAOyLtADsi7UA7Iu2AOyLtwDsi7gA7Iu5AOyLugDsi7sA7Iu8AOyLvQDsi74A7Iu/AOyMgADsjIEA7IyCAOyMgwDsjIQA7IyFAOyMhgDsjIcA7IyIAOyMiQDsjIoA7IyLAOyMjADsjI0A7IyOAOyMjwDsjJAA7IyRAOyMkgDsjJMA7IyUAOyMlQDsjJYA7IyXAOyMmADsjJkA7IyaAOyMmwDsjJwA7IydAOyMngDsjJ8A7IygAOyMoQDsjKIA7IyjAOyMpADsjKUA7IymAOyMpwDsjKgA7IypAOyMqgDsjKsA7IysAOyMrQDsjK4A7IyvAOyMsADsjLEA7IyyAOyMswDsjLQA7Iy1AOyMtgDsjLcA7Iy4AOyMuQDsjLoA7Iy7AOyMvADsjL0A7Iy+AOyMvwDsjYAA7I2BAOyNggDsjYMA7I2EAOyNhQDsjYYA7I2HAOyNiADsjYkA7I2KAOyNiwDsjYwA7I2NAOyNjgDsjY8A7I2QAOyNkQDsjZIA7I2TAOyNlADsjZUA7I2WAOyNlwDsjZgA7I2ZAOyNmgDsjZsA7I2cAOyNnQDsjZ4A7I2fAOyNoADsjaEA7I2iAOyNowDsjaQA7I2lAOyNpgDsjacA7I2oAOyNqQDsjaoA7I2rAOyNrADsja0A7I2uAOyNrwDsjbAA7I2xAOyNsgDsjbMA7I20AOyNtQDsjbYA7I23AOyNuADsjbkA7I26AOyNuwDsjbwA7I29AOyNvgDsjb8A7I6AAOyOgQDsjoIA7I6DAOyOhADsjoUA7I6GAOyOhwDsjogA7I6JAOyOigDsjosA7I6MAOyOjQDsjo4A7I6PAOyOkADsjpEA7I6SAOyOkwDsjpQA7I6VAOyOlgDsjpcA7I6YAOyOmQDsjpoA7I6bAOyOnADsjp0A7I6eAOyOnwDsjqAA7I6hAOyOogDsjqMA7I6kAOyOpQDsjqYA7I6nAOyOqADsjqkA7I6qAOyOqwDsjqwA7I6tAOyOrgDsjq8A7I6wAOyOsQDsjrIA7I6zAOyOtADsjrUA7I62AOyOtwDsjrgA7I65AOyOugDsjrsA7I68AOyOvQDsjr4A7I6/AOyPgADsj4EA7I+CAOyPgwDsj4QA7I+FAOyPhgDsj4cA7I+IAOyPiQDsj4oA7I+LAOyPjADsj40A7I+OAOyPjwDsj5AA7I+RAOyPkgDsj5MA7I+UAOyPlQDsj5YA7I+XAOyPmADsj5kA7I+aAOyPmwDsj5wA7I+dAOyPngDsj58A7I+gAOyPoQDsj6IA7I+jAOyPpADsj6UA7I+mAOyPpwDsj6gA7I+pAOyPqgDsj6sA7I+sAOyPrQDsj64A7I+vAOyPsADsj7EA7I+yAOyPswDsj7QA7I+1AOyPtgDsj7cA7I+4AOyPuQDsj7oA7I+7AOyPvADsj70A7I++AOyPvwDskIAA7JCBAOyQggDskIMA7JCEAOyQhQDskIYA7JCHAOyQiADskIkA7JCKAOyQiwDskIwA7JCNAOyQjgDskI8A7JCQAOyQkQDskJIA7JCTAOyQlADskJUA7JCWAOyQlwDskJgA7JCZAOyQmgDskJsA7JCcAOyQnQDskJ4A7JCfAOyQoADskKEA7JCiAOyQowDskKQA7JClAOyQpgDskKcA7JCoAOyQqQDskKoA7JCrAOyQrADskK0A7JCuAOyQrwDskLAA7JCxAOyQsgDskLMA7JC0AOyQtQDskLYA7JC3AOyQuADskLkA7JC6AOyQuwDskLwA7JC9AOyQvgDskL8A7JGAAOyRgQDskYIA7JGDAOyRhADskYUA7JGGAOyRhwDskYgA7JGJAOyRigDskYsA7JGMAOyRjQDskY4A7JGPAOyRkADskZEA7JGSAOyRkwDskZQA7JGVAOyRlgDskZcA7JGYAOyRmQDskZoA7JGbAOyRnADskZ0A7JGeAOyRnwDskaAA7JGhAOyRogDskaMA7JGkAOyRpQDskaYA7JGnAOyRqADskakA7JGqAOyRqwDskawA7JGtAOyRrgDska8A7JGwAOyRsQDskbIA7JGzAOyRtADskbUA7JG2AOyRtwDskbgA7JG5AOyRugDskbsA7JG8AOyRvQDskb4A7JG/AOySgADskoEA7JKCAOySgwDskoQA7JKFAOyShgDskocA7JKIAOySiQDskooA7JKLAOySjADsko0A7JKOAOySjwDskpAA7JKRAOySkgDskpMA7JKUAOySlQDskpYA7JKXAOySmADskpkA7JKaAOySmwDskpwA7JKdAOySngDskp8A7JKgAOySoQDskqIA7JKjAOySpADskqUA7JKmAOySpwDskqgA7JKpAOySqgDskqsA7JKsAOySrQDskq4A7JKvAOySsADskrEA7JKyAOySswDskrQA7JK1AOyStgDskrcA7JK4AOySuQDskroA7JK7AOySvADskr0A7JK+AOySvwDsk4AA7JOBAOyTggDsk4MA7JOEAOyThQDsk4YA7JOHAOyTiADsk4kA7JOKAOyTiwDsk4wA7JONAOyTjgDsk48A7JOQAOyTkQDsk5IA7JOTAOyTlADsk5UA7JOWAOyTlwDsk5gA7JOZAOyTmgDsk5sA7JOcAOyTnQDsk54A7JOfAOyToADsk6EA7JOiAOyTowDsk6QA7JOlAOyTpgDsk6cA7JOoAOyTqQDsk6oA7JOrAOyTrADsk60A7JOuAOyTrwDsk7AA7JOxAOyTsgDsk7MA7JO0AOyTtQDsk7YA7JO3AOyTuADsk7kA7JO6AOyTuwDsk7wA7JO9AOyTvgDsk78A7JSAAOyUgQDslIIA7JSDAOyUhADslIUA7JSGAOyUhwDslIgA7JSJAOyUigDslIsA7JSMAOyUjQDslI4A7JSPAOyUkADslJEA7JSSAOyUkwDslJQA7JSVAOyUlgDslJcA7JSYAOyUmQDslJoA7JSbAOyUnADslJ0A7JSeAOyUnwDslKAA7JShAOyUogDslKMA7JSkAOyUpQDslKYA7JSnAOyUqADslKkA7JSqAOyUqwDslKwA7JStAOyUrgDslK8A7JSwAOyUsQDslLIA7JSzAOyUtADslLUA7JS2AOyUtwDslLgA7JS5AOyUugDslLsA7JS8AOyUvQDslL4A7JS/AOyVgADslYEA7JWCAOyVgwDslYQA7JWFAOyVhgDslYcA7JWIAOyViQDslYoA7JWLAOyVjADslY0A7JWOAOyVjwDslZAA7JWRAOyVkgDslZMA7JWUAOyVlQDslZYA7JWXAOyVmADslZkA7JWaAOyVmwDslZwA7JWdAOyVngDslZ8A7JWgAOyVoQDslaIA7JWjAOyVpADslaUA7JWmAOyVpwDslagA7JWpAOyVqgDslasA7JWsAOyVrQDsla4A7JWvAOyVsADslbEA7JWyAOyVswDslbQA7JW1AOyVtgDslbcA7JW4AOyVuQDslboA7JW7AOyVvADslb0A7JW+AOyVvwDsloAA7JaBAOyWggDsloMA7JaEAOyWhQDsloYA7JaHAOyWiADslokA7JaKAOyWiwDslowA7JaNAOyWjgDslo8A7JaQAOyWkQDslpIA7JaTAOyWlADslpUA7JaWAOyWlwDslpgA7JaZAOyWmgDslpsA7JacAOyWnQDslp4A7JafAOyWoADslqEA7JaiAOyWowDslqQA7JalAOyWpgDslqcA7JaoAOyWqQDslqoA7JarAOyWrADslq0A7JauAOyWrwDslrAA7JaxAOyWsgDslrMA7Ja0AOyWtQDslrYA7Ja3AOyWuADslrkA7Ja6AOyWuwDslrwA7Ja9AOyWvgDslr8A7JeAAOyXgQDsl4IA7JeDAOyXhADsl4UA7JeGAOyXhwDsl4gA7JeJAOyXigDsl4sA7JeMAOyXjQDsl44A7JePAOyXkADsl5EA7JeSAOyXkwDsl5QA7JeVAOyXlgDsl5cA7JeYAOyXmQDsl5oA7JebAOyXnADsl50A7JeeAOyXnwDsl6AA7JehAOyXogDsl6MA7JekAOyXpQDsl6YA7JenAOyXqADsl6kA7JeqAOyXqwDsl6wA7JetAOyXrgDsl68A7JewAOyXsQDsl7IA7JezAOyXtADsl7UA7Je2AOyXtwDsl7gA7Je5AOyXugDsl7sA7Je8AOyXvQDsl74A7Je/AOyYgADsmIEA7JiCAOyYgwDsmIQA7JiFAOyYhgDsmIcA7JiIAOyYiQDsmIoA7JiLAOyYjADsmI0A7JiOAOyYjwDsmJAA7JiRAOyYkgDsmJMA7JiUAOyYlQDsmJYA7JiXAOyYmADsmJkA7JiaAOyYmwDsmJwA7JidAOyYngDsmJ8A7JigAOyYoQDsmKIA7JijAOyYpADsmKUA7JimAOyYpwDsmKgA7JipAOyYqgDsmKsA7JisAOyYrQDsmK4A7JivAOyYsADsmLEA7JiyAOyYswDsmLQA7Ji1AOyYtgDsmLcA7Ji4AOyYuQDsmLoA7Ji7AOyYvADsmL0A7Ji+AOyYvwDsmYAA7JmBAOyZggDsmYMA7JmEAOyZhQDsmYYA7JmHAOyZiADsmYkA7JmKAOyZiwDsmYwA7JmNAOyZjgDsmY8A7JmQAOyZkQDsmZIA7JmTAOyZlADsmZUA7JmWAOyZlwDsmZgA7JmZAOyZmgDsmZsA7JmcAOyZnQDsmZ4A7JmfAOyZoADsmaEA7JmiAOyZowDsmaQA7JmlAOyZpgDsmacA7JmoAOyZqQDsmaoA7JmrAOyZrADsma0A7JmuAOyZrwDsmbAA7JmxAOyZsgDsmbMA7Jm0AOyZtQDsmbYA7Jm3AOyZuADsmbkA7Jm6AOyZuwDsmbwA7Jm9AOyZvgDsmb8A7JqAAOyagQDsmoIA7JqDAOyahADsmoUA7JqGAOyahwDsmogA7JqJAOyaigDsmosA7JqMAOyajQDsmo4A7JqPAOyakADsmpEA7JqSAOyakwDsmpQA7JqVAOyalgDsmpcA7JqYAOyamQDsmpoA7JqbAOyanADsmp0A7JqeAOyanwDsmqAA7JqhAOyaogDsmqMA7JqkAOyapQDsmqYA7JqnAOyaqADsmqkA7JqqAOyaqwDsmqwA7JqtAOyargDsmq8A7JqwAOyasQDsmrIA7JqzAOyatADsmrUA7Jq2AOyatwDsmrgA7Jq5AOyaugDsmrsA7Jq8AOyavQDsmr4A7Jq/AOybgADsm4EA7JuCAOybgwDsm4QA7JuFAOybhgDsm4cA7JuIAOybiQDsm4oA7JuLAOybjADsm40A7JuOAOybjwDsm5AA7JuRAOybkgDsm5MA7JuUAOyblQDsm5YA7JuXAOybmADsm5kA7JuaAOybmwDsm5wA7JudAOybngDsm58A7JugAOyboQDsm6IA7JujAOybpADsm6UA7JumAOybpwDsm6gA7JupAOybqgDsm6sA7JusAOybrQDsm64A7JuvAOybsADsm7EA7JuyAOybswDsm7QA7Ju1AOybtgDsm7cA7Ju4AOybuQDsm7oA7Ju7AOybvADsm70A7Ju+AOybvwDsnIAA7JyBAOycggDsnIMA7JyEAOychQDsnIYA7JyHAOyciADsnIkA7JyKAOyciwDsnIwA7JyNAOycjgDsnI8A7JyQAOyckQDsnJIA7JyTAOyclADsnJUA7JyWAOyclwDsnJgA7JyZAOycmgDsnJsA7JycAOycnQDsnJ4A7JyfAOycoADsnKEA7JyiAOycowDsnKQA7JylAOycpgDsnKcA7JyoAOycqQDsnKoA7JyrAOycrADsnK0A7JyuAOycrwDsnLAA7JyxAOycsgDsnLMA7Jy0AOyctQDsnLYA7Jy3AOycuADsnLkA7Jy6AOycuwDsnLwA7Jy9AOycvgDsnL8A7J2AAOydgQDsnYIA7J2DAOydhADsnYUA7J2GAOydhwDsnYgA7J2JAOydigDsnYsA7J2MAOydjQDsnY4A7J2PAOydkADsnZEA7J2SAOydkwDsnZQA7J2VAOydlgDsnZcA7J2YAOydmQDsnZoA7J2bAOydnADsnZ0A7J2eAOydnwDsnaAA7J2hAOydogDsnaMA7J2kAOydpQDsnaYA7J2nAOydqADsnakA7J2qAOydqwDsnawA7J2tAOydrgDsna8A7J2wAOydsQDsnbIA7J2zAOydtADsnbUA7J22AOydtwDsnbgA7J25AOydugDsnbsA7J28AOydvQDsnb4A7J2/AOyegADsnoEA7J6CAOyegwDsnoQA7J6FAOyehgDsnocA7J6IAOyeiQDsnooA7J6LAOyejADsno0A7J6OAOyejwDsnpAA7J6RAOyekgDsnpMA7J6UAOyelQDsnpYA7J6XAOyemADsnpkA7J6aAOyemwDsnpwA7J6dAOyengDsnp8A7J6gAOyeoQDsnqIA7J6jAOyepADsnqUA7J6mAOyepwDsnqgA7J6pAOyeqgDsnqsA7J6sAOyerQDsnq4A7J6vAOyesADsnrEA7J6yAOyeswDsnrQA7J61AOyetgDsnrcA7J64AOyeuQDsnroA7J67AOyevADsnr0A7J6+AOyevwDsn4AA7J+BAOyfggDsn4MA7J+EAOyfhQDsn4YA7J+HAOyfiADsn4kA7J+KAOyfiwDsn4wA7J+NAOyfjgDsn48A7J+QAOyfkQDsn5IA7J+TAOyflADsn5UA7J+WAOyflwDsn5gA7J+ZAOyfmgDsn5sA7J+cAOyfnQDsn54A7J+fAOyfoADsn6EA7J+iAOyfowDsn6QA7J+lAOyfpgDsn6cA7J+oAOyfqQDsn6oA7J+rAOyfrADsn60A7J+uAOyfrwDsn7AA7J+xAOyfsgDsn7MA7J+0AOyftQDsn7YA7J+3AOyfuADsn7kA7J+6AOyfuwDsn7wA7J+9AOyfvgDsn78A7KCAAOyggQDsoIIA7KCDAOyghADsoIUA7KCGAOyghwDsoIgA7KCJAOygigDsoIsA7KCMAOygjQDsoI4A7KCPAOygkADsoJEA7KCSAOygkwDsoJQA7KCVAOyglgDsoJcA7KCYAOygmQDsoJoA7KCbAOygnADsoJ0A7KCeAOygnwDsoKAA7KChAOygogDsoKMA7KCkAOygpQDsoKYA7KCnAOygqADsoKkA7KCqAOygqwDsoKwA7KCtAOygrgDsoK8A7KCwAOygsQDsoLIA7KCzAOygtADsoLUA7KC2AOygtwDsoLgA7KC5AOygugDsoLsA7KC8AOygvQDsoL4A7KC/AOyhgADsoYEA7KGCAOyhgwDsoYQA7KGFAOyhhgDsoYcA7KGIAOyhiQDsoYoA7KGLAOyhjADsoY0A7KGOAOyhjwDsoZAA7KGRAOyhkgDsoZMA7KGUAOyhlQDsoZYA7KGXAOyhmADsoZkA7KGaAOyhmwDsoZwA7KGdAOyhngDsoZ8A7KGgAOyhoQDsoaIA7KGjAOyhpADsoaUA7KGmAOyhpwDsoagA7KGpAOyhqgDsoasA7KGsAOyhrQDsoa4A7KGvAOyhsADsobEA7KGyAOyhswDsobQA7KG1AOyhtgDsobcA7KG4AOyhuQDsoboA7KG7AOyhvADsob0A7KG+AOyhvwDsooAA7KKBAOyiggDsooMA7KKEAOyihQDsooYA7KKHAOyiiADsookA7KKKAOyiiwDsoowA7KKNAOyijgDsoo8A7KKQAOyikQDsopIA7KKTAOyilADsopUA7KKWAOyilwDsopgA7KKZAOyimgDsopsA7KKcAOyinQDsop4A7KKfAOyioADsoqEA7KKiAOyiowDsoqQA7KKlAOyipgDsoqcA7KKoAOyiqQDsoqoA7KKrAOyirADsoq0A7KKuAOyirwDsorAA7KKxAOyisgDsorMA7KK0AOyitQDsorYA7KK3AOyiuADsorkA7KK6AOyiuwDsorwA7KK9AOyivgDsor8A7KOAAOyjgQDso4IA7KODAOyjhADso4UA7KOGAOyjhwDso4gA7KOJAOyjigDso4sA7KOMAOyjjQDso44A7KOPAOyjkADso5EA7KOSAOyjkwDso5QA7KOVAOyjlgDso5cA7KOYAOyjmQDso5oA7KObAOyjnADso50A7KOeAOyjnwDso6AA7KOhAOyjogDso6MA7KOkAOyjpQDso6YA7KOnAOyjqADso6kA7KOqAOyjqwDso6wA7KOtAOyjrgDso68A7KOwAOyjsQDso7IA7KOzAOyjtADso7UA7KO2AOyjtwDso7gA7KO5AOyjugDso7sA7KO8AOyjvOydmADso70A7KO+AOyjvwDspIAA7KSBAOykggDspIMA7KSEAOykhQDspIYA7KSHAOykiADspIkA7KSKAOykiwDspIwA7KSNAOykjgDspI8A7KSQAOykkQDspJIA7KSTAOyklADspJUA7KSWAOyklwDspJgA7KSZAOykmgDspJsA7KScAOyknQDspJ4A7KSfAOykoADspKEA7KSiAOykowDspKQA7KSlAOykpgDspKcA7KSoAOykqQDspKoA7KSrAOykrADspK0A7KSuAOykrwDspLAA7KSxAOyksgDspLMA7KS0AOyktQDspLYA7KS3AOykuADspLkA7KS6AOykuwDspLwA7KS9AOykvgDspL8A7KWAAOylgQDspYIA7KWDAOylhADspYUA7KWGAOylhwDspYgA7KWJAOyligDspYsA7KWMAOyljQDspY4A7KWPAOylkADspZEA7KWSAOylkwDspZQA7KWVAOyllgDspZcA7KWYAOylmQDspZoA7KWbAOylnADspZ0A7KWeAOylnwDspaAA7KWhAOylogDspaMA7KWkAOylpQDspaYA7KWnAOylqADspakA7KWqAOylqwDspawA7KWtAOylrgDspa8A7KWwAOylsQDspbIA7KWzAOyltADspbUA7KW2AOyltwDspbgA7KW5AOylugDspbsA7KW8AOylvQDspb4A7KW/AOymgADspoEA7KaCAOymgwDspoQA7KaFAOymhgDspocA7KaIAOymiQDspooA7KaLAOymjADspo0A7KaOAOymjwDsppAA7KaRAOymkgDsppMA7KaUAOymlQDsppYA7KaXAOymmADsppkA7KaaAOymmwDsppwA7KadAOymngDspp8A7KagAOymoQDspqIA7KajAOympADspqUA7KamAOympwDspqgA7KapAOymqgDspqsA7KasAOymrQDspq4A7KavAOymsADsprEA7KayAOymswDsprQA7Ka1AOymtgDsprcA7Ka4AOymuQDsproA7Ka7AOymvADspr0A7Ka+AOymvwDsp4AA7KeBAOynggDsp4MA7KeEAOynhQDsp4YA7KeHAOyniADsp4kA7KeKAOyniwDsp4wA7KeNAOynjgDsp48A7KeQAOynkQDsp5IA7KeTAOynlADsp5UA7KeWAOynlwDsp5gA7KeZAOynmgDsp5sA7KecAOynnQDsp54A7KefAOynoADsp6EA7KeiAOynowDsp6QA7KelAOynpgDsp6cA7KeoAOynqQDsp6oA7KerAOynrADsp60A7KeuAOynrwDsp7AA7KexAOynsgDsp7MA7Ke0AOyntQDsp7YA7Ke3AOynuADsp7kA7Ke6AOynuwDsp7wA7Ke9AOynvgDsp78A7KiAAOyogQDsqIIA7KiDAOyohADsqIUA7KiGAOyohwDsqIgA7KiJAOyoigDsqIsA7KiMAOyojQDsqI4A7KiPAOyokADsqJEA7KiSAOyokwDsqJQA7KiVAOyolgDsqJcA7KiYAOyomQDsqJoA7KibAOyonADsqJ0A7KieAOyonwDsqKAA7KihAOyoogDsqKMA7KikAOyopQDsqKYA7KinAOyoqADsqKkA7KiqAOyoqwDsqKwA7KitAOyorgDsqK8A7KiwAOyosQDsqLIA7KizAOyotADsqLUA7Ki2AOyotwDsqLgA7Ki5AOyougDsqLsA7Ki8AOyovQDsqL4A7Ki/AOypgADsqYEA7KmCAOypgwDsqYQA7KmFAOyphgDsqYcA7KmIAOypiQDsqYoA7KmLAOypjADsqY0A7KmOAOypjwDsqZAA7KmRAOypkgDsqZMA7KmUAOyplQDsqZYA7KmXAOypmADsqZkA7KmaAOypmwDsqZwA7KmdAOypngDsqZ8A7KmgAOypoQDsqaIA7KmjAOyppADsqaUA7KmmAOyppwDsqagA7KmpAOypqgDsqasA7KmsAOyprQDsqa4A7KmvAOypsADsqbEA7KmyAOypswDsqbQA7Km1AOyptgDsqbcA7Km4AOypuQDsqboA7Km7AOypvADsqb0A7Km+AOypvwDsqoAA7KqBAOyqggDsqoMA7KqEAOyqhQDsqoYA7KqHAOyqiADsqokA7KqKAOyqiwDsqowA7KqNAOyqjgDsqo8A7KqQAOyqkQDsqpIA7KqTAOyqlADsqpUA7KqWAOyqlwDsqpgA7KqZAOyqmgDsqpsA7KqcAOyqnQDsqp4A7KqfAOyqoADsqqEA7KqiAOyqowDsqqQA7KqlAOyqpgDsqqcA7KqoAOyqqQDsqqoA7KqrAOyqrADsqq0A7KquAOyqrwDsqrAA7KqxAOyqsgDsqrMA7Kq0AOyqtQDsqrYA7Kq3AOyquADsqrkA7Kq6AOyquwDsqrwA7Kq9AOyqvgDsqr8A7KuAAOyrgQDsq4IA7KuDAOyrhADsq4UA7KuGAOyrhwDsq4gA7KuJAOyrigDsq4sA7KuMAOyrjQDsq44A7KuPAOyrkADsq5EA7KuSAOyrkwDsq5QA7KuVAOyrlgDsq5cA7KuYAOyrmQDsq5oA7KubAOyrnADsq50A7KueAOyrnwDsq6AA7KuhAOyrogDsq6MA7KukAOyrpQDsq6YA7KunAOyrqADsq6kA7KuqAOyrqwDsq6wA7KutAOyrrgDsq68A7KuwAOyrsQDsq7IA7KuzAOyrtADsq7UA7Ku2AOyrtwDsq7gA7Ku5AOyrugDsq7sA7Ku8AOyrvQDsq74A7Ku/AOysgADsrIEA7KyCAOysgwDsrIQA7KyFAOyshgDsrIcA7KyIAOysiQDsrIoA7KyLAOysjADsrI0A7KyOAOysjwDsrJAA7KyRAOyskgDsrJMA7KyUAOyslQDsrJYA7KyXAOysmADsrJkA7KyaAOysmwDsrJwA7KydAOysngDsrJ8A7KygAOysoQDsrKIA7KyjAOyspADsrKUA7KymAOyspwDsrKgA7KypAOysqgDsrKsA7KysAOysrQDsrK4A7KyvAOyssADsrLEA7KyyAOysswDsrLQA7Ky1AOystgDsrLcA7Ky4AOysuQDsrLoA7Ky7AOysvADsrL0A7Ky+AOysvwDsrYAA7K2BAOytggDsrYMA7K2EAOythQDsrYYA7K2HAOytiADsrYkA7K2KAOytiwDsrYwA7K2NAOytjgDsrY8A7K2QAOytkQDsrZIA7K2TAOytlADsrZUA7K2WAOytlwDsrZgA7K2ZAOytmgDsrZsA7K2cAOytnQDsrZ4A7K2fAOytoADsraEA7K2iAOytowDsraQA7K2lAOytpgDsracA7K2oAOytqQDsraoA7K2rAOytrADsra0A7K2uAOytrwDsrbAA7K2xAOytsgDsrbMA7K20AOyttQDsrbYA7K23AOytuADsrbkA7K26AOytuwDsrbwA7K29AOytvgDsrb8A7K6AAOyugQDsroIA7K6DAOyuhADsroUA7K6GAOyuhwDsrogA7K6JAOyuigDsrosA7K6MAOyujQDsro4A7K6PAOyukADsrpEA7K6SAOyukwDsrpQA7K6VAOyulgDsrpcA7K6YAOyumQDsrpoA7K6bAOyunADsrp0A7K6eAOyunwDsrqAA7K6hAOyuogDsrqMA7K6kAOyupQDsrqYA7K6nAOyuqADsrqkA7K6qAOyuqwDsrqwA7K6tAOyurgDsrq8A7K6wAOyusQDsrrIA7K6zAOyutADsrrUA7K62AOyutwDsrrgA7K65AOyuugDsrrsA7K68AOyuvQDsrr4A7K6/AOyvgADsr4EA7K+CAOyvgwDsr4QA7K+FAOyvhgDsr4cA7K+IAOyviQDsr4oA7K+LAOyvjADsr40A7K+OAOyvjwDsr5AA7K+RAOyvkgDsr5MA7K+UAOyvlQDsr5YA7K+XAOyvmADsr5kA7K+aAOyvmwDsr5wA7K+dAOyvngDsr58A7K+gAOyvoQDsr6IA7K+jAOyvpADsr6UA7K+mAOyvpwDsr6gA7K+pAOyvqgDsr6sA7K+sAOyvrQDsr64A7K+vAOyvsADsr7EA7K+yAOyvswDsr7QA7K+1AOyvtgDsr7cA7K+4AOyvuQDsr7oA7K+7AOyvvADsr70A7K++AOyvvwDssIAA7LCBAOywggDssIMA7LCEAOywhQDssIYA7LCHAOywiADssIkA7LCKAOywiwDssIwA7LCNAOywjgDssI8A7LCQAOywkQDssJIA7LCTAOywlADssJUA7LCWAOywlwDssJgA7LCZAOywmgDssJsA7LCcAOywnQDssJ4A7LCfAOywoADssKEA7LCiAOywowDssKQA7LClAOywpgDssKcA7LCoAOywqQDssKoA7LCrAOywrADssK0A7LCuAOywrwDssLAA7LCxAOywsgDssLMA7LC0AOywtQDssLYA7LC3AOywuADssLjqs6AA7LC5AOywugDssLsA7LC8AOywvQDssL4A7LC/AOyxgADssYEA7LGCAOyxgwDssYQA7LGFAOyxhgDssYcA7LGIAOyxiQDssYoA7LGLAOyxjADssY0A7LGOAOyxjwDssZAA7LGRAOyxkgDssZMA7LGUAOyxlQDssZYA7LGXAOyxmADssZkA7LGaAOyxmwDssZwA7LGdAOyxngDssZ8A7LGgAOyxoQDssaIA7LGjAOyxpADssaUA7LGmAOyxpwDssagA7LGpAOyxqgDssasA7LGsAOyxrQDssa4A7LGvAOyxsADssbEA7LGyAOyxswDssbQA7LG1AOyxtgDssbcA7LG4AOyxuQDssboA7LG7AOyxvADssb0A7LG+AOyxvwDssoAA7LKBAOyyggDssoMA7LKEAOyyhQDssoYA7LKHAOyyiADssokA7LKKAOyyiwDssowA7LKNAOyyjgDsso8A7LKQAOyykQDsspIA7LKTAOyylADsspUA7LKWAOyylwDsspgA7LKZAOyymgDsspsA7LKcAOyynQDssp4A7LKfAOyyoADssqEA7LKiAOyyowDssqQA7LKlAOyypgDssqcA7LKoAOyyqQDssqoA7LKrAOyyrADssq0A7LKuAOyyrwDssrAA7LKxAOyysgDssrMA7LK0AOyytQDssrYA7LK3AOyyuADssrkA7LK6AOyyuwDssrwA7LK9AOyyvgDssr8A7LOAAOyzgQDss4IA7LODAOyzhADss4UA7LOGAOyzhwDss4gA7LOJAOyzigDss4sA7LOMAOyzjQDss44A7LOPAOyzkADss5EA7LOSAOyzkwDss5QA7LOVAOyzlgDss5cA7LOYAOyzmQDss5oA7LObAOyznADss50A7LOeAOyznwDss6AA7LOhAOyzogDss6MA7LOkAOyzpQDss6YA7LOnAOyzqADss6kA7LOqAOyzqwDss6wA7LOtAOyzrgDss68A7LOwAOyzsQDss7IA7LOzAOyztADss7UA7LO2AOyztwDss7gA7LO5AOyzugDss7sA7LO8AOyzvQDss74A7LO/AOy0gADstIEA7LSCAOy0gwDstIQA7LSFAOy0hgDstIcA7LSIAOy0iQDstIoA7LSLAOy0jADstI0A7LSOAOy0jwDstJAA7LSRAOy0kgDstJMA7LSUAOy0lQDstJYA7LSXAOy0mADstJkA7LSaAOy0mwDstJwA7LSdAOy0ngDstJ8A7LSgAOy0oQDstKIA7LSjAOy0pADstKUA7LSmAOy0pwDstKgA7LSpAOy0qgDstKsA7LSsAOy0rQDstK4A7LSvAOy0sADstLEA7LSyAOy0swDstLQA7LS1AOy0tgDstLcA7LS4AOy0uQDstLoA7LS7AOy0vADstL0A7LS+AOy0vwDstYAA7LWBAOy1ggDstYMA7LWEAOy1hQDstYYA7LWHAOy1iADstYkA7LWKAOy1iwDstYwA7LWNAOy1jgDstY8A7LWQAOy1kQDstZIA7LWTAOy1lADstZUA7LWWAOy1lwDstZgA7LWZAOy1mgDstZsA7LWcAOy1nQDstZ4A7LWfAOy1oADstaEA7LWiAOy1owDstaQA7LWlAOy1pgDstacA7LWoAOy1qQDstaoA7LWrAOy1rADsta0A7LWuAOy1rwDstbAA7LWxAOy1sgDstbMA7LW0AOy1tQDstbYA7LW3AOy1uADstbkA7LW6AOy1uwDstbwA7LW9AOy1vgDstb8A7LaAAOy2gQDstoIA7LaDAOy2hADstoUA7LaGAOy2hwDstogA7LaJAOy2igDstosA7LaMAOy2jQDsto4A7LaPAOy2kADstpEA7LaSAOy2kwDstpQA7LaVAOy2lgDstpcA7LaYAOy2mQDstpoA7LabAOy2nADstp0A7LaeAOy2nwDstqAA7LahAOy2ogDstqMA7LakAOy2pQDstqYA7LanAOy2qADstqkA7LaqAOy2qwDstqwA7LatAOy2rgDstq8A7LawAOy2sQDstrIA7LazAOy2tADstrUA7La2AOy2twDstrgA7La5AOy2ugDstrsA7La8AOy2vQDstr4A7La/AOy3gADst4EA7LeCAOy3gwDst4QA7LeFAOy3hgDst4cA7LeIAOy3iQDst4oA7LeLAOy3jADst40A7LeOAOy3jwDst5AA7LeRAOy3kgDst5MA7LeUAOy3lQDst5YA7LeXAOy3mADst5kA7LeaAOy3mwDst5wA7LedAOy3ngDst58A7LegAOy3oQDst6IA7LejAOy3pADst6UA7LemAOy3pwDst6gA7LepAOy3qgDst6sA7LesAOy3rQDst64A7LevAOy3sADst7EA7LeyAOy3swDst7QA7Le1AOy3tgDst7cA7Le4AOy3uQDst7oA7Le7AOy3vADst70A7Le+AOy3vwDsuIAA7LiBAOy4ggDsuIMA7LiEAOy4hQDsuIYA7LiHAOy4iADsuIkA7LiKAOy4iwDsuIwA7LiNAOy4jgDsuI8A7LiQAOy4kQDsuJIA7LiTAOy4lADsuJUA7LiWAOy4lwDsuJgA7LiZAOy4mgDsuJsA7LicAOy4nQDsuJ4A7LifAOy4oADsuKEA7LiiAOy4owDsuKQA7LilAOy4pgDsuKcA7LioAOy4qQDsuKoA7LirAOy4rADsuK0A7LiuAOy4rwDsuLAA7LixAOy4sgDsuLMA7Li0AOy4tQDsuLYA7Li3AOy4uADsuLkA7Li6AOy4uwDsuLwA7Li9AOy4vgDsuL8A7LmAAOy5gQDsuYIA7LmDAOy5hADsuYUA7LmGAOy5hwDsuYgA7LmJAOy5igDsuYsA7LmMAOy5jQDsuY4A7LmPAOy5kADsuZEA7LmSAOy5kwDsuZQA7LmVAOy5lgDsuZcA7LmYAOy5mQDsuZoA7LmbAOy5nADsuZ0A7LmeAOy5nwDsuaAA7LmhAOy5ogDsuaMA7LmkAOy5pQDsuaYA7LmnAOy5qADsuakA7LmqAOy5qwDsuawA7LmtAOy5rgDsua8A7LmwAOy5sQDsubIA7LmzAOy5tADsubUA7Lm2AOy5twDsubgA7Lm5AOy5ugDsubsA7Lm8AOy5vQDsub4A7Lm/AOy6gADsuoEA7LqCAOy6gwDsuoQA7LqFAOy6hgDsuocA7LqIAOy6iQDsuooA7LqLAOy6jADsuo0A7LqOAOy6jwDsupAA7LqRAOy6kgDsupMA7LqUAOy6lQDsupYA7LqXAOy6mADsupkA7LqaAOy6mwDsupwA7LqdAOy6ngDsup8A7LqgAOy6oQDsuqIA7LqjAOy6pADsuqUA7LqmAOy6pwDsuqgA7LqpAOy6qgDsuqsA7LqsAOy6rQDsuq4A7LqvAOy6sADsurEA7LqyAOy6swDsurQA7Lq1AOy6tgDsurcA7Lq4AOy6uQDsuroA7Lq7AOy6vADsur0A7Lq+AOy6vwDsu4AA7LuBAOy7ggDsu4MA7LuEAOy7hQDsu4YA7LuHAOy7iADsu4kA7LuKAOy7iwDsu4wA7LuNAOy7jgDsu48A7LuQAOy7kQDsu5IA7LuTAOy7lADsu5UA7LuWAOy7lwDsu5gA7LuZAOy7mgDsu5sA7LucAOy7nQDsu54A7LufAOy7oADsu6EA7LuiAOy7owDsu6QA7LulAOy7pgDsu6cA7LuoAOy7qQDsu6oA7LurAOy7rADsu60A7LuuAOy7rwDsu7AA7LuxAOy7sgDsu7MA7Lu0AOy7tQDsu7YA7Lu3AOy7uADsu7kA7Lu6AOy7uwDsu7wA7Lu9AOy7vgDsu78A7LyAAOy8gQDsvIIA7LyDAOy8hADsvIUA7LyGAOy8hwDsvIgA7LyJAOy8igDsvIsA7LyMAOy8jQDsvI4A7LyPAOy8kADsvJEA7LySAOy8kwDsvJQA7LyVAOy8lgDsvJcA7LyYAOy8mQDsvJoA7LybAOy8nADsvJ0A7LyeAOy8nwDsvKAA7LyhAOy8ogDsvKMA7LykAOy8pQDsvKYA7LynAOy8qADsvKkA7LyqAOy8qwDsvKwA7LytAOy8rgDsvK8A7LywAOy8sQDsvLIA7LyzAOy8tADsvLUA7Ly2AOy8twDsvLgA7Ly5AOy8ugDsvLsA7Ly8AOy8vQDsvL4A7Ly/AOy9gADsvYEA7L2CAOy9gwDsvYQA7L2FAOy9hgDsvYcA7L2IAOy9iQDsvYoA7L2LAOy9jADsvY0A7L2OAOy9jwDsvZAA7L2RAOy9kgDsvZMA7L2UAOy9lQDsvZYA7L2XAOy9mADsvZkA7L2aAOy9mwDsvZwA7L2dAOy9ngDsvZ8A7L2gAOy9oQDsvaIA7L2jAOy9pADsvaUA7L2mAOy9pwDsvagA7L2pAOy9qgDsvasA7L2sAOy9rQDsva4A7L2vAOy9sADsvbEA7L2yAOy9swDsvbQA7L21AOy9tgDsvbcA7L24AOy9uQDsvboA7L27AOy9vADsvb0A7L2+AOy9vwDsvoAA7L6BAOy+ggDsvoMA7L6EAOy+hQDsvoYA7L6HAOy+iADsvokA7L6KAOy+iwDsvowA7L6NAOy+jgDsvo8A7L6QAOy+kQDsvpIA7L6TAOy+lADsvpUA7L6WAOy+lwDsvpgA7L6ZAOy+mgDsvpsA7L6cAOy+nQDsvp4A7L6fAOy+oADsvqEA7L6iAOy+owDsvqQA7L6lAOy+pgDsvqcA7L6oAOy+qQDsvqoA7L6rAOy+rADsvq0A7L6uAOy+rwDsvrAA7L6xAOy+sgDsvrMA7L60AOy+tQDsvrYA7L63AOy+uADsvrkA7L66AOy+uwDsvrwA7L69AOy+vgDsvr8A7L+AAOy/gQDsv4IA7L+DAOy/hADsv4UA7L+GAOy/hwDsv4gA7L+JAOy/igDsv4sA7L+MAOy/jQDsv44A7L+PAOy/kADsv5EA7L+SAOy/kwDsv5QA7L+VAOy/lgDsv5cA7L+YAOy/mQDsv5oA7L+bAOy/nADsv50A7L+eAOy/nwDsv6AA7L+hAOy/ogDsv6MA7L+kAOy/pQDsv6YA7L+nAOy/qADsv6kA7L+qAOy/qwDsv6wA7L+tAOy/rgDsv68A7L+wAOy/sQDsv7IA7L+zAOy/tADsv7UA7L+2AOy/twDsv7gA7L+5AOy/ugDsv7sA7L+8AOy/vQDsv74A7L+/AO2AgADtgIEA7YCCAO2AgwDtgIQA7YCFAO2AhgDtgIcA7YCIAO2AiQDtgIoA7YCLAO2AjADtgI0A7YCOAO2AjwDtgJAA7YCRAO2AkgDtgJMA7YCUAO2AlQDtgJYA7YCXAO2AmADtgJkA7YCaAO2AmwDtgJwA7YCdAO2AngDtgJ8A7YCgAO2AoQDtgKIA7YCjAO2ApADtgKUA7YCmAO2ApwDtgKgA7YCpAO2AqgDtgKsA7YCsAO2ArQDtgK4A7YCvAO2AsADtgLEA7YCyAO2AswDtgLQA7YC1AO2AtgDtgLcA7YC4AO2AuQDtgLoA7YC7AO2AvADtgL0A7YC+AO2AvwDtgYAA7YGBAO2BggDtgYMA7YGEAO2BhQDtgYYA7YGHAO2BiADtgYkA7YGKAO2BiwDtgYwA7YGNAO2BjgDtgY8A7YGQAO2BkQDtgZIA7YGTAO2BlADtgZUA7YGWAO2BlwDtgZgA7YGZAO2BmgDtgZsA7YGcAO2BnQDtgZ4A7YGfAO2BoADtgaEA7YGiAO2BowDtgaQA7YGlAO2BpgDtgacA7YGoAO2BqQDtgaoA7YGrAO2BrADtga0A7YGuAO2BrwDtgbAA7YGxAO2BsgDtgbMA7YG0AO2BtQDtgbYA7YG3AO2BuADtgbkA7YG6AO2BuwDtgbwA7YG9AO2BvgDtgb8A7YKAAO2CgQDtgoIA7YKDAO2ChADtgoUA7YKGAO2ChwDtgogA7YKJAO2CigDtgosA7YKMAO2CjQDtgo4A7YKPAO2CkADtgpEA7YKSAO2CkwDtgpQA7YKVAO2ClgDtgpcA7YKYAO2CmQDtgpoA7YKbAO2CnADtgp0A7YKeAO2CnwDtgqAA7YKhAO2CogDtgqMA7YKkAO2CpQDtgqYA7YKnAO2CqADtgqkA7YKqAO2CqwDtgqwA7YKtAO2CrgDtgq8A7YKwAO2CsQDtgrIA7YKzAO2CtADtgrUA7YK2AO2CtwDtgrgA7YK5AO2CugDtgrsA7YK8AO2CvQDtgr4A7YK/AO2DgADtg4EA7YOCAO2DgwDtg4QA7YOFAO2DhgDtg4cA7YOIAO2DiQDtg4oA7YOLAO2DjADtg40A7YOOAO2DjwDtg5AA7YORAO2DkgDtg5MA7YOUAO2DlQDtg5YA7YOXAO2DmADtg5kA7YOaAO2DmwDtg5wA7YOdAO2DngDtg58A7YOgAO2DoQDtg6IA7YOjAO2DpADtg6UA7YOmAO2DpwDtg6gA7YOpAO2DqgDtg6sA7YOsAO2DrQDtg64A7YOvAO2DsADtg7EA7YOyAO2DswDtg7QA7YO1AO2DtgDtg7cA7YO4AO2DuQDtg7oA7YO7AO2DvADtg70A7YO+AO2DvwDthIAA7YSBAO2EggDthIMA7YSEAO2EhQDthIYA7YSHAO2EiADthIkA7YSKAO2EiwDthIwA7YSNAO2EjgDthI8A7YSQAO2EkQDthJIA7YSTAO2ElADthJUA7YSWAO2ElwDthJgA7YSZAO2EmgDthJsA7YScAO2EnQDthJ4A7YSfAO2EoADthKEA7YSiAO2EowDthKQA7YSlAO2EpgDthKcA7YSoAO2EqQDthKoA7YSrAO2ErADthK0A7YSuAO2ErwDthLAA7YSxAO2EsgDthLMA7YS0AO2EtQDthLYA7YS3AO2EuADthLkA7YS6AO2EuwDthLwA7YS9AO2EvgDthL8A7YWAAO2FgQDthYIA7YWDAO2FhADthYUA7YWGAO2FhwDthYgA7YWJAO2FigDthYsA7YWMAO2FjQDthY4A7YWPAO2FkADthZEA7YWSAO2FkwDthZQA7YWVAO2FlgDthZcA7YWYAO2FmQDthZoA7YWbAO2FnADthZ0A7YWeAO2FnwDthaAA7YWhAO2FogDthaMA7YWkAO2FpQDthaYA7YWnAO2FqADthakA7YWqAO2FqwDthawA7YWtAO2FrgDtha8A7YWwAO2FsQDthbIA7YWzAO2FtADthbUA7YW2AO2FtwDthbgA7YW5AO2FugDthbsA7YW8AO2FvQDthb4A7YW/AO2GgADthoEA7YaCAO2GgwDthoQA7YaFAO2GhgDthocA7YaIAO2GiQDthooA7YaLAO2GjADtho0A7YaOAO2GjwDthpAA7YaRAO2GkgDthpMA7YaUAO2GlQDthpYA7YaXAO2GmADthpkA7YaaAO2GmwDthpwA7YadAO2GngDthp8A7YagAO2GoQDthqIA7YajAO2GpADthqUA7YamAO2GpwDthqgA7YapAO2GqgDthqsA7YasAO2GrQDthq4A7YavAO2GsADthrEA7YayAO2GswDthrQA7Ya1AO2GtgDthrcA7Ya4AO2GuQDthroA7Ya7AO2GvADthr0A7Ya+AO2GvwDth4AA7YeBAO2HggDth4MA7YeEAO2HhQDth4YA7YeHAO2HiADth4kA7YeKAO2HiwDth4wA7YeNAO2HjgDth48A7YeQAO2HkQDth5IA7YeTAO2HlADth5UA7YeWAO2HlwDth5gA7YeZAO2HmgDth5sA7YecAO2HnQDth54A7YefAO2HoADth6EA7YeiAO2HowDth6QA7YelAO2HpgDth6cA7YeoAO2HqQDth6oA7YerAO2HrADth60A7YeuAO2HrwDth7AA7YexAO2HsgDth7MA7Ye0AO2HtQDth7YA7Ye3AO2HuADth7kA7Ye6AO2HuwDth7wA7Ye9AO2HvgDth78A7YiAAO2IgQDtiIIA7YiDAO2IhADtiIUA7YiGAO2IhwDtiIgA7YiJAO2IigDtiIsA7YiMAO2IjQDtiI4A7YiPAO2IkADtiJEA7YiSAO2IkwDtiJQA7YiVAO2IlgDtiJcA7YiYAO2ImQDtiJoA7YibAO2InADtiJ0A7YieAO2InwDtiKAA7YihAO2IogDtiKMA7YikAO2IpQDtiKYA7YinAO2IqADtiKkA7YiqAO2IqwDtiKwA7YitAO2IrgDtiK8A7YiwAO2IsQDtiLIA7YizAO2ItADtiLUA7Yi2AO2ItwDtiLgA7Yi5AO2IugDtiLsA7Yi8AO2IvQDtiL4A7Yi/AO2JgADtiYEA7YmCAO2JgwDtiYQA7YmFAO2JhgDtiYcA7YmIAO2JiQDtiYoA7YmLAO2JjADtiY0A7YmOAO2JjwDtiZAA7YmRAO2JkgDtiZMA7YmUAO2JlQDtiZYA7YmXAO2JmADtiZkA7YmaAO2JmwDtiZwA7YmdAO2JngDtiZ8A7YmgAO2JoQDtiaIA7YmjAO2JpADtiaUA7YmmAO2JpwDtiagA7YmpAO2JqgDtiasA7YmsAO2JrQDtia4A7YmvAO2JsADtibEA7YmyAO2JswDtibQA7Ym1AO2JtgDtibcA7Ym4AO2JuQDtiboA7Ym7AO2JvADtib0A7Ym+AO2JvwDtioAA7YqBAO2KggDtioMA7YqEAO2KhQDtioYA7YqHAO2KiADtiokA7YqKAO2KiwDtiowA7YqNAO2KjgDtio8A7YqQAO2KkQDtipIA7YqTAO2KlADtipUA7YqWAO2KlwDtipgA7YqZAO2KmgDtipsA7YqcAO2KnQDtip4A7YqfAO2KoADtiqEA7YqiAO2KowDtiqQA7YqlAO2KpgDtiqcA7YqoAO2KqQDtiqoA7YqrAO2KrADtiq0A7YquAO2KrwDtirAA7YqxAO2KsgDtirMA7Yq0AO2KtQDtirYA7Yq3AO2KuADtirkA7Yq6AO2KuwDtirwA7Yq9AO2KvgDtir8A7YuAAO2LgQDti4IA7YuDAO2LhADti4UA7YuGAO2LhwDti4gA7YuJAO2LigDti4sA7YuMAO2LjQDti44A7YuPAO2LkADti5EA7YuSAO2LkwDti5QA7YuVAO2LlgDti5cA7YuYAO2LmQDti5oA7YubAO2LnADti50A7YueAO2LnwDti6AA7YuhAO2LogDti6MA7YukAO2LpQDti6YA7YunAO2LqADti6kA7YuqAO2LqwDti6wA7YutAO2LrgDti68A7YuwAO2LsQDti7IA7YuzAO2LtADti7UA7Yu2AO2LtwDti7gA7Yu5AO2LugDti7sA7Yu8AO2LvQDti74A7Yu/AO2MgADtjIEA7YyCAO2MgwDtjIQA7YyFAO2MhgDtjIcA7YyIAO2MiQDtjIoA7YyLAO2MjADtjI0A7YyOAO2MjwDtjJAA7YyRAO2MkgDtjJMA7YyUAO2MlQDtjJYA7YyXAO2MmADtjJkA7YyaAO2MmwDtjJwA7YydAO2MngDtjJ8A7YygAO2MoQDtjKIA7YyjAO2MpADtjKUA7YymAO2MpwDtjKgA7YypAO2MqgDtjKsA7YysAO2MrQDtjK4A7YyvAO2MsADtjLEA7YyyAO2MswDtjLQA7Yy1AO2MtgDtjLcA7Yy4AO2MuQDtjLoA7Yy7AO2MvADtjL0A7Yy+AO2MvwDtjYAA7Y2BAO2NggDtjYMA7Y2EAO2NhQDtjYYA7Y2HAO2NiADtjYkA7Y2KAO2NiwDtjYwA7Y2NAO2NjgDtjY8A7Y2QAO2NkQDtjZIA7Y2TAO2NlADtjZUA7Y2WAO2NlwDtjZgA7Y2ZAO2NmgDtjZsA7Y2cAO2NnQDtjZ4A7Y2fAO2NoADtjaEA7Y2iAO2NowDtjaQA7Y2lAO2NpgDtjacA7Y2oAO2NqQDtjaoA7Y2rAO2NrADtja0A7Y2uAO2NrwDtjbAA7Y2xAO2NsgDtjbMA7Y20AO2NtQDtjbYA7Y23AO2NuADtjbkA7Y26AO2NuwDtjbwA7Y29AO2NvgDtjb8A7Y6AAO2OgQDtjoIA7Y6DAO2OhADtjoUA7Y6GAO2OhwDtjogA7Y6JAO2OigDtjosA7Y6MAO2OjQDtjo4A7Y6PAO2OkADtjpEA7Y6SAO2OkwDtjpQA7Y6VAO2OlgDtjpcA7Y6YAO2OmQDtjpoA7Y6bAO2OnADtjp0A7Y6eAO2OnwDtjqAA7Y6hAO2OogDtjqMA7Y6kAO2OpQDtjqYA7Y6nAO2OqADtjqkA7Y6qAO2OqwDtjqwA7Y6tAO2OrgDtjq8A7Y6wAO2OsQDtjrIA7Y6zAO2OtADtjrUA7Y62AO2OtwDtjrgA7Y65AO2OugDtjrsA7Y68AO2OvQDtjr4A7Y6/AO2PgADtj4EA7Y+CAO2PgwDtj4QA7Y+FAO2PhgDtj4cA7Y+IAO2PiQDtj4oA7Y+LAO2PjADtj40A7Y+OAO2PjwDtj5AA7Y+RAO2PkgDtj5MA7Y+UAO2PlQDtj5YA7Y+XAO2PmADtj5kA7Y+aAO2PmwDtj5wA7Y+dAO2PngDtj58A7Y+gAO2PoQDtj6IA7Y+jAO2PpADtj6UA7Y+mAO2PpwDtj6gA7Y+pAO2PqgDtj6sA7Y+sAO2PrQDtj64A7Y+vAO2PsADtj7EA7Y+yAO2PswDtj7QA7Y+1AO2PtgDtj7cA7Y+4AO2PuQDtj7oA7Y+7AO2PvADtj70A7Y++AO2PvwDtkIAA7ZCBAO2QggDtkIMA7ZCEAO2QhQDtkIYA7ZCHAO2QiADtkIkA7ZCKAO2QiwDtkIwA7ZCNAO2QjgDtkI8A7ZCQAO2QkQDtkJIA7ZCTAO2QlADtkJUA7ZCWAO2QlwDtkJgA7ZCZAO2QmgDtkJsA7ZCcAO2QnQDtkJ4A7ZCfAO2QoADtkKEA7ZCiAO2QowDtkKQA7ZClAO2QpgDtkKcA7ZCoAO2QqQDtkKoA7ZCrAO2QrADtkK0A7ZCuAO2QrwDtkLAA7ZCxAO2QsgDtkLMA7ZC0AO2QtQDtkLYA7ZC3AO2QuADtkLkA7ZC6AO2QuwDtkLwA7ZC9AO2QvgDtkL8A7ZGAAO2RgQDtkYIA7ZGDAO2RhADtkYUA7ZGGAO2RhwDtkYgA7ZGJAO2RigDtkYsA7ZGMAO2RjQDtkY4A7ZGPAO2RkADtkZEA7ZGSAO2RkwDtkZQA7ZGVAO2RlgDtkZcA7ZGYAO2RmQDtkZoA7ZGbAO2RnADtkZ0A7ZGeAO2RnwDtkaAA7ZGhAO2RogDtkaMA7ZGkAO2RpQDtkaYA7ZGnAO2RqADtkakA7ZGqAO2RqwDtkawA7ZGtAO2RrgDtka8A7ZGwAO2RsQDtkbIA7ZGzAO2RtADtkbUA7ZG2AO2RtwDtkbgA7ZG5AO2RugDtkbsA7ZG8AO2RvQDtkb4A7ZG/AO2SgADtkoEA7ZKCAO2SgwDtkoQA7ZKFAO2ShgDtkocA7ZKIAO2SiQDtkooA7ZKLAO2SjADtko0A7ZKOAO2SjwDtkpAA7ZKRAO2SkgDtkpMA7ZKUAO2SlQDtkpYA7ZKXAO2SmADtkpkA7ZKaAO2SmwDtkpwA7ZKdAO2SngDtkp8A7ZKgAO2SoQDtkqIA7ZKjAO2SpADtkqUA7ZKmAO2SpwDtkqgA7ZKpAO2SqgDtkqsA7ZKsAO2SrQDtkq4A7ZKvAO2SsADtkrEA7ZKyAO2SswDtkrQA7ZK1AO2StgDtkrcA7ZK4AO2SuQDtkroA7ZK7AO2SvADtkr0A7ZK+AO2SvwDtk4AA7ZOBAO2TggDtk4MA7ZOEAO2ThQDtk4YA7ZOHAO2TiADtk4kA7ZOKAO2TiwDtk4wA7ZONAO2TjgDtk48A7ZOQAO2TkQDtk5IA7ZOTAO2TlADtk5UA7ZOWAO2TlwDtk5gA7ZOZAO2TmgDtk5sA7ZOcAO2TnQDtk54A7ZOfAO2ToADtk6EA7ZOiAO2TowDtk6QA7ZOlAO2TpgDtk6cA7ZOoAO2TqQDtk6oA7ZOrAO2TrADtk60A7ZOuAO2TrwDtk7AA7ZOxAO2TsgDtk7MA7ZO0AO2TtQDtk7YA7ZO3AO2TuADtk7kA7ZO6AO2TuwDtk7wA7ZO9AO2TvgDtk78A7ZSAAO2UgQDtlIIA7ZSDAO2UhADtlIUA7ZSGAO2UhwDtlIgA7ZSJAO2UigDtlIsA7ZSMAO2UjQDtlI4A7ZSPAO2UkADtlJEA7ZSSAO2UkwDtlJQA7ZSVAO2UlgDtlJcA7ZSYAO2UmQDtlJoA7ZSbAO2UnADtlJ0A7ZSeAO2UnwDtlKAA7ZShAO2UogDtlKMA7ZSkAO2UpQDtlKYA7ZSnAO2UqADtlKkA7ZSqAO2UqwDtlKwA7ZStAO2UrgDtlK8A7ZSwAO2UsQDtlLIA7ZSzAO2UtADtlLUA7ZS2AO2UtwDtlLgA7ZS5AO2UugDtlLsA7ZS8AO2UvQDtlL4A7ZS/AO2VgADtlYEA7ZWCAO2VgwDtlYQA7ZWFAO2VhgDtlYcA7ZWIAO2ViQDtlYoA7ZWLAO2VjADtlY0A7ZWOAO2VjwDtlZAA7ZWRAO2VkgDtlZMA7ZWUAO2VlQDtlZYA7ZWXAO2VmADtlZkA7ZWaAO2VmwDtlZwA7ZWdAO2VngDtlZ8A7ZWgAO2VoQDtlaIA7ZWjAO2VpADtlaUA7ZWmAO2VpwDtlagA7ZWpAO2VqgDtlasA7ZWsAO2VrQDtla4A7ZWvAO2VsADtlbEA7ZWyAO2VswDtlbQA7ZW1AO2VtgDtlbcA7ZW4AO2VuQDtlboA7ZW7AO2VvADtlb0A7ZW+AO2VvwDtloAA7ZaBAO2WggDtloMA7ZaEAO2WhQDtloYA7ZaHAO2WiADtlokA7ZaKAO2WiwDtlowA7ZaNAO2WjgDtlo8A7ZaQAO2WkQDtlpIA7ZaTAO2WlADtlpUA7ZaWAO2WlwDtlpgA7ZaZAO2WmgDtlpsA7ZacAO2WnQDtlp4A7ZafAO2WoADtlqEA7ZaiAO2WowDtlqQA7ZalAO2WpgDtlqcA7ZaoAO2WqQDtlqoA7ZarAO2WrADtlq0A7ZauAO2WrwDtlrAA7ZaxAO2WsgDtlrMA7Za0AO2WtQDtlrYA7Za3AO2WuADtlrkA7Za6AO2WuwDtlrwA7Za9AO2WvgDtlr8A7ZeAAO2XgQDtl4IA7ZeDAO2XhADtl4UA7ZeGAO2XhwDtl4gA7ZeJAO2XigDtl4sA7ZeMAO2XjQDtl44A7ZePAO2XkADtl5EA7ZeSAO2XkwDtl5QA7ZeVAO2XlgDtl5cA7ZeYAO2XmQDtl5oA7ZebAO2XnADtl50A7ZeeAO2XnwDtl6AA7ZehAO2XogDtl6MA7ZekAO2XpQDtl6YA7ZenAO2XqADtl6kA7ZeqAO2XqwDtl6wA7ZetAO2XrgDtl68A7ZewAO2XsQDtl7IA7ZezAO2XtADtl7UA7Ze2AO2XtwDtl7gA7Ze5AO2XugDtl7sA7Ze8AO2XvQDtl74A7Ze/AO2YgADtmIEA7ZiCAO2YgwDtmIQA7ZiFAO2YhgDtmIcA7ZiIAO2YiQDtmIoA7ZiLAO2YjADtmI0A7ZiOAO2YjwDtmJAA7ZiRAO2YkgDtmJMA7ZiUAO2YlQDtmJYA7ZiXAO2YmADtmJkA7ZiaAO2YmwDtmJwA7ZidAO2YngDtmJ8A7ZigAO2YoQDtmKIA7ZijAO2YpADtmKUA7ZimAO2YpwDtmKgA7ZipAO2YqgDtmKsA7ZisAO2YrQDtmK4A7ZivAO2YsADtmLEA7ZiyAO2YswDtmLQA7Zi1AO2YtgDtmLcA7Zi4AO2YuQDtmLoA7Zi7AO2YvADtmL0A7Zi+AO2YvwDtmYAA7ZmBAO2ZggDtmYMA7ZmEAO2ZhQDtmYYA7ZmHAO2ZiADtmYkA7ZmKAO2ZiwDtmYwA7ZmNAO2ZjgDtmY8A7ZmQAO2ZkQDtmZIA7ZmTAO2ZlADtmZUA7ZmWAO2ZlwDtmZgA7ZmZAO2ZmgDtmZsA7ZmcAO2ZnQDtmZ4A7ZmfAO2ZoADtmaEA7ZmiAO2ZowDtmaQA7ZmlAO2ZpgDtmacA7ZmoAO2ZqQDtmaoA7ZmrAO2ZrADtma0A7ZmuAO2ZrwDtmbAA7ZmxAO2ZsgDtmbMA7Zm0AO2ZtQDtmbYA7Zm3AO2ZuADtmbkA7Zm6AO2ZuwDtmbwA7Zm9AO2ZvgDtmb8A7ZqAAO2agQDtmoIA7ZqDAO2ahADtmoUA7ZqGAO2ahwDtmogA7ZqJAO2aigDtmosA7ZqMAO2ajQDtmo4A7ZqPAO2akADtmpEA7ZqSAO2akwDtmpQA7ZqVAO2algDtmpcA7ZqYAO2amQDtmpoA7ZqbAO2anADtmp0A7ZqeAO2anwDtmqAA7ZqhAO2aogDtmqMA7ZqkAO2apQDtmqYA7ZqnAO2aqADtmqkA7ZqqAO2aqwDtmqwA7ZqtAO2argDtmq8A7ZqwAO2asQDtmrIA7ZqzAO2atADtmrUA7Zq2AO2atwDtmrgA7Zq5AO2augDtmrsA7Zq8AO2avQDtmr4A7Zq/AO2bgADtm4EA7ZuCAO2bgwDtm4QA7ZuFAO2bhgDtm4cA7ZuIAO2biQDtm4oA7ZuLAO2bjADtm40A7ZuOAO2bjwDtm5AA7ZuRAO2bkgDtm5MA7ZuUAO2blQDtm5YA7ZuXAO2bmADtm5kA7ZuaAO2bmwDtm5wA7ZudAO2bngDtm58A7ZugAO2boQDtm6IA7ZujAO2bpADtm6UA7ZumAO2bpwDtm6gA7ZupAO2bqgDtm6sA7ZusAO2brQDtm64A7ZuvAO2bsADtm7EA7ZuyAO2bswDtm7QA7Zu1AO2btgDtm7cA7Zu4AO2buQDtm7oA7Zu7AO2bvADtm70A7Zu+AO2bvwDtnIAA7ZyBAO2cggDtnIMA7ZyEAO2chQDtnIYA7ZyHAO2ciADtnIkA7ZyKAO2ciwDtnIwA7ZyNAO2cjgDtnI8A7ZyQAO2ckQDtnJIA7ZyTAO2clADtnJUA7ZyWAO2clwDtnJgA7ZyZAO2cmgDtnJsA7ZycAO2cnQDtnJ4A7ZyfAO2coADtnKEA7ZyiAO2cowDtnKQA7ZylAO2cpgDtnKcA7ZyoAO2cqQDtnKoA7ZyrAO2crADtnK0A7ZyuAO2crwDtnLAA7ZyxAO2csgDtnLMA7Zy0AO2ctQDtnLYA7Zy3AO2cuADtnLkA7Zy6AO2cuwDtnLwA7Zy9AO2cvgDtnL8A7Z2AAO2dgQDtnYIA7Z2DAO2dhADtnYUA7Z2GAO2dhwDtnYgA7Z2JAO2digDtnYsA7Z2MAO2djQDtnY4A7Z2PAO2dkADtnZEA7Z2SAO2dkwDtnZQA7Z2VAO2dlgDtnZcA7Z2YAO2dmQDtnZoA7Z2bAO2dnADtnZ0A7Z2eAO2dnwDtnaAA7Z2hAO2dogDtnaMA7Z2kAO2dpQDtnaYA7Z2nAO2dqADtnakA7Z2qAO2dqwDtnawA7Z2tAO2drgDtna8A7Z2wAO2dsQDtnbIA7Z2zAO2dtADtnbUA7Z22AO2dtwDtnbgA7Z25AO2dugDtnbsA7Z28AO2dvQDtnb4A7Z2/AO2egADtnoEA7Z6CAO2egwDtnoQA7Z6FAO2ehgDtnocA7Z6IAO2eiQDtnooA7Z6LAO2ejADtno0A7Z6OAO2ejwDtnpAA7Z6RAO2ekgDtnpMA7Z6UAO2elQDtnpYA7Z6XAO2emADtnpkA7Z6aAO2emwDtnpwA7Z6dAO2engDtnp8A7Z6gAO2eoQDtnqIA7Z6jAPCRgpoA8JGCnADwkYKrAPCRhK4A8JGErwDwkY2LAPCRjYwA8JGSuwDwkZK8APCRkr4A8JGWugDwkZa7APCdhZfwnYWlAPCdhZjwnYWlAPCdhZjwnYWl8J2FrgDwnYWY8J2FpfCdha8A8J2FmPCdhaXwnYWwAPCdhZjwnYWl8J2FsQDwnYWY8J2FpfCdhbIA8J2GufCdhaUA8J2GufCdhaXwnYWuAPCdhrnwnYWl8J2FrwDwnYa68J2FpQDwnYa68J2FpfCdha4A8J2GuvCdhaXwnYWvAPCghKIA8KCUnADwoJSlAPCglYsA8KCYugDwoKCEAPCgo54A8KCorADwoK2jAPChk6QA8KGaqADwoZuqAPChp4gA8KGsmADwobSLAPCht6QA8KG3pgDwooaDAPCihp8A8KKMsQDwopuUAPCioYQA8KKhigDwoqyMAPCir7EA8KOAigDwo4q4APCjjZ8A8KOOkwDwo46cAPCjj4MA8KOPlQDwo5GtAPCjmqMA8KOipwDwo6qNAPCjq7oA8KOyvADwo7SeAPCju5EA8KO9ngDwo76OAPCkiaMA8KSLrgDwpI6rAPCkmIgA8KSctQDwpKCUAPCksLYA8KSykgDwpL6hAPCkvrgA8KWBhADwpYOyAPClg7MA8KWEmQDwpYSzAPCliYkA8KWQnQDwpZimAPClmpoA8KWbhQDwpaW8APClqqcA8KWuqwDwpbKAAPCls5AA8KW+hgDwpoeaAPCmiKgA8KaJhwDwpouZAPCmjL4A8KaTmgDwppSjAPCmlqgA8KaepwDwpp61APCmrLwA8KawtgDwprOVAPCmtasA8Ka8rADwpr6xAPCng5IA8KePigDwp5mnAPCnoq4A8KelpgDwp7KoAPCnu5MA8Ke8rwDwqJeSAPCol60A8KicrgDwqK+6APCotbcA8KmFhQDwqYefAPCpiJoA8KmQigDwqZKWAPCplrYA8KmssADwqoOOAPCqhIUA8KqIjgDwqoqRAPCqjpIA8KqYgAA=" + }, + { + "type": "Replace", + "pattern": { + "Regex": " {2,}" + }, + "content": " " + } + ] + }, + "pre_tokenizer": { + "type": "Metaspace", + "replacement": "▁", + "prepend_scheme": "always", + "split": true + }, + "post_processor": { + "type": "TemplateProcessing", + "single": [ + { + "Sequence": { + "id": "A", + "type_id": 0 + } + }, + { + "SpecialToken": { + "id": "", + "type_id": 0 + } + } + ], + "pair": [ + { + "Sequence": { + "id": "A", + "type_id": 0 + } + }, + { + "SpecialToken": { + "id": "", + "type_id": 0 + } + }, + { + "Sequence": { + "id": "B", + "type_id": 0 + } + }, + { + "SpecialToken": { + "id": "", + "type_id": 0 + } + } + ], + "special_tokens": { + "": { + "id": "", + "ids": [ + 1 + ], + "tokens": [ + "" + ] + } + } + }, + "decoder": { + "type": "Metaspace", + "replacement": "▁", + "prepend_scheme": "always", + "split": true + }, + "model": { + "type": "Unigram", + "unk_id": 2, + "vocab": [ + [ + "", + 0.0 + ], + [ + "", + 0.0 + ], + [ + "", + 0.0 + ], + [ + "<0x00>", + 0.0 + ], + [ + "<0x01>", + 0.0 + ], + [ + "<0x02>", + 0.0 + ], + [ + "<0x03>", + 0.0 + ], + [ + "<0x04>", + 0.0 + ], + [ + "<0x05>", + 0.0 + ], + [ + "<0x06>", + 0.0 + ], + [ + "<0x07>", + 0.0 + ], + [ + "<0x08>", + 0.0 + ], + [ + "<0x09>", + 0.0 + ], + [ + "<0x0A>", + 0.0 + ], + [ + "<0x0B>", + 0.0 + ], + [ + "<0x0C>", + 0.0 + ], + [ + "<0x0D>", + 0.0 + ], + [ + "<0x0E>", + 0.0 + ], + [ + "<0x0F>", + 0.0 + ], + [ + "<0x10>", + 0.0 + ], + [ + "<0x11>", + 0.0 + ], + [ + "<0x12>", + 0.0 + ], + [ + "<0x13>", + 0.0 + ], + [ + "<0x14>", + 0.0 + ], + [ + "<0x15>", + 0.0 + ], + [ + "<0x16>", + 0.0 + ], + [ + "<0x17>", + 0.0 + ], + [ + "<0x18>", + 0.0 + ], + [ + "<0x19>", + 0.0 + ], + [ + "<0x1A>", + 0.0 + ], + [ + "<0x1B>", + 0.0 + ], + [ + "<0x1C>", + 0.0 + ], + [ + "<0x1D>", + 0.0 + ], + [ + "<0x1E>", + 0.0 + ], + [ + "<0x1F>", + 0.0 + ], + [ + "<0x20>", + 0.0 + ], + [ + "<0x21>", + 0.0 + ], + [ + "<0x22>", + 0.0 + ], + [ + "<0x23>", + 0.0 + ], + [ + "<0x24>", + 0.0 + ], + [ + "<0x25>", + 0.0 + ], + [ + "<0x26>", + 0.0 + ], + [ + "<0x27>", + 0.0 + ], + [ + "<0x28>", + 0.0 + ], + [ + "<0x29>", + 0.0 + ], + [ + "<0x2A>", + 0.0 + ], + [ + "<0x2B>", + 0.0 + ], + [ + "<0x2C>", + 0.0 + ], + [ + "<0x2D>", + 0.0 + ], + [ + "<0x2E>", + 0.0 + ], + [ + "<0x2F>", + 0.0 + ], + [ + "<0x30>", + 0.0 + ], + [ + "<0x31>", + 0.0 + ], + [ + "<0x32>", + 0.0 + ], + [ + "<0x33>", + 0.0 + ], + [ + "<0x34>", + 0.0 + ], + [ + "<0x35>", + 0.0 + ], + [ + "<0x36>", + 0.0 + ], + [ + "<0x37>", + 0.0 + ], + [ + "<0x38>", + 0.0 + ], + [ + "<0x39>", + 0.0 + ], + [ + "<0x3A>", + 0.0 + ], + [ + "<0x3B>", + 0.0 + ], + [ + "<0x3C>", + 0.0 + ], + [ + "<0x3D>", + 0.0 + ], + [ + "<0x3E>", + 0.0 + ], + [ + "<0x3F>", + 0.0 + ], + [ + "<0x40>", + 0.0 + ], + [ + "<0x41>", + 0.0 + ], + [ + "<0x42>", + 0.0 + ], + [ + "<0x43>", + 0.0 + ], + [ + "<0x44>", + 0.0 + ], + [ + "<0x45>", + 0.0 + ], + [ + "<0x46>", + 0.0 + ], + [ + "<0x47>", + 0.0 + ], + [ + "<0x48>", + 0.0 + ], + [ + "<0x49>", + 0.0 + ], + [ + "<0x4A>", + 0.0 + ], + [ + "<0x4B>", + 0.0 + ], + [ + "<0x4C>", + 0.0 + ], + [ + "<0x4D>", + 0.0 + ], + [ + "<0x4E>", + 0.0 + ], + [ + "<0x4F>", + 0.0 + ], + [ + "<0x50>", + 0.0 + ], + [ + "<0x51>", + 0.0 + ], + [ + "<0x52>", + 0.0 + ], + [ + "<0x53>", + 0.0 + ], + [ + "<0x54>", + 0.0 + ], + [ + "<0x55>", + 0.0 + ], + [ + "<0x56>", + 0.0 + ], + [ + "<0x57>", + 0.0 + ], + [ + "<0x58>", + 0.0 + ], + [ + "<0x59>", + 0.0 + ], + [ + "<0x5A>", + 0.0 + ], + [ + "<0x5B>", + 0.0 + ], + [ + "<0x5C>", + 0.0 + ], + [ + "<0x5D>", + 0.0 + ], + [ + "<0x5E>", + 0.0 + ], + [ + "<0x5F>", + 0.0 + ], + [ + "<0x60>", + 0.0 + ], + [ + "<0x61>", + 0.0 + ], + [ + "<0x62>", + 0.0 + ], + [ + "<0x63>", + 0.0 + ], + [ + "<0x64>", + 0.0 + ], + [ + "<0x65>", + 0.0 + ], + [ + "<0x66>", + 0.0 + ], + [ + "<0x67>", + 0.0 + ], + [ + "<0x68>", + 0.0 + ], + [ + "<0x69>", + 0.0 + ], + [ + "<0x6A>", + 0.0 + ], + [ + "<0x6B>", + 0.0 + ], + [ + "<0x6C>", + 0.0 + ], + [ + "<0x6D>", + 0.0 + ], + [ + "<0x6E>", + 0.0 + ], + [ + "<0x6F>", + 0.0 + ], + [ + "<0x70>", + 0.0 + ], + [ + "<0x71>", + 0.0 + ], + [ + "<0x72>", + 0.0 + ], + [ + "<0x73>", + 0.0 + ], + [ + "<0x74>", + 0.0 + ], + [ + "<0x75>", + 0.0 + ], + [ + "<0x76>", + 0.0 + ], + [ + "<0x77>", + 0.0 + ], + [ + "<0x78>", + 0.0 + ], + [ + "<0x79>", + 0.0 + ], + [ + "<0x7A>", + 0.0 + ], + [ + "<0x7B>", + 0.0 + ], + [ + "<0x7C>", + 0.0 + ], + [ + "<0x7D>", + 0.0 + ], + [ + "<0x7E>", + 0.0 + ], + [ + "<0x7F>", + 0.0 + ], + [ + "<0x80>", + 0.0 + ], + [ + "<0x81>", + 0.0 + ], + [ + "<0x82>", + 0.0 + ], + [ + "<0x83>", + 0.0 + ], + [ + "<0x84>", + 0.0 + ], + [ + "<0x85>", + 0.0 + ], + [ + "<0x86>", + 0.0 + ], + [ + "<0x87>", + 0.0 + ], + [ + "<0x88>", + 0.0 + ], + [ + "<0x89>", + 0.0 + ], + [ + "<0x8A>", + 0.0 + ], + [ + "<0x8B>", + 0.0 + ], + [ + "<0x8C>", + 0.0 + ], + [ + "<0x8D>", + 0.0 + ], + [ + "<0x8E>", + 0.0 + ], + [ + "<0x8F>", + 0.0 + ], + [ + "<0x90>", + 0.0 + ], + [ + "<0x91>", + 0.0 + ], + [ + "<0x92>", + 0.0 + ], + [ + "<0x93>", + 0.0 + ], + [ + "<0x94>", + 0.0 + ], + [ + "<0x95>", + 0.0 + ], + [ + "<0x96>", + 0.0 + ], + [ + "<0x97>", + 0.0 + ], + [ + "<0x98>", + 0.0 + ], + [ + "<0x99>", + 0.0 + ], + [ + "<0x9A>", + 0.0 + ], + [ + "<0x9B>", + 0.0 + ], + [ + "<0x9C>", + 0.0 + ], + [ + "<0x9D>", + 0.0 + ], + [ + "<0x9E>", + 0.0 + ], + [ + "<0x9F>", + 0.0 + ], + [ + "<0xA0>", + 0.0 + ], + [ + "<0xA1>", + 0.0 + ], + [ + "<0xA2>", + 0.0 + ], + [ + "<0xA3>", + 0.0 + ], + [ + "<0xA4>", + 0.0 + ], + [ + "<0xA5>", + 0.0 + ], + [ + "<0xA6>", + 0.0 + ], + [ + "<0xA7>", + 0.0 + ], + [ + "<0xA8>", + 0.0 + ], + [ + "<0xA9>", + 0.0 + ], + [ + "<0xAA>", + 0.0 + ], + [ + "<0xAB>", + 0.0 + ], + [ + "<0xAC>", + 0.0 + ], + [ + "<0xAD>", + 0.0 + ], + [ + "<0xAE>", + 0.0 + ], + [ + "<0xAF>", + 0.0 + ], + [ + "<0xB0>", + 0.0 + ], + [ + "<0xB1>", + 0.0 + ], + [ + "<0xB2>", + 0.0 + ], + [ + "<0xB3>", + 0.0 + ], + [ + "<0xB4>", + 0.0 + ], + [ + "<0xB5>", + 0.0 + ], + [ + "<0xB6>", + 0.0 + ], + [ + "<0xB7>", + 0.0 + ], + [ + "<0xB8>", + 0.0 + ], + [ + "<0xB9>", + 0.0 + ], + [ + "<0xBA>", + 0.0 + ], + [ + "<0xBB>", + 0.0 + ], + [ + "<0xBC>", + 0.0 + ], + [ + "<0xBD>", + 0.0 + ], + [ + "<0xBE>", + 0.0 + ], + [ + "<0xBF>", + 0.0 + ], + [ + "<0xC0>", + 0.0 + ], + [ + "<0xC1>", + 0.0 + ], + [ + "<0xC2>", + 0.0 + ], + [ + "<0xC3>", + 0.0 + ], + [ + "<0xC4>", + 0.0 + ], + [ + "<0xC5>", + 0.0 + ], + [ + "<0xC6>", + 0.0 + ], + [ + "<0xC7>", + 0.0 + ], + [ + "<0xC8>", + 0.0 + ], + [ + "<0xC9>", + 0.0 + ], + [ + "<0xCA>", + 0.0 + ], + [ + "<0xCB>", + 0.0 + ], + [ + "<0xCC>", + 0.0 + ], + [ + "<0xCD>", + 0.0 + ], + [ + "<0xCE>", + 0.0 + ], + [ + "<0xCF>", + 0.0 + ], + [ + "<0xD0>", + 0.0 + ], + [ + "<0xD1>", + 0.0 + ], + [ + "<0xD2>", + 0.0 + ], + [ + "<0xD3>", + 0.0 + ], + [ + "<0xD4>", + 0.0 + ], + [ + "<0xD5>", + 0.0 + ], + [ + "<0xD6>", + 0.0 + ], + [ + "<0xD7>", + 0.0 + ], + [ + "<0xD8>", + 0.0 + ], + [ + "<0xD9>", + 0.0 + ], + [ + "<0xDA>", + 0.0 + ], + [ + "<0xDB>", + 0.0 + ], + [ + "<0xDC>", + 0.0 + ], + [ + "<0xDD>", + 0.0 + ], + [ + "<0xDE>", + 0.0 + ], + [ + "<0xDF>", + 0.0 + ], + [ + "<0xE0>", + 0.0 + ], + [ + "<0xE1>", + 0.0 + ], + [ + "<0xE2>", + 0.0 + ], + [ + "<0xE3>", + 0.0 + ], + [ + "<0xE4>", + 0.0 + ], + [ + "<0xE5>", + 0.0 + ], + [ + "<0xE6>", + 0.0 + ], + [ + "<0xE7>", + 0.0 + ], + [ + "<0xE8>", + 0.0 + ], + [ + "<0xE9>", + 0.0 + ], + [ + "<0xEA>", + 0.0 + ], + [ + "<0xEB>", + 0.0 + ], + [ + "<0xEC>", + 0.0 + ], + [ + "<0xED>", + 0.0 + ], + [ + "<0xEE>", + 0.0 + ], + [ + "<0xEF>", + 0.0 + ], + [ + "<0xF0>", + 0.0 + ], + [ + "<0xF1>", + 0.0 + ], + [ + "<0xF2>", + 0.0 + ], + [ + "<0xF3>", + 0.0 + ], + [ + "<0xF4>", + 0.0 + ], + [ + "<0xF5>", + 0.0 + ], + [ + "<0xF6>", + 0.0 + ], + [ + "<0xF7>", + 0.0 + ], + [ + "<0xF8>", + 0.0 + ], + [ + "<0xF9>", + 0.0 + ], + [ + "<0xFA>", + 0.0 + ], + [ + "<0xFB>", + 0.0 + ], + [ + "<0xFC>", + 0.0 + ], + [ + "<0xFD>", + 0.0 + ], + [ + "<0xFE>", + 0.0 + ], + [ + "<0xFF>", + 0.0 + ], + [ + ".", + -3.2023584842681885 + ], + [ + "▁the", + -3.364069700241089 + ], + [ + ",", + -3.3711929321289062 + ], + [ + "▁", + -3.430966854095459 + ], + [ + "▁and", + -3.8377301692962646 + ], + [ + "s", + -3.8654253482818604 + ], + [ + "▁to", + -3.86620831489563 + ], + [ + "a", + -3.899904251098633 + ], + [ + "▁of", + -3.9952220916748047 + ], + [ + "▁in", + -4.394448280334473 + ], + [ + "▁is", + -4.701432228088379 + ], + [ + "▁for", + -4.8239850997924805 + ], + [ + "-", + -4.942785739898682 + ], + [ + "▁that", + -4.9980926513671875 + ], + [ + "▁you", + -5.0122575759887695 + ], + [ + "▁I", + -5.114060878753662 + ], + [ + "▁with", + -5.121949672698975 + ], + [ + "’", + -5.199695587158203 + ], + [ + "▁on", + -5.223159313201904 + ], + [ + "t", + -5.34583044052124 + ], + [ + "▁it", + -5.348077297210693 + ], + [ + "▁are", + -5.357232093811035 + ], + [ + "▁The", + -5.409670352935791 + ], + [ + "▁be", + -5.453668117523193 + ], + [ + "▁as", + -5.506962299346924 + ], + [ + "▁your", + -5.547610759735107 + ], + [ + "'", + -5.556434154510498 + ], + [ + "▁or", + -5.65031623840332 + ], + [ + "▁have", + -5.6985859870910645 + ], + [ + "e", + -5.734777450561523 + ], + [ + "▁at", + -5.740157604217529 + ], + [ + "▁from", + -5.769085884094238 + ], + [ + "▁this", + -5.7692131996154785 + ], + [ + "▁was", + -5.808231830596924 + ], + [ + "▁can", + -5.820746421813965 + ], + [ + "▁by", + -5.8441243171691895 + ], + [ + "▁will", + -5.851343154907227 + ], + [ + "n", + -5.857363224029541 + ], + [ + "▁(", + -5.896408557891846 + ], + [ + "o", + -5.936312675476074 + ], + [ + "▁an", + -5.958520889282227 + ], + [ + "▁not", + -6.023405075073242 + ], + [ + "▁we", + -6.078361511230469 + ], + [ + "i", + -6.093306541442871 + ], + [ + "d", + -6.103837966918945 + ], + [ + ":", + -6.151877403259277 + ], + [ + "▁has", + -6.198678970336914 + ], + [ + "!", + -6.211816310882568 + ], + [ + "▁all", + -6.219272136688232 + ], + [ + "?", + -6.280776023864746 + ], + [ + "ing", + -6.284286022186279 + ], + [ + "▁our", + -6.317816734313965 + ], + [ + "▁more", + -6.336761951446533 + ], + [ + ")", + -6.337009429931641 + ], + [ + "▁but", + -6.341323375701904 + ], + [ + "▁their", + -6.347039222717285 + ], + [ + "▁one", + -6.40566349029541 + ], + [ + "▁they", + -6.414764404296875 + ], + [ + "m", + -6.46182918548584 + ], + [ + "ed", + -6.493099689483643 + ], + [ + "▁about", + -6.498533725738525 + ], + [ + "▁my", + -6.5004472732543945 + ], + [ + "▁which", + -6.517055511474609 + ], + [ + "y", + -6.524401664733887 + ], + [ + "▁A", + -6.553309917449951 + ], + [ + "▁It", + -6.565123558044434 + ], + [ + "▁out", + -6.569912433624268 + ], + [ + "▁so", + -6.573856830596924 + ], + [ + "▁time", + -6.581578731536865 + ], + [ + "▁up", + -6.586670875549316 + ], + [ + "▁also", + -6.5869269371032715 + ], + [ + "▁This", + -6.6017937660217285 + ], + [ + "r", + -6.656627655029297 + ], + [ + "re", + -6.658642768859863 + ], + [ + "▁We", + -6.671380519866943 + ], + [ + "▁do", + -6.734364032745361 + ], + [ + "/", + -6.751723766326904 + ], + [ + "▁In", + -6.754616737365723 + ], + [ + "▁“", + -6.7565789222717285 + ], + [ + "▁his", + -6.768753528594971 + ], + [ + "▁who", + -6.7856550216674805 + ], + [ + "▁\"", + -6.789307594299316 + ], + [ + "▁like", + -6.791515350341797 + ], + [ + "▁he", + -6.795821189880371 + ], + [ + "▁if", + -6.796501159667969 + ], + [ + "▁other", + -6.796676158905029 + ], + [ + "▁when", + -6.798412799835205 + ], + [ + "▁been", + -6.811161518096924 + ], + [ + "▁what", + -6.852843761444092 + ], + [ + "▁new", + -6.88257360458374 + ], + [ + "▁get", + -6.890024662017822 + ], + [ + "▁some", + -6.892421722412109 + ], + [ + "▁were", + -6.897500991821289 + ], + [ + "▁any", + -6.907028675079346 + ], + [ + "▁would", + -6.913707256317139 + ], + [ + "▁there", + -6.913708209991455 + ], + [ + "▁them", + -6.940974712371826 + ], + [ + ";", + -6.943416595458984 + ], + [ + "▁just", + -6.952645301818848 + ], + [ + "▁had", + -6.960732460021973 + ], + [ + "▁into", + -6.962028503417969 + ], + [ + "▁make", + -7.010058879852295 + ], + [ + "▁than", + -7.013336181640625 + ], + [ + "▁You", + -7.0282697677612305 + ], + [ + "▁over", + -7.0521392822265625 + ], + [ + "▁how", + -7.059388160705566 + ], + [ + "er", + -7.061150074005127 + ], + [ + "▁If", + -7.062448024749756 + ], + [ + "in", + -7.067188262939453 + ], + [ + "▁people", + -7.071262836456299 + ], + [ + "▁me", + -7.075874328613281 + ], + [ + "▁work", + -7.0858941078186035 + ], + [ + "▁may", + -7.096367835998535 + ], + [ + "▁use", + -7.099398612976074 + ], + [ + "▁only", + -7.112382888793945 + ], + [ + "▁most", + -7.13123083114624 + ], + [ + "▁its", + -7.132454872131348 + ], + [ + "▁well", + -7.134829521179199 + ], + [ + "▁first", + -7.136438369750977 + ], + [ + "▁her", + -7.142535209655762 + ], + [ + "▁no", + -7.145441055297852 + ], + [ + "▁–", + -7.162117004394531 + ], + [ + "\"", + -7.168670177459717 + ], + [ + "▁us", + -7.176497936248779 + ], + [ + "▁these", + -7.178153991699219 + ], + [ + "▁need", + -7.180717945098877 + ], + [ + "ly", + -7.201466083526611 + ], + [ + "▁very", + -7.218252182006836 + ], + [ + "h", + -7.23167085647583 + ], + [ + "p", + -7.234610557556152 + ], + [ + "l", + -7.2512125968933105 + ], + [ + "on", + -7.262847423553467 + ], + [ + "”", + -7.270200252532959 + ], + [ + "▁many", + -7.270775318145752 + ], + [ + "▁through", + -7.2812395095825195 + ], + [ + "S", + -7.283292770385742 + ], + [ + "▁two", + -7.295241832733154 + ], + [ + "▁way", + -7.296388626098633 + ], + [ + "I", + -7.308082103729248 + ], + [ + ").", + -7.317436695098877 + ], + [ + "c", + -7.323712348937988 + ], + [ + "▁help", + -7.327799320220947 + ], + [ + "ve", + -7.343850612640381 + ], + [ + "b", + -7.356295108795166 + ], + [ + "▁years", + -7.357725620269775 + ], + [ + "▁best", + -7.368443489074707 + ], + [ + "▁good", + -7.3740339279174805 + ], + [ + "▁know", + -7.382932186126709 + ], + [ + "▁see", + -7.383909702301025 + ], + [ + "▁year", + -7.386817932128906 + ], + [ + "▁where", + -7.3996710777282715 + ], + [ + "▁such", + -7.427097797393799 + ], + [ + "f", + -7.430888652801514 + ], + [ + "▁should", + -7.431472301483154 + ], + [ + "▁back", + -7.435270309448242 + ], + [ + "▁now", + -7.43964958190918 + ], + [ + "g", + -7.43979024887085 + ], + [ + "▁could", + -7.4472832679748535 + ], + [ + "▁after", + -7.447574615478516 + ], + [ + "▁much", + -7.454396724700928 + ], + [ + "▁day", + -7.464763164520264 + ], + [ + "▁even", + -7.470591068267822 + ], + [ + "▁home", + -7.471315383911133 + ], + [ + "ll", + -7.474332809448242 + ], + [ + "▁want", + -7.474753379821777 + ], + [ + "▁take", + -7.476250171661377 + ], + [ + "able", + -7.485106945037842 + ], + [ + "▁He", + -7.4929585456848145 + ], + [ + "k", + -7.495151519775391 + ], + [ + "▁For", + -7.497325897216797 + ], + [ + "▁said", + -7.498598098754883 + ], + [ + "▁great", + -7.514589786529541 + ], + [ + "▁because", + -7.517975330352783 + ], + [ + "u", + -7.518996238708496 + ], + [ + "▁information", + -7.519284725189209 + ], + [ + "▁find", + -7.525424480438232 + ], + [ + "th", + -7.530240535736084 + ], + [ + "or", + -7.537253379821777 + ], + [ + "▁used", + -7.542159080505371 + ], + [ + "▁&", + -7.563538551330566 + ], + [ + "▁made", + -7.5691633224487305 + ], + [ + "▁she", + -7.578183650970459 + ], + [ + "▁right", + -7.584944725036621 + ], + [ + "▁here", + -7.597407817840576 + ], + [ + "▁don", + -7.609857082366943 + ], + [ + "▁being", + -7.611628532409668 + ], + [ + "▁before", + -7.612606048583984 + ], + [ + "▁those", + -7.612918376922607 + ], + [ + "is", + -7.616389274597168 + ], + [ + "▁business", + -7.620397090911865 + ], + [ + "▁go", + -7.627985954284668 + ], + [ + "▁And", + -7.6412034034729 + ], + [ + "▁each", + -7.648678779602051 + ], + [ + "an", + -7.649536609649658 + ], + [ + "▁life", + -7.652268886566162 + ], + [ + "▁2", + -7.657840728759766 + ], + [ + "▁3", + -7.673983097076416 + ], + [ + "▁There", + -7.679122447967529 + ], + [ + "▁1", + -7.688060283660889 + ], + [ + "▁own", + -7.70681619644165 + ], + [ + "▁world", + -7.707164764404297 + ], + [ + "▁while", + -7.718684673309326 + ], + [ + "▁high", + -7.7221527099609375 + ], + [ + "A", + -7.727860927581787 + ], + [ + "▁around", + -7.728450775146484 + ], + [ + "▁But", + -7.730518817901611 + ], + [ + "▁S", + -7.7461090087890625 + ], + [ + "▁really", + -7.749992847442627 + ], + [ + "),", + -7.761063098907471 + ], + [ + "▁As", + -7.761569023132324 + ], + [ + "▁different", + -7.768365859985352 + ], + [ + "▁think", + -7.7699785232543945 + ], + [ + "▁part", + -7.783398628234863 + ], + [ + "▁last", + -7.79232931137085 + ], + [ + "▁look", + -7.794530391693115 + ], + [ + "▁using", + -7.794963836669922 + ], + [ + "▁They", + -7.795846939086914 + ], + [ + "▁long", + -7.798611640930176 + ], + [ + "▁both", + -7.804934024810791 + ], + [ + "▁same", + -7.810230731964111 + ], + [ + "▁down", + -7.811037540435791 + ], + [ + "▁place", + -7.811369895935059 + ], + [ + "▁every", + -7.811471939086914 + ], + [ + "▁off", + -7.811760902404785 + ], + [ + "▁service", + -7.8143486976623535 + ], + [ + "v", + -7.821407318115234 + ], + [ + "▁So", + -7.8219828605651855 + ], + [ + "▁To", + -7.824888706207275 + ], + [ + "▁free", + -7.830121994018555 + ], + [ + "▁available", + -7.830729007720947 + ], + [ + "▁between", + -7.83139181137085 + ], + [ + "▁still", + -7.8355302810668945 + ], + [ + "▁love", + -7.841485977172852 + ], + [ + "—", + -7.846644878387451 + ], + [ + "▁going", + -7.8634443283081055 + ], + [ + "▁company", + -7.86700963973999 + ], + [ + "▁experience", + -7.877853870391846 + ], + [ + "▁What", + -7.877864837646484 + ], + [ + "x", + -7.879181385040283 + ], + [ + "C", + -7.8808488845825195 + ], + [ + "▁system", + -7.882213592529297 + ], + [ + "...", + -7.8839592933654785 + ], + [ + "▁data", + -7.896008491516113 + ], + [ + "▁set", + -7.898609638214111 + ], + [ + "▁under", + -7.916430950164795 + ], + [ + "▁am", + -7.917826175689697 + ], + [ + "▁When", + -7.921837329864502 + ], + [ + "▁few", + -7.92697286605835 + ], + [ + "to", + -7.927865982055664 + ], + [ + "al", + -7.927928447723389 + ], + [ + "▁provide", + -7.938974380493164 + ], + [ + "w", + -7.949774742126465 + ], + [ + "▁number", + -7.950848579406738 + ], + [ + "▁always", + -7.957900047302246 + ], + [ + "▁him", + -7.960877418518066 + ], + [ + "com", + -7.967016220092773 + ], + [ + "▁New", + -7.9680070877075195 + ], + [ + "▁including", + -7.969451427459717 + ], + [ + "▁team", + -7.970212936401367 + ], + [ + "▁water", + -7.973342418670654 + ], + [ + "▁come", + -7.977324962615967 + ], + [ + "▁during", + -7.9781646728515625 + ], + [ + "D", + -7.983567237854004 + ], + [ + "▁things", + -7.986267566680908 + ], + [ + "▁services", + -7.987058162689209 + ], + [ + "▁little", + -7.989128589630127 + ], + [ + "▁family", + -7.990901470184326 + ], + [ + "▁three", + -7.993311405181885 + ], + [ + "▁5", + -7.9943623542785645 + ], + [ + "▁without", + -7.9979376792907715 + ], + [ + "▁C", + -8.00173282623291 + ], + [ + "▁better", + -8.004629135131836 + ], + [ + "▁10", + -8.007047653198242 + ], + [ + "▁support", + -8.00879955291748 + ], + [ + "▁must", + -8.009655952453613 + ], + [ + "▁does", + -8.011739730834961 + ], + [ + "▁sure", + -8.019805908203125 + ], + [ + "▁M", + -8.0308837890625 + ], + [ + "▁4", + -8.031001091003418 + ], + [ + "▁did", + -8.032215118408203 + ], + [ + "ers", + -8.033283233642578 + ], + [ + "▁B", + -8.035361289978027 + ], + [ + "▁online", + -8.037674903869629 + ], + [ + "▁E", + -8.040668487548828 + ], + [ + "▁Our", + -8.04174518585205 + ], + [ + "▁end", + -8.059331893920898 + ], + [ + "▁next", + -8.070594787597656 + ], + [ + "▁important", + -8.073039054870605 + ], + [ + "▁lot", + -8.077868461608887 + ], + [ + "▁something", + -8.084932327270508 + ], + [ + "▁top", + -8.0853910446167 + ], + [ + "▁give", + -8.088569641113281 + ], + [ + "▁All", + -8.091230392456055 + ], + [ + "▁small", + -8.094334602355957 + ], + [ + "▁full", + -8.094596862792969 + ], + [ + "▁design", + -8.096598625183105 + ], + [ + "▁process", + -8.105284690856934 + ], + [ + "▁another", + -8.1060152053833 + ], + [ + "▁within", + -8.114518165588379 + ], + [ + "▁found", + -8.116018295288086 + ], + [ + "▁might", + -8.118355751037598 + ], + [ + "▁quality", + -8.118953704833984 + ], + [ + "▁With", + -8.126537322998047 + ], + [ + "and", + -8.127974510192871 + ], + [ + "▁order", + -8.142169952392578 + ], + [ + "▁keep", + -8.153923988342285 + ], + [ + "▁since", + -8.160852432250977 + ], + [ + "▁site", + -8.16108226776123 + ], + [ + "▁D", + -8.166118621826172 + ], + [ + "▁That", + -8.184609413146973 + ], + [ + "▁local", + -8.187448501586914 + ], + [ + "▁working", + -8.191598892211914 + ], + [ + "▁start", + -8.193610191345215 + ], + [ + "▁P", + -8.195890426635742 + ], + [ + "▁game", + -8.199524879455566 + ], + [ + "▁today", + -8.203958511352539 + ], + [ + "▁offer", + -8.205292701721191 + ], + [ + "▁‘", + -8.207386016845703 + ], + [ + "▁She", + -8.209266662597656 + ], + [ + "▁never", + -8.215818405151367 + ], + [ + "▁U", + -8.216754913330078 + ], + [ + "▁days", + -8.219094276428223 + ], + [ + "▁looking", + -8.223016738891602 + ], + [ + "▁products", + -8.224617004394531 + ], + [ + "B", + -8.224759101867676 + ], + [ + "▁feel", + -8.225506782531738 + ], + [ + "M", + -8.230082511901855 + ], + [ + "it", + -8.234219551086426 + ], + [ + "▁website", + -8.234328269958496 + ], + [ + "▁put", + -8.2354097366333 + ], + [ + "▁book", + -8.241498947143555 + ], + [ + "▁making", + -8.241512298583984 + ], + [ + "▁school", + -8.245353698730469 + ], + [ + "▁students", + -8.247751235961914 + ], + [ + "▁say", + -8.249082565307617 + ], + [ + "▁change", + -8.249330520629883 + ], + [ + "▁These", + -8.262072563171387 + ], + [ + "▁week", + -8.267455101013184 + ], + [ + "▁care", + -8.26911735534668 + ], + [ + "▁show", + -8.270676612854004 + ], + [ + "▁market", + -8.272296905517578 + ], + [ + "▁children", + -8.284977912902832 + ], + [ + "2", + -8.285783767700195 + ], + [ + "▁case", + -8.287611961364746 + ], + [ + "▁per", + -8.288951873779297 + ], + [ + "▁easy", + -8.289761543273926 + ], + [ + "▁money", + -8.290447235107422 + ], + [ + "▁T", + -8.29820728302002 + ], + [ + "▁course", + -8.301239967346191 + ], + [ + "▁project", + -8.305240631103516 + ], + [ + "▁got", + -8.306596755981445 + ], + [ + "▁needs", + -8.31442642211914 + ], + [ + "▁No", + -8.318490028381348 + ], + [ + "▁My", + -8.318806648254395 + ], + [ + "▁large", + -8.32027816772461 + ], + [ + "▁again", + -8.3318510055542 + ], + [ + "▁How", + -8.331901550292969 + ], + [ + "▁car", + -8.333620071411133 + ], + [ + "▁room", + -8.338515281677246 + ], + [ + "▁away", + -8.342880249023438 + ], + [ + "▁state", + -8.345171928405762 + ], + [ + "▁health", + -8.347867965698242 + ], + [ + "▁second", + -8.349309921264648 + ], + [ + "▁post", + -8.350981712341309 + ], + [ + "▁together", + -8.35266399383545 + ], + [ + "▁possible", + -8.35461139678955 + ], + [ + "▁often", + -8.355350494384766 + ], + [ + "▁create", + -8.356051445007324 + ], + [ + "▁food", + -8.356633186340332 + ], + [ + "▁un", + -8.36129379272461 + ], + [ + "▁open", + -8.361753463745117 + ], + [ + "▁until", + -8.362069129943848 + ], + [ + "▁point", + -8.363824844360352 + ], + [ + "▁name", + -8.364618301391602 + ], + [ + "▁program", + -8.36487865447998 + ], + [ + "▁area", + -8.366408348083496 + ], + [ + "▁At", + -8.372393608093262 + ], + [ + "▁One", + -8.373229026794434 + ], + [ + "▁On", + -8.376362800598145 + ], + [ + "▁real", + -8.376909255981445 + ], + [ + "▁group", + -8.379023551940918 + ], + [ + "▁why", + -8.382932662963867 + ], + [ + "▁person", + -8.383261680603027 + ], + [ + "▁include", + -8.387616157531738 + ], + [ + "▁de", + -8.389212608337402 + ], + [ + "▁power", + -8.389503479003906 + ], + [ + "▁based", + -8.395094871520996 + ], + [ + "▁community", + -8.401068687438965 + ], + [ + "▁having", + -8.406102180480957 + ], + [ + "▁product", + -8.408605575561523 + ], + [ + ".\"", + -8.410916328430176 + ], + [ + "man", + -8.411425590515137 + ], + [ + "▁call", + -8.41154956817627 + ], + [ + "▁F", + -8.4127197265625 + ], + [ + "▁level", + -8.41415786743164 + ], + [ + "▁6", + -8.414508819580078 + ], + [ + "▁page", + -8.416504859924316 + ], + [ + "▁against", + -8.419686317443848 + ], + [ + "▁play", + -8.420513153076172 + ], + [ + "▁thing", + -8.426117897033691 + ], + [ + "▁R", + -8.427506446838379 + ], + [ + "▁J", + -8.427657127380371 + ], + [ + "▁read", + -8.430461883544922 + ], + [ + "▁become", + -8.430808067321777 + ], + [ + "▁side", + -8.434793472290039 + ], + [ + "▁research", + -8.435675621032715 + ], + [ + "▁less", + -8.440485000610352 + ], + [ + "T", + -8.442431449890137 + ], + [ + "▁along", + -8.450817108154297 + ], + [ + "▁old", + -8.454556465148926 + ], + [ + "▁public", + -8.454704284667969 + ], + [ + "▁list", + -8.45499324798584 + ], + [ + "P", + -8.45933723449707 + ], + [ + "the", + -8.46035385131836 + ], + [ + "▁price", + -8.46194076538086 + ], + [ + "▁done", + -8.46419620513916 + ], + [ + "▁means", + -8.46448802947998 + ], + [ + "▁big", + -8.467167854309082 + ], + [ + "▁However", + -8.476615905761719 + ], + [ + "▁event", + -8.47692584991455 + ], + [ + "▁access", + -8.479130744934082 + ], + [ + "▁God", + -8.479907035827637 + ], + [ + "▁G", + -8.481569290161133 + ], + [ + "▁development", + -8.482935905456543 + ], + [ + "▁house", + -8.48306941986084 + ], + [ + "up", + -8.483793258666992 + ], + [ + "▁After", + -8.484527587890625 + ], + [ + "us", + -8.484881401062012 + ], + [ + "▁contact", + -8.485782623291016 + ], + [ + "▁space", + -8.48947811126709 + ], + [ + "▁job", + -8.491032600402832 + ], + [ + "▁body", + -8.49415397644043 + ], + [ + "▁light", + -8.49871826171875 + ], + [ + "▁enough", + -8.499299049377441 + ], + [ + "▁several", + -8.50335693359375 + ], + [ + "▁hard", + -8.505252838134766 + ], + [ + "▁range", + -8.515830039978027 + ], + [ + "▁University", + -8.518271446228027 + ], + [ + "▁Do", + -8.518776893615723 + ], + [ + "▁left", + -8.519610404968262 + ], + [ + "▁already", + -8.520464897155762 + ], + [ + "▁across", + -8.521450996398926 + ], + [ + "▁comes", + -8.523046493530273 + ], + [ + "▁live", + -8.523065567016602 + ], + [ + "▁cost", + -8.528708457946777 + ], + [ + "▁personal", + -8.52952766418457 + ], + [ + "▁20", + -8.532119750976562 + ], + [ + "▁plan", + -8.533548355102539 + ], + [ + "▁form", + -8.53389835357666 + ], + [ + "▁getting", + -8.53634262084961 + ], + [ + "▁An", + -8.536884307861328 + ], + [ + "▁L", + -8.536977767944336 + ], + [ + "▁try", + -8.540353775024414 + ], + [ + "K", + -8.543693542480469 + ], + [ + "▁hand", + -8.5440092086792 + ], + [ + "▁social", + -8.545568466186523 + ], + [ + "▁line", + -8.546478271484375 + ], + [ + "▁control", + -8.546635627746582 + ], + [ + "▁times", + -8.547179222106934 + ], + [ + "▁makes", + -8.547248840332031 + ], + [ + "▁below", + -8.551798820495605 + ], + [ + ",”", + -8.552921295166016 + ], + [ + "▁example", + -8.554241180419922 + ], + [ + "▁K", + -8.5559720993042 + ], + [ + "▁ever", + -8.556999206542969 + ], + [ + "E", + -8.558198928833008 + ], + [ + "▁run", + -8.56040096282959 + ], + [ + "▁future", + -8.560903549194336 + ], + [ + "1", + -8.56994342803955 + ], + [ + "▁18", + -8.572076797485352 + ], + [ + "F", + -8.57442569732666 + ], + [ + "▁perfect", + -8.577982902526855 + ], + [ + "▁industry", + -8.580424308776855 + ], + [ + "▁learn", + -8.582361221313477 + ], + [ + "▁value", + -8.582579612731934 + ], + [ + "▁12", + -8.584053993225098 + ], + [ + "▁let", + -8.585572242736816 + ], + [ + "ar", + -8.586841583251953 + ], + [ + "▁Your", + -8.588823318481445 + ], + [ + "▁non", + -8.592572212219238 + ], + [ + "▁country", + -8.593240737915039 + ], + [ + "▁add", + -8.593585968017578 + ], + [ + "▁city", + -8.593737602233887 + ], + [ + "▁doing", + -8.594898223876953 + ], + [ + "▁H", + -8.596445083618164 + ], + [ + "G", + -8.598662376403809 + ], + [ + "▁far", + -8.599390983581543 + ], + [ + "H", + -8.600007057189941 + ], + [ + "▁past", + -8.600038528442383 + ], + [ + "▁four", + -8.600704193115234 + ], + [ + "▁special", + -8.601924896240234 + ], + [ + "▁offers", + -8.602274894714355 + ], + [ + "▁7", + -8.603168487548828 + ], + [ + "▁8", + -8.605762481689453 + ], + [ + "▁companies", + -8.606710433959961 + ], + [ + "▁share", + -8.609116554260254 + ], + [ + "▁least", + -8.609861373901367 + ], + [ + "▁check", + -8.612970352172852 + ], + [ + "▁hours", + -8.616393089294434 + ], + [ + "3", + -8.617172241210938 + ], + [ + "▁once", + -8.617226600646973 + ], + [ + "▁bit", + -8.618367195129395 + ], + [ + "z", + -8.620715141296387 + ], + [ + "▁actually", + -8.621268272399902 + ], + [ + "▁called", + -8.625032424926758 + ], + [ + "▁others", + -8.626154899597168 + ], + [ + "▁N", + -8.629861831665039 + ], + [ + "▁night", + -8.631589889526367 + ], + [ + "▁though", + -8.631678581237793 + ], + [ + "▁video", + -8.634113311767578 + ], + [ + "▁problem", + -8.635151863098145 + ], + [ + "▁started", + -8.636165618896484 + ], + [ + "▁low", + -8.636419296264648 + ], + [ + "▁O", + -8.6478910446167 + ], + [ + "▁music", + -8.648380279541016 + ], + [ + "▁features", + -8.65058708190918 + ], + [ + "The", + -8.651021003723145 + ], + [ + "R", + -8.651228904724121 + ], + [ + "▁members", + -8.65129566192627 + ], + [ + "▁type", + -8.653581619262695 + ], + [ + "▁fact", + -8.653633117675781 + ], + [ + "▁didn", + -8.654239654541016 + ], + [ + "▁please", + -8.654290199279785 + ], + [ + "▁customers", + -8.655288696289062 + ], + [ + "▁minutes", + -8.657962799072266 + ], + [ + "▁fun", + -8.659144401550293 + ], + [ + "▁current", + -8.659852027893066 + ], + [ + "▁building", + -8.660152435302734 + ], + [ + "▁above", + -8.667118072509766 + ], + [ + "▁doesn", + -8.667428016662598 + ], + [ + "▁technology", + -8.667430877685547 + ], + [ + "▁short", + -8.667673110961914 + ], + [ + "▁content", + -8.668425559997559 + ], + [ + "▁ensure", + -8.673101425170898 + ], + [ + "▁results", + -8.674484252929688 + ], + [ + "▁won", + -8.67599105834961 + ], + [ + "▁pay", + -8.676445007324219 + ], + [ + "▁visit", + -8.677063941955566 + ], + [ + "▁single", + -8.682430267333984 + ], + [ + "▁complete", + -8.688796997070312 + ], + [ + "(", + -8.688909530639648 + ], + [ + "▁everything", + -8.690116882324219 + ], + [ + "▁story", + -8.690653800964355 + ], + [ + "▁kind", + -8.69205379486084 + ], + [ + "▁St", + -8.694620132446289 + ], + [ + "▁Re", + -8.699433326721191 + ], + [ + "▁professional", + -8.703174591064453 + ], + [ + "▁training", + -8.703954696655273 + ], + [ + "▁due", + -8.705799102783203 + ], + [ + "▁enjoy", + -8.706962585449219 + ], + [ + "▁given", + -8.708802223205566 + ], + [ + "▁property", + -8.709145545959473 + ], + [ + "▁understand", + -8.70969009399414 + ], + [ + "▁months", + -8.712593078613281 + ], + [ + "▁simple", + -8.713658332824707 + ], + [ + "▁yet", + -8.714555740356445 + ], + [ + "▁questions", + -8.714750289916992 + ], + [ + "▁buy", + -8.71731185913086 + ], + [ + "▁early", + -8.717365264892578 + ], + [ + "▁million", + -8.720799446105957 + ], + [ + "▁known", + -8.724167823791504 + ], + [ + "▁management", + -8.725505828857422 + ], + [ + "▁W", + -8.726944923400879 + ], + [ + "▁came", + -8.728188514709473 + ], + [ + "▁provides", + -8.73065185546875 + ], + [ + "▁season", + -8.732860565185547 + ], + [ + "▁beautiful", + -8.73488998413086 + ], + [ + "▁government", + -8.736333847045898 + ], + [ + "▁size", + -8.737588882446289 + ], + [ + "▁30", + -8.737666130065918 + ], + [ + "▁various", + -8.74066162109375 + ], + [ + "▁mind", + -8.743148803710938 + ], + [ + "▁15", + -8.743387222290039 + ], + [ + "▁American", + -8.745051383972168 + ], + [ + "▁issues", + -8.750088691711426 + ], + [ + "▁study", + -8.750945091247559 + ], + [ + "▁required", + -8.753222465515137 + ], + [ + "▁Please", + -8.753683090209961 + ], + [ + "▁idea", + -8.754352569580078 + ], + [ + "▁friends", + -8.756220817565918 + ], + [ + "▁result", + -8.756368637084961 + ], + [ + "▁following", + -8.757338523864746 + ], + [ + "▁took", + -8.757434844970703 + ], + [ + "▁addition", + -8.757516860961914 + ], + [ + "▁key", + -8.758504867553711 + ], + [ + "▁whether", + -8.761432647705078 + ], + [ + "▁air", + -8.763178825378418 + ], + [ + "▁thought", + -8.764568328857422 + ], + [ + "▁man", + -8.768447875976562 + ], + [ + "▁whole", + -8.769965171813965 + ], + [ + "▁media", + -8.77111530303955 + ], + [ + "▁performance", + -8.771259307861328 + ], + [ + "▁energy", + -8.771961212158203 + ], + [ + "N", + -8.771981239318848 + ], + [ + "L", + -8.774637222290039 + ], + [ + "4", + -8.775389671325684 + ], + [ + "▁living", + -8.775915145874023 + ], + [ + "▁While", + -8.776456832885742 + ], + [ + "le", + -8.780293464660645 + ], + [ + "▁head", + -8.782672882080078 + ], + [ + "▁choose", + -8.786304473876953 + ], + [ + "▁month", + -8.786903381347656 + ], + [ + "▁areas", + -8.787541389465332 + ], + [ + "▁taking", + -8.789318084716797 + ], + [ + "▁someone", + -8.791547775268555 + ], + [ + "▁amount", + -8.7924165725708 + ], + [ + "▁email", + -8.793359756469727 + ], + [ + "ness", + -8.799093246459961 + ], + [ + "▁Now", + -8.800976753234863 + ], + [ + "▁office", + -8.805281639099121 + ], + [ + "▁main", + -8.805949211120605 + ], + [ + "▁view", + -8.807328224182129 + ], + [ + "▁bring", + -8.808135986328125 + ], + [ + "▁unique", + -8.808924674987793 + ], + [ + "▁further", + -8.809021949768066 + ], + [ + "▁says", + -8.809309959411621 + ], + [ + "▁later", + -8.810429573059082 + ], + [ + "▁account", + -8.81074333190918 + ], + [ + "▁front", + -8.812167167663574 + ], + [ + "▁designed", + -8.814948081970215 + ], + [ + "▁either", + -8.818310737609863 + ], + [ + "▁believe", + -8.819707870483398 + ], + [ + "▁customer", + -8.819777488708496 + ], + [ + "▁major", + -8.826139450073242 + ], + [ + "▁V", + -8.82748031616211 + ], + [ + "▁went", + -8.827899932861328 + ], + [ + "▁close", + -8.828063011169434 + ], + [ + "▁staff", + -8.829449653625488 + ], + [ + "▁seen", + -8.82952880859375 + ], + [ + "ity", + -8.830188751220703 + ], + [ + "▁women", + -8.835476875305176 + ], + [ + "▁white", + -8.838882446289062 + ], + [ + "▁provided", + -8.840717315673828 + ], + [ + "▁five", + -8.840768814086914 + ], + [ + "▁specific", + -8.842765808105469 + ], + [ + "▁United", + -8.844937324523926 + ], + [ + "▁move", + -8.845407485961914 + ], + [ + "▁quite", + -8.84654712677002 + ], + [ + "▁child", + -8.84682559967041 + ], + [ + "▁history", + -8.848203659057617 + ], + [ + "▁needed", + -8.848591804504395 + ], + [ + "▁web", + -8.849143028259277 + ], + [ + "▁style", + -8.849266052246094 + ], + [ + "▁[", + -8.851451873779297 + ], + [ + "▁Some", + -8.852509498596191 + ], + [ + "▁software", + -8.853631973266602 + ], + [ + "▁simply", + -8.856295585632324 + ], + [ + "▁especially", + -8.860185623168945 + ], + [ + "▁Dr", + -8.862770080566406 + ], + [ + "▁City", + -8.863836288452148 + ], + [ + "▁writing", + -8.864251136779785 + ], + [ + "ation", + -8.864751815795898 + ], + [ + "▁series", + -8.865376472473145 + ], + [ + "V", + -8.868736267089844 + ], + [ + "▁present", + -8.869478225708008 + ], + [ + "▁9", + -8.87112808227539 + ], + [ + "▁pre", + -8.87185001373291 + ], + [ + "▁works", + -8.872475624084473 + ], + [ + "▁application", + -8.872885704040527 + ], + [ + "▁heart", + -8.874749183654785 + ], + [ + "▁yourself", + -8.875683784484863 + ], + [ + "▁art", + -8.875850677490234 + ], + [ + "▁phone", + -8.876500129699707 + ], + [ + "▁options", + -8.876614570617676 + ], + [ + "▁everyone", + -8.877249717712402 + ], + [ + "▁includes", + -8.87920093536377 + ], + [ + "W", + -8.87934684753418 + ], + [ + "▁natural", + -8.880987167358398 + ], + [ + "▁US", + -8.88215446472168 + ], + [ + "▁meet", + -8.882469177246094 + ], + [ + "▁May", + -8.883729934692383 + ], + [ + "▁By", + -8.884084701538086 + ], + [ + "co", + -8.888625144958496 + ], + [ + "▁hope", + -8.889167785644531 + ], + [ + "▁etc", + -8.893228530883789 + ], + [ + "▁law", + -8.893620491027832 + ], + [ + "ic", + -8.896039009094238 + ], + [ + "▁search", + -8.89692497253418 + ], + [ + "▁test", + -8.897639274597168 + ], + [ + "▁anything", + -8.89819049835205 + ], + [ + "▁face", + -8.901001930236816 + ], + [ + "▁class", + -8.904151916503906 + ], + [ + "▁Here", + -8.904470443725586 + ], + [ + "▁field", + -8.908400535583496 + ], + [ + "▁almost", + -8.91051197052002 + ], + [ + "▁human", + -8.910588264465332 + ], + [ + "▁report", + -8.911901473999023 + ], + [ + "▁issue", + -8.913503646850586 + ], + [ + "J", + -8.915949821472168 + ], + [ + "▁receive", + -8.917586326599121 + ], + [ + "▁build", + -8.91758918762207 + ], + [ + "▁clients", + -8.92270278930664 + ], + [ + "▁financial", + -8.92309284210205 + ], + [ + "▁added", + -8.923234939575195 + ], + [ + "▁ideas", + -8.924694061279297 + ], + [ + "▁deal", + -8.929991722106934 + ], + [ + ",\"", + -8.930522918701172 + ], + [ + "▁events", + -8.931548118591309 + ], + [ + "▁likely", + -8.931660652160645 + ], + [ + "▁however", + -8.931962013244629 + ], + [ + "▁problems", + -8.93199634552002 + ], + [ + "▁created", + -8.9332914352417 + ], + [ + "▁card", + -8.933816909790039 + ], + [ + "▁National", + -8.934141159057617 + ], + [ + "▁half", + -8.93465518951416 + ], + [ + "▁details", + -8.934700965881348 + ], + [ + "_", + -8.935104370117188 + ], + [ + "▁download", + -8.936765670776367 + ], + [ + "▁individual", + -8.937054634094238 + ], + [ + "▁systems", + -8.938164710998535 + ], + [ + "▁allow", + -8.939016342163086 + ], + [ + "▁third", + -8.94057559967041 + ], + [ + "▁among", + -8.941221237182617 + ], + [ + "▁games", + -8.94151496887207 + ], + [ + "▁ago", + -8.942778587341309 + ], + [ + "▁clear", + -8.942798614501953 + ], + [ + "▁increase", + -8.943182945251465 + ], + [ + "▁age", + -8.94426155090332 + ], + [ + "▁turn", + -8.946000099182129 + ], + [ + "▁forward", + -8.947303771972656 + ], + [ + "]", + -8.947552680969238 + ], + [ + "▁throughout", + -8.94755744934082 + ], + [ + "▁lead", + -8.949493408203125 + ], + [ + "▁security", + -8.951915740966797 + ], + [ + "▁model", + -8.954832077026367 + ], + [ + "▁taken", + -8.954835891723633 + ], + [ + "▁insurance", + -8.955148696899414 + ], + [ + "▁11", + -8.955718040466309 + ], + [ + "▁interest", + -8.955784797668457 + ], + [ + "▁black", + -8.955881118774414 + ], + [ + "▁stay", + -8.956637382507324 + ], + [ + "▁treatment", + -8.961831092834473 + ], + [ + "▁oil", + -8.963847160339355 + ], + [ + "▁From", + -8.964911460876465 + ], + [ + "▁common", + -8.965035438537598 + ], + [ + "▁young", + -8.965696334838867 + ], + [ + "▁ready", + -8.965767860412598 + ], + [ + "▁State", + -8.965814590454102 + ], + [ + "▁opportunity", + -8.966322898864746 + ], + [ + "▁self", + -8.96826457977295 + ], + [ + "▁learning", + -8.971219062805176 + ], + [ + "▁period", + -8.971394538879395 + ], + [ + "▁tell", + -8.972795486450195 + ], + [ + "0", + -8.973523139953613 + ], + [ + "▁file", + -8.973936080932617 + ], + [ + "▁matter", + -8.975010871887207 + ], + [ + "▁co", + -8.975582122802734 + ], + [ + "▁paper", + -8.97668170928955 + ], + [ + "▁reason", + -8.9769926071167 + ], + [ + "▁South", + -8.978043556213379 + ], + [ + "▁user", + -8.978585243225098 + ], + [ + "▁located", + -8.979504585266113 + ], + [ + "▁color", + -8.979950904846191 + ], + [ + "▁Not", + -8.980697631835938 + ], + [ + "▁focus", + -8.982589721679688 + ], + [ + "▁question", + -8.983993530273438 + ], + [ + "▁image", + -8.984613418579102 + ], + [ + "▁date", + -8.985162734985352 + ], + [ + "▁continue", + -8.985186576843262 + ], + [ + "▁certain", + -8.985651016235352 + ], + [ + "▁outside", + -8.986000061035156 + ], + [ + "&", + -8.986978530883789 + ], + [ + "▁risk", + -8.987908363342285 + ], + [ + "▁rather", + -8.989988327026367 + ], + [ + "▁rate", + -8.990721702575684 + ], + [ + "▁address", + -8.990829467773438 + ], + [ + "▁blog", + -8.992281913757324 + ], + [ + "▁original", + -8.99687671661377 + ], + [ + "▁strong", + -8.996902465820312 + ], + [ + "▁party", + -8.998319625854492 + ], + [ + "▁table", + -8.999154090881348 + ], + [ + "▁changes", + -9.000377655029297 + ], + [ + "▁His", + -9.00087833404541 + ], + [ + "▁probably", + -9.001724243164062 + ], + [ + "▁near", + -9.00225830078125 + ], + [ + "▁usually", + -9.003424644470215 + ], + [ + "▁education", + -9.003620147705078 + ], + [ + "▁store", + -9.00487232208252 + ], + [ + "▁coming", + -9.006255149841309 + ], + [ + "▁additional", + -9.007387161254883 + ], + [ + "▁knowledge", + -9.008857727050781 + ], + [ + "▁skills", + -9.009790420532227 + ], + [ + "▁trying", + -9.01058292388916 + ], + [ + "▁soon", + -9.010656356811523 + ], + [ + "▁member", + -9.012581825256348 + ], + [ + "▁version", + -9.01296329498291 + ], + [ + "▁skin", + -9.012994766235352 + ], + [ + "▁happy", + -9.01368522644043 + ], + [ + "▁step", + -9.014616012573242 + ], + [ + "▁currently", + -9.014761924743652 + ], + [ + "▁higher", + -9.015024185180664 + ], + [ + "▁practice", + -9.015847206115723 + ], + [ + "▁users", + -9.017732620239258 + ], + [ + "▁activities", + -9.019124984741211 + ], + [ + "▁total", + -9.021078109741211 + ], + [ + "▁role", + -9.021509170532227 + ], + [ + "▁potential", + -9.021513938903809 + ], + [ + "out", + -9.022254943847656 + ], + [ + "▁School", + -9.022683143615723 + ], + [ + "▁ways", + -9.022971153259277 + ], + [ + "▁private", + -9.025551795959473 + ], + [ + "▁popular", + -9.026144027709961 + ], + [ + "▁brand", + -9.027629852294922 + ], + [ + "▁sales", + -9.029403686523438 + ], + [ + "▁material", + -9.03156852722168 + ], + [ + "▁kids", + -9.03243637084961 + ], + [ + "▁choice", + -9.033684730529785 + ], + [ + "▁via", + -9.034821510314941 + ], + [ + "▁percent", + -9.03506851196289 + ], + [ + "▁pretty", + -9.035417556762695 + ], + [ + "▁wide", + -9.035444259643555 + ], + [ + "▁easily", + -9.035582542419434 + ], + [ + "▁wanted", + -9.035902976989746 + ], + [ + "▁York", + -9.036640167236328 + ], + [ + "▁particular", + -9.036789894104004 + ], + [ + "▁inside", + -9.038969993591309 + ], + [ + "time", + -9.03930950164795 + ], + [ + "▁ask", + -9.03945541381836 + ], + [ + "▁environment", + -9.039731979370117 + ], + [ + "▁items", + -9.040629386901855 + ], + [ + "▁save", + -9.041576385498047 + ], + [ + "▁review", + -9.042316436767578 + ], + [ + "▁2018", + -9.04331111907959 + ], + [ + "▁built", + -9.044222831726074 + ], + [ + "▁code", + -9.045252799987793 + ], + [ + "▁follow", + -9.047075271606445 + ], + [ + "▁production", + -9.048959732055664 + ], + [ + "▁running", + -9.049439430236816 + ], + [ + "▁North", + -9.050766944885254 + ], + [ + "O", + -9.05171012878418 + ], + [ + "▁true", + -9.051934242248535 + ], + [ + "▁leave", + -9.052101135253906 + ], + [ + "▁final", + -9.05247974395752 + ], + [ + "▁credit", + -9.052715301513672 + ], + [ + "▁Co", + -9.053377151489258 + ], + [ + "am", + -9.054903984069824 + ], + [ + "5", + -9.055554389953613 + ], + [ + "▁longer", + -9.055948257446289 + ], + [ + "▁growth", + -9.056262969970703 + ], + [ + "▁general", + -9.05636978149414 + ], + [ + "▁position", + -9.056486129760742 + ], + [ + "▁option", + -9.056510925292969 + ], + [ + "▁action", + -9.056550979614258 + ], + [ + "▁cannot", + -9.057330131530762 + ], + [ + "▁Can", + -9.05801773071289 + ], + [ + "▁received", + -9.059002876281738 + ], + [ + "▁points", + -9.059649467468262 + ], + [ + "▁extra", + -9.061477661132812 + ], + [ + "▁similar", + -9.061822891235352 + ], + [ + "mm", + -9.063325881958008 + ], + [ + "▁cover", + -9.063959121704102 + ], + [ + "▁variety", + -9.065303802490234 + ], + [ + "ment", + -9.065805435180664 + ], + [ + "be", + -9.066218376159668 + ], + [ + "▁World", + -9.067166328430176 + ], + [ + "▁stop", + -9.069062232971191 + ], + [ + "▁rest", + -9.070819854736328 + ], + [ + "▁held", + -9.071090698242188 + ], + [ + "%", + -9.071502685546875 + ], + [ + "▁network", + -9.073762893676758 + ], + [ + "▁location", + -9.07697582244873 + ], + [ + "▁Just", + -9.078783988952637 + ], + [ + "▁modern", + -9.079254150390625 + ], + [ + "j", + -9.079291343688965 + ], + [ + "▁Center", + -9.079754829406738 + ], + [ + "▁marketing", + -9.081634521484375 + ], + [ + "▁standard", + -9.08263111114502 + ], + [ + "▁behind", + -9.083740234375 + ], + [ + "▁drive", + -9.085525512695312 + ], + [ + "▁computer", + -9.086030960083008 + ], + [ + "▁patients", + -9.086124420166016 + ], + [ + "▁Be", + -9.086491584777832 + ], + [ + "▁nice", + -9.087723731994629 + ], + [ + "▁projects", + -9.088889122009277 + ], + [ + "▁told", + -9.091513633728027 + ], + [ + "▁takes", + -9.09152889251709 + ], + [ + "▁16", + -9.09322452545166 + ], + [ + "▁article", + -9.095621109008789 + ], + [ + "▁allows", + -9.096156120300293 + ], + [ + "▁purchase", + -9.096558570861816 + ], + [ + "–", + -9.09835433959961 + ], + [ + "▁return", + -9.098488807678223 + ], + [ + "▁John", + -9.099282264709473 + ], + [ + "▁film", + -9.099740028381348 + ], + [ + "▁quickly", + -9.09984016418457 + ], + [ + "▁reading", + -9.100050926208496 + ], + [ + "▁mean", + -9.100520133972168 + ], + [ + "based", + -9.102030754089355 + ], + [ + "▁medical", + -9.10313892364502 + ], + [ + "▁recent", + -9.10334587097168 + ], + [ + "▁couple", + -9.103842735290527 + ], + [ + "▁included", + -9.10415267944336 + ], + [ + "ur", + -9.104304313659668 + ], + [ + "▁latest", + -9.104572296142578 + ], + [ + "▁equipment", + -9.10865306854248 + ], + [ + "▁amazing", + -9.109139442443848 + ], + [ + "▁upon", + -9.109800338745117 + ], + [ + "▁providing", + -9.112297058105469 + ], + [ + "▁X", + -9.11238956451416 + ], + [ + "▁tax", + -9.115484237670898 + ], + [ + "▁app", + -9.117941856384277 + ], + [ + "▁consider", + -9.120036125183105 + ], + [ + "▁related", + -9.120091438293457 + ], + [ + "▁entire", + -9.120244979858398 + ], + [ + "▁14", + -9.121557235717773 + ], + [ + "▁words", + -9.121591567993164 + ], + [ + "▁shows", + -9.121650695800781 + ], + [ + "▁cut", + -9.122435569763184 + ], + [ + "▁impact", + -9.123831748962402 + ], + [ + "▁approach", + -9.123929023742676 + ], + [ + "▁travel", + -9.12519645690918 + ], + [ + "▁Of", + -9.127561569213867 + ], + [ + "▁materials", + -9.128982543945312 + ], + [ + "▁necessary", + -9.129897117614746 + ], + [ + "▁anyone", + -9.129959106445312 + ], + [ + "▁summer", + -9.13003921508789 + ], + [ + "▁international", + -9.132908821105957 + ], + [ + "▁effective", + -9.13432788848877 + ], + [ + "▁cause", + -9.136306762695312 + ], + [ + "▁kitchen", + -9.142069816589355 + ], + [ + "▁improve", + -9.14209270477295 + ], + [ + "▁States", + -9.142289161682129 + ], + [ + "▁weeks", + -9.142597198486328 + ], + [ + "▁click", + -9.145827293395996 + ], + [ + "▁solution", + -9.146024703979492 + ], + [ + "▁Also", + -9.146943092346191 + ], + [ + "▁Home", + -9.147116661071777 + ], + [ + "▁send", + -9.147232055664062 + ], + [ + "▁else", + -9.1472806930542 + ], + [ + "▁April", + -9.148112297058105 + ], + [ + "ch", + -9.148843765258789 + ], + [ + "▁Don", + -9.150440216064453 + ], + [ + "▁according", + -9.151470184326172 + ], + [ + "▁men", + -9.151984214782715 + ], + [ + "▁nothing", + -9.152294158935547 + ], + [ + "▁success", + -9.152408599853516 + ], + [ + "▁worked", + -9.152429580688477 + ], + [ + "▁conditions", + -9.152692794799805 + ], + [ + "▁ability", + -9.152925491333008 + ], + [ + "▁100", + -9.15385627746582 + ], + [ + "▁bad", + -9.154572486877441 + ], + [ + "▁meeting", + -9.155426979064941 + ], + [ + "▁costs", + -9.156404495239258 + ], + [ + "▁collection", + -9.15876579284668 + ], + [ + "X", + -9.159772872924805 + ], + [ + "▁student", + -9.160063743591309 + ], + [ + "▁recently", + -9.162210464477539 + ], + [ + "▁50", + -9.162981033325195 + ], + [ + "▁seems", + -9.164278030395508 + ], + [ + "▁device", + -9.164709091186523 + ], + [ + "▁UK", + -9.164987564086914 + ], + [ + "▁terms", + -9.165481567382812 + ], + [ + "▁sense", + -9.165531158447266 + ], + [ + "▁clean", + -9.166727066040039 + ], + [ + "▁lower", + -9.167302131652832 + ], + [ + "▁Thanks", + -9.16737174987793 + ], + [ + "▁sale", + -9.168206214904785 + ], + [ + "▁difficult", + -9.168242454528809 + ], + [ + "▁talk", + -9.168269157409668 + ], + [ + "▁County", + -9.169088363647461 + ], + [ + "one", + -9.169183731079102 + ], + [ + "▁mobile", + -9.170063018798828 + ], + [ + "▁policy", + -9.170343399047852 + ], + [ + "▁average", + -9.173422813415527 + ], + [ + "ling", + -9.175298690795898 + ], + [ + "▁Park", + -9.17644214630127 + ], + [ + "▁favorite", + -9.178406715393066 + ], + [ + "▁red", + -9.180729866027832 + ], + [ + "▁weight", + -9.180861473083496 + ], + [ + "▁tools", + -9.185505867004395 + ], + [ + "▁programs", + -9.187150955200195 + ], + [ + "▁fast", + -9.188740730285645 + ], + [ + "▁excellent", + -9.189179420471191 + ], + [ + "▁highly", + -9.189191818237305 + ], + [ + "▁subject", + -9.191350936889648 + ], + [ + "less", + -9.192230224609375 + ], + [ + "▁25", + -9.192790985107422 + ], + [ + "▁hair", + -9.193802833557129 + ], + [ + "▁board", + -9.19439697265625 + ], + [ + "▁lives", + -9.195076942443848 + ], + [ + "▁sound", + -9.19528865814209 + ], + [ + "▁safe", + -9.195588111877441 + ], + [ + "▁fit", + -9.195625305175781 + ], + [ + "▁morning", + -9.195879936218262 + ], + [ + "▁win", + -9.19729995727539 + ], + [ + "▁goal", + -9.19802188873291 + ], + [ + "▁asked", + -9.198620796203613 + ], + [ + "line", + -9.198872566223145 + ], + [ + "▁decision", + -9.199166297912598 + ], + [ + "▁March", + -9.199612617492676 + ], + [ + "▁chance", + -9.200167655944824 + ], + [ + "▁leading", + -9.201741218566895 + ], + [ + "year", + -9.202603340148926 + ], + [ + "▁types", + -9.204241752624512 + ], + [ + "▁Most", + -9.204442977905273 + ], + [ + "▁West", + -9.207830429077148 + ], + [ + "▁books", + -9.211610794067383 + ], + [ + "▁six", + -9.21499252319336 + ], + [ + "ate", + -9.215577125549316 + ], + [ + "▁Mr", + -9.215926170349121 + ], + [ + "▁road", + -9.215926170349121 + ], + [ + "▁itself", + -9.218199729919434 + ], + [ + "▁looks", + -9.218896865844727 + ], + [ + "://", + -9.219703674316406 + ], + [ + "▁box", + -9.219927787780762 + ], + [ + "▁benefits", + -9.221543312072754 + ], + [ + "▁involved", + -9.221819877624512 + ], + [ + "▁digital", + -9.222074508666992 + ], + [ + "▁link", + -9.224180221557617 + ], + [ + "me", + -9.224647521972656 + ], + [ + ".”", + -9.225759506225586 + ], + [ + "▁multiple", + -9.228203773498535 + ], + [ + "▁write", + -9.229455947875977 + ], + [ + "▁levels", + -9.229984283447266 + ], + [ + "▁walk", + -9.23058032989502 + ], + [ + "▁Many", + -9.230892181396484 + ], + [ + "▁career", + -9.231252670288086 + ], + [ + "▁resources", + -9.231517791748047 + ], + [ + "▁piece", + -9.231843948364258 + ], + [ + "▁national", + -9.231924057006836 + ], + [ + "▁solutions", + -9.23196792602539 + ], + [ + "age", + -9.23199462890625 + ], + [ + "▁word", + -9.23287582397461 + ], + [ + "▁shall", + -9.234130859375 + ], + [ + "▁safety", + -9.23420238494873 + ], + [ + "▁source", + -9.235118865966797 + ], + [ + "▁instead", + -9.235400199890137 + ], + [ + "▁feature", + -9.236014366149902 + ], + [ + "▁America", + -9.236920356750488 + ], + [ + "▁floor", + -9.239631652832031 + ], + [ + "▁parts", + -9.239832878112793 + ], + [ + "▁require", + -9.241966247558594 + ], + [ + "▁directly", + -9.24288272857666 + ], + [ + "▁door", + -9.243388175964355 + ], + [ + "▁Day", + -9.245477676391602 + ], + [ + "▁De", + -9.246062278747559 + ], + [ + "▁countries", + -9.246516227722168 + ], + [ + "▁San", + -9.24660587310791 + ], + [ + "▁daily", + -9.246822357177734 + ], + [ + "▁House", + -9.248001098632812 + ], + [ + "▁Or", + -9.249131202697754 + ], + [ + "▁24", + -9.250081062316895 + ], + [ + "▁themselves", + -9.251884460449219 + ], + [ + "▁Once", + -9.251895904541016 + ], + [ + "▁record", + -9.252947807312012 + ], + [ + "▁photo", + -9.253427505493164 + ], + [ + "▁loss", + -9.255729675292969 + ], + [ + "▁Google", + -9.257352828979492 + ], + [ + "▁worth", + -9.258187294006348 + ], + [ + "▁section", + -9.258322715759277 + ], + [ + "▁legal", + -9.260517120361328 + ], + [ + "▁--", + -9.260839462280273 + ], + [ + "▁develop", + -9.261404991149902 + ], + [ + "▁effect", + -9.261817932128906 + ], + [ + "▁hold", + -9.262033462524414 + ], + [ + "▁17", + -9.262158393859863 + ], + [ + "▁plans", + -9.264090538024902 + ], + [ + "▁written", + -9.264824867248535 + ], + [ + "▁wall", + -9.267130851745605 + ], + [ + "▁attention", + -9.268342018127441 + ], + [ + "▁machine", + -9.268743515014648 + ], + [ + "▁International", + -9.270354270935059 + ], + [ + "land", + -9.271149635314941 + ], + [ + "▁13", + -9.271645545959473 + ], + [ + "▁giving", + -9.273136138916016 + ], + [ + "6", + -9.27349853515625 + ], + [ + "▁First", + -9.273548126220703 + ], + [ + "▁saw", + -9.274171829223633 + ], + [ + "of", + -9.274784088134766 + ], + [ + "▁hot", + -9.274881362915039 + ], + [ + "▁planning", + -9.27517318725586 + ], + [ + "▁method", + -9.275801658630371 + ], + [ + "▁interesting", + -9.277406692504883 + ], + [ + "▁center", + -9.277502059936523 + ], + [ + "▁organization", + -9.278060913085938 + ], + [ + "▁trip", + -9.278867721557617 + ], + [ + "▁late", + -9.278959274291992 + ], + [ + "▁requirements", + -9.279081344604492 + ], + [ + "▁fully", + -9.281445503234863 + ], + [ + "▁fine", + -9.282132148742676 + ], + [ + "▁images", + -9.283768653869629 + ], + [ + "▁track", + -9.285524368286133 + ], + [ + "▁remember", + -9.285715103149414 + ], + [ + "▁cases", + -9.286971092224121 + ], + [ + "▁global", + -9.28806209564209 + ], + [ + "▁players", + -9.288725852966309 + ], + [ + "▁Free", + -9.290414810180664 + ], + [ + "ley", + -9.291790962219238 + ], + [ + "▁answer", + -9.2918701171875 + ], + [ + "▁Thank", + -9.29243278503418 + ], + [ + "▁news", + -9.292574882507324 + ], + [ + "▁moment", + -9.292881965637207 + ], + [ + "▁significant", + -9.293476104736328 + ], + [ + "▁apply", + -9.29391860961914 + ], + [ + "▁land", + -9.294843673706055 + ], + [ + "▁traditional", + -9.294913291931152 + ], + [ + "▁Why", + -9.296874046325684 + ], + [ + "▁town", + -9.297104835510254 + ], + [ + "▁picture", + -9.297224044799805 + ], + [ + "▁reduce", + -9.29838752746582 + ], + [ + "▁myself", + -9.300413131713867 + ], + [ + "▁completely", + -9.30069637298584 + ], + [ + "▁parents", + -9.300724029541016 + ], + [ + "▁huge", + -9.30154037475586 + ], + [ + "▁June", + -9.302245140075684 + ], + [ + "▁lost", + -9.302435874938965 + ], + [ + "▁spend", + -9.303169250488281 + ], + [ + "▁prices", + -9.305388450622559 + ], + [ + "nd", + -9.305922508239746 + ], + [ + "▁decided", + -9.306608200073242 + ], + [ + "est", + -9.307215690612793 + ], + [ + "for", + -9.30757999420166 + ], + [ + "▁tool", + -9.309388160705566 + ], + [ + "▁gives", + -9.310395240783691 + ], + [ + "▁base", + -9.310869216918945 + ], + [ + "▁reach", + -9.311386108398438 + ], + [ + "▁China", + -9.31144905090332 + ], + [ + "▁playing", + -9.316442489624023 + ], + [ + "▁friend", + -9.316913604736328 + ], + [ + "▁Even", + -9.317676544189453 + ], + [ + "ent", + -9.317834854125977 + ], + [ + "▁goes", + -9.318419456481934 + ], + [ + "▁Let", + -9.3193941116333 + ], + [ + "▁High", + -9.319680213928223 + ], + [ + "ies", + -9.319957733154297 + ], + [ + "▁India", + -9.320014953613281 + ], + [ + "ter", + -9.321702003479004 + ], + [ + "▁fresh", + -9.322691917419434 + ], + [ + "▁Go", + -9.322829246520996 + ], + [ + "▁hit", + -9.323325157165527 + ], + [ + "▁bar", + -9.323545455932617 + ], + [ + "▁benefit", + -9.32361125946045 + ], + [ + "▁ground", + -9.324932098388672 + ], + [ + "▁release", + -9.325338363647461 + ], + [ + "▁More", + -9.326334953308105 + ], + [ + "▁watch", + -9.326680183410645 + ], + [ + "▁Since", + -9.327309608459473 + ], + [ + "per", + -9.328938484191895 + ], + [ + "▁creating", + -9.32922077178955 + ], + [ + "▁English", + -9.329340934753418 + ], + [ + "▁pain", + -9.33022689819336 + ], + [ + "▁green", + -9.332656860351562 + ], + [ + "▁photos", + -9.33271312713623 + ], + [ + "um", + -9.33395767211914 + ], + [ + "▁La", + -9.334375381469727 + ], + [ + "▁term", + -9.33472728729248 + ], + [ + "▁client", + -9.336995124816895 + ], + [ + "▁developed", + -9.337542533874512 + ], + [ + "▁limited", + -9.338005065917969 + ], + [ + "▁commercial", + -9.339715003967285 + ], + [ + "▁Are", + -9.341541290283203 + ], + [ + "▁vehicle", + -9.341573715209961 + ], + [ + "▁successful", + -9.343073844909668 + ], + [ + "▁Pro", + -9.345949172973633 + ], + [ + "▁interested", + -9.346083641052246 + ], + [ + "▁storage", + -9.346695899963379 + ], + [ + "▁2019", + -9.34682559967041 + ], + [ + "▁London", + -9.34959602355957 + ], + [ + "▁hear", + -9.350407600402832 + ], + [ + "▁businesses", + -9.351183891296387 + ], + [ + "▁language", + -9.351338386535645 + ], + [ + "▁nature", + -9.352385520935059 + ], + [ + "▁groups", + -9.354498863220215 + ], + [ + "▁fire", + -9.356647491455078 + ], + [ + "▁sign", + -9.35671329498291 + ], + [ + "▁fall", + -9.358816146850586 + ], + [ + "▁construction", + -9.362560272216797 + ], + [ + "▁became", + -9.362632751464844 + ], + [ + "▁Service", + -9.363127708435059 + ], + [ + "▁TV", + -9.365975379943848 + ], + [ + "▁Great", + -9.366936683654785 + ], + [ + "▁thinking", + -9.366996765136719 + ], + [ + "▁Inc", + -9.367522239685059 + ], + [ + "▁request", + -9.367661476135254 + ], + [ + "▁Get", + -9.368447303771973 + ], + [ + "▁Each", + -9.371036529541016 + ], + [ + "▁towards", + -9.371715545654297 + ], + [ + "▁screen", + -9.372406005859375 + ], + [ + "▁Christmas", + -9.372727394104004 + ], + [ + "▁analysis", + -9.372734069824219 + ], + [ + "▁applications", + -9.372931480407715 + ], + [ + "!!", + -9.373116493225098 + ], + [ + "▁wish", + -9.373225212097168 + ], + [ + "▁2017", + -9.374988555908203 + ], + [ + "▁text", + -9.377215385437012 + ], + [ + "▁positive", + -9.378350257873535 + ], + [ + "▁Group", + -9.378418922424316 + ], + [ + "▁wonderful", + -9.379910469055176 + ], + [ + "▁regular", + -9.380145072937012 + ], + [ + "▁began", + -9.38156795501709 + ], + [ + "▁employees", + -9.382294654846191 + ], + [ + "▁pick", + -9.383211135864258 + ], + [ + "▁expected", + -9.383437156677246 + ], + [ + "8", + -9.38380241394043 + ], + [ + "▁physical", + -9.384592056274414 + ], + [ + "▁President", + -9.38503360748291 + ], + [ + "▁helps", + -9.385970115661621 + ], + [ + "▁heat", + -9.386231422424316 + ], + [ + "▁sometimes", + -9.386590003967285 + ], + [ + "▁considered", + -9.387118339538574 + ], + [ + "▁stock", + -9.39021110534668 + ], + [ + "▁message", + -9.390302658081055 + ], + [ + "▁eye", + -9.39039134979248 + ], + [ + "▁situation", + -9.390751838684082 + ], + [ + "▁understanding", + -9.391637802124023 + ], + [ + "▁sites", + -9.392740249633789 + ], + [ + "▁expect", + -9.394837379455566 + ], + [ + "▁plant", + -9.396398544311523 + ], + [ + "▁death", + -9.397340774536133 + ], + [ + "▁40", + -9.397624015808105 + ], + [ + "▁opportunities", + -9.398862838745117 + ], + [ + "▁begin", + -9.39886474609375 + ], + [ + "▁recommend", + -9.399065971374512 + ], + [ + "▁starting", + -9.399394035339355 + ], + [ + "▁guide", + -9.399587631225586 + ], + [ + "▁investment", + -9.399602890014648 + ], + [ + "▁Friday", + -9.40187931060791 + ], + [ + "▁quick", + -9.404631614685059 + ], + [ + "▁seem", + -9.406156539916992 + ], + [ + "▁January", + -9.40654182434082 + ], + [ + "▁definitely", + -9.406693458557129 + ], + [ + "day", + -9.407159805297852 + ], + [ + "▁exactly", + -9.407719612121582 + ], + [ + "▁difference", + -9.408140182495117 + ], + [ + "▁sub", + -9.408438682556152 + ], + [ + "▁healthy", + -9.408604621887207 + ], + [ + "▁grow", + -9.40884017944336 + ], + [ + "▁growing", + -9.408916473388672 + ], + [ + "▁posted", + -9.408958435058594 + ], + [ + "▁moving", + -9.412320137023926 + ], + [ + "▁*", + -9.412421226501465 + ], + [ + "▁break", + -9.412793159484863 + ], + [ + "▁Q", + -9.413464546203613 + ], + [ + "▁July", + -9.41408634185791 + ], + [ + "7", + -9.414834976196289 + ], + [ + "▁damage", + -9.415546417236328 + ], + [ + "▁individuals", + -9.415590286254883 + ], + [ + "▁Health", + -9.415745735168457 + ], + [ + "▁relationship", + -9.41659927368164 + ], + [ + "by", + -9.418608665466309 + ], + [ + "▁region", + -9.419302940368652 + ], + [ + "▁Black", + -9.420015335083008 + ], + [ + "▁speed", + -9.420950889587402 + ], + [ + "he", + -9.421341896057129 + ], + [ + "▁activity", + -9.422382354736328 + ], + [ + "▁function", + -9.424110412597656 + ], + [ + "▁stand", + -9.424229621887207 + ], + [ + "▁hotel", + -9.424729347229004 + ], + [ + "▁previous", + -9.425605773925781 + ], + [ + "▁offering", + -9.425771713256836 + ], + [ + "▁purpose", + -9.427708625793457 + ], + [ + "▁round", + -9.428811073303223 + ], + [ + "▁hands", + -9.429240226745605 + ], + [ + "▁response", + -9.430161476135254 + ], + [ + "▁September", + -9.430964469909668 + ], + [ + "▁pressure", + -9.432123184204102 + ], + [ + "▁platform", + -9.432324409484863 + ], + [ + "▁Well", + -9.432961463928223 + ], + [ + "▁Department", + -9.435503959655762 + ], + [ + "▁al", + -9.435795783996582 + ], + [ + "▁cash", + -9.437275886535645 + ], + [ + "▁hour", + -9.437335968017578 + ], + [ + "▁wait", + -9.43852424621582 + ], + [ + "▁published", + -9.440204620361328 + ], + [ + "▁sent", + -9.441132545471191 + ], + [ + "▁October", + -9.443803787231445 + ], + [ + "▁wood", + -9.444711685180664 + ], + [ + "▁multi", + -9.445110321044922 + ], + [ + "▁felt", + -9.447205543518066 + ], + [ + "▁wrong", + -9.447492599487305 + ], + [ + "ary", + -9.44788646697998 + ], + [ + "We", + -9.448989868164062 + ], + [ + "U", + -9.451055526733398 + ], + [ + "▁internet", + -9.451205253601074 + ], + [ + "▁goals", + -9.45160961151123 + ], + [ + "▁join", + -9.452970504760742 + ], + [ + "▁Facebook", + -9.454876899719238 + ], + [ + "▁match", + -9.45500373840332 + ], + [ + "▁entry", + -9.455023765563965 + ], + [ + "▁shop", + -9.455121040344238 + ], + [ + "▁serve", + -9.456490516662598 + ], + [ + "▁21", + -9.456711769104004 + ], + [ + "▁California", + -9.457929611206055 + ], + [ + "we", + -9.458756446838379 + ], + [ + "+", + -9.460139274597168 + ], + [ + "▁surface", + -9.46033763885498 + ], + [ + "▁unit", + -9.461697578430176 + ], + [ + "▁budget", + -9.464149475097656 + ], + [ + "▁Sunday", + -9.46504020690918 + ], + [ + "▁touch", + -9.465341567993164 + ], + [ + "9", + -9.465456008911133 + ], + [ + "▁display", + -9.466012954711914 + ], + [ + "▁culture", + -9.467117309570312 + ], + [ + "▁cool", + -9.468549728393555 + ], + [ + "▁blood", + -9.471626281738281 + ], + [ + "▁stage", + -9.472803115844727 + ], + [ + "▁gift", + -9.473905563354492 + ], + [ + "▁families", + -9.474701881408691 + ], + [ + "▁essential", + -9.4757080078125 + ], + [ + "▁paid", + -9.476698875427246 + ], + [ + "▁double", + -9.476822853088379 + ], + [ + "▁charge", + -9.478729248046875 + ], + [ + "▁easier", + -9.47915267944336 + ], + [ + "ive", + -9.479597091674805 + ], + [ + "▁feeling", + -9.483046531677246 + ], + [ + "▁Saturday", + -9.48396110534668 + ], + [ + "▁places", + -9.484292984008789 + ], + [ + "▁political", + -9.485857963562012 + ], + [ + "▁war", + -9.486143112182617 + ], + [ + "▁Al", + -9.489116668701172 + ], + [ + "▁December", + -9.489496231079102 + ], + [ + "▁advice", + -9.489534378051758 + ], + [ + "▁dog", + -9.489654541015625 + ], + [ + "▁beginning", + -9.48972225189209 + ], + [ + "▁direct", + -9.490886688232422 + ], + [ + "▁court", + -9.490965843200684 + ], + [ + "▁supply", + -9.491926193237305 + ], + [ + "▁trade", + -9.492326736450195 + ], + [ + "▁Services", + -9.492805480957031 + ], + [ + "▁Good", + -9.493297576904297 + ], + [ + "▁deep", + -9.49401569366455 + ], + [ + "▁happen", + -9.49458122253418 + ], + [ + "▁avoid", + -9.495729446411133 + ], + [ + "▁offered", + -9.4957857131958 + ], + [ + "▁setting", + -9.496121406555176 + ], + [ + "▁super", + -9.496638298034668 + ], + [ + "▁Make", + -9.496761322021484 + ], + [ + "▁basis", + -9.496883392333984 + ], + [ + "▁basic", + -9.496908187866211 + ], + [ + "▁active", + -9.497095108032227 + ], + [ + "▁former", + -9.497682571411133 + ], + [ + "▁delivery", + -9.497973442077637 + ], + [ + "▁degree", + -9.49820327758789 + ], + [ + "go", + -9.498677253723145 + ], + [ + "▁rates", + -9.498805046081543 + ], + [ + "▁pro", + -9.49893856048584 + ], + [ + "▁glass", + -9.49919319152832 + ], + [ + "▁2016", + -9.500511169433594 + ], + [ + "▁certainly", + -9.500815391540527 + ], + [ + "▁experienced", + -9.504364013671875 + ], + [ + "▁spent", + -9.505784034729004 + ], + [ + "▁gave", + -9.505854606628418 + ], + [ + "▁devices", + -9.507173538208008 + ], + [ + "▁select", + -9.507476806640625 + ], + [ + "▁rights", + -9.507742881774902 + ], + [ + "▁loved", + -9.508367538452148 + ], + [ + "end", + -9.508548736572266 + ], + [ + "▁overall", + -9.50879955291748 + ], + [ + "▁November", + -9.509913444519043 + ], + [ + "▁ideal", + -9.511178970336914 + ], + [ + "▁custom", + -9.511537551879883 + ], + [ + "▁condition", + -9.511834144592285 + ], + [ + "▁released", + -9.512720108032227 + ], + [ + "▁led", + -9.51290512084961 + ], + [ + "▁eat", + -9.513214111328125 + ], + [ + "if", + -9.51331901550293 + ], + [ + "▁Although", + -9.514365196228027 + ], + [ + "▁economic", + -9.514951705932617 + ], + [ + "▁Best", + -9.516215324401855 + ], + [ + "▁Z", + -9.516557693481445 + ], + [ + "▁College", + -9.516704559326172 + ], + [ + "▁feet", + -9.51697826385498 + ], + [ + "ke", + -9.518173217773438 + ], + [ + "▁Click", + -9.518372535705566 + ], + [ + "▁firm", + -9.518844604492188 + ], + [ + "▁Company", + -9.518896102905273 + ], + [ + "▁wedding", + -9.519343376159668 + ], + [ + "▁regarding", + -9.519749641418457 + ], + [ + "▁European", + -9.520121574401855 + ], + [ + "▁comfortable", + -9.520509719848633 + ], + [ + "▁tried", + -9.520563125610352 + ], + [ + "▁THE", + -9.520697593688965 + ], + [ + "▁sell", + -9.52305793762207 + ], + [ + "▁truly", + -9.523462295532227 + ], + [ + "▁Her", + -9.525137901306152 + ], + [ + "▁finish", + -9.52565860748291 + ], + [ + "old", + -9.527908325195312 + ], + [ + "ting", + -9.528334617614746 + ], + [ + "▁August", + -9.528434753417969 + ], + [ + "▁patient", + -9.528691291809082 + ], + [ + "▁note", + -9.529327392578125 + ], + [ + "▁existing", + -9.529706954956055 + ], + [ + "▁pictures", + -9.529902458190918 + ], + [ + "▁associated", + -9.530941009521484 + ], + [ + "▁shown", + -9.531280517578125 + ], + [ + "▁effects", + -9.531970024108887 + ], + [ + "▁produce", + -9.532916069030762 + ], + [ + "▁beyond", + -9.534292221069336 + ], + [ + "▁stories", + -9.535327911376953 + ], + [ + "▁pages", + -9.536358833312988 + ], + [ + "un", + -9.536849021911621 + ], + [ + "▁weather", + -9.537928581237793 + ], + [ + "▁heard", + -9.538393020629883 + ], + [ + "▁college", + -9.53894329071045 + ], + [ + "▁player", + -9.539115905761719 + ], + [ + "▁bed", + -9.539255142211914 + ], + [ + "▁East", + -9.539345741271973 + ], + [ + "▁baby", + -9.540112495422363 + ], + [ + "▁payment", + -9.540736198425293 + ], + [ + "▁weekend", + -9.542167663574219 + ], + [ + "▁protection", + -9.543136596679688 + ], + [ + "▁brought", + -9.544039726257324 + ], + [ + "▁played", + -9.546667098999023 + ], + [ + "▁highest", + -9.546773910522461 + ], + [ + "▁effort", + -9.547079086303711 + ], + [ + "▁Business", + -9.547941207885742 + ], + [ + "▁gas", + -9.548325538635254 + ], + [ + "▁structure", + -9.549692153930664 + ], + [ + "▁increased", + -9.550155639648438 + ], + [ + "▁appropriate", + -9.550557136535645 + ], + [ + "▁Check", + -9.550895690917969 + ], + [ + "▁maintain", + -9.5514497756958 + ], + [ + "▁selection", + -9.552355766296387 + ], + [ + "▁See", + -9.552391052246094 + ], + [ + "▁character", + -9.553130149841309 + ], + [ + "▁Street", + -9.553743362426758 + ], + [ + "▁claim", + -9.553776741027832 + ], + [ + "▁responsible", + -9.555275917053223 + ], + [ + "den", + -9.556777000427246 + ], + [ + "▁Windows", + -9.556818962097168 + ], + [ + "▁useful", + -9.55700397491455 + ], + [ + "▁Internet", + -9.558170318603516 + ], + [ + "▁Jesus", + -9.558210372924805 + ], + [ + "ization", + -9.558409690856934 + ], + [ + "▁bottom", + -9.558867454528809 + ], + [ + "der", + -9.55932903289795 + ], + [ + "▁creative", + -9.559764862060547 + ], + [ + "▁Car", + -9.560714721679688 + ], + [ + "off", + -9.56088638305664 + ], + [ + "▁largest", + -9.56129264831543 + ], + [ + "▁challenge", + -9.563684463500977 + ], + [ + "▁prior", + -9.564576148986816 + ], + [ + "▁pass", + -9.564720153808594 + ], + [ + "▁#", + -9.565264701843262 + ], + [ + "▁gold", + -9.566324234008789 + ], + [ + "▁achieve", + -9.566329956054688 + ], + [ + "▁completed", + -9.566672325134277 + ], + [ + "▁disease", + -9.566812515258789 + ], + [ + "▁particularly", + -9.568608283996582 + ], + [ + "▁remove", + -9.569610595703125 + ], + [ + "▁income", + -9.569735527038574 + ], + [ + "▁born", + -9.570405006408691 + ], + [ + "▁race", + -9.570931434631348 + ], + [ + "▁manage", + -9.570953369140625 + ], + [ + "▁stuff", + -9.571036338806152 + ], + [ + "▁coffee", + -9.572113037109375 + ], + [ + "▁schools", + -9.572396278381348 + ], + [ + "▁immediately", + -9.572929382324219 + ], + [ + "▁complex", + -9.57411003112793 + ], + [ + "®", + -9.574625968933105 + ], + [ + "▁repair", + -9.57618522644043 + ], + [ + "▁window", + -9.576993942260742 + ], + [ + "▁Today", + -9.577311515808105 + ], + [ + "▁blue", + -9.578078269958496 + ], + [ + "▁normal", + -9.578367233276367 + ], + [ + "▁warm", + -9.578536987304688 + ], + [ + "▁Use", + -9.578614234924316 + ], + [ + "▁journey", + -9.579440116882324 + ], + [ + "▁Canada", + -9.579506874084473 + ], + [ + "▁Europe", + -9.580268859863281 + ], + [ + "▁annual", + -9.580464363098145 + ], + [ + "▁determine", + -9.582685470581055 + ], + [ + "▁1.", + -9.583944320678711 + ], + [ + "▁estate", + -9.58590030670166 + ], + [ + "▁movie", + -9.586865425109863 + ], + [ + "▁Y", + -9.587899208068848 + ], + [ + "▁White", + -9.589080810546875 + ], + [ + "▁helping", + -9.58942699432373 + ], + [ + "▁strategy", + -9.589680671691895 + ], + [ + "▁Air", + -9.589997291564941 + ], + [ + "▁finally", + -9.59005355834961 + ], + [ + "▁files", + -9.590112686157227 + ], + [ + "▁extremely", + -9.590832710266113 + ], + [ + "▁powerful", + -9.592329978942871 + ], + [ + "▁lots", + -9.592733383178711 + ], + [ + "ha", + -9.592814445495605 + ], + [ + "▁item", + -9.594285011291504 + ], + [ + "▁protect", + -9.594301223754883 + ], + [ + "▁engine", + -9.596100807189941 + ], + [ + "▁garden", + -9.59847354888916 + ], + [ + "▁maybe", + -9.599095344543457 + ], + [ + "▁studies", + -9.600274085998535 + ], + [ + "▁eyes", + -9.600497245788574 + ], + [ + "▁plus", + -9.600692749023438 + ], + [ + "▁Red", + -9.601607322692871 + ], + [ + "▁Yes", + -9.601934432983398 + ], + [ + "▁evidence", + -9.60414981842041 + ], + [ + "▁tour", + -9.605339050292969 + ], + [ + "▁Because", + -9.606267929077148 + ], + [ + "▁Have", + -9.607072830200195 + ], + [ + "▁Art", + -9.607706069946289 + ], + [ + "▁wasn", + -9.60791015625 + ], + [ + "▁furniture", + -9.608010292053223 + ], + [ + "ally", + -9.608295440673828 + ], + [ + "▁mother", + -9.60889720916748 + ], + [ + "▁February", + -9.610000610351562 + ], + [ + "▁bank", + -9.610304832458496 + ], + [ + "▁|", + -9.611578941345215 + ], + [ + "ized", + -9.612539291381836 + ], + [ + "▁changed", + -9.61376667022705 + ], + [ + "▁19", + -9.614890098571777 + ], + [ + "▁thanks", + -9.61651611328125 + ], + [ + "▁Act", + -9.61662483215332 + ], + [ + "▁button", + -9.616703033447266 + ], + [ + "▁science", + -9.61721134185791 + ], + [ + "▁campaign", + -9.619575500488281 + ], + [ + "▁Green", + -9.6199312210083 + ], + [ + "▁dry", + -9.6204252243042 + ], + [ + "▁church", + -9.620695114135742 + ], + [ + "▁wear", + -9.622396469116211 + ], + [ + "▁knew", + -9.62328052520752 + ], + [ + "▁60", + -9.623727798461914 + ], + [ + "▁Me", + -9.623906135559082 + ], + [ + "▁prevent", + -9.624055862426758 + ], + [ + "▁trust", + -9.624703407287598 + ], + [ + "▁soft", + -9.624740600585938 + ], + [ + "▁Australia", + -9.62661361694336 + ], + [ + "▁compared", + -9.627198219299316 + ], + [ + "▁reasons", + -9.627425193786621 + ], + [ + "▁Man", + -9.627469062805176 + ], + [ + "▁Over", + -9.62793254852295 + ], + [ + "▁turned", + -9.628154754638672 + ], + [ + "▁Board", + -9.629225730895996 + ], + [ + "▁nearly", + -9.62981128692627 + ], + [ + "▁saying", + -9.630023002624512 + ], + [ + "▁Monday", + -9.630196571350098 + ], + [ + "▁served", + -9.63156509399414 + ], + [ + "▁greater", + -9.632061958312988 + ], + [ + "▁Design", + -9.632184028625488 + ], + [ + "▁pool", + -9.6322660446167 + ], + [ + "ge", + -9.63394832611084 + ], + [ + "▁War", + -9.634578704833984 + ], + [ + "▁ones", + -9.6346435546875 + ], + [ + "▁cold", + -9.634673118591309 + ], + [ + "▁reported", + -9.635139465332031 + ], + [ + "▁deliver", + -9.635981559753418 + ], + [ + "▁author", + -9.637428283691406 + ], + [ + "▁During", + -9.637823104858398 + ], + [ + "▁camera", + -9.637971878051758 + ], + [ + "▁•", + -9.638399124145508 + ], + [ + "uk", + -9.638846397399902 + ], + [ + "▁connection", + -9.640917778015137 + ], + [ + "▁sun", + -9.64108943939209 + ], + [ + "▁methods", + -9.641229629516602 + ], + [ + "▁partner", + -9.641362190246582 + ], + [ + "term", + -9.642053604125977 + ], + [ + "▁Association", + -9.642766952514648 + ], + [ + "▁Council", + -9.644166946411133 + ], + [ + "▁explore", + -9.644794464111328 + ], + [ + "▁models", + -9.644796371459961 + ], + [ + "▁band", + -9.64654541015625 + ], + [ + "▁sea", + -9.647100448608398 + ], + [ + "▁established", + -9.64832592010498 + ], + [ + "▁anti", + -9.648747444152832 + ], + [ + "▁lines", + -9.648785591125488 + ], + [ + "▁dis", + -9.648862838745117 + ], + [ + "▁agree", + -9.650550842285156 + ], + [ + "\".", + -9.651904106140137 + ], + [ + "▁son", + -9.651946067810059 + ], + [ + "▁pieces", + -9.652114868164062 + ], + [ + "▁balance", + -9.652120590209961 + ], + [ + "▁allowed", + -9.652288436889648 + ], + [ + "▁lack", + -9.652432441711426 + ], + [ + "▁cancer", + -9.652693748474121 + ], + [ + "▁title", + -9.653694152832031 + ], + [ + "lin", + -9.654731750488281 + ], + [ + "Y", + -9.654882431030273 + ], + [ + "▁larger", + -9.655251502990723 + ], + [ + "▁although", + -9.655627250671387 + ], + [ + "▁rules", + -9.65631103515625 + ], + [ + "▁alone", + -9.658210754394531 + ], + [ + "▁middle", + -9.658668518066406 + ], + [ + "▁helped", + -9.659010887145996 + ], + [ + "▁cards", + -9.65928840637207 + ], + [ + "▁communication", + -9.659754753112793 + ], + [ + "▁letter", + -9.660452842712402 + ], + [ + "▁2015", + -9.660874366760254 + ], + [ + "▁Office", + -9.66187858581543 + ], + [ + "▁sharing", + -9.662210464477539 + ], + [ + "▁welcome", + -9.662674903869629 + ], + [ + "”.", + -9.663086891174316 + ], + [ + "▁miles", + -9.663359642028809 + ], + [ + "@", + -9.664461135864258 + ], + [ + "ex", + -9.666608810424805 + ], + [ + "10", + -9.667344093322754 + ], + [ + "▁schedule", + -9.668607711791992 + ], + [ + "▁steps", + -9.669349670410156 + ], + [ + "▁sports", + -9.669713973999023 + ], + [ + "▁David", + -9.670975685119629 + ], + [ + "men", + -9.671329498291016 + ], + [ + "▁assist", + -9.671467781066895 + ], + [ + "▁Research", + -9.672443389892578 + ], + [ + "Z", + -9.673846244812012 + ], + [ + "▁ahead", + -9.674726486206055 + ], + [ + "▁spot", + -9.674824714660645 + ], + [ + "▁sleep", + -9.67587661743164 + ], + [ + "ner", + -9.676437377929688 + ], + [ + "▁Bar", + -9.676690101623535 + ], + [ + "▁driving", + -9.677116394042969 + ], + [ + "▁dark", + -9.677383422851562 + ], + [ + "org", + -9.6781644821167 + ], + [ + "▁Take", + -9.67818546295166 + ], + [ + "▁correct", + -9.678339958190918 + ], + [ + "▁steel", + -9.679618835449219 + ], + [ + "▁wine", + -9.681408882141113 + ], + [ + "▁uses", + -9.683541297912598 + ], + [ + "▁requires", + -9.683853149414062 + ], + [ + "▁print", + -9.684867858886719 + ], + [ + "ful", + -9.685938835144043 + ], + [ + "▁announced", + -9.686511039733887 + ], + [ + "▁tips", + -9.686777114868164 + ], + [ + "▁official", + -9.687578201293945 + ], + [ + "▁sold", + -9.688239097595215 + ], + [ + "▁serious", + -9.689345359802246 + ], + [ + "▁finished", + -9.689525604248047 + ], + [ + "▁numbers", + -9.690775871276855 + ], + [ + "▁states", + -9.690860748291016 + ], + [ + "▁handle", + -9.69128704071045 + ], + [ + "▁notice", + -9.691341400146484 + ], + [ + "▁police", + -9.691668510437012 + ], + [ + "▁task", + -9.692197799682617 + ], + [ + "▁voice", + -9.692268371582031 + ], + [ + "▁Le", + -9.692346572875977 + ], + [ + "▁traffic", + -9.692519187927246 + ], + [ + "▁earlier", + -9.693236351013184 + ], + [ + "▁technical", + -9.694053649902344 + ], + [ + "▁moved", + -9.694284439086914 + ], + [ + "▁owner", + -9.694452285766602 + ], + [ + "▁+", + -9.695082664489746 + ], + [ + "▁enter", + -9.695198059082031 + ], + [ + "▁According", + -9.696305274963379 + ], + [ + "▁advantage", + -9.696572303771973 + ], + [ + "▁cell", + -9.696843147277832 + ], + [ + "▁reports", + -9.697530746459961 + ], + [ + "▁update", + -9.698811531066895 + ], + [ + "▁met", + -9.699640274047852 + ], + [ + "▁woman", + -9.699846267700195 + ], + [ + "▁metal", + -9.701354026794434 + ], + [ + "▁covered", + -9.70140266418457 + ], + [ + "▁fish", + -9.701424598693848 + ], + [ + "net", + -9.70166301727295 + ], + [ + "▁appear", + -9.701854705810547 + ], + [ + "▁act", + -9.702134132385254 + ], + [ + "▁Paul", + -9.702349662780762 + ], + [ + "▁winter", + -9.704164505004883 + ], + [ + "▁primary", + -9.70421314239502 + ], + [ + "▁ball", + -9.704626083374023 + ], + [ + "▁22", + -9.704702377319336 + ], + [ + "▁carry", + -9.704874038696289 + ], + [ + "▁generally", + -9.70541763305664 + ], + [ + "▁drop", + -9.707053184509277 + ], + [ + "▁reviews", + -9.707816123962402 + ], + [ + "▁cleaning", + -9.709331512451172 + ], + [ + "▁sweet", + -9.710494995117188 + ], + [ + "▁target", + -9.711882591247559 + ], + [ + "▁capital", + -9.713027000427246 + ], + [ + "▁father", + -9.713884353637695 + ], + [ + "Q", + -9.713934898376465 + ], + [ + "▁experts", + -9.714544296264648 + ], + [ + "▁flow", + -9.714903831481934 + ], + [ + "▁remain", + -9.71496868133545 + ], + [ + "▁Any", + -9.715194702148438 + ], + [ + "▁tree", + -9.716161727905273 + ], + [ + "▁onto", + -9.717287063598633 + ], + [ + "▁path", + -9.717631340026855 + ], + [ + "▁shape", + -9.71790599822998 + ], + [ + "▁shopping", + -9.717964172363281 + ], + [ + "▁sort", + -9.718622207641602 + ], + [ + "▁teaching", + -9.718981742858887 + ], + [ + "▁looked", + -9.719220161437988 + ], + [ + "▁finding", + -9.7195463180542 + ], + [ + "▁Court", + -9.72068977355957 + ], + [ + "▁followed", + -9.720962524414062 + ], + [ + "▁holiday", + -9.722349166870117 + ], + [ + "▁cross", + -9.722433090209961 + ], + [ + "▁critical", + -9.72286319732666 + ], + [ + "▁efforts", + -9.723050117492676 + ], + [ + "▁respect", + -9.723258972167969 + ], + [ + "ating", + -9.72330093383789 + ], + [ + "▁actual", + -9.723430633544922 + ], + [ + "▁opening", + -9.724775314331055 + ], + [ + "side", + -9.725083351135254 + ], + [ + "▁views", + -9.726024627685547 + ], + [ + "▁park", + -9.726167678833008 + ], + [ + "back", + -9.72644329071045 + ], + [ + "▁teams", + -9.727733612060547 + ], + [ + "▁People", + -9.728370666503906 + ], + [ + "▁Add", + -9.728717803955078 + ], + [ + "free", + -9.72989559173584 + ], + [ + "▁server", + -9.73077392578125 + ], + [ + "▁therefore", + -9.731337547302246 + ], + [ + "▁Whether", + -9.731669425964355 + ], + [ + "▁mid", + -9.732162475585938 + ], + [ + "▁Another", + -9.7322359085083 + ], + [ + "▁Love", + -9.732422828674316 + ], + [ + "▁fill", + -9.732921600341797 + ], + [ + "▁Call", + -9.733405113220215 + ], + [ + "▁2.", + -9.733539581298828 + ], + [ + "▁organizations", + -9.733957290649414 + ], + [ + "▁perhaps", + -9.734700202941895 + ], + [ + "▁comfort", + -9.736032485961914 + ], + [ + "▁session", + -9.736299514770508 + ], + [ + "▁French", + -9.736489295959473 + ], + [ + "▁movement", + -9.73668098449707 + ], + [ + "▁loan", + -9.736740112304688 + ], + [ + "▁friendly", + -9.737281799316406 + ], + [ + "▁secure", + -9.737504005432129 + ], + [ + "▁stress", + -9.738334655761719 + ], + [ + "▁Club", + -9.73897933959961 + ], + [ + "▁advanced", + -9.739727020263672 + ], + [ + "▁dedicated", + -9.739786148071289 + ], + [ + "▁background", + -9.740192413330078 + ], + [ + "▁gets", + -9.740865707397461 + ], + [ + "▁elements", + -9.740891456604004 + ], + [ + "▁shared", + -9.743027687072754 + ], + [ + "▁force", + -9.743499755859375 + ], + [ + "▁Will", + -9.743979454040527 + ], + [ + "▁classic", + -9.745373725891113 + ], + [ + "▁River", + -9.74624252319336 + ], + [ + "▁billion", + -9.74631118774414 + ], + [ + "ated", + -9.746625900268555 + ], + [ + "▁copy", + -9.747743606567383 + ], + [ + "ca", + -9.747756958007812 + ], + [ + "▁parties", + -9.748046875 + ], + [ + "▁developing", + -9.748785018920898 + ], + [ + "▁statement", + -9.749634742736816 + ], + [ + "▁himself", + -9.750357627868652 + ], + [ + "▁standards", + -9.750587463378906 + ], + [ + "ill", + -9.75163459777832 + ], + [ + "▁talking", + -9.752769470214844 + ], + [ + "▁perform", + -9.753454208374023 + ], + [ + "▁professionals", + -9.755060195922852 + ], + [ + "▁jobs", + -9.755096435546875 + ], + [ + "▁population", + -9.755128860473633 + ], + [ + "▁club", + -9.755621910095215 + ], + [ + "▁Management", + -9.755870819091797 + ], + [ + "▁contract", + -9.755931854248047 + ], + [ + "▁challenges", + -9.756233215332031 + ], + [ + "▁host", + -9.756597518920898 + ], + [ + "▁Web", + -9.756776809692383 + ], + [ + "▁song", + -9.757061958312988 + ], + [ + "▁audience", + -9.757803916931152 + ], + [ + "pm", + -9.758549690246582 + ], + [ + "▁contains", + -9.758915901184082 + ], + [ + "▁facilities", + -9.759045600891113 + ], + [ + "▁memory", + -9.759801864624023 + ], + [ + "▁Washington", + -9.760104179382324 + ], + [ + "▁demand", + -9.762336730957031 + ], + [ + "▁cells", + -9.762579917907715 + ], + [ + "▁foot", + -9.762819290161133 + ], + [ + "▁exercise", + -9.762832641601562 + ], + [ + "▁solid", + -9.762999534606934 + ], + [ + "▁Other", + -9.763907432556152 + ], + [ + "▁listed", + -9.76391887664795 + ], + [ + "ster", + -9.764617919921875 + ], + [ + "▁spring", + -9.765630722045898 + ], + [ + "q", + -9.765999794006348 + ], + [ + "▁whose", + -9.766495704650879 + ], + [ + "ted", + -9.766958236694336 + ], + [ + "▁British", + -9.767172813415527 + ], + [ + "▁transfer", + -9.768298149108887 + ], + [ + "▁speak", + -9.768956184387207 + ], + [ + "▁colors", + -9.769484519958496 + ], + [ + "▁maintenance", + -9.769979476928711 + ], + [ + "▁presented", + -9.770581245422363 + ], + [ + "▁homes", + -9.77097225189209 + ], + [ + "▁produced", + -9.77100944519043 + ], + [ + "▁separate", + -9.7714204788208 + ], + [ + "▁discuss", + -9.772380828857422 + ], + [ + "▁Lake", + -9.773412704467773 + ], + [ + "▁Find", + -9.773578643798828 + ], + [ + "▁properties", + -9.774148941040039 + ], + [ + "▁selected", + -9.775176048278809 + ], + [ + "▁Every", + -9.776983261108398 + ], + [ + "▁heavy", + -9.777278900146484 + ], + [ + "▁plenty", + -9.77881145477295 + ], + [ + "▁mix", + -9.779882431030273 + ], + [ + "▁seven", + -9.781065940856934 + ], + [ + "▁fan", + -9.781076431274414 + ], + [ + "▁Hi", + -9.781251907348633 + ], + [ + "▁relevant", + -9.78257942199707 + ], + [ + "▁factors", + -9.78286361694336 + ], + [ + "▁wife", + -9.782888412475586 + ], + [ + "▁seeing", + -9.783754348754883 + ], + [ + "▁flat", + -9.783839225769043 + ], + [ + "▁learned", + -9.78433609008789 + ], + [ + "▁techniques", + -9.784878730773926 + ], + [ + "▁2014", + -9.786993026733398 + ], + [ + "▁comments", + -9.787418365478516 + ], + [ + "▁Florida", + -9.78748607635498 + ], + [ + "▁driver", + -9.787717819213867 + ], + [ + "▁couldn", + -9.787945747375488 + ], + [ + "▁thank", + -9.788562774658203 + ], + [ + "www", + -9.7886323928833 + ], + [ + "▁Road", + -9.788649559020996 + ], + [ + "▁placed", + -9.788715362548828 + ], + [ + "▁values", + -9.788780212402344 + ], + [ + "wood", + -9.790103912353516 + ], + [ + "▁General", + -9.79093074798584 + ], + [ + "▁fee", + -9.791122436523438 + ], + [ + "▁testing", + -9.791715621948242 + ], + [ + "▁evening", + -9.791890144348145 + ], + [ + "▁classes", + -9.793770790100098 + ], + [ + "▁buying", + -9.795112609863281 + ], + [ + "▁leaders", + -9.795304298400879 + ], + [ + "▁capacity", + -9.797255516052246 + ], + [ + "▁gain", + -9.797322273254395 + ], + [ + "▁Open", + -9.798030853271484 + ], + [ + "▁Life", + -9.798059463500977 + ], + [ + "▁communities", + -9.798772811889648 + ], + [ + "▁Institute", + -9.798894882202148 + ], + [ + "ier", + -9.799235343933105 + ], + [ + "▁keeping", + -9.800376892089844 + ], + [ + "▁brain", + -9.801084518432617 + ], + [ + "▁century", + -9.801430702209473 + ], + [ + "▁guests", + -9.801506996154785 + ], + [ + "▁status", + -9.801998138427734 + ], + [ + "▁Un", + -9.802183151245117 + ], + [ + "▁Con", + -9.802231788635254 + ], + [ + "▁waste", + -9.802892684936523 + ], + [ + "▁plants", + -9.802970886230469 + ], + [ + "ler", + -9.804646492004395 + ], + [ + "▁Apple", + -9.804654121398926 + ], + [ + "way", + -9.804691314697266 + ], + [ + "é", + -9.80516242980957 + ], + [ + "▁IT", + -9.805469512939453 + ], + [ + "▁named", + -9.807135581970215 + ], + [ + "▁famous", + -9.80876636505127 + ], + [ + "▁accept", + -9.809378623962402 + ], + [ + "▁figure", + -9.8093900680542 + ], + [ + "▁husband", + -9.810198783874512 + ], + [ + "▁installation", + -9.810410499572754 + ], + [ + "▁package", + -9.810551643371582 + ], + [ + "▁Mar", + -9.812118530273438 + ], + [ + "ance", + -9.812378883361816 + ], + [ + "▁competition", + -9.812416076660156 + ], + [ + "ten", + -9.812500953674316 + ], + [ + "▁director", + -9.814188003540039 + ], + [ + "▁prepared", + -9.814440727233887 + ], + [ + "▁conference", + -9.815613746643066 + ], + [ + "▁Christ", + -9.816632270812988 + ], + [ + "▁kept", + -9.816974639892578 + ], + [ + "▁bathroom", + -9.817850112915039 + ], + [ + "▁restaurant", + -9.818136215209961 + ], + [ + "▁comment", + -9.81861400604248 + ], + [ + "▁adding", + -9.8190279006958 + ], + [ + "▁funds", + -9.819427490234375 + ], + [ + "▁plastic", + -9.819793701171875 + ], + [ + "▁combination", + -9.82044506072998 + ], + [ + "▁biggest", + -9.820446014404297 + ], + [ + "▁shot", + -9.820455551147461 + ], + [ + "TM", + -9.820956230163574 + ], + [ + "▁decide", + -9.821073532104492 + ], + [ + "▁gone", + -9.822918891906738 + ], + [ + "▁dream", + -9.822931289672852 + ], + [ + "▁sector", + -9.822944641113281 + ], + [ + "▁direction", + -9.822969436645508 + ], + [ + "▁score", + -9.823592185974121 + ], + [ + "▁operations", + -9.82374095916748 + ], + [ + "▁helpful", + -9.82380199432373 + ], + [ + "▁operating", + -9.823887825012207 + ], + [ + "▁connect", + -9.823890686035156 + ], + [ + "▁Church", + -9.824389457702637 + ], + [ + "▁links", + -9.824673652648926 + ], + [ + "▁http", + -9.82490062713623 + ], + [ + "▁temperature", + -9.825087547302246 + ], + [ + "▁aware", + -9.825821876525879 + ], + [ + "▁core", + -9.826136589050293 + ], + [ + "▁concept", + -9.826398849487305 + ], + [ + "▁owners", + -9.829132080078125 + ], + [ + "▁initial", + -9.82948112487793 + ], + [ + "▁rich", + -9.830265998840332 + ], + [ + "▁visitors", + -9.83056640625 + ], + [ + "▁Texas", + -9.83080768585205 + ], + [ + "▁outdoor", + -9.83080768585205 + ], + [ + "▁ten", + -9.830838203430176 + ], + [ + "▁straight", + -9.830862045288086 + ], + [ + "▁mission", + -9.830923080444336 + ], + [ + "like", + -9.83272933959961 + ], + [ + "▁meaning", + -9.833927154541016 + ], + [ + "▁star", + -9.834000587463379 + ], + [ + "▁dinner", + -9.834382057189941 + ], + [ + "▁smaller", + -9.834567070007324 + ], + [ + "▁taste", + -9.835326194763184 + ], + [ + "▁expert", + -9.835617065429688 + ], + [ + "▁ice", + -9.836307525634766 + ], + [ + "▁strength", + -9.836614608764648 + ], + [ + "▁Post", + -9.837287902832031 + ], + [ + "▁Two", + -9.837631225585938 + ], + [ + "▁rooms", + -9.838598251342773 + ], + [ + "▁coverage", + -9.83911418914795 + ], + [ + "field", + -9.839794158935547 + ], + [ + "▁Bay", + -9.839832305908203 + ], + [ + "▁Thursday", + -9.84040355682373 + ], + [ + "▁map", + -9.84114933013916 + ], + [ + "▁vision", + -9.84181022644043 + ], + [ + "▁proper", + -9.842058181762695 + ], + [ + "ou", + -9.842243194580078 + ], + [ + "led", + -9.84225082397461 + ], + [ + "▁experiences", + -9.843277931213379 + ], + [ + "▁master", + -9.844053268432617 + ], + [ + "ver", + -9.844342231750488 + ], + [ + "▁medium", + -9.84437084197998 + ], + [ + "▁Water", + -9.844420433044434 + ], + [ + "▁numerous", + -9.844780921936035 + ], + [ + "han", + -9.844935417175293 + ], + [ + "▁sugar", + -9.845430374145508 + ], + [ + "▁tend", + -9.845702171325684 + ], + [ + "▁progress", + -9.846319198608398 + ], + [ + "▁press", + -9.84642219543457 + ], + [ + "▁essay", + -9.84807014465332 + ], + [ + "▁leader", + -9.848640441894531 + ], + [ + "▁23", + -9.848678588867188 + ], + [ + "▁Who", + -9.848864555358887 + ], + [ + "▁block", + -9.848992347717285 + ], + [ + "▁economy", + -9.849109649658203 + ], + [ + "▁military", + -9.849132537841797 + ], + [ + "over", + -9.849180221557617 + ], + [ + "▁waiting", + -9.849353790283203 + ], + [ + "▁beach", + -9.84970760345459 + ], + [ + "▁forms", + -9.85045337677002 + ], + [ + "▁bag", + -9.850504875183105 + ], + [ + "▁workers", + -9.851945877075195 + ], + [ + "▁Bank", + -9.85210132598877 + ], + [ + "▁older", + -9.852228164672852 + ], + [ + "▁Chinese", + -9.852956771850586 + ], + [ + "▁length", + -9.853474617004395 + ], + [ + "▁central", + -9.853681564331055 + ], + [ + "▁society", + -9.854039192199707 + ], + [ + "▁James", + -9.85405158996582 + ], + [ + "▁drug", + -9.854167938232422 + ], + [ + "▁reality", + -9.854558944702148 + ], + [ + "▁award", + -9.854920387268066 + ], + [ + "▁street", + -9.855208396911621 + ], + [ + "▁seek", + -9.85525131225586 + ], + [ + "▁promote", + -9.856552124023438 + ], + [ + "▁Mac", + -9.856589317321777 + ], + [ + "▁casino", + -9.856839179992676 + ], + [ + "▁Like", + -9.85739803314209 + ], + [ + "▁ex", + -9.857810974121094 + ], + [ + "▁beauty", + -9.858170509338379 + ], + [ + "▁document", + -9.858495712280273 + ], + [ + "▁passed", + -9.8587064743042 + ], + [ + "ham", + -9.859502792358398 + ], + [ + "▁cars", + -9.859847068786621 + ], + [ + "▁poor", + -9.86108112335205 + ], + [ + "▁install", + -9.863088607788086 + ], + [ + "▁otherwise", + -9.863982200622559 + ], + [ + "▁lose", + -9.865863800048828 + ], + [ + "▁expensive", + -9.866400718688965 + ], + [ + "▁PC", + -9.866446495056152 + ], + [ + "▁Last", + -9.866584777832031 + ], + [ + "▁connected", + -9.867010116577148 + ], + [ + "▁Online", + -9.8673095703125 + ], + [ + "▁Ma", + -9.867809295654297 + ], + [ + "▁Tuesday", + -9.868875503540039 + ], + [ + "▁mentioned", + -9.86893081665039 + ], + [ + "▁fantastic", + -9.869400978088379 + ], + [ + "▁changing", + -9.869476318359375 + ], + [ + "▁identify", + -9.869539260864258 + ], + [ + "ize", + -9.870033264160156 + ], + [ + "▁Law", + -9.870888710021973 + ], + [ + "▁format", + -9.871170997619629 + ], + [ + "con", + -9.871241569519043 + ], + [ + "house", + -9.87137222290039 + ], + [ + "▁Director", + -9.871691703796387 + ], + [ + "▁processes", + -9.871888160705566 + ], + [ + "▁frame", + -9.873092651367188 + ], + [ + "▁Time", + -9.873153686523438 + ], + [ + "▁stone", + -9.87579345703125 + ], + [ + "▁King", + -9.87594985961914 + ], + [ + "▁scale", + -9.8764009475708 + ], + [ + "ville", + -9.876529693603516 + ], + [ + "▁agreement", + -9.877272605895996 + ], + [ + "▁Lord", + -9.87732219696045 + ], + [ + "▁fans", + -9.87744140625 + ], + [ + "▁residents", + -9.877779006958008 + ], + [ + "▁wants", + -9.877781867980957 + ], + [ + "▁USA", + -9.877796173095703 + ], + [ + "▁auto", + -9.878161430358887 + ], + [ + "▁Africa", + -9.878170013427734 + ], + [ + "▁practices", + -9.878580093383789 + ], + [ + "▁maximum", + -9.880130767822266 + ], + [ + "▁wrote", + -9.880526542663574 + ], + [ + "▁Mark", + -9.881386756896973 + ], + [ + "▁Super", + -9.881404876708984 + ], + [ + "▁artist", + -9.88141918182373 + ], + [ + "▁happened", + -9.881591796875 + ], + [ + "▁eight", + -9.88254165649414 + ], + [ + "▁distance", + -9.882545471191406 + ], + [ + "▁forget", + -9.88283920288086 + ], + [ + "▁federal", + -9.883270263671875 + ], + [ + "▁recipe", + -9.883323669433594 + ], + [ + "▁becoming", + -9.883963584899902 + ], + [ + "▁Trump", + -9.884536743164062 + ], + [ + "▁independent", + -9.885196685791016 + ], + [ + "▁1,", + -9.887075424194336 + ], + [ + "▁menu", + -9.887205123901367 + ], + [ + "▁treat", + -9.8877592086792 + ], + [ + "▁applied", + -9.888043403625488 + ], + [ + "▁la", + -9.888397216796875 + ], + [ + "▁president", + -9.889305114746094 + ], + [ + "▁efficient", + -9.88941478729248 + ], + [ + "▁operation", + -9.890006065368652 + ], + [ + "▁di", + -9.89007568359375 + ], + [ + "▁station", + -9.891424179077148 + ], + [ + "▁$", + -9.891661643981934 + ], + [ + "▁rock", + -9.892268180847168 + ], + [ + "▁sit", + -9.89372730255127 + ], + [ + "▁whatever", + -9.893988609313965 + ], + [ + "*", + -9.89404582977295 + ], + [ + "▁detail", + -9.895092964172363 + ], + [ + "▁El", + -9.895845413208008 + ], + [ + "▁showing", + -9.8960599899292 + ], + [ + "▁characters", + -9.896181106567383 + ], + [ + "▁28", + -9.896350860595703 + ], + [ + "▁panel", + -9.896406173706055 + ], + [ + "▁alternative", + -9.897603988647461 + ], + [ + "е", + -9.897823333740234 + ], + [ + "▁2013", + -9.897906303405762 + ], + [ + "▁Wednesday", + -9.898791313171387 + ], + [ + "▁processing", + -9.89924430847168 + ], + [ + "▁thousands", + -9.899730682373047 + ], + [ + "▁con", + -9.899894714355469 + ], + [ + "▁slow", + -9.900164604187012 + ], + [ + "▁Both", + -9.900225639343262 + ], + [ + "▁$1", + -9.901796340942383 + ], + [ + "▁documents", + -9.902440071105957 + ], + [ + "▁happens", + -9.90259838104248 + ], + [ + "▁tea", + -9.903103828430176 + ], + [ + "▁thus", + -9.9041166305542 + ], + [ + "▁dining", + -9.904568672180176 + ], + [ + "▁Data", + -9.905250549316406 + ], + [ + "▁Top", + -9.905411720275879 + ], + [ + "ard", + -9.906315803527832 + ], + [ + "▁Education", + -9.906577110290527 + ], + [ + "!!!", + -9.907296180725098 + ], + [ + "▁excited", + -9.907577514648438 + ], + [ + "50", + -9.90847110748291 + ], + [ + "▁100%", + -9.908592224121094 + ], + [ + "▁selling", + -9.90925407409668 + ], + [ + "▁Blue", + -9.910014152526855 + ], + [ + "▁focused", + -9.910086631774902 + ], + [ + "▁described", + -9.910093307495117 + ], + [ + "▁train", + -9.9109525680542 + ], + [ + "▁paint", + -9.911972045898438 + ], + [ + "▁continued", + -9.912481307983398 + ], + [ + "▁fashion", + -9.912883758544922 + ], + [ + "▁minute", + -9.912939071655273 + ], + [ + "▁radio", + -9.913138389587402 + ], + [ + "▁Mo", + -9.913961410522461 + ], + [ + "▁album", + -9.91487979888916 + ], + [ + "▁Michael", + -9.91638469696045 + ], + [ + "▁Their", + -9.917425155639648 + ], + [ + "all", + -9.91782283782959 + ], + [ + "▁Science", + -9.91795539855957 + ], + [ + "▁26", + -9.918313980102539 + ], + [ + "▁pattern", + -9.91841983795166 + ], + [ + "▁bedroom", + -9.920763969421387 + ], + [ + "▁opened", + -9.921586990356445 + ], + [ + "▁Power", + -9.922029495239258 + ], + [ + "▁caused", + -9.922040939331055 + ], + [ + "▁cheap", + -9.922359466552734 + ], + [ + "▁units", + -9.92322826385498 + ], + [ + "▁corporate", + -9.923394203186035 + ], + [ + "▁awesome", + -9.923783302307129 + ], + [ + "▁prepare", + -9.924184799194336 + ], + [ + "ence", + -9.924579620361328 + ], + [ + "▁affordable", + -9.925323486328125 + ], + [ + "▁bought", + -9.925690650939941 + ], + [ + "▁truth", + -9.925806999206543 + ], + [ + "▁edge", + -9.926034927368164 + ], + [ + "▁Download", + -9.926337242126465 + ], + [ + "▁minimum", + -9.926473617553711 + ], + [ + "▁Pre", + -9.92651653289795 + ], + [ + "▁fees", + -9.92670726776123 + ], + [ + "her", + -9.926901817321777 + ], + [ + "▁Indian", + -9.92695140838623 + ], + [ + "▁absolutely", + -9.927777290344238 + ], + [ + "­", + -9.927851676940918 + ], + [ + "▁discover", + -9.927881240844727 + ], + [ + "▁exciting", + -9.928435325622559 + ], + [ + "▁fair", + -9.929047584533691 + ], + [ + "ger", + -9.929668426513672 + ], + [ + "▁daughter", + -9.930371284484863 + ], + [ + "▁Star", + -9.930877685546875 + ], + [ + "▁System", + -9.932388305664062 + ], + [ + "25", + -9.932921409606934 + ], + [ + "▁presence", + -9.932966232299805 + ], + [ + "▁manager", + -9.933679580688477 + ], + [ + "▁ride", + -9.933757781982422 + ], + [ + "▁Where", + -9.934202194213867 + ], + [ + "▁facility", + -9.934964179992676 + ], + [ + "▁Island", + -9.935123443603516 + ], + [ + "▁toward", + -9.935194969177246 + ], + [ + "▁spending", + -9.936227798461914 + ], + [ + "▁names", + -9.936466217041016 + ], + [ + "▁performed", + -9.93718147277832 + ], + [ + "▁remains", + -9.937667846679688 + ], + [ + "▁decisions", + -9.937995910644531 + ], + [ + "▁Year", + -9.938050270080566 + ], + [ + "▁majority", + -9.938130378723145 + ], + [ + "▁centre", + -9.939044952392578 + ], + [ + "▁2012", + -9.939264297485352 + ], + [ + "▁sources", + -9.939270973205566 + ], + [ + "▁enjoyed", + -9.939885139465332 + ], + [ + "▁records", + -9.9407320022583 + ], + [ + "▁properly", + -9.940875053405762 + ], + [ + "▁assistance", + -9.94214916229248 + ], + [ + "▁installed", + -9.942368507385254 + ], + [ + "▁reference", + -9.943730354309082 + ], + [ + "▁videos", + -9.94399356842041 + ], + [ + "▁becomes", + -9.9442138671875 + ], + [ + "▁corner", + -9.944304466247559 + ], + [ + "▁Big", + -9.944717407226562 + ], + [ + "▁leadership", + -9.946375846862793 + ], + [ + "▁recommended", + -9.946551322937012 + ], + [ + "▁teacher", + -9.94677448272705 + ], + [ + "▁designs", + -9.947125434875488 + ], + [ + "▁>", + -9.94880485534668 + ], + [ + "▁policies", + -9.949090003967285 + ], + [ + "▁updated", + -9.949371337890625 + ], + [ + "▁cream", + -9.949450492858887 + ], + [ + "▁manner", + -9.950039863586426 + ], + [ + "▁sounds", + -9.950851440429688 + ], + [ + "▁ingredients", + -9.951454162597656 + ], + [ + "▁Ha", + -9.95254898071289 + ], + [ + "▁suitable", + -9.952601432800293 + ], + [ + "tion", + -9.953384399414062 + ], + [ + "▁topic", + -9.953446388244629 + ], + [ + "▁exchange", + -9.953825950622559 + ], + [ + "ED", + -9.954071044921875 + ], + [ + "▁interview", + -9.954093933105469 + ], + [ + "use", + -9.955276489257812 + ], + [ + "▁square", + -9.956648826599121 + ], + [ + "▁seat", + -9.956932067871094 + ], + [ + "▁Before", + -9.957098007202148 + ], + [ + "▁diet", + -9.957592010498047 + ], + [ + "▁animals", + -9.957908630371094 + ], + [ + "▁managed", + -9.958877563476562 + ], + [ + "▁serving", + -9.959067344665527 + ], + [ + "▁Next", + -9.959421157836914 + ], + [ + "▁spread", + -9.959800720214844 + ], + [ + "▁Book", + -9.96008014678955 + ], + [ + "▁roof", + -9.960234642028809 + ], + [ + "▁department", + -9.960328102111816 + ], + [ + "▁Development", + -9.960371971130371 + ], + [ + "ING", + -9.961335182189941 + ], + [ + "▁injury", + -9.96136474609375 + ], + [ + "▁detailed", + -9.961461067199707 + ], + [ + "▁fight", + -9.961488723754883 + ], + [ + "▁Amazon", + -9.961710929870605 + ], + [ + "▁smart", + -9.962642669677734 + ], + [ + "ul", + -9.962801933288574 + ], + [ + "▁walking", + -9.96286678314209 + ], + [ + "▁England", + -9.963339805603027 + ], + [ + "▁Di", + -9.963467597961426 + ], + [ + "▁wind", + -9.9636869430542 + ], + [ + "▁artists", + -9.964488983154297 + ], + [ + "▁senior", + -9.966158866882324 + ], + [ + "Re", + -9.966903686523438 + ], + [ + "▁increasing", + -9.967275619506836 + ], + [ + "▁teachers", + -9.96768569946289 + ], + [ + "▁allowing", + -9.967951774597168 + ], + [ + "▁leaving", + -9.968621253967285 + ], + [ + "▁peace", + -9.969500541687012 + ], + [ + "▁info", + -9.969523429870605 + ], + [ + "▁registered", + -9.971013069152832 + ], + [ + "▁lovely", + -9.971550941467285 + ], + [ + "▁automatically", + -9.972155570983887 + ], + [ + "▁provider", + -9.973299980163574 + ], + [ + "▁closed", + -9.973494529724121 + ], + [ + "▁Foundation", + -9.975021362304688 + ], + [ + "▁components", + -9.975428581237793 + ], + [ + "▁windows", + -9.975467681884766 + ], + [ + "▁strategies", + -9.975802421569824 + ], + [ + "▁died", + -9.976675033569336 + ], + [ + "▁Program", + -9.976834297180176 + ], + [ + "▁clearly", + -9.976846694946289 + ], + [ + "▁girl", + -9.97729778289795 + ], + [ + "▁concerns", + -9.977422714233398 + ], + [ + "▁27", + -9.977423667907715 + ], + [ + "▁www", + -9.978472709655762 + ], + [ + "▁suggest", + -9.97887897491455 + ], + [ + "▁internal", + -9.979432106018066 + ], + [ + "▁claims", + -9.979470252990723 + ], + [ + "▁typically", + -9.979634284973145 + ], + [ + "▁agency", + -9.98052978515625 + ], + [ + "▁3.", + -9.981846809387207 + ], + [ + "▁TO", + -9.982412338256836 + ], + [ + "▁expertise", + -9.98243236541748 + ], + [ + "▁generation", + -9.982966423034668 + ], + [ + "ology", + -9.983118057250977 + ], + [ + "▁academic", + -9.983705520629883 + ], + [ + "▁filled", + -9.984545707702637 + ], + [ + "▁fuel", + -9.985239028930664 + ], + [ + "▁Central", + -9.9854097366333 + ], + [ + "▁calls", + -9.985468864440918 + ], + [ + "▁colour", + -9.985944747924805 + ], + [ + "▁foreign", + -9.986002922058105 + ], + [ + "▁previously", + -9.986297607421875 + ], + [ + "▁trees", + -9.986363410949707 + ], + [ + "▁negative", + -9.986599922180176 + ], + [ + "▁runs", + -9.986623764038086 + ], + [ + "▁environmental", + -9.986658096313477 + ], + [ + "▁approximately", + -9.987000465393066 + ], + [ + "▁pan", + -9.988052368164062 + ], + [ + "▁AND", + -9.990025520324707 + ], + [ + "▁cities", + -9.990362167358398 + ], + [ + "▁snow", + -9.990379333496094 + ], + [ + "▁doctor", + -9.990527153015137 + ], + [ + "▁Note", + -9.99069595336914 + ], + [ + "▁Social", + -9.991788864135742 + ], + [ + "▁eating", + -9.992640495300293 + ], + [ + "▁error", + -9.993085861206055 + ], + [ + "▁Team", + -9.993431091308594 + ], + [ + "▁Information", + -9.994560241699219 + ], + [ + "▁funding", + -9.995262145996094 + ], + [ + "gen", + -9.995316505432129 + ], + [ + "mer", + -9.995575904846191 + ], + [ + "▁category", + -9.99570369720459 + ], + [ + "▁micro", + -9.995718955993652 + ], + [ + "▁busy", + -9.99777889251709 + ], + [ + "▁courses", + -9.997784614562988 + ], + [ + "let", + -9.998106956481934 + ], + [ + "▁slightly", + -9.998457908630371 + ], + [ + "▁Government", + -9.998644828796387 + ], + [ + "▁discussion", + -9.99880599975586 + ], + [ + "▁relationships", + -9.999787330627441 + ], + [ + "▁practical", + -10.00046157836914 + ], + [ + "▁battery", + -10.001873016357422 + ], + [ + "▁shipping", + -10.00213623046875 + ], + [ + "▁interior", + -10.002632141113281 + ], + [ + "▁theme", + -10.002760887145996 + ], + [ + "▁Gold", + -10.00298023223877 + ], + [ + "▁continues", + -10.00307559967041 + ], + [ + "ability", + -10.003092765808105 + ], + [ + "▁attack", + -10.003547668457031 + ], + [ + "▁wouldn", + -10.00365924835205 + ], + [ + "▁bus", + -10.00633716583252 + ], + [ + "▁showed", + -10.006567001342773 + ], + [ + "▁football", + -10.006749153137207 + ], + [ + "▁Beach", + -10.007158279418945 + ], + [ + "▁delicious", + -10.007194519042969 + ], + [ + "▁combined", + -10.00761604309082 + ], + [ + "▁Se", + -10.007631301879883 + ], + [ + "▁species", + -10.00775146484375 + ], + [ + "▁volume", + -10.007782936096191 + ], + [ + "▁Hall", + -10.008437156677246 + ], + [ + "▁profile", + -10.009537696838379 + ], + [ + "▁pair", + -10.009781837463379 + ], + [ + "▁consist", + -10.010184288024902 + ], + [ + "▁faith", + -10.01089859008789 + ], + [ + "▁bill", + -10.010986328125 + ], + [ + "▁drink", + -10.011054992675781 + ], + [ + "▁climate", + -10.011351585388184 + ], + [ + "▁advance", + -10.012102127075195 + ], + [ + "▁debt", + -10.012269020080566 + ], + [ + "▁smooth", + -10.013031959533691 + ], + [ + "▁database", + -10.013054847717285 + ], + [ + "▁Music", + -10.013228416442871 + ], + [ + "▁vote", + -10.013617515563965 + ], + [ + "▁leaves", + -10.013729095458984 + ], + [ + "▁parking", + -10.014605522155762 + ], + [ + "▁depending", + -10.014616966247559 + ], + [ + "▁locations", + -10.01512336730957 + ], + [ + "▁net", + -10.01519775390625 + ], + [ + "▁responsibility", + -10.01550006866455 + ], + [ + "30", + -10.015692710876465 + ], + [ + "▁brings", + -10.015748977661133 + ], + [ + "▁vehicles", + -10.016168594360352 + ], + [ + "▁putting", + -10.01619815826416 + ], + [ + "▁Christian", + -10.016780853271484 + ], + [ + "▁prefer", + -10.01688289642334 + ], + [ + "▁technologies", + -10.017107963562012 + ], + [ + "▁raised", + -10.017642974853516 + ], + [ + "▁scene", + -10.01803207397461 + ], + [ + "▁reflect", + -10.018303871154785 + ], + [ + "▁importance", + -10.018306732177734 + ], + [ + "▁audio", + -10.018349647521973 + ], + [ + "▁dance", + -10.018474578857422 + ], + [ + "▁affect", + -10.019612312316895 + ], + [ + "▁unless", + -10.020166397094727 + ], + [ + "▁France", + -10.02038288116455 + ], + [ + "▁launch", + -10.021008491516113 + ], + [ + "▁feedback", + -10.021153450012207 + ], + [ + "▁nation", + -10.0214262008667 + ], + [ + "▁encourage", + -10.02165412902832 + ], + [ + "port", + -10.021778106689453 + ], + [ + "▁influence", + -10.022509574890137 + ], + [ + "▁proud", + -10.022564888000488 + ], + [ + "▁reliable", + -10.02414608001709 + ], + [ + "12", + -10.024251937866211 + ], + [ + "▁Community", + -10.024506568908691 + ], + [ + "▁Read", + -10.025447845458984 + ], + [ + "▁attempt", + -10.025790214538574 + ], + [ + "▁Microsoft", + -10.026036262512207 + ], + [ + "▁Committee", + -10.02643871307373 + ], + [ + "mp", + -10.026517868041992 + ], + [ + "▁miss", + -10.02653694152832 + ], + [ + "▁aspects", + -10.027325630187988 + ], + [ + "▁hospital", + -10.028353691101074 + ], + [ + "▁200", + -10.028534889221191 + ], + [ + "ji", + -10.02877140045166 + ], + [ + "▁visual", + -10.0304594039917 + ], + [ + "▁specifically", + -10.030601501464844 + ], + [ + "▁markets", + -10.030670166015625 + ], + [ + "▁@", + -10.031238555908203 + ], + [ + "▁quarter", + -10.031354904174805 + ], + [ + "▁innovative", + -10.031817436218262 + ], + [ + "ang", + -10.031902313232422 + ], + [ + "▁industrial", + -10.0320463180542 + ], + [ + "▁fabric", + -10.032262802124023 + ], + [ + "▁fat", + -10.033158302307129 + ], + [ + "▁stores", + -10.03349494934082 + ], + [ + "▁trading", + -10.034144401550293 + ], + [ + "▁Up", + -10.034324645996094 + ], + [ + "ear", + -10.03468132019043 + ], + [ + "▁Contact", + -10.034941673278809 + ], + [ + "▁fear", + -10.034992218017578 + ], + [ + "▁mental", + -10.035323143005371 + ], + [ + "▁German", + -10.036115646362305 + ], + [ + "▁attend", + -10.036189079284668 + ], + [ + "▁shower", + -10.036701202392578 + ], + [ + "▁obtain", + -10.037875175476074 + ], + [ + "▁Only", + -10.038636207580566 + ], + [ + "▁joined", + -10.03870677947998 + ], + [ + "▁=", + -10.03898811340332 + ], + [ + "▁pop", + -10.039443969726562 + ], + [ + "que", + -10.040877342224121 + ], + [ + "▁instance", + -10.040910720825195 + ], + [ + "▁guys", + -10.041051864624023 + ], + [ + "▁Lo", + -10.04113483428955 + ], + [ + "▁partners", + -10.041536331176758 + ], + [ + "▁rain", + -10.041549682617188 + ], + [ + "izing", + -10.041864395141602 + ], + [ + "ung", + -10.042401313781738 + ], + [ + "▁appears", + -10.043448448181152 + ], + [ + "▁thoughts", + -10.044322967529297 + ], + [ + "ze", + -10.044410705566406 + ], + [ + "▁watching", + -10.04448127746582 + ], + [ + "▁guarantee", + -10.045583724975586 + ], + [ + "▁ourselves", + -10.045863151550293 + ], + [ + "▁comprehensive", + -10.046427726745605 + ], + [ + "▁Project", + -10.04650592803955 + ], + [ + "▁Public", + -10.047235488891602 + ], + [ + "▁posts", + -10.048116683959961 + ], + [ + "▁sample", + -10.048576354980469 + ], + [ + "▁websites", + -10.049302101135254 + ], + [ + "▁mode", + -10.049639701843262 + ], + [ + "▁Learn", + -10.051651954650879 + ], + [ + "▁actions", + -10.053065299987793 + ], + [ + "▁factor", + -10.05329418182373 + ], + [ + "▁winning", + -10.053427696228027 + ], + [ + "▁hearing", + -10.054594993591309 + ], + [ + "▁mostly", + -10.055691719055176 + ], + [ + "▁IN", + -10.055936813354492 + ], + [ + "tic", + -10.056532859802246 + ], + [ + "▁salt", + -10.057714462280273 + ], + [ + "red", + -10.05823802947998 + ], + [ + "▁opinion", + -10.058506965637207 + ], + [ + "▁rise", + -10.058733940124512 + ], + [ + "20", + -10.05941104888916 + ], + [ + "▁90", + -10.060168266296387 + ], + [ + "▁enhance", + -10.060322761535645 + ], + [ + "▁anywhere", + -10.060619354248047 + ], + [ + "▁south", + -10.061077117919922 + ], + [ + "▁OF", + -10.061814308166504 + ], + [ + "but", + -10.061951637268066 + ], + [ + "well", + -10.062453269958496 + ], + [ + "▁sets", + -10.0640869140625 + ], + [ + "▁ended", + -10.065143585205078 + ], + [ + "▁Ho", + -10.065873146057129 + ], + [ + "▁flight", + -10.065948486328125 + ], + [ + "▁grade", + -10.066171646118164 + ], + [ + "▁enable", + -10.06621265411377 + ], + [ + "▁contain", + -10.067121505737305 + ], + [ + "▁fix", + -10.067632675170898 + ], + [ + "▁limit", + -10.067909240722656 + ], + [ + "▁rule", + -10.067940711975098 + ], + [ + "▁committed", + -10.068286895751953 + ], + [ + "▁valuable", + -10.06936264038086 + ], + [ + "▁fruit", + -10.069419860839844 + ], + [ + "▁housing", + -10.07252025604248 + ], + [ + "▁measure", + -10.072824478149414 + ], + [ + "▁worry", + -10.073486328125 + ], + [ + "▁counter", + -10.073972702026367 + ], + [ + "▁Valley", + -10.07461166381836 + ], + [ + "▁trial", + -10.074885368347168 + ], + [ + "▁Care", + -10.075264930725098 + ], + [ + "▁Twitter", + -10.076300621032715 + ], + [ + "not", + -10.076424598693848 + ], + [ + "▁catch", + -10.077289581298828 + ], + [ + "ship", + -10.07812786102295 + ], + [ + "▁Those", + -10.079669952392578 + ], + [ + "▁confidence", + -10.081510543823242 + ], + [ + "▁cultural", + -10.081754684448242 + ], + [ + "▁earth", + -10.082154273986816 + ], + [ + "mail", + -10.082375526428223 + ], + [ + "▁employee", + -10.082706451416016 + ], + [ + "ng", + -10.082990646362305 + ], + [ + "▁pet", + -10.083138465881348 + ], + [ + "ER", + -10.08495807647705 + ], + [ + "▁layer", + -10.085282325744629 + ], + [ + "▁island", + -10.085478782653809 + ], + [ + "▁bike", + -10.08565616607666 + ], + [ + "▁ship", + -10.085786819458008 + ], + [ + "▁context", + -10.085841178894043 + ], + [ + "▁II", + -10.085862159729004 + ], + [ + "▁delivered", + -10.086145401000977 + ], + [ + "ial", + -10.086463928222656 + ], + [ + "▁aim", + -10.087336540222168 + ], + [ + "00", + -10.087509155273438 + ], + [ + "=", + -10.087614059448242 + ], + [ + "▁functions", + -10.087841987609863 + ], + [ + "▁purposes", + -10.088460922241211 + ], + [ + "▁doors", + -10.0886869430542 + ], + [ + "▁competitive", + -10.088869094848633 + ], + [ + "▁participants", + -10.088977813720703 + ], + [ + "▁die", + -10.089427947998047 + ], + [ + "our", + -10.089458465576172 + ], + [ + "▁notes", + -10.089786529541016 + ], + [ + "art", + -10.089917182922363 + ], + [ + "▁tickets", + -10.090389251708984 + ], + [ + "▁Long", + -10.090543746948242 + ], + [ + "▁Centre", + -10.09061336517334 + ], + [ + "▁meal", + -10.090925216674805 + ], + [ + "▁leads", + -10.091261863708496 + ], + [ + "▁register", + -10.091660499572754 + ], + [ + "▁cheese", + -10.092291831970215 + ], + [ + "▁supported", + -10.09251594543457 + ], + [ + "▁faster", + -10.092967987060547 + ], + [ + "▁31", + -10.093293190002441 + ], + [ + "▁visiting", + -10.093413352966309 + ], + [ + "▁replace", + -10.093636512756348 + ], + [ + "▁cloud", + -10.094050407409668 + ], + [ + "▁library", + -10.09486198425293 + ], + [ + "▁District", + -10.095982551574707 + ], + [ + "les", + -10.09599494934082 + ], + [ + "▁measures", + -10.097171783447266 + ], + [ + "▁lunch", + -10.098099708557129 + ], + [ + "▁starts", + -10.098297119140625 + ], + [ + "▁Security", + -10.098475456237793 + ], + [ + "▁draw", + -10.098882675170898 + ], + [ + "▁totally", + -10.098979949951172 + ], + [ + "▁reached", + -10.099052429199219 + ], + [ + "▁realize", + -10.099266052246094 + ], + [ + "▁dead", + -10.099313735961914 + ], + [ + "▁80", + -10.099493026733398 + ], + [ + "ping", + -10.100149154663086 + ], + [ + "▁distribution", + -10.100238800048828 + ], + [ + "▁north", + -10.10075569152832 + ], + [ + "▁Society", + -10.101258277893066 + ], + [ + "▁boat", + -10.101341247558594 + ], + [ + "▁meant", + -10.101395606994629 + ], + [ + "▁object", + -10.10144329071045 + ], + [ + "▁choices", + -10.101541519165039 + ], + [ + "▁articles", + -10.10157585144043 + ], + [ + "▁chicken", + -10.101593017578125 + ], + [ + "▁girls", + -10.101786613464355 + ], + [ + "▁doubt", + -10.102252960205078 + ], + [ + "apos", + -10.102510452270508 + ], + [ + "▁aid", + -10.102956771850586 + ], + [ + "▁Using", + -10.103378295898438 + ], + [ + "▁Japan", + -10.103547096252441 + ], + [ + "▁songs", + -10.103880882263184 + ], + [ + "▁Keep", + -10.10398006439209 + ], + [ + "▁emergency", + -10.104315757751465 + ], + [ + "▁inspired", + -10.10495376586914 + ], + [ + "▁rental", + -10.105286598205566 + ], + [ + "▁listen", + -10.105981826782227 + ], + [ + "▁chair", + -10.106361389160156 + ], + [ + "▁extensive", + -10.106411933898926 + ], + [ + "▁missing", + -10.106879234313965 + ], + [ + "▁replacement", + -10.107023239135742 + ], + [ + "▁Play", + -10.107185363769531 + ], + [ + "▁mine", + -10.107190132141113 + ], + [ + "▁providers", + -10.107670783996582 + ], + [ + "▁Does", + -10.108086585998535 + ], + [ + "▁2010", + -10.108098983764648 + ], + [ + "▁breakfast", + -10.108293533325195 + ], + [ + "▁En", + -10.109102249145508 + ], + [ + "▁despite", + -10.109234809875488 + ], + [ + "▁advertising", + -10.109442710876465 + ], + [ + "▁survey", + -10.109747886657715 + ], + [ + "▁holding", + -10.109790802001953 + ], + [ + "▁appreciate", + -10.1097993850708 + ], + [ + "▁load", + -10.10982894897461 + ], + [ + "▁output", + -10.109843254089355 + ], + [ + "▁Android", + -10.11009693145752 + ], + [ + "▁deals", + -10.110445022583008 + ], + [ + "▁Ne", + -10.110603332519531 + ], + [ + "▁fixed", + -10.11187744140625 + ], + [ + "▁eventually", + -10.112177848815918 + ], + [ + "11", + -10.112457275390625 + ], + [ + "▁Show", + -10.112699508666992 + ], + [ + "▁returned", + -10.112971305847168 + ], + [ + "▁explain", + -10.113227844238281 + ], + [ + "▁educational", + -10.113802909851074 + ], + [ + "▁asking", + -10.114619255065918 + ], + [ + "▁laws", + -10.115706443786621 + ], + [ + "▁removed", + -10.11571216583252 + ], + [ + "fer", + -10.115818977355957 + ], + [ + "▁passion", + -10.115975379943848 + ], + [ + "▁adults", + -10.11613655090332 + ], + [ + "▁70", + -10.116460800170898 + ], + [ + "▁roll", + -10.117169380187988 + ], + [ + "▁raise", + -10.117392539978027 + ], + [ + "▁suit", + -10.11762523651123 + ], + [ + "car", + -10.118714332580566 + ], + [ + "▁Master", + -10.11878776550293 + ], + [ + "▁approved", + -10.119393348693848 + ], + [ + "▁brands", + -10.119779586791992 + ], + [ + "my", + -10.119817733764648 + ], + [ + "▁Work", + -10.120759963989258 + ], + [ + "▁Rock", + -10.121048927307129 + ], + [ + "▁possibly", + -10.121502876281738 + ], + [ + "▁refer", + -10.121636390686035 + ], + [ + "▁inter", + -10.122122764587402 + ], + [ + "▁flowers", + -10.122587203979492 + ], + [ + "▁resolution", + -10.122949600219727 + ], + [ + "▁2011", + -10.123221397399902 + ], + [ + "▁Bill", + -10.123924255371094 + ], + [ + "▁treated", + -10.125798225402832 + ], + [ + "▁cat", + -10.126643180847168 + ], + [ + "▁cast", + -10.12664794921875 + ], + [ + "ja", + -10.127178192138672 + ], + [ + "▁guess", + -10.127891540527344 + ], + [ + "▁iPhone", + -10.128255844116211 + ], + [ + "▁Technology", + -10.128536224365234 + ], + [ + "▁chocolate", + -10.129411697387695 + ], + [ + "▁electronic", + -10.129522323608398 + ], + [ + "▁dress", + -10.129547119140625 + ], + [ + "ring", + -10.129557609558105 + ], + [ + "▁animal", + -10.129984855651855 + ], + [ + "▁CO", + -10.130411148071289 + ], + [ + "▁switch", + -10.130587577819824 + ], + [ + ">", + -10.130825996398926 + ], + [ + "▁resource", + -10.132555961608887 + ], + [ + "▁consumers", + -10.132689476013184 + ], + [ + "▁introduced", + -10.132716178894043 + ], + [ + "▁monthly", + -10.133288383483887 + ], + [ + "▁consumer", + -10.133907318115234 + ], + [ + "▁therapy", + -10.134258270263672 + ], + [ + "▁administration", + -10.135537147521973 + ], + [ + "▁agent", + -10.135729789733887 + ], + [ + "▁electric", + -10.135747909545898 + ], + [ + "▁signed", + -10.136749267578125 + ], + [ + "▁Plus", + -10.136946678161621 + ], + [ + "▁effectively", + -10.138009071350098 + ], + [ + "▁chain", + -10.138564109802246 + ], + [ + "▁George", + -10.138910293579102 + ], + [ + "▁route", + -10.13891887664795 + ], + [ + "▁500", + -10.139854431152344 + ], + [ + "▁push", + -10.140520095825195 + ], + [ + "▁Sun", + -10.140679359436035 + ], + [ + "▁participate", + -10.141098022460938 + ], + [ + "▁Ar", + -10.141470909118652 + ], + [ + "see", + -10.142295837402344 + ], + [ + "▁Sea", + -10.14236068725586 + ], + [ + "pro", + -10.142608642578125 + ], + [ + "▁license", + -10.142824172973633 + ], + [ + "▁desire", + -10.143213272094727 + ], + [ + "▁afternoon", + -10.143704414367676 + ], + [ + "▁registration", + -10.143926620483398 + ], + [ + "▁CD", + -10.144824028015137 + ], + [ + "▁35", + -10.147428512573242 + ], + [ + "▁PM", + -10.14765453338623 + ], + [ + "▁CA", + -10.14816951751709 + ], + [ + "▁29", + -10.148223876953125 + ], + [ + "▁improved", + -10.148431777954102 + ], + [ + "▁meat", + -10.149019241333008 + ], + [ + "▁Part", + -10.14909839630127 + ], + [ + "▁Union", + -10.149309158325195 + ], + [ + "▁milk", + -10.149540901184082 + ], + [ + "▁hire", + -10.150229454040527 + ], + [ + "▁cutting", + -10.150541305541992 + ], + [ + "which", + -10.150740623474121 + ], + [ + "▁appointment", + -10.150754928588867 + ], + [ + "▁Ka", + -10.151436805725098 + ], + [ + "▁Germany", + -10.151491165161133 + ], + [ + "air", + -10.151758193969727 + ], + [ + "▁restaurants", + -10.151863098144531 + ], + [ + "▁lighting", + -10.152369499206543 + ], + [ + "▁Chicago", + -10.1527738571167 + ], + [ + "▁commitment", + -10.152874946594238 + ], + [ + "▁Real", + -10.153458595275879 + ], + [ + "▁Maybe", + -10.153740882873535 + ], + [ + "▁feed", + -10.154041290283203 + ], + [ + "▁accounts", + -10.154681205749512 + ], + [ + "▁retail", + -10.154790878295898 + ], + [ + "work", + -10.15479564666748 + ], + [ + "▁settings", + -10.155569076538086 + ], + [ + "▁Hill", + -10.155852317810059 + ], + [ + "▁birthday", + -10.156355857849121 + ], + [ + "▁intended", + -10.156416893005371 + ], + [ + "▁surrounding", + -10.15708065032959 + ], + [ + "▁domain", + -10.157709121704102 + ], + [ + "▁conversation", + -10.158051490783691 + ], + [ + "▁guest", + -10.158246994018555 + ], + [ + "▁pull", + -10.158964157104492 + ], + [ + "▁paying", + -10.159662246704102 + ], + [ + "▁exam", + -10.159761428833008 + ], + [ + "▁appearance", + -10.16122817993164 + ], + [ + "▁Out", + -10.161806106567383 + ], + [ + "▁updates", + -10.16185474395752 + ], + [ + "▁sitting", + -10.162333488464355 + ], + [ + "▁Hotel", + -10.162487030029297 + ], + [ + "▁Peter", + -10.162534713745117 + ], + [ + "▁purchased", + -10.162649154663086 + ], + [ + "▁seconds", + -10.164819717407227 + ], + [ + "▁seemed", + -10.164959907531738 + ], + [ + "set", + -10.165521621704102 + ], + [ + "▁respond", + -10.165556907653809 + ], + [ + "▁glad", + -10.165987014770508 + ], + [ + "▁Museum", + -10.16650104522705 + ], + [ + "▁calling", + -10.166540145874023 + ], + [ + "▁Under", + -10.166674613952637 + ], + [ + "▁coach", + -10.167129516601562 + ], + [ + "▁procedure", + -10.167195320129395 + ], + [ + "min", + -10.167348861694336 + ], + [ + "▁birth", + -10.167984008789062 + ], + [ + "▁fund", + -10.168391227722168 + ], + [ + "▁manufacturing", + -10.168664932250977 + ], + [ + "▁creation", + -10.168797492980957 + ], + [ + "▁Family", + -10.168922424316406 + ], + [ + "▁se", + -10.169045448303223 + ], + [ + "▁clinical", + -10.169962882995605 + ], + [ + "▁Ko", + -10.170387268066406 + ], + [ + "▁News", + -10.170774459838867 + ], + [ + "ible", + -10.171043395996094 + ], + [ + "▁Commission", + -10.171324729919434 + ], + [ + "▁surgery", + -10.171822547912598 + ], + [ + "board", + -10.17203140258789 + ], + [ + "▁reduced", + -10.172135353088379 + ], + [ + "▁rent", + -10.173334121704102 + ], + [ + "▁infrastructure", + -10.173611640930176 + ], + [ + "▁Head", + -10.175057411193848 + ], + [ + "▁efficiency", + -10.17516040802002 + ], + [ + "▁instructions", + -10.175362586975098 + ], + [ + "▁cooking", + -10.175420761108398 + ], + [ + "▁iron", + -10.17632007598877 + ], + [ + "▁Oh", + -10.176361083984375 + ], + [ + "▁regularly", + -10.176911354064941 + ], + [ + "▁mark", + -10.17734146118164 + ], + [ + "▁bringing", + -10.17735767364502 + ], + [ + "▁4.", + -10.177928924560547 + ], + [ + "▁except", + -10.17813491821289 + ], + [ + "▁supplies", + -10.178159713745117 + ], + [ + "▁wonder", + -10.178260803222656 + ], + [ + "▁saving", + -10.179635047912598 + ], + [ + "▁presentation", + -10.179656028747559 + ], + [ + "▁2018.", + -10.180106163024902 + ], + [ + "▁accurate", + -10.181527137756348 + ], + [ + "▁revenue", + -10.181572914123535 + ], + [ + "ities", + -10.181645393371582 + ], + [ + "▁engineering", + -10.181927680969238 + ], + [ + "▁Instead", + -10.1822509765625 + ], + [ + "▁perfectly", + -10.182506561279297 + ], + [ + "▁Manager", + -10.18269157409668 + ], + [ + "▁covers", + -10.183115005493164 + ], + [ + "▁familiar", + -10.183444023132324 + ], + [ + "▁African", + -10.183560371398926 + ], + [ + "▁Wall", + -10.183895111083984 + ], + [ + "▁bright", + -10.184335708618164 + ], + [ + "15", + -10.184486389160156 + ], + [ + "▁manual", + -10.184735298156738 + ], + [ + "▁ring", + -10.185647010803223 + ], + [ + "45", + -10.185778617858887 + ], + [ + "▁landscape", + -10.186001777648926 + ], + [ + "▁readers", + -10.186196327209473 + ], + [ + "▁Mary", + -10.186277389526367 + ], + [ + "▁behavior", + -10.186284065246582 + ], + [ + "▁greatest", + -10.186321258544922 + ], + [ + "▁Medical", + -10.187213897705078 + ], + [ + "▁spirit", + -10.187225341796875 + ], + [ + "ware", + -10.187440872192383 + ], + [ + "▁perspective", + -10.187458038330078 + ], + [ + "▁Grand", + -10.187610626220703 + ], + [ + "can", + -10.187653541564941 + ], + [ + "▁teach", + -10.187750816345215 + ], + [ + "▁Party", + -10.188172340393066 + ], + [ + "▁transport", + -10.188590049743652 + ], + [ + "ists", + -10.188664436340332 + ], + [ + "▁View", + -10.189528465270996 + ], + [ + "▁Place", + -10.189671516418457 + ], + [ + "▁university", + -10.189739227294922 + ], + [ + "▁Ben", + -10.190506935119629 + ], + [ + "▁seeking", + -10.191046714782715 + ], + [ + "▁chosen", + -10.191174507141113 + ], + [ + "▁launched", + -10.191436767578125 + ], + [ + "▁Food", + -10.191879272460938 + ], + [ + "▁discovered", + -10.192448616027832 + ], + [ + "▁failure", + -10.193533897399902 + ], + [ + "▁Western", + -10.194038391113281 + ], + [ + "▁significantly", + -10.194695472717285 + ], + [ + "▁count", + -10.194819450378418 + ], + [ + "▁Media", + -10.195436477661133 + ], + [ + "▁channel", + -10.19554615020752 + ], + [ + "▁guy", + -10.195615768432617 + ], + [ + "▁cook", + -10.195775032043457 + ], + [ + "▁portion", + -10.196490287780762 + ], + [ + "▁element", + -10.197799682617188 + ], + [ + "▁Fire", + -10.197933197021484 + ], + [ + "▁incredible", + -10.198173522949219 + ], + [ + "▁Australian", + -10.198216438293457 + ], + [ + "▁district", + -10.198766708374023 + ], + [ + "▁combine", + -10.199372291564941 + ], + [ + "▁supporting", + -10.199753761291504 + ], + [ + "▁Brown", + -10.199783325195312 + ], + [ + "▁Per", + -10.199784278869629 + ], + [ + "▁Los", + -10.2006196975708 + ], + [ + "▁hundreds", + -10.201416969299316 + ], + [ + "▁Set", + -10.201446533203125 + ], + [ + "▁nor", + -10.201774597167969 + ], + [ + "▁teeth", + -10.201908111572266 + ], + [ + "down", + -10.20223617553711 + ], + [ + "ure", + -10.202718734741211 + ], + [ + "▁Tom", + -10.202909469604492 + ], + [ + "▁mention", + -10.202959060668945 + ], + [ + "▁Li", + -10.202970504760742 + ], + [ + "▁recovery", + -10.203173637390137 + ], + [ + "▁standing", + -10.203635215759277 + ], + [ + "▁protein", + -10.203841209411621 + ], + [ + "▁lights", + -10.204028129577637 + ], + [ + "-1", + -10.204601287841797 + ], + [ + "▁organic", + -10.205221176147461 + ], + [ + "▁32", + -10.205266952514648 + ], + [ + "▁Wi", + -10.205913543701172 + ], + [ + "▁Ltd", + -10.206915855407715 + ], + [ + "ran", + -10.207136154174805 + ], + [ + "▁determined", + -10.207139015197754 + ], + [ + "▁Sa", + -10.20766544342041 + ], + [ + "▁equal", + -10.207947731018066 + ], + [ + "▁Press", + -10.208134651184082 + ], + [ + "▁Global", + -10.208250045776367 + ], + [ + "▁bowl", + -10.208599090576172 + ], + [ + "▁Israel", + -10.209148406982422 + ], + [ + "▁inspiration", + -10.209226608276367 + ], + [ + "▁novel", + -10.210171699523926 + ], + [ + "▁Ad", + -10.210173606872559 + ], + [ + "▁Am", + -10.210671424865723 + ], + [ + "▁assets", + -10.210700988769531 + ], + [ + "▁Earth", + -10.210880279541016 + ], + [ + "▁carried", + -10.210890769958496 + ], + [ + "▁Robert", + -10.210945129394531 + ], + [ + "▁interests", + -10.211031913757324 + ], + [ + "▁discount", + -10.21129322052002 + ], + [ + "▁Award", + -10.211668014526367 + ], + [ + "bar", + -10.211952209472656 + ], + [ + "▁mass", + -10.212630271911621 + ], + [ + "ong", + -10.212679862976074 + ], + [ + "▁apps", + -10.212803840637207 + ], + [ + "▁sheet", + -10.213125228881836 + ], + [ + "▁Plan", + -10.213630676269531 + ], + [ + "▁dogs", + -10.214032173156738 + ], + [ + "▁truck", + -10.214512825012207 + ], + [ + "▁signal", + -10.214855194091797 + ], + [ + "▁Dan", + -10.215005874633789 + ], + [ + "▁leather", + -10.215315818786621 + ], + [ + "▁Sometimes", + -10.215350151062012 + ], + [ + "▁drivers", + -10.216050148010254 + ], + [ + "▁mini", + -10.216108322143555 + ], + [ + "▁solar", + -10.217226028442383 + ], + [ + "▁painting", + -10.218299865722656 + ], + [ + "▁rear", + -10.218453407287598 + ], + [ + "▁tough", + -10.219032287597656 + ], + [ + "▁Therefore", + -10.219321250915527 + ], + [ + "▁considering", + -10.220314025878906 + ], + [ + "▁buildings", + -10.220427513122559 + ], + [ + "▁Which", + -10.220507621765137 + ], + [ + "▁silver", + -10.220611572265625 + ], + [ + "▁sauce", + -10.220643043518066 + ], + [ + "▁signs", + -10.2208890914917 + ], + [ + "▁brown", + -10.221220970153809 + ], + [ + "▁Ni", + -10.22131061553955 + ], + [ + "▁earn", + -10.22153091430664 + ], + [ + "ray", + -10.221830368041992 + ], + [ + "▁owned", + -10.22214126586914 + ], + [ + "▁occur", + -10.222197532653809 + ], + [ + "▁yes", + -10.223180770874023 + ], + [ + "▁fields", + -10.223235130310059 + ], + [ + "▁topics", + -10.22336483001709 + ], + [ + "▁Canadian", + -10.223592758178711 + ], + [ + "▁Women", + -10.223674774169922 + ], + [ + "▁lived", + -10.223873138427734 + ], + [ + "▁Jan", + -10.224072456359863 + ], + [ + "▁pack", + -10.225400924682617 + ], + [ + "▁battle", + -10.225470542907715 + ], + [ + "▁Ke", + -10.22596263885498 + ], + [ + "▁contemporary", + -10.227364540100098 + ], + [ + "▁port", + -10.228018760681152 + ], + [ + "▁symptoms", + -10.228020668029785 + ], + [ + "16", + -10.228131294250488 + ], + [ + "▁remaining", + -10.230725288391113 + ], + [ + "ney", + -10.231212615966797 + ], + [ + "▁edition", + -10.231653213500977 + ], + [ + "▁Bo", + -10.231718063354492 + ], + [ + "▁Having", + -10.232538223266602 + ], + [ + "▁luxury", + -10.232949256896973 + ], + [ + "▁Live", + -10.234853744506836 + ], + [ + "▁Code", + -10.234930038452148 + ], + [ + "▁ease", + -10.235042572021484 + ], + [ + "▁contribute", + -10.235197067260742 + ], + [ + "▁Old", + -10.235407829284668 + ], + [ + "▁cup", + -10.236052513122559 + ], + [ + "▁Minister", + -10.236059188842773 + ], + [ + "▁farm", + -10.23723316192627 + ], + [ + "▁45", + -10.23745059967041 + ], + [ + "▁dating", + -10.23806095123291 + ], + [ + "▁Special", + -10.238541603088379 + ], + [ + "▁collect", + -10.239141464233398 + ], + [ + "▁Journal", + -10.239449501037598 + ], + [ + "▁walls", + -10.239843368530273 + ], + [ + "▁wild", + -10.240174293518066 + ], + [ + "▁Finally", + -10.240429878234863 + ], + [ + "▁broken", + -10.240640640258789 + ], + [ + "This", + -10.241448402404785 + ], + [ + "▁bigger", + -10.241494178771973 + ], + [ + "▁lifestyle", + -10.242424964904785 + ], + [ + "▁Very", + -10.242530822753906 + ], + [ + "▁Full", + -10.242780685424805 + ], + [ + "▁submit", + -10.243351936340332 + ], + [ + "▁decades", + -10.243945121765137 + ], + [ + "▁premium", + -10.244291305541992 + ], + [ + "▁external", + -10.244339942932129 + ], + [ + "▁proposed", + -10.244556427001953 + ], + [ + "▁tests", + -10.244558334350586 + ], + [ + "▁village", + -10.244574546813965 + ], + [ + "ette", + -10.245379447937012 + ], + [ + "town", + -10.24586009979248 + ], + [ + "▁Back", + -10.245943069458008 + ], + [ + "book", + -10.246357917785645 + ], + [ + "▁adult", + -10.247305870056152 + ], + [ + "▁upper", + -10.248671531677246 + ], + [ + "▁reasonable", + -10.249523162841797 + ], + [ + "▁mouth", + -10.249723434448242 + ], + [ + "▁successfully", + -10.249788284301758 + ], + [ + "▁cake", + -10.250259399414062 + ], + [ + "▁trained", + -10.250365257263184 + ], + [ + "18", + -10.250380516052246 + ], + [ + "▁river", + -10.250478744506836 + ], + [ + "▁Japanese", + -10.250690460205078 + ], + [ + "▁charges", + -10.250997543334961 + ], + [ + "ative", + -10.251255989074707 + ], + [ + "▁Pa", + -10.251272201538086 + ], + [ + "▁identified", + -10.251394271850586 + ], + [ + "▁examples", + -10.251518249511719 + ], + [ + "▁soil", + -10.251725196838379 + ], + [ + "▁Smith", + -10.251995086669922 + ], + [ + "▁assessment", + -10.25289535522461 + ], + [ + "▁represent", + -10.253499031066895 + ], + [ + "nes", + -10.253890037536621 + ], + [ + "▁garage", + -10.254100799560547 + ], + [ + "▁affected", + -10.254220962524414 + ], + [ + "▁issued", + -10.254301071166992 + ], + [ + "▁whom", + -10.254323959350586 + ], + [ + "▁writer", + -10.254655838012695 + ], + [ + "▁dollars", + -10.255054473876953 + ], + [ + "▁hardware", + -10.255290985107422 + ], + [ + "▁improvement", + -10.25554084777832 + ], + [ + "▁knows", + -10.255661010742188 + ], + [ + "▁motion", + -10.255724906921387 + ], + [ + "▁carefully", + -10.255773544311523 + ], + [ + "▁Royal", + -10.256078720092773 + ], + [ + "▁studio", + -10.256556510925293 + ], + [ + "▁arrived", + -10.257096290588379 + ], + [ + "▁dumpster", + -10.257573127746582 + ], + [ + "▁tasks", + -10.257925987243652 + ], + [ + "▁sizes", + -10.25869369506836 + ], + [ + "▁Asia", + -10.258938789367676 + ], + [ + "▁input", + -10.260088920593262 + ], + [ + "▁receiving", + -10.260436058044434 + ], + [ + "▁causes", + -10.261713027954102 + ], + [ + "▁cycle", + -10.261892318725586 + ], + [ + "▁kinds", + -10.26218318939209 + ], + [ + "19", + -10.262202262878418 + ], + [ + "don", + -10.262866020202637 + ], + [ + "▁sessions", + -10.263888359069824 + ], + [ + "▁historical", + -10.265275001525879 + ], + [ + "▁gear", + -10.265290260314941 + ], + [ + "о", + -10.26530933380127 + ], + [ + "▁accepted", + -10.265421867370605 + ], + [ + "▁Russian", + -10.265777587890625 + ], + [ + "▁Wood", + -10.265839576721191 + ], + [ + "▁rare", + -10.266111373901367 + ], + [ + "▁EU", + -10.267071723937988 + ], + [ + "▁Da", + -10.26766586303711 + ], + [ + "▁sport", + -10.268440246582031 + ], + [ + "▁Conference", + -10.268610954284668 + ], + [ + "▁Market", + -10.268861770629883 + ], + [ + "▁Ver", + -10.269200325012207 + ], + [ + "▁procedures", + -10.269526481628418 + ], + [ + "▁About", + -10.26966667175293 + ], + [ + "▁Ex", + -10.269701957702637 + ], + [ + "▁Table", + -10.269978523254395 + ], + [ + "▁crusher", + -10.270380973815918 + ], + [ + "▁worldwide", + -10.27048110961914 + ], + [ + "▁Students", + -10.270525932312012 + ], + [ + "▁League", + -10.270597457885742 + ], + [ + "▁Na", + -10.271199226379395 + ], + [ + "▁expand", + -10.271909713745117 + ], + [ + "▁prove", + -10.272412300109863 + ], + [ + "▁parent", + -10.272829055786133 + ], + [ + "▁shoes", + -10.27365493774414 + ], + [ + "▁knowing", + -10.273985862731934 + ], + [ + "▁investors", + -10.27609634399414 + ], + [ + "▁willing", + -10.2766695022583 + ], + [ + "▁phase", + -10.277668952941895 + ], + [ + "▁extend", + -10.277896881103516 + ], + [ + "▁patterns", + -10.277973175048828 + ], + [ + "▁sides", + -10.278177261352539 + ], + [ + "▁constantly", + -10.278464317321777 + ], + [ + "point", + -10.27856731414795 + ], + [ + "▁implementation", + -10.278651237487793 + ], + [ + "▁ticket", + -10.27904224395752 + ], + [ + "▁remote", + -10.279402732849121 + ], + [ + "▁engage", + -10.279465675354004 + ], + [ + "▁exclusive", + -10.280171394348145 + ], + [ + "che", + -10.280561447143555 + ], + [ + "▁freedom", + -10.280869483947754 + ], + [ + "▁collaboration", + -10.281264305114746 + ], + [ + "▁Control", + -10.28127670288086 + ], + [ + "light", + -10.281322479248047 + ], + [ + "▁accident", + -10.28137493133545 + ], + [ + "▁Men", + -10.282439231872559 + ], + [ + "▁vacation", + -10.282483100891113 + ], + [ + "▁command", + -10.282976150512695 + ], + [ + "▁impressive", + -10.283384323120117 + ], + [ + "▁agencies", + -10.284008979797363 + ], + [ + "▁brother", + -10.284186363220215 + ], + [ + "▁stick", + -10.284533500671387 + ], + [ + "▁motor", + -10.28504753112793 + ], + [ + "▁ID", + -10.285299301147461 + ], + [ + "▁quiet", + -10.286249160766602 + ], + [ + "▁interface", + -10.286917686462402 + ], + [ + "▁relatively", + -10.28700065612793 + ], + [ + "ach", + -10.287243843078613 + ], + [ + "▁nine", + -10.287580490112305 + ], + [ + "▁residential", + -10.287766456604004 + ], + [ + "▁theory", + -10.288593292236328 + ], + [ + "▁beat", + -10.289458274841309 + ], + [ + "▁employment", + -10.289657592773438 + ], + [ + "▁Light", + -10.290926933288574 + ], + [ + "▁innovation", + -10.291037559509277 + ], + [ + "▁candidates", + -10.291254997253418 + ], + [ + "▁regional", + -10.292065620422363 + ], + [ + "▁cent", + -10.292250633239746 + ], + [ + "▁exact", + -10.292282104492188 + ], + [ + "▁OR", + -10.292530059814453 + ], + [ + "▁feels", + -10.293015480041504 + ], + [ + "▁married", + -10.294011116027832 + ], + [ + "14", + -10.2942476272583 + ], + [ + "▁twice", + -10.294666290283203 + ], + [ + "▁engagement", + -10.29517650604248 + ], + [ + "▁answers", + -10.295241355895996 + ], + [ + "▁failed", + -10.295978546142578 + ], + [ + "▁planned", + -10.296282768249512 + ], + [ + "▁transition", + -10.296348571777344 + ], + [ + "▁exist", + -10.296591758728027 + ], + [ + "”,", + -10.296826362609863 + ], + [ + "....", + -10.297065734863281 + ], + [ + "▁awareness", + -10.298711776733398 + ], + [ + "▁defined", + -10.298996925354004 + ], + [ + "▁vital", + -10.299530982971191 + ], + [ + "▁concern", + -10.299554824829102 + ], + [ + "▁payments", + -10.299673080444336 + ], + [ + "▁machines", + -10.299683570861816 + ], + [ + "▁imagine", + -10.300328254699707 + ], + [ + "bit", + -10.300924301147461 + ], + [ + "▁concerned", + -10.300944328308105 + ], + [ + "▁officials", + -10.30097484588623 + ], + [ + "ward", + -10.301523208618164 + ], + [ + "▁defense", + -10.301883697509766 + ], + [ + "▁frequently", + -10.303300857543945 + ], + [ + "32", + -10.303421020507812 + ], + [ + ",000", + -10.303608894348145 + ], + [ + "▁grown", + -10.303810119628906 + ], + [ + "kin", + -10.304023742675781 + ], + [ + "▁Dis", + -10.30461311340332 + ], + [ + "▁CEO", + -10.30470085144043 + ], + [ + "▁$2", + -10.304950714111328 + ], + [ + "▁election", + -10.305207252502441 + ], + [ + "▁Congress", + -10.305468559265137 + ], + [ + "▁native", + -10.305598258972168 + ], + [ + "▁privacy", + -10.305743217468262 + ], + [ + "▁Children", + -10.306209564208984 + ], + [ + "▁expectations", + -10.306577682495117 + ], + [ + "▁recorded", + -10.306750297546387 + ], + [ + "tel", + -10.307004928588867 + ], + [ + "▁HD", + -10.307161331176758 + ], + [ + "▁accessible", + -10.307609558105469 + ], + [ + "▁compare", + -10.307618141174316 + ], + [ + "▁Italian", + -10.309001922607422 + ], + [ + "▁kit", + -10.309468269348145 + ], + [ + "▁circumstances", + -10.309528350830078 + ], + [ + "▁plate", + -10.31010627746582 + ], + [ + "▁executive", + -10.310276985168457 + ], + [ + "king", + -10.31049633026123 + ], + [ + "▁default", + -10.310517311096191 + ], + [ + "▁Ta", + -10.311129570007324 + ], + [ + "▁youth", + -10.311188697814941 + ], + [ + "▁taught", + -10.31119441986084 + ], + [ + "▁stated", + -10.311525344848633 + ], + [ + "▁Arts", + -10.311745643615723 + ], + [ + "▁Jo", + -10.311924934387207 + ], + [ + "▁secret", + -10.311935424804688 + ], + [ + "▁domestic", + -10.311951637268066 + ], + [ + "head", + -10.312267303466797 + ], + [ + "▁browser", + -10.312743186950684 + ], + [ + "▁foods", + -10.312882423400879 + ], + [ + "lan", + -10.313586235046387 + ], + [ + "▁removal", + -10.314059257507324 + ], + [ + "▁trouble", + -10.314453125 + ], + [ + "▁Series", + -10.314550399780273 + ], + [ + "▁NOT", + -10.314560890197754 + ], + [ + "▁foundation", + -10.314966201782227 + ], + [ + "▁yellow", + -10.314994812011719 + ], + [ + "▁PA", + -10.31578540802002 + ], + [ + "▁Po", + -10.315851211547852 + ], + [ + "▁destination", + -10.31588077545166 + ], + [ + "▁integrated", + -10.316231727600098 + ], + [ + "▁diverse", + -10.31657886505127 + ], + [ + "▁begins", + -10.316634178161621 + ], + [ + "▁appeared", + -10.317033767700195 + ], + [ + "а", + -10.317154884338379 + ], + [ + "▁Support", + -10.317228317260742 + ], + [ + "▁stunning", + -10.317873001098633 + ], + [ + "▁bath", + -10.31806468963623 + ], + [ + "▁conducted", + -10.318381309509277 + ], + [ + "▁Search", + -10.318387985229492 + ], + [ + "▁description", + -10.318416595458984 + ], + [ + "▁entertainment", + -10.319172859191895 + ], + [ + "▁cable", + -10.319189071655273 + ], + [ + "▁mountain", + -10.320086479187012 + ], + [ + "▁Did", + -10.320489883422852 + ], + [ + "tal", + -10.32061767578125 + ], + [ + "▁operate", + -10.321383476257324 + ], + [ + "▁Buy", + -10.321920394897461 + ], + [ + "chi", + -10.322310447692871 + ], + [ + "▁outstanding", + -10.322338104248047 + ], + [ + "▁holds", + -10.322989463806152 + ], + [ + "▁institutions", + -10.323127746582031 + ], + [ + "▁fourth", + -10.323633193969727 + ], + [ + "▁Du", + -10.324358940124512 + ], + [ + "▁camp", + -10.324614524841309 + ], + [ + "▁apart", + -10.324844360351562 + ], + [ + "▁challenging", + -10.324884414672852 + ], + [ + "gar", + -10.325244903564453 + ], + [ + "▁everyday", + -10.325305938720703 + ], + [ + "▁massive", + -10.325364112854004 + ], + [ + "▁featured", + -10.325447082519531 + ], + [ + "▁typical", + -10.325759887695312 + ], + [ + "▁female", + -10.325881004333496 + ], + [ + "ble", + -10.325981140136719 + ], + [ + "▁forces", + -10.326130867004395 + ], + [ + "▁flexible", + -10.326139450073242 + ], + [ + "za", + -10.326438903808594 + ], + [ + "▁trail", + -10.326836585998535 + ], + [ + "▁houses", + -10.327463150024414 + ], + [ + "▁favourite", + -10.328641891479492 + ], + [ + "▁messages", + -10.328944206237793 + ], + [ + "▁emotional", + -10.328956604003906 + ], + [ + "▁Network", + -10.32988166809082 + ], + [ + "▁qualified", + -10.33031177520752 + ], + [ + "▁Festival", + -10.330562591552734 + ], + [ + "▁searching", + -10.330816268920898 + ], + [ + "▁ma", + -10.33127498626709 + ], + [ + "You", + -10.331294059753418 + ], + [ + "▁solve", + -10.331823348999023 + ], + [ + "with", + -10.332118034362793 + ], + [ + "ery", + -10.332808494567871 + ], + [ + "▁Room", + -10.332977294921875 + ], + [ + "▁extended", + -10.333998680114746 + ], + [ + "▁height", + -10.334256172180176 + ], + [ + "▁hosting", + -10.334357261657715 + ], + [ + "▁Come", + -10.334388732910156 + ], + [ + "▁situations", + -10.334506034851074 + ], + [ + "▁Sam", + -10.334684371948242 + ], + [ + "▁adventure", + -10.33484172821045 + ], + [ + "▁Review", + -10.335160255432129 + ], + [ + "▁Martin", + -10.335371017456055 + ], + [ + "▁butter", + -10.335586547851562 + ], + [ + "ised", + -10.336642265319824 + ], + [ + "▁matters", + -10.336771965026855 + ], + [ + "▁speaking", + -10.337139129638672 + ], + [ + "▁conduct", + -10.337895393371582 + ], + [ + "ice", + -10.338356971740723 + ], + [ + "▁closer", + -10.338449478149414 + ], + [ + "ties", + -10.338486671447754 + ], + [ + "▁joint", + -10.338579177856445 + ], + [ + "▁chat", + -10.338850975036621 + ], + [ + "▁Enjoy", + -10.339981079101562 + ], + [ + "▁App", + -10.340753555297852 + ], + [ + "▁mail", + -10.341562271118164 + ], + [ + "▁programme", + -10.341611862182617 + ], + [ + "▁joy", + -10.341617584228516 + ], + [ + "▁aspect", + -10.341625213623047 + ], + [ + "▁skill", + -10.34178638458252 + ], + [ + "▁shares", + -10.341974258422852 + ], + [ + "▁happening", + -10.34201431274414 + ], + [ + "▁concrete", + -10.342819213867188 + ], + [ + "▁electrical", + -10.342825889587402 + ], + [ + "▁degrees", + -10.342851638793945 + ], + [ + "ped", + -10.343358993530273 + ], + [ + "▁caught", + -10.344209671020508 + ], + [ + "▁medicine", + -10.344236373901367 + ], + [ + "▁depth", + -10.344285011291504 + ], + [ + "▁Thomas", + -10.344378471374512 + ], + [ + "▁technique", + -10.345001220703125 + ], + [ + "▁apartment", + -10.345945358276367 + ], + [ + "▁template", + -10.347600936889648 + ], + [ + "75", + -10.348018646240234 + ], + [ + "▁manufacturer", + -10.348678588867188 + ], + [ + "▁Looking", + -10.34990119934082 + ], + [ + "▁Ro", + -10.350107192993164 + ], + [ + "stone", + -10.35031509399414 + ], + [ + "▁scheduled", + -10.35098934173584 + ], + [ + "▁Through", + -10.351046562194824 + ], + [ + "▁golf", + -10.352315902709961 + ], + [ + "▁Game", + -10.35293197631836 + ], + [ + "▁choosing", + -10.353135108947754 + ], + [ + "ven", + -10.353676795959473 + ], + [ + "▁Russia", + -10.354166030883789 + ], + [ + "▁reduction", + -10.354642868041992 + ], + [ + "room", + -10.354752540588379 + ], + [ + "▁airport", + -10.354965209960938 + ], + [ + "▁boy", + -10.355584144592285 + ], + [ + "▁recognized", + -10.355659484863281 + ], + [ + "▁Watch", + -10.356141090393066 + ], + [ + "▁television", + -10.356253623962402 + ], + [ + "▁featuring", + -10.356371879577637 + ], + [ + "▁agreed", + -10.356900215148926 + ], + [ + "▁atmosphere", + -10.35787296295166 + ], + [ + "▁scientific", + -10.358712196350098 + ], + [ + "▁protected", + -10.359505653381348 + ], + [ + "▁ran", + -10.359943389892578 + ], + [ + "▁300", + -10.360018730163574 + ], + [ + "▁closely", + -10.360020637512207 + ], + [ + "▁Auto", + -10.360218048095703 + ], + [ + "▁healthcare", + -10.360455513000488 + ], + [ + "▁entirely", + -10.360883712768555 + ], + [ + "▁designer", + -10.360966682434082 + ], + [ + "▁Energy", + -10.361116409301758 + ], + [ + "▁Town", + -10.361295700073242 + ], + [ + "▁nearby", + -10.361395835876465 + ], + [ + "▁formed", + -10.361560821533203 + ], + [ + "▁Human", + -10.361865043640137 + ], + [ + "▁usual", + -10.361933708190918 + ], + [ + "▁upcoming", + -10.362009048461914 + ], + [ + "▁monitor", + -10.362639427185059 + ], + [ + "▁Hu", + -10.363813400268555 + ], + [ + "▁loans", + -10.364250183105469 + ], + [ + "▁boost", + -10.36482048034668 + ], + [ + "▁log", + -10.36550235748291 + ], + [ + "IT", + -10.36550521850586 + ], + [ + "▁wheel", + -10.365663528442383 + ], + [ + "▁oven", + -10.366507530212402 + ], + [ + "▁Chris", + -10.366626739501953 + ], + [ + "▁objects", + -10.36667537689209 + ], + [ + "▁agents", + -10.367241859436035 + ], + [ + "▁architecture", + -10.3675537109375 + ], + [ + "▁arm", + -10.368572235107422 + ], + [ + "▁2008", + -10.36894416809082 + ], + [ + "▁capable", + -10.369059562683105 + ], + [ + "▁Look", + -10.369382858276367 + ], + [ + "▁fell", + -10.369563102722168 + ], + [ + "▁bio", + -10.369843482971191 + ], + [ + "▁2017.", + -10.369977951049805 + ], + [ + "▁component", + -10.370022773742676 + ], + [ + "▁regulations", + -10.370110511779785 + ], + [ + "▁worse", + -10.37035083770752 + ], + [ + "▁exposure", + -10.371423721313477 + ], + [ + "▁Cor", + -10.371627807617188 + ], + [ + "▁identity", + -10.372025489807129 + ], + [ + "▁surprise", + -10.372123718261719 + ], + [ + "▁Lu", + -10.372754096984863 + ], + [ + "▁expression", + -10.373135566711426 + ], + [ + "▁informed", + -10.373252868652344 + ], + [ + "▁throw", + -10.374017715454102 + ], + [ + "▁Mi", + -10.374330520629883 + ], + [ + "▁facing", + -10.374361038208008 + ], + [ + "era", + -10.375237464904785 + ], + [ + "▁serves", + -10.376042366027832 + ], + [ + "▁missed", + -10.37610149383545 + ], + [ + "▁deck", + -10.376152992248535 + ], + [ + "▁membership", + -10.376971244812012 + ], + [ + "▁Tri", + -10.377243995666504 + ], + [ + "▁generate", + -10.37743091583252 + ], + [ + "▁certified", + -10.377496719360352 + ], + [ + "▁sister", + -10.378080368041992 + ], + [ + "▁Academy", + -10.378575325012207 + ], + [ + "▁mixed", + -10.379258155822754 + ], + [ + "▁partnership", + -10.379514694213867 + ], + [ + "▁2009", + -10.37967586517334 + ], + [ + "▁collected", + -10.380446434020996 + ], + [ + "▁fly", + -10.380837440490723 + ], + [ + "OR", + -10.381056785583496 + ], + [ + "▁Step", + -10.381305694580078 + ], + [ + "▁celebrate", + -10.381325721740723 + ], + [ + "▁bread", + -10.38179874420166 + ], + [ + "row", + -10.381842613220215 + ], + [ + "▁liquid", + -10.382046699523926 + ], + [ + "27", + -10.38249397277832 + ], + [ + "ck", + -10.382935523986816 + ], + [ + "▁dental", + -10.384218215942383 + ], + [ + "▁desk", + -10.385050773620605 + ], + [ + "ker", + -10.385107040405273 + ], + [ + "water", + -10.385644912719727 + ], + [ + "▁Har", + -10.386040687561035 + ], + [ + "▁personally", + -10.386139869689941 + ], + [ + "▁Shop", + -10.386171340942383 + ], + [ + "▁meetings", + -10.386445045471191 + ], + [ + "▁Small", + -10.386701583862305 + ], + [ + "▁religious", + -10.388097763061523 + ], + [ + "▁killed", + -10.389240264892578 + ], + [ + "▁gun", + -10.389693260192871 + ], + [ + "▁mortgage", + -10.38976001739502 + ], + [ + "▁monitoring", + -10.389814376831055 + ], + [ + "▁savings", + -10.389928817749023 + ], + [ + "▁Site", + -10.389941215515137 + ], + [ + "▁Mexico", + -10.390690803527832 + ], + [ + "▁vast", + -10.3909330368042 + ], + [ + "▁researchers", + -10.391395568847656 + ], + [ + "▁stopped", + -10.392158508300781 + ], + [ + "▁Should", + -10.39226245880127 + ], + [ + "▁Line", + -10.392345428466797 + ], + [ + "\\", + -10.39367389678955 + ], + [ + "▁guidance", + -10.394057273864746 + ], + [ + "▁drugs", + -10.394331932067871 + ], + [ + "▁winner", + -10.394634246826172 + ], + [ + "▁quote", + -10.394779205322266 + ], + [ + "▁trend", + -10.39495849609375 + ], + [ + "▁convenient", + -10.395532608032227 + ], + [ + "▁authority", + -10.39611530303955 + ], + [ + "▁styles", + -10.396294593811035 + ], + [ + "▁IP", + -10.396306991577148 + ], + [ + "Despite", + -10.396964073181152 + ], + [ + "▁plays", + -10.3974027633667 + ], + [ + "long", + -10.398245811462402 + ], + [ + "▁consistent", + -10.398653030395508 + ], + [ + "▁crucial", + -10.39996337890625 + ], + [ + "▁finance", + -10.400278091430664 + ], + [ + "▁attached", + -10.40062427520752 + ], + [ + "▁dangerous", + -10.40108871459961 + ], + [ + "▁comparison", + -10.401399612426758 + ], + [ + "▁Paris", + -10.40177059173584 + ], + [ + "▁William", + -10.401867866516113 + ], + [ + "tri", + -10.402261734008789 + ], + [ + "▁appeal", + -10.40242862701416 + ], + [ + "▁soul", + -10.40279483795166 + ], + [ + "▁normally", + -10.402801513671875 + ], + [ + "▁Unfortunately", + -10.402812957763672 + ], + [ + "▁talent", + -10.402975082397461 + ], + [ + "▁equipped", + -10.403279304504395 + ], + [ + "▁2019.", + -10.404197692871094 + ], + [ + "▁leg", + -10.404319763183594 + ], + [ + "▁charged", + -10.405011177062988 + ], + [ + "ging", + -10.40524673461914 + ], + [ + "▁noticed", + -10.40538501739502 + ], + [ + "▁dealing", + -10.40551471710205 + ], + [ + "▁Su", + -10.405648231506348 + ], + [ + "▁mainly", + -10.405779838562012 + ], + [ + "▁cute", + -10.406153678894043 + ], + [ + "▁orders", + -10.406416893005371 + ], + [ + "iz", + -10.406664848327637 + ], + [ + "▁musical", + -10.406782150268555 + ], + [ + "▁resume", + -10.407418251037598 + ], + [ + "▁mis", + -10.40777587890625 + ], + [ + "▁dish", + -10.407819747924805 + ], + [ + "▁mom", + -10.408241271972656 + ], + [ + "▁inches", + -10.4085111618042 + ], + [ + "ram", + -10.40854549407959 + ], + [ + "▁positions", + -10.408682823181152 + ], + [ + "▁obvious", + -10.408921241760254 + ], + [ + "▁Spring", + -10.40983772277832 + ], + [ + "▁jump", + -10.409878730773926 + ], + [ + "▁bonus", + -10.410247802734375 + ], + [ + "▁Store", + -10.410481452941895 + ], + [ + "▁Cup", + -10.410515785217285 + ], + [ + "▁framework", + -10.410639762878418 + ], + [ + "▁improving", + -10.411233901977539 + ], + [ + "▁reputation", + -10.411689758300781 + ], + [ + "▁Welcome", + -10.41181468963623 + ], + [ + "▁express", + -10.412435531616211 + ], + [ + "▁turns", + -10.412540435791016 + ], + [ + ");", + -10.412866592407227 + ], + [ + "▁obtained", + -10.412943840026855 + ], + [ + "▁urban", + -10.413037300109863 + ], + [ + "▁Right", + -10.413276672363281 + ], + [ + "▁cap", + -10.413433074951172 + ], + [ + "gan", + -10.414026260375977 + ], + [ + "▁border", + -10.414163589477539 + ], + [ + "class", + -10.414253234863281 + ], + [ + "▁logo", + -10.414533615112305 + ], + [ + "site", + -10.41458511352539 + ], + [ + "▁picked", + -10.414896965026855 + ], + [ + "▁organized", + -10.415233612060547 + ], + [ + "▁ancient", + -10.415772438049316 + ], + [ + "▁lessons", + -10.416686058044434 + ], + [ + "quality", + -10.417065620422363 + ], + [ + "related", + -10.41728401184082 + ], + [ + "▁portfolio", + -10.417298316955566 + ], + [ + "▁movies", + -10.4173583984375 + ], + [ + "▁fishing", + -10.417390823364258 + ], + [ + "▁bi", + -10.417452812194824 + ], + [ + "▁expenses", + -10.417569160461426 + ], + [ + "▁trends", + -10.417715072631836 + ], + [ + "▁Digital", + -10.417915344238281 + ], + [ + "▁carbon", + -10.417954444885254 + ], + [ + "ade", + -10.419280052185059 + ], + [ + "▁clothes", + -10.419327735900879 + ], + [ + "▁implement", + -10.419331550598145 + ], + [ + "▁tested", + -10.419638633728027 + ], + [ + "▁mixture", + -10.420221328735352 + ], + [ + "ID", + -10.420340538024902 + ], + [ + "▁fitness", + -10.42072582244873 + ], + [ + "35", + -10.421228408813477 + ], + [ + "▁Start", + -10.421326637268066 + ], + [ + "▁noise", + -10.421706199645996 + ], + [ + "US", + -10.421831130981445 + ], + [ + "▁dynamic", + -10.421934127807617 + ], + [ + "▁strategic", + -10.422370910644531 + ], + [ + "▁ongoing", + -10.422465324401855 + ], + [ + "▁stars", + -10.42318058013916 + ], + [ + "▁wearing", + -10.423295021057129 + ], + [ + "ez", + -10.425703048706055 + ], + [ + "▁Guide", + -10.426061630249023 + ], + [ + "▁Video", + -10.426129341125488 + ], + [ + "▁discussed", + -10.426140785217285 + ], + [ + "▁transportation", + -10.426202774047852 + ], + [ + "▁virtual", + -10.426284790039062 + ], + [ + "▁goods", + -10.426458358764648 + ], + [ + "▁Thus", + -10.426759719848633 + ], + [ + "▁filter", + -10.426788330078125 + ], + [ + "▁Price", + -10.427416801452637 + ], + [ + "▁5.", + -10.427518844604492 + ], + [ + "▁pm", + -10.427680969238281 + ], + [ + "▁Land", + -10.428455352783203 + ], + [ + "▁grew", + -10.428499221801758 + ], + [ + "▁honest", + -10.428515434265137 + ], + [ + "▁spaces", + -10.428813934326172 + ], + [ + "▁stands", + -10.428844451904297 + ], + [ + "▁vary", + -10.429228782653809 + ], + [ + "▁crew", + -10.429976463317871 + ], + [ + "▁workshop", + -10.430360794067383 + ], + [ + "▁investigation", + -10.43114185333252 + ], + [ + "▁Try", + -10.431554794311523 + ], + [ + "▁turning", + -10.431841850280762 + ], + [ + "▁gallery", + -10.432141304016113 + ], + [ + "▁capture", + -10.432278633117676 + ], + [ + "°", + -10.432394027709961 + ], + [ + "49", + -10.43246078491211 + ], + [ + "▁returns", + -10.432509422302246 + ], + [ + "▁powder", + -10.432516098022461 + ], + [ + "▁wire", + -10.43292236328125 + ], + [ + "▁gifts", + -10.433087348937988 + ], + [ + "▁earned", + -10.433212280273438 + ], + [ + "▁entered", + -10.434056282043457 + ], + [ + "▁Middle", + -10.434285163879395 + ], + [ + "▁noted", + -10.434556007385254 + ], + [ + "▁candidate", + -10.434728622436523 + ], + [ + "▁campus", + -10.43501091003418 + ], + [ + "▁pleased", + -10.43597412109375 + ], + [ + "▁unable", + -10.436403274536133 + ], + [ + "▁arrive", + -10.436904907226562 + ], + [ + "▁Professional", + -10.43695068359375 + ], + [ + "▁labor", + -10.437057495117188 + ], + [ + "▁chemical", + -10.437337875366211 + ], + [ + "▁banks", + -10.437928199768066 + ], + [ + "▁shift", + -10.43828010559082 + ], + [ + "▁managing", + -10.438348770141602 + ], + [ + "▁moments", + -10.438629150390625 + ], + [ + "▁slot", + -10.438740730285645 + ], + [ + "▁recognize", + -10.439406394958496 + ], + [ + "box", + -10.439455032348633 + ], + [ + "▁printed", + -10.4397611618042 + ], + [ + "▁tiny", + -10.43982219696045 + ], + [ + "▁constant", + -10.440055847167969 + ], + [ + "▁Hospital", + -10.44007682800293 + ], + [ + "▁sustainable", + -10.440284729003906 + ], + [ + "jo", + -10.440337181091309 + ], + [ + "▁Join", + -10.442527770996094 + ], + [ + "▁yesterday", + -10.443306922912598 + ], + [ + "▁mill", + -10.443720817565918 + ], + [ + "▁brief", + -10.44379711151123 + ], + [ + "▁bottle", + -10.443949699401855 + ], + [ + "▁acid", + -10.444433212280273 + ], + [ + "you", + -10.44534969329834 + ], + [ + "$", + -10.445363998413086 + ], + [ + "▁resulting", + -10.446002960205078 + ], + [ + "▁desired", + -10.446282386779785 + ], + [ + "▁Library", + -10.44654655456543 + ], + [ + "▁spiritual", + -10.446609497070312 + ], + [ + "▁fellow", + -10.447397232055664 + ], + [ + "▁tank", + -10.447464942932129 + ], + [ + "▁attorney", + -10.447796821594238 + ], + [ + "▁civil", + -10.447945594787598 + ], + [ + "13", + -10.448280334472656 + ], + [ + "24", + -10.448304176330566 + ], + [ + "▁risks", + -10.448318481445312 + ], + [ + "▁Lee", + -10.448443412780762 + ], + [ + "▁Mike", + -10.4486083984375 + ], + [ + "▁communicate", + -10.448648452758789 + ], + [ + "▁tech", + -10.44865894317627 + ], + [ + "▁2000", + -10.44874382019043 + ], + [ + "▁craft", + -10.448833465576172 + ], + [ + "▁indeed", + -10.449094772338867 + ], + [ + "▁minor", + -10.449341773986816 + ], + [ + "▁fairly", + -10.449423789978027 + ], + [ + "▁mining", + -10.449572563171387 + ], + [ + "▁alcohol", + -10.44963264465332 + ], + [ + "▁citizens", + -10.449699401855469 + ], + [ + "▁broad", + -10.44970703125 + ], + [ + "▁Ra", + -10.449874877929688 + ], + [ + "▁Class", + -10.450243949890137 + ], + [ + "▁honor", + -10.45069694519043 + ], + [ + "▁filed", + -10.450699806213379 + ], + [ + "▁percentage", + -10.45074462890625 + ], + [ + "list", + -10.451144218444824 + ], + [ + "▁Federal", + -10.451446533203125 + ], + [ + "▁achieved", + -10.451498985290527 + ], + [ + "▁graduate", + -10.451674461364746 + ], + [ + "▁(19", + -10.452066421508789 + ], + [ + "▁Dec", + -10.452593803405762 + ], + [ + "▁zone", + -10.453146934509277 + ], + [ + "▁Te", + -10.45350456237793 + ], + [ + "▁poker", + -10.453641891479492 + ], + [ + "ide", + -10.453716278076172 + ], + [ + "▁MS", + -10.454092979431152 + ], + [ + "▁Port", + -10.455119132995605 + ], + [ + "40", + -10.455290794372559 + ], + [ + "▁Ba", + -10.455382347106934 + ], + [ + "▁pure", + -10.455490112304688 + ], + [ + "▁Mill", + -10.455537796020508 + ], + [ + "▁Santa", + -10.455818176269531 + ], + [ + "▁photography", + -10.455886840820312 + ], + [ + "▁reporting", + -10.456290245056152 + ], + [ + "500", + -10.45655632019043 + ], + [ + "▁pot", + -10.456897735595703 + ], + [ + "▁Spanish", + -10.456901550292969 + ], + [ + "▁speech", + -10.456995010375977 + ], + [ + "▁profit", + -10.457019805908203 + ], + [ + "MS", + -10.457140922546387 + ], + [ + "▁neighborhood", + -10.457467079162598 + ], + [ + "▁Ab", + -10.457618713378906 + ], + [ + "▁possibility", + -10.457717895507812 + ], + [ + "▁contrast", + -10.45810317993164 + ], + [ + "▁Inter", + -10.458877563476562 + ], + [ + "▁preparation", + -10.459543228149414 + ], + [ + "▁networks", + -10.460061073303223 + ], + [ + "▁approval", + -10.460112571716309 + ], + [ + "▁thread", + -10.460238456726074 + ], + [ + "▁Little", + -10.460350036621094 + ], + [ + "▁Such", + -10.460355758666992 + ], + [ + "▁Yet", + -10.460630416870117 + ], + [ + "100", + -10.460799217224121 + ], + [ + "?\"", + -10.460965156555176 + ], + [ + "▁revealed", + -10.461365699768066 + ], + [ + "▁resistance", + -10.46172046661377 + ], + [ + "level", + -10.461874008178711 + ], + [ + "▁Jersey", + -10.462320327758789 + ], + [ + "▁Angeles", + -10.46253776550293 + ], + [ + "28", + -10.462581634521484 + ], + [ + "▁gorgeous", + -10.462822914123535 + ], + [ + "▁marriage", + -10.462985038757324 + ], + [ + "uff", + -10.463860511779785 + ], + [ + "▁west", + -10.464092254638672 + ], + [ + "▁36", + -10.464187622070312 + ], + [ + "▁explained", + -10.46477222442627 + ], + [ + "▁manufacturers", + -10.465210914611816 + ], + [ + "▁linked", + -10.465289115905762 + ], + [ + "▁committee", + -10.465388298034668 + ], + [ + "▁impossible", + -10.465821266174316 + ], + [ + "▁whenever", + -10.466092109680176 + ], + [ + "▁increases", + -10.466232299804688 + ], + [ + "▁RE", + -10.466264724731445 + ], + [ + "38", + -10.467788696289062 + ], + [ + "▁attractive", + -10.4678955078125 + ], + [ + "▁officer", + -10.46873950958252 + ], + [ + "▁performing", + -10.46920108795166 + ], + [ + "▁End", + -10.469904899597168 + ], + [ + "▁suggested", + -10.469939231872559 + ], + [ + "▁spa", + -10.470463752746582 + ], + [ + "▁Though", + -10.470884323120117 + ], + [ + "more", + -10.471342086791992 + ], + [ + "▁consultation", + -10.471455574035645 + ], + [ + "rate", + -10.472356796264648 + ], + [ + "▁array", + -10.472620964050293 + ], + [ + "▁forced", + -10.472882270812988 + ], + [ + "▁accessories", + -10.472979545593262 + ], + [ + "▁Being", + -10.473016738891602 + ], + [ + "▁<", + -10.473809242248535 + ], + [ + "▁deposit", + -10.473995208740234 + ], + [ + "▁Richard", + -10.475286483764648 + ], + [ + "▁Chief", + -10.475464820861816 + ], + [ + "▁boys", + -10.475849151611328 + ], + [ + "▁Gi", + -10.476396560668945 + ], + [ + "▁taxes", + -10.476531982421875 + ], + [ + "▁immediate", + -10.476598739624023 + ], + [ + "▁Bible", + -10.476842880249023 + ], + [ + "▁Virginia", + -10.477083206176758 + ], + [ + "▁extension", + -10.477151870727539 + ], + [ + "▁MP", + -10.477727890014648 + ], + [ + "90", + -10.478833198547363 + ], + [ + "▁valid", + -10.4788818359375 + ], + [ + "48", + -10.479337692260742 + ], + [ + "▁proven", + -10.48036003112793 + ], + [ + "ium", + -10.480768203735352 + ], + [ + "▁Police", + -10.481365203857422 + ], + [ + "▁relief", + -10.481437683105469 + ], + [ + "▁calendar", + -10.481738090515137 + ], + [ + "▁Three", + -10.48181438446045 + ], + [ + "▁Travel", + -10.48181438446045 + ], + [ + "isation", + -10.48279094696045 + ], + [ + "▁Building", + -10.48279857635498 + ], + [ + "▁listening", + -10.483404159545898 + ], + [ + "lie", + -10.484209060668945 + ], + [ + "▁specialist", + -10.484553337097168 + ], + [ + "▁originally", + -10.48461627960205 + ], + [ + "▁telling", + -10.484702110290527 + ], + [ + "ical", + -10.48482894897461 + ], + [ + "SE", + -10.484990119934082 + ], + [ + "▁crisis", + -10.48508358001709 + ], + [ + "ture", + -10.486002922058105 + ], + [ + "▁Would", + -10.486486434936523 + ], + [ + "▁root", + -10.486492156982422 + ], + [ + "▁$3", + -10.488471031188965 + ], + [ + "▁supports", + -10.489374160766602 + ], + [ + "▁chief", + -10.489776611328125 + ], + [ + "▁Italy", + -10.489972114562988 + ], + [ + "▁Remember", + -10.490067481994629 + ], + [ + "▁visited", + -10.490106582641602 + ], + [ + "▁availability", + -10.490147590637207 + ], + [ + "▁horse", + -10.49075698852539 + ], + [ + "▁superior", + -10.490930557250977 + ], + [ + "▁Key", + -10.491183280944824 + ], + [ + "▁folks", + -10.491326332092285 + ], + [ + "▁establish", + -10.49172306060791 + ], + [ + "▁injuries", + -10.49194049835205 + ], + [ + "▁Mobile", + -10.492410659790039 + ], + [ + "▁Garden", + -10.49267578125 + ], + [ + "39", + -10.49354362487793 + ], + [ + "▁shops", + -10.49359130859375 + ], + [ + "▁dates", + -10.493757247924805 + ], + [ + "▁label", + -10.494751930236816 + ], + [ + "▁Fund", + -10.494758605957031 + ], + [ + "▁stored", + -10.49480152130127 + ], + [ + "ries", + -10.494921684265137 + ], + [ + "▁describe", + -10.494927406311035 + ], + [ + "▁represents", + -10.495096206665039 + ], + [ + "▁afford", + -10.49510383605957 + ], + [ + "▁Ca", + -10.495116233825684 + ], + [ + "▁historic", + -10.495186805725098 + ], + [ + "▁formal", + -10.495307922363281 + ], + [ + "▁Second", + -10.495903968811035 + ], + [ + "▁Ireland", + -10.496196746826172 + ], + [ + "▁ends", + -10.496646881103516 + ], + [ + "▁drawing", + -10.496665954589844 + ], + [ + "▁invest", + -10.496749877929688 + ], + [ + "▁dust", + -10.496758460998535 + ], + [ + "▁recording", + -10.496793746948242 + ], + [ + "60", + -10.49782657623291 + ], + [ + "▁Insurance", + -10.49785327911377 + ], + [ + "▁Pi", + -10.498233795166016 + ], + [ + "▁crowd", + -10.498602867126465 + ], + [ + "▁severe", + -10.498849868774414 + ], + [ + "▁Bi", + -10.49932861328125 + ], + [ + "▁smile", + -10.49941349029541 + ], + [ + "▁episode", + -10.501773834228516 + ], + [ + "▁Scott", + -10.501890182495117 + ], + [ + "▁Mor", + -10.501982688903809 + ], + [ + "▁AM", + -10.502165794372559 + ], + [ + "friendly", + -10.502394676208496 + ], + [ + "▁index", + -10.502674102783203 + ], + [ + "sel", + -10.503071784973145 + ], + [ + "ding", + -10.503098487854004 + ], + [ + "▁criminal", + -10.50334358215332 + ], + [ + "▁arts", + -10.503656387329102 + ], + [ + "▁none", + -10.504491806030273 + ], + [ + "▁county", + -10.504663467407227 + ], + [ + "▁attract", + -10.504875183105469 + ], + [ + "▁Report", + -10.504934310913086 + ], + [ + "▁industries", + -10.505537033081055 + ], + [ + "▁clothing", + -10.506749153137207 + ], + [ + "▁Trust", + -10.506937026977539 + ], + [ + "á", + -10.507129669189453 + ], + [ + "▁flavor", + -10.507218360900879 + ], + [ + "▁Additionally", + -10.507229804992676 + ], + [ + "▁tip", + -10.507291793823242 + ], + [ + "▁Vi", + -10.507534980773926 + ], + [ + "▁LED", + -10.507583618164062 + ], + [ + "▁Carolina", + -10.507975578308105 + ], + [ + "▁Instagram", + -10.508074760437012 + ], + [ + "▁meals", + -10.508463859558105 + ], + [ + "-19", + -10.508752822875977 + ], + [ + "▁replaced", + -10.509039878845215 + ], + [ + "▁Obama", + -10.50911808013916 + ], + [ + "▁History", + -10.509137153625488 + ], + [ + "▁48", + -10.509140014648438 + ], + [ + "▁km", + -10.509157180786133 + ], + [ + "▁Boston", + -10.509233474731445 + ], + [ + "21", + -10.50927448272705 + ], + [ + "▁hidden", + -10.509430885314941 + ], + [ + "▁split", + -10.509730339050293 + ], + [ + "):", + -10.510481834411621 + ], + [ + "▁Local", + -10.510595321655273 + ], + [ + "▁referred", + -10.51110553741455 + ], + [ + "▁routine", + -10.511432647705078 + ], + [ + "▁DC", + -10.511490821838379 + ], + [ + "▁attended", + -10.511807441711426 + ], + [ + "▁weekly", + -10.51184368133545 + ], + [ + "▁Executive", + -10.511914253234863 + ], + [ + "▁enterprise", + -10.512127876281738 + ], + [ + "ball", + -10.512301445007324 + ], + [ + "▁ages", + -10.512391090393066 + ], + [ + "▁rice", + -10.512651443481445 + ], + [ + "▁Kitchen", + -10.512791633605957 + ], + [ + "▁luck", + -10.513042449951172 + ], + [ + "▁thin", + -10.513127326965332 + ], + [ + "▁printing", + -10.513250350952148 + ], + [ + "▁platforms", + -10.514052391052246 + ], + [ + "▁Americans", + -10.514310836791992 + ], + [ + "▁shooting", + -10.514330863952637 + ], + [ + "▁Still", + -10.5143461227417 + ], + [ + "▁assume", + -10.514690399169922 + ], + [ + "▁invited", + -10.51471996307373 + ], + [ + "▁ST", + -10.514968872070312 + ], + [ + "▁bags", + -10.515519142150879 + ], + [ + "▁widely", + -10.515769004821777 + ], + [ + "▁tells", + -10.51597785949707 + ], + [ + "▁pricing", + -10.51622486114502 + ], + [ + "▁Machine", + -10.51657772064209 + ], + [ + "▁thick", + -10.5166015625 + ], + [ + "▁2016.", + -10.518157005310059 + ], + [ + "▁introduction", + -10.518415451049805 + ], + [ + "cat", + -10.518577575683594 + ], + [ + "▁ocean", + -10.51884651184082 + ], + [ + "▁Pe", + -10.518917083740234 + ], + [ + "▁stream", + -10.518963813781738 + ], + [ + "▁losing", + -10.519538879394531 + ], + [ + "▁muscle", + -10.519580841064453 + ], + [ + "▁communications", + -10.519584655761719 + ], + [ + "form", + -10.519719123840332 + ], + [ + "▁magazine", + -10.519865989685059 + ], + [ + "▁yard", + -10.520195960998535 + ], + [ + "▁chapter", + -10.520410537719727 + ], + [ + "▁grant", + -10.521074295043945 + ], + [ + "▁Financial", + -10.521080017089844 + ], + [ + "▁primarily", + -10.521455764770508 + ], + [ + "▁hurt", + -10.521713256835938 + ], + [ + "▁scheme", + -10.521919250488281 + ], + [ + "▁ordered", + -10.522656440734863 + ], + [ + "▁east", + -10.522764205932617 + ], + [ + "ash", + -10.523484230041504 + ], + [ + "▁letters", + -10.523764610290527 + ], + [ + "sch", + -10.524374008178711 + ], + [ + "▁fail", + -10.524611473083496 + ], + [ + "▁reader", + -10.525252342224121 + ], + [ + "▁enables", + -10.525614738464355 + ], + [ + "▁ultimate", + -10.525728225708008 + ], + [ + "▁submitted", + -10.525879859924316 + ], + [ + "ably", + -10.526107788085938 + ], + [ + "▁·", + -10.52661418914795 + ], + [ + "▁Website", + -10.526711463928223 + ], + [ + "ick", + -10.527244567871094 + ], + [ + "▁principles", + -10.527596473693848 + ], + [ + "▁neck", + -10.528044700622559 + ], + [ + "▁conflict", + -10.528271675109863 + ], + [ + "?”", + -10.528478622436523 + ], + [ + "▁bridge", + -10.528481483459473 + ], + [ + "▁bodies", + -10.528857231140137 + ], + [ + "▁applicable", + -10.528985023498535 + ], + [ + "▁differences", + -10.529600143432617 + ], + [ + "lar", + -10.529851913452148 + ], + [ + "▁inner", + -10.529963493347168 + ], + [ + "▁transaction", + -10.53028678894043 + ], + [ + "ign", + -10.530497550964355 + ], + [ + "▁Southern", + -10.530940055847168 + ], + [ + "▁beer", + -10.531122207641602 + ], + [ + "▁papers", + -10.532676696777344 + ], + [ + "▁lock", + -10.532805442810059 + ], + [ + "▁Perhaps", + -10.533244132995605 + ], + [ + "▁decade", + -10.533307075500488 + ], + [ + "▁Area", + -10.533501625061035 + ], + [ + "▁consideration", + -10.533645629882812 + ], + [ + "▁reducing", + -10.534163475036621 + ], + [ + "▁surprised", + -10.5343599319458 + ], + [ + "▁festival", + -10.534380912780762 + ], + [ + "▁Young", + -10.534635543823242 + ], + [ + "mar", + -10.534778594970703 + ], + [ + "▁Systems", + -10.535842895507812 + ], + [ + "▁proof", + -10.535993576049805 + ], + [ + "▁capabilities", + -10.535999298095703 + ], + [ + "▁league", + -10.536060333251953 + ], + [ + "istic", + -10.536820411682129 + ], + [ + "▁Help", + -10.537008285522461 + ], + [ + "▁permanent", + -10.537129402160645 + ], + [ + "▁ultimately", + -10.537203788757324 + ], + [ + "].", + -10.537371635437012 + ], + [ + "▁versions", + -10.537985801696777 + ], + [ + "star", + -10.538061141967773 + ], + [ + "▁Card", + -10.53833293914795 + ], + [ + "▁seriously", + -10.538355827331543 + ], + [ + "▁compliance", + -10.5383882522583 + ], + [ + "▁Visit", + -10.538789749145508 + ], + [ + "low", + -10.539046287536621 + ], + [ + "▁eligible", + -10.539163589477539 + ], + [ + "▁realized", + -10.539237976074219 + ], + [ + "▁tables", + -10.539292335510254 + ], + [ + "▁founded", + -10.539681434631348 + ], + [ + "▁NY", + -10.539884567260742 + ], + [ + "▁healing", + -10.54013729095459 + ], + [ + "▁carpet", + -10.540162086486816 + ], + [ + "▁abuse", + -10.540735244750977 + ], + [ + "▁handling", + -10.541156768798828 + ], + [ + "▁wireless", + -10.541279792785645 + ], + [ + "44", + -10.541342735290527 + ], + [ + "▁https", + -10.54141616821289 + ], + [ + "▁Ti", + -10.541431427001953 + ], + [ + "▁chart", + -10.541786193847656 + ], + [ + "▁van", + -10.54198932647705 + ], + [ + "▁keeps", + -10.541997909545898 + ], + [ + "▁SEO", + -10.542051315307617 + ], + [ + "▁FOR", + -10.542290687561035 + ], + [ + "▁spoke", + -10.542329788208008 + ], + [ + "▁estimated", + -10.542720794677734 + ], + [ + "▁supposed", + -10.54274845123291 + ], + [ + "▁developers", + -10.542885780334473 + ], + [ + "▁duty", + -10.543160438537598 + ], + [ + "▁narrow", + -10.543486595153809 + ], + [ + "▁pleasure", + -10.54356861114502 + ], + [ + "ki", + -10.543588638305664 + ], + [ + "▁creates", + -10.543671607971191 + ], + [ + "▁ski", + -10.543761253356934 + ], + [ + "▁inform", + -10.543783187866211 + ], + [ + "▁depends", + -10.544224739074707 + ], + [ + "▁films", + -10.544953346252441 + ], + [ + "▁passing", + -10.545378684997559 + ], + [ + "▁awarded", + -10.545880317687988 + ], + [ + "▁raw", + -10.546452522277832 + ], + [ + "▁household", + -10.54660701751709 + ], + [ + "▁Ph", + -10.546772956848145 + ], + [ + "▁functional", + -10.546844482421875 + ], + [ + "TC", + -10.547383308410645 + ], + [ + "01", + -10.547574996948242 + ], + [ + "▁kid", + -10.548157691955566 + ], + [ + "▁chose", + -10.548429489135742 + ], + [ + "▁Section", + -10.548487663269043 + ], + [ + "▁categories", + -10.549701690673828 + ], + [ + "▁rating", + -10.550034523010254 + ], + [ + "▁extent", + -10.550573348999023 + ], + [ + "▁Page", + -10.55078125 + ], + [ + "▁Coast", + -10.550970077514648 + ], + [ + "▁guitar", + -10.550986289978027 + ], + [ + "▁satisfaction", + -10.551092147827148 + ], + [ + "56", + -10.551470756530762 + ], + [ + "▁Van", + -10.551673889160156 + ], + [ + "▁figures", + -10.551891326904297 + ], + [ + "▁hang", + -10.55190658569336 + ], + [ + "▁boxes", + -10.551921844482422 + ], + [ + "▁elegant", + -10.552314758300781 + ], + [ + "▁UN", + -10.552573204040527 + ], + [ + "▁Times", + -10.552717208862305 + ], + [ + "ensuring", + -10.552810668945312 + ], + [ + "ix", + -10.553667068481445 + ], + [ + "▁examine", + -10.553672790527344 + ], + [ + "▁purchasing", + -10.553894996643066 + ], + [ + "▁integration", + -10.55398178100586 + ], + [ + "22", + -10.554786682128906 + ], + [ + "▁doctors", + -10.554854393005371 + ], + [ + "▁Jack", + -10.55500602722168 + ], + [ + "▁clock", + -10.555059432983398 + ], + [ + "▁Cat", + -10.555583000183105 + ], + [ + "▁saved", + -10.555933952331543 + ], + [ + "▁MA", + -10.556076049804688 + ], + [ + "▁Photo", + -10.557043075561523 + ], + [ + "▁kick", + -10.557136535644531 + ], + [ + "▁usage", + -10.557263374328613 + ], + [ + "▁Marketing", + -10.557734489440918 + ], + [ + "▁recipes", + -10.557766914367676 + ], + [ + "making", + -10.557865142822266 + ], + [ + "34", + -10.55797004699707 + ], + [ + "▁sending", + -10.558409690856934 + ], + [ + "▁firms", + -10.558443069458008 + ], + [ + "▁Stone", + -10.558618545532227 + ], + [ + "▁recommendations", + -10.558629989624023 + ], + [ + "▁guidelines", + -10.55871868133545 + ], + [ + "▁producing", + -10.559052467346191 + ], + [ + "run", + -10.559257507324219 + ], + [ + "▁justice", + -10.559492111206055 + ], + [ + "▁authorities", + -10.560150146484375 + ], + [ + "▁tomorrow", + -10.560194969177246 + ], + [ + "▁confirmed", + -10.560346603393555 + ], + [ + "▁blend", + -10.560751914978027 + ], + [ + "▁setup", + -10.561224937438965 + ], + [ + "MP", + -10.561670303344727 + ], + [ + "▁password", + -10.562163352966309 + ], + [ + "▁violence", + -10.562492370605469 + ], + [ + "SA", + -10.562745094299316 + ], + [ + "top", + -10.562777519226074 + ], + [ + "▁Chi", + -10.562800407409668 + ], + [ + "▁displayed", + -10.562919616699219 + ], + [ + "▁generated", + -10.563109397888184 + ], + [ + "▁magic", + -10.563501358032227 + ], + [ + "17", + -10.563732147216797 + ], + [ + "▁priority", + -10.564062118530273 + ], + [ + "▁slowly", + -10.564117431640625 + ], + [ + "▁sofa", + -10.564141273498535 + ], + [ + "▁pace", + -10.56428050994873 + ], + [ + "▁Ideas", + -10.564587593078613 + ], + [ + "▁Zealand", + -10.564678192138672 + ], + [ + "▁tight", + -10.564902305603027 + ], + [ + "▁arms", + -10.565055847167969 + ], + [ + "▁Mon", + -10.565207481384277 + ], + [ + "ug", + -10.565908432006836 + ], + [ + "▁authors", + -10.566060066223145 + ], + [ + "kar", + -10.566183090209961 + ], + [ + "▁tap", + -10.566533088684082 + ], + [ + "80", + -10.566657066345215 + ], + [ + "▁PDF", + -10.566680908203125 + ], + [ + "▁Engineering", + -10.566734313964844 + ], + [ + "ile", + -10.566773414611816 + ], + [ + "▁FREE", + -10.567065238952637 + ], + [ + "▁somewhere", + -10.56711196899414 + ], + [ + "▁extreme", + -10.56733512878418 + ], + [ + "▁confident", + -10.56817626953125 + ], + [ + "▁Night", + -10.568403244018555 + ], + [ + "▁promise", + -10.568641662597656 + ], + [ + "▁crime", + -10.569290161132812 + ], + [ + "▁Sha", + -10.569613456726074 + ], + [ + "▁memories", + -10.569757461547852 + ], + [ + "▁Space", + -10.56983470916748 + ], + [ + "▁officers", + -10.570003509521484 + ], + [ + "▁2007", + -10.570034980773926 + ], + [ + "▁Test", + -10.5706205368042 + ], + [ + "hat", + -10.570777893066406 + ], + [ + "▁heating", + -10.57104778289795 + ], + [ + "▁Sports", + -10.57111644744873 + ], + [ + "▁YOU", + -10.571764945983887 + ], + [ + "▁pink", + -10.572407722473145 + ], + [ + "▁suffering", + -10.57263469696045 + ], + [ + "▁par", + -10.572654724121094 + ], + [ + "▁inch", + -10.572765350341797 + ], + [ + "▁Order", + -10.57281494140625 + ], + [ + "▁wooden", + -10.5731782913208 + ], + [ + "AS", + -10.574228286743164 + ], + [ + "▁grand", + -10.574363708496094 + ], + [ + "▁aside", + -10.574959754943848 + ], + [ + "▁Model", + -10.575167655944824 + ], + [ + "log", + -10.575411796569824 + ], + [ + "▁involves", + -10.57577133178711 + ], + [ + "▁requirement", + -10.575872421264648 + ], + [ + "▁400", + -10.575892448425293 + ], + [ + "▁seats", + -10.576151847839355 + ], + [ + "▁lucky", + -10.576183319091797 + ], + [ + "▁row", + -10.576484680175781 + ], + [ + "▁upgrade", + -10.577308654785156 + ], + [ + "▁IS", + -10.577630043029785 + ], + [ + "▁structures", + -10.57768726348877 + ], + [ + "▁Word", + -10.578152656555176 + ], + [ + "Fi", + -10.578259468078613 + ], + [ + "▁le", + -10.578878402709961 + ], + [ + "ace", + -10.578906059265137 + ], + [ + "▁increasingly", + -10.579185485839844 + ], + [ + "du", + -10.57931900024414 + ], + [ + "▁Need", + -10.579402923583984 + ], + [ + "ification", + -10.579438209533691 + ], + [ + "ological", + -10.57974910736084 + ], + [ + "▁AC", + -10.579792976379395 + ], + [ + "▁viewed", + -10.58083438873291 + ], + [ + "▁debate", + -10.58146858215332 + ], + [ + "▁male", + -10.581708908081055 + ], + [ + "style", + -10.581713676452637 + ], + [ + "▁channels", + -10.582184791564941 + ], + [ + "ions", + -10.582500457763672 + ], + [ + "▁posting", + -10.582571983337402 + ], + [ + "▁tradition", + -10.583033561706543 + ], + [ + "▁Summer", + -10.583417892456055 + ], + [ + "▁booking", + -10.5835599899292 + ], + [ + "▁lay", + -10.583990097045898 + ], + [ + "▁tape", + -10.584739685058594 + ], + [ + "▁incredibly", + -10.585480690002441 + ], + [ + "▁younger", + -10.585545539855957 + ], + [ + "▁Way", + -10.586294174194336 + ], + [ + "▁hoping", + -10.586920738220215 + ], + [ + "▁entrance", + -10.58712387084961 + ], + [ + "37", + -10.58753776550293 + ], + [ + "▁commonly", + -10.587844848632812 + ], + [ + "▁covering", + -10.58791732788086 + ], + [ + "▁struggle", + -10.587956428527832 + ], + [ + "▁rely", + -10.588346481323242 + ], + [ + "whilst", + -10.588630676269531 + ], + [ + "▁Software", + -10.588896751403809 + ], + [ + "▁alongside", + -10.588982582092285 + ], + [ + "▁Si", + -10.589262962341309 + ], + [ + "▁definition", + -10.589543342590332 + ], + [ + "▁planet", + -10.589944839477539 + ], + [ + "▁utilize", + -10.589964866638184 + ], + [ + "▁$5", + -10.590899467468262 + ], + [ + "▁exhibition", + -10.59167766571045 + ], + [ + "▁swimming", + -10.591684341430664 + ], + [ + "▁Nov", + -10.591788291931152 + ], + [ + "▁Casino", + -10.592004776000977 + ], + [ + "▁Bio", + -10.592682838439941 + ], + [ + "▁2,", + -10.59305477142334 + ], + [ + "▁attacks", + -10.593414306640625 + ], + [ + "▁engaged", + -10.59359359741211 + ], + [ + "▁confirm", + -10.593648910522461 + ], + [ + "▁enjoying", + -10.594322204589844 + ], + [ + "ST", + -10.594430923461914 + ], + [ + "▁wealth", + -10.59472370147705 + ], + [ + "▁behalf", + -10.594754219055176 + ], + [ + "▁Living", + -10.59486198425293 + ], + [ + "▁tab", + -10.595325469970703 + ], + [ + "▁Happy", + -10.59547233581543 + ], + [ + "▁anyway", + -10.595623016357422 + ], + [ + "▁king", + -10.595717430114746 + ], + [ + "▁treatments", + -10.596027374267578 + ], + [ + "▁potentially", + -10.596485137939453 + ], + [ + "▁hole", + -10.596559524536133 + ], + [ + "▁du", + -10.59715461730957 + ], + [ + "▁Fair", + -10.597210884094238 + ], + [ + "rie", + -10.59724235534668 + ], + [ + "tech", + -10.597321510314941 + ], + [ + "▁consumption", + -10.59755802154541 + ], + [ + "47", + -10.597869873046875 + ], + [ + "▁believed", + -10.598146438598633 + ], + [ + "▁coast", + -10.598312377929688 + ], + [ + "▁Oil", + -10.598603248596191 + ], + [ + "▁managers", + -10.599282264709473 + ], + [ + "▁concerning", + -10.599590301513672 + ], + [ + "▁pride", + -10.599952697753906 + ], + [ + "▁worst", + -10.600607872009277 + ], + [ + "▁Access", + -10.600659370422363 + ], + [ + "▁forest", + -10.600842475891113 + ], + [ + "▁venture", + -10.600915908813477 + ], + [ + "To", + -10.60122299194336 + ], + [ + "▁expansion", + -10.601795196533203 + ], + [ + "▁Training", + -10.601948738098145 + ], + [ + "CO", + -10.602012634277344 + ], + [ + "▁Cross", + -10.603116035461426 + ], + [ + "▁Games", + -10.603175163269043 + ], + [ + "64", + -10.60317611694336 + ], + [ + "▁preferred", + -10.603713989257812 + ], + [ + "▁exceptional", + -10.604167938232422 + ], + [ + "▁filling", + -10.604235649108887 + ], + [ + "▁hotels", + -10.604260444641113 + ], + [ + "▁Modern", + -10.604372024536133 + ], + [ + "▁Hope", + -10.60483169555664 + ], + [ + "▁causing", + -10.605106353759766 + ], + [ + "▁objective", + -10.606444358825684 + ], + [ + "▁visible", + -10.607207298278809 + ], + [ + "▁samples", + -10.607322692871094 + ], + [ + "▁programming", + -10.607970237731934 + ], + [ + "▁resort", + -10.608146667480469 + ], + [ + "▁controlled", + -10.60822868347168 + ], + [ + "▁basically", + -10.60875129699707 + ], + [ + "▁tag", + -10.60887336730957 + ], + [ + "▁Johnson", + -10.608893394470215 + ], + [ + "▁150", + -10.609169006347656 + ], + [ + "▁YouTube", + -10.609679222106934 + ], + [ + "▁buyers", + -10.610122680664062 + ], + [ + "▁threat", + -10.6104736328125 + ], + [ + "▁Gu", + -10.610627174377441 + ], + [ + "▁offices", + -10.611261367797852 + ], + [ + "▁Pacific", + -10.611315727233887 + ], + [ + "▁Rose", + -10.611804962158203 + ], + [ + "▁classroom", + -10.611810684204102 + ], + [ + "ight", + -10.61274242401123 + ], + [ + "▁writers", + -10.613044738769531 + ], + [ + "▁suggestions", + -10.613330841064453 + ], + [ + "▁Steve", + -10.614424705505371 + ], + [ + "99", + -10.614471435546875 + ], + [ + "▁HP", + -10.614679336547852 + ], + [ + "26", + -10.614716529846191 + ], + [ + "▁Hand", + -10.615212440490723 + ], + [ + "▁Ru", + -10.615781784057617 + ], + [ + "del", + -10.615821838378906 + ], + [ + "▁Michigan", + -10.615910530090332 + ], + [ + "including", + -10.616416931152344 + ], + [ + "▁sensitive", + -10.616863250732422 + ], + [ + "▁connections", + -10.617070198059082 + ], + [ + "▁statements", + -10.617281913757324 + ], + [ + "▁Joe", + -10.61731243133545 + ], + [ + "▁Professor", + -10.617568969726562 + ], + [ + "▁recognition", + -10.617593765258789 + ], + [ + "berg", + -10.617708206176758 + ], + [ + "BA", + -10.617746353149414 + ], + [ + "▁Mc", + -10.617914199829102 + ], + [ + "▁occasion", + -10.61811351776123 + ], + [ + "▁Steel", + -10.618471145629883 + ], + [ + "▁evaluation", + -10.618661880493164 + ], + [ + "zi", + -10.618693351745605 + ], + [ + "▁Drive", + -10.618756294250488 + ], + [ + "▁cookies", + -10.618921279907227 + ], + [ + "▁faculty", + -10.618999481201172 + ], + [ + "▁eggs", + -10.619361877441406 + ], + [ + "▁regardless", + -10.61939525604248 + ], + [ + "▁maintaining", + -10.619500160217285 + ], + [ + "▁crazy", + -10.620159149169922 + ], + [ + "Do", + -10.620264053344727 + ], + [ + "▁careful", + -10.6202974319458 + ], + [ + "▁naturally", + -10.620372772216797 + ], + [ + "▁liked", + -10.621423721313477 + ], + [ + "act", + -10.62155532836914 + ], + [ + "▁giant", + -10.62193775177002 + ], + [ + "!\"", + -10.62208366394043 + ], + [ + "PA", + -10.622147560119629 + ], + [ + "65", + -10.622389793395996 + ], + [ + "▁Pan", + -10.622390747070312 + ], + [ + "▁joining", + -10.62243938446045 + ], + [ + "ute", + -10.623517990112305 + ], + [ + "▁legs", + -10.623618125915527 + ], + [ + "▁adds", + -10.62382984161377 + ], + [ + "▁suffer", + -10.623880386352539 + ], + [ + "▁relax", + -10.624032020568848 + ], + [ + "▁Northern", + -10.62421703338623 + ], + [ + "▁stable", + -10.624964714050293 + ], + [ + "▁relative", + -10.625253677368164 + ], + [ + "▁residence", + -10.625731468200684 + ], + [ + "▁hate", + -10.625870704650879 + ], + [ + "TS", + -10.626977920532227 + ], + [ + "▁Point", + -10.627141952514648 + ], + [ + "▁2015.", + -10.627240180969238 + ], + [ + "95", + -10.627494812011719 + ], + [ + "▁bone", + -10.627557754516602 + ], + [ + "▁rose", + -10.6287260055542 + ], + [ + "▁continuing", + -10.62934684753418 + ], + [ + "▁empty", + -10.629356384277344 + ], + [ + "▁somewhat", + -10.629512786865234 + ], + [ + "ken", + -10.629644393920898 + ], + [ + "▁streets", + -10.629656791687012 + ], + [ + "▁Ohio", + -10.629941940307617 + ], + [ + "▁applying", + -10.630496978759766 + ], + [ + "▁USB", + -10.630539894104004 + ], + [ + "▁Quality", + -10.630712509155273 + ], + [ + "gate", + -10.630755424499512 + ], + [ + "▁Airport", + -10.631178855895996 + ], + [ + "▁adjust", + -10.631895065307617 + ], + [ + "▁forever", + -10.632461547851562 + ], + [ + "▁ho", + -10.632559776306152 + ], + [ + "▁hundred", + -10.632808685302734 + ], + [ + "▁ads", + -10.632905960083008 + ], + [ + "▁Made", + -10.632962226867676 + ], + [ + "▁venue", + -10.63365364074707 + ], + [ + "SP", + -10.63435173034668 + ], + [ + "▁herself", + -10.634514808654785 + ], + [ + "▁birds", + -10.634658813476562 + ], + [ + "▁outcome", + -10.634918212890625 + ], + [ + "▁factory", + -10.634936332702637 + ], + [ + "inch", + -10.635146141052246 + ], + [ + "▁codes", + -10.635993957519531 + ], + [ + "▁dishes", + -10.636815071105957 + ], + [ + "▁requests", + -10.636917114257812 + ], + [ + "▁amounts", + -10.637495994567871 + ], + [ + "▁orange", + -10.637629508972168 + ], + [ + "▁Col", + -10.637630462646484 + ], + [ + "new", + -10.63809585571289 + ], + [ + "▁lift", + -10.638715744018555 + ], + [ + "▁breath", + -10.638721466064453 + ], + [ + "har", + -10.638829231262207 + ], + [ + "▁regions", + -10.638973236083984 + ], + [ + "▁Farm", + -10.639086723327637 + ], + [ + "▁opposite", + -10.63918685913086 + ], + [ + "▁lake", + -10.64030933380127 + ], + [ + "▁remind", + -10.640795707702637 + ], + [ + "▁egg", + -10.640800476074219 + ], + [ + "▁Camp", + -10.64110279083252 + ], + [ + "▁SO", + -10.641295433044434 + ], + [ + "42", + -10.641395568847656 + ], + [ + "▁vegetables", + -10.641580581665039 + ], + [ + "val", + -10.641827583312988 + ], + [ + "▁blocks", + -10.64184856414795 + ], + [ + "▁sky", + -10.641988754272461 + ], + [ + "par", + -10.642035484313965 + ], + [ + "▁Matt", + -10.642339706420898 + ], + [ + "▁Tim", + -10.642402648925781 + ], + [ + "▁script", + -10.64267349243164 + ], + [ + "▁newly", + -10.642687797546387 + ], + [ + "▁pp", + -10.643692016601562 + ], + [ + "▁graphics", + -10.644058227539062 + ], + [ + "▁liability", + -10.644200325012207 + ], + [ + "▁scored", + -10.644238471984863 + ], + [ + "▁eliminate", + -10.644365310668945 + ], + [ + "uck", + -10.64439868927002 + ], + [ + "▁outcomes", + -10.645049095153809 + ], + [ + "▁Select", + -10.645524024963379 + ], + [ + "04", + -10.645585060119629 + ], + [ + "▁awards", + -10.645980834960938 + ], + [ + "▁editor", + -10.646282196044922 + ], + [ + "46", + -10.646627426147461 + ], + [ + "▁Spirit", + -10.646992683410645 + ], + [ + "▁Bridge", + -10.64727783203125 + ], + [ + "▁bird", + -10.647284507751465 + ], + [ + "CC", + -10.647560119628906 + ], + [ + "33", + -10.6476469039917 + ], + [ + "▁Ki", + -10.647778511047363 + ], + [ + "▁storm", + -10.647810935974121 + ], + [ + "lock", + -10.647958755493164 + ], + [ + "▁Francisco", + -10.648648262023926 + ], + [ + "▁concepts", + -10.648760795593262 + ], + [ + "▁Want", + -10.649664878845215 + ], + [ + "▁bars", + -10.649848937988281 + ], + [ + "▁packages", + -10.649909973144531 + ], + [ + "▁Hot", + -10.650129318237305 + ], + [ + "len", + -10.650252342224121 + ], + [ + "nic", + -10.650259971618652 + ], + [ + "ever", + -10.650522232055664 + ], + [ + "▁pen", + -10.650735855102539 + ], + [ + "▁licensed", + -10.65074348449707 + ], + [ + "▁tissue", + -10.650996208190918 + ], + [ + "▁Andrew", + -10.651000022888184 + ], + [ + "▁permission", + -10.651036262512207 + ], + [ + "▁fighting", + -10.651166915893555 + ], + [ + "▁Mountain", + -10.651604652404785 + ], + [ + "bra", + -10.651618003845215 + ], + [ + "▁errors", + -10.651626586914062 + ], + [ + "He", + -10.6522798538208 + ], + [ + "▁judge", + -10.652435302734375 + ], + [ + "▁victory", + -10.652609825134277 + ], + [ + "van", + -10.653111457824707 + ], + [ + "▁listing", + -10.653115272521973 + ], + [ + "▁2006", + -10.65456485748291 + ], + [ + "▁approaches", + -10.654692649841309 + ], + [ + "▁rid", + -10.654935836791992 + ], + [ + "▁Williams", + -10.655022621154785 + ], + [ + "▁beneficial", + -10.655078887939453 + ], + [ + "▁proposal", + -10.655498504638672 + ], + [ + "▁intelligence", + -10.655710220336914 + ], + [ + "lic", + -10.655810356140137 + ], + [ + "▁Catholic", + -10.656111717224121 + ], + [ + "▁indicate", + -10.656312942504883 + ], + [ + "What", + -10.656352043151855 + ], + [ + "▁ceiling", + -10.656391143798828 + ], + [ + "ming", + -10.656427383422852 + ], + [ + "36", + -10.656512260437012 + ], + [ + "▁zero", + -10.656830787658691 + ], + [ + "▁flower", + -10.656907081604004 + ], + [ + "▁checking", + -10.657079696655273 + ], + [ + "▁Cover", + -10.657130241394043 + ], + [ + "des", + -10.65736198425293 + ], + [ + "▁stuck", + -10.657777786254883 + ], + [ + "▁Him", + -10.657975196838379 + ], + [ + "▁sufficient", + -10.658101081848145 + ], + [ + "▁lawyer", + -10.658285140991211 + ], + [ + "▁Ball", + -10.658406257629395 + ], + [ + "▁organisation", + -10.658427238464355 + ], + [ + "▁Sign", + -10.658620834350586 + ], + [ + "▁dropped", + -10.659110069274902 + ], + [ + "app", + -10.659249305725098 + ], + [ + "▁Colorado", + -10.659565925598145 + ], + [ + "▁spray", + -10.6597261428833 + ], + [ + "▁driven", + -10.660704612731934 + ], + [ + "ston", + -10.66109561920166 + ], + [ + "▁warranty", + -10.661153793334961 + ], + [ + "▁matches", + -10.66134262084961 + ], + [ + "▁division", + -10.662006378173828 + ], + [ + "▁Silver", + -10.662184715270996 + ], + [ + "▁suggests", + -10.662208557128906 + ], + [ + "▁Jones", + -10.662650108337402 + ], + [ + "▁LLC", + -10.662768363952637 + ], + [ + "▁Main", + -10.662930488586426 + ], + [ + "▁arrival", + -10.66312313079834 + ], + [ + "-10", + -10.663435935974121 + ], + [ + "▁container", + -10.663570404052734 + ], + [ + "▁lesson", + -10.663729667663574 + ], + [ + "▁Division", + -10.663898468017578 + ], + [ + "cu", + -10.665989875793457 + ], + [ + "▁transmission", + -10.665999412536621 + ], + [ + "▁laptop", + -10.66671085357666 + ], + [ + "▁vintage", + -10.666866302490234 + ], + [ + "Be", + -10.6670503616333 + ], + [ + "▁directed", + -10.667272567749023 + ], + [ + "▁Kingdom", + -10.667476654052734 + ], + [ + "▁kill", + -10.668349266052246 + ], + [ + "▁shoot", + -10.66843318939209 + ], + [ + "▁anxiety", + -10.668717384338379 + ], + [ + "▁electricity", + -10.66905403137207 + ], + [ + "life", + -10.66942310333252 + ], + [ + "▁Win", + -10.669434547424316 + ], + [ + "▁suppliers", + -10.669757843017578 + ], + [ + "▁limits", + -10.669809341430664 + ], + [ + "▁layout", + -10.6700439453125 + ], + [ + "▁marks", + -10.670393943786621 + ], + [ + "▁convenience", + -10.670536994934082 + ], + [ + "▁interactive", + -10.67056941986084 + ], + [ + "▁wave", + -10.670738220214844 + ], + [ + "▁sight", + -10.670846939086914 + ], + [ + "▁Holy", + -10.67086124420166 + ], + [ + "sion", + -10.670872688293457 + ], + [ + "▁functionality", + -10.671003341674805 + ], + [ + "▁favor", + -10.671343803405762 + ], + [ + "▁wash", + -10.671662330627441 + ], + [ + "▁Smart", + -10.671777725219727 + ], + [ + "OS", + -10.671907424926758 + ], + [ + "▁compensation", + -10.67204475402832 + ], + [ + "▁till", + -10.672167778015137 + ], + [ + "▁pump", + -10.672268867492676 + ], + [ + "▁OS", + -10.672611236572266 + ], + [ + "▁legislation", + -10.672769546508789 + ], + [ + "▁sum", + -10.672961235046387 + ], + [ + "▁breast", + -10.673094749450684 + ], + [ + "▁juice", + -10.673439979553223 + ], + [ + "▁funny", + -10.673702239990234 + ], + [ + "▁criteria", + -10.67375659942627 + ], + [ + "▁Medicine", + -10.673774719238281 + ], + [ + "▁walked", + -10.674378395080566 + ], + [ + "▁tracking", + -10.674712181091309 + ], + [ + "▁Give", + -10.674827575683594 + ], + [ + "▁Product", + -10.674850463867188 + ], + [ + "▁tone", + -10.67489242553711 + ], + [ + "▁Save", + -10.675175666809082 + ], + [ + "▁edit", + -10.675324440002441 + ], + [ + "▁correctly", + -10.675436019897461 + ], + [ + "▁drinking", + -10.675479888916016 + ], + [ + "SC", + -10.67553997039795 + ], + [ + "▁roles", + -10.675771713256836 + ], + [ + "▁telephone", + -10.67593765258789 + ], + [ + "▁Charles", + -10.675965309143066 + ], + [ + "▁feelings", + -10.675982475280762 + ], + [ + "23", + -10.676274299621582 + ], + [ + "▁draft", + -10.676416397094727 + ], + [ + "▁steam", + -10.676671981811523 + ], + [ + "▁Image", + -10.676919937133789 + ], + [ + "▁33", + -10.67726993560791 + ], + [ + "▁stretch", + -10.677486419677734 + ], + [ + "law", + -10.67763614654541 + ], + [ + "▁forum", + -10.677931785583496 + ], + [ + "▁certificate", + -10.678311347961426 + ], + [ + "▁harm", + -10.678498268127441 + ], + [ + "cal", + -10.678512573242188 + ], + [ + "▁observed", + -10.678866386413574 + ], + [ + "▁necessarily", + -10.679190635681152 + ], + [ + "▁Ford", + -10.679226875305176 + ], + [ + "▁lens", + -10.680818557739258 + ], + [ + "▁Customer", + -10.681297302246094 + ], + [ + "▁Without", + -10.681432723999023 + ], + [ + "▁employer", + -10.681443214416504 + ], + [ + "▁participation", + -10.681451797485352 + ], + [ + "▁Prime", + -10.681539535522461 + ], + [ + "▁facts", + -10.681568145751953 + ], + [ + "▁Heart", + -10.681652069091797 + ], + [ + "▁everywhere", + -10.682320594787598 + ], + [ + "▁6.", + -10.682388305664062 + ], + [ + "vi", + -10.682443618774414 + ], + [ + "▁module", + -10.68248462677002 + ], + [ + "▁retirement", + -10.682509422302246 + ], + [ + "▁sharp", + -10.682565689086914 + ], + [ + "▁Roman", + -10.682597160339355 + ], + [ + "▁bear", + -10.682841300964355 + ], + [ + "▁flexibility", + -10.683112144470215 + ], + [ + "▁Studies", + -10.68325424194336 + ], + [ + "▁po", + -10.683307647705078 + ], + [ + "▁Four", + -10.6834077835083 + ], + [ + "▁formula", + -10.68364143371582 + ], + [ + "▁association", + -10.683675765991211 + ], + [ + "▁literature", + -10.68385124206543 + ], + [ + "Pro", + -10.684168815612793 + ], + [ + "▁DO", + -10.684701919555664 + ], + [ + "▁ratio", + -10.684762954711914 + ], + [ + "▁Jewish", + -10.684814453125 + ], + [ + "▁lifetime", + -10.684928894042969 + ], + [ + "▁presents", + -10.685518264770508 + ], + [ + "▁volunteers", + -10.685558319091797 + ], + [ + "▁politics", + -10.685580253601074 + ], + [ + "▁Senior", + -10.685689926147461 + ], + [ + "▁random", + -10.68576431274414 + ], + [ + "▁regard", + -10.685846328735352 + ], + [ + "AC", + -10.685891151428223 + ], + [ + "pur", + -10.68590259552002 + ], + [ + "▁dreams", + -10.686090469360352 + ], + [ + "▁pocket", + -10.686751365661621 + ], + [ + "31", + -10.686929702758789 + ], + [ + "▁certification", + -10.687017440795898 + ], + [ + "AL", + -10.68704891204834 + ], + [ + "▁semi", + -10.687088012695312 + ], + [ + "▁contained", + -10.687226295471191 + ], + [ + "▁tie", + -10.687286376953125 + ], + [ + "▁Based", + -10.687528610229492 + ], + [ + "▁skilled", + -10.687618255615234 + ], + [ + "No", + -10.687722206115723 + ], + [ + "pre", + -10.687840461730957 + ], + [ + "69", + -10.68798828125 + ], + [ + "▁Singapore", + -10.689021110534668 + ], + [ + "If", + -10.689131736755371 + ], + [ + "▁aircraft", + -10.689216613769531 + ], + [ + "43", + -10.689266204833984 + ], + [ + "war", + -10.689302444458008 + ], + [ + "▁^", + -10.689375877380371 + ], + [ + "▁Box", + -10.689447402954102 + ], + [ + "▁asset", + -10.689576148986816 + ], + [ + "▁nuclear", + -10.690266609191895 + ], + [ + "▁specified", + -10.690380096435547 + ], + [ + "▁cruise", + -10.690433502197266 + ], + [ + "▁Week", + -10.690567016601562 + ], + [ + "▁complicated", + -10.690653800964355 + ], + [ + "▁Cal", + -10.690683364868164 + ], + [ + "▁Has", + -10.6908540725708 + ], + [ + "▁automatic", + -10.691091537475586 + ], + [ + "▁Plant", + -10.691149711608887 + ], + [ + "▁traveling", + -10.69150161743164 + ], + [ + ".00", + -10.691510200500488 + ], + [ + "▁Off", + -10.692020416259766 + ], + [ + "▁tracks", + -10.6921968460083 + ], + [ + "▁peak", + -10.69236946105957 + ], + [ + "▁Asian", + -10.69237232208252 + ], + [ + "hour", + -10.693376541137695 + ], + [ + "▁Everyone", + -10.693750381469727 + ], + [ + "▁accommodation", + -10.693900108337402 + ], + [ + "that", + -10.694059371948242 + ], + [ + "▁NO", + -10.694563865661621 + ], + [ + "▁exposed", + -10.694791793823242 + ], + [ + "▁Bur", + -10.69480037689209 + ], + [ + "▁incorporate", + -10.694941520690918 + ], + [ + "▁prize", + -10.69510555267334 + ], + [ + "view", + -10.695509910583496 + ], + [ + "▁rural", + -10.696370124816895 + ], + [ + "▁flash", + -10.696560859680176 + ], + [ + "▁marked", + -10.696576118469238 + ], + [ + "▁finest", + -10.696598052978516 + ], + [ + "IN", + -10.696701049804688 + ], + [ + "▁false", + -10.697283744812012 + ], + [ + "pri", + -10.697453498840332 + ], + [ + "▁34", + -10.697522163391113 + ], + [ + "▁holidays", + -10.697542190551758 + ], + [ + "▁Ten", + -10.697765350341797 + ], + [ + "▁Ed", + -10.697844505310059 + ], + [ + "vis", + -10.698049545288086 + ], + [ + "▁millions", + -10.698071479797363 + ], + [ + "57", + -10.698360443115234 + ], + [ + "▁utility", + -10.69848346710205 + ], + [ + "!)", + -10.698741912841797 + ], + [ + "cer", + -10.69914436340332 + ], + [ + "▁Cap", + -10.699150085449219 + ], + [ + "▁0.", + -10.699397087097168 + ], + [ + "stra", + -10.699463844299316 + ], + [ + "▁patio", + -10.699701309204102 + ], + [ + "▁involving", + -10.700444221496582 + ], + [ + "▁trans", + -10.700532913208008 + ], + [ + "▁hosted", + -10.70083999633789 + ], + [ + "▁requested", + -10.701225280761719 + ], + [ + "key", + -10.701363563537598 + ], + [ + "made", + -10.701624870300293 + ], + [ + "For", + -10.701696395874023 + ], + [ + "▁reaction", + -10.702012062072754 + ], + [ + "▁concert", + -10.702125549316406 + ], + [ + "▁Tour", + -10.702476501464844 + ], + [ + "pp", + -10.702479362487793 + ], + [ + "▁colours", + -10.702914237976074 + ], + [ + "▁museum", + -10.70297908782959 + ], + [ + "▁mirror", + -10.703277587890625 + ], + [ + "и", + -10.703564643859863 + ], + [ + "mat", + -10.704063415527344 + ], + [ + "▁Brand", + -10.704455375671387 + ], + [ + "▁retain", + -10.70460319519043 + ], + [ + "▁carrying", + -10.704989433288574 + ], + [ + "▁announce", + -10.705514907836914 + ], + [ + "▁baking", + -10.705523490905762 + ], + [ + "▁respectively", + -10.705887794494629 + ], + [ + "▁scope", + -10.706090927124023 + ], + [ + "▁mood", + -10.706433296203613 + ], + [ + "▁staying", + -10.706546783447266 + ], + [ + "76", + -10.706850051879883 + ], + [ + "▁Film", + -10.707098960876465 + ], + [ + "▁characteristics", + -10.70753288269043 + ], + [ + "▁containing", + -10.707573890686035 + ], + [ + "55", + -10.707880973815918 + ], + [ + "▁assistant", + -10.708205223083496 + ], + [ + "▁examination", + -10.708395004272461 + ], + [ + "▁initiative", + -10.70850944519043 + ], + [ + "▁encouraged", + -10.708620071411133 + ], + [ + "▁publication", + -10.708647727966309 + ], + [ + "▁smoke", + -10.708944320678711 + ], + [ + "▁shouldn", + -10.708989143371582 + ], + [ + "▁Sky", + -10.709203720092773 + ], + [ + "med", + -10.70921516418457 + ], + [ + "▁Choose", + -10.70921802520752 + ], + [ + "▁debut", + -10.710368156433105 + ], + [ + "ole", + -10.710795402526855 + ], + [ + "bel", + -10.710808753967285 + ], + [ + "▁panels", + -10.711146354675293 + ], + [ + "▁acts", + -10.711153030395508 + ], + [ + "▁accommodate", + -10.711223602294922 + ], + [ + "▁maintained", + -10.711686134338379 + ], + [ + "▁grab", + -10.711840629577637 + ], + [ + "▁council", + -10.711886405944824 + ], + [ + "▁insight", + -10.711923599243164 + ], + [ + "▁damaged", + -10.71202564239502 + ], + [ + "▁Son", + -10.71212100982666 + ], + [ + "▁chairs", + -10.712483406066895 + ], + [ + "MO", + -10.712514877319336 + ], + [ + "▁Daniel", + -10.712697982788086 + ], + [ + "▁string", + -10.713085174560547 + ], + [ + "ments", + -10.713122367858887 + ], + [ + "ified", + -10.713459968566895 + ], + [ + "▁minimal", + -10.71346664428711 + ], + [ + "▁Jim", + -10.71357536315918 + ], + [ + "▁guaranteed", + -10.713651657104492 + ], + [ + "▁tile", + -10.71445083618164 + ], + [ + "▁personality", + -10.714468955993652 + ], + [ + "▁speaker", + -10.714654922485352 + ], + [ + "▁Sh", + -10.714715003967285 + ], + [ + "▁depend", + -10.714733123779297 + ], + [ + "▁cabinet", + -10.714789390563965 + ], + [ + "▁equivalent", + -10.714794158935547 + ], + [ + "▁Com", + -10.715702056884766 + ], + [ + "41", + -10.715782165527344 + ], + [ + "▁expressed", + -10.716127395629883 + ], + [ + "▁List", + -10.716529846191406 + ], + [ + "▁gap", + -10.717100143432617 + ], + [ + "▁plain", + -10.717459678649902 + ], + [ + "▁closing", + -10.71754264831543 + ], + [ + "▁tall", + -10.717740058898926 + ], + [ + "▁transactions", + -10.718029975891113 + ], + [ + "▁obviously", + -10.718221664428711 + ], + [ + "▁Georgia", + -10.718520164489746 + ], + [ + "▁Agreement", + -10.71863842010498 + ], + [ + "AM", + -10.718657493591309 + ], + [ + "-12", + -10.718868255615234 + ], + [ + "DS", + -10.718894004821777 + ], + [ + "▁tagged", + -10.71939468383789 + ], + [ + "▁Due", + -10.719499588012695 + ], + [ + "▁bound", + -10.719740867614746 + ], + [ + "▁©", + -10.720218658447266 + ], + [ + "▁highlight", + -10.720407485961914 + ], + [ + "▁configuration", + -10.720429420471191 + ], + [ + "▁Bob", + -10.72059440612793 + ], + [ + "▁laser", + -10.720663070678711 + ], + [ + "▁Par", + -10.721049308776855 + ], + [ + "▁assess", + -10.721057891845703 + ], + [ + "▁convert", + -10.721156120300293 + ], + [ + "▁Sch", + -10.721871376037598 + ], + [ + "▁ca", + -10.721908569335938 + ], + [ + "▁literally", + -10.722647666931152 + ], + [ + "rant", + -10.722774505615234 + ], + [ + "▁Anti", + -10.723142623901367 + ], + [ + "AP", + -10.723344802856445 + ], + [ + "▁downtown", + -10.72408390045166 + ], + [ + "CA", + -10.724088668823242 + ], + [ + "▁Station", + -10.724096298217773 + ], + [ + "▁cotton", + -10.724306106567383 + ], + [ + "▁Sub", + -10.724555969238281 + ], + [ + "70", + -10.72482681274414 + ], + [ + "▁preparing", + -10.724929809570312 + ], + [ + "▁drinks", + -10.7250337600708 + ], + [ + "▁Radio", + -10.725144386291504 + ], + [ + "▁Greek", + -10.72534465789795 + ], + [ + "▁upload", + -10.725347518920898 + ], + [ + "▁greatly", + -10.725512504577637 + ], + [ + "▁Army", + -10.726086616516113 + ], + [ + "▁BE", + -10.726091384887695 + ], + [ + "▁Pass", + -10.726923942565918 + ], + [ + "▁yoga", + -10.727161407470703 + ], + [ + "▁LA", + -10.727632522583008 + ], + [ + "▁Personal", + -10.727864265441895 + ], + [ + "▁dad", + -10.727994918823242 + ], + [ + "▁moves", + -10.728032112121582 + ], + [ + "▁Cloud", + -10.728083610534668 + ], + [ + "▁2018,", + -10.728371620178223 + ], + [ + "▁gaming", + -10.728689193725586 + ], + [ + "▁representative", + -10.728958129882812 + ], + [ + "▁stainless", + -10.729339599609375 + ], + [ + "cha", + -10.729730606079102 + ], + [ + "▁shots", + -10.73013973236084 + ], + [ + "▁sick", + -10.730562210083008 + ], + [ + "▁Spain", + -10.73067855834961 + ], + [ + "▁accordance", + -10.730761528015137 + ], + [ + "▁improvements", + -10.73079776763916 + ], + [ + "▁sad", + -10.73108196258545 + ], + [ + "58", + -10.731579780578613 + ], + [ + "▁delivering", + -10.731704711914062 + ], + [ + "▁volunteer", + -10.732858657836914 + ], + [ + "▁fundamental", + -10.733499526977539 + ], + [ + "known", + -10.73359489440918 + ], + [ + "▁drawn", + -10.733662605285645 + ], + [ + "▁controls", + -10.733709335327148 + ], + [ + "▁interaction", + -10.733731269836426 + ], + [ + "▁plug", + -10.73377513885498 + ], + [ + "▁photographs", + -10.733781814575195 + ], + [ + "▁(1", + -10.733838081359863 + ], + [ + "▁SE", + -10.73387622833252 + ], + [ + "▁Following", + -10.733901977539062 + ], + [ + "right", + -10.733909606933594 + ], + [ + "▁Learning", + -10.734475135803223 + ], + [ + "▁DVD", + -10.734779357910156 + ], + [ + "▁Sale", + -10.73479175567627 + ], + [ + "▁Queen", + -10.735082626342773 + ], + [ + "▁satisfied", + -10.735325813293457 + ], + [ + "▁introduce", + -10.73582935333252 + ], + [ + "▁branch", + -10.735832214355469 + ], + [ + "#", + -10.735953330993652 + ], + [ + "▁focuses", + -10.736212730407715 + ], + [ + "▁Non", + -10.73624324798584 + ], + [ + "▁brilliant", + -10.73634147644043 + ], + [ + "ising", + -10.73671817779541 + ], + [ + "▁occurs", + -10.737228393554688 + ], + [ + "▁completion", + -10.737269401550293 + ], + [ + "▁implemented", + -10.737353324890137 + ], + [ + "▁largely", + -10.737510681152344 + ], + [ + "▁scientists", + -10.73777961730957 + ], + [ + "▁Che", + -10.73785400390625 + ], + [ + "▁DE", + -10.738038063049316 + ], + [ + "▁Type", + -10.738316535949707 + ], + [ + "▁twenty", + -10.738452911376953 + ], + [ + "200", + -10.73875904083252 + ], + [ + "▁secondary", + -10.739452362060547 + ], + [ + "▁circuit", + -10.73984432220459 + ], + [ + "▁pe", + -10.740494728088379 + ], + [ + "▁Corporation", + -10.740525245666504 + ], + [ + "▁Gar", + -10.740999221801758 + ], + [ + "▁stronger", + -10.741000175476074 + ], + [ + "▁2014.", + -10.741256713867188 + ], + [ + "▁Repair", + -10.741260528564453 + ], + [ + "▁heading", + -10.741297721862793 + ], + [ + "LY", + -10.741748809814453 + ], + [ + "▁durable", + -10.742395401000977 + ], + [ + "▁1990", + -10.74255657196045 + ], + [ + "▁#1", + -10.743103981018066 + ], + [ + "▁addresses", + -10.743522644042969 + ], + [ + "▁frequency", + -10.743884086608887 + ], + [ + "▁diseases", + -10.744032859802246 + ], + [ + "▁Collection", + -10.744046211242676 + ], + [ + "▁2005", + -10.744227409362793 + ], + [ + "▁desktop", + -10.74455738067627 + ], + [ + "86", + -10.744592666625977 + ], + [ + "51", + -10.745295524597168 + ], + [ + "▁existence", + -10.745708465576172 + ], + [ + "▁pulled", + -10.745929718017578 + ], + [ + "▁consent", + -10.74605655670166 + ], + [ + "▁Safety", + -10.746386528015137 + ], + [ + "98", + -10.746683120727539 + ], + [ + "▁grass", + -10.747817039489746 + ], + [ + "▁yards", + -10.747849464416504 + ], + [ + "▁occurred", + -10.747893333435059 + ], + [ + "▁Frank", + -10.748215675354004 + ], + [ + "ele", + -10.748292922973633 + ], + [ + "▁Pat", + -10.748321533203125 + ], + [ + "▁strange", + -10.748384475708008 + ], + [ + "▁designers", + -10.748713493347168 + ], + [ + "▁Form", + -10.748845100402832 + ], + [ + "cle", + -10.749349594116211 + ], + [ + "▁Estate", + -10.74939250946045 + ], + [ + "▁chances", + -10.74959945678711 + ], + [ + "qu", + -10.75031566619873 + ], + [ + "▁sections", + -10.751019477844238 + ], + [ + "▁Furthermore", + -10.752278327941895 + ], + [ + "▁hip", + -10.75263786315918 + ], + [ + "89", + -10.752695083618164 + ], + [ + "▁humans", + -10.752702713012695 + ], + [ + "uri", + -10.753643989562988 + ], + [ + "▁engaging", + -10.753665924072266 + ], + [ + "85", + -10.753677368164062 + ], + [ + "▁escape", + -10.75428295135498 + ], + [ + "▁Natural", + -10.754426956176758 + ], + [ + "▁texture", + -10.754429817199707 + ], + [ + "▁studying", + -10.754977226257324 + ], + [ + "state", + -10.755489349365234 + ], + [ + "▁follows", + -10.755704879760742 + ], + [ + "▁spots", + -10.75573444366455 + ], + [ + "▁pa", + -10.755992889404297 + ], + [ + "▁seeds", + -10.756021499633789 + ], + [ + "▁delay", + -10.756515502929688 + ], + [ + "▁lowest", + -10.757050514221191 + ], + [ + "▁Pen", + -10.757081985473633 + ], + [ + "▁contribution", + -10.757400512695312 + ], + [ + "▁ha", + -10.757615089416504 + ], + [ + "▁Country", + -10.757718086242676 + ], + [ + "▁Easy", + -10.757743835449219 + ], + [ + "▁strongly", + -10.757790565490723 + ], + [ + "▁demonstrate", + -10.75803279876709 + ], + [ + "▁define", + -10.758252143859863 + ], + [ + "▁estimate", + -10.758438110351562 + ], + [ + "▁icon", + -10.758578300476074 + ], + [ + "ell", + -10.758759498596191 + ], + [ + "▁dollar", + -10.759027481079102 + ], + [ + "▁Disney", + -10.7593355178833 + ], + [ + "▁speakers", + -10.759354591369629 + ], + [ + "ender", + -10.759763717651367 + ], + [ + "▁entering", + -10.759806632995605 + ], + [ + "▁exploring", + -10.760287284851074 + ], + [ + "ations", + -10.760397911071777 + ], + [ + "▁gained", + -10.760404586791992 + ], + [ + "▁repairs", + -10.760648727416992 + ], + [ + "▁opt", + -10.760866165161133 + ], + [ + "▁Cu", + -10.761649131774902 + ], + [ + "lam", + -10.761968612670898 + ], + [ + "▁granted", + -10.762091636657715 + ], + [ + "▁42", + -10.762134552001953 + ], + [ + "cher", + -10.762267112731934 + ], + [ + "ail", + -10.762713432312012 + ], + [ + "▁pounds", + -10.76295280456543 + ], + [ + "▁calm", + -10.76329231262207 + ], + [ + "▁loves", + -10.763744354248047 + ], + [ + "▁workplace", + -10.763876914978027 + ], + [ + "79", + -10.763935089111328 + ], + [ + "▁instant", + -10.76418685913086 + ], + [ + "▁demands", + -10.764632225036621 + ], + [ + "▁Think", + -10.76463794708252 + ], + [ + "78", + -10.764876365661621 + ], + [ + "▁dual", + -10.764925956726074 + ], + [ + "▁Custom", + -10.765311241149902 + ], + [ + "▁argument", + -10.765897750854492 + ], + [ + "▁Experience", + -10.766060829162598 + ], + [ + "▁Low", + -10.766064643859863 + ], + [ + "▁talks", + -10.766203880310059 + ], + [ + "▁relate", + -10.766290664672852 + ], + [ + "▁packed", + -10.766629219055176 + ], + [ + "▁mi", + -10.767894744873047 + ], + [ + "▁facilitate", + -10.768356323242188 + ], + [ + "▁pepper", + -10.768577575683594 + ], + [ + "▁provision", + -10.768698692321777 + ], + [ + "▁2017,", + -10.76907730102539 + ], + [ + "▁Again", + -10.76909351348877 + ], + [ + "▁assigned", + -10.769159317016602 + ], + [ + "▁fits", + -10.769380569458008 + ], + [ + "▁Credit", + -10.769429206848145 + ], + [ + "▁checked", + -10.76945686340332 + ], + [ + "▁centers", + -10.769510269165039 + ], + [ + "▁lease", + -10.770204544067383 + ], + [ + "PC", + -10.770415306091309 + ], + [ + "▁accuracy", + -10.770687103271484 + ], + [ + "een", + -10.770927429199219 + ], + [ + "▁Father", + -10.770997047424316 + ], + [ + "▁smell", + -10.771319389343262 + ], + [ + "▁colleagues", + -10.771562576293945 + ], + [ + "▁prayer", + -10.771642684936523 + ], + [ + "▁flying", + -10.771740913391113 + ], + [ + "▁Mal", + -10.771769523620605 + ], + [ + "▁entitled", + -10.771970748901367 + ], + [ + "▁acting", + -10.77202320098877 + ], + [ + "▁focusing", + -10.772034645080566 + ], + [ + "▁Capital", + -10.772089958190918 + ], + [ + "▁mg", + -10.772314071655273 + ], + [ + "▁Multi", + -10.772465705871582 + ], + [ + "▁para", + -10.773616790771484 + ], + [ + "▁alive", + -10.773782730102539 + ], + [ + "▁represented", + -10.77446460723877 + ], + [ + "▁temporary", + -10.774653434753418 + ], + [ + "▁celebration", + -10.77475643157959 + ], + [ + "▁explains", + -10.774889945983887 + ], + [ + "▁repeat", + -10.775176048278809 + ], + [ + "▁Tu", + -10.775257110595703 + ], + [ + "▁pin", + -10.77542495727539 + ], + [ + "▁passionate", + -10.775431632995605 + ], + [ + "▁talked", + -10.775588035583496 + ], + [ + "▁Name", + -10.775904655456543 + ], + [ + "▁subjects", + -10.77595329284668 + ], + [ + "▁Micro", + -10.776031494140625 + ], + [ + "▁absolute", + -10.77649211883545 + ], + [ + "▁mile", + -10.77690601348877 + ], + [ + "▁stages", + -10.77730941772461 + ], + [ + "▁Mer", + -10.77741527557373 + ], + [ + "▁loving", + -10.777652740478516 + ], + [ + "▁flooring", + -10.77791690826416 + ], + [ + "▁(2", + -10.77796459197998 + ], + [ + "▁trips", + -10.778081893920898 + ], + [ + "▁Limited", + -10.778312683105469 + ], + [ + "▁personnel", + -10.778797149658203 + ], + [ + "▁aims", + -10.778975486755371 + ], + [ + "▁deeper", + -10.77914810180664 + ], + [ + "▁Britain", + -10.7792387008667 + ], + [ + "▁creativity", + -10.77945613861084 + ], + [ + "▁OK", + -10.779512405395508 + ], + [ + "she", + -10.77963924407959 + ], + [ + "▁visitor", + -10.779818534851074 + ], + [ + "▁findings", + -10.780329704284668 + ], + [ + "▁Private", + -10.780587196350098 + ], + [ + "win", + -10.781150817871094 + ], + [ + "▁lies", + -10.781591415405273 + ], + [ + "▁rapidly", + -10.781710624694824 + ], + [ + "▁seed", + -10.781837463378906 + ], + [ + "▁75", + -10.781845092773438 + ], + [ + "profit", + -10.781990051269531 + ], + [ + "▁rising", + -10.78287410736084 + ], + [ + "▁Republic", + -10.784064292907715 + ], + [ + "▁Standard", + -10.784346580505371 + ], + [ + "▁sensor", + -10.784401893615723 + ], + [ + "Con", + -10.78444766998291 + ], + [ + "▁AI", + -10.784991264343262 + ], + [ + "▁7.", + -10.785573959350586 + ], + [ + "▁relations", + -10.785962104797363 + ], + [ + "▁succeed", + -10.786223411560059 + ], + [ + "▁packaging", + -10.786340713500977 + ], + [ + "▁Kit", + -10.786808967590332 + ], + [ + "▁Gen", + -10.78726577758789 + ], + [ + "▁boot", + -10.787323951721191 + ], + [ + "▁WordPress", + -10.788311004638672 + ], + [ + "▁harder", + -10.788403511047363 + ], + [ + "▁Ge", + -10.788494110107422 + ], + [ + "▁backup", + -10.78860092163086 + ], + [ + "til", + -10.78862190246582 + ], + [ + "▁incident", + -10.788644790649414 + ], + [ + "▁formation", + -10.788703918457031 + ], + [ + "▁Joseph", + -10.788926124572754 + ], + [ + "▁Sand", + -10.789153099060059 + ], + [ + "▁strive", + -10.789249420166016 + ], + [ + "▁sole", + -10.789414405822754 + ], + [ + "▁decor", + -10.789998054504395 + ], + [ + "▁refund", + -10.7900972366333 + ], + [ + "▁illegal", + -10.790254592895508 + ], + [ + "▁Moreover", + -10.790291786193848 + ], + [ + "▁Color", + -10.790640830993652 + ], + [ + "▁ending", + -10.790801048278809 + ], + [ + "▁bunch", + -10.791211128234863 + ], + [ + "▁remained", + -10.791217803955078 + ], + [ + "▁illness", + -10.791257858276367 + ], + [ + "▁ceremony", + -10.791291236877441 + ], + [ + "▁evaluate", + -10.791301727294922 + ], + [ + "▁Max", + -10.791674613952637 + ], + [ + "MA", + -10.791747093200684 + ], + [ + "▁attending", + -10.792170524597168 + ], + [ + "▁acquire", + -10.792189598083496 + ], + [ + "▁Cook", + -10.792621612548828 + ], + [ + "▁Guys", + -10.792737007141113 + ], + [ + "▁responses", + -10.792768478393555 + ], + [ + "▁scores", + -10.793173789978027 + ], + [ + "▁massage", + -10.793641090393066 + ], + [ + "▁admit", + -10.793700218200684 + ], + [ + "▁Perfect", + -10.794149398803711 + ], + [ + "▁Simply", + -10.794346809387207 + ], + [ + "▁Computer", + -10.794508934020996 + ], + [ + "bed", + -10.795073509216309 + ], + [ + "GB", + -10.795111656188965 + ], + [ + "▁riding", + -10.795629501342773 + ], + [ + "▁API", + -10.796098709106445 + ], + [ + "ric", + -10.796144485473633 + ], + [ + "▁promotion", + -10.796165466308594 + ], + [ + "▁graphic", + -10.796335220336914 + ], + [ + "▁Policy", + -10.796772956848145 + ], + [ + "▁Large", + -10.796866416931152 + ], + [ + "rim", + -10.79689884185791 + ], + [ + "ches", + -10.79703426361084 + ], + [ + "▁FL", + -10.797192573547363 + ], + [ + "▁anymore", + -10.797212600708008 + ], + [ + "▁persons", + -10.797273635864258 + ], + [ + "▁statistics", + -10.797322273254395 + ], + [ + "▁clicking", + -10.79736042022705 + ], + [ + "▁bills", + -10.797649383544922 + ], + [ + "▁studied", + -10.79803466796875 + ], + [ + "▁Studio", + -10.798130989074707 + ], + [ + "▁phones", + -10.798394203186035 + ], + [ + "▁signature", + -10.798409461975098 + ], + [ + "▁column", + -10.798445701599121 + ], + [ + "▁Rights", + -10.798674583435059 + ], + [ + "▁Korea", + -10.798904418945312 + ], + [ + "▁iPad", + -10.798942565917969 + ], + [ + "gent", + -10.799017906188965 + ], + [ + "PS", + -10.799513816833496 + ], + [ + "▁Oct", + -10.799659729003906 + ], + [ + "foot", + -10.800047874450684 + ], + [ + "▁Square", + -10.800198554992676 + ], + [ + "▁compete", + -10.800267219543457 + ], + [ + "▁currency", + -10.800267219543457 + ], + [ + "▁Field", + -10.800281524658203 + ], + [ + "▁afraid", + -10.800426483154297 + ], + [ + "get", + -10.800454139709473 + ], + [ + "▁PS", + -10.801252365112305 + ], + [ + "97", + -10.801328659057617 + ], + [ + "▁Justice", + -10.801353454589844 + ], + [ + "▁Del", + -10.802010536193848 + ], + [ + "▁hanging", + -10.802420616149902 + ], + [ + "▁flour", + -10.80268383026123 + ], + [ + "eng", + -10.802925109863281 + ], + [ + "▁Fe", + -10.803132057189941 + ], + [ + "▁Working", + -10.803295135498047 + ], + [ + "▁transform", + -10.803546905517578 + ], + [ + "▁indoor", + -10.80363655090332 + ], + [ + "▁falling", + -10.80383586883545 + ], + [ + "▁accounting", + -10.803908348083496 + ], + [ + "▁SC", + -10.803963661193848 + ], + [ + "▁3-", + -10.804051399230957 + ], + [ + "▁Create", + -10.80431842803955 + ], + [ + "▁Sp", + -10.804619789123535 + ], + [ + "▁understood", + -10.804841995239258 + ], + [ + "▁brush", + -10.80484390258789 + ], + [ + "▁excess", + -10.804987907409668 + ], + [ + "▁des", + -10.805130004882812 + ], + [ + "▁Administration", + -10.805230140686035 + ], + [ + "▁Irish", + -10.805315971374512 + ], + [ + "ES", + -10.805985450744629 + ], + [ + "▁prime", + -10.806201934814453 + ], + [ + "▁inventory", + -10.806370735168457 + ], + [ + "63", + -10.80678939819336 + ], + [ + "▁initially", + -10.806930541992188 + ], + [ + "▁Pay", + -10.807029724121094 + ], + [ + "▁Everything", + -10.80708122253418 + ], + [ + "▁principal", + -10.807093620300293 + ], + [ + "▁workshops", + -10.807121276855469 + ], + [ + "RP", + -10.807135581970215 + ], + [ + "▁$4", + -10.807254791259766 + ], + [ + "▁Force", + -10.807379722595215 + ], + [ + "▁interact", + -10.807454109191895 + ], + [ + "▁conventional", + -10.807821273803711 + ], + [ + "▁Annual", + -10.808075904846191 + ], + [ + "53", + -10.80852222442627 + ], + [ + "ura", + -10.808696746826172 + ], + [ + "gle", + -10.808806419372559 + ], + [ + "mann", + -10.809062957763672 + ], + [ + "▁chronic", + -10.809612274169922 + ], + [ + "▁painted", + -10.809649467468262 + ], + [ + "▁exit", + -10.80970573425293 + ], + [ + "▁Secretary", + -10.809967994689941 + ], + [ + "▁Va", + -10.810093879699707 + ], + [ + "▁contest", + -10.810114860534668 + ], + [ + "▁diversity", + -10.8106689453125 + ], + [ + "29", + -10.810708999633789 + ], + [ + "▁Available", + -10.8108491897583 + ], + [ + "▁Wa", + -10.811066627502441 + ], + [ + "▁headed", + -10.811782836914062 + ], + [ + "▁hopes", + -10.811922073364258 + ], + [ + "96", + -10.81212043762207 + ], + [ + "▁Server", + -10.812125205993652 + ], + [ + "▁50%", + -10.812353134155273 + ], + [ + "▁Turn", + -10.812481880187988 + ], + [ + "▁stylish", + -10.81309700012207 + ], + [ + "▁Tor", + -10.8131103515625 + ], + [ + "▁conversion", + -10.813535690307617 + ], + [ + "▁Beautiful", + -10.813735008239746 + ], + [ + "▁acquired", + -10.813846588134766 + ], + [ + "▁MO", + -10.813894271850586 + ], + [ + "▁believes", + -10.814275741577148 + ], + [ + "▁laid", + -10.81484603881836 + ], + [ + "▁Vol", + -10.814875602722168 + ], + [ + "pan", + -10.814960479736328 + ], + [ + "▁substantial", + -10.815452575683594 + ], + [ + "▁Sal", + -10.815571784973145 + ], + [ + "▁subscription", + -10.815914154052734 + ], + [ + "▁Products", + -10.816350936889648 + ], + [ + "▁Fall", + -10.816384315490723 + ], + [ + "▁shirt", + -10.816496849060059 + ], + [ + "▁appointed", + -10.81655216217041 + ], + [ + "IP", + -10.816605567932129 + ], + [ + "▁Gallery", + -10.817095756530762 + ], + [ + "▁decent", + -10.817119598388672 + ], + [ + "▁neither", + -10.817692756652832 + ], + [ + "▁resolve", + -10.817824363708496 + ], + [ + "▁equally", + -10.817872047424316 + ], + [ + "▁decline", + -10.818807601928711 + ], + [ + "▁journal", + -10.818869590759277 + ], + [ + "je", + -10.818942070007324 + ], + [ + "67", + -10.81912612915039 + ], + [ + "▁gender", + -10.819281578063965 + ], + [ + "▁viewing", + -10.819345474243164 + ], + [ + "68", + -10.819368362426758 + ], + [ + "▁Net", + -10.819523811340332 + ], + [ + "▁reaching", + -10.819585800170898 + ], + [ + "▁continuous", + -10.819758415222168 + ], + [ + "▁gather", + -10.819798469543457 + ], + [ + "▁Agency", + -10.82010269165039 + ], + [ + "▁Cha", + -10.820237159729004 + ], + [ + "AD", + -10.820316314697266 + ], + [ + "TA", + -10.8204984664917 + ], + [ + "▁documentation", + -10.820600509643555 + ], + [ + "pin", + -10.82099723815918 + ], + [ + "▁twin", + -10.82103443145752 + ], + [ + "▁intellectual", + -10.821353912353516 + ], + [ + "how", + -10.821393966674805 + ], + [ + "▁Awards", + -10.821431159973145 + ], + [ + "▁Mount", + -10.821619033813477 + ], + [ + "▁Below", + -10.822113037109375 + ], + [ + "▁unknown", + -10.822124481201172 + ], + [ + "▁permit", + -10.822381973266602 + ], + [ + "05", + -10.82254695892334 + ], + [ + "54", + -10.823068618774414 + ], + [ + "▁engines", + -10.823128700256348 + ], + [ + "bri", + -10.823222160339355 + ], + [ + "▁stability", + -10.823235511779785 + ], + [ + "▁pit", + -10.823240280151367 + ], + [ + "▁guard", + -10.823328018188477 + ], + [ + "03", + -10.823341369628906 + ], + [ + "▁reveal", + -10.823359489440918 + ], + [ + "▁stations", + -10.823553085327148 + ], + [ + "▁heads", + -10.823626518249512 + ], + [ + "▁breaking", + -10.823749542236328 + ], + [ + "▁Er", + -10.823790550231934 + ], + [ + "▁roads", + -10.823810577392578 + ], + [ + "TO", + -10.824118614196777 + ], + [ + "▁2013.", + -10.824636459350586 + ], + [ + "▁Tax", + -10.824893951416016 + ], + [ + "home", + -10.825030326843262 + ], + [ + "▁invite", + -10.825124740600586 + ], + [ + "▁rapid", + -10.825549125671387 + ], + [ + "▁shade", + -10.825634002685547 + ], + [ + "▁55", + -10.826436996459961 + ], + [ + "wan", + -10.826760292053223 + ], + [ + "ON", + -10.82680606842041 + ], + [ + "BC", + -10.826923370361328 + ], + [ + "▁faced", + -10.82699203491211 + ], + [ + "▁adopted", + -10.82778549194336 + ], + [ + "▁Was", + -10.827861785888672 + ], + [ + "▁professor", + -10.828177452087402 + ], + [ + "▁angle", + -10.828211784362793 + ], + [ + "▁operated", + -10.828546524047852 + ], + [ + "▁wake", + -10.828560829162598 + ], + [ + "▁Age", + -10.828573226928711 + ], + [ + "▁Run", + -10.828691482543945 + ], + [ + "▁participating", + -10.828753471374512 + ], + [ + "▁portable", + -10.828944206237793 + ], + [ + "▁layers", + -10.829130172729492 + ], + [ + "▁mechanical", + -10.829873085021973 + ], + [ + "▁deeply", + -10.830082893371582 + ], + [ + "▁Village", + -10.830107688903809 + ], + [ + "▁tired", + -10.830141067504883 + ], + [ + "▁01", + -10.830297470092773 + ], + [ + "▁farmers", + -10.830304145812988 + ], + [ + "rry", + -10.830726623535156 + ], + [ + "▁Spa", + -10.83127212524414 + ], + [ + "▁tournament", + -10.831290245056152 + ], + [ + "▁Crusher", + -10.83205509185791 + ], + [ + "▁Number", + -10.832235336303711 + ], + [ + "▁imp", + -10.832494735717773 + ], + [ + "ا", + -10.83258056640625 + ], + [ + "▁Far", + -10.832856178283691 + ], + [ + "▁smartphone", + -10.832890510559082 + ], + [ + "▁floors", + -10.832906723022461 + ], + [ + "▁coat", + -10.833161354064941 + ], + [ + "▁institution", + -10.833450317382812 + ], + [ + "▁depression", + -10.833749771118164 + ], + [ + "▁emphasis", + -10.83378791809082 + ], + [ + "ual", + -10.833879470825195 + ], + [ + "▁advise", + -10.833974838256836 + ], + [ + "▁Vegas", + -10.834173202514648 + ], + [ + "▁objectives", + -10.834210395812988 + ], + [ + "▁advantages", + -10.834657669067383 + ], + [ + "ella", + -10.835053443908691 + ], + [ + "▁Creek", + -10.835126876831055 + ], + [ + "▁Ocean", + -10.835725784301758 + ], + [ + "qui", + -10.8358793258667 + ], + [ + "▁consequences", + -10.836007118225098 + ], + [ + "▁AS", + -10.836233139038086 + ], + [ + "▁ALL", + -10.836236000061035 + ], + [ + "▁rubber", + -10.836450576782227 + ], + [ + "▁Ga", + -10.836688995361328 + ], + [ + "NA", + -10.836902618408203 + ], + [ + "▁Las", + -10.837035179138184 + ], + [ + "▁plane", + -10.83743667602539 + ], + [ + "▁User", + -10.83763599395752 + ], + [ + "▁blow", + -10.83789348602295 + ], + [ + "▁Change", + -10.838151931762695 + ], + [ + "▁fabulous", + -10.838415145874023 + ], + [ + "▁productivity", + -10.838438034057617 + ], + [ + "▁relation", + -10.838464736938477 + ], + [ + "Le", + -10.838580131530762 + ], + [ + "▁experiment", + -10.838617324829102 + ], + [ + "▁claimed", + -10.83880615234375 + ], + [ + "oz", + -10.838834762573242 + ], + [ + "▁assembly", + -10.838910102844238 + ], + [ + "▁Avenue", + -10.839012145996094 + ], + [ + "cast", + -10.83914566040039 + ], + [ + "▁tooth", + -10.839241981506348 + ], + [ + "cip", + -10.839652061462402 + ], + [ + "▁su", + -10.83967399597168 + ], + [ + "▁childhood", + -10.839805603027344 + ], + [ + "[", + -10.839818000793457 + ], + [ + "▁insights", + -10.839890480041504 + ], + [ + "▁cm", + -10.840215682983398 + ], + [ + "▁Ram", + -10.840307235717773 + ], + [ + "▁wondering", + -10.840344429016113 + ], + [ + "fish", + -10.840483665466309 + ], + [ + "▁Senate", + -10.840679168701172 + ], + [ + "▁inspection", + -10.84074878692627 + ], + [ + "▁returning", + -10.841156959533691 + ], + [ + "▁sought", + -10.84125804901123 + ], + [ + "▁indicated", + -10.841280937194824 + ], + [ + "▁Ask", + -10.841511726379395 + ], + [ + "▁authentic", + -10.841754913330078 + ], + [ + "▁ba", + -10.84177017211914 + ], + [ + "▁promoting", + -10.84216022491455 + ], + [ + "▁climb", + -10.842167854309082 + ], + [ + "card", + -10.842265129089355 + ], + [ + "▁Sales", + -10.84242057800293 + ], + [ + "gu", + -10.84245491027832 + ], + [ + "▁arrange", + -10.842485427856445 + ], + [ + "▁ban", + -10.842524528503418 + ], + [ + "▁Ve", + -10.842668533325195 + ], + [ + "▁attitude", + -10.84280776977539 + ], + [ + "▁emails", + -10.843233108520508 + ], + [ + "▁pizza", + -10.843306541442871 + ], + [ + "▁artwork", + -10.84335994720459 + ], + [ + "▁suite", + -10.843550682067871 + ], + [ + "▁Toronto", + -10.843839645385742 + ], + [ + "▁Eastern", + -10.844093322753906 + ], + [ + "nce", + -10.844328880310059 + ], + [ + "▁lists", + -10.844378471374512 + ], + [ + "▁quotes", + -10.844683647155762 + ], + [ + "▁exterior", + -10.844907760620117 + ], + [ + "rid", + -10.845342636108398 + ], + [ + "07", + -10.845616340637207 + ], + [ + "▁Shi", + -10.845698356628418 + ], + [ + "2.", + -10.846207618713379 + ], + [ + "▁Band", + -10.846587181091309 + ], + [ + "▁gym", + -10.847070693969727 + ], + [ + "-2", + -10.84707260131836 + ], + [ + "▁decrease", + -10.847155570983887 + ], + [ + "ants", + -10.847604751586914 + ], + [ + "▁reception", + -10.847664833068848 + ], + [ + "▁latter", + -10.84771728515625 + ], + [ + "▁trusted", + -10.847825050354004 + ], + [ + "▁grateful", + -10.847929000854492 + ], + [ + "▁flights", + -10.847944259643555 + ], + [ + "▁investments", + -10.848337173461914 + ], + [ + "▁wallpaper", + -10.84836483001709 + ], + [ + "▁safely", + -10.848922729492188 + ], + [ + "▁1998", + -10.848960876464844 + ], + [ + "▁initiatives", + -10.849061012268066 + ], + [ + "▁bedrooms", + -10.84912395477295 + ], + [ + "▁bid", + -10.849174499511719 + ], + [ + "▁southern", + -10.849313735961914 + ], + [ + "▁computers", + -10.84970760345459 + ], + [ + "▁organisations", + -10.849721908569336 + ], + [ + "▁medication", + -10.850095748901367 + ], + [ + "▁Action", + -10.850152015686035 + ], + [ + "relating", + -10.850410461425781 + ], + [ + "qua", + -10.850447654724121 + ], + [ + "▁golden", + -10.850547790527344 + ], + [ + "▁encounter", + -10.850570678710938 + ], + [ + "▁sink", + -10.85070514678955 + ], + [ + "▁segment", + -10.851045608520508 + ], + [ + "date", + -10.85135269165039 + ], + [ + "08", + -10.851576805114746 + ], + [ + "▁tele", + -10.851710319519043 + ], + [ + "▁DNA", + -10.851901054382324 + ], + [ + "▁philosophy", + -10.852059364318848 + ], + [ + "ban", + -10.852499961853027 + ], + [ + "▁und", + -10.852840423583984 + ], + [ + "uch", + -10.85300064086914 + ], + [ + "▁religion", + -10.853530883789062 + ], + [ + "▁hide", + -10.853538513183594 + ], + [ + "▁temperatures", + -10.853540420532227 + ], + [ + "▁AT", + -10.853874206542969 + ], + [ + "▁hiring", + -10.853934288024902 + ], + [ + "zy", + -10.853958129882812 + ], + [ + "▁foam", + -10.853961944580078 + ], + [ + "▁math", + -10.854011535644531 + ], + [ + "▁Student", + -10.854043006896973 + ], + [ + "▁restore", + -10.854052543640137 + ], + [ + "FA", + -10.854535102844238 + ], + [ + "▁37", + -10.85467529296875 + ], + [ + "▁1000", + -10.854992866516113 + ], + [ + "▁belt", + -10.85500717163086 + ], + [ + "▁Tree", + -10.855306625366211 + ], + [ + "some", + -10.855329513549805 + ], + [ + "▁NC", + -10.855438232421875 + ], + [ + "▁meets", + -10.855473518371582 + ], + [ + "kan", + -10.85580825805664 + ], + [ + "▁Ku", + -10.855881690979004 + ], + [ + "▁min", + -10.855947494506836 + ], + [ + "▁Forest", + -10.856284141540527 + ], + [ + "▁injured", + -10.856694221496582 + ], + [ + "▁buyer", + -10.856762886047363 + ], + [ + "▁tackle", + -10.856902122497559 + ], + [ + "▁cart", + -10.857037544250488 + ], + [ + "▁supplier", + -10.85715389251709 + ], + [ + "▁Ya", + -10.857403755187988 + ], + [ + "ich", + -10.857613563537598 + ], + [ + "▁bond", + -10.857616424560547 + ], + [ + "part", + -10.857746124267578 + ], + [ + "▁shut", + -10.857904434204102 + ], + [ + "die", + -10.858047485351562 + ], + [ + "▁themes", + -10.85818099975586 + ], + [ + "▁Mid", + -10.859910011291504 + ], + [ + "▁Val", + -10.860023498535156 + ], + [ + "▁(1)", + -10.860379219055176 + ], + [ + "▁Kim", + -10.860530853271484 + ], + [ + "▁employ", + -10.860631942749023 + ], + [ + "▁watched", + -10.860769271850586 + ], + [ + "▁composition", + -10.861294746398926 + ], + [ + "ters", + -10.86137866973877 + ], + [ + "▁2016,", + -10.862083435058594 + ], + [ + "▁Ann", + -10.862133026123047 + ], + [ + "▁reform", + -10.862326622009277 + ], + [ + "▁servers", + -10.862504959106445 + ], + [ + "▁mold", + -10.862714767456055 + ], + [ + "▁Mother", + -10.862733840942383 + ], + [ + "▁contributions", + -10.86313533782959 + ], + [ + "▁trash", + -10.86317253112793 + ], + [ + "▁exists", + -10.863239288330078 + ], + [ + "▁Samsung", + -10.864063262939453 + ], + [ + "▁Follow", + -10.864115715026855 + ], + [ + "SU", + -10.864455223083496 + ], + [ + "ju", + -10.864545822143555 + ], + [ + "aka", + -10.86478328704834 + ], + [ + "▁Trade", + -10.864943504333496 + ], + [ + "▁Ken", + -10.86515998840332 + ], + [ + "▁moral", + -10.865406036376953 + ], + [ + "rich", + -10.865543365478516 + ], + [ + "▁corn", + -10.865555763244629 + ], + [ + "▁ownership", + -10.865946769714355 + ], + [ + "▁argue", + -10.866259574890137 + ], + [ + "▁compact", + -10.86632251739502 + ], + [ + "▁importantly", + -10.86715030670166 + ], + [ + "59", + -10.867205619812012 + ], + [ + "▁tube", + -10.867321014404297 + ], + [ + "ving", + -10.867352485656738 + ], + [ + "▁Officer", + -10.867467880249023 + ], + [ + "▁genuine", + -10.8674955368042 + ], + [ + "▁holes", + -10.868071556091309 + ], + [ + "▁forth", + -10.86837387084961 + ], + [ + "▁thousand", + -10.868489265441895 + ], + [ + "▁fence", + -10.868494987487793 + ], + [ + "▁involve", + -10.868701934814453 + ], + [ + "▁abilities", + -10.868742942810059 + ], + [ + "▁Feb", + -10.86876392364502 + ], + [ + "▁warning", + -10.868789672851562 + ], + [ + "▁loose", + -10.869203567504883 + ], + [ + "66", + -10.86921215057373 + ], + [ + "▁Description", + -10.869404792785645 + ], + [ + "▁belief", + -10.869427680969238 + ], + [ + "aries", + -10.86943531036377 + ], + [ + "▁Min", + -10.869649887084961 + ], + [ + "▁languages", + -10.869688987731934 + ], + [ + "lay", + -10.86978816986084 + ], + [ + "▁circle", + -10.869912147521973 + ], + [ + "▁developer", + -10.869955062866211 + ], + [ + "▁SP", + -10.870012283325195 + ], + [ + "▁Golden", + -10.870110511779785 + ], + [ + "▁mechanism", + -10.870380401611328 + ], + [ + "▁Louis", + -10.870427131652832 + ], + [ + "▁raising", + -10.871038436889648 + ], + [ + "72", + -10.871094703674316 + ], + [ + "mark", + -10.871118545532227 + ], + [ + "▁38", + -10.871230125427246 + ], + [ + "▁employed", + -10.87126636505127 + ], + [ + "▁Wild", + -10.871642112731934 + ], + [ + "▁mistake", + -10.871657371520996 + ], + [ + "▁unexpected", + -10.872209548950195 + ], + [ + "▁applies", + -10.872295379638672 + ], + [ + "▁survive", + -10.873165130615234 + ], + [ + "▁Bell", + -10.873176574707031 + ], + [ + "▁consistently", + -10.873641014099121 + ], + [ + "▁Kids", + -10.874107360839844 + ], + [ + "▁wanting", + -10.874302864074707 + ], + [ + "▁prescription", + -10.874553680419922 + ], + [ + "▁2-", + -10.874698638916016 + ], + [ + "mate", + -10.875137329101562 + ], + [ + "▁lets", + -10.87523078918457 + ], + [ + "▁alarm", + -10.87574577331543 + ], + [ + "amongst", + -10.875747680664062 + ], + [ + "▁pitch", + -10.875791549682617 + ], + [ + "▁jewelry", + -10.875825881958008 + ], + [ + "▁soup", + -10.875882148742676 + ], + [ + "▁exception", + -10.876036643981934 + ], + [ + "▁fault", + -10.876070022583008 + ], + [ + "▁networking", + -10.876561164855957 + ], + [ + "▁behaviour", + -10.876604080200195 + ], + [ + "type", + -10.876688957214355 + ], + [ + "▁contracts", + -10.87678337097168 + ], + [ + "▁distributed", + -10.876823425292969 + ], + [ + "52", + -10.876973152160645 + ], + [ + "▁emerging", + -10.877254486083984 + ], + [ + "▁Arizona", + -10.877537727355957 + ], + [ + "▁unusual", + -10.877986907958984 + ], + [ + "▁transformation", + -10.87813663482666 + ], + [ + "▁lab", + -10.878137588500977 + ], + [ + "▁racing", + -10.878149032592773 + ], + [ + "▁Sydney", + -10.878181457519531 + ], + [ + "▁2004", + -10.878257751464844 + ], + [ + "▁respective", + -10.878262519836426 + ], + [ + "dale", + -10.878294944763184 + ], + [ + "▁worship", + -10.878388404846191 + ], + [ + "▁MD", + -10.878555297851562 + ], + [ + "▁anniversary", + -10.878900527954102 + ], + [ + "▁infection", + -10.879262924194336 + ], + [ + "▁bold", + -10.879562377929688 + ], + [ + "▁pilot", + -10.879655838012695 + ], + [ + "scale", + -10.879708290100098 + ], + [ + "dal", + -10.880136489868164 + ], + [ + "Among", + -10.88019847869873 + ], + [ + "▁reserve", + -10.880607604980469 + ], + [ + "▁Share", + -10.881546974182129 + ], + [ + "▁emotions", + -10.882206916809082 + ], + [ + "▁maps", + -10.882227897644043 + ], + [ + "▁merely", + -10.882227897644043 + ], + [ + "▁hall", + -10.88239860534668 + ], + [ + "2,", + -10.882549285888672 + ], + [ + "▁showcase", + -10.882810592651367 + ], + [ + "▁resident", + -10.882903099060059 + ], + [ + "▁pipe", + -10.882984161376953 + ], + [ + "▁ranging", + -10.883101463317871 + ], + [ + "▁evil", + -10.883357048034668 + ], + [ + "▁prison", + -10.883429527282715 + ], + [ + "▁flag", + -10.883475303649902 + ], + [ + "▁Content", + -10.883644104003906 + ], + [ + "▁coloring", + -10.88366985321045 + ], + [ + "▁instrument", + -10.883671760559082 + ], + [ + "und", + -10.883931159973145 + ], + [ + "▁abroad", + -10.883977890014648 + ], + [ + "wing", + -10.884079933166504 + ], + [ + "MC", + -10.884130477905273 + ], + [ + "▁2.0", + -10.884150505065918 + ], + [ + "▁faces", + -10.884291648864746 + ], + [ + "▁Level", + -10.884342193603516 + ], + [ + "▁Tech", + -10.884389877319336 + ], + [ + "▁talented", + -10.884404182434082 + ], + [ + "▁cameras", + -10.884455680847168 + ], + [ + "ome", + -10.884456634521484 + ], + [ + "▁coaching", + -10.884684562683105 + ], + [ + "▁enforcement", + -10.884723663330078 + ], + [ + "▁pursue", + -10.884838104248047 + ], + [ + "▁Ri", + -10.884908676147461 + ], + [ + "tim", + -10.885102272033691 + ], + [ + "▁reserved", + -10.88513469696045 + ], + [ + "cho", + -10.885228157043457 + ], + [ + "▁plot", + -10.885274887084961 + ], + [ + "▁Fast", + -10.885726928710938 + ], + [ + "▁shoulder", + -10.88573169708252 + ], + [ + "▁comprise", + -10.88595199584961 + ], + [ + "▁Within", + -10.886063575744629 + ], + [ + "▁Illinois", + -10.886180877685547 + ], + [ + "rick", + -10.886787414550781 + ], + [ + "▁recall", + -10.886929512023926 + ], + [ + "▁investing", + -10.887042045593262 + ], + [ + "▁grey", + -10.887048721313477 + ], + [ + "▁drain", + -10.887598991394043 + ], + [ + "▁Scotland", + -10.887641906738281 + ], + [ + "▁possibilities", + -10.88768482208252 + ], + [ + "1,", + -10.888120651245117 + ], + [ + "▁Ryan", + -10.888120651245117 + ], + [ + "▁gene", + -10.888176918029785 + ], + [ + "service", + -10.888235092163086 + ], + [ + "▁Down", + -10.888337135314941 + ], + [ + "try", + -10.888519287109375 + ], + [ + "▁Season", + -10.888888359069824 + ], + [ + "▁mistakes", + -10.8892183303833 + ], + [ + "My", + -10.889278411865234 + ], + [ + "cul", + -10.889484405517578 + ], + [ + "▁mountains", + -10.889735221862793 + ], + [ + "▁nursing", + -10.889755249023438 + ], + [ + "▁sequence", + -10.890533447265625 + ], + [ + "▁Em", + -10.890813827514648 + ], + [ + "▁specialists", + -10.891035079956055 + ], + [ + "▁employers", + -10.89111042022705 + ], + [ + "▁65", + -10.89118480682373 + ], + [ + "▁equity", + -10.891255378723145 + ], + [ + "▁impression", + -10.8914794921875 + ], + [ + "▁weapons", + -10.891596794128418 + ], + [ + "▁120", + -10.891634941101074 + ], + [ + "gra", + -10.891850471496582 + ], + [ + "▁Express", + -10.891968727111816 + ], + [ + "▁distinct", + -10.892048835754395 + ], + [ + "ä", + -10.892107963562012 + ], + [ + "▁diagram", + -10.893017768859863 + ], + [ + "▁1980", + -10.893328666687012 + ], + [ + "▁adapt", + -10.89344596862793 + ], + [ + "▁Ministry", + -10.893624305725098 + ], + [ + "IS", + -10.893818855285645 + ], + [ + "high", + -10.894142150878906 + ], + [ + "mel", + -10.89417552947998 + ], + [ + "▁MI", + -10.894258499145508 + ], + [ + "▁spectacular", + -10.894441604614258 + ], + [ + "▁meaningful", + -10.894697189331055 + ], + [ + "test", + -10.894972801208496 + ], + [ + "▁targeted", + -10.895049095153809 + ], + [ + "▁displays", + -10.896151542663574 + ], + [ + "▁tons", + -10.896320343017578 + ], + [ + "▁operational", + -10.8963623046875 + ], + [ + "▁directions", + -10.896467208862305 + ], + [ + "▁recover", + -10.896690368652344 + ], + [ + "▁exceed", + -10.896750450134277 + ], + [ + "▁burn", + -10.896759033203125 + ], + [ + "▁wheels", + -10.897015571594238 + ], + [ + "-3", + -10.897221565246582 + ], + [ + "300", + -10.89737319946289 + ], + [ + "▁slip", + -10.897655487060547 + ], + [ + "▁spare", + -10.897675514221191 + ], + [ + "▁Nor", + -10.898764610290527 + ], + [ + "▁folder", + -10.8988618850708 + ], + [ + "▁instruction", + -10.899038314819336 + ], + [ + "▁matching", + -10.899140357971191 + ], + [ + "▁olive", + -10.899380683898926 + ], + [ + "▁SA", + -10.899469375610352 + ], + [ + "▁Meanwhile", + -10.900039672851562 + ], + [ + "▁coal", + -10.900433540344238 + ], + [ + "▁directory", + -10.90074634552002 + ], + [ + "There", + -10.90119457244873 + ], + [ + "▁drama", + -10.901435852050781 + ], + [ + "DC", + -10.901803970336914 + ], + [ + "▁regulatory", + -10.902481079101562 + ], + [ + "▁elected", + -10.902573585510254 + ], + [ + "▁Saint", + -10.902596473693848 + ], + [ + "▁2012.", + -10.90286922454834 + ], + [ + "▁contractors", + -10.903039932250977 + ], + [ + "▁10%", + -10.903046607971191 + ], + [ + "▁sorry", + -10.903067588806152 + ], + [ + "▁nose", + -10.903303146362305 + ], + [ + "▁charity", + -10.903572082519531 + ], + [ + "▁environments", + -10.903728485107422 + ], + [ + "▁Glass", + -10.90373420715332 + ], + [ + "▁hits", + -10.905004501342773 + ], + [ + "▁globe", + -10.905349731445312 + ], + [ + "▁extract", + -10.905364036560059 + ], + [ + "▁Iran", + -10.906109809875488 + ], + [ + "▁Mass", + -10.906134605407715 + ], + [ + "▁combat", + -10.906166076660156 + ], + [ + "▁banking", + -10.906326293945312 + ], + [ + "▁Rob", + -10.906513214111328 + ], + [ + "▁measured", + -10.906859397888184 + ], + [ + "▁essentially", + -10.907090187072754 + ], + [ + "▁fluid", + -10.907402038574219 + ], + [ + "care", + -10.908512115478516 + ], + [ + "▁copyright", + -10.908692359924316 + ], + [ + "▁specialize", + -10.908773422241211 + ], + [ + "▁stayed", + -10.908843040466309 + ], + [ + "▁Fox", + -10.908963203430176 + ], + [ + "▁trick", + -10.909035682678223 + ], + [ + "▁Henry", + -10.909486770629883 + ], + [ + "▁differ", + -10.909625053405762 + ], + [ + "▁mount", + -10.909849166870117 + ], + [ + "▁overcome", + -10.910065650939941 + ], + [ + "LA", + -10.910115242004395 + ], + [ + "▁compatible", + -10.910587310791016 + ], + [ + "▁expanded", + -10.910663604736328 + ], + [ + "▁founder", + -10.91085433959961 + ], + [ + "mor", + -10.910988807678223 + ], + [ + "▁Stock", + -10.911320686340332 + ], + [ + "▁Bal", + -10.911994934082031 + ], + [ + "▁lie", + -10.912109375 + ], + [ + "▁highlights", + -10.912452697753906 + ], + [ + "▁Chapter", + -10.912553787231445 + ], + [ + "▁templates", + -10.912785530090332 + ], + [ + "▁flu", + -10.91339111328125 + ], + [ + "▁conclusion", + -10.91340160369873 + ], + [ + "▁Grant", + -10.913413047790527 + ], + [ + "mus", + -10.913469314575195 + ], + [ + "▁curriculum", + -10.913755416870117 + ], + [ + "84", + -10.913857460021973 + ], + [ + "0%", + -10.914054870605469 + ], + [ + "▁Civil", + -10.914203643798828 + ], + [ + "▁cheaper", + -10.914512634277344 + ], + [ + "▁western", + -10.914813041687012 + ], + [ + "▁tail", + -10.914838790893555 + ], + [ + "▁1/2", + -10.914907455444336 + ], + [ + "▁copies", + -10.915061950683594 + ], + [ + "▁tri", + -10.915125846862793 + ], + [ + "▁Hong", + -10.915412902832031 + ], + [ + "▁twist", + -10.915443420410156 + ], + [ + "ika", + -10.915631294250488 + ], + [ + "▁losses", + -10.916180610656738 + ], + [ + "▁Put", + -10.916230201721191 + ], + [ + "▁patch", + -10.916509628295898 + ], + [ + "▁Currently", + -10.916542053222656 + ], + [ + "▁39", + -10.916664123535156 + ], + [ + "▁Mini", + -10.916805267333984 + ], + [ + "▁fiber", + -10.916933059692383 + ], + [ + "▁Taylor", + -10.916946411132812 + ], + [ + "▁diabetes", + -10.917183876037598 + ], + [ + "▁intense", + -10.91771411895752 + ], + [ + "▁Kong", + -10.917800903320312 + ], + [ + "▁constructed", + -10.917915344238281 + ], + [ + "▁suffered", + -10.918063163757324 + ], + [ + "rian", + -10.91806697845459 + ], + [ + "▁enhanced", + -10.918498039245605 + ], + [ + "▁reply", + -10.918649673461914 + ], + [ + "▁Protection", + -10.919045448303223 + ], + [ + "world", + -10.919116973876953 + ], + [ + "▁CT", + -10.919225692749023 + ], + [ + "▁Short", + -10.919438362121582 + ], + [ + "▁designing", + -10.91994857788086 + ], + [ + "▁acquisition", + -10.920084953308105 + ], + [ + "▁expense", + -10.92027473449707 + ], + [ + "▁tension", + -10.920293807983398 + ], + [ + "-8", + -10.92033576965332 + ], + [ + "▁suddenly", + -10.920429229736328 + ], + [ + "▁solo", + -10.920646667480469 + ], + [ + "▁editing", + -10.920743942260742 + ], + [ + "▁screening", + -10.920858383178711 + ], + [ + "▁instruments", + -10.920862197875977 + ], + [ + "▁analyze", + -10.920912742614746 + ], + [ + "▁Dream", + -10.920978546142578 + ], + [ + "▁Solutions", + -10.921004295349121 + ], + [ + "bal", + -10.921233177185059 + ], + [ + "▁Jackson", + -10.92133903503418 + ], + [ + "▁situated", + -10.921539306640625 + ], + [ + "▁Winter", + -10.921866416931152 + ], + [ + "month", + -10.92241382598877 + ], + [ + "▁PR", + -10.922439575195312 + ], + [ + "aid", + -10.922752380371094 + ], + [ + "▁boards", + -10.922891616821289 + ], + [ + "▁Dar", + -10.92304515838623 + ], + [ + "▁2003", + -10.923298835754395 + ], + [ + "ple", + -10.923307418823242 + ], + [ + "▁Houston", + -10.923336029052734 + ], + [ + "▁cooked", + -10.92357349395752 + ], + [ + "400", + -10.923583030700684 + ], + [ + "▁handy", + -10.923640251159668 + ], + [ + "▁lemon", + -10.923765182495117 + ], + [ + "▁representation", + -10.923951148986816 + ], + [ + "▁representatives", + -10.92398738861084 + ], + [ + "▁Hard", + -10.924097061157227 + ], + [ + "power", + -10.92413330078125 + ], + [ + "▁satellite", + -10.924155235290527 + ], + [ + "from", + -10.924208641052246 + ], + [ + "▁Adam", + -10.924298286437988 + ], + [ + "▁Kar", + -10.924356460571289 + ], + [ + "▁rough", + -10.9245023727417 + ], + [ + "▁nights", + -10.925082206726074 + ], + [ + "onic", + -10.925480842590332 + ], + [ + "▁casual", + -10.925482749938965 + ], + [ + "▁northern", + -10.925524711608887 + ], + [ + "▁muscles", + -10.925878524780273 + ], + [ + "RC", + -10.92602825164795 + ], + [ + "OL", + -10.926169395446777 + ], + [ + "▁bug", + -10.926393508911133 + ], + [ + "▁coupon", + -10.92732048034668 + ], + [ + "▁flood", + -10.927510261535645 + ], + [ + "▁Blog", + -10.927532196044922 + ], + [ + "▁frequent", + -10.9276123046875 + ], + [ + "▁rarely", + -10.927793502807617 + ], + [ + "▁broke", + -10.927823066711426 + ], + [ + "92", + -10.929081916809082 + ], + [ + "▁Cool", + -10.929646492004395 + ], + [ + "▁Oak", + -10.929649353027344 + ], + [ + "▁demo", + -10.929927825927734 + ], + [ + "▁accomplish", + -10.930516242980957 + ], + [ + "▁salad", + -10.93087387084961 + ], + [ + "▁sentence", + -10.930948257446289 + ], + [ + "▁universities", + -10.931242942810059 + ], + [ + "▁letting", + -10.93130111694336 + ], + [ + "▁Stephen", + -10.93148422241211 + ], + [ + "▁murder", + -10.931822776794434 + ], + [ + "▁Columbia", + -10.931825637817383 + ], + [ + "▁rolling", + -10.932143211364746 + ], + [ + "▁prompt", + -10.932147026062012 + ], + [ + "▁Sound", + -10.932430267333984 + ], + [ + "▁principle", + -10.932607650756836 + ], + [ + "▁2015,", + -10.932634353637695 + ], + [ + "▁modified", + -10.932962417602539 + ], + [ + "ction", + -10.93331241607666 + ], + [ + "▁financing", + -10.933869361877441 + ], + [ + "91", + -10.934417724609375 + ], + [ + "▁Classic", + -10.934731483459473 + ], + [ + "▁overnight", + -10.934844017028809 + ], + [ + "▁locally", + -10.934905052185059 + ], + [ + "▁symbol", + -10.935248374938965 + ], + [ + "▁iOS", + -10.935279846191406 + ], + [ + "▁parameters", + -10.935530662536621 + ], + [ + "▁experiencing", + -10.935730934143066 + ], + [ + "▁Bre", + -10.935884475708008 + ], + [ + "▁Exchange", + -10.936429023742676 + ], + [ + "▁stood", + -10.936594009399414 + ], + [ + "77", + -10.93667221069336 + ], + [ + "▁shock", + -10.937019348144531 + ], + [ + "▁beautifully", + -10.93713092803955 + ], + [ + "▁Forum", + -10.937313079833984 + ], + [ + "▁struggling", + -10.937334060668945 + ], + [ + "▁strike", + -10.937417030334473 + ], + [ + "▁quantity", + -10.937824249267578 + ], + [ + "▁artificial", + -10.93791389465332 + ], + [ + "▁wiring", + -10.938129425048828 + ], + [ + "▁Za", + -10.938264846801758 + ], + [ + "ache", + -10.938486099243164 + ], + [ + "▁printer", + -10.938544273376465 + ], + [ + "▁Course", + -10.93862533569336 + ], + [ + "▁Member", + -10.938667297363281 + ], + [ + "cut", + -10.938830375671387 + ], + [ + "87", + -10.939069747924805 + ], + [ + "▁trigger", + -10.939152717590332 + ], + [ + "▁64", + -10.939995765686035 + ], + [ + "minute", + -10.940237998962402 + ], + [ + "â", + -10.940446853637695 + ], + [ + "▁keyboard", + -10.940500259399414 + ], + [ + "late", + -10.940571784973145 + ], + [ + "▁grace", + -10.940613746643066 + ], + [ + "code", + -10.940792083740234 + ], + [ + "game", + -10.940834999084473 + ], + [ + "▁fifth", + -10.940921783447266 + ], + [ + "▁newspaper", + -10.940937995910645 + ], + [ + "▁divided", + -10.94129753112793 + ], + [ + "▁spacious", + -10.941555976867676 + ], + [ + "And", + -10.942052841186523 + ], + [ + "▁removing", + -10.94235897064209 + ], + [ + "▁Latin", + -10.942641258239746 + ], + [ + "▁Ag", + -10.94283390045166 + ], + [ + "▁officially", + -10.942849159240723 + ], + [ + "▁Brian", + -10.943303108215332 + ], + [ + "▁Chair", + -10.943333625793457 + ], + [ + "▁yield", + -10.943343162536621 + ], + [ + "▁Ray", + -10.94339656829834 + ], + [ + "even", + -10.943527221679688 + ], + [ + "▁Cut", + -10.94392204284668 + ], + [ + "▁uniform", + -10.943927764892578 + ], + [ + "▁del", + -10.94394588470459 + ], + [ + "▁efficiently", + -10.944042205810547 + ], + [ + "▁generic", + -10.944258689880371 + ], + [ + "▁moon", + -10.944350242614746 + ], + [ + "1.", + -10.944493293762207 + ], + [ + "▁tub", + -10.944580078125 + ], + [ + "▁mattress", + -10.944620132446289 + ], + [ + "▁Theatre", + -10.944732666015625 + ], + [ + "▁Boy", + -10.945367813110352 + ], + [ + "▁surely", + -10.9453763961792 + ], + [ + "LE", + -10.945435523986816 + ], + [ + "▁Never", + -10.9454984664917 + ], + [ + "▁hike", + -10.945589065551758 + ], + [ + "▁specialized", + -10.945920944213867 + ], + [ + "▁Paper", + -10.945945739746094 + ], + [ + "DP", + -10.946219444274902 + ], + [ + "▁narrative", + -10.9462890625 + ], + [ + "▁addressed", + -10.946629524230957 + ], + [ + "dic", + -10.94664478302002 + ], + [ + "▁visits", + -10.946793556213379 + ], + [ + "▁Pakistan", + -10.946882247924805 + ], + [ + "▁Mrs", + -10.946898460388184 + ], + [ + "logy", + -10.946914672851562 + ], + [ + "▁Pack", + -10.947285652160645 + ], + [ + "▁Figure", + -10.947296142578125 + ], + [ + "iness", + -10.947342872619629 + ], + [ + "ied", + -10.947630882263184 + ], + [ + "▁scan", + -10.948278427124023 + ], + [ + "▁genetic", + -10.948841094970703 + ], + [ + "▁finishing", + -10.94930362701416 + ], + [ + "▁instantly", + -10.949345588684082 + ], + [ + "▁fewer", + -10.949370384216309 + ], + [ + "▁placement", + -10.949508666992188 + ], + [ + "??", + -10.949649810791016 + ], + [ + "▁connecting", + -10.949764251708984 + ], + [ + "▁actively", + -10.949800491333008 + ], + [ + "▁odd", + -10.949870109558105 + ], + [ + "▁Ash", + -10.95007610321045 + ], + [ + "mal", + -10.95019817352295 + ], + [ + "▁boast", + -10.95042610168457 + ], + [ + "▁Nick", + -10.950467109680176 + ], + [ + "▁campaigns", + -10.95064926147461 + ], + [ + "▁Size", + -10.950838088989258 + ], + [ + "▁tablet", + -10.951062202453613 + ], + [ + "▁appliances", + -10.951203346252441 + ], + [ + "TV", + -10.951268196105957 + ], + [ + "▁processed", + -10.951271057128906 + ], + [ + "▁250", + -10.95130443572998 + ], + [ + "▁proceed", + -10.951783180236816 + ], + [ + "RE", + -10.951805114746094 + ], + [ + "▁supplied", + -10.952361106872559 + ], + [ + "Retrieved", + -10.952390670776367 + ], + [ + "▁gentle", + -10.95283317565918 + ], + [ + "▁lo", + -10.952983856201172 + ], + [ + "▁customized", + -10.953039169311523 + ], + [ + "▁difficulty", + -10.953086853027344 + ], + [ + "▁scenes", + -10.953254699707031 + ], + [ + "▁heavily", + -10.953263282775879 + ], + [ + "▁inspire", + -10.953659057617188 + ], + [ + "ump", + -10.953768730163574 + ], + [ + "▁gotten", + -10.953779220581055 + ], + [ + "▁wise", + -10.953875541687012 + ], + [ + "‘", + -10.954115867614746 + ], + [ + "▁variable", + -10.954623222351074 + ], + [ + "▁swing", + -10.95471477508545 + ], + [ + "▁Alex", + -10.95494556427002 + ], + [ + "▁Bra", + -10.954970359802246 + ], + [ + "▁auction", + -10.95506763458252 + ], + [ + "▁sheets", + -10.955072402954102 + ], + [ + "▁minister", + -10.955135345458984 + ], + [ + "▁thoroughly", + -10.955148696899414 + ], + [ + "▁Miami", + -10.955381393432617 + ], + [ + "thi", + -10.955487251281738 + ], + [ + "▁Nu", + -10.956314086914062 + ], + [ + "▁vertical", + -10.956339836120605 + ], + [ + "▁cooperation", + -10.956623077392578 + ], + [ + "▁diagnosis", + -10.956771850585938 + ], + [ + "▁arrangements", + -10.957429885864258 + ], + [ + "▁chest", + -10.957542419433594 + ], + [ + "74", + -10.957566261291504 + ], + [ + "matic", + -10.95846939086914 + ], + [ + "▁periods", + -10.958494186401367 + ], + [ + "▁mouse", + -10.958612442016602 + ], + [ + "▁ministry", + -10.959037780761719 + ], + [ + "▁':", + -10.95925235748291 + ], + [ + "▁impressed", + -10.959260940551758 + ], + [ + "▁roots", + -10.959270477294922 + ], + [ + "▁wider", + -10.959348678588867 + ], + [ + "▁invention", + -10.959444046020508 + ], + [ + "▁weak", + -10.959548950195312 + ], + [ + "62", + -10.960036277770996 + ], + [ + "▁opinions", + -10.960078239440918 + ], + [ + "▁relaxing", + -10.960100173950195 + ], + [ + "HS", + -10.960175514221191 + ], + [ + "▁settlement", + -10.960259437561035 + ], + [ + "IR", + -10.960363388061523 + ], + [ + "▁Mu", + -10.960554122924805 + ], + [ + "▁Ch", + -10.960565567016602 + ], + [ + "▁apparently", + -10.960688591003418 + ], + [ + "▁cuts", + -10.96108341217041 + ], + [ + "88", + -10.961309432983398 + ], + [ + "▁falls", + -10.961564064025879 + ], + [ + "▁Republican", + -10.961759567260742 + ], + [ + "IC", + -10.962225914001465 + ], + [ + "▁Interior", + -10.962335586547852 + ], + [ + "▁copper", + -10.962445259094238 + ], + [ + "▁pleasant", + -10.962664604187012 + ], + [ + "▁union", + -10.962902069091797 + ], + [ + "▁robust", + -10.963358879089355 + ], + [ + "PO", + -10.96337604522705 + ], + [ + "▁subsequent", + -10.963376998901367 + ], + [ + "▁beds", + -10.963678359985352 + ], + [ + "▁heritage", + -10.963873863220215 + ], + [ + "▁administrative", + -10.96395492553711 + ], + [ + "▁precious", + -10.964054107666016 + ], + [ + "▁aluminum", + -10.964831352233887 + ], + [ + "▁ought", + -10.964879989624023 + ], + [ + "▁Besides", + -10.96504020690918 + ], + [ + "▁(2)", + -10.965056419372559 + ], + [ + "▁1)", + -10.965476036071777 + ], + [ + "▁contractor", + -10.965479850769043 + ], + [ + "▁Pennsylvania", + -10.965486526489258 + ], + [ + "▁vendors", + -10.965559959411621 + ], + [ + "▁alert", + -10.965723037719727 + ], + [ + "oli", + -10.965903282165527 + ], + [ + "71", + -10.966031074523926 + ], + [ + "▁Golf", + -10.966279029846191 + ], + [ + "▁titles", + -10.966348648071289 + ], + [ + "▁dose", + -10.96645736694336 + ], + [ + "▁sophisticated", + -10.966540336608887 + ], + [ + "▁ON", + -10.967008590698242 + ], + [ + "▁pi", + -10.967435836791992 + ], + [ + "▁duration", + -10.9674711227417 + ], + [ + "▁1997", + -10.96764850616455 + ], + [ + "bound", + -10.967720985412598 + ], + [ + "▁edited", + -10.967780113220215 + ], + [ + "▁loop", + -10.967851638793945 + ], + [ + "ili", + -10.968241691589355 + ], + [ + "ü", + -10.968429565429688 + ], + [ + "▁grid", + -10.968734741210938 + ], + [ + "worth", + -10.96960735321045 + ], + [ + "▁HR", + -10.969925880432129 + ], + [ + "▁shapes", + -10.969940185546875 + ], + [ + "▁garlic", + -10.969944953918457 + ], + [ + "▁Resort", + -10.970059394836426 + ], + [ + "▁stack", + -10.970210075378418 + ], + [ + "table", + -10.970254898071289 + ], + [ + "sky", + -10.970317840576172 + ], + [ + "▁everybody", + -10.970919609069824 + ], + [ + "burn", + -10.97097396850586 + ], + [ + "▁Pet", + -10.971308708190918 + ], + [ + "▁BC", + -10.971986770629883 + ], + [ + "cro", + -10.972127914428711 + ], + [ + "▁overview", + -10.972283363342285 + ], + [ + "▁worn", + -10.97339153289795 + ], + [ + "▁Study", + -10.973711967468262 + ], + [ + "▁Dark", + -10.973745346069336 + ], + [ + "▁concentration", + -10.973974227905273 + ], + [ + "09", + -10.974210739135742 + ], + [ + "▁Construction", + -10.974263191223145 + ], + [ + "▁Bor", + -10.974507331848145 + ], + [ + "▁$10", + -10.974557876586914 + ], + [ + "RO", + -10.974732398986816 + ], + [ + "▁bra", + -10.97490406036377 + ], + [ + "▁Practice", + -10.975034713745117 + ], + [ + "▁Application", + -10.975130081176758 + ], + [ + "UR", + -10.975436210632324 + ], + [ + "▁engineers", + -10.975606918334961 + ], + [ + "▁discussions", + -10.975805282592773 + ], + [ + "AR", + -10.976058006286621 + ], + [ + "ude", + -10.97618579864502 + ], + [ + "play", + -10.976191520690918 + ], + [ + "▁amenities", + -10.976216316223145 + ], + [ + "▁scenario", + -10.976482391357422 + ], + [ + "tur", + -10.976603507995605 + ], + [ + "94", + -10.97661018371582 + ], + [ + "▁honey", + -10.976616859436035 + ], + [ + "▁disk", + -10.976888656616211 + ], + [ + "83", + -10.97690486907959 + ], + [ + "▁Pick", + -10.976905822753906 + ], + [ + "link", + -10.977149963378906 + ], + [ + "▁Trans", + -10.977386474609375 + ], + [ + "▁slots", + -10.977410316467285 + ], + [ + "▁intend", + -10.977463722229004 + ], + [ + "ense", + -10.977629661560059 + ], + [ + "▁Double", + -10.977783203125 + ], + [ + "▁bacteria", + -10.97791862487793 + ], + [ + "▁Clean", + -10.97797679901123 + ], + [ + "▁Property", + -10.9780912399292 + ], + [ + "▁Hello", + -10.978155136108398 + ], + [ + "▁Much", + -10.978188514709473 + ], + [ + "oil", + -10.978219032287598 + ], + [ + "▁reverse", + -10.978273391723633 + ], + [ + "▁Euro", + -10.978503227233887 + ], + [ + "▁Jr", + -10.978714942932129 + ], + [ + "▁Date", + -10.979204177856445 + ], + [ + "▁franchise", + -10.97921371459961 + ], + [ + "▁describes", + -10.98002815246582 + ], + [ + "▁44", + -10.980775833129883 + ], + [ + "▁seller", + -10.981197357177734 + ], + [ + "▁Daily", + -10.98127555847168 + ], + [ + "í", + -10.98129653930664 + ], + [ + "▁NA", + -10.981419563293457 + ], + [ + "▁agenda", + -10.981866836547852 + ], + [ + "▁aged", + -10.981955528259277 + ], + [ + "▁discounts", + -10.982001304626465 + ], + [ + "Com", + -10.982062339782715 + ], + [ + "▁picking", + -10.982094764709473 + ], + [ + "▁gathering", + -10.9823579788208 + ], + [ + "600", + -10.982522010803223 + ], + [ + "▁1:", + -10.982951164245605 + ], + [ + "Al", + -10.98313045501709 + ], + [ + "page", + -10.983180046081543 + ], + [ + "▁Tra", + -10.98355484008789 + ], + [ + "▁regulation", + -10.983667373657227 + ], + [ + "▁Gr", + -10.983804702758789 + ], + [ + "RI", + -10.984009742736816 + ], + [ + "http", + -10.98408317565918 + ], + [ + "▁mess", + -10.984550476074219 + ], + [ + "▁signing", + -10.984578132629395 + ], + [ + "Ex", + -10.984611511230469 + ], + [ + "▁pets", + -10.984657287597656 + ], + [ + "▁Miss", + -10.984660148620605 + ], + [ + "▁victim", + -10.98508358001709 + ], + [ + "▁virtually", + -10.985159873962402 + ], + [ + "read", + -10.985334396362305 + ], + [ + "▁optimal", + -10.985433578491211 + ], + [ + "▁8.", + -10.985438346862793 + ], + [ + "▁Challenge", + -10.985462188720703 + ], + [ + "▁FIG", + -10.985548973083496 + ], + [ + "▁oral", + -10.985575675964355 + ], + [ + "▁(“", + -10.985696792602539 + ], + [ + "▁Quick", + -10.985774993896484 + ], + [ + "▁surrounded", + -10.986465454101562 + ], + [ + "▁Mad", + -10.986653327941895 + ], + [ + "▁Always", + -10.986898422241211 + ], + [ + "▁integrate", + -10.986957550048828 + ], + [ + "▁ME", + -10.986991882324219 + ], + [ + "▁completing", + -10.987241744995117 + ], + [ + "▁Moon", + -10.987360000610352 + ], + [ + "▁podcast", + -10.98748779296875 + ], + [ + "▁III", + -10.987822532653809 + ], + [ + "▁grip", + -10.988061904907227 + ], + [ + "▁strengthen", + -10.988155364990234 + ], + [ + "▁opposed", + -10.988184928894043 + ], + [ + "▁universe", + -10.98852252960205 + ], + [ + "€", + -10.988640785217285 + ], + [ + "▁crystal", + -10.988716125488281 + ], + [ + "▁lawn", + -10.98893928527832 + ], + [ + "▁Finance", + -10.988999366760254 + ], + [ + "▁DJ", + -10.989021301269531 + ], + [ + "▁moisture", + -10.989258766174316 + ], + [ + "▁Oregon", + -10.989429473876953 + ], + [ + "▁Unlike", + -10.98951530456543 + ], + [ + "▁remarkable", + -10.989741325378418 + ], + [ + "▁600", + -10.989969253540039 + ], + [ + "▁laugh", + -10.990232467651367 + ], + [ + "▁wildlife", + -10.990238189697266 + ], + [ + "▁commission", + -10.9904146194458 + ], + [ + "Located", + -10.99059009552002 + ], + [ + "▁attempts", + -10.990833282470703 + ], + [ + "▁Vo", + -10.991342544555664 + ], + [ + "ington", + -10.991393089294434 + ], + [ + "▁keys", + -10.991527557373047 + ], + [ + "▁theatre", + -10.991584777832031 + ], + [ + "▁targets", + -10.991593360900879 + ], + [ + "▁rated", + -10.991809844970703 + ], + [ + "name", + -10.991888999938965 + ], + [ + "▁pl", + -10.992193222045898 + ], + [ + "▁Baby", + -10.992280960083008 + ], + [ + "▁Prior", + -10.99230670928955 + ], + [ + "▁vibrant", + -10.99285888671875 + ], + [ + "ect", + -10.99298095703125 + ], + [ + "▁tender", + -10.993830680847168 + ], + [ + "fully", + -10.993934631347656 + ], + [ + ":00", + -10.993988037109375 + ], + [ + "▁grill", + -10.994158744812012 + ], + [ + "▁passes", + -10.994227409362793 + ], + [ + "▁shell", + -10.994284629821777 + ], + [ + "▁Author", + -10.994325637817383 + ], + [ + "▁appreciated", + -10.994650840759277 + ], + [ + "▁Case", + -10.994658470153809 + ], + [ + "▁Several", + -10.994709014892578 + ], + [ + "▁closet", + -10.994746208190918 + ], + [ + "dar", + -10.994868278503418 + ], + [ + "▁profession", + -10.994881629943848 + ], + [ + "▁cord", + -10.995760917663574 + ], + [ + "ates", + -10.995766639709473 + ], + [ + "▁Complete", + -10.996615409851074 + ], + [ + "▁integrity", + -10.996638298034668 + ], + [ + "OT", + -10.996795654296875 + ], + [ + "▁balanced", + -10.9970703125 + ], + [ + "73", + -10.997374534606934 + ], + [ + "▁fireplace", + -10.997427940368652 + ], + [ + "▁Supreme", + -10.99750804901123 + ], + [ + "▁clubs", + -10.99771499633789 + ], + [ + "▁wrap", + -10.99774169921875 + ], + [ + "▁victims", + -10.997857093811035 + ], + [ + "▁Gas", + -10.997922897338867 + ], + [ + "▁1999", + -10.997936248779297 + ], + [ + "▁exercises", + -10.998002052307129 + ], + [ + "▁tours", + -10.998008728027344 + ], + [ + "▁damages", + -10.998130798339844 + ], + [ + "▁crash", + -10.998146057128906 + ], + [ + "▁Mix", + -10.998160362243652 + ], + [ + "▁mild", + -10.998647689819336 + ], + [ + "▁artistic", + -10.998751640319824 + ], + [ + "▁blind", + -10.998906135559082 + ], + [ + "▁wisdom", + -10.999079704284668 + ], + [ + "▁happiness", + -10.999419212341309 + ], + [ + "▁Unit", + -10.999836921691895 + ], + [ + "▁washing", + -10.999975204467773 + ], + [ + "▁finger", + -11.000336647033691 + ], + [ + "▁den", + -11.000493049621582 + ], + [ + "▁makeup", + -11.000956535339355 + ], + [ + "▁personalized", + -11.001229286193848 + ], + [ + "▁mat", + -11.001289367675781 + ], + [ + "▁vice", + -11.00129508972168 + ], + [ + "▁meters", + -11.001648902893066 + ], + [ + "▁interviews", + -11.001653671264648 + ], + [ + "dom", + -11.001805305480957 + ], + [ + "-20", + -11.002161979675293 + ], + [ + "▁origin", + -11.002185821533203 + ], + [ + "▁cooling", + -11.002877235412598 + ], + [ + "▁2)", + -11.00290584564209 + ], + [ + "▁Cost", + -11.004010200500488 + ], + [ + "▁Victoria", + -11.004076957702637 + ], + [ + "▁restoration", + -11.00440788269043 + ], + [ + "▁singing", + -11.004533767700195 + ], + [ + "▁translation", + -11.004716873168945 + ], + [ + "▁poly", + -11.004953384399414 + ], + [ + "▁Stay", + -11.00533676147461 + ], + [ + "61", + -11.005425453186035 + ], + [ + "▁preserve", + -11.005560874938965 + ], + [ + "ski", + -11.006281852722168 + ], + [ + "▁Further", + -11.006692886352539 + ], + [ + "▁Source", + -11.00670337677002 + ], + [ + "▁photographer", + -11.007180213928223 + ], + [ + "▁Austin", + -11.007635116577148 + ], + [ + "▁cur", + -11.008402824401855 + ], + [ + "▁versus", + -11.008441925048828 + ], + [ + "▁BA", + -11.008455276489258 + ], + [ + "▁investigate", + -11.00850772857666 + ], + [ + "shi", + -11.008605003356934 + ], + [ + "▁1996", + -11.008649826049805 + ], + [ + "▁Sarah", + -11.008838653564453 + ], + [ + "BS", + -11.00908088684082 + ], + [ + "▁Jeff", + -11.009224891662598 + ], + [ + "82", + -11.00996208190918 + ], + [ + "02", + -11.009974479675293 + ], + [ + "▁tonight", + -11.010025024414062 + ], + [ + "▁Overall", + -11.010026931762695 + ], + [ + "▁Early", + -11.010108947753906 + ], + [ + "▁delivers", + -11.010214805603027 + ], + [ + "▁ordinary", + -11.010334968566895 + ], + [ + "▁elsewhere", + -11.010416030883789 + ], + [ + "▁capability", + -11.010824203491211 + ], + [ + "ious", + -11.011326789855957 + ], + [ + "▁apple", + -11.011656761169434 + ], + [ + "▁Diego", + -11.012280464172363 + ], + [ + "▁basketball", + -11.01236629486084 + ], + [ + "▁discovery", + -11.012417793273926 + ], + [ + "▁neutral", + -11.012511253356934 + ], + [ + "1)", + -11.012683868408203 + ], + [ + "▁Donald", + -11.012980461120605 + ], + [ + "▁Self", + -11.012982368469238 + ], + [ + "▁competitors", + -11.013067245483398 + ], + [ + "▁pray", + -11.013395309448242 + ], + [ + "ode", + -11.013585090637207 + ], + [ + "▁tourist", + -11.013725280761719 + ], + [ + "▁parallel", + -11.013819694519043 + ], + [ + "CU", + -11.014089584350586 + ], + [ + "▁restrictions", + -11.014094352722168 + ], + [ + "▁disaster", + -11.01413631439209 + ], + [ + "▁publish", + -11.014451026916504 + ], + [ + "▁rack", + -11.014472007751465 + ], + [ + "▁sleeping", + -11.014854431152344 + ], + [ + "▁publishing", + -11.015013694763184 + ], + [ + "▁Edition", + -11.01522445678711 + ], + [ + "▁mounted", + -11.015654563903809 + ], + [ + "fire", + -11.01583194732666 + ], + [ + "▁representing", + -11.015859603881836 + ], + [ + "▁spin", + -11.016491889953613 + ], + [ + "▁duties", + -11.017032623291016 + ], + [ + "▁bench", + -11.017419815063477 + ], + [ + "▁producer", + -11.017455101013184 + ], + [ + "▁reviewed", + -11.017489433288574 + ], + [ + "▁hopefully", + -11.017609596252441 + ], + [ + "▁Easter", + -11.01761531829834 + ], + [ + "▁suspect", + -11.017681121826172 + ], + [ + "▁1970", + -11.017715454101562 + ], + [ + "▁jaw", + -11.017731666564941 + ], + [ + "▁Mat", + -11.017908096313477 + ], + [ + "▁fascinating", + -11.01791763305664 + ], + [ + "▁indicates", + -11.018036842346191 + ], + [ + "▁Bed", + -11.018182754516602 + ], + [ + "▁trailer", + -11.018301963806152 + ], + [ + "▁romantic", + -11.01832103729248 + ], + [ + "RA", + -11.01889419555664 + ], + [ + "▁interpretation", + -11.019027709960938 + ], + [ + "▁pointed", + -11.019071578979492 + ], + [ + "ME", + -11.019265174865723 + ], + [ + "▁Fresh", + -11.019400596618652 + ], + [ + "81", + -11.019506454467773 + ], + [ + "▁Advanced", + -11.019533157348633 + ], + [ + "▁substance", + -11.019580841064453 + ], + [ + "▁gambling", + -11.019620895385742 + ], + [ + "oriented", + -11.02040958404541 + ], + [ + "amp", + -11.020483016967773 + ], + [ + "▁dramatic", + -11.020513534545898 + ], + [ + "▁Rev", + -11.020540237426758 + ], + [ + "▁Ste", + -11.020822525024414 + ], + [ + "▁wins", + -11.021041870117188 + ], + [ + "▁drives", + -11.02127742767334 + ], + [ + "▁ver", + -11.021295547485352 + ], + [ + "▁bulk", + -11.021425247192383 + ], + [ + "▁piano", + -11.021557807922363 + ], + [ + "▁Magazine", + -11.021722793579102 + ], + [ + "▁earnings", + -11.022010803222656 + ], + [ + "ement", + -11.022221565246582 + ], + [ + "tru", + -11.022318840026855 + ], + [ + "▁Child", + -11.022509574890137 + ], + [ + "aimed", + -11.022696495056152 + ], + [ + "▁Could", + -11.02274227142334 + ], + [ + "▁AD", + -11.022753715515137 + ], + [ + "▁bass", + -11.022810935974121 + ], + [ + "wide", + -11.023002624511719 + ], + [ + "▁arrangement", + -11.023017883300781 + ], + [ + "▁toilet", + -11.023293495178223 + ], + [ + "▁sectors", + -11.023297309875488 + ], + [ + "▁2011.", + -11.023502349853516 + ], + [ + "▁productive", + -11.023526191711426 + ], + [ + "▁Organization", + -11.024415016174316 + ], + [ + "hal", + -11.024430274963379 + ], + [ + "▁somehow", + -11.024557113647461 + ], + [ + "▁knee", + -11.024768829345703 + ], + [ + "▁chemicals", + -11.02487564086914 + ], + [ + "▁hub", + -11.025450706481934 + ], + [ + "▁structural", + -11.025866508483887 + ], + [ + "▁absence", + -11.026155471801758 + ], + [ + "▁Eric", + -11.026166915893555 + ], + [ + "▁filing", + -11.02617073059082 + ], + [ + "round", + -11.026520729064941 + ], + [ + "vel", + -11.02656078338623 + ], + [ + "▁chip", + -11.026957511901855 + ], + [ + "week", + -11.027122497558594 + ], + [ + "▁Industry", + -11.027196884155273 + ], + [ + "PM", + -11.027295112609863 + ], + [ + "▁Nature", + -11.027331352233887 + ], + [ + "▁ultra", + -11.027474403381348 + ], + [ + "▁shine", + -11.027792930603027 + ], + [ + "▁dirt", + -11.02784252166748 + ], + [ + "gue", + -11.028165817260742 + ], + [ + "▁endless", + -11.028460502624512 + ], + [ + "▁Members", + -11.028556823730469 + ], + [ + "▁Minnesota", + -11.028592109680176 + ], + [ + "▁Roll", + -11.028701782226562 + ], + [ + "▁gate", + -11.028716087341309 + ], + [ + "▁Nothing", + -11.028838157653809 + ], + [ + "▁hook", + -11.028840065002441 + ], + [ + "ö", + -11.028878211975098 + ], + [ + "▁nutrition", + -11.029037475585938 + ], + [ + "▁burden", + -11.029061317443848 + ], + [ + "▁mono", + -11.0291748046875 + ], + [ + "▁Enterprise", + -11.029390335083008 + ], + [ + "▁manufactured", + -11.029425621032715 + ], + [ + "▁Turkey", + -11.029501914978027 + ], + [ + "hol", + -11.030153274536133 + ], + [ + "▁Ju", + -11.030228614807129 + ], + [ + "▁salary", + -11.030645370483398 + ], + [ + "elle", + -11.030706405639648 + ], + [ + "DA", + -11.030803680419922 + ], + [ + "▁width", + -11.031150817871094 + ], + [ + "▁Nice", + -11.031591415405273 + ], + [ + "▁Wedding", + -11.031749725341797 + ], + [ + "▁beef", + -11.031774520874023 + ], + [ + "winning", + -11.031785011291504 + ], + [ + "▁Iron", + -11.031814575195312 + ], + [ + "7%", + -11.031824111938477 + ], + [ + "▁Lin", + -11.031951904296875 + ], + [ + "▁Update", + -11.031956672668457 + ], + [ + "▁1.5", + -11.032085418701172 + ], + [ + "▁broadcast", + -11.032258987426758 + ], + [ + "′′", + -11.032285690307617 + ], + [ + "▁hill", + -11.032363891601562 + ], + [ + "▁burning", + -11.032637596130371 + ], + [ + "▁demonstrated", + -11.032676696777344 + ], + [ + "▁immune", + -11.032689094543457 + ], + [ + "▁newest", + -11.032967567443848 + ], + [ + "▁proved", + -11.033242225646973 + ], + [ + "▁beaches", + -11.03361988067627 + ], + [ + "▁habits", + -11.034421920776367 + ], + [ + "▁Seattle", + -11.034424781799316 + ], + [ + "ante", + -11.034509658813477 + ], + [ + "▁evolution", + -11.034714698791504 + ], + [ + "▁Elizabeth", + -11.035157203674316 + ], + [ + "▁Copyright", + -11.035545349121094 + ], + [ + "▁shoe", + -11.035998344421387 + ], + [ + "▁signals", + -11.036215782165527 + ], + [ + "▁export", + -11.036247253417969 + ], + [ + "???", + -11.036581993103027 + ], + [ + "▁parks", + -11.036897659301758 + ], + [ + "▁thorough", + -11.03725528717041 + ], + [ + "▁adequate", + -11.037343978881836 + ], + [ + "▁chips", + -11.037578582763672 + ], + [ + "mos", + -11.03761100769043 + ], + [ + "▁Core", + -11.037627220153809 + ], + [ + "GA", + -11.037849426269531 + ], + [ + "▁Jordan", + -11.03818130493164 + ], + [ + "▁operator", + -11.038470268249512 + ], + [ + "▁dough", + -11.038668632507324 + ], + [ + "▁Trail", + -11.039572715759277 + ], + [ + "▁estimates", + -11.0396728515625 + ], + [ + "▁summary", + -11.039772987365723 + ], + [ + "▁clip", + -11.03987979888916 + ], + [ + "▁McC", + -11.039958953857422 + ], + [ + "▁pregnancy", + -11.039974212646484 + ], + [ + "▁collections", + -11.039986610412598 + ], + [ + "▁workout", + -11.040205001831055 + ], + [ + "▁superb", + -11.040325164794922 + ], + [ + "lim", + -11.040432929992676 + ], + [ + "▁Davis", + -11.040596961975098 + ], + [ + "▁placing", + -11.040844917297363 + ], + [ + "store", + -11.040938377380371 + ], + [ + "▁File", + -11.04106330871582 + ], + [ + "▁opens", + -11.041128158569336 + ], + [ + "▁Tea", + -11.041251182556152 + ], + [ + "▁intervention", + -11.041253089904785 + ], + [ + "▁supplement", + -11.041367530822754 + ], + [ + "▁Single", + -11.042134284973145 + ], + [ + "▁processor", + -11.042215347290039 + ], + [ + "▁survival", + -11.04223346710205 + ], + [ + "▁Kevin", + -11.042317390441895 + ], + [ + "93", + -11.042376518249512 + ], + [ + "▁fruits", + -11.04249382019043 + ], + [ + "bu", + -11.042723655700684 + ], + [ + "piece", + -11.042792320251465 + ], + [ + "ique", + -11.042832374572754 + ], + [ + "▁enjoyable", + -11.042970657348633 + ], + [ + "▁Meeting", + -11.043230056762695 + ], + [ + "▁produces", + -11.043252944946289 + ], + [ + "▁precise", + -11.043262481689453 + ], + [ + "▁navigate", + -11.043295860290527 + ], + [ + "▁Consider", + -11.04349136352539 + ], + [ + "▁Je", + -11.043498992919922 + ], + [ + "▁gathered", + -11.043608665466309 + ], + [ + "▁mar", + -11.043862342834473 + ], + [ + "▁dive", + -11.043946266174316 + ], + [ + "▁Simon", + -11.043976783752441 + ], + [ + "▁performances", + -11.044114112854004 + ], + [ + "▁delete", + -11.044126510620117 + ], + [ + "▁mask", + -11.044198989868164 + ], + [ + "▁Money", + -11.044356346130371 + ], + [ + "▁enabled", + -11.044561386108398 + ], + [ + "▁edges", + -11.044585227966309 + ], + [ + "▁Dave", + -11.044992446899414 + ], + [ + "▁dependent", + -11.045126914978027 + ], + [ + "wear", + -11.045220375061035 + ], + [ + "▁Final", + -11.04541015625 + ], + [ + "CE", + -11.045722961425781 + ], + [ + "▁arranged", + -11.04597282409668 + ], + [ + "uring", + -11.046643257141113 + ], + [ + "▁Bus", + -11.046813011169434 + ], + [ + "▁2014,", + -11.046974182128906 + ], + [ + "▁selecting", + -11.047579765319824 + ], + [ + "▁pdf", + -11.047933578491211 + ], + [ + "lton", + -11.047951698303223 + ], + [ + "▁fleet", + -11.048050880432129 + ], + [ + "▁army", + -11.048267364501953 + ], + [ + "EC", + -11.048293113708496 + ], + [ + "vers", + -11.048295021057129 + ], + [ + "▁danger", + -11.048310279846191 + ], + [ + "▁rank", + -11.048405647277832 + ], + [ + "▁Round", + -11.048415184020996 + ], + [ + "▁generations", + -11.048446655273438 + ], + [ + "▁worried", + -11.048469543457031 + ], + [ + "▁URL", + -11.04870891571045 + ], + [ + "▁Along", + -11.048819541931152 + ], + [ + "▁killing", + -11.04891586303711 + ], + [ + "▁Eye", + -11.049063682556152 + ], + [ + "source", + -11.049084663391113 + ], + [ + "▁landing", + -11.049444198608398 + ], + [ + "▁settle", + -11.049686431884766 + ], + [ + "▁Ap", + -11.049744606018066 + ], + [ + "▁Things", + -11.050124168395996 + ], + [ + "▁beans", + -11.05018424987793 + ], + [ + "3,", + -11.050206184387207 + ], + [ + "▁opposition", + -11.050761222839355 + ], + [ + "▁whereas", + -11.050813674926758 + ], + [ + "▁crack", + -11.051522254943848 + ], + [ + "▁diameter", + -11.051629066467285 + ], + [ + "▁strain", + -11.051631927490234 + ], + [ + "▁voltage", + -11.051743507385254 + ], + [ + "▁Vice", + -11.051876068115234 + ], + [ + "▁~", + -11.051990509033203 + ], + [ + "▁pie", + -11.052238464355469 + ], + [ + "▁lady", + -11.052825927734375 + ], + [ + "▁Environmental", + -11.053105354309082 + ], + [ + "▁amp", + -11.05366039276123 + ], + [ + "▁Bu", + -11.053683280944824 + ], + [ + "▁mod", + -11.05391788482666 + ], + [ + "▁admission", + -11.054370880126953 + ], + [ + "▁lawyers", + -11.054530143737793 + ], + [ + "▁poverty", + -11.0545654296875 + ], + [ + "▁Planning", + -11.05472183227539 + ], + [ + "NO", + -11.05479907989502 + ], + [ + "▁explanation", + -11.055177688598633 + ], + [ + "8%", + -11.055249214172363 + ], + [ + "▁lasting", + -11.05541706085205 + ], + [ + "tter", + -11.055646896362305 + ], + [ + "sized", + -11.055827140808105 + ], + [ + "▁timing", + -11.055891990661621 + ], + [ + "▁sing", + -11.056023597717285 + ], + [ + "UM", + -11.05604362487793 + ], + [ + "▁fiction", + -11.05643367767334 + ], + [ + "▁surfaces", + -11.056553840637207 + ], + [ + "▁Fi", + -11.056602478027344 + ], + [ + "▁slide", + -11.056736946105957 + ], + [ + "▁Bathroom", + -11.056918144226074 + ], + [ + "screen", + -11.057320594787598 + ], + [ + "ello", + -11.057565689086914 + ], + [ + "▁deserve", + -11.05774974822998 + ], + [ + "▁20%", + -11.057853698730469 + ], + [ + "▁Hollywood", + -11.057957649230957 + ], + [ + "▁Ontario", + -11.058077812194824 + ], + [ + "▁41", + -11.058183670043945 + ], + [ + "rine", + -11.058341026306152 + ], + [ + "avi", + -11.058794975280762 + ], + [ + "▁adoption", + -11.058836936950684 + ], + [ + "▁Ac", + -11.058913230895996 + ], + [ + "▁motivation", + -11.058943748474121 + ], + [ + "▁2002", + -11.05915641784668 + ], + [ + "▁Direct", + -11.059231758117676 + ], + [ + "▁okay", + -11.059528350830078 + ], + [ + "▁hyper", + -11.05966854095459 + ], + [ + "this", + -11.059844970703125 + ], + [ + "▁corresponding", + -11.05993938446045 + ], + [ + "RS", + -11.059946060180664 + ], + [ + "▁captured", + -11.05999755859375 + ], + [ + "▁toys", + -11.060047149658203 + ], + [ + "▁graduated", + -11.0601167678833 + ], + [ + "▁scratch", + -11.0601224899292 + ], + [ + "▁consulting", + -11.060267448425293 + ], + [ + "SD", + -11.060347557067871 + ], + [ + "▁fraud", + -11.060434341430664 + ], + [ + "▁generous", + -11.060474395751953 + ], + [ + "▁grounds", + -11.060608863830566 + ], + [ + "▁Industrial", + -11.06086540222168 + ], + [ + "▁Remove", + -11.061290740966797 + ], + [ + "▁reflection", + -11.061551094055176 + ], + [ + "▁rail", + -11.061625480651855 + ], + [ + "▁forecast", + -11.06180191040039 + ], + [ + "▁announcement", + -11.062715530395508 + ], + [ + "▁bay", + -11.062734603881836 + ], + [ + "▁Sri", + -11.062854766845703 + ], + [ + "▁extraordinary", + -11.062858581542969 + ], + [ + "▁cabinets", + -11.063297271728516 + ], + [ + "▁Miller", + -11.06351375579834 + ], + [ + "▁Sport", + -11.063580513000488 + ], + [ + "So", + -11.063746452331543 + ], + [ + "post", + -11.063875198364258 + ], + [ + "▁£", + -11.064142227172852 + ], + [ + "var", + -11.06441593170166 + ], + [ + "▁Assistant", + -11.064653396606445 + ], + [ + "cor", + -11.06471061706543 + ], + [ + "▁discipline", + -11.064770698547363 + ], + [ + "▁protecting", + -11.0650053024292 + ], + [ + "▁measurement", + -11.065238952636719 + ], + [ + "step", + -11.06524658203125 + ], + [ + "▁alike", + -11.065707206726074 + ], + [ + "▁hybrid", + -11.06572151184082 + ], + [ + "▁li", + -11.06603717803955 + ], + [ + "▁audit", + -11.066195487976074 + ], + [ + "ition", + -11.066471099853516 + ], + [ + "burg", + -11.06708812713623 + ], + [ + "▁winners", + -11.06781005859375 + ], + [ + "▁courts", + -11.068116188049316 + ], + [ + "unt", + -11.068252563476562 + ], + [ + "▁Front", + -11.068779945373535 + ], + [ + "▁fitted", + -11.068804740905762 + ], + [ + "▁comply", + -11.069091796875 + ], + [ + "▁detect", + -11.069165229797363 + ], + [ + "▁52", + -11.069416046142578 + ], + [ + "ister", + -11.069572448730469 + ], + [ + "now", + -11.069584846496582 + ], + [ + "▁Memorial", + -11.06977653503418 + ], + [ + "▁rep", + -11.069805145263672 + ], + [ + "▁advised", + -11.06988525390625 + ], + [ + "▁predict", + -11.069893836975098 + ], + [ + "▁bands", + -11.070573806762695 + ], + [ + "▁VA", + -11.070892333984375 + ], + [ + "yard", + -11.070960998535156 + ], + [ + "▁organize", + -11.070980072021484 + ], + [ + "▁manufacture", + -11.071134567260742 + ], + [ + "▁provisions", + -11.071454048156738 + ], + [ + "▁entity", + -11.071517944335938 + ], + [ + "lot", + -11.071572303771973 + ], + [ + "▁Jay", + -11.071629524230957 + ], + [ + "ral", + -11.072102546691895 + ], + [ + "▁gardens", + -11.072219848632812 + ], + [ + "grade", + -11.072346687316895 + ], + [ + "▁Link", + -11.072482109069824 + ], + [ + "▁Connect", + -11.072514533996582 + ], + [ + "▁Body", + -11.072617530822754 + ], + [ + "▁breed", + -11.072748184204102 + ], + [ + "▁expanding", + -11.07280158996582 + ], + [ + "▁Performance", + -11.072810173034668 + ], + [ + "ddy", + -11.07284927368164 + ], + [ + "space", + -11.07290267944336 + ], + [ + "▁Yu", + -11.073208808898926 + ], + [ + "ale", + -11.073482513427734 + ], + [ + "5,000", + -11.07351016998291 + ], + [ + "▁movements", + -11.073640823364258 + ], + [ + "▁passengers", + -11.073648452758789 + ], + [ + "▁execution", + -11.073654174804688 + ], + [ + "FC", + -11.073848724365234 + ], + [ + "ency", + -11.074078559875488 + ], + [ + "▁import", + -11.07408618927002 + ], + [ + "▁athletes", + -11.074092864990234 + ], + [ + "▁locate", + -11.0748291015625 + ], + [ + "itz", + -11.07484245300293 + ], + [ + "▁assured", + -11.07516860961914 + ], + [ + "▁zip", + -11.075183868408203 + ], + [ + "▁dentist", + -11.075424194335938 + ], + [ + "▁inspiring", + -11.075552940368652 + ], + [ + "▁Pin", + -11.075590133666992 + ], + [ + "800", + -11.075745582580566 + ], + [ + "▁Cur", + -11.075758934020996 + ], + [ + "any", + -11.075838088989258 + ], + [ + "▁qualify", + -11.075946807861328 + ], + [ + "▁underlying", + -11.076101303100586 + ], + [ + "▁wishes", + -11.076160430908203 + ], + [ + "▁cats", + -11.076419830322266 + ], + [ + "▁trim", + -11.076715469360352 + ], + [ + "▁coconut", + -11.076918601989746 + ], + [ + "AT", + -11.077174186706543 + ], + [ + "▁Premier", + -11.077756881713867 + ], + [ + "▁controller", + -11.07788372039795 + ], + [ + "▁visa", + -11.07800006866455 + ], + [ + "▁1995", + -11.07805347442627 + ], + [ + "tail", + -11.078181266784668 + ], + [ + "▁installing", + -11.078453063964844 + ], + [ + "▁Style", + -11.078493118286133 + ], + [ + "▁reward", + -11.078548431396484 + ], + [ + "▁nervous", + -11.078857421875 + ], + [ + "ush", + -11.078967094421387 + ], + [ + "▁disorder", + -11.079057693481445 + ], + [ + "▁profits", + -11.07950496673584 + ], + [ + "▁breaks", + -11.079671859741211 + ], + [ + "born", + -11.079859733581543 + ], + [ + "▁curious", + -11.08008861541748 + ], + [ + "▁carrier", + -11.080256462097168 + ], + [ + "▁acknowledge", + -11.080406188964844 + ], + [ + "▁rescue", + -11.080482482910156 + ], + [ + "▁magical", + -11.08074951171875 + ], + [ + "cent", + -11.08077621459961 + ], + [ + "TE", + -11.08078670501709 + ], + [ + "▁Creative", + -11.080804824829102 + ], + [ + "responsibilities", + -11.080863952636719 + ], + [ + "▁shelf", + -11.08120346069336 + ], + [ + "▁nations", + -11.081564903259277 + ], + [ + "▁Aug", + -11.082077026367188 + ], + [ + "mir", + -11.082077980041504 + ], + [ + "▁excellence", + -11.082209587097168 + ], + [ + "▁acres", + -11.082380294799805 + ], + [ + "▁exclusively", + -11.082427024841309 + ], + [ + "▁Marine", + -11.082527160644531 + ], + [ + "▁unlike", + -11.082788467407227 + ], + [ + "▁answered", + -11.0828218460083 + ], + [ + "▁cancel", + -11.083054542541504 + ], + [ + "▁Rome", + -11.083185195922852 + ], + [ + "у", + -11.083301544189453 + ], + [ + "▁charm", + -11.083661079406738 + ], + [ + "such", + -11.083972930908203 + ], + [ + "▁adopt", + -11.083977699279785 + ], + [ + "3.", + -11.084014892578125 + ], + [ + "▁Dog", + -11.084059715270996 + ], + [ + "▁Making", + -11.084237098693848 + ], + [ + "ku", + -11.084464073181152 + ], + [ + "▁assignment", + -11.084538459777832 + ], + [ + "▁ratings", + -11.084566116333008 + ], + [ + "ink", + -11.084568977355957 + ], + [ + "▁console", + -11.084920883178711 + ], + [ + "▁enormous", + -11.084957122802734 + ], + [ + "▁Brazil", + -11.085060119628906 + ], + [ + "▁Den", + -11.085126876831055 + ], + [ + "▁Prince", + -11.085235595703125 + ], + [ + "ica", + -11.085603713989258 + ], + [ + "▁Us", + -11.086236953735352 + ], + [ + "▁identification", + -11.086369514465332 + ], + [ + "▁solely", + -11.086454391479492 + ], + [ + "▁browse", + -11.086484909057617 + ], + [ + "roll", + -11.086593627929688 + ], + [ + "▁Hol", + -11.087020874023438 + ], + [ + "▁seasons", + -11.087042808532715 + ], + [ + "▁mu", + -11.087514877319336 + ], + [ + "▁outfit", + -11.087607383728027 + ], + [ + "▁Economic", + -11.087847709655762 + ], + [ + "▁Ze", + -11.088020324707031 + ], + [ + "▁lounge", + -11.088088989257812 + ], + [ + "▁Five", + -11.088102340698242 + ], + [ + "▁Future", + -11.088205337524414 + ], + [ + "▁enemy", + -11.088263511657715 + ], + [ + "▁knowledgeable", + -11.088343620300293 + ], + [ + "▁seal", + -11.088351249694824 + ], + [ + "▁actor", + -11.08838939666748 + ], + [ + "▁judgment", + -11.088459014892578 + ], + [ + "FS", + -11.088468551635742 + ], + [ + "▁conversations", + -11.088939666748047 + ], + [ + "▁resist", + -11.089098930358887 + ], + [ + "▁Atlanta", + -11.089308738708496 + ], + [ + "▁contents", + -11.0894136428833 + ], + [ + "▁couch", + -11.08945083618164 + ], + [ + "cus", + -11.089635848999023 + ], + [ + "MB", + -11.09004020690918 + ], + [ + "▁oldest", + -11.090398788452148 + ], + [ + "▁involvement", + -11.090494155883789 + ], + [ + "!”", + -11.0907564163208 + ], + [ + "▁Cape", + -11.090923309326172 + ], + [ + "▁2001", + -11.091062545776367 + ], + [ + "▁Enter", + -11.091134071350098 + ], + [ + "▁dealer", + -11.091278076171875 + ], + [ + "▁Pop", + -11.091383934020996 + ], + [ + "▁Cancer", + -11.091415405273438 + ], + [ + "▁powered", + -11.091585159301758 + ], + [ + "▁Wind", + -11.091723442077637 + ], + [ + "km", + -11.091826438903809 + ], + [ + "▁Mel", + -11.091861724853516 + ], + [ + "▁guides", + -11.092140197753906 + ], + [ + "▁loaded", + -11.092164993286133 + ], + [ + "▁encouraging", + -11.092196464538574 + ], + [ + "face", + -11.092308044433594 + ], + [ + "▁04", + -11.092588424682617 + ], + [ + "▁crown", + -11.092700004577637 + ], + [ + "▁»", + -11.092743873596191 + ], + [ + "▁Pu", + -11.092846870422363 + ], + [ + "▁conservation", + -11.093047142028809 + ], + [ + "▁versatile", + -11.09310245513916 + ], + [ + "-9", + -11.093177795410156 + ], + [ + "-5", + -11.093647956848145 + ], + [ + "▁insert", + -11.09395980834961 + ], + [ + "▁contributed", + -11.09407901763916 + ], + [ + "▁donation", + -11.094399452209473 + ], + [ + "▁Ci", + -11.094528198242188 + ], + [ + "▁sacrifice", + -11.09477710723877 + ], + [ + "▁lightweight", + -11.094923973083496 + ], + [ + "▁batteries", + -11.095220565795898 + ], + [ + "▁2010.", + -11.09568977355957 + ], + [ + "▁CC", + -11.095697402954102 + ], + [ + "▁Linux", + -11.095780372619629 + ], + [ + "emi", + -11.096070289611816 + ], + [ + "▁commit", + -11.096088409423828 + ], + [ + "▁prevention", + -11.096161842346191 + ], + [ + "-18", + -11.096426963806152 + ], + [ + "▁Side", + -11.096500396728516 + ], + [ + "ula", + -11.096510887145996 + ], + [ + "rel", + -11.09663200378418 + ], + [ + "”)", + -11.096834182739258 + ], + [ + "▁operators", + -11.096941947937012 + ], + [ + "chen", + -11.096954345703125 + ], + [ + "▁elections", + -11.097160339355469 + ], + [ + "▁cloth", + -11.097251892089844 + ], + [ + "▁Given", + -11.097253799438477 + ], + [ + "▁dialogue", + -11.097497940063477 + ], + [ + "▁complaint", + -11.097555160522461 + ], + [ + "▁designated", + -11.097564697265625 + ], + [ + "▁babies", + -11.097622871398926 + ], + [ + "▁relaxed", + -11.098352432250977 + ], + [ + "▁permitted", + -11.098431587219238 + ], + [ + "▁43", + -11.09871768951416 + ], + [ + "▁Philadelphia", + -11.099047660827637 + ], + [ + "etic", + -11.099165916442871 + ], + [ + "▁effectiveness", + -11.099302291870117 + ], + [ + "▁hosts", + -11.099814414978027 + ], + [ + "▁Cash", + -11.100008010864258 + ], + [ + "▁automated", + -11.100225448608398 + ], + [ + "▁diamond", + -11.100382804870605 + ], + [ + "▁entries", + -11.100404739379883 + ], + [ + "▁Democratic", + -11.100687980651855 + ], + [ + "▁transferred", + -11.100703239440918 + ], + [ + "▁vulnerable", + -11.100720405578613 + ], + [ + "▁Furniture", + -11.100908279418945 + ], + [ + "▁shaped", + -11.101219177246094 + ], + [ + "▁Halloween", + -11.101444244384766 + ], + [ + "▁hearts", + -11.10168743133545 + ], + [ + "▁hunting", + -11.102080345153809 + ], + [ + "▁waves", + -11.102190971374512 + ], + [ + "▁Palm", + -11.102548599243164 + ], + [ + "▁dimensions", + -11.102913856506348 + ], + [ + "▁Tell", + -11.103087425231934 + ], + [ + "La", + -11.103352546691895 + ], + [ + "las", + -11.103557586669922 + ], + [ + "▁46", + -11.103675842285156 + ], + [ + "▁Matthew", + -11.103909492492676 + ], + [ + "▁Stop", + -11.104007720947266 + ], + [ + "▁coating", + -11.104249000549316 + ], + [ + "▁Manchester", + -11.104303359985352 + ], + [ + "▁technological", + -11.10433292388916 + ], + [ + "▁portal", + -11.10444164276123 + ], + [ + "being", + -11.104458808898926 + ], + [ + "▁Resume", + -11.104625701904297 + ], + [ + "▁boots", + -11.104850769042969 + ], + [ + "▁Orange", + -11.10486125946045 + ], + [ + "▁Bush", + -11.104927062988281 + ], + [ + "▁Story", + -11.104952812194824 + ], + [ + "▁gr", + -11.105056762695312 + ], + [ + "▁shed", + -11.105109214782715 + ], + [ + "▁mineral", + -11.105403900146484 + ], + [ + "▁timely", + -11.10581111907959 + ], + [ + "▁Lady", + -11.10598087310791 + ], + [ + "▁49", + -11.106063842773438 + ], + [ + "▁fake", + -11.106127738952637 + ], + [ + "TER", + -11.106216430664062 + ], + [ + "▁weird", + -11.106450080871582 + ], + [ + "▁optional", + -11.10657787322998 + ], + [ + "і", + -11.106689453125 + ], + [ + "▁struck", + -11.106689453125 + ], + [ + "▁ranked", + -11.106868743896484 + ], + [ + "▁purchases", + -11.107065200805664 + ], + [ + "▁detection", + -11.107220649719238 + ], + [ + "▁Korean", + -11.1072416305542 + ], + [ + "▁Dallas", + -11.10752010345459 + ], + [ + "▁Hills", + -11.107564926147461 + ], + [ + "▁heaven", + -11.107897758483887 + ], + [ + "rat", + -11.108540534973145 + ], + [ + "▁Bring", + -11.108610153198242 + ], + [ + "fit", + -11.1087646484375 + ], + [ + "▁keen", + -11.108787536621094 + ], + [ + "▁Anyone", + -11.108799934387207 + ], + [ + "▁WA", + -11.108981132507324 + ], + [ + "▁popularity", + -11.109112739562988 + ], + [ + "▁embodiment", + -11.109493255615234 + ], + [ + "▁photograph", + -11.109574317932129 + ], + [ + "▁GA", + -11.109575271606445 + ], + [ + "▁Metal", + -11.109879493713379 + ], + [ + "▁occasions", + -11.110215187072754 + ], + [ + "▁physician", + -11.110785484313965 + ], + [ + "▁physically", + -11.110847473144531 + ], + [ + "▁prominent", + -11.111635208129883 + ], + [ + "▁Fo", + -11.112030029296875 + ], + [ + "▁Regional", + -11.112114906311035 + ], + [ + "▁tune", + -11.112269401550293 + ], + [ + "▁witness", + -11.112530708312988 + ], + [ + "▁Terms", + -11.112894058227539 + ], + [ + "▁soap", + -11.112982749938965 + ], + [ + "▁Getting", + -11.113066673278809 + ], + [ + "▁celebrated", + -11.113431930541992 + ], + [ + "▁grinding", + -11.113545417785645 + ], + [ + "▁brick", + -11.113606452941895 + ], + [ + "▁pad", + -11.113687515258789 + ], + [ + "▁followers", + -11.11372184753418 + ], + [ + "▁spouse", + -11.113908767700195 + ], + [ + "▁spectrum", + -11.113977432250977 + ], + [ + "▁collective", + -11.114018440246582 + ], + [ + "▁entertaining", + -11.114444732666016 + ], + [ + "▁operates", + -11.115340232849121 + ], + [ + "effective", + -11.115524291992188 + ], + [ + "▁Know", + -11.115701675415039 + ], + [ + "bury", + -11.115863800048828 + ], + [ + "cri", + -11.116003036499023 + ], + [ + "▁paintings", + -11.116076469421387 + ], + [ + "▁Melbourne", + -11.116114616394043 + ], + [ + "▁lamp", + -11.116327285766602 + ], + [ + "take", + -11.116334915161133 + ], + [ + "▁72", + -11.11650562286377 + ], + [ + "▁Ever", + -11.1171875 + ], + [ + "▁embrace", + -11.117228507995605 + ], + [ + "▁references", + -11.117246627807617 + ], + [ + "▁4-", + -11.117257118225098 + ], + [ + "▁specifications", + -11.117257118225098 + ], + [ + "▁boss", + -11.117319107055664 + ], + [ + "06", + -11.117510795593262 + ], + [ + "▁Panel", + -11.117646217346191 + ], + [ + "▁achieving", + -11.11764907836914 + ], + [ + "▁jam", + -11.117751121520996 + ], + [ + "▁emissions", + -11.117894172668457 + ], + [ + "▁Th", + -11.11933708190918 + ], + [ + "▁£1", + -11.119401931762695 + ], + [ + "▁jet", + -11.119477272033691 + ], + [ + "How", + -11.119571685791016 + ], + [ + "▁Ji", + -11.119824409484863 + ], + [ + "▁baseball", + -11.120271682739258 + ], + [ + "▁basement", + -11.120537757873535 + ], + [ + "▁divorce", + -11.120537757873535 + ], + [ + "▁tower", + -11.120612144470215 + ], + [ + "party", + -11.12098217010498 + ], + [ + "EE", + -11.121197700500488 + ], + [ + "▁stocks", + -11.121528625488281 + ], + [ + "cap", + -11.121664047241211 + ], + [ + "▁horses", + -11.121743202209473 + ], + [ + "elli", + -11.121744155883789 + ], + [ + "▁fastest", + -11.121825218200684 + ], + [ + "▁possess", + -11.121979713439941 + ], + [ + "▁subtle", + -11.122252464294434 + ], + [ + "▁Sciences", + -11.12237548828125 + ], + [ + "-4", + -11.122779846191406 + ], + [ + "spect", + -11.123019218444824 + ], + [ + "▁settled", + -11.12319278717041 + ], + [ + "▁singer", + -11.123236656188965 + ], + [ + "▁disc", + -11.123815536499023 + ], + [ + "mont", + -11.124001502990723 + ], + [ + "▁streaming", + -11.124213218688965 + ], + [ + "▁glasses", + -11.12448787689209 + ], + [ + "▁destroy", + -11.124565124511719 + ], + [ + "▁Third", + -11.124692916870117 + ], + [ + "▁Atlantic", + -11.124829292297363 + ], + [ + "▁intention", + -11.124946594238281 + ], + [ + "▁Ali", + -11.125006675720215 + ], + [ + "▁Sir", + -11.125167846679688 + ], + [ + "▁strict", + -11.125561714172363 + ], + [ + "rol", + -11.126143455505371 + ], + [ + "▁regards", + -11.12627124786377 + ], + [ + "▁Israeli", + -11.12648868560791 + ], + [ + "▁exploration", + -11.12660026550293 + ], + [ + "IL", + -11.126945495605469 + ], + [ + "▁occasionally", + -11.126982688903809 + ], + [ + "lia", + -11.12723159790039 + ], + [ + "▁ga", + -11.127479553222656 + ], + [ + "▁Authority", + -11.12767505645752 + ], + [ + "▁frames", + -11.12804126739502 + ], + [ + "▁nail", + -11.12828254699707 + ], + [ + "▁neuro", + -11.128417015075684 + ], + [ + "lip", + -11.12842845916748 + ], + [ + "mic", + -11.128593444824219 + ], + [ + "▁condo", + -11.12862491607666 + ], + [ + "▁Youth", + -11.128661155700684 + ], + [ + "▁territory", + -11.128843307495117 + ], + [ + "▁charging", + -11.129327774047852 + ], + [ + "OC", + -11.12936019897461 + ], + [ + "▁desert", + -11.12943172454834 + ], + [ + "▁unlikely", + -11.129565238952637 + ], + [ + "▁pushed", + -11.12962532043457 + ], + [ + "▁laundry", + -11.129932403564453 + ], + [ + "▁excessive", + -11.130024909973145 + ], + [ + "ges", + -11.130159378051758 + ], + [ + "▁Arm", + -11.13017749786377 + ], + [ + "▁Para", + -11.130457878112793 + ], + [ + "▁Equipment", + -11.130525588989258 + ], + [ + "▁difficulties", + -11.130855560302734 + ], + [ + "▁Wilson", + -11.130922317504883 + ], + [ + "size", + -11.13113784790039 + ], + [ + "▁Phone", + -11.131163597106934 + ], + [ + "▁Cell", + -11.131267547607422 + ], + [ + "▁interactions", + -11.131288528442383 + ], + [ + "-7", + -11.131346702575684 + ], + [ + "▁Map", + -11.131375312805176 + ], + [ + "▁ignore", + -11.131512641906738 + ], + [ + "bell", + -11.131665229797363 + ], + [ + "▁grain", + -11.131756782531738 + ], + [ + "▁stomach", + -11.131810188293457 + ], + [ + "col", + -11.131990432739258 + ], + [ + "▁Len", + -11.132155418395996 + ], + [ + "▁Apr", + -11.132373809814453 + ], + [ + "▁virus", + -11.13259506225586 + ], + [ + "▁Title", + -11.133040428161621 + ], + [ + "▁sorts", + -11.133201599121094 + ], + [ + "pet", + -11.133511543273926 + ], + [ + "▁secured", + -11.133581161499023 + ], + [ + "▁terminal", + -11.133723258972168 + ], + [ + "bank", + -11.133771896362305 + ], + [ + "▁pushing", + -11.133933067321777 + ], + [ + "▁Dutch", + -11.133978843688965 + ], + [ + "▁sized", + -11.134223937988281 + ], + [ + "▁universal", + -11.134363174438477 + ], + [ + "▁arrested", + -11.134400367736816 + ], + [ + "▁regime", + -11.134551048278809 + ], + [ + "hose", + -11.13457202911377 + ], + [ + "▁Massachusetts", + -11.134592056274414 + ], + [ + "▁exhibit", + -11.135210037231445 + ], + [ + "▁NEW", + -11.135686874389648 + ], + [ + "▁2013,", + -11.135912895202637 + ], + [ + "▁roughly", + -11.135931015014648 + ], + [ + "▁marine", + -11.136054039001465 + ], + [ + "▁imagination", + -11.136103630065918 + ], + [ + "▁deadline", + -11.136442184448242 + ], + [ + "▁blogs", + -11.137176513671875 + ], + [ + "▁arch", + -11.137456893920898 + ], + [ + "▁reliability", + -11.138284683227539 + ], + [ + "▁hospitals", + -11.13832950592041 + ], + [ + "▁Six", + -11.138480186462402 + ], + [ + "▁vitamin", + -11.138490676879883 + ], + [ + "▁limitations", + -11.13899040222168 + ], + [ + "▁fulfill", + -11.139228820800781 + ], + [ + "▁Sen", + -11.139382362365723 + ], + [ + "▁Talk", + -11.139446258544922 + ], + [ + "▁oils", + -11.139760971069336 + ], + [ + "▁differently", + -11.139765739440918 + ], + [ + "▁Provide", + -11.13985824584961 + ], + [ + "LS", + -11.140016555786133 + ], + [ + "▁Bowl", + -11.140148162841797 + ], + [ + "met", + -11.14017391204834 + ], + [ + "American", + -11.140475273132324 + ], + [ + "▁Discover", + -11.141031265258789 + ], + [ + "▁Certified", + -11.141181945800781 + ], + [ + "gal", + -11.141220092773438 + ], + [ + "▁Ty", + -11.141581535339355 + ], + [ + "▁tutorial", + -11.141833305358887 + ], + [ + "▁Sure", + -11.142184257507324 + ], + [ + "ock", + -11.142226219177246 + ], + [ + "ET", + -11.142273902893066 + ], + [ + "▁Simple", + -11.142287254333496 + ], + [ + "▁retailers", + -11.142312049865723 + ], + [ + "pol", + -11.14232349395752 + ], + [ + "▁Harry", + -11.142440795898438 + ], + [ + "▁plates", + -11.142444610595703 + ], + [ + "▁Tony", + -11.14280891418457 + ], + [ + "just", + -11.143218040466309 + ], + [ + "▁retreat", + -11.143509864807129 + ], + [ + "▁tied", + -11.14356517791748 + ], + [ + "▁marketplace", + -11.143752098083496 + ], + [ + "specific", + -11.143753051757812 + ], + [ + "▁FA", + -11.143933296203613 + ], + [ + "▁disorders", + -11.144102096557617 + ], + [ + "▁Writing", + -11.144234657287598 + ], + [ + "▁consult", + -11.144289016723633 + ], + [ + "▁accomplished", + -11.144793510437012 + ], + [ + "▁workforce", + -11.145054817199707 + ], + [ + "▁vinyl", + -11.145418167114258 + ], + [ + "▁worker", + -11.145493507385254 + ], + [ + "under", + -11.145862579345703 + ], + [ + "▁Restaurant", + -11.145936965942383 + ], + [ + "▁authorized", + -11.146096229553223 + ], + [ + "rest", + -11.146233558654785 + ], + [ + "stop", + -11.14635944366455 + ], + [ + "▁attractions", + -11.146467208862305 + ], + [ + "▁Door", + -11.146896362304688 + ], + [ + "▁complement", + -11.147005081176758 + ], + [ + "▁listings", + -11.147189140319824 + ], + [ + "▁Books", + -11.147533416748047 + ], + [ + "▁Rs", + -11.147644996643066 + ], + [ + "ound", + -11.147847175598145 + ], + [ + "hard", + -11.147871017456055 + ], + [ + "▁observe", + -11.148041725158691 + ], + [ + "fro", + -11.148152351379395 + ], + [ + "▁vacuum", + -11.148463249206543 + ], + [ + "pel", + -11.148518562316895 + ], + [ + "▁SD", + -11.148714065551758 + ], + [ + "▁NFL", + -11.148883819580078 + ], + [ + "▁implementing", + -11.14897632598877 + ], + [ + "▁seating", + -11.148999214172363 + ], + [ + "▁legacy", + -11.149032592773438 + ], + [ + "▁Reading", + -11.149041175842285 + ], + [ + "▁Job", + -11.149139404296875 + ], + [ + "▁chamber", + -11.14914608001709 + ], + [ + "▁Cam", + -11.149320602416992 + ], + [ + "▁Resources", + -11.149397850036621 + ], + [ + "▁excitement", + -11.149620056152344 + ], + [ + "cra", + -11.149651527404785 + ], + [ + "▁Chamber", + -11.149693489074707 + ], + [ + "▁Wales", + -11.14988899230957 + ], + [ + "▁Delhi", + -11.15013313293457 + ], + [ + "▁Maryland", + -11.150324821472168 + ], + [ + "▁priced", + -11.1505765914917 + ], + [ + "num", + -11.151026725769043 + ], + [ + "master", + -11.151233673095703 + ], + [ + "▁minimize", + -11.15123462677002 + ], + [ + "TP", + -11.151368141174316 + ], + [ + "▁disability", + -11.151395797729492 + ], + [ + "▁2:", + -11.151424407958984 + ], + [ + "▁outer", + -11.151777267456055 + ], + [ + "▁Commercial", + -11.15178394317627 + ], + [ + "▁Magic", + -11.151792526245117 + ], + [ + "▁Kansas", + -11.151848793029785 + ], + [ + "▁$6", + -11.15209674835205 + ], + [ + "nate", + -11.152338981628418 + ], + [ + "▁loud", + -11.152652740478516 + ], + [ + "▁caring", + -11.152711868286133 + ], + [ + "▁tourism", + -11.153172492980957 + ], + [ + "▁poll", + -11.15383243560791 + ], + [ + "▁trials", + -11.15401840209961 + ], + [ + "▁gray", + -11.154024124145508 + ], + [ + "▁churches", + -11.154056549072266 + ], + [ + "pping", + -11.154155731201172 + ], + [ + "TH", + -11.154387474060059 + ], + [ + "▁highway", + -11.154499053955078 + ], + [ + "▁strip", + -11.154637336730957 + ], + [ + "▁resistant", + -11.154657363891602 + ], + [ + "▁travelling", + -11.154684066772461 + ], + [ + "▁Hey", + -11.154906272888184 + ], + [ + "▁iconic", + -11.155195236206055 + ], + [ + "▁newsletter", + -11.155491828918457 + ], + [ + "▁jacket", + -11.155781745910645 + ], + [ + "▁Attorney", + -11.155838966369629 + ], + [ + "▁collaborative", + -11.155966758728027 + ], + [ + "▁intent", + -11.156502723693848 + ], + [ + "▁arrest", + -11.156658172607422 + ], + [ + "▁rec", + -11.157204627990723 + ], + [ + "▁declared", + -11.157906532287598 + ], + [ + "away", + -11.157927513122559 + ], + [ + "▁TX", + -11.158199310302734 + ], + [ + "▁Email", + -11.158233642578125 + ], + [ + "▁admitted", + -11.15835952758789 + ], + [ + "▁analytics", + -11.158437728881836 + ], + [ + "▁addiction", + -11.158747673034668 + ], + [ + "ack", + -11.158748626708984 + ], + [ + "▁4,", + -11.1587553024292 + ], + [ + "▁Wisconsin", + -11.158958435058594 + ], + [ + "▁Snow", + -11.1590576171875 + ], + [ + "▁Whatever", + -11.159123420715332 + ], + [ + "▁1994", + -11.159384727478027 + ], + [ + "▁fold", + -11.159659385681152 + ], + [ + "▁buttons", + -11.159719467163086 + ], + [ + "▁smoking", + -11.159913063049316 + ], + [ + "called", + -11.160141944885254 + ], + [ + "▁Sc", + -11.160195350646973 + ], + [ + "▁Ban", + -11.160354614257812 + ], + [ + "▁memorable", + -11.160393714904785 + ], + [ + "ux", + -11.160407066345215 + ], + [ + "▁Language", + -11.16080379486084 + ], + [ + "▁wherever", + -11.160872459411621 + ], + [ + "▁Account", + -11.161005020141602 + ], + [ + "▁composed", + -11.161591529846191 + ], + [ + "▁que", + -11.161625862121582 + ], + [ + "path", + -11.161675453186035 + ], + [ + "▁moderate", + -11.162053108215332 + ], + [ + "IE", + -11.162308692932129 + ], + [ + "range", + -11.162761688232422 + ], + [ + "ily", + -11.162941932678223 + ], + [ + "▁foster", + -11.16322135925293 + ], + [ + "▁luxurious", + -11.16345500946045 + ], + [ + "gli", + -11.163567543029785 + ], + [ + "▁Jon", + -11.163569450378418 + ], + [ + "atic", + -11.163650512695312 + ], + [ + "▁Bitcoin", + -11.163816452026367 + ], + [ + "▁alumni", + -11.164058685302734 + ], + [ + "▁PRO", + -11.164121627807617 + ], + [ + "▁Common", + -11.164451599121094 + ], + [ + "▁Mom", + -11.164909362792969 + ], + [ + "▁hydro", + -11.164910316467285 + ], + [ + "▁animation", + -11.1649169921875 + ], + [ + "▁Manual", + -11.16496753692627 + ], + [ + "pal", + -11.165628433227539 + ], + [ + "▁Technical", + -11.165764808654785 + ], + [ + "▁Total", + -11.165802001953125 + ], + [ + "▁calories", + -11.165862083435059 + ], + [ + "▁shipped", + -11.165902137756348 + ], + [ + "▁Ye", + -11.166011810302734 + ], + [ + "▁patent", + -11.166077613830566 + ], + [ + "ography", + -11.166142463684082 + ], + [ + "▁leverage", + -11.166236877441406 + ], + [ + "▁Berlin", + -11.166505813598633 + ], + [ + "▁crop", + -11.166627883911133 + ], + [ + "▁rings", + -11.166993141174316 + ], + [ + "▁identifying", + -11.167107582092285 + ], + [ + "▁Iraq", + -11.167291641235352 + ], + [ + "▁Wow", + -11.16740608215332 + ], + [ + "put", + -11.167561531066895 + ], + [ + "▁vi", + -11.16757869720459 + ], + [ + "▁sexual", + -11.167884826660156 + ], + [ + "▁(3", + -11.168432235717773 + ], + [ + "HA", + -11.168434143066406 + ], + [ + "▁overseas", + -11.168617248535156 + ], + [ + "▁verify", + -11.168806076049805 + ], + [ + "▁Jean", + -11.168816566467285 + ], + [ + "▁funded", + -11.168898582458496 + ], + [ + "▁enabling", + -11.168904304504395 + ], + [ + "who", + -11.169074058532715 + ], + [ + "▁consultant", + -11.169950485229492 + ], + [ + "▁Lewis", + -11.170145988464355 + ], + [ + "▁2012,", + -11.170235633850098 + ], + [ + "▁terrible", + -11.170339584350586 + ], + [ + "▁fitting", + -11.170977592468262 + ], + [ + "▁acceptable", + -11.171041488647461 + ], + [ + "▁Upon", + -11.171391487121582 + ], + [ + "▁Mission", + -11.171455383300781 + ], + [ + "▁champion", + -11.171878814697266 + ], + [ + "▁Sony", + -11.172029495239258 + ], + [ + "berry", + -11.172283172607422 + ], + [ + "▁Event", + -11.172362327575684 + ], + [ + "▁releases", + -11.172465324401855 + ], + [ + "▁Oxford", + -11.172524452209473 + ], + [ + "▁bow", + -11.172630310058594 + ], + [ + "▁laboratory", + -11.17273235321045 + ], + [ + "▁aggressive", + -11.173051834106445 + ], + [ + "▁binding", + -11.17338752746582 + ], + [ + "▁pour", + -11.173432350158691 + ], + [ + "NC", + -11.173768043518066 + ], + [ + "▁blast", + -11.173948287963867 + ], + [ + "▁clinic", + -11.174078941345215 + ], + [ + "▁presentations", + -11.174114227294922 + ], + [ + "▁meditation", + -11.174298286437988 + ], + [ + "▁apartments", + -11.174684524536133 + ], + [ + "izer", + -11.175019264221191 + ], + [ + "▁AL", + -11.175065994262695 + ], + [ + "▁engineer", + -11.175406455993652 + ], + [ + "▁producers", + -11.175447463989258 + ], + [ + "▁retired", + -11.175545692443848 + ], + [ + "▁leaf", + -11.175694465637207 + ], + [ + "▁loads", + -11.175700187683105 + ], + [ + "▁tennis", + -11.17586898803711 + ], + [ + "5%", + -11.17601490020752 + ], + [ + "▁fingers", + -11.176092147827148 + ], + [ + "▁pregnant", + -11.17656421661377 + ], + [ + "▁peer", + -11.176712036132812 + ], + [ + "▁Cre", + -11.176804542541504 + ], + [ + "▁Fu", + -11.176926612854004 + ], + [ + "vent", + -11.177348136901855 + ], + [ + "PL", + -11.177410125732422 + ], + [ + "▁Bel", + -11.177696228027344 + ], + [ + "▁achievement", + -11.177732467651367 + ], + [ + "▁Jason", + -11.17776870727539 + ], + [ + "▁voter", + -11.177814483642578 + ], + [ + "▁Dance", + -11.178206443786621 + ], + [ + "▁Mont", + -11.178207397460938 + ], + [ + "▁admin", + -11.17833423614502 + ], + [ + "“", + -11.178506851196289 + ], + [ + "▁handled", + -11.178873062133789 + ], + [ + "anti", + -11.179001808166504 + ], + [ + "hole", + -11.179055213928223 + ], + [ + "▁cookie", + -11.180126190185547 + ], + [ + "▁voters", + -11.180158615112305 + ], + [ + "ille", + -11.180179595947266 + ], + [ + "▁governments", + -11.180885314941406 + ], + [ + "▁thesis", + -11.18092155456543 + ], + [ + "▁shortly", + -11.181012153625488 + ], + [ + "▁hence", + -11.18127155303955 + ], + [ + "▁Investment", + -11.181313514709473 + ], + [ + "▁directors", + -11.181381225585938 + ], + [ + "LT", + -11.181791305541992 + ], + [ + "▁destroyed", + -11.181819915771484 + ], + [ + "▁associate", + -11.181859016418457 + ], + [ + "▁junior", + -11.181925773620605 + ], + [ + "▁swim", + -11.18209171295166 + ], + [ + "▁realistic", + -11.182469367980957 + ], + [ + "▁hardly", + -11.182905197143555 + ], + [ + "▁Phil", + -11.183016777038574 + ], + [ + "▁1960", + -11.183060646057129 + ], + [ + "▁stops", + -11.183349609375 + ], + [ + "CS", + -11.183403968811035 + ], + [ + "pper", + -11.183557510375977 + ], + [ + "▁coin", + -11.1837158203125 + ], + [ + "▁trails", + -11.184147834777832 + ], + [ + "▁betting", + -11.184226989746094 + ], + [ + "requiring", + -11.184283256530762 + ], + [ + "▁varied", + -11.184453010559082 + ], + [ + "▁shake", + -11.185235023498535 + ], + [ + "ivity", + -11.185487747192383 + ], + [ + "▁gently", + -11.185541152954102 + ], + [ + "▁intelligent", + -11.185769081115723 + ], + [ + "▁Really", + -11.18609619140625 + ], + [ + "▁dressing", + -11.18620491027832 + ], + [ + "Man", + -11.186211585998535 + ], + [ + "▁championship", + -11.18651294708252 + ], + [ + "▁defeat", + -11.18680477142334 + ], + [ + "▁Yo", + -11.187057495117188 + ], + [ + "pot", + -11.18705940246582 + ], + [ + "▁Ave", + -11.187142372131348 + ], + [ + "▁Egypt", + -11.187228202819824 + ], + [ + "▁habit", + -11.187426567077637 + ], + [ + "vit", + -11.187439918518066 + ], + [ + "person", + -11.187470436096191 + ], + [ + "▁hesitate", + -11.187583923339844 + ], + [ + "▁hired", + -11.187825202941895 + ], + [ + "▁Tower", + -11.188353538513184 + ], + [ + "▁wines", + -11.188396453857422 + ], + [ + "bus", + -11.188499450683594 + ], + [ + "▁considerable", + -11.188647270202637 + ], + [ + "▁poetry", + -11.188647270202637 + ], + [ + "▁colorful", + -11.189014434814453 + ], + [ + "▁Channel", + -11.189411163330078 + ], + [ + "▁accompanied", + -11.189852714538574 + ], + [ + "▁participated", + -11.19010066986084 + ], + [ + "▁Ring", + -11.190269470214844 + ], + [ + "▁ISO", + -11.190471649169922 + ], + [ + "▁conditioning", + -11.190546035766602 + ], + [ + "▁tiles", + -11.190674781799316 + ], + [ + "▁penalty", + -11.190784454345703 + ], + [ + "▁Bad", + -11.191052436828613 + ], + [ + "▁anytime", + -11.191119194030762 + ], + [ + "▁dear", + -11.191268920898438 + ], + [ + "▁mixing", + -11.191357612609863 + ], + [ + "▁phrase", + -11.19155216217041 + ], + [ + "DE", + -11.191581726074219 + ], + [ + "▁establishment", + -11.191733360290527 + ], + [ + "▁dancing", + -11.192208290100098 + ], + [ + "▁Often", + -11.192505836486816 + ], + [ + "▁Clinton", + -11.192713737487793 + ], + [ + "▁arise", + -11.192903518676758 + ], + [ + "▁2.5", + -11.193108558654785 + ], + [ + "▁Han", + -11.193134307861328 + ], + [ + "lig", + -11.19320011138916 + ], + [ + "▁sh", + -11.193546295166016 + ], + [ + "bol", + -11.193700790405273 + ], + [ + "▁offense", + -11.193720817565918 + ], + [ + "▁confirmation", + -11.19373893737793 + ], + [ + "▁blame", + -11.193960189819336 + ], + [ + "▁threats", + -11.193995475769043 + ], + [ + "▁Analysis", + -11.194046020507812 + ], + [ + "▁valley", + -11.19424057006836 + ], + [ + "▁downloaded", + -11.194258689880371 + ], + [ + "▁PhD", + -11.194311141967773 + ], + [ + "▁refuse", + -11.194327354431152 + ], + [ + "▁Animal", + -11.19459056854248 + ], + [ + "▁musicians", + -11.194669723510742 + ], + [ + "▁oxygen", + -11.194925308227539 + ], + [ + "▁technicians", + -11.194938659667969 + ], + [ + "▁brothers", + -11.195107460021973 + ], + [ + "gov", + -11.19533920288086 + ], + [ + "▁fiscal", + -11.195560455322266 + ], + [ + "▁Governor", + -11.195633888244629 + ], + [ + "▁affects", + -11.195693969726562 + ], + [ + "▁cr", + -11.195712089538574 + ], + [ + "▁immigration", + -11.195791244506836 + ], + [ + "▁Wine", + -11.195822715759277 + ], + [ + "▁Walk", + -11.195941925048828 + ], + [ + "▁logic", + -11.196083068847656 + ], + [ + "▁Patrick", + -11.196223258972168 + ], + [ + "▁Additional", + -11.196255683898926 + ], + [ + "▁nicely", + -11.196429252624512 + ], + [ + "▁stir", + -11.196503639221191 + ], + [ + "▁Bag", + -11.196642875671387 + ], + [ + "▁profiles", + -11.196742057800293 + ], + [ + "▁measurements", + -11.1969575881958 + ], + [ + "▁stakeholders", + -11.197526931762695 + ], + [ + "▁Cambridge", + -11.197667121887207 + ], + [ + "emb", + -11.197747230529785 + ], + [ + "▁agricultural", + -11.197815895080566 + ], + [ + "▁donations", + -11.19791030883789 + ], + [ + "▁branches", + -11.198145866394043 + ], + [ + "▁reserves", + -11.198453903198242 + ], + [ + "▁annually", + -11.198484420776367 + ], + [ + "▁delight", + -11.198596954345703 + ], + [ + "▁cuisine", + -11.198894500732422 + ], + [ + "▁9.", + -11.199045181274414 + ], + [ + "▁bearing", + -11.199188232421875 + ], + [ + "▁Motor", + -11.199483871459961 + ], + [ + "▁translate", + -11.199504852294922 + ], + [ + "ó", + -11.199784278869629 + ], + [ + "▁bottles", + -11.199929237365723 + ], + [ + "▁constitute", + -11.199983596801758 + ], + [ + "UN", + -11.200054168701172 + ], + [ + "▁Med", + -11.20019245147705 + ], + [ + "▁800", + -11.200271606445312 + ], + [ + "▁surprising", + -11.200357437133789 + ], + [ + "▁Muslim", + -11.200393676757812 + ], + [ + "une", + -11.200435638427734 + ], + [ + "▁Sol", + -11.200705528259277 + ], + [ + "▁Print", + -11.200800895690918 + ], + [ + "▁Castle", + -11.200810432434082 + ], + [ + "▁incorporated", + -11.201350212097168 + ], + [ + "-11", + -11.201501846313477 + ], + [ + "▁5-", + -11.201567649841309 + ], + [ + "▁warrant", + -11.201905250549316 + ], + [ + "▁entrepreneurs", + -11.202088356018066 + ], + [ + "real", + -11.202241897583008 + ], + [ + "▁feeding", + -11.202479362487793 + ], + [ + "▁Anyway", + -11.20250415802002 + ], + [ + "▁Nations", + -11.202876091003418 + ], + [ + "▁protocol", + -11.20306396484375 + ], + [ + "▁Clear", + -11.203105926513672 + ], + [ + "▁receiver", + -11.203129768371582 + ], + [ + "▁utilizing", + -11.203145027160645 + ], + [ + "▁trucks", + -11.20340347290039 + ], + [ + "▁Had", + -11.203432083129883 + ], + [ + "▁precisely", + -11.203450202941895 + ], + [ + "▁Say", + -11.203765869140625 + ], + [ + "▁harmful", + -11.203909873962402 + ], + [ + "▁soldiers", + -11.204096794128418 + ], + [ + "ERS", + -11.204253196716309 + ], + [ + "OP", + -11.204323768615723 + ], + [ + "▁query", + -11.204413414001465 + ], + [ + "▁Vietnam", + -11.204427719116211 + ], + [ + "SS", + -11.204436302185059 + ], + [ + "▁Springs", + -11.204586029052734 + ], + [ + "▁Bro", + -11.204745292663574 + ], + [ + "▁canvas", + -11.204843521118164 + ], + [ + "bad", + -11.204874038696289 + ], + [ + "verse", + -11.204886436462402 + ], + [ + "▁collecting", + -11.204916000366211 + ], + [ + "▁plumbing", + -11.20606517791748 + ], + [ + "▁hunt", + -11.206258773803711 + ], + [ + "▁YOUR", + -11.20650863647461 + ], + [ + "▁$100", + -11.206701278686523 + ], + [ + "sol", + -11.206758499145508 + ], + [ + "ration", + -11.207143783569336 + ], + [ + "▁Allen", + -11.207147598266602 + ], + [ + "▁walks", + -11.207178115844727 + ], + [ + "▁suited", + -11.207184791564941 + ], + [ + "▁Fun", + -11.2075777053833 + ], + [ + "▁pub", + -11.207616806030273 + ], + [ + "▁Bon", + -11.207659721374512 + ], + [ + "▁somebody", + -11.207840919494629 + ], + [ + "ali", + -11.207870483398438 + ], + [ + "▁sustainability", + -11.207893371582031 + ], + [ + "▁hitting", + -11.20822811126709 + ], + [ + "▁seasonal", + -11.208359718322754 + ], + [ + "▁dig", + -11.20854663848877 + ], + [ + "PE", + -11.208562850952148 + ], + [ + "▁gel", + -11.208608627319336 + ], + [ + "▁Ross", + -11.208717346191406 + ], + [ + "▁painful", + -11.208849906921387 + ], + [ + "▁ceramic", + -11.20895004272461 + ], + [ + "▁Deep", + -11.208986282348633 + ], + [ + "▁magnetic", + -11.209000587463379 + ], + [ + "▁hiking", + -11.209264755249023 + ], + [ + "▁nest", + -11.209297180175781 + ], + [ + "bas", + -11.209493637084961 + ], + [ + "▁essays", + -11.20952320098877 + ], + [ + "▁pension", + -11.209577560424805 + ], + [ + "▁liver", + -11.209632873535156 + ], + [ + "▁calculated", + -11.20995044708252 + ], + [ + "▁1-", + -11.210005760192871 + ], + [ + "▁actors", + -11.210118293762207 + ], + [ + "▁crushing", + -11.21047592163086 + ], + [ + "▁tailored", + -11.21077823638916 + ], + [ + "▁holder", + -11.211007118225098 + ], + [ + "erie", + -11.211018562316895 + ], + [ + "▁Cleaning", + -11.211195945739746 + ], + [ + "▁drill", + -11.211358070373535 + ], + [ + "school", + -11.211368560791016 + ], + [ + "gel", + -11.211641311645508 + ], + [ + "▁shorter", + -11.211674690246582 + ], + [ + "▁departments", + -11.211729049682617 + ], + [ + "▁frozen", + -11.211756706237793 + ], + [ + "▁Better", + -11.211877822875977 + ], + [ + "tem", + -11.211918830871582 + ], + [ + "▁nurse", + -11.211928367614746 + ], + [ + "▁construct", + -11.211966514587402 + ], + [ + "▁10-", + -11.212090492248535 + ], + [ + "▁Posted", + -11.212417602539062 + ], + [ + "▁True", + -11.212596893310547 + ], + [ + "▁stopping", + -11.212730407714844 + ], + [ + "▁Reserve", + -11.212894439697266 + ], + [ + "▁Coffee", + -11.212973594665527 + ], + [ + "▁mystery", + -11.213507652282715 + ], + [ + "▁Diamond", + -11.213520050048828 + ], + [ + "▁theater", + -11.213618278503418 + ], + [ + "RT", + -11.21367073059082 + ], + [ + "what", + -11.213818550109863 + ], + [ + "▁eco", + -11.213869094848633 + ], + [ + "▁satisfy", + -11.213913917541504 + ], + [ + "`", + -11.213958740234375 + ], + [ + "1%", + -11.214058876037598 + ], + [ + "▁Storage", + -11.214219093322754 + ], + [ + "pad", + -11.21423625946045 + ], + [ + "▁acceptance", + -11.214473724365234 + ], + [ + "▁potatoes", + -11.21455192565918 + ], + [ + "order", + -11.214631080627441 + ], + [ + "EP", + -11.214642524719238 + ], + [ + "▁medications", + -11.2147216796875 + ], + [ + "▁routes", + -11.214824676513672 + ], + [ + "▁temple", + -11.214927673339844 + ], + [ + "▁drops", + -11.214983940124512 + ], + [ + "core", + -11.215444564819336 + ], + [ + "▁DIY", + -11.215517044067383 + ], + [ + "▁Comp", + -11.2157564163208 + ], + [ + "zen", + -11.215770721435547 + ], + [ + "▁cleaner", + -11.215947151184082 + ], + [ + "▁guided", + -11.215980529785156 + ], + [ + "▁peaceful", + -11.216340065002441 + ], + [ + "▁Later", + -11.21645736694336 + ], + [ + "▁Sorry", + -11.21688175201416 + ], + [ + "▁Previous", + -11.21721076965332 + ], + [ + "▁carries", + -11.217534065246582 + ], + [ + "▁Gun", + -11.217795372009277 + ], + [ + "▁qualities", + -11.21793270111084 + ], + [ + "▁plugin", + -11.218311309814453 + ], + [ + "▁scoring", + -11.218335151672363 + ], + [ + "▁guilty", + -11.218466758728027 + ], + [ + "▁ships", + -11.218486785888672 + ], + [ + "▁modify", + -11.218509674072266 + ], + [ + "▁Base", + -11.219048500061035 + ], + [ + "2)", + -11.21905517578125 + ], + [ + "▁density", + -11.219099998474121 + ], + [ + "▁suits", + -11.219200134277344 + ], + [ + "▁suspension", + -11.219379425048828 + ], + [ + "▁scrap", + -11.219696044921875 + ], + [ + "▁47", + -11.219819068908691 + ], + [ + "▁maximize", + -11.220178604125977 + ], + [ + "▁login", + -11.220478057861328 + ], + [ + "▁renowned", + -11.220539093017578 + ], + [ + "▁passage", + -11.220610618591309 + ], + [ + "▁Mexican", + -11.220706939697266 + ], + [ + "▁cyber", + -11.220746994018555 + ], + [ + "▁shelter", + -11.220965385437012 + ], + [ + "▁costly", + -11.22108268737793 + ], + [ + "▁odds", + -11.22120475769043 + ], + [ + "▁Bedroom", + -11.221564292907715 + ], + [ + "▁bake", + -11.221625328063965 + ], + [ + "lit", + -11.221884727478027 + ], + [ + "▁voting", + -11.222055435180664 + ], + [ + "▁recommendation", + -11.222146034240723 + ], + [ + "▁Ice", + -11.22232723236084 + ], + [ + "▁apparent", + -11.222372055053711 + ], + [ + "▁Bookmark", + -11.222495079040527 + ], + [ + "▁obligation", + -11.222525596618652 + ], + [ + "▁Dun", + -11.222969055175781 + ], + [ + "▁Ok", + -11.223051071166992 + ], + [ + "▁Got", + -11.223383903503418 + ], + [ + "▁treasure", + -11.223579406738281 + ], + [ + "▁stem", + -11.223700523376465 + ], + [ + "▁flavors", + -11.223773956298828 + ], + [ + "▁Close", + -11.224186897277832 + ], + [ + "▁passenger", + -11.22420883178711 + ], + [ + "▁utilized", + -11.22428035736084 + ], + [ + "с", + -11.224316596984863 + ], + [ + "▁Clark", + -11.224556922912598 + ], + [ + "▁promises", + -11.224569320678711 + ], + [ + "▁knife", + -11.22465705871582 + ], + [ + "▁transparent", + -11.224775314331055 + ], + [ + "▁coaches", + -11.225085258483887 + ], + [ + "ENT", + -11.22520637512207 + ], + [ + "gram", + -11.225229263305664 + ], + [ + "▁delighted", + -11.225279808044434 + ], + [ + "▁abstract", + -11.22531509399414 + ], + [ + "▁delicate", + -11.225406646728516 + ], + [ + "▁Metro", + -11.22595500946045 + ], + [ + "▁€", + -11.225974082946777 + ], + [ + "▁Arab", + -11.2260103225708 + ], + [ + "▁Electric", + -11.226156234741211 + ], + [ + "lib", + -11.226297378540039 + ], + [ + "CD", + -11.226958274841309 + ], + [ + "▁pile", + -11.227104187011719 + ], + [ + "▁Anna", + -11.22716999053955 + ], + [ + "▁voted", + -11.227240562438965 + ], + [ + "▁weapon", + -11.227519035339355 + ], + [ + "▁1,000", + -11.22793960571289 + ], + [ + "▁Bri", + -11.227967262268066 + ], + [ + "▁fancy", + -11.22800350189209 + ], + [ + "▁Ultra", + -11.228144645690918 + ], + [ + "▁outdoors", + -11.228171348571777 + ], + [ + "▁alternatives", + -11.228333473205566 + ], + [ + "▁Death", + -11.228668212890625 + ], + [ + "▁absorb", + -11.228890419006348 + ], + [ + "▁Galaxy", + -11.228897094726562 + ], + [ + "▁purple", + -11.229167938232422 + ], + [ + "▁attorneys", + -11.22951602935791 + ], + [ + "▁snap", + -11.230220794677734 + ], + [ + "▁conservative", + -11.230504989624023 + ], + [ + "▁Convention", + -11.230801582336426 + ], + [ + "▁minds", + -11.230997085571289 + ], + [ + "▁prints", + -11.231010437011719 + ], + [ + "▁AR", + -11.231122970581055 + ], + [ + "▁computing", + -11.23127555847168 + ], + [ + "▁sits", + -11.23194694519043 + ], + [ + "▁Fan", + -11.232014656066895 + ], + [ + "▁drove", + -11.232409477233887 + ], + [ + "▁steady", + -11.233480453491211 + ], + [ + "▁substitute", + -11.233643531799316 + ], + [ + "▁containers", + -11.233827590942383 + ], + [ + "▁alter", + -11.233938217163086 + ], + [ + "▁pal", + -11.233966827392578 + ], + [ + "owned", + -11.234448432922363 + ], + [ + "▁Pal", + -11.23460578918457 + ], + [ + "▁BBC", + -11.234639167785645 + ], + [ + "▁Char", + -11.23476791381836 + ], + [ + "▁Companies", + -11.235221862792969 + ], + [ + "▁determination", + -11.2353515625 + ], + [ + "▁Rather", + -11.235435485839844 + ], + [ + "▁Cro", + -11.235508918762207 + ], + [ + "PP", + -11.235708236694336 + ], + [ + "▁Indeed", + -11.236005783081055 + ], + [ + "GE", + -11.236032485961914 + ], + [ + "▁wa", + -11.236058235168457 + ], + [ + "▁GPS", + -11.236540794372559 + ], + [ + "bot", + -11.236719131469727 + ], + [ + "▁treating", + -11.237044334411621 + ], + [ + "▁nonprofit", + -11.237236022949219 + ], + [ + "▁Hair", + -11.237239837646484 + ], + [ + "▁fridge", + -11.237339973449707 + ], + [ + "▁Des", + -11.237439155578613 + ], + [ + "▁neighbors", + -11.237531661987305 + ], + [ + "▁mature", + -11.237545013427734 + ], + [ + "▁CR", + -11.237563133239746 + ], + [ + "▁publications", + -11.237597465515137 + ], + [ + "▁barely", + -11.237626075744629 + ], + [ + "▁Yeah", + -11.237884521484375 + ], + [ + "▁Kelly", + -11.237935066223145 + ], + [ + "▁Christians", + -11.238006591796875 + ], + [ + "000", + -11.238036155700684 + ], + [ + "▁Solar", + -11.238183975219727 + ], + [ + "▁preferences", + -11.238368034362793 + ], + [ + "ult", + -11.238515853881836 + ], + [ + "▁wing", + -11.238689422607422 + ], + [ + "▁centuries", + -11.238937377929688 + ], + [ + "▁agreements", + -11.239148139953613 + ], + [ + "▁Corp", + -11.239225387573242 + ], + [ + "▁Ren", + -11.23961067199707 + ], + [ + "▁shades", + -11.239632606506348 + ], + [ + "▁Java", + -11.23974323272705 + ], + [ + "▁maker", + -11.239923477172852 + ], + [ + "▁stamp", + -11.239956855773926 + ], + [ + "ening", + -11.240398406982422 + ], + [ + "maker", + -11.240649223327637 + ], + [ + "▁Flash", + -11.240787506103516 + ], + [ + "▁confused", + -11.240896224975586 + ], + [ + "▁54", + -11.241470336914062 + ], + [ + "▁distinctive", + -11.241687774658203 + ], + [ + "▁Staff", + -11.24196720123291 + ], + [ + "▁psychological", + -11.242348670959473 + ], + [ + "▁converted", + -11.242377281188965 + ], + [ + "▁Kan", + -11.24251651763916 + ], + [ + "lac", + -11.24262809753418 + ], + [ + "▁rush", + -11.242764472961426 + ], + [ + "▁ANY", + -11.242877960205078 + ], + [ + "▁tear", + -11.243000030517578 + ], + [ + "CL", + -11.243023872375488 + ], + [ + "?!", + -11.24322509765625 + ], + [ + "▁cultures", + -11.24357795715332 + ], + [ + "▁slight", + -11.243669509887695 + ], + [ + "▁Article", + -11.243720054626465 + ], + [ + "EL", + -11.243721008300781 + ], + [ + "▁360", + -11.243776321411133 + ], + [ + "only", + -11.244041442871094 + ], + [ + "▁ladies", + -11.244222640991211 + ], + [ + "▁measuring", + -11.244319915771484 + ], + [ + "▁Engine", + -11.244566917419434 + ], + [ + "▁specialty", + -11.244649887084961 + ], + [ + "hill", + -11.244819641113281 + ], + [ + "▁begun", + -11.245147705078125 + ], + [ + "▁promised", + -11.245159149169922 + ], + [ + "▁developments", + -11.245192527770996 + ], + [ + "▁Championship", + -11.245388984680176 + ], + [ + "als", + -11.245560646057129 + ], + [ + "bridge", + -11.245996475219727 + ], + [ + "▁USD", + -11.246100425720215 + ], + [ + "▁replacing", + -11.246147155761719 + ], + [ + "▁hell", + -11.246357917785645 + ], + [ + "▁scholarship", + -11.246467590332031 + ], + [ + "shire", + -11.247612953186035 + ], + [ + "▁Mind", + -11.247864723205566 + ], + [ + "zer", + -11.247962951660156 + ], + [ + "▁soccer", + -11.247979164123535 + ], + [ + "active", + -11.248233795166016 + ], + [ + "All", + -11.248306274414062 + ], + [ + "▁palm", + -11.248387336730957 + ], + [ + "▁breathing", + -11.248421669006348 + ], + [ + "lies", + -11.2485990524292 + ], + [ + "▁Anne", + -11.24924373626709 + ], + [ + "▁tablets", + -11.249391555786133 + ], + [ + "▁defend", + -11.24946403503418 + ], + [ + "ico", + -11.249622344970703 + ], + [ + "iest", + -11.24964427947998 + ], + [ + "▁intimate", + -11.249696731567383 + ], + [ + "rium", + -11.249959945678711 + ], + [ + "▁Race", + -11.250151634216309 + ], + [ + "ttle", + -11.250216484069824 + ], + [ + "▁adjustable", + -11.250407218933105 + ], + [ + "CP", + -11.25047779083252 + ], + [ + "▁nuts", + -11.250787734985352 + ], + [ + "▁filters", + -11.251192092895508 + ], + [ + "▁Islamic", + -11.251197814941406 + ], + [ + "▁blessed", + -11.251343727111816 + ], + [ + "▁unlimited", + -11.251832962036133 + ], + [ + "▁Lock", + -11.252130508422852 + ], + [ + "▁revolution", + -11.252190589904785 + ], + [ + "▁Angel", + -11.252213478088379 + ], + [ + "mol", + -11.25224781036377 + ], + [ + "▁Temple", + -11.252264976501465 + ], + [ + "LD", + -11.25229263305664 + ], + [ + "▁cave", + -11.252538681030273 + ], + [ + "▁Ham", + -11.252548217773438 + ], + [ + "They", + -11.253389358520508 + ], + [ + "▁dozen", + -11.253397941589355 + ], + [ + "▁checks", + -11.253410339355469 + ], + [ + "▁ranking", + -11.2535982131958 + ], + [ + "▁Wal", + -11.253636360168457 + ], + [ + "tric", + -11.253885269165039 + ], + [ + "▁beliefs", + -11.254251480102539 + ], + [ + "▁lid", + -11.254349708557129 + ], + [ + "▁vendor", + -11.254715919494629 + ], + [ + "▁Vancouver", + -11.254767417907715 + ], + [ + "▁Navy", + -11.255375862121582 + ], + [ + "▁Villa", + -11.25540542602539 + ], + [ + "▁biological", + -11.255916595458984 + ], + [ + "tive", + -11.25592041015625 + ], + [ + "fall", + -11.256037712097168 + ], + [ + "pen", + -11.256199836730957 + ], + [ + "▁grants", + -11.256243705749512 + ], + [ + "speed", + -11.256261825561523 + ], + [ + "▁intake", + -11.256438255310059 + ], + [ + "▁architectural", + -11.256793975830078 + ], + [ + "▁powers", + -11.256988525390625 + ], + [ + "CT", + -11.256994247436523 + ], + [ + "▁je", + -11.257075309753418 + ], + [ + "▁Sat", + -11.25715160369873 + ], + [ + "html", + -11.25722599029541 + ], + [ + "▁Ros", + -11.25725269317627 + ], + [ + "▁separately", + -11.257492065429688 + ], + [ + "▁automation", + -11.257741928100586 + ], + [ + "▁Heat", + -11.258035659790039 + ], + [ + "ava", + -11.258227348327637 + ], + [ + "▁Throughout", + -11.258275032043457 + ], + [ + "▁Battle", + -11.258291244506836 + ], + [ + "▁7,", + -11.258548736572266 + ], + [ + "ending", + -11.258709907531738 + ], + [ + "▁cabin", + -11.258757591247559 + ], + [ + "▁precision", + -11.258967399597168 + ], + [ + "▁quilt", + -11.2593994140625 + ], + [ + "lad", + -11.259466171264648 + ], + [ + "▁colored", + -11.259605407714844 + ], + [ + "▁excuse", + -11.259714126586914 + ], + [ + "▁bite", + -11.25971508026123 + ], + [ + "▁Together", + -11.25989055633545 + ], + [ + "▁tourists", + -11.259916305541992 + ], + [ + "cur", + -11.260103225708008 + ], + [ + "▁instructor", + -11.260369300842285 + ], + [ + "▁Indiana", + -11.260394096374512 + ], + [ + "▁rewards", + -11.26054573059082 + ], + [ + "▁labels", + -11.260645866394043 + ], + [ + "▁homeowners", + -11.261002540588379 + ], + [ + "craft", + -11.26102352142334 + ], + [ + "▁complexity", + -11.261103630065918 + ], + [ + "▁flip", + -11.2611665725708 + ], + [ + "▁complaints", + -11.261441230773926 + ], + [ + "▁Doctor", + -11.261627197265625 + ], + [ + "▁CS", + -11.261691093444824 + ], + [ + "▁responded", + -11.261940956115723 + ], + [ + "▁simultaneously", + -11.261959075927734 + ], + [ + "▁warehouse", + -11.2622709274292 + ], + [ + "▁taxi", + -11.262625694274902 + ], + [ + "Depending", + -11.26267147064209 + ], + [ + "open", + -11.26290225982666 + ], + [ + "▁drag", + -11.262932777404785 + ], + [ + "▁Inside", + -11.26335334777832 + ], + [ + "lash", + -11.263655662536621 + ], + [ + "▁Lane", + -11.263916969299316 + ], + [ + "▁marijuana", + -11.263936042785645 + ], + [ + "▁disabled", + -11.26413631439209 + ], + [ + "▁Friends", + -11.264276504516602 + ], + [ + "▁Safe", + -11.264444351196289 + ], + [ + "▁Rick", + -11.264554023742676 + ], + [ + "aci", + -11.264573097229004 + ], + [ + "NET", + -11.264798164367676 + ], + [ + "▁overwhelming", + -11.265073776245117 + ], + [ + "▁classical", + -11.265236854553223 + ], + [ + "▁IBM", + -11.265241622924805 + ], + [ + "▁lap", + -11.265260696411133 + ], + [ + "▁CI", + -11.26590633392334 + ], + [ + "▁thermal", + -11.265974998474121 + ], + [ + "▁wellness", + -11.266098022460938 + ], + [ + "▁navigation", + -11.26610279083252 + ], + [ + "▁bin", + -11.266315460205078 + ], + [ + "▁pollution", + -11.266451835632324 + ], + [ + "ching", + -11.266453742980957 + ], + [ + "▁Cho", + -11.266595840454102 + ], + [ + "▁tries", + -11.266661643981934 + ], + [ + "▁Iowa", + -11.266703605651855 + ], + [ + "New", + -11.266792297363281 + ], + [ + "▁vent", + -11.266922950744629 + ], + [ + "▁derived", + -11.267181396484375 + ], + [ + "CH", + -11.267308235168457 + ], + [ + "far", + -11.267888069152832 + ], + [ + "▁disappointed", + -11.267894744873047 + ], + [ + "▁1993", + -11.268000602722168 + ], + [ + "▁Tre", + -11.268335342407227 + ], + [ + "▁Assembly", + -11.268599510192871 + ], + [ + "▁paste", + -11.268712997436523 + ], + [ + "▁Ol", + -11.268842697143555 + ], + [ + "▁additionally", + -11.269190788269043 + ], + [ + "▁receipt", + -11.269440650939941 + ], + [ + "▁Gift", + -11.2694673538208 + ], + [ + "▁roller", + -11.269676208496094 + ], + [ + "▁antique", + -11.26979923248291 + ], + [ + "▁consume", + -11.270045280456543 + ], + [ + "▁cluster", + -11.270716667175293 + ], + [ + "▁Value", + -11.27104377746582 + ], + [ + "▁Pool", + -11.271103858947754 + ], + [ + "▁wi", + -11.271183013916016 + ], + [ + "▁instances", + -11.271599769592285 + ], + [ + "wick", + -11.271994590759277 + ], + [ + "▁identical", + -11.272705078125 + ], + [ + "3%", + -11.27291202545166 + ], + [ + "▁continuously", + -11.273067474365234 + ], + [ + "▁quest", + -11.273140907287598 + ], + [ + "▁spoken", + -11.273211479187012 + ], + [ + "▁motivated", + -11.273249626159668 + ], + [ + "▁lean", + -11.273256301879883 + ], + [ + "▁towns", + -11.273305892944336 + ], + [ + "▁Alliance", + -11.273526191711426 + ], + [ + "▁backyard", + -11.273534774780273 + ], + [ + "▁valve", + -11.274003982543945 + ], + [ + "▁IL", + -11.274054527282715 + ], + [ + "▁Lab", + -11.274481773376465 + ], + [ + "▁Eco", + -11.274581909179688 + ], + [ + "▁Letter", + -11.274596214294434 + ], + [ + "▁possession", + -11.274900436401367 + ], + [ + "▁Fine", + -11.274950981140137 + ], + [ + "▁disposal", + -11.27497386932373 + ], + [ + "▁Toyota", + -11.27502155303955 + ], + [ + "▁2020", + -11.275528907775879 + ], + [ + "▁gross", + -11.275603294372559 + ], + [ + "▁notification", + -11.275778770446777 + ], + [ + "▁prospect", + -11.27582836151123 + ], + [ + "los", + -11.275922775268555 + ], + [ + "EN", + -11.276090621948242 + ], + [ + "▁Highway", + -11.276122093200684 + ], + [ + "▁snack", + -11.276198387145996 + ], + [ + "▁Rich", + -11.276297569274902 + ], + [ + "▁dial", + -11.276342391967773 + ], + [ + "▁publicly", + -11.276374816894531 + ], + [ + "anna", + -11.276412010192871 + ], + [ + "vol", + -11.276453018188477 + ], + [ + "▁legitimate", + -11.276505470275879 + ], + [ + "▁motorcycle", + -11.276700019836426 + ], + [ + "▁nutrients", + -11.276703834533691 + ], + [ + "▁expecting", + -11.276711463928223 + ], + [ + "▁camping", + -11.276726722717285 + ], + [ + "▁Communications", + -11.276758193969727 + ], + [ + "▁Prize", + -11.276810646057129 + ], + [ + "▁fur", + -11.276935577392578 + ], + [ + "▁Block", + -11.277070045471191 + ], + [ + "▁semester", + -11.27711296081543 + ], + [ + "▁Leave", + -11.277164459228516 + ], + [ + "▁jo", + -11.277190208435059 + ], + [ + "▁comic", + -11.27721118927002 + ], + [ + "▁BR", + -11.27727222442627 + ], + [ + "▁experimental", + -11.277294158935547 + ], + [ + "after", + -11.277445793151855 + ], + [ + "hir", + -11.27753734588623 + ], + [ + "▁sponsored", + -11.27763843536377 + ], + [ + "▁protest", + -11.2777738571167 + ], + [ + "▁Oklahoma", + -11.278440475463867 + ], + [ + "▁Sweet", + -11.278504371643066 + ], + [ + "place", + -11.278675079345703 + ], + [ + "▁grocery", + -11.2787446975708 + ], + [ + "▁steep", + -11.278841018676758 + ], + [ + "▁premier", + -11.278983116149902 + ], + [ + "▁countless", + -11.279011726379395 + ], + [ + "▁airline", + -11.27914810180664 + ], + [ + "▁Ron", + -11.279202461242676 + ], + [ + "AA", + -11.279627799987793 + ], + [ + "▁modules", + -11.279644966125488 + ], + [ + "▁Send", + -11.279666900634766 + ], + [ + "▁Major", + -11.279780387878418 + ], + [ + "▁2009.", + -11.27982234954834 + ], + [ + "determining", + -11.279898643493652 + ], + [ + "▁loading", + -11.279902458190918 + ], + [ + "▁Girl", + -11.280054092407227 + ], + [ + "▁Peace", + -11.280322074890137 + ], + [ + "depth", + -11.280769348144531 + ], + [ + "▁hassle", + -11.280964851379395 + ], + [ + "rated", + -11.280965805053711 + ], + [ + "▁Gre", + -11.281070709228516 + ], + [ + "▁Certificate", + -11.28127670288086 + ], + [ + "▁ears", + -11.281290054321289 + ], + [ + "▁Denver", + -11.28133487701416 + ], + [ + "lect", + -11.281533241271973 + ], + [ + "LL", + -11.2816162109375 + ], + [ + "wal", + -11.281638145446777 + ], + [ + "▁Used", + -11.28168773651123 + ], + [ + "▁decorative", + -11.282072067260742 + ], + [ + "▁Nigeria", + -11.282108306884766 + ], + [ + "▁breach", + -11.282259941101074 + ], + [ + "▁ge", + -11.282503128051758 + ], + [ + "lant", + -11.282569885253906 + ], + [ + "▁terrace", + -11.282877922058105 + ], + [ + "▁Anderson", + -11.28294849395752 + ], + [ + "▁Urban", + -11.283358573913574 + ], + [ + "ough", + -11.283394813537598 + ], + [ + "▁EP", + -11.283538818359375 + ], + [ + "▁Heritage", + -11.283815383911133 + ], + [ + "▁homework", + -11.283889770507812 + ], + [ + "▁boundaries", + -11.283931732177734 + ], + [ + "▁Bureau", + -11.283944129943848 + ], + [ + "looking", + -11.284107208251953 + ], + [ + "▁illustrate", + -11.284154891967773 + ], + [ + "base", + -11.284229278564453 + ], + [ + "eal", + -11.284247398376465 + ], + [ + "▁tags", + -11.284326553344727 + ], + [ + "▁Jane", + -11.2843656539917 + ], + [ + "▁locked", + -11.28445816040039 + ], + [ + "п", + -11.284592628479004 + ], + [ + "▁obligations", + -11.284943580627441 + ], + [ + "▁injection", + -11.284957885742188 + ], + [ + "▁disclosure", + -11.28501033782959 + ], + [ + "▁Dragon", + -11.285370826721191 + ], + [ + "wise", + -11.285486221313477 + ], + [ + "▁invitation", + -11.285510063171387 + ], + [ + "▁Craft", + -11.286312103271484 + ], + [ + "▁individually", + -11.286675453186035 + ], + [ + "▁submission", + -11.286815643310547 + ], + [ + "▁discussing", + -11.286881446838379 + ], + [ + "▁jazz", + -11.286986351013184 + ], + [ + "▁climbing", + -11.286991119384766 + ], + [ + "▁invested", + -11.28709602355957 + ], + [ + "▁Bear", + -11.287162780761719 + ], + [ + "▁essence", + -11.287458419799805 + ], + [ + "▁surgical", + -11.287534713745117 + ], + [ + "▁credits", + -11.287787437438965 + ], + [ + "▁accidents", + -11.28836727142334 + ], + [ + "▁Judge", + -11.288407325744629 + ], + [ + "-6", + -11.288723945617676 + ], + [ + "▁balls", + -11.288772583007812 + ], + [ + "▁Chairman", + -11.288982391357422 + ], + [ + "▁cure", + -11.289153099060059 + ], + [ + "▁tomatoes", + -11.289616584777832 + ], + [ + "▁province", + -11.289641380310059 + ], + [ + "hood", + -11.289657592773438 + ], + [ + "▁automotive", + -11.290206909179688 + ], + [ + "▁11.", + -11.290288925170898 + ], + [ + "▁specially", + -11.290369987487793 + ], + [ + "bert", + -11.290380477905273 + ], + [ + "▁AP", + -11.290510177612305 + ], + [ + "▁departure", + -11.290531158447266 + ], + [ + "▁dried", + -11.290576934814453 + ], + [ + "▁1992", + -11.290820121765137 + ], + [ + "▁offerings", + -11.290919303894043 + ], + [ + "▁Lincoln", + -11.29105281829834 + ], + [ + "▁cater", + -11.291083335876465 + ], + [ + "▁striking", + -11.291264533996582 + ], + [ + "phone", + -11.291276931762695 + ], + [ + "▁refrigerator", + -11.291292190551758 + ], + [ + "▁makers", + -11.29145336151123 + ], + [ + "▁Floor", + -11.291582107543945 + ], + [ + "▁celebrating", + -11.291730880737305 + ], + [ + "▁progressive", + -11.292030334472656 + ], + [ + "▁attendance", + -11.292198181152344 + ], + [ + "▁impacts", + -11.292333602905273 + ], + [ + "▁google", + -11.292362213134766 + ], + [ + "bil", + -11.292457580566406 + ], + [ + "lum", + -11.292986869812012 + ], + [ + "▁punch", + -11.293021202087402 + ], + [ + "DR", + -11.293106079101562 + ], + [ + "▁prospective", + -11.293302536010742 + ], + [ + "stick", + -11.293497085571289 + ], + [ + "▁Edward", + -11.293925285339355 + ], + [ + "utter", + -11.293985366821289 + ], + [ + "fold", + -11.294168472290039 + ], + [ + "▁concentrate", + -11.294172286987305 + ], + [ + "▁Olympic", + -11.294344902038574 + ], + [ + "▁react", + -11.294539451599121 + ], + [ + "▁6,", + -11.29455280303955 + ], + [ + "▁2011,", + -11.294598579406738 + ], + [ + "When", + -11.294793128967285 + ], + [ + "▁harsh", + -11.29482364654541 + ], + [ + "▁supporters", + -11.294843673706055 + ], + [ + "▁unfortunately", + -11.29501724243164 + ], + [ + "▁Speed", + -11.295086860656738 + ], + [ + "▁tasty", + -11.295222282409668 + ], + [ + "▁thereby", + -11.2952299118042 + ], + [ + "▁optical", + -11.295323371887207 + ], + [ + "▁comp", + -11.29544734954834 + ], + [ + "▁Sim", + -11.295473098754883 + ], + [ + "▁Mil", + -11.2954740524292 + ], + [ + "exp", + -11.295548439025879 + ], + [ + "inter", + -11.295724868774414 + ], + [ + "▁races", + -11.296299934387207 + ], + [ + "▁fantasy", + -11.296313285827637 + ], + [ + "▁Mas", + -11.296520233154297 + ], + [ + "▁56", + -11.296884536743164 + ], + [ + "▁THIS", + -11.297157287597656 + ], + [ + "▁notion", + -11.297407150268555 + ], + [ + "▁beloved", + -11.297478675842285 + ], + [ + "tics", + -11.297922134399414 + ], + [ + "▁internationally", + -11.2979736328125 + ], + [ + "▁Feel", + -11.2981538772583 + ], + [ + "OD", + -11.29826831817627 + ], + [ + "▁defensive", + -11.298368453979492 + ], + [ + "watch", + -11.298452377319336 + ], + [ + "rom", + -11.298580169677734 + ], + [ + "▁31,", + -11.298641204833984 + ], + [ + "▁NJ", + -11.298805236816406 + ], + [ + "▁easiest", + -11.299249649047852 + ], + [ + "▁max", + -11.299612045288086 + ], + [ + "▁stake", + -11.300098419189453 + ], + [ + "▁destinations", + -11.30010986328125 + ], + [ + "▁HTML", + -11.300480842590332 + ], + [ + "▁forgotten", + -11.300548553466797 + ], + [ + "▁catalog", + -11.300880432128906 + ], + [ + "▁permalink", + -11.300901412963867 + ], + [ + "▁Official", + -11.300943374633789 + ], + [ + "▁Maria", + -11.300976753234863 + ], + [ + "▁Innovation", + -11.300983428955078 + ], + [ + "▁rolled", + -11.300994873046875 + ], + [ + "mond", + -11.301092147827148 + ], + [ + "▁blank", + -11.30109691619873 + ], + [ + "▁hi", + -11.301345825195312 + ], + [ + "▁attach", + -11.301743507385254 + ], + [ + "▁gains", + -11.30177116394043 + ], + [ + "▁tick", + -11.301773071289062 + ], + [ + "▁appreciation", + -11.301851272583008 + ], + [ + "▁Consumer", + -11.30211353302002 + ], + [ + "▁diagnostic", + -11.302818298339844 + ], + [ + "deemed", + -11.302939414978027 + ], + [ + "▁earning", + -11.30301284790039 + ], + [ + "▁blogging", + -11.303044319152832 + ], + [ + "▁ethical", + -11.303338050842285 + ], + [ + "▁2010,", + -11.30335521697998 + ], + [ + "▁CV", + -11.303533554077148 + ], + [ + "▁wrapped", + -11.303574562072754 + ], + [ + "FP", + -11.303898811340332 + ], + [ + "▁Cla", + -11.304006576538086 + ], + [ + "▁boats", + -11.304195404052734 + ], + [ + "CR", + -11.304574012756348 + ], + [ + "▁Football", + -11.304693222045898 + ], + [ + "▁ordering", + -11.304718017578125 + ], + [ + "▁significance", + -11.304952621459961 + ], + [ + "wall", + -11.305033683776855 + ], + [ + "▁RO", + -11.305428504943848 + ], + [ + "▁Hor", + -11.305512428283691 + ], + [ + "▁rocks", + -11.30553150177002 + ], + [ + "where", + -11.30555248260498 + ], + [ + "▁gradually", + -11.305583000183105 + ], + [ + "ctor", + -11.3059663772583 + ], + [ + "▁investor", + -11.306085586547852 + ], + [ + "▁fed", + -11.306264877319336 + ], + [ + "▁tropical", + -11.306351661682129 + ], + [ + "▁durability", + -11.306360244750977 + ], + [ + "oul", + -11.306561470031738 + ], + [ + "cover", + -11.306596755981445 + ], + [ + "▁Malaysia", + -11.306778907775879 + ], + [ + "ites", + -11.307317733764648 + ], + [ + "▁51", + -11.307504653930664 + ], + [ + "via", + -11.307530403137207 + ], + [ + "▁affiliate", + -11.307825088500977 + ], + [ + "most", + -11.308076858520508 + ], + [ + "pic", + -11.308357238769531 + ], + [ + "▁mutual", + -11.308395385742188 + ], + [ + "▁indication", + -11.308525085449219 + ], + [ + "▁varieties", + -11.308623313903809 + ], + [ + "▁Survey", + -11.309053421020508 + ], + [ + "4.", + -11.309408187866211 + ], + [ + "▁broker", + -11.309581756591797 + ], + [ + "▁Drug", + -11.309639930725098 + ], + [ + "▁wallet", + -11.309782981872559 + ], + [ + "▁backed", + -11.30981159210205 + ], + [ + "▁stove", + -11.310065269470215 + ], + [ + "lat", + -11.310128211975098 + ], + [ + "▁corporations", + -11.310150146484375 + ], + [ + "▁Rep", + -11.310235023498535 + ], + [ + "▁closure", + -11.310522079467773 + ], + [ + "▁stroke", + -11.310892105102539 + ], + [ + "▁Junior", + -11.31090259552002 + ], + [ + "▁Audio", + -11.311683654785156 + ], + [ + "▁oak", + -11.311799049377441 + ], + [ + "▁TR", + -11.311860084533691 + ], + [ + "▁Holiday", + -11.31189250946045 + ], + [ + "▁tremendous", + -11.312047004699707 + ], + [ + "\")", + -11.31218433380127 + ], + [ + "▁sensors", + -11.312203407287598 + ], + [ + "▁Tro", + -11.312432289123535 + ], + [ + "iva", + -11.312469482421875 + ], + [ + "▁unlock", + -11.312485694885254 + ], + [ + "▁convey", + -11.312562942504883 + ], + [ + "▁Alaska", + -11.312743186950684 + ], + [ + "▁deployment", + -11.31300163269043 + ], + [ + "▁Syria", + -11.313309669494629 + ], + [ + "mber", + -11.313725471496582 + ], + [ + "front", + -11.313752174377441 + ], + [ + "▁Tennessee", + -11.313898086547852 + ], + [ + "ground", + -11.313963890075684 + ], + [ + "SO", + -11.314129829406738 + ], + [ + "▁promotional", + -11.314236640930176 + ], + [ + "▁agriculture", + -11.314379692077637 + ], + [ + "▁Must", + -11.31459903717041 + ], + [ + "▁geo", + -11.314786911010742 + ], + [ + "▁teaches", + -11.314892768859863 + ], + [ + "▁denied", + -11.315025329589844 + ], + [ + "▁LOVE", + -11.315059661865234 + ], + [ + "▁radical", + -11.315170288085938 + ], + [ + "4,", + -11.31523323059082 + ], + [ + "▁Jews", + -11.315418243408203 + ], + [ + "▁batch", + -11.31567096710205 + ], + [ + "▁Pr", + -11.315773010253906 + ], + [ + "▁Outdoor", + -11.316104888916016 + ], + [ + "uz", + -11.31613826751709 + ], + [ + "▁Foreign", + -11.316143035888672 + ], + [ + "▁accused", + -11.31651496887207 + ], + [ + "▁Thailand", + -11.316686630249023 + ], + [ + "ATION", + -11.31668758392334 + ], + [ + "▁variations", + -11.316838264465332 + ], + [ + "▁Affairs", + -11.317152976989746 + ], + [ + "▁straightforward", + -11.317401885986328 + ], + [ + "SM", + -11.317582130432129 + ], + [ + "▁restricted", + -11.317602157592773 + ], + [ + "▁wax", + -11.31767749786377 + ], + [ + "▁Recently", + -11.317721366882324 + ], + [ + "▁fallen", + -11.317998886108398 + ], + [ + "▁dec", + -11.318015098571777 + ], + [ + "▁formats", + -11.318275451660156 + ], + [ + "▁regret", + -11.319192886352539 + ], + [ + "▁Payment", + -11.319228172302246 + ], + [ + "▁entities", + -11.319242477416992 + ], + [ + "▁concluded", + -11.31928825378418 + ], + [ + "▁inclusion", + -11.319328308105469 + ], + [ + "▁prospects", + -11.319337844848633 + ], + [ + "▁Tar", + -11.319360733032227 + ], + [ + "▁mechanisms", + -11.31937313079834 + ], + [ + "▁WE", + -11.319485664367676 + ], + [ + "▁EC", + -11.319560050964355 + ], + [ + "case", + -11.319878578186035 + ], + [ + "▁Bachelor", + -11.320085525512695 + ], + [ + "pir", + -11.32011604309082 + ], + [ + "▁algorithm", + -11.320352554321289 + ], + [ + "▁Records", + -11.320513725280762 + ], + [ + "▁Dor", + -11.320581436157227 + ], + [ + "▁tunnel", + -11.320585250854492 + ], + [ + "▁recycling", + -11.320886611938477 + ], + [ + "▁Qu", + -11.320974349975586 + ], + [ + "▁Netherlands", + -11.3209867477417 + ], + [ + "▁weigh", + -11.321145057678223 + ], + [ + "▁Greg", + -11.321195602416992 + ], + [ + "anne", + -11.321208000183105 + ], + [ + "▁coupons", + -11.321640968322754 + ], + [ + "▁ja", + -11.321659088134766 + ], + [ + "▁Saudi", + -11.321910858154297 + ], + [ + "▁facial", + -11.322089195251465 + ], + [ + "▁Legal", + -11.322149276733398 + ], + [ + "▁Portland", + -11.322638511657715 + ], + [ + "▁Tan", + -11.322661399841309 + ], + [ + "▁outlet", + -11.322896957397461 + ], + [ + "pat", + -11.322919845581055 + ], + [ + "▁SW", + -11.322931289672852 + ], + [ + "▁independence", + -11.322992324829102 + ], + [ + "▁Missouri", + -11.323226928710938 + ], + [ + "EX", + -11.32325267791748 + ], + [ + "▁corporation", + -11.323397636413574 + ], + [ + "night", + -11.3234224319458 + ], + [ + "▁aging", + -11.323528289794922 + ], + [ + "Go", + -11.323575019836426 + ], + [ + "▁hadn", + -11.32404613494873 + ], + [ + ".....", + -11.324124336242676 + ], + [ + "▁shadow", + -11.32418155670166 + ], + [ + "▁treats", + -11.324488639831543 + ], + [ + "▁Sept", + -11.324786186218262 + ], + [ + "shop", + -11.324827194213867 + ], + [ + "▁reveals", + -11.324846267700195 + ], + [ + "▁thirty", + -11.324934959411621 + ], + [ + "▁cry", + -11.325175285339355 + ], + [ + "wer", + -11.325417518615723 + ], + [ + "its", + -11.32544231414795 + ], + [ + "▁Meet", + -11.325506210327148 + ], + [ + "word", + -11.326172828674316 + ], + [ + "▁kits", + -11.326254844665527 + ], + [ + "▁liberal", + -11.326345443725586 + ], + [ + "▁variables", + -11.326460838317871 + ], + [ + "▁libraries", + -11.32651138305664 + ], + [ + "▁Pages", + -11.326566696166992 + ], + [ + "LO", + -11.3267240524292 + ], + [ + "▁Thanksgiving", + -11.326852798461914 + ], + [ + "▁optimization", + -11.326948165893555 + ], + [ + "▁demanding", + -11.327024459838867 + ], + [ + "sho", + -11.327035903930664 + ], + [ + "▁lighter", + -11.32707405090332 + ], + [ + "▁Mining", + -11.327291488647461 + ], + [ + "▁Coach", + -11.327404022216797 + ], + [ + "▁adjusted", + -11.327444076538086 + ], + [ + "▁belong", + -11.327454566955566 + ], + [ + "▁Fashion", + -11.327476501464844 + ], + [ + "▁solving", + -11.327635765075684 + ], + [ + "▁readily", + -11.32788372039795 + ], + [ + "dle", + -11.327889442443848 + ], + [ + "▁Zi", + -11.32789134979248 + ], + [ + "▁Usually", + -11.328411102294922 + ], + [ + "cel", + -11.328592300415039 + ], + [ + "▁experiments", + -11.328638076782227 + ], + [ + "▁floral", + -11.328770637512207 + ], + [ + "▁niche", + -11.328861236572266 + ], + [ + "▁nobody", + -11.32903003692627 + ], + [ + "▁Excellent", + -11.329057693481445 + ], + [ + "hold", + -11.329106330871582 + ], + [ + "▁wage", + -11.3296480178833 + ], + [ + "▁dimension", + -11.329744338989258 + ], + [ + "▁funeral", + -11.329849243164062 + ], + [ + "▁manually", + -11.329863548278809 + ], + [ + "▁heated", + -11.33013916015625 + ], + [ + "-15", + -11.330196380615234 + ], + [ + "▁applicants", + -11.3302001953125 + ], + [ + "▁booth", + -11.330331802368164 + ], + [ + "▁skip", + -11.33056926727295 + ], + [ + "phy", + -11.330709457397461 + ], + [ + "print", + -11.330941200256348 + ], + [ + "▁genre", + -11.33128547668457 + ], + [ + "▁180", + -11.331490516662598 + ], + [ + "▁writes", + -11.331588745117188 + ], + [ + "▁perception", + -11.331683158874512 + ], + [ + "▁venues", + -11.331769943237305 + ], + [ + "▁recipient", + -11.331793785095215 + ], + [ + "▁Works", + -11.332341194152832 + ], + [ + "market", + -11.332502365112305 + ], + [ + "▁vegetable", + -11.332602500915527 + ], + [ + "▁pipeline", + -11.3331937789917 + ], + [ + "▁preventing", + -11.333220481872559 + ], + [ + "▁radiation", + -11.333221435546875 + ], + [ + "▁Morgan", + -11.333252906799316 + ], + [ + "▁mobility", + -11.333389282226562 + ], + [ + "▁Cy", + -11.333403587341309 + ], + [ + "▁refused", + -11.333455085754395 + ], + [ + "▁protective", + -11.333475112915039 + ], + [ + "▁liable", + -11.333489418029785 + ], + [ + "▁res", + -11.33385181427002 + ], + [ + "▁handful", + -11.333961486816406 + ], + [ + "▁tire", + -11.334017753601074 + ], + [ + "▁Valentine", + -11.334097862243652 + ], + [ + "▁execute", + -11.334113121032715 + ], + [ + "thro", + -11.33448600769043 + ], + [ + "▁implications", + -11.334789276123047 + ], + [ + "▁intensity", + -11.334859848022461 + ], + [ + "▁subscribe", + -11.334964752197266 + ], + [ + "awa", + -11.335238456726074 + ], + [ + "▁anger", + -11.335240364074707 + ], + [ + "▁Baker", + -11.335433006286621 + ], + [ + "ular", + -11.335541725158691 + ], + [ + "▁diagnosed", + -11.335752487182617 + ], + [ + "▁lying", + -11.335932731628418 + ], + [ + "()", + -11.335997581481934 + ], + [ + "▁responsive", + -11.336182594299316 + ], + [ + "load", + -11.33644962310791 + ], + [ + "▁relie", + -11.336615562438965 + ], + [ + "▁recruitment", + -11.336771011352539 + ], + [ + "▁Ob", + -11.336865425109863 + ], + [ + "▁promo", + -11.337281227111816 + ], + [ + "▁adjacent", + -11.337553024291992 + ], + [ + "▁audiences", + -11.3378324508667 + ], + [ + "▁skirt", + -11.33791732788086 + ], + [ + "good", + -11.337958335876465 + ], + [ + "▁candy", + -11.337992668151855 + ], + [ + "▁athletic", + -11.338113784790039 + ], + [ + "mid", + -11.338163375854492 + ], + [ + "▁repeated", + -11.338264465332031 + ], + [ + "▁praise", + -11.338435173034668 + ], + [ + "hot", + -11.338716506958008 + ], + [ + "▁blade", + -11.338728904724121 + ], + [ + "▁documentary", + -11.338833808898926 + ], + [ + "▁proposals", + -11.33889389038086 + ], + [ + "▁Dubai", + -11.338915824890137 + ], + [ + "▁Parliament", + -11.338959693908691 + ], + [ + "▁roofing", + -11.339143753051758 + ], + [ + "ark", + -11.339200019836426 + ], + [ + "lation", + -11.339231491088867 + ], + [ + "▁closest", + -11.339484214782715 + ], + [ + "▁basket", + -11.33961009979248 + ], + [ + "▁reminder", + -11.339644432067871 + ], + [ + "▁Mag", + -11.339689254760742 + ], + [ + "▁comedy", + -11.340164184570312 + ], + [ + "▁presenting", + -11.340359687805176 + ], + [ + "▁dedication", + -11.340496063232422 + ], + [ + "sure", + -11.340557098388672 + ], + [ + "▁DR", + -11.340577125549316 + ], + [ + "▁votes", + -11.340760231018066 + ], + [ + "EA", + -11.340948104858398 + ], + [ + "▁influenced", + -11.341031074523926 + ], + [ + "▁Arch", + -11.341217994689941 + ], + [ + "▁compound", + -11.341248512268066 + ], + [ + "▁alien", + -11.341460227966309 + ], + [ + "▁magnificent", + -11.341516494750977 + ], + [ + "▁welcoming", + -11.341552734375 + ], + [ + "▁alleged", + -11.341840744018555 + ], + [ + "PT", + -11.34190559387207 + ], + [ + "▁Dumpster", + -11.341946601867676 + ], + [ + "▁Paint", + -11.342042922973633 + ], + [ + "▁heal", + -11.342086791992188 + ], + [ + "▁drum", + -11.342306137084961 + ], + [ + "▁Democrats", + -11.342313766479492 + ], + [ + "▁$7", + -11.342555046081543 + ], + [ + "▁attempting", + -11.342768669128418 + ], + [ + "▁tires", + -11.34281063079834 + ], + [ + "▁Scottish", + -11.343052864074707 + ], + [ + "▁dispute", + -11.34315013885498 + ], + [ + "▁Visual", + -11.343219757080078 + ], + [ + "sur", + -11.343330383300781 + ], + [ + "▁thrown", + -11.343509674072266 + ], + [ + "cia", + -11.343656539916992 + ], + [ + "▁imaging", + -11.343803405761719 + ], + [ + "▁gut", + -11.344221115112305 + ], + [ + "▁Greece", + -11.344319343566895 + ], + [ + "|", + -11.34432315826416 + ], + [ + "▁generating", + -11.344393730163574 + ], + [ + "▁Basic", + -11.344501495361328 + ], + [ + "edge", + -11.34464168548584 + ], + [ + "▁Salt", + -11.344649314880371 + ], + [ + "▁Fit", + -11.344733238220215 + ], + [ + "▁Mail", + -11.344820976257324 + ], + [ + "aging", + -11.34493350982666 + ], + [ + "▁decorating", + -11.345263481140137 + ], + [ + "▁labour", + -11.345273971557617 + ], + [ + "▁spell", + -11.345635414123535 + ], + [ + "▁competing", + -11.34595775604248 + ], + [ + "▁deciding", + -11.346095085144043 + ], + [ + "▁Alexander", + -11.346264839172363 + ], + [ + "stein", + -11.346388816833496 + ], + [ + "▁undergraduate", + -11.346461296081543 + ], + [ + "▁Fish", + -11.346817970275879 + ], + [ + "tern", + -11.346829414367676 + ], + [ + "▁Islands", + -11.346907615661621 + ], + [ + "VI", + -11.347061157226562 + ], + [ + "▁criticism", + -11.347088813781738 + ], + [ + "bling", + -11.347097396850586 + ], + [ + "had", + -11.347228050231934 + ], + [ + "yes", + -11.347354888916016 + ], + [ + "other", + -11.34738540649414 + ], + [ + "cell", + -11.347406387329102 + ], + [ + "▁compromise", + -11.347512245178223 + ], + [ + "▁shame", + -11.34787654876709 + ], + [ + "▁stones", + -11.347980499267578 + ], + [ + "main", + -11.348119735717773 + ], + [ + "▁premises", + -11.348608016967773 + ], + [ + "▁nationwide", + -11.348625183105469 + ], + [ + "▁distribute", + -11.348660469055176 + ], + [ + "▁Au", + -11.348661422729492 + ], + [ + "▁Carl", + -11.348710060119629 + ], + [ + "rock", + -11.348734855651855 + ], + [ + "▁islands", + -11.348797798156738 + ], + [ + "▁trace", + -11.348844528198242 + ], + [ + "▁preference", + -11.348946571350098 + ], + [ + "▁Culture", + -11.348955154418945 + ], + [ + "▁serial", + -11.348989486694336 + ], + [ + "▁startup", + -11.349298477172852 + ], + [ + "▁ebook", + -11.349689483642578 + ], + [ + "▁Cas", + -11.349784851074219 + ], + [ + "▁establishing", + -11.349888801574707 + ], + [ + "proof", + -11.34993839263916 + ], + [ + "▁offensive", + -11.35002326965332 + ], + [ + "▁healthier", + -11.350059509277344 + ], + [ + "▁preview", + -11.350356101989746 + ], + [ + "▁span", + -11.35071849822998 + ], + [ + "▁($", + -11.350804328918457 + ], + [ + "▁veteran", + -11.350826263427734 + ], + [ + "▁02", + -11.3512601852417 + ], + [ + "▁HERE", + -11.351329803466797 + ], + [ + "▁meter", + -11.351494789123535 + ], + [ + "CM", + -11.35172176361084 + ], + [ + "▁advocate", + -11.3517427444458 + ], + [ + "▁bones", + -11.351910591125488 + ], + [ + "FT", + -11.352005958557129 + ], + [ + "Cha", + -11.352007865905762 + ], + [ + "▁Results", + -11.352190017700195 + ], + [ + "▁supplements", + -11.35239028930664 + ], + [ + "▁MC", + -11.352426528930664 + ], + [ + "▁habitat", + -11.3524808883667 + ], + [ + "ces", + -11.352561950683594 + ], + [ + "▁Pra", + -11.352733612060547 + ], + [ + "aki", + -11.35328197479248 + ], + [ + "▁traditions", + -11.353328704833984 + ], + [ + "▁Op", + -11.353419303894043 + ], + [ + "▁Yoga", + -11.353570938110352 + ], + [ + "rous", + -11.353986740112305 + ], + [ + "▁PO", + -11.354080200195312 + ], + [ + "▁pr", + -11.354199409484863 + ], + [ + "rum", + -11.354545593261719 + ], + [ + "▁onion", + -11.35462474822998 + ], + [ + "▁Nat", + -11.354679107666016 + ], + [ + "press", + -11.354806900024414 + ], + [ + "▁Original", + -11.354973793029785 + ], + [ + "teen", + -11.35510540008545 + ], + [ + "action", + -11.35518741607666 + ], + [ + "▁curve", + -11.355405807495117 + ], + [ + "ulation", + -11.355427742004395 + ], + [ + "▁inflation", + -11.355485916137695 + ], + [ + "MENT", + -11.35549259185791 + ], + [ + "aria", + -11.355502128601074 + ], + [ + "▁transit", + -11.355531692504883 + ], + [ + "▁VPN", + -11.355552673339844 + ], + [ + "▁EX", + -11.35559368133545 + ], + [ + "▁ruling", + -11.355642318725586 + ], + [ + "▁automobile", + -11.355667114257812 + ], + [ + "▁dip", + -11.355839729309082 + ], + [ + "road", + -11.355844497680664 + ], + [ + "▁customize", + -11.355854034423828 + ], + [ + "▁Kentucky", + -11.356075286865234 + ], + [ + "ICE", + -11.356091499328613 + ], + [ + "3)", + -11.356119155883789 + ], + [ + "▁1991", + -11.35627269744873 + ], + [ + "▁fraction", + -11.356386184692383 + ], + [ + "text", + -11.35648250579834 + ], + [ + "ر", + -11.35672378540039 + ], + [ + "▁cleaned", + -11.356880187988281 + ], + [ + "▁devoted", + -11.357046127319336 + ], + [ + "▁Dead", + -11.357245445251465 + ], + [ + "▁Taking", + -11.357427597045898 + ], + [ + "▁figured", + -11.35788631439209 + ], + [ + "▁fired", + -11.35810661315918 + ], + [ + "▁lit", + -11.358187675476074 + ], + [ + "▁scent", + -11.35859203338623 + ], + [ + "▁vegan", + -11.358614921569824 + ], + [ + "they", + -11.358759880065918 + ], + [ + "▁accessed", + -11.358813285827637 + ], + [ + "▁god", + -11.358930587768555 + ], + [ + "▁titled", + -11.358953475952148 + ], + [ + "nish", + -11.359189987182617 + ], + [ + "▁renewable", + -11.359612464904785 + ], + [ + "▁addressing", + -11.359735488891602 + ], + [ + "rod", + -11.359869956970215 + ], + [ + "▁Medicare", + -11.360260009765625 + ], + [ + "▁supportive", + -11.36038875579834 + ], + [ + "▁Row", + -11.36043643951416 + ], + [ + "▁fails", + -11.3607177734375 + ], + [ + "▁Hat", + -11.360810279846191 + ], + [ + "▁crisp", + -11.360856056213379 + ], + [ + "▁bonds", + -11.360897064208984 + ], + [ + "▁Falls", + -11.361356735229492 + ], + [ + "▁8,", + -11.361407279968262 + ], + [ + "▁Virtual", + -11.361413955688477 + ], + [ + "kg", + -11.361547470092773 + ], + [ + "▁Anthony", + -11.361712455749512 + ], + [ + "▁poster", + -11.361885070800781 + ], + [ + "▁Susan", + -11.362268447875977 + ], + [ + "meter", + -11.362272262573242 + ], + [ + "▁continually", + -11.362276077270508 + ], + [ + "▁garbage", + -11.362285614013672 + ], + [ + "AN", + -11.362299919128418 + ], + [ + "than", + -11.362497329711914 + ], + [ + "▁charming", + -11.362568855285645 + ], + [ + "▁Premium", + -11.362704277038574 + ], + [ + "▁destruction", + -11.362741470336914 + ], + [ + "▁convinced", + -11.363151550292969 + ], + [ + "▁Mayor", + -11.363195419311523 + ], + [ + "One", + -11.363265037536621 + ], + [ + "▁pockets", + -11.363290786743164 + ], + [ + "▁CH", + -11.363348960876465 + ], + [ + "▁Tin", + -11.363370895385742 + ], + [ + "▁speaks", + -11.364123344421387 + ], + [ + "▁clarity", + -11.364289283752441 + ], + [ + "▁observation", + -11.364311218261719 + ], + [ + "rag", + -11.3644380569458 + ], + [ + "▁Pinterest", + -11.364678382873535 + ], + [ + "▁sudden", + -11.3646821975708 + ], + [ + "▁speeds", + -11.365045547485352 + ], + [ + "▁spark", + -11.365257263183594 + ], + [ + "▁pulling", + -11.365470886230469 + ], + [ + "▁reset", + -11.365486145019531 + ], + [ + "▁separated", + -11.365506172180176 + ], + [ + "▁11,", + -11.365632057189941 + ], + [ + "▁vessel", + -11.366076469421387 + ], + [ + "▁variation", + -11.366106033325195 + ], + [ + "▁toxic", + -11.366146087646484 + ], + [ + "through", + -11.36628532409668 + ], + [ + "▁beneath", + -11.366313934326172 + ], + [ + "▁Empire", + -11.366436958312988 + ], + [ + "▁chef", + -11.36647891998291 + ], + [ + "▁calculate", + -11.366488456726074 + ], + [ + "▁lenses", + -11.366604804992676 + ], + [ + "▁CON", + -11.366748809814453 + ], + [ + "0.00", + -11.367330551147461 + ], + [ + "ago", + -11.367449760437012 + ], + [ + "▁migration", + -11.36783504486084 + ], + [ + "▁particles", + -11.368043899536133 + ], + [ + "▁informative", + -11.368252754211426 + ], + [ + "ural", + -11.36838436126709 + ], + [ + "▁failing", + -11.368781089782715 + ], + [ + "▁Face", + -11.368824005126953 + ], + [ + "ged", + -11.368958473205566 + ], + [ + "▁genes", + -11.369037628173828 + ], + [ + "▁Labor", + -11.369551658630371 + ], + [ + "Th", + -11.369786262512207 + ], + [ + "EST", + -11.369904518127441 + ], + [ + "▁85", + -11.369938850402832 + ], + [ + "nut", + -11.369975090026855 + ], + [ + "▁Intel", + -11.37038803100586 + ], + [ + "▁Index", + -11.37044906616211 + ], + [ + "▁Dad", + -11.370922088623047 + ], + [ + "▁Ser", + -11.371012687683105 + ], + [ + "▁jail", + -11.371021270751953 + ], + [ + "sburg", + -11.37108039855957 + ], + [ + "::", + -11.371373176574707 + ], + [ + "system", + -11.371580123901367 + ], + [ + "body", + -11.371711730957031 + ], + [ + "▁tears", + -11.371927261352539 + ], + [ + "▁visibility", + -11.371962547302246 + ], + [ + "▁2008.", + -11.372030258178711 + ], + [ + "ering", + -11.372040748596191 + ], + [ + "▁obtaining", + -11.372674942016602 + ], + [ + "▁anybody", + -11.373046875 + ], + [ + "▁Excel", + -11.373108863830566 + ], + [ + "tag", + -11.373196601867676 + ], + [ + "▁valued", + -11.373542785644531 + ], + [ + "▁floating", + -11.373846054077148 + ], + [ + "▁Grade", + -11.373946189880371 + ], + [ + "▁Dental", + -11.374054908752441 + ], + [ + "▁Math", + -11.374298095703125 + ], + [ + "going", + -11.374319076538086 + ], + [ + "▁disabilities", + -11.374464988708496 + ], + [ + "▁junk", + -11.374503135681152 + ], + [ + "using", + -11.374886512756348 + ], + [ + "chin", + -11.374921798706055 + ], + [ + "▁accurately", + -11.374960899353027 + ], + [ + "▁machinery", + -11.37505054473877 + ], + [ + "TR", + -11.375337600708008 + ], + [ + "▁functioning", + -11.37552261352539 + ], + [ + "SN", + -11.375762939453125 + ], + [ + "▁assisted", + -11.376093864440918 + ], + [ + "▁adverse", + -11.376218795776367 + ], + [ + "▁rotation", + -11.37675666809082 + ], + [ + "▁horror", + -11.376764297485352 + ], + [ + "▁Captain", + -11.376800537109375 + ], + [ + "▁elite", + -11.376812934875488 + ], + [ + "▁assault", + -11.376912117004395 + ], + [ + "▁clever", + -11.377035140991211 + ], + [ + "▁Region", + -11.377092361450195 + ], + [ + "▁Wolf", + -11.377137184143066 + ], + [ + "▁proteins", + -11.377525329589844 + ], + [ + "▁electronics", + -11.37755298614502 + ], + [ + "SL", + -11.377730369567871 + ], + [ + "▁(3)", + -11.377860069274902 + ], + [ + "▁dozens", + -11.378003120422363 + ], + [ + "edu", + -11.378190994262695 + ], + [ + "▁Soft", + -11.378287315368652 + ], + [ + "dig", + -11.378381729125977 + ], + [ + "eria", + -11.378558158874512 + ], + [ + "▁thrive", + -11.37882137298584 + ], + [ + "▁Century", + -11.378852844238281 + ], + [ + "▁contributing", + -11.37889289855957 + ], + [ + "▁Gulf", + -11.379068374633789 + ], + [ + "▁bull", + -11.379186630249023 + ], + [ + "▁consistency", + -11.379228591918945 + ], + [ + "▁pants", + -11.37928581237793 + ], + [ + "▁barrier", + -11.379353523254395 + ], + [ + "▁programmes", + -11.379417419433594 + ], + [ + "▁Detroit", + -11.379823684692383 + ], + [ + "▁bucket", + -11.379849433898926 + ], + [ + "itch", + -11.38021469116211 + ], + [ + "▁Skin", + -11.380311012268066 + ], + [ + "▁gaining", + -11.380504608154297 + ], + [ + "▁cottage", + -11.380839347839355 + ], + [ + "▁Process", + -11.38109302520752 + ], + [ + "▁compelling", + -11.381117820739746 + ], + [ + "sville", + -11.381291389465332 + ], + [ + "▁hack", + -11.381391525268555 + ], + [ + "▁anticipated", + -11.381491661071777 + ], + [ + "▁Dean", + -11.381651878356934 + ], + [ + "▁cognitive", + -11.38168716430664 + ], + [ + "▁coastal", + -11.381952285766602 + ], + [ + "▁Location", + -11.38202953338623 + ], + [ + "▁Between", + -11.382060050964355 + ], + [ + "▁110", + -11.382120132446289 + ], + [ + "▁350", + -11.382156372070312 + ], + [ + "▁Transfer", + -11.382156372070312 + ], + [ + "BO", + -11.38223934173584 + ], + [ + "▁Phoenix", + -11.38241195678711 + ], + [ + "kind", + -11.382604598999023 + ], + [ + "▁violation", + -11.382722854614258 + ], + [ + "▁Moore", + -11.382781982421875 + ], + [ + "▁highlighted", + -11.382949829101562 + ], + [ + "▁refreshing", + -11.382981300354004 + ], + [ + "▁integral", + -11.38322925567627 + ], + [ + "▁cups", + -11.383334159851074 + ], + [ + "▁asks", + -11.383657455444336 + ], + [ + "▁HE", + -11.383797645568848 + ], + [ + "▁Editor", + -11.383816719055176 + ], + [ + "lands", + -11.383981704711914 + ], + [ + "▁quit", + -11.38408088684082 + ], + [ + "▁crossing", + -11.384112358093262 + ], + [ + "▁unnecessary", + -11.384222984313965 + ], + [ + "▁lip", + -11.384288787841797 + ], + [ + "▁Rent", + -11.384507179260254 + ], + [ + "▁honestly", + -11.384711265563965 + ], + [ + "▁PE", + -11.384719848632812 + ], + [ + "▁therapeutic", + -11.384736061096191 + ], + [ + "▁shelves", + -11.384740829467773 + ], + [ + "▁symbols", + -11.384783744812012 + ], + [ + "▁undergo", + -11.38486385345459 + ], + [ + "▁Ter", + -11.384984016418457 + ], + [ + "▁Register", + -11.385297775268555 + ], + [ + "bul", + -11.385390281677246 + ], + [ + "▁Sy", + -11.385589599609375 + ], + [ + "ridge", + -11.385616302490234 + ], + [ + "▁Details", + -11.385616302490234 + ], + [ + "▁Bull", + -11.385621070861816 + ], + [ + "▁Honda", + -11.385869026184082 + ], + [ + "gas", + -11.385909080505371 + ], + [ + "▁Until", + -11.386076927185059 + ], + [ + "▁pest", + -11.386297225952148 + ], + [ + "els", + -11.386592864990234 + ], + [ + "▁Shipping", + -11.386601448059082 + ], + [ + "▁appealing", + -11.38664436340332 + ], + [ + "▁UV", + -11.38670539855957 + ], + [ + "▁Exam", + -11.38674545288086 + ], + [ + "▁embedded", + -11.386773109436035 + ], + [ + "▁conjunction", + -11.386847496032715 + ], + [ + "ook", + -11.38718032836914 + ], + [ + "▁reflected", + -11.387198448181152 + ], + [ + "▁pickup", + -11.38748836517334 + ], + [ + "▁WI", + -11.387532234191895 + ], + [ + "▁keywords", + -11.387737274169922 + ], + [ + "▁lovers", + -11.387757301330566 + ], + [ + "▁1950", + -11.387765884399414 + ], + [ + "▁Active", + -11.38778018951416 + ], + [ + "▁aesthetic", + -11.388116836547852 + ], + [ + "▁contacted", + -11.38818645477295 + ], + [ + "▁packing", + -11.388365745544434 + ], + [ + "LC", + -11.388603210449219 + ], + [ + "▁merchandise", + -11.388681411743164 + ], + [ + "▁counsel", + -11.388708114624023 + ], + [ + "▁logical", + -11.388792037963867 + ], + [ + "▁glory", + -11.38900375366211 + ], + [ + "▁educate", + -11.389017105102539 + ], + [ + "▁Sample", + -11.389501571655273 + ], + [ + "lines", + -11.3897705078125 + ], + [ + "▁Focus", + -11.389795303344727 + ], + [ + "flow", + -11.3898286819458 + ], + [ + "▁tasting", + -11.389918327331543 + ], + [ + "▁crafted", + -11.390040397644043 + ], + [ + "▁Fla", + -11.390117645263672 + ], + [ + "▁epi", + -11.390337944030762 + ], + [ + "▁margin", + -11.390843391418457 + ], + [ + "lou", + -11.39117431640625 + ], + [ + "▁queen", + -11.391213417053223 + ], + [ + "▁Treatment", + -11.391256332397461 + ], + [ + "▁NE", + -11.391435623168945 + ], + [ + "PD", + -11.391608238220215 + ], + [ + "▁humanity", + -11.391858100891113 + ], + [ + "▁Philippines", + -11.392032623291016 + ], + [ + "▁finishes", + -11.392159461975098 + ], + [ + "▁Sweden", + -11.392171859741211 + ], + [ + "▁tent", + -11.392440795898438 + ], + [ + "▁blocked", + -11.392539978027344 + ], + [ + "ators", + -11.392662048339844 + ], + [ + "logical", + -11.393004417419434 + ], + [ + "dem", + -11.39309024810791 + ], + [ + "▁66", + -11.39315128326416 + ], + [ + "▁Indonesia", + -11.393219947814941 + ], + [ + "▁elderly", + -11.393270492553711 + ], + [ + "▁lately", + -11.393325805664062 + ], + [ + "▁anchor", + -11.393489837646484 + ], + [ + "▁charter", + -11.393582344055176 + ], + [ + "▁Target", + -11.393819808959961 + ], + [ + "▁Current", + -11.393876075744629 + ], + [ + "▁microwave", + -11.394678115844727 + ], + [ + "▁correction", + -11.394862174987793 + ], + [ + "▁Pad", + -11.39493465423584 + ], + [ + "▁IV", + -11.395023345947266 + ], + [ + "▁companion", + -11.395065307617188 + ], + [ + "▁Cl", + -11.395210266113281 + ], + [ + "VE", + -11.39531421661377 + ], + [ + "mod", + -11.395400047302246 + ], + [ + "▁Ur", + -11.395418167114258 + ], + [ + "▁Apply", + -11.395448684692383 + ], + [ + "-16", + -11.395721435546875 + ], + [ + "▁bride", + -11.39619255065918 + ], + [ + "▁disappear", + -11.39626693725586 + ], + [ + "▁Alabama", + -11.396394729614258 + ], + [ + "▁08", + -11.39667797088623 + ], + [ + "▁queries", + -11.396760940551758 + ], + [ + "▁affairs", + -11.396965026855469 + ], + [ + "▁Adult", + -11.397022247314453 + ], + [ + "arian", + -11.39727783203125 + ], + [ + "▁rope", + -11.397369384765625 + ], + [ + "eva", + -11.397435188293457 + ], + [ + "▁Pur", + -11.39745807647705 + ], + [ + "▁fortunate", + -11.397539138793945 + ], + [ + "▁priorities", + -11.39776611328125 + ], + [ + "▁herbs", + -11.397769927978516 + ], + [ + "▁Screen", + -11.39780044555664 + ], + [ + "arm", + -11.397833824157715 + ], + [ + "Star", + -11.39786148071289 + ], + [ + "nation", + -11.398179054260254 + ], + [ + "▁pound", + -11.398624420166016 + ], + [ + "▁Wars", + -11.398697853088379 + ], + [ + "▁reaches", + -11.39881420135498 + ], + [ + "▁CBD", + -11.39885425567627 + ], + [ + "▁reminded", + -11.399007797241211 + ], + [ + "▁coins", + -11.399036407470703 + ], + [ + "▁dock", + -11.399539947509766 + ], + [ + "700", + -11.399575233459473 + ], + [ + "ѕ", + -11.399608612060547 + ], + [ + "shot", + -11.399636268615723 + ], + [ + "▁practicing", + -11.399730682373047 + ], + [ + "▁separation", + -11.399803161621094 + ], + [ + "▁trauma", + -11.39997386932373 + ], + [ + "EM", + -11.400102615356445 + ], + [ + "▁eastern", + -11.40027904510498 + ], + [ + "▁Allow", + -11.400341033935547 + ], + [ + "▁Caribbean", + -11.400381088256836 + ], + [ + "▁Jet", + -11.400615692138672 + ], + [ + "▁Amazing", + -11.40070915222168 + ], + [ + "stock", + -11.400715827941895 + ], + [ + "UL", + -11.400761604309082 + ], + [ + "▁Hence", + -11.400764465332031 + ], + [ + "▁partial", + -11.400850296020508 + ], + [ + "ened", + -11.400883674621582 + ], + [ + "▁adventures", + -11.40125846862793 + ], + [ + "▁bundle", + -11.401445388793945 + ], + [ + "▁pond", + -11.40147876739502 + ], + [ + "aud", + -11.401643753051758 + ], + [ + "▁Kate", + -11.401841163635254 + ], + [ + "▁(4", + -11.402327537536621 + ], + [ + "▁sq", + -11.4024019241333 + ], + [ + "▁silence", + -11.40255355834961 + ], + [ + "▁castle", + -11.402559280395508 + ], + [ + "▁rhythm", + -11.402594566345215 + ], + [ + "▁shield", + -11.402626037597656 + ], + [ + "topped", + -11.40263843536377 + ], + [ + "nch", + -11.402685165405273 + ], + [ + "▁dessert", + -11.402909278869629 + ], + [ + "nnie", + -11.403115272521973 + ], + [ + "But", + -11.40336799621582 + ], + [ + "▁DI", + -11.403433799743652 + ], + [ + "▁Harris", + -11.403539657592773 + ], + [ + "▁attributes", + -11.403743743896484 + ], + [ + "▁Address", + -11.40378475189209 + ], + [ + "▁consecutive", + -11.403985023498535 + ], + [ + "▁cement", + -11.404047012329102 + ], + [ + "▁dirty", + -11.404106140136719 + ], + [ + "▁specify", + -11.40429973602295 + ], + [ + "▁handles", + -11.404434204101562 + ], + [ + "▁linear", + -11.404594421386719 + ], + [ + "▁Bat", + -11.404887199401855 + ], + [ + "▁screens", + -11.405441284179688 + ], + [ + "▁seemingly", + -11.405576705932617 + ], + [ + "▁affecting", + -11.405598640441895 + ], + [ + "▁paragraph", + -11.405776023864746 + ], + [ + "▁clay", + -11.40587043762207 + ], + [ + "▁Build", + -11.40615177154541 + ], + [ + "▁3:", + -11.406185150146484 + ], + [ + "▁Lead", + -11.406811714172363 + ], + [ + "▁cannabis", + -11.406867980957031 + ], + [ + "▁petition", + -11.407093048095703 + ], + [ + "uni", + -11.407195091247559 + ], + [ + "▁attempted", + -11.407360076904297 + ], + [ + "▁95", + -11.407466888427734 + ], + [ + "pos", + -11.407510757446289 + ], + [ + "emia", + -11.407585144042969 + ], + [ + "worm", + -11.40767765045166 + ], + [ + "▁colleges", + -11.407896041870117 + ], + [ + "▁collar", + -11.408143043518066 + ], + [ + "▁tale", + -11.408284187316895 + ], + [ + "▁governor", + -11.408452033996582 + ], + [ + "▁Corporate", + -11.408513069152832 + ], + [ + "bro", + -11.408720016479492 + ], + [ + "▁mesh", + -11.408869743347168 + ], + [ + "▁Alan", + -11.409112930297852 + ], + [ + "▁receives", + -11.409153938293457 + ], + [ + "▁trademark", + -11.409173011779785 + ], + [ + "start", + -11.409317016601562 + ], + [ + "▁charts", + -11.409380912780762 + ], + [ + "▁granite", + -11.409591674804688 + ], + [ + "▁Utah", + -11.409737586975098 + ], + [ + "▁3)", + -11.410056114196777 + ], + [ + "▁donate", + -11.410181999206543 + ], + [ + "dimensional", + -11.41028881072998 + ], + [ + "▁debris", + -11.410491943359375 + ], + [ + "▁Edge", + -11.41063404083252 + ], + [ + "▁decreased", + -11.41098403930664 + ], + [ + "▁conducting", + -11.411160469055176 + ], + [ + "▁Sar", + -11.41130542755127 + ], + [ + "▁$50", + -11.411367416381836 + ], + [ + "▁Francis", + -11.411382675170898 + ], + [ + "▁nearest", + -11.411510467529297 + ], + [ + "▁grades", + -11.41162109375 + ], + [ + "kes", + -11.411704063415527 + ], + [ + "▁adjustment", + -11.412038803100586 + ], + [ + "▁Jun", + -11.412343978881836 + ], + [ + "AND", + -11.412447929382324 + ], + [ + "▁GM", + -11.412468910217285 + ], + [ + "▁Met", + -11.41252613067627 + ], + [ + "driven", + -11.412572860717773 + ], + [ + "▁Imagine", + -11.4127197265625 + ], + [ + "▁Defense", + -11.412872314453125 + ], + [ + "▁1989", + -11.413012504577637 + ], + [ + "▁Template", + -11.413036346435547 + ], + [ + "aire", + -11.41312313079834 + ], + [ + "▁screw", + -11.41318416595459 + ], + [ + "▁snacks", + -11.413269996643066 + ], + [ + "have", + -11.413463592529297 + ], + [ + "▁violent", + -11.413735389709473 + ], + [ + "bor", + -11.413912773132324 + ], + [ + "▁booked", + -11.413968086242676 + ], + [ + "▁2019,", + -11.414032936096191 + ], + [ + "Our", + -11.414141654968262 + ], + [ + "ept", + -11.414525032043457 + ], + [ + "▁AB", + -11.414676666259766 + ], + [ + "è", + -11.414689064025879 + ], + [ + "▁withdrawal", + -11.41472053527832 + ], + [ + "...\"", + -11.414877891540527 + ], + [ + "▁citizen", + -11.414973258972168 + ], + [ + "▁throwing", + -11.415072441101074 + ], + [ + "▁Users", + -11.41524887084961 + ], + [ + "▁Blood", + -11.415277481079102 + ], + [ + "▁worthy", + -11.415387153625488 + ], + [ + "▁viagra", + -11.415409088134766 + ], + [ + "▁discretion", + -11.415696144104004 + ], + [ + "jan", + -11.415863990783691 + ], + [ + "cing", + -11.416001319885254 + ], + [ + "▁episodes", + -11.416094779968262 + ], + [ + "▁boring", + -11.416258811950684 + ], + [ + "▁Gray", + -11.41629409790039 + ], + [ + "▁Sin", + -11.416357040405273 + ], + [ + "▁Geo", + -11.416423797607422 + ], + [ + "cess", + -11.416424751281738 + ], + [ + "▁gluten", + -11.416475296020508 + ], + [ + "▁Luke", + -11.416703224182129 + ], + [ + "▁Dur", + -11.416790962219238 + ], + [ + "▁enemies", + -11.416803359985352 + ], + [ + "▁proportion", + -11.417132377624512 + ], + [ + "▁contacts", + -11.417417526245117 + ], + [ + "▁hop", + -11.417421340942383 + ], + [ + "▁arguments", + -11.417561531066895 + ], + [ + "▁patience", + -11.41761589050293 + ], + [ + "▁careers", + -11.417622566223145 + ], + [ + "▁underground", + -11.417738914489746 + ], + [ + "chu", + -11.417829513549805 + ], + [ + "▁Glen", + -11.417990684509277 + ], + [ + "▁scam", + -11.418349266052246 + ], + [ + "▁Hopefully", + -11.418865203857422 + ], + [ + "▁Chrome", + -11.41891098022461 + ], + [ + "rite", + -11.418912887573242 + ], + [ + "▁Player", + -11.418998718261719 + ], + [ + "▁confusion", + -11.41903018951416 + ], + [ + "▁classified", + -11.419711112976074 + ], + [ + "▁eager", + -11.419899940490723 + ], + [ + "▁Bath", + -11.419978141784668 + ], + [ + "▁onions", + -11.420132637023926 + ], + [ + "▁Something", + -11.42017936706543 + ], + [ + "▁Ridge", + -11.4203462600708 + ], + [ + "▁litigation", + -11.420506477355957 + ], + [ + "▁reasonably", + -11.420977592468262 + ], + [ + "That", + -11.421130180358887 + ], + [ + "▁triple", + -11.421330451965332 + ], + [ + "▁mall", + -11.421619415283203 + ], + [ + "▁Kal", + -11.421774864196777 + ], + [ + "plo", + -11.421969413757324 + ], + [ + "▁Grace", + -11.422050476074219 + ], + [ + "▁footage", + -11.422104835510254 + ], + [ + "▁twelve", + -11.422183990478516 + ], + [ + "▁Guard", + -11.422266006469727 + ], + [ + "!).", + -11.422298431396484 + ], + [ + "▁Dev", + -11.422369956970215 + ], + [ + "▁SQL", + -11.42251205444336 + ], + [ + "▁Includes", + -11.422698020935059 + ], + [ + "walk", + -11.422718048095703 + ], + [ + "IVE", + -11.422945022583008 + ], + [ + "▁permits", + -11.422961235046387 + ], + [ + "▁Entertainment", + -11.423203468322754 + ], + [ + "▁Text", + -11.423267364501953 + ], + [ + "▁Wil", + -11.4233980178833 + ], + [ + "▁conscious", + -11.423480987548828 + ], + [ + "shirt", + -11.423537254333496 + ], + [ + "▁binary", + -11.42357063293457 + ], + [ + "▁puzzle", + -11.423877716064453 + ], + [ + "▁Fill", + -11.423882484436035 + ], + [ + "ians", + -11.424086570739746 + ], + [ + "▁float", + -11.424399375915527 + ], + [ + "Tech", + -11.424561500549316 + ], + [ + "▁governance", + -11.425244331359863 + ], + [ + "show", + -11.425281524658203 + ], + [ + "Car", + -11.425472259521484 + ], + [ + "▁homemade", + -11.425620079040527 + ], + [ + "▁peers", + -11.425664901733398 + ], + [ + "▁synthetic", + -11.426063537597656 + ], + [ + "▁couples", + -11.426151275634766 + ], + [ + "▁coupled", + -11.42617416381836 + ], + [ + "▁pork", + -11.426203727722168 + ], + [ + "▁Tickets", + -11.426655769348145 + ], + [ + "▁(5", + -11.42704963684082 + ], + [ + "referring", + -11.427241325378418 + ], + [ + "▁Die", + -11.427309036254883 + ], + [ + "On", + -11.427440643310547 + ], + [ + "▁supervisor", + -11.427444458007812 + ], + [ + "▁promising", + -11.42750072479248 + ], + [ + "▁Swiss", + -11.427576065063477 + ], + [ + "▁villa", + -11.427623748779297 + ], + [ + "▁cooler", + -11.427811622619629 + ], + [ + "▁paths", + -11.427906036376953 + ], + [ + "▁outline", + -11.428138732910156 + ], + [ + "▁Song", + -11.428308486938477 + ], + [ + "▁bicycle", + -11.428451538085938 + ], + [ + "▁Tool", + -11.42853832244873 + ], + [ + "▁assure", + -11.428542137145996 + ], + [ + "▁organ", + -11.428635597229004 + ], + [ + "▁CL", + -11.428799629211426 + ], + [ + "▁$20", + -11.428810119628906 + ], + [ + "ically", + -11.428834915161133 + ], + [ + "/8", + -11.429032325744629 + ], + [ + "▁threshold", + -11.429080963134766 + ], + [ + "zz", + -11.42938232421875 + ], + [ + "▁tricks", + -11.42956256866455 + ], + [ + "sum", + -11.429600715637207 + ], + [ + "▁Ly", + -11.429606437683105 + ], + [ + "▁Voice", + -11.429692268371582 + ], + [ + "▁62", + -11.429693222045898 + ], + [ + "▁indicator", + -11.429823875427246 + ], + [ + "weight", + -11.429859161376953 + ], + [ + "▁accepting", + -11.429866790771484 + ], + [ + "▁SH", + -11.4299955368042 + ], + [ + "▁Switzerland", + -11.430215835571289 + ], + [ + "▁gauge", + -11.430319786071777 + ], + [ + "AB", + -11.4304838180542 + ], + [ + "▁adorable", + -11.430526733398438 + ], + [ + "UT", + -11.430747985839844 + ], + [ + "▁13,", + -11.43084716796875 + ], + [ + "▁Match", + -11.430901527404785 + ], + [ + "▁Summit", + -11.431150436401367 + ], + [ + "ress", + -11.431647300720215 + ], + [ + "▁prestigious", + -11.43168830871582 + ], + [ + "ffer", + -11.431740760803223 + ], + [ + "building", + -11.431903839111328 + ], + [ + "▁transformed", + -11.43191909790039 + ], + [ + "▁welcomed", + -11.432010650634766 + ], + [ + "▁stimulate", + -11.432360649108887 + ], + [ + "dian", + -11.432415008544922 + ], + [ + "▁meta", + -11.432470321655273 + ], + [ + "bing", + -11.432862281799316 + ], + [ + "▁Leadership", + -11.432954788208008 + ], + [ + "▁Tam", + -11.43299388885498 + ], + [ + "▁53", + -11.433006286621094 + ], + [ + "▁RV", + -11.433100700378418 + ], + [ + "▁executed", + -11.433316230773926 + ], + [ + "▁combining", + -11.433425903320312 + ], + [ + "▁angry", + -11.433481216430664 + ], + [ + "▁(18", + -11.433911323547363 + ], + [ + "▁SS", + -11.433939933776855 + ], + [ + "▁ES", + -11.434537887573242 + ], + [ + "▁troops", + -11.434961318969727 + ], + [ + "-17", + -11.435152053833008 + ], + [ + "▁acute", + -11.435297012329102 + ], + [ + "▁NYC", + -11.435454368591309 + ], + [ + "LM", + -11.43558406829834 + ], + [ + "▁Universal", + -11.435647010803223 + ], + [ + "▁slim", + -11.435773849487305 + ], + [ + "▁bits", + -11.435850143432617 + ], + [ + "▁Bit", + -11.435998916625977 + ], + [ + "▁Palace", + -11.436382293701172 + ], + [ + "▁Horse", + -11.436972618103027 + ], + [ + "▁Grey", + -11.437082290649414 + ], + [ + "▁router", + -11.43710708618164 + ], + [ + "▁gonna", + -11.437176704406738 + ], + [ + "▁forming", + -11.437223434448242 + ], + [ + "▁decoration", + -11.437225341796875 + ], + [ + "▁barriers", + -11.437249183654785 + ], + [ + "н", + -11.437305450439453 + ], + [ + "▁WITH", + -11.437512397766113 + ], + [ + "▁07", + -11.437562942504883 + ], + [ + "▁sixth", + -11.437775611877441 + ], + [ + "▁printable", + -11.437801361083984 + ], + [ + "▁tray", + -11.438066482543945 + ], + [ + "▁Technologies", + -11.438200950622559 + ], + [ + "zel", + -11.438333511352539 + ], + [ + "▁Schools", + -11.438362121582031 + ], + [ + "▁resolved", + -11.438385009765625 + ], + [ + "▁ingredient", + -11.43890380859375 + ], + [ + "▁Track", + -11.439074516296387 + ], + [ + "ines", + -11.439412117004395 + ], + [ + "got", + -11.439537048339844 + ], + [ + "▁suggestion", + -11.439779281616211 + ], + [ + "▁Philip", + -11.439903259277344 + ], + [ + "▁prizes", + -11.439910888671875 + ], + [ + "▁archive", + -11.439931869506836 + ], + [ + "dam", + -11.440276145935059 + ], + [ + "▁nap", + -11.44033432006836 + ], + [ + "▁upset", + -11.440363883972168 + ], + [ + "▁tomato", + -11.440398216247559 + ], + [ + "▁Notice", + -11.44041633605957 + ], + [ + "ched", + -11.440526008605957 + ], + [ + "▁reactions", + -11.440569877624512 + ], + [ + "pu", + -11.440811157226562 + ], + [ + "▁kidney", + -11.440864562988281 + ], + [ + "liter", + -11.440885543823242 + ], + [ + "group", + -11.440923690795898 + ], + [ + "▁donated", + -11.441079139709473 + ], + [ + "▁EN", + -11.441147804260254 + ], + [ + "▁24/7", + -11.441264152526855 + ], + [ + "commerce", + -11.441364288330078 + ], + [ + "▁Ak", + -11.4415922164917 + ], + [ + "▁Ber", + -11.441610336303711 + ], + [ + "▁Kenya", + -11.441719055175781 + ], + [ + "▁Charlotte", + -11.442140579223633 + ], + [ + "kel", + -11.442671775817871 + ], + [ + "▁decorated", + -11.442859649658203 + ], + [ + "pack", + -11.44289779663086 + ], + [ + "▁CE", + -11.443077087402344 + ], + [ + "▁tongue", + -11.444207191467285 + ], + [ + "▁HA", + -11.444263458251953 + ], + [ + "▁Gary", + -11.444375991821289 + ], + [ + "▁hint", + -11.444526672363281 + ], + [ + "member", + -11.444784164428711 + ], + [ + "▁isolated", + -11.444811820983887 + ], + [ + "ced", + -11.445046424865723 + ], + [ + "his", + -11.445051193237305 + ], + [ + "ل", + -11.445089340209961 + ], + [ + "▁rejected", + -11.445096969604492 + ], + [ + "▁mainstream", + -11.445487976074219 + ], + [ + "▁minerals", + -11.44550895690918 + ], + [ + "▁Extra", + -11.445547103881836 + ], + [ + "jun", + -11.445596694946289 + ], + [ + "▁ju", + -11.446009635925293 + ], + [ + "▁structured", + -11.446114540100098 + ], + [ + "▁03", + -11.446131706237793 + ], + [ + "▁Beyond", + -11.446236610412598 + ], + [ + "▁restored", + -11.446236610412598 + ], + [ + "▁Client", + -11.446237564086914 + ], + [ + "▁graduates", + -11.446383476257324 + ], + [ + "stan", + -11.446490287780762 + ], + [ + "▁vector", + -11.446557998657227 + ], + [ + "▁Native", + -11.446637153625488 + ], + [ + "▁armed", + -11.446710586547852 + ], + [ + "uma", + -11.446805953979492 + ], + [ + "▁sweat", + -11.446961402893066 + ], + [ + "▁dying", + -11.447161674499512 + ], + [ + "▁friendship", + -11.447199821472168 + ], + [ + "▁Raj", + -11.447613716125488 + ], + [ + "▁Hawaii", + -11.447747230529785 + ], + [ + "UD", + -11.447842597961426 + ], + [ + "▁suppose", + -11.447895050048828 + ], + [ + "▁spine", + -11.448041915893555 + ], + [ + "▁wardrobe", + -11.448314666748047 + ], + [ + "▁glue", + -11.44853401184082 + ], + [ + "▁Thai", + -11.448922157287598 + ], + [ + "▁stays", + -11.449361801147461 + ], + [ + "▁pumpkin", + -11.449490547180176 + ], + [ + "▁retro", + -11.449801445007324 + ], + [ + "▁theoretical", + -11.450023651123047 + ], + [ + "▁corners", + -11.450300216674805 + ], + [ + "▁Cheap", + -11.450353622436523 + ], + [ + "▁sunny", + -11.450410842895508 + ], + [ + "▁CP", + -11.450690269470215 + ], + [ + "▁regarded", + -11.450762748718262 + ], + [ + "▁Seven", + -11.450987815856934 + ], + [ + "▁suicide", + -11.451111793518066 + ], + [ + "▁Gra", + -11.451216697692871 + ], + [ + "lian", + -11.451432228088379 + ], + [ + "▁font", + -11.451534271240234 + ], + [ + "▁Nevertheless", + -11.451620101928711 + ], + [ + "ND", + -11.451831817626953 + ], + [ + "ova", + -11.451955795288086 + ], + [ + "▁wholesale", + -11.45202922821045 + ], + [ + "▁Actually", + -11.452286720275879 + ], + [ + "▁aggregate", + -11.452354431152344 + ], + [ + "▁politicians", + -11.452404975891113 + ], + [ + "!!!!", + -11.452449798583984 + ], + [ + "▁Adobe", + -11.452497482299805 + ], + [ + "▁reservation", + -11.452582359313965 + ], + [ + "▁cone", + -11.452651023864746 + ], + [ + "▁globally", + -11.452857971191406 + ], + [ + "▁favorites", + -11.452860832214355 + ], + [ + "▁welfare", + -11.45302963256836 + ], + [ + "м", + -11.45332145690918 + ], + [ + "▁fare", + -11.453530311584473 + ], + [ + "▁dressed", + -11.453940391540527 + ], + [ + "▁3.5", + -11.453944206237793 + ], + [ + "▁Designed", + -11.454201698303223 + ], + [ + "▁Rental", + -11.454373359680176 + ], + [ + "▁accordingly", + -11.454450607299805 + ], + [ + "▁Jose", + -11.45453929901123 + ], + [ + "▁creatures", + -11.454627990722656 + ], + [ + "▁dresses", + -11.454673767089844 + ], + [ + "▁presidential", + -11.454700469970703 + ], + [ + "▁Sep", + -11.454910278320312 + ], + [ + "▁Cold", + -11.455039024353027 + ], + [ + "▁30,", + -11.45517635345459 + ], + [ + "▁organizing", + -11.455211639404297 + ], + [ + "▁relaxation", + -11.455316543579102 + ], + [ + "▁marble", + -11.455430030822754 + ], + [ + "▁intensive", + -11.455476760864258 + ], + [ + "▁democracy", + -11.455491065979004 + ], + [ + "▁inexpensive", + -11.455696105957031 + ], + [ + "▁complimentary", + -11.455698013305664 + ], + [ + "▁heater", + -11.455713272094727 + ], + [ + "▁connectivity", + -11.455809593200684 + ], + [ + "erson", + -11.45600414276123 + ], + [ + "acy", + -11.456060409545898 + ], + [ + "▁10,000", + -11.456072807312012 + ], + [ + "▁Registration", + -11.45640754699707 + ], + [ + "▁Crystal", + -11.456928253173828 + ], + [ + "trans", + -11.457141876220703 + ], + [ + "▁squad", + -11.457175254821777 + ], + [ + "▁advisor", + -11.457256317138672 + ], + [ + "▁graduation", + -11.457459449768066 + ], + [ + "▁viewers", + -11.45748233795166 + ], + [ + "▁handed", + -11.457528114318848 + ], + [ + "love", + -11.458059310913086 + ], + [ + "ike", + -11.45813274383545 + ], + [ + "▁Eli", + -11.45842170715332 + ], + [ + "▁conferences", + -11.458511352539062 + ], + [ + "▁voices", + -11.458624839782715 + ], + [ + "▁Hunter", + -11.458775520324707 + ], + [ + "▁assumed", + -11.458993911743164 + ], + [ + "▁dramatically", + -11.459000587463379 + ], + [ + "▁propose", + -11.459039688110352 + ], + [ + "wel", + -11.459137916564941 + ], + [ + "▁Rod", + -11.459153175354004 + ], + [ + "▁grows", + -11.45927619934082 + ], + [ + "▁wheat", + -11.459379196166992 + ], + [ + "▁Write", + -11.45941162109375 + ], + [ + "▁independently", + -11.45946979522705 + ], + [ + "ounce", + -11.459614753723145 + ], + [ + "▁courtesy", + -11.460047721862793 + ], + [ + "▁institute", + -11.46020793914795 + ], + [ + "▁steering", + -11.460416793823242 + ], + [ + "▁farming", + -11.460660934448242 + ], + [ + "▁dropping", + -11.46072006225586 + ], + [ + "▁transparency", + -11.46085262298584 + ], + [ + "▁Workshop", + -11.461145401000977 + ], + [ + "▁Andy", + -11.461206436157227 + ], + [ + "cost", + -11.461288452148438 + ], + [ + "▁brass", + -11.461336135864258 + ], + [ + "▁Lan", + -11.461607933044434 + ], + [ + "▁flavour", + -11.461631774902344 + ], + [ + "gri", + -11.461791038513184 + ], + [ + "▁defence", + -11.4618558883667 + ], + [ + "▁dairy", + -11.462082862854004 + ], + [ + "zu", + -11.462355613708496 + ], + [ + "▁DA", + -11.462850570678711 + ], + [ + "▁Ger", + -11.463102340698242 + ], + [ + "eller", + -11.463278770446777 + ], + [ + "lang", + -11.463285446166992 + ], + [ + "▁Bond", + -11.463299751281738 + ], + [ + "▁silent", + -11.463301658630371 + ], + [ + "▁Secret", + -11.463348388671875 + ], + [ + "rac", + -11.46346378326416 + ], + [ + "▁abandoned", + -11.46364974975586 + ], + [ + "▁BMW", + -11.46374225616455 + ], + [ + "▁Fat", + -11.463809967041016 + ], + [ + "▁Question", + -11.463812828063965 + ], + [ + "▁Published", + -11.463825225830078 + ], + [ + "▁Res", + -11.463908195495605 + ], + [ + "▁cycling", + -11.463909149169922 + ], + [ + "yer", + -11.464096069335938 + ], + [ + "▁evident", + -11.464119911193848 + ], + [ + "▁syndrome", + -11.464122772216797 + ], + [ + "▁Years", + -11.464247703552246 + ], + [ + "▁Fortunately", + -11.464296340942383 + ], + [ + "▁broader", + -11.464459419250488 + ], + [ + "▁attendees", + -11.464491844177246 + ], + [ + "▁Twin", + -11.464888572692871 + ], + [ + "▁ports", + -11.465100288391113 + ], + [ + "▁9,", + -11.465568542480469 + ], + [ + "▁proceedings", + -11.465666770935059 + ], + [ + "wind", + -11.46572208404541 + ], + [ + "▁Blu", + -11.465806007385254 + ], + [ + "grad", + -11.465850830078125 + ], + [ + "▁Coloring", + -11.466096878051758 + ], + [ + "▁58", + -11.466104507446289 + ], + [ + "live", + -11.466170310974121 + ], + [ + "ways", + -11.466456413269043 + ], + [ + "▁lined", + -11.467029571533203 + ], + [ + "▁Zone", + -11.467042922973633 + ], + [ + "▁occupation", + -11.467207908630371 + ], + [ + "▁Clinical", + -11.467217445373535 + ], + [ + "▁smoothly", + -11.467253684997559 + ], + [ + "▁$8", + -11.467351913452148 + ], + [ + "▁Purchase", + -11.467415809631348 + ], + [ + "▁Gene", + -11.46742057800293 + ], + [ + "▁mad", + -11.467717170715332 + ], + [ + "▁freely", + -11.4678316116333 + ], + [ + "▁placeholder", + -11.46790599822998 + ], + [ + "▁harvest", + -11.467911720275879 + ], + [ + "▁Bluetooth", + -11.468072891235352 + ], + [ + "▁sunset", + -11.468100547790527 + ], + [ + "▁renovation", + -11.468183517456055 + ], + [ + "▁Sleep", + -11.468376159667969 + ], + [ + "▁gig", + -11.468488693237305 + ], + [ + "udi", + -11.468852996826172 + ], + [ + "▁lawsuit", + -11.468953132629395 + ], + [ + "▁Release", + -11.469161987304688 + ], + [ + "▁30%", + -11.4691743850708 + ], + [ + "▁surf", + -11.46939754486084 + ], + [ + "▁coil", + -11.469884872436523 + ], + [ + "▁offset", + -11.470178604125977 + ], + [ + "▁generator", + -11.470343589782715 + ], + [ + "DL", + -11.470512390136719 + ], + [ + "▁underneath", + -11.470637321472168 + ], + [ + "▁kingdom", + -11.470718383789062 + ], + [ + "▁hungry", + -11.470813751220703 + ], + [ + "▁Fin", + -11.471095085144043 + ], + [ + "▁Bas", + -11.47115421295166 + ], + [ + "▁Hamilton", + -11.471199989318848 + ], + [ + "▁steal", + -11.471572875976562 + ], + [ + "▁institutional", + -11.471627235412598 + ], + [ + "▁beta", + -11.471768379211426 + ], + [ + "▁vessels", + -11.472007751464844 + ], + [ + "▁chairman", + -11.472070693969727 + ], + [ + "ancy", + -11.472150802612305 + ], + [ + "▁poem", + -11.472318649291992 + ], + [ + "/10", + -11.472442626953125 + ], + [ + "▁workflow", + -11.472442626953125 + ], + [ + "▁Starting", + -11.472468376159668 + ], + [ + "cca", + -11.472511291503906 + ], + [ + "▁folk", + -11.472589492797852 + ], + [ + "▁organised", + -11.472652435302734 + ], + [ + "▁hills", + -11.473184585571289 + ], + [ + "▁Fr", + -11.473306655883789 + ], + [ + "▁slice", + -11.47333812713623 + ], + [ + "▁cu", + -11.47437858581543 + ], + [ + "block", + -11.474385261535645 + ], + [ + "▁ribbon", + -11.474388122558594 + ], + [ + "▁arrow", + -11.474435806274414 + ], + [ + "▁//", + -11.474629402160645 + ], + [ + "host", + -11.474802017211914 + ], + [ + "▁Fred", + -11.47480297088623 + ], + [ + "▁Congratulations", + -11.474874496459961 + ], + [ + "▁Dining", + -11.474885940551758 + ], + [ + "▁Ukraine", + -11.475010871887207 + ], + [ + "-14", + -11.475021362304688 + ], + [ + "about", + -11.475051879882812 + ], + [ + "▁vanilla", + -11.475071907043457 + ], + [ + "▁jurisdiction", + -11.475204467773438 + ], + [ + "minded", + -11.475247383117676 + ], + [ + "▁flows", + -11.47546672821045 + ], + [ + "▁baked", + -11.475841522216797 + ], + [ + "▁urge", + -11.475966453552246 + ], + [ + "▁15,", + -11.47610855102539 + ], + [ + "▁loyalty", + -11.476205825805664 + ], + [ + "▁Girls", + -11.476334571838379 + ], + [ + "▁profitable", + -11.47640609741211 + ], + [ + "▁inflammation", + -11.47641372680664 + ], + [ + "▁Hay", + -11.476426124572754 + ], + [ + "▁epic", + -11.476530075073242 + ], + [ + "▁bathrooms", + -11.476540565490723 + ], + [ + "▁honored", + -11.476785659790039 + ], + [ + "▁bankruptcy", + -11.47697925567627 + ], + [ + "soft", + -11.477144241333008 + ], + [ + "▁manifest", + -11.477246284484863 + ], + [ + "▁exams", + -11.477433204650879 + ], + [ + "▁Package", + -11.477449417114258 + ], + [ + "▁Route", + -11.477460861206055 + ], + [ + "▁consciousness", + -11.477493286132812 + ], + [ + "▁thickness", + -11.477609634399414 + ], + [ + "▁ranks", + -11.47765064239502 + ], + [ + "▁tattoo", + -11.477741241455078 + ], + [ + "▁Environment", + -11.477948188781738 + ], + [ + "▁19,", + -11.478023529052734 + ], + [ + "▁61", + -11.478242874145508 + ], + [ + "▁Lisa", + -11.478401184082031 + ], + [ + "▁winds", + -11.478424072265625 + ], + [ + "▁legendary", + -11.478586196899414 + ], + [ + "▁inclusive", + -11.478646278381348 + ], + [ + "▁urgent", + -11.478779792785645 + ], + [ + "▁assignments", + -11.478886604309082 + ], + [ + "0.0", + -11.478924751281738 + ], + [ + "tile", + -11.479060173034668 + ], + [ + "▁bat", + -11.479172706604004 + ], + [ + "▁Images", + -11.479206085205078 + ], + [ + "rail", + -11.479238510131836 + ], + [ + "▁Albert", + -11.479426383972168 + ], + [ + "▁partnerships", + -11.479541778564453 + ], + [ + "▁mandatory", + -11.479598045349121 + ], + [ + "~", + -11.47962760925293 + ], + [ + "▁Choice", + -11.479808807373047 + ], + [ + "▁2009,", + -11.479940414428711 + ], + [ + "rov", + -11.480061531066895 + ], + [ + "vat", + -11.480175018310547 + ], + [ + "induced", + -11.480182647705078 + ], + [ + "▁Kin", + -11.480358123779297 + ], + [ + "▁Ry", + -11.480527877807617 + ], + [ + "▁magnet", + -11.481091499328613 + ], + [ + "▁Awesome", + -11.481125831604004 + ], + [ + "rav", + -11.48133659362793 + ], + [ + "▁pillow", + -11.48137092590332 + ], + [ + "▁sponsor", + -11.481613159179688 + ], + [ + "▁buzz", + -11.481679916381836 + ], + [ + "▁wool", + -11.48181438446045 + ], + [ + "mil", + -11.481842041015625 + ], + [ + "▁cozy", + -11.481942176818848 + ], + [ + "▁bugs", + -11.4819917678833 + ], + [ + "▁pros", + -11.482227325439453 + ], + [ + "position", + -11.482231140136719 + ], + [ + "▁faithful", + -11.4822359085083 + ], + [ + "▁thankful", + -11.482275009155273 + ], + [ + "▁Commissioner", + -11.482304573059082 + ], + [ + "▁professionally", + -11.48236083984375 + ], + [ + "▁GP", + -11.482402801513672 + ], + [ + "▁veterans", + -11.482427597045898 + ], + [ + "stage", + -11.48262882232666 + ], + [ + "▁besides", + -11.482780456542969 + ], + [ + "▁21,", + -11.482804298400879 + ], + [ + "▁populations", + -11.482887268066406 + ], + [ + "▁Brooklyn", + -11.482927322387695 + ], + [ + "clo", + -11.482959747314453 + ], + [ + "▁22,", + -11.482965469360352 + ], + [ + "▁99", + -11.482985496520996 + ], + [ + "▁Plans", + -11.483095169067383 + ], + [ + "▁detected", + -11.483197212219238 + ], + [ + "ule", + -11.483202934265137 + ], + [ + "leg", + -11.483236312866211 + ], + [ + "▁hammer", + -11.483333587646484 + ], + [ + "▁Rio", + -11.48360538482666 + ], + [ + "▁organizational", + -11.483624458312988 + ], + [ + "▁Harvard", + -11.483990669250488 + ], + [ + "▁boil", + -11.484007835388184 + ], + [ + "▁composite", + -11.484403610229492 + ], + [ + "▁Mis", + -11.484642028808594 + ], + [ + "▁districts", + -11.484763145446777 + ], + [ + "▁Record", + -11.484864234924316 + ], + [ + "▁adapted", + -11.48546314239502 + ], + [ + "▁Events", + -11.485477447509766 + ], + [ + "▁Maine", + -11.485520362854004 + ], + [ + "▁cho", + -11.485767364501953 + ], + [ + "▁peel", + -11.485767364501953 + ], + [ + "user", + -11.486336708068848 + ], + [ + "▁drawings", + -11.48651123046875 + ], + [ + "▁deaths", + -11.486671447753906 + ], + [ + "▁pencil", + -11.48684310913086 + ], + [ + "keeper", + -11.486903190612793 + ], + [ + "▁stolen", + -11.486973762512207 + ], + [ + "bid", + -11.48740291595459 + ], + [ + "FL", + -11.487601280212402 + ], + [ + "IF", + -11.487648963928223 + ], + [ + "mmer", + -11.487763404846191 + ], + [ + "▁14,", + -11.487909317016602 + ], + [ + "▁emerge", + -11.488125801086426 + ], + [ + "▁Specialist", + -11.488188743591309 + ], + [ + "▁tuned", + -11.488319396972656 + ], + [ + "▁Homes", + -11.488844871520996 + ], + [ + "▁Antonio", + -11.488916397094727 + ], + [ + "▁thumb", + -11.488931655883789 + ], + [ + "▁Commerce", + -11.488977432250977 + ], + [ + "▁optimize", + -11.489265441894531 + ], + [ + "GO", + -11.48947811126709 + ], + [ + "▁Costa", + -11.48952865600586 + ], + [ + "charge", + -11.489592552185059 + ], + [ + "▁headquarters", + -11.489609718322754 + ], + [ + "▁nano", + -11.489981651306152 + ], + [ + "▁24-", + -11.490245819091797 + ], + [ + "▁physics", + -11.490274429321289 + ], + [ + "▁Cer", + -11.490317344665527 + ], + [ + "▁legally", + -11.490438461303711 + ], + [ + "▁gang", + -11.490762710571289 + ], + [ + "▁Regardless", + -11.490873336791992 + ], + [ + "▁configured", + -11.490944862365723 + ], + [ + "▁emerged", + -11.491180419921875 + ], + [ + "▁subsequently", + -11.491239547729492 + ], + [ + "▁costume", + -11.491290092468262 + ], + [ + "kill", + -11.491483688354492 + ], + [ + "ander", + -11.491653442382812 + ], + [ + "▁thrilled", + -11.491719245910645 + ], + [ + "rise", + -11.491724967956543 + ], + [ + "▁notify", + -11.491774559020996 + ], + [ + "▁physicians", + -11.491774559020996 + ], + [ + "▁theft", + -11.491829872131348 + ], + [ + "▁ethnic", + -11.491894721984863 + ], + [ + "▁dense", + -11.492298126220703 + ], + [ + "▁introducing", + -11.492597579956055 + ], + [ + "▁57", + -11.492650985717773 + ], + [ + "▁ghost", + -11.492694854736328 + ], + [ + "▁Greater", + -11.492711067199707 + ], + [ + "▁targeting", + -11.493011474609375 + ], + [ + "▁applicant", + -11.493266105651855 + ], + [ + "▁Dam", + -11.493287086486816 + ], + [ + "door", + -11.493322372436523 + ], + [ + "▁Born", + -11.493328094482422 + ], + [ + "▁explaining", + -11.493428230285645 + ], + [ + "ELL", + -11.493471145629883 + ], + [ + "▁varying", + -11.493488311767578 + ], + [ + "pass", + -11.493754386901855 + ], + [ + "▁pressing", + -11.493805885314941 + ], + [ + "NY", + -11.493837356567383 + ], + [ + "▁Sheet", + -11.493945121765137 + ], + [ + "▁Pink", + -11.494192123413086 + ], + [ + "900", + -11.494218826293945 + ], + [ + "▁nerve", + -11.494283676147461 + ], + [ + "▁Br", + -11.494553565979004 + ], + [ + "▁MB", + -11.4945650100708 + ], + [ + "▁Vision", + -11.494643211364746 + ], + [ + "▁launching", + -11.494800567626953 + ], + [ + "url", + -11.494832038879395 + ], + [ + "▁Spin", + -11.495607376098633 + ], + [ + "▁Return", + -11.495684623718262 + ], + [ + "eli", + -11.495705604553223 + ], + [ + "resulted", + -11.495818138122559 + ], + [ + "▁Sk", + -11.495892524719238 + ], + [ + "▁2007.", + -11.496191024780273 + ], + [ + "▁basics", + -11.49621295928955 + ], + [ + "vid", + -11.496397972106934 + ], + [ + "enc", + -11.496628761291504 + ], + [ + "▁controlling", + -11.496744155883789 + ], + [ + "▁Tele", + -11.496904373168945 + ], + [ + "▁Howard", + -11.496932029724121 + ], + [ + "▁Schedule", + -11.497048377990723 + ], + [ + "▁RAM", + -11.497279167175293 + ], + [ + "▁buried", + -11.497442245483398 + ], + [ + "▁Senator", + -11.497639656066895 + ], + [ + "▁Display", + -11.497648239135742 + ], + [ + "NS", + -11.497803688049316 + ], + [ + "▁Dy", + -11.49796199798584 + ], + [ + "▁executives", + -11.498336791992188 + ], + [ + "▁cylinder", + -11.498353004455566 + ], + [ + "▁header", + -11.49871826171875 + ], + [ + "MM", + -11.498778343200684 + ], + [ + "▁assign", + -11.498818397521973 + ], + [ + "▁temp", + -11.498969078063965 + ], + [ + "▁static", + -11.499055862426758 + ], + [ + "▁captain", + -11.49908447265625 + ], + [ + "▁Tokyo", + -11.499220848083496 + ], + [ + "▁educated", + -11.499723434448242 + ], + [ + "▁practitioners", + -11.499808311462402 + ], + [ + "▁NI", + -11.499818801879883 + ], + [ + "▁Hub", + -11.499942779541016 + ], + [ + "▁sensitivity", + -11.500027656555176 + ], + [ + "▁node", + -11.50004768371582 + ], + [ + "NT", + -11.500160217285156 + ], + [ + "▁Walker", + -11.500296592712402 + ], + [ + "▁scenarios", + -11.5003080368042 + ], + [ + "к", + -11.500368118286133 + ], + [ + "ATE", + -11.500415802001953 + ], + [ + "▁cinema", + -11.500480651855469 + ], + [ + "▁mice", + -11.500587463378906 + ], + [ + "▁safer", + -11.500632286071777 + ], + [ + "▁evolved", + -11.500951766967773 + ], + [ + "▁Especially", + -11.500977516174316 + ], + [ + "lite", + -11.501089096069336 + ], + [ + "▁Almost", + -11.501113891601562 + ], + [ + "▁cl", + -11.501136779785156 + ], + [ + "▁mud", + -11.501224517822266 + ], + [ + "▁silk", + -11.501461029052734 + ], + [ + "▁cor", + -11.502259254455566 + ], + [ + "▁waters", + -11.502259254455566 + ], + [ + "Col", + -11.502299308776855 + ], + [ + "▁Flat", + -11.502347946166992 + ], + [ + "▁Touch", + -11.50242805480957 + ], + [ + "▁1988", + -11.502460479736328 + ], + [ + "▁pc", + -11.502518653869629 + ], + [ + "▁pose", + -11.502584457397461 + ], + [ + "▁Bruce", + -11.502799034118652 + ], + [ + "▁newer", + -11.502864837646484 + ], + [ + "ech", + -11.502898216247559 + ], + [ + "EF", + -11.502909660339355 + ], + [ + "▁tastes", + -11.503019332885742 + ], + [ + "PR", + -11.503195762634277 + ], + [ + "▁infections", + -11.503328323364258 + ], + [ + "▁Ground", + -11.503352165222168 + ], + [ + "▁09", + -11.503783226013184 + ], + [ + "▁pursuit", + -11.503827095031738 + ], + [ + "▁cab", + -11.503902435302734 + ], + [ + "AF", + -11.504091262817383 + ], + [ + "▁Communication", + -11.504185676574707 + ], + [ + "▁Josh", + -11.504595756530762 + ], + [ + "GS", + -11.504663467407227 + ], + [ + "▁loyal", + -11.504781723022461 + ], + [ + "▁orientation", + -11.504846572875977 + ], + [ + "FF", + -11.505291938781738 + ], + [ + "▁favour", + -11.50538444519043 + ], + [ + "▁hospitality", + -11.505523681640625 + ], + [ + "▁poet", + -11.505539894104004 + ], + [ + "▁Fri", + -11.50554370880127 + ], + [ + "▁Soviet", + -11.505768775939941 + ], + [ + "sign", + -11.505813598632812 + ], + [ + "city", + -11.506030082702637 + ], + [ + "tting", + -11.506061553955078 + ], + [ + "▁timber", + -11.506067276000977 + ], + [ + "▁qu", + -11.50617790222168 + ], + [ + "DD", + -11.50622844696045 + ], + [ + "▁backpack", + -11.506303787231445 + ], + [ + "▁Otherwise", + -11.506361961364746 + ], + [ + "▁Apart", + -11.506390571594238 + ], + [ + "She", + -11.506394386291504 + ], + [ + "▁Lang", + -11.50646686553955 + ], + [ + "▁respected", + -11.506675720214844 + ], + [ + "▁cheapest", + -11.5068941116333 + ], + [ + "▁FDA", + -11.506965637207031 + ], + [ + "▁rewarding", + -11.506990432739258 + ], + [ + "▁Alt", + -11.507113456726074 + ], + [ + "▁timeline", + -11.507359504699707 + ], + [ + "▁sooner", + -11.507577896118164 + ], + [ + "▁dryer", + -11.507850646972656 + ], + [ + "▁railway", + -11.508001327514648 + ], + [ + "▁wings", + -11.508007049560547 + ], + [ + "lab", + -11.508061408996582 + ], + [ + "▁Lots", + -11.508074760437012 + ], + [ + "▁bikes", + -11.508204460144043 + ], + [ + "▁sake", + -11.508270263671875 + ], + [ + "▁6-", + -11.508312225341797 + ], + [ + "▁mentor", + -11.508338928222656 + ], + [ + "click", + -11.508520126342773 + ], + [ + "amine", + -11.508610725402832 + ], + [ + "▁cons", + -11.509017944335938 + ], + [ + "▁Yellow", + -11.509307861328125 + ], + [ + "▁SM", + -11.509337425231934 + ], + [ + "vil", + -11.509344100952148 + ], + [ + "oke", + -11.50947380065918 + ], + [ + "gging", + -11.50948715209961 + ], + [ + "▁Beauty", + -11.50981330871582 + ], + [ + "▁pharmaceutical", + -11.509840965270996 + ], + [ + "▁Hart", + -11.509845733642578 + ], + [ + "▁Window", + -11.51004409790039 + ], + [ + "sting", + -11.510138511657715 + ], + [ + "▁boiler", + -11.510149955749512 + ], + [ + "▁breathe", + -11.510204315185547 + ], + [ + "data", + -11.510588645935059 + ], + [ + ":15", + -11.5106201171875 + ], + [ + "▁Justin", + -11.510748863220215 + ], + [ + "▁Risk", + -11.510891914367676 + ], + [ + "▁Rh", + -11.5109281539917 + ], + [ + "▁insulation", + -11.510941505432129 + ], + [ + "▁Finding", + -11.510994911193848 + ], + [ + "Up", + -11.511285781860352 + ], + [ + "▁talents", + -11.511333465576172 + ], + [ + "▁fu", + -11.511359214782715 + ], + [ + "dog", + -11.511445045471191 + ], + [ + "▁Canon", + -11.511488914489746 + ], + [ + "AGE", + -11.51157283782959 + ], + [ + "▁pioneer", + -11.511907577514648 + ], + [ + "▁uploaded", + -11.51192569732666 + ], + [ + "▁magazines", + -11.512035369873047 + ], + [ + "▁alternate", + -11.512083053588867 + ], + [ + "web", + -11.512161254882812 + ], + [ + "▁Fre", + -11.512299537658691 + ], + [ + "▁Cra", + -11.512372970581055 + ], + [ + "▁comparable", + -11.512417793273926 + ], + [ + "▁adjustments", + -11.512650489807129 + ], + [ + "▁occasional", + -11.512860298156738 + ], + [ + "mile", + -11.513008117675781 + ], + [ + "loc", + -11.513056755065918 + ], + [ + "makers", + -11.513153076171875 + ], + [ + "▁Chef", + -11.513248443603516 + ], + [ + "▁UC", + -11.513948440551758 + ], + [ + "operative", + -11.51396656036377 + ], + [ + "▁cocktail", + -11.514120101928711 + ], + [ + "▁jar", + -11.514196395874023 + ], + [ + "▁Independent", + -11.514366149902344 + ], + [ + "▁summit", + -11.514404296875 + ], + [ + "▁Amy", + -11.514439582824707 + ], + [ + "ONE", + -11.514496803283691 + ], + [ + "▁PT", + -11.5147066116333 + ], + [ + "(1)", + -11.514730453491211 + ], + [ + "▁vocal", + -11.514755249023438 + ], + [ + "▁mounting", + -11.51488208770752 + ], + [ + "▁Cleveland", + -11.514887809753418 + ], + [ + "▁Stadium", + -11.51488971710205 + ], + [ + "▁ecosystem", + -11.514927864074707 + ], + [ + "▁hardwood", + -11.514930725097656 + ], + [ + "▁ramp", + -11.515159606933594 + ], + [ + "▁tailor", + -11.51517105102539 + ], + [ + "▁warming", + -11.515220642089844 + ], + [ + "▁ye", + -11.515242576599121 + ], + [ + "map", + -11.515416145324707 + ], + [ + "▁lime", + -11.5154390335083 + ], + [ + "▁UP", + -11.515453338623047 + ], + [ + "mine", + -11.515966415405273 + ], + [ + "▁Reg", + -11.515971183776855 + ], + [ + "▁fundraising", + -11.516073226928711 + ], + [ + "▁examined", + -11.516678810119629 + ], + [ + "▁Graduate", + -11.516694068908691 + ], + [ + "bio", + -11.51695728302002 + ], + [ + "IX", + -11.517037391662598 + ], + [ + "boy", + -11.51705551147461 + ], + [ + "▁greet", + -11.517111778259277 + ], + [ + "▁CF", + -11.517280578613281 + ], + [ + "▁VI", + -11.517393112182617 + ], + [ + "▁cha", + -11.517463684082031 + ], + [ + "▁corruption", + -11.517494201660156 + ], + [ + "quin", + -11.517841339111328 + ], + [ + "▁vol", + -11.5178804397583 + ], + [ + "▁dissertation", + -11.517891883850098 + ], + [ + "▁insist", + -11.51793384552002 + ], + [ + "▁Laura", + -11.518595695495605 + ], + [ + "▁partially", + -11.51871395111084 + ], + [ + "▁Bla", + -11.518715858459473 + ], + [ + "▁appliance", + -11.51887321472168 + ], + [ + "▁comm", + -11.519013404846191 + ], + [ + "▁16,", + -11.519142150878906 + ], + [ + "▁scar", + -11.519145965576172 + ], + [ + "roid", + -11.519227981567383 + ], + [ + "mad", + -11.519332885742188 + ], + [ + "▁retention", + -11.519357681274414 + ], + [ + "▁pulse", + -11.519763946533203 + ], + [ + "▁perceived", + -11.519980430603027 + ], + [ + "▁negotiations", + -11.520063400268555 + ], + [ + "▁prescribed", + -11.520146369934082 + ], + [ + "▁survived", + -11.520233154296875 + ], + [ + "▁psychology", + -11.520369529724121 + ], + [ + "▁forums", + -11.520387649536133 + ], + [ + "▁browsing", + -11.520556449890137 + ], + [ + "▁Housing", + -11.520875930786133 + ], + [ + "▁Arabia", + -11.52099895477295 + ], + [ + "gam", + -11.521612167358398 + ], + [ + "▁Info", + -11.521614074707031 + ], + [ + "▁Ship", + -11.521632194519043 + ], + [ + "▁Directors", + -11.52168083190918 + ], + [ + "track", + -11.522071838378906 + ], + [ + "▁portrait", + -11.522212028503418 + ], + [ + "▁encourages", + -11.522265434265137 + ], + [ + "▁BY", + -11.522451400756836 + ], + [ + "▁membrane", + -11.522564888000488 + ], + [ + "cru", + -11.522642135620117 + ], + [ + "▁surroundings", + -11.522737503051758 + ], + [ + "▁Movie", + -11.523065567016602 + ], + [ + "▁counts", + -11.523133277893066 + ], + [ + "▁chemistry", + -11.523386001586914 + ], + [ + "▁Whit", + -11.52350902557373 + ], + [ + "▁Kam", + -11.523557662963867 + ], + [ + "nov", + -11.523612022399902 + ], + [ + "tier", + -11.52362060546875 + ], + [ + "▁strengths", + -11.523807525634766 + ], + [ + "▁guns", + -11.524072647094727 + ], + [ + "▁2008,", + -11.524190902709961 + ], + [ + "▁30-", + -11.524312973022461 + ], + [ + "▁Truck", + -11.524325370788574 + ], + [ + "▁volumes", + -11.524662017822266 + ], + [ + "▁Unless", + -11.524755477905273 + ], + [ + "▁courage", + -11.524889945983887 + ], + [ + "▁picnic", + -11.524935722351074 + ], + [ + "▁judges", + -11.525166511535645 + ], + [ + "▁trainer", + -11.525245666503906 + ], + [ + "▁uncomfortable", + -11.525443077087402 + ], + [ + "▁EM", + -11.52590274810791 + ], + [ + "▁Julie", + -11.526178359985352 + ], + [ + "▁Ky", + -11.526326179504395 + ], + [ + "▁sync", + -11.52652645111084 + ], + [ + "▁widespread", + -11.526684761047363 + ], + [ + "▁freelance", + -11.52688217163086 + ], + [ + "▁brake", + -11.526886940002441 + ], + [ + "▁lung", + -11.526973724365234 + ], + [ + "▁activate", + -11.52712345123291 + ], + [ + "▁bullet", + -11.527375221252441 + ], + [ + "9)", + -11.527554512023926 + ], + [ + "▁stairs", + -11.527563095092773 + ], + [ + "▁porch", + -11.527616500854492 + ], + [ + "▁intuitive", + -11.527634620666504 + ], + [ + "▁abundance", + -11.527637481689453 + ], + [ + "check", + -11.527698516845703 + ], + [ + "aga", + -11.527871131896973 + ], + [ + "▁remembered", + -11.528032302856445 + ], + [ + "HD", + -11.528057098388672 + ], + [ + "▁Clinic", + -11.528312683105469 + ], + [ + "▁Document", + -11.528335571289062 + ], + [ + "▁dynamics", + -11.528546333312988 + ], + [ + "▁literary", + -11.528585433959961 + ], + [ + "▁CB", + -11.52863597869873 + ], + [ + "▁(10", + -11.528724670410156 + ], + [ + "▁Cons", + -11.528767585754395 + ], + [ + "▁FI", + -11.528871536254883 + ], + [ + "WA", + -11.529006004333496 + ], + [ + "▁royal", + -11.52967357635498 + ], + [ + "▁bump", + -11.530170440673828 + ], + [ + "▁outlets", + -11.530171394348145 + ], + [ + "▁Mod", + -11.530202865600586 + ], + [ + "▁pairs", + -11.530261039733887 + ], + [ + "▁Jam", + -11.53028678894043 + ], + [ + "▁Polish", + -11.530537605285645 + ], + [ + "nam", + -11.530569076538086 + ], + [ + "ked", + -11.530587196350098 + ], + [ + "▁Weight", + -11.530977249145508 + ], + [ + "▁sketch", + -11.531237602233887 + ], + [ + "▁Vehicle", + -11.531257629394531 + ], + [ + "DM", + -11.531332015991211 + ], + [ + "▁leap", + -11.531514167785645 + ], + [ + "▁neat", + -11.531522750854492 + ], + [ + "▁achievements", + -11.531608581542969 + ], + [ + "▁envelope", + -11.531882286071777 + ], + [ + "tron", + -11.531954765319824 + ], + [ + "▁Therapy", + -11.532048225402832 + ], + [ + "will", + -11.532136917114258 + ], + [ + "▁architect", + -11.532339096069336 + ], + [ + "▁arising", + -11.532567977905273 + ], + [ + "▁complications", + -11.53272533416748 + ], + [ + "▁Oracle", + -11.532952308654785 + ], + [ + "▁rod", + -11.532963752746582 + ], + [ + "▁longest", + -11.533059120178223 + ], + [ + "▁Republicans", + -11.533123016357422 + ], + [ + "▁seminar", + -11.533132553100586 + ], + [ + "radi", + -11.533402442932129 + ], + [ + "▁Islam", + -11.533432006835938 + ], + [ + "RM", + -11.53366756439209 + ], + [ + "▁MT", + -11.533806800842285 + ], + [ + "▁strap", + -11.533854484558105 + ], + [ + "▁fixtures", + -11.534109115600586 + ], + [ + "▁Driver", + -11.534185409545898 + ], + [ + "▁lace", + -11.534358978271484 + ], + [ + "▁Partners", + -11.534547805786133 + ], + [ + "▁assessed", + -11.534730911254883 + ], + [ + "▁Poland", + -11.535032272338867 + ], + [ + "▁trains", + -11.535055160522461 + ], + [ + "▁sustain", + -11.535204887390137 + ], + [ + "▁marking", + -11.535210609436035 + ], + [ + "▁rig", + -11.535319328308105 + ], + [ + "▁Continue", + -11.535387992858887 + ], + [ + "▁Organic", + -11.535452842712402 + ], + [ + "▁Associate", + -11.5355224609375 + ], + [ + "▁Shin", + -11.53589153289795 + ], + [ + "▁enthusiasm", + -11.535904884338379 + ], + [ + "▁surveys", + -11.535958290100098 + ], + [ + "▁hood", + -11.5360689163208 + ], + [ + "▁positioned", + -11.536088943481445 + ], + [ + "▁Seat", + -11.536089897155762 + ], + [ + "▁lecture", + -11.536262512207031 + ], + [ + "turn", + -11.536295890808105 + ], + [ + "▁planting", + -11.536402702331543 + ], + [ + "▁promptly", + -11.536638259887695 + ], + [ + "eat", + -11.536688804626465 + ], + [ + "bag", + -11.536720275878906 + ], + [ + "▁batter", + -11.536870956420898 + ], + [ + "▁fought", + -11.536888122558594 + ], + [ + "MD", + -11.536921501159668 + ], + [ + "▁manuscript", + -11.537023544311523 + ], + [ + "▁GO", + -11.53707218170166 + ], + [ + "▁Orleans", + -11.537148475646973 + ], + [ + "▁acids", + -11.5372896194458 + ], + [ + "▁Aid", + -11.537470817565918 + ], + [ + "▁Netflix", + -11.537479400634766 + ], + [ + "▁59", + -11.53749942779541 + ], + [ + "▁lyrics", + -11.537572860717773 + ], + [ + "▁mysterious", + -11.53758716583252 + ], + [ + "▁Buck", + -11.538091659545898 + ], + [ + "ska", + -11.538124084472656 + ], + [ + "scape", + -11.538230895996094 + ], + [ + "▁jack", + -11.538291931152344 + ], + [ + "▁distinction", + -11.538573265075684 + ], + [ + "▁23,", + -11.538885116577148 + ], + [ + "▁Range", + -11.539016723632812 + ], + [ + "▁potato", + -11.539240837097168 + ], + [ + "pit", + -11.539371490478516 + ], + [ + "▁freeze", + -11.53941822052002 + ], + [ + "▁sellers", + -11.53945541381836 + ], + [ + "▁draws", + -11.539761543273926 + ], + [ + "▁composer", + -11.539984703063965 + ], + [ + "LU", + -11.54030990600586 + ], + [ + "cycl", + -11.540364265441895 + ], + [ + "▁GB", + -11.540461540222168 + ], + [ + "logist", + -11.540493965148926 + ], + [ + "▁attraction", + -11.540581703186035 + ], + [ + "▁killer", + -11.540858268737793 + ], + [ + "▁updating", + -11.541007995605469 + ], + [ + "HR", + -11.54102611541748 + ], + [ + "▁Architecture", + -11.541064262390137 + ], + [ + "▁BO", + -11.541064262390137 + ], + [ + "▁Designer", + -11.541217803955078 + ], + [ + "bat", + -11.541229248046875 + ], + [ + "▁fabrics", + -11.541383743286133 + ], + [ + "▁alignment", + -11.541690826416016 + ], + [ + "▁700", + -11.541837692260742 + ], + [ + "▁Hy", + -11.541894912719727 + ], + [ + "▁monetary", + -11.542197227478027 + ], + [ + "▁inviting", + -11.542375564575195 + ], + [ + "lly", + -11.542853355407715 + ], + [ + "▁teens", + -11.543218612670898 + ], + [ + "▁Opera", + -11.5432767868042 + ], + [ + "▁Jonathan", + -11.54338550567627 + ], + [ + "▁stupid", + -11.54338550567627 + ], + [ + "▁strictly", + -11.543461799621582 + ], + [ + "▁Switch", + -11.543493270874023 + ], + [ + "rig", + -11.543497085571289 + ], + [ + "bird", + -11.54354476928711 + ], + [ + "▁Afghanistan", + -11.543594360351562 + ], + [ + "▁101", + -11.543600082397461 + ], + [ + "▁lightly", + -11.543877601623535 + ], + [ + "▁deficit", + -11.543970108032227 + ], + [ + "▁Speaking", + -11.544089317321777 + ], + [ + "▁continent", + -11.544185638427734 + ], + [ + "▁Install", + -11.544241905212402 + ], + [ + "▁avoiding", + -11.54448127746582 + ], + [ + "kov", + -11.544652938842773 + ], + [ + "▁surprisingly", + -11.544702529907227 + ], + [ + "ILL", + -11.544819831848145 + ], + [ + "▁prayers", + -11.544901847839355 + ], + [ + "▁Poly", + -11.545005798339844 + ], + [ + "last", + -11.545090675354004 + ], + [ + "▁Generally", + -11.545127868652344 + ], + [ + "▁sisters", + -11.545310974121094 + ], + [ + "▁switching", + -11.545431137084961 + ], + [ + "▁HIV", + -11.54574966430664 + ], + [ + "▁lining", + -11.546083450317383 + ], + [ + "shaped", + -11.546339988708496 + ], + [ + "▁texts", + -11.546348571777344 + ], + [ + "▁Cruise", + -11.546393394470215 + ], + [ + "▁revenues", + -11.546483993530273 + ], + [ + "▁Picture", + -11.546504974365234 + ], + [ + "▁barrel", + -11.546716690063477 + ], + [ + "▁demographic", + -11.546810150146484 + ], + [ + "vision", + -11.546903610229492 + ], + [ + "▁villages", + -11.546916961669922 + ], + [ + "▁statistical", + -11.546931266784668 + ], + [ + "eck", + -11.546957969665527 + ], + [ + "▁Train", + -11.547224044799805 + ], + [ + "▁Helen", + -11.54731273651123 + ], + [ + "▁metres", + -11.547345161437988 + ], + [ + "▁Primary", + -11.54742431640625 + ], + [ + "▁horizontal", + -11.547640800476074 + ], + [ + "▁mum", + -11.547689437866211 + ], + [ + "▁clearance", + -11.547808647155762 + ], + [ + "▁spec", + -11.548065185546875 + ], + [ + "▁privilege", + -11.54819107055664 + ], + [ + "▁badly", + -11.548338890075684 + ], + [ + "blo", + -11.54847526550293 + ], + [ + "▁Cast", + -11.548479080200195 + ], + [ + "▁declined", + -11.5485258102417 + ], + [ + "Whenever", + -11.54881477355957 + ], + [ + "▁Dublin", + -11.548829078674316 + ], + [ + "▁sustained", + -11.548851013183594 + ], + [ + "HC", + -11.548933982849121 + ], + [ + "▁opponent", + -11.54898452758789 + ], + [ + "▁lender", + -11.549086570739746 + ], + [ + "▁Browse", + -11.549128532409668 + ], + [ + "▁Ready", + -11.549242973327637 + ], + [ + "▁leisure", + -11.549283027648926 + ], + [ + "▁Month", + -11.549342155456543 + ], + [ + "<", + -11.549640655517578 + ], + [ + "▁CPU", + -11.549996376037598 + ], + [ + "VA", + -11.550041198730469 + ], + [ + "▁competent", + -11.550341606140137 + ], + [ + "▁28,", + -11.550538063049316 + ], + [ + "vas", + -11.550572395324707 + ], + [ + "nik", + -11.550639152526855 + ], + [ + "▁Questions", + -11.550758361816406 + ], + [ + "kat", + -11.550950050354004 + ], + [ + "▁needing", + -11.550996780395508 + ], + [ + "▁consuming", + -11.551031112670898 + ], + [ + "▁Either", + -11.551090240478516 + ], + [ + "▁Lower", + -11.55114459991455 + ], + [ + "▁phenomenon", + -11.55119514465332 + ], + [ + "tell", + -11.55124568939209 + ], + [ + "▁align", + -11.551413536071777 + ], + [ + "▁pipes", + -11.551438331604004 + ], + [ + "▁Disease", + -11.551474571228027 + ], + [ + "▁advancement", + -11.551506042480469 + ], + [ + "▁Rec", + -11.55153751373291 + ], + [ + "▁Constitution", + -11.551607131958008 + ], + [ + "▁robot", + -11.551681518554688 + ], + [ + "▁Gal", + -11.551838874816895 + ], + [ + "▁riders", + -11.55201244354248 + ], + [ + "▁cheer", + -11.552139282226562 + ], + [ + "▁Birthday", + -11.552326202392578 + ], + [ + "▁disclose", + -11.552389144897461 + ], + [ + "UP", + -11.55284309387207 + ], + [ + "▁suggesting", + -11.552957534790039 + ], + [ + "▁Kat", + -11.5530366897583 + ], + [ + "rob", + -11.553106307983398 + ], + [ + "▁Kra", + -11.553256034851074 + ], + [ + "DO", + -11.553339004516602 + ], + [ + "pay", + -11.553439140319824 + ], + [ + "▁trap", + -11.553462028503418 + ], + [ + "▁Installation", + -11.553479194641113 + ], + [ + "▁towel", + -11.553547859191895 + ], + [ + "▁Federation", + -11.553558349609375 + ], + [ + "▁Sur", + -11.553567886352539 + ], + [ + "▁Applications", + -11.553680419921875 + ], + [ + "▁benchmark", + -11.553707122802734 + ], + [ + "cker", + -11.55374526977539 + ], + [ + "DF", + -11.553787231445312 + ], + [ + "▁publisher", + -11.553832054138184 + ], + [ + "▁predicted", + -11.5538911819458 + ], + [ + "▁searches", + -11.55390453338623 + ], + [ + "▁pics", + -11.553998947143555 + ], + [ + "▁modest", + -11.554007530212402 + ], + [ + "▁Khan", + -11.554082870483398 + ], + [ + "▁Jennifer", + -11.554373741149902 + ], + [ + "▁badge", + -11.554397583007812 + ], + [ + "rad", + -11.55453872680664 + ], + [ + "▁comparing", + -11.554586410522461 + ], + [ + "▁wound", + -11.554638862609863 + ], + [ + "▁sail", + -11.554719924926758 + ], + [ + "▁fin", + -11.554996490478516 + ], + [ + "▁empower", + -11.555280685424805 + ], + [ + "very", + -11.555318832397461 + ], + [ + "▁evaluated", + -11.55540943145752 + ], + [ + "▁Physical", + -11.555551528930664 + ], + [ + "pes", + -11.555736541748047 + ], + [ + "TY", + -11.556092262268066 + ], + [ + "COM", + -11.55610179901123 + ], + [ + "▁ARE", + -11.55625057220459 + ], + [ + "▁pupils", + -11.556428909301758 + ], + [ + "▁25%", + -11.556685447692871 + ], + [ + "▁Past", + -11.55703353881836 + ], + [ + "▁Stand", + -11.557077407836914 + ], + [ + "▁accent", + -11.557276725769043 + ], + [ + "▁Coll", + -11.557290077209473 + ], + [ + "▁exotic", + -11.557585716247559 + ], + [ + "▁frustration", + -11.558051109313965 + ], + [ + "▁Version", + -11.558185577392578 + ], + [ + "▁melt", + -11.558334350585938 + ], + [ + "stead", + -11.558343887329102 + ], + [ + "▁pine", + -11.558560371398926 + ], + [ + "▁Emergency", + -11.55866527557373 + ], + [ + "▁suspended", + -11.558810234069824 + ], + [ + "▁$15", + -11.559616088867188 + ], + [ + "▁Mall", + -11.55970573425293 + ], + [ + "▁knock", + -11.559810638427734 + ], + [ + "there", + -11.55984878540039 + ], + [ + "▁FC", + -11.560097694396973 + ], + [ + "▁divide", + -11.56014347076416 + ], + [ + "RD", + -11.56019115447998 + ], + [ + "lop", + -11.560256958007812 + ], + [ + "RB", + -11.560629844665527 + ], + [ + "▁discharge", + -11.56067180633545 + ], + [ + "▁Jerusalem", + -11.560784339904785 + ], + [ + "DU", + -11.56117057800293 + ], + [ + "▁AG", + -11.561212539672852 + ], + [ + "▁candle", + -11.561413764953613 + ], + [ + "▁pic", + -11.561573028564453 + ], + [ + "▁Kings", + -11.561806678771973 + ], + [ + "▁branding", + -11.562060356140137 + ], + [ + "▁illustrated", + -11.562183380126953 + ], + [ + "oxy", + -11.562298774719238 + ], + [ + "▁4:", + -11.562341690063477 + ], + [ + "▁invoice", + -11.56258487701416 + ], + [ + "▁rolls", + -11.562602996826172 + ], + [ + "▁Bin", + -11.562761306762695 + ], + [ + "▁undertake", + -11.56296443939209 + ], + [ + "▁Avoid", + -11.563078880310059 + ], + [ + "▁rounds", + -11.56309986114502 + ], + [ + "▁segments", + -11.563554763793945 + ], + [ + "▁Hack", + -11.563690185546875 + ], + [ + "▁washer", + -11.563761711120605 + ], + [ + "▁rides", + -11.564061164855957 + ], + [ + "▁proprietary", + -11.564079284667969 + ], + [ + "▁5%", + -11.564108848571777 + ], + [ + "▁Mur", + -11.56417179107666 + ], + [ + "▁wh", + -11.56429386138916 + ], + [ + "Net", + -11.564311027526855 + ], + [ + "▁scary", + -11.564643859863281 + ], + [ + "▁sporting", + -11.564821243286133 + ], + [ + "▁17,", + -11.564857482910156 + ], + [ + "atory", + -11.564997673034668 + ], + [ + "▁weekends", + -11.565091133117676 + ], + [ + "▁sheep", + -11.5651273727417 + ], + [ + "mission", + -11.565237998962402 + ], + [ + "▁waterproof", + -11.565252304077148 + ], + [ + "▁mailing", + -11.56556224822998 + ], + [ + "▁humor", + -11.565643310546875 + ], + [ + "▁cosmetic", + -11.565730094909668 + ], + [ + "indicating", + -11.565762519836426 + ], + [ + "▁spam", + -11.565831184387207 + ], + [ + "......", + -11.566017150878906 + ], + [ + "▁Half", + -11.566070556640625 + ], + [ + "▁Features", + -11.566222190856934 + ], + [ + "▁1986", + -11.566557884216309 + ], + [ + "▁uncertainty", + -11.56659984588623 + ], + [ + "ops", + -11.566604614257812 + ], + [ + "▁fried", + -11.566615104675293 + ], + [ + "▁terrain", + -11.566760063171387 + ], + [ + "▁holy", + -11.566764831542969 + ], + [ + "▁parameter", + -11.566804885864258 + ], + [ + "▁assists", + -11.56689453125 + ], + [ + "▁Dating", + -11.567066192626953 + ], + [ + "▁Log", + -11.567505836486816 + ], + [ + "▁**", + -11.567550659179688 + ], + [ + "▁observations", + -11.567655563354492 + ], + [ + "▁divine", + -11.567744255065918 + ], + [ + "▁limitation", + -11.56775951385498 + ], + [ + "▁bomb", + -11.567838668823242 + ], + [ + "▁recognised", + -11.567854881286621 + ], + [ + "▁gal", + -11.568061828613281 + ], + [ + "▁substantially", + -11.568103790283203 + ], + [ + "▁Chat", + -11.568108558654785 + ], + [ + "▁Bird", + -11.568256378173828 + ], + [ + "hem", + -11.568276405334473 + ], + [ + "▁sentiment", + -11.568401336669922 + ], + [ + "▁diesel", + -11.568564414978027 + ], + [ + "▁buses", + -11.568608283996582 + ], + [ + "▁#2", + -11.56877326965332 + ], + [ + "▁scroll", + -11.5687837600708 + ], + [ + "▁collaborate", + -11.568845748901367 + ], + [ + "▁promoted", + -11.568861961364746 + ], + [ + "▁scholars", + -11.568868637084961 + ], + [ + "▁intra", + -11.569007873535156 + ], + [ + "▁Break", + -11.569245338439941 + ], + [ + "▁pursuing", + -11.569330215454102 + ], + [ + "▁HI", + -11.569398880004883 + ], + [ + "phil", + -11.569597244262695 + ], + [ + "▁Similarly", + -11.569660186767578 + ], + [ + "▁RSS", + -11.56967544555664 + ], + [ + "▁mapping", + -11.56975269317627 + ], + [ + "▁26,", + -11.569841384887695 + ], + [ + "▁fatigue", + -11.569881439208984 + ], + [ + "▁Obviously", + -11.569884300231934 + ], + [ + "▁1987", + -11.5700101852417 + ], + [ + "▁63", + -11.570161819458008 + ], + [ + "ML", + -11.570185661315918 + ], + [ + "▁Bow", + -11.570188522338867 + ], + [ + "▁DS", + -11.570296287536621 + ], + [ + "▁lane", + -11.570362091064453 + ], + [ + "▁crossed", + -11.570538520812988 + ], + [ + "▁internship", + -11.570564270019531 + ], + [ + "▁Freedom", + -11.570586204528809 + ], + [ + "▁Stage", + -11.570658683776855 + ], + [ + "▁darkness", + -11.570828437805176 + ], + [ + "▁confidential", + -11.571233749389648 + ], + [ + "▁honour", + -11.571414947509766 + ], + [ + "▁appointments", + -11.571514129638672 + ], + [ + "2-", + -11.571565628051758 + ], + [ + "▁flush", + -11.571743965148926 + ], + [ + "▁crust", + -11.57178020477295 + ], + [ + "▁yarn", + -11.571788787841797 + ], + [ + "▁argued", + -11.57201862335205 + ], + [ + "▁classification", + -11.572035789489746 + ], + [ + "▁unwanted", + -11.572052955627441 + ], + [ + "zar", + -11.57221794128418 + ], + [ + "▁grasp", + -11.572356224060059 + ], + [ + "▁Bet", + -11.572477340698242 + ], + [ + "frame", + -11.572790145874023 + ], + [ + "▁notified", + -11.572981834411621 + ], + [ + "▁duck", + -11.573169708251953 + ], + [ + "▁combo", + -11.573175430297852 + ], + [ + "▁mac", + -11.573190689086914 + ], + [ + "eous", + -11.57327651977539 + ], + [ + "dine", + -11.573412895202637 + ], + [ + "▁participant", + -11.573484420776367 + ], + [ + "▁joke", + -11.573628425598145 + ], + [ + "▁sewing", + -11.573747634887695 + ], + [ + "thing", + -11.573958396911621 + ], + [ + "▁97", + -11.5740385055542 + ], + [ + "▁80%", + -11.574132919311523 + ], + [ + "▁Grove", + -11.574226379394531 + ], + [ + "▁upgraded", + -11.57492446899414 + ], + [ + "▁PI", + -11.575034141540527 + ], + [ + "▁flesh", + -11.575112342834473 + ], + [ + "BB", + -11.575149536132812 + ], + [ + "php", + -11.575297355651855 + ], + [ + "▁lenders", + -11.575515747070312 + ], + [ + "▁Tip", + -11.575560569763184 + ], + [ + "wit", + -11.575568199157715 + ], + [ + "▁:)", + -11.575844764709473 + ], + [ + "▁shirts", + -11.576043128967285 + ], + [ + "▁Rad", + -11.5761137008667 + ], + [ + "eye", + -11.576153755187988 + ], + [ + "share", + -11.576178550720215 + ], + [ + "▁oz", + -11.576231956481934 + ], + [ + "wire", + -11.576306343078613 + ], + [ + "▁momentum", + -11.576316833496094 + ], + [ + "▁Lar", + -11.57647705078125 + ], + [ + "▁Mode", + -11.576480865478516 + ], + [ + "white", + -11.576641082763672 + ], + [ + "▁mere", + -11.576669692993164 + ], + [ + "▁holders", + -11.576705932617188 + ], + [ + "▁journalist", + -11.57672119140625 + ], + [ + "▁circles", + -11.576922416687012 + ], + [ + "▁warmth", + -11.57692813873291 + ], + [ + "▁THAT", + -11.576945304870605 + ], + [ + "▁cargo", + -11.576995849609375 + ], + [ + "▁encountered", + -11.577303886413574 + ], + [ + "▁circulation", + -11.577454566955566 + ], + [ + "▁blockchain", + -11.577591896057129 + ], + [ + "▁electro", + -11.577752113342285 + ], + [ + "BR", + -11.578521728515625 + ], + [ + "▁challenged", + -11.578730583190918 + ], + [ + "tract", + -11.578753471374512 + ], + [ + "lift", + -11.57876968383789 + ], + [ + "%)", + -11.578838348388672 + ], + [ + "value", + -11.578983306884766 + ], + [ + "books", + -11.579339981079102 + ], + [ + "▁cellular", + -11.579458236694336 + ], + [ + "ggy", + -11.579484939575195 + ], + [ + "wheel", + -11.57959270477295 + ], + [ + "▁delightful", + -11.57976245880127 + ], + [ + "▁Going", + -11.57978343963623 + ], + [ + "▁polar", + -11.57978630065918 + ], + [ + "flu", + -11.57983112335205 + ], + [ + "▁Duke", + -11.579954147338867 + ], + [ + "▁Lodge", + -11.580066680908203 + ], + [ + "mini", + -11.580108642578125 + ], + [ + "▁Louisiana", + -11.58011245727539 + ], + [ + "▁Gil", + -11.580244064331055 + ], + [ + "▁Suite", + -11.580338478088379 + ], + [ + "EG", + -11.58041763305664 + ], + [ + "▁ignored", + -11.580536842346191 + ], + [ + "▁secrets", + -11.581154823303223 + ], + [ + "▁orchestra", + -11.581216812133789 + ], + [ + "wash", + -11.581226348876953 + ], + [ + "tec", + -11.581347465515137 + ], + [ + "▁fri", + -11.581369400024414 + ], + [ + "▁shoulders", + -11.581449508666992 + ], + [ + "▁dated", + -11.581650733947754 + ], + [ + "▁adapter", + -11.581687927246094 + ], + [ + "▁12-", + -11.581711769104004 + ], + [ + "▁cancellation", + -11.581953048706055 + ], + [ + "▁Jacob", + -11.582060813903809 + ], + [ + "▁stressed", + -11.582062721252441 + ], + [ + "▁Garage", + -11.582233428955078 + ], + [ + "▁Baltimore", + -11.582256317138672 + ], + [ + "▁tuition", + -11.582300186157227 + ], + [ + "▁securities", + -11.582322120666504 + ], + [ + "▁pharmacy", + -11.582452774047852 + ], + [ + "▁fears", + -11.582711219787598 + ], + [ + "mouth", + -11.583003997802734 + ], + [ + "▁nurses", + -11.583390235900879 + ], + [ + "▁travelers", + -11.583792686462402 + ], + [ + "▁consultants", + -11.583857536315918 + ], + [ + "▁likewise", + -11.583903312683105 + ], + [ + "▁undertaking", + -11.583985328674316 + ], + [ + "▁Soul", + -11.584134101867676 + ], + [ + "▁GT", + -11.584209442138672 + ], + [ + "▁simulation", + -11.584297180175781 + ], + [ + "▁submitting", + -11.584390640258789 + ], + [ + "▁pastor", + -11.584577560424805 + ], + [ + "chy", + -11.58458423614502 + ], + [ + "▁considerably", + -11.584589958190918 + ], + [ + "▁informal", + -11.584736824035645 + ], + [ + "▁adhere", + -11.584794998168945 + ], + [ + "▁handmade", + -11.585030555725098 + ], + [ + "▁Delivery", + -11.585177421569824 + ], + [ + "century", + -11.585205078125 + ], + [ + "▁Rules", + -11.585511207580566 + ], + [ + "kins", + -11.5855131149292 + ], + [ + "▁rehabilitation", + -11.58554744720459 + ], + [ + "▁Neuro", + -11.585843086242676 + ], + [ + "▁Brad", + -11.585855484008789 + ], + [ + "▁rally", + -11.585968017578125 + ], + [ + "▁attachment", + -11.585968971252441 + ], + [ + "▁Zo", + -11.585976600646973 + ], + [ + "▁Barcelona", + -11.586189270019531 + ], + [ + "▁planted", + -11.586315155029297 + ], + [ + "iki", + -11.5863618850708 + ], + [ + "▁Les", + -11.586393356323242 + ], + [ + "▁romance", + -11.586556434631348 + ], + [ + "▁leak", + -11.586724281311035 + ], + [ + "-13", + -11.586729049682617 + ], + [ + "▁spoon", + -11.587137222290039 + ], + [ + "▁12,", + -11.587141036987305 + ], + [ + "▁jury", + -11.587162017822266 + ], + [ + "▁beam", + -11.587367057800293 + ], + [ + "▁locks", + -11.587386131286621 + ], + [ + "▁Charlie", + -11.587489128112793 + ], + [ + "▁promotions", + -11.587718963623047 + ], + [ + "▁cited", + -11.587894439697266 + ], + [ + "▁curtains", + -11.588005065917969 + ], + [ + "▁afterwards", + -11.58821964263916 + ], + [ + "▁Moscow", + -11.588237762451172 + ], + [ + "▁methodology", + -11.588269233703613 + ], + [ + "▁rug", + -11.588356018066406 + ], + [ + "▁fortune", + -11.588370323181152 + ], + [ + "ppy", + -11.588554382324219 + ], + [ + "▁$25", + -11.588591575622559 + ], + [ + "▁Eat", + -11.589168548583984 + ], + [ + "▁emotion", + -11.589357376098633 + ], + [ + "▁statue", + -11.589400291442871 + ], + [ + "MF", + -11.589722633361816 + ], + [ + "▁sliding", + -11.589776992797852 + ], + [ + "▁boutique", + -11.589940071105957 + ], + [ + "▁hoped", + -11.59014892578125 + ], + [ + "▁deleted", + -11.590198516845703 + ], + [ + "▁brave", + -11.590222358703613 + ], + [ + "▁Marvel", + -11.590415954589844 + ], + [ + "▁Barbara", + -11.59049129486084 + ], + [ + "park", + -11.590550422668457 + ], + [ + "▁Liverpool", + -11.590596199035645 + ], + [ + "▁traveled", + -11.590680122375488 + ], + [ + "lus", + -11.590682983398438 + ], + [ + "▁Ranch", + -11.59070110321045 + ], + [ + "section", + -11.590742111206055 + ], + [ + "ASS", + -11.590750694274902 + ], + [ + "cious", + -11.590750694274902 + ], + [ + "▁Mars", + -11.5907621383667 + ], + [ + "INE", + -11.590806007385254 + ], + [ + "▁actress", + -11.590808868408203 + ], + [ + "▁giveaway", + -11.59089183807373 + ], + [ + "▁waist", + -11.590929985046387 + ], + [ + "▁activation", + -11.59093189239502 + ], + [ + "▁Nevada", + -11.590947151184082 + ], + [ + "▁Host", + -11.5910062789917 + ], + [ + "▁crops", + -11.591060638427734 + ], + [ + "▁Cream", + -11.591195106506348 + ], + [ + "▁vitamins", + -11.591254234313965 + ], + [ + "▁matched", + -11.591300964355469 + ], + [ + "▁Left", + -11.591525077819824 + ], + [ + "▁Pot", + -11.591719627380371 + ], + [ + "▁confusing", + -11.591842651367188 + ], + [ + "▁pole", + -11.592028617858887 + ], + [ + "▁enrolled", + -11.592233657836914 + ], + [ + "▁cope", + -11.592269897460938 + ], + [ + "▁acoustic", + -11.592449188232422 + ], + [ + "▁approached", + -11.592477798461914 + ], + [ + "▁Mus", + -11.592606544494629 + ], + [ + "TF", + -11.592866897583008 + ], + [ + "▁chi", + -11.592884063720703 + ], + [ + "mut", + -11.59315299987793 + ], + [ + "▁Eve", + -11.59323501586914 + ], + [ + "▁associations", + -11.593526840209961 + ], + [ + "▁Tools", + -11.593585014343262 + ], + [ + "each", + -11.593685150146484 + ], + [ + "▁sons", + -11.5936861038208 + ], + [ + "▁logistics", + -11.593729972839355 + ], + [ + "▁WiFi", + -11.593840599060059 + ], + [ + "▁salmon", + -11.594225883483887 + ], + [ + "▁upgrades", + -11.594300270080566 + ], + [ + "▁Mediterranean", + -11.594320297241211 + ], + [ + "▁Others", + -11.594442367553711 + ], + [ + "▁ABC", + -11.594759941101074 + ], + [ + "▁barn", + -11.594927787780762 + ], + [ + "7)", + -11.595044136047363 + ], + [ + "▁Chicken", + -11.595060348510742 + ], + [ + "▁prep", + -11.595250129699707 + ], + [ + "▁licence", + -11.595553398132324 + ], + [ + "▁buffer", + -11.595647811889648 + ], + [ + "▁necklace", + -11.595681190490723 + ], + [ + "▁assurance", + -11.595703125 + ], + [ + "▁chapters", + -11.595829010009766 + ], + [ + "sley", + -11.595980644226074 + ], + [ + "▁paired", + -11.596206665039062 + ], + [ + "▁Dry", + -11.596244812011719 + ], + [ + "ibility", + -11.596263885498047 + ], + [ + "▁schemes", + -11.596305847167969 + ], + [ + "mount", + -11.596389770507812 + ], + [ + "▁borders", + -11.596406936645508 + ], + [ + "▁offline", + -11.59653377532959 + ], + [ + "▁curtain", + -11.596553802490234 + ], + [ + "▁modes", + -11.59684944152832 + ], + [ + "▁builds", + -11.59685230255127 + ], + [ + "▁sturdy", + -11.597023010253906 + ], + [ + "vine", + -11.597127914428711 + ], + [ + "▁occupied", + -11.597346305847168 + ], + [ + "▁Production", + -11.597430229187012 + ], + [ + "▁Connecticut", + -11.597485542297363 + ], + [ + "▁harness", + -11.597503662109375 + ], + [ + "▁Impact", + -11.59766674041748 + ], + [ + "sses", + -11.597814559936523 + ], + [ + "▁bun", + -11.59791088104248 + ], + [ + "▁tactics", + -11.598045349121094 + ], + [ + "▁Mumbai", + -11.598322868347168 + ], + [ + "NR", + -11.59837532043457 + ], + [ + "т", + -11.598458290100098 + ], + [ + "▁13.", + -11.598526000976562 + ], + [ + "writer", + -11.598751068115234 + ], + [ + "RY", + -11.598807334899902 + ], + [ + "▁thoughtful", + -11.599051475524902 + ], + [ + "▁keyword", + -11.599276542663574 + ], + [ + "▁supervision", + -11.599481582641602 + ], + [ + "▁Camera", + -11.599530220031738 + ], + [ + "story", + -11.599678039550781 + ], + [ + "▁repeatedly", + -11.599992752075195 + ], + [ + "▁recreational", + -11.600167274475098 + ], + [ + "gger", + -11.600193977355957 + ], + [ + "▁Wayne", + -11.600229263305664 + ], + [ + "▁excel", + -11.600353240966797 + ], + [ + "▁conviction", + -11.600451469421387 + ], + [ + "▁disagree", + -11.600515365600586 + ], + [ + "▁drew", + -11.600687980651855 + ], + [ + "▁Delta", + -11.600728988647461 + ], + [ + "una", + -11.600800514221191 + ], + [ + "▁Drop", + -11.600918769836426 + ], + [ + "▁attribute", + -11.601004600524902 + ], + [ + "▁Path", + -11.601035118103027 + ], + [ + "▁diving", + -11.601035118103027 + ], + [ + "hil", + -11.601201057434082 + ], + [ + "▁needle", + -11.60128402709961 + ], + [ + "▁Photography", + -11.601489067077637 + ], + [ + "▁Moving", + -11.601961135864258 + ], + [ + "ré", + -11.602291107177734 + ], + [ + "▁bon", + -11.60244369506836 + ], + [ + "▁enterprises", + -11.602469444274902 + ], + [ + "iko", + -11.60247802734375 + ], + [ + "▁TA", + -11.602673530578613 + ], + [ + "▁Uni", + -11.603117942810059 + ], + [ + "omb", + -11.603419303894043 + ], + [ + "▁arena", + -11.603569984436035 + ], + [ + "▁Kent", + -11.603671073913574 + ], + [ + "▁graph", + -11.603811264038086 + ], + [ + "▁Electronic", + -11.603839874267578 + ], + [ + "▁counseling", + -11.604039192199707 + ], + [ + "▁cartoon", + -11.60417366027832 + ], + [ + "▁pools", + -11.604177474975586 + ], + [ + "▁goodness", + -11.604180335998535 + ], + [ + "▁arriving", + -11.604268074035645 + ], + [ + "▁rustic", + -11.60428237915039 + ], + [ + "▁77", + -11.60460090637207 + ], + [ + "▁tra", + -11.604683876037598 + ], + [ + "▁Steven", + -11.604779243469238 + ], + [ + "▁Request", + -11.604937553405762 + ], + [ + "▁Transportation", + -11.605196952819824 + ], + [ + "fla", + -11.605613708496094 + ], + [ + "▁joints", + -11.605690956115723 + ], + [ + "▁Str", + -11.60583209991455 + ], + [ + "ncing", + -11.605875968933105 + ], + [ + "▁surprises", + -11.606064796447754 + ], + [ + "▁Explore", + -11.60612964630127 + ], + [ + "▁License", + -11.606222152709961 + ], + [ + "▁Jen", + -11.606240272521973 + ], + [ + "▁crawl", + -11.606822967529297 + ], + [ + "▁zones", + -11.606847763061523 + ], + [ + "▁Parker", + -11.606934547424316 + ], + [ + "▁centres", + -11.606961250305176 + ], + [ + "▁Partner", + -11.606965065002441 + ], + [ + "▁def", + -11.60708999633789 + ], + [ + "▁doll", + -11.60722541809082 + ], + [ + "say", + -11.607242584228516 + ], + [ + "▁tribute", + -11.607304573059082 + ], + [ + "▁cre", + -11.607359886169434 + ], + [ + "▁bronze", + -11.607364654541016 + ], + [ + "▁Degree", + -11.6076021194458 + ], + [ + "▁billing", + -11.607860565185547 + ], + [ + "▁Marc", + -11.608003616333008 + ], + [ + "Hi", + -11.608047485351562 + ], + [ + "serv", + -11.608072280883789 + ], + [ + "note", + -11.608115196228027 + ], + [ + "▁Contract", + -11.608257293701172 + ], + [ + "▁checkout", + -11.608329772949219 + ], + [ + "eel", + -11.608354568481445 + ], + [ + "▁warned", + -11.608692169189453 + ], + [ + "CG", + -11.608729362487793 + ], + [ + "▁Retail", + -11.608774185180664 + ], + [ + "▁convince", + -11.608918190002441 + ], + [ + "▁Glad", + -11.609033584594727 + ], + [ + "▁Kha", + -11.609237670898438 + ], + [ + "▁shaft", + -11.609313011169434 + ], + [ + "▁stressful", + -11.60936164855957 + ], + [ + "▁emphasize", + -11.609365463256836 + ], + [ + "▁Turkish", + -11.609514236450195 + ], + [ + "▁Gro", + -11.609597206115723 + ], + [ + "chan", + -11.609637260437012 + ], + [ + "▁RT", + -11.60966968536377 + ], + [ + "▁traders", + -11.609674453735352 + ], + [ + "▁Cabinet", + -11.609813690185547 + ], + [ + "▁molecular", + -11.609903335571289 + ], + [ + "▁Hal", + -11.609947204589844 + ], + [ + "▁Crown", + -11.610067367553711 + ], + [ + "▁Mine", + -11.61007022857666 + ], + [ + "▁wages", + -11.610075950622559 + ], + [ + "plan", + -11.610172271728516 + ], + [ + "fel", + -11.610296249389648 + ], + [ + "▁neighbor", + -11.61037826538086 + ], + [ + "▁Assessment", + -11.61054515838623 + ], + [ + "▁Chance", + -11.610557556152344 + ], + [ + "▁surveillance", + -11.61058235168457 + ], + [ + "▁27,", + -11.610793113708496 + ], + [ + "▁NBA", + -11.610834121704102 + ], + [ + "▁touches", + -11.61100959777832 + ], + [ + "▁(6", + -11.6110258102417 + ], + [ + "▁Associates", + -11.611148834228516 + ], + [ + "▁Programme", + -11.611187934875488 + ], + [ + "▁Gordon", + -11.611308097839355 + ], + [ + "▁boom", + -11.611459732055664 + ], + [ + "▁stepped", + -11.61150074005127 + ], + [ + "▁gum", + -11.611572265625 + ], + [ + "▁Brain", + -11.61166000366211 + ], + [ + "oxi", + -11.611750602722168 + ], + [ + "▁Cooper", + -11.611799240112305 + ], + [ + "4)", + -11.611878395080566 + ], + [ + "▁casinos", + -11.61188793182373 + ], + [ + "logic", + -11.611905097961426 + ], + [ + "▁replica", + -11.611927032470703 + ], + [ + "▁Mun", + -11.611942291259766 + ], + [ + "▁render", + -11.612030982971191 + ], + [ + "▁Different", + -11.61209774017334 + ], + [ + "▁relieve", + -11.612131118774414 + ], + [ + "▁burst", + -11.61250114440918 + ], + [ + "graph", + -11.61266803741455 + ], + [ + "▁Fed", + -11.612838745117188 + ], + [ + "dent", + -11.612876892089844 + ], + [ + "▁Mah", + -11.612911224365234 + ], + [ + "▁fate", + -11.612916946411133 + ], + [ + "▁Wide", + -11.612937927246094 + ], + [ + "▁sneak", + -11.613038063049316 + ], + [ + "▁Douglas", + -11.613368034362793 + ], + [ + "▁Platform", + -11.613505363464355 + ], + [ + "ope", + -11.613649368286133 + ], + [ + "dies", + -11.613727569580078 + ], + [ + "gro", + -11.613741874694824 + ], + [ + "lav", + -11.613747596740723 + ], + [ + "▁tumor", + -11.613954544067383 + ], + [ + "ific", + -11.613999366760254 + ], + [ + "TT", + -11.614039421081543 + ], + [ + "▁76", + -11.614090919494629 + ], + [ + "nite", + -11.614275932312012 + ], + [ + "▁substances", + -11.614298820495605 + ], + [ + "▁realise", + -11.614335060119629 + ], + [ + "ather", + -11.614355087280273 + ], + [ + "▁FM", + -11.614465713500977 + ], + [ + "▁rub", + -11.614725112915039 + ], + [ + "▁insured", + -11.614818572998047 + ], + [ + "▁realm", + -11.614835739135742 + ], + [ + "▁Nelson", + -11.614887237548828 + ], + [ + "▁Pine", + -11.615035057067871 + ], + [ + "▁descriptions", + -11.615079879760742 + ], + [ + "▁pale", + -11.615116119384766 + ], + [ + "▁Days", + -11.615364074707031 + ], + [ + "▁households", + -11.615436553955078 + ], + [ + "▁CAN", + -11.615467071533203 + ], + [ + "▁packs", + -11.615589141845703 + ], + [ + "▁decorations", + -11.615635871887207 + ], + [ + "▁Bee", + -11.615765571594238 + ], + [ + "▁Beijing", + -11.616085052490234 + ], + [ + "▁68", + -11.616130828857422 + ], + [ + "▁autumn", + -11.616151809692383 + ], + [ + "▁peanut", + -11.61648941040039 + ], + [ + "▁passport", + -11.616499900817871 + ], + [ + "▁Labour", + -11.616545677185059 + ], + [ + "▁crimes", + -11.616633415222168 + ], + [ + "green", + -11.616680145263672 + ], + [ + "used", + -11.616734504699707 + ], + [ + "в", + -11.616859436035156 + ], + [ + "▁Craig", + -11.616888046264648 + ], + [ + "▁25,", + -11.617049217224121 + ], + [ + "NN", + -11.617057800292969 + ], + [ + "▁desires", + -11.617158889770508 + ], + [ + "▁streams", + -11.617199897766113 + ], + [ + "▁intersection", + -11.617364883422852 + ], + [ + "▁ample", + -11.617385864257812 + ], + [ + "▁Dress", + -11.617586135864258 + ], + [ + "stream", + -11.617652893066406 + ], + [ + "▁Poker", + -11.617915153503418 + ], + [ + "▁shore", + -11.618346214294434 + ], + [ + "▁regulate", + -11.61838436126709 + ], + [ + "▁Edit", + -11.61844253540039 + ], + [ + "ality", + -11.618585586547852 + ], + [ + "▁turkey", + -11.618780136108398 + ], + [ + "▁polish", + -11.618816375732422 + ], + [ + "▁Masters", + -11.618892669677734 + ], + [ + "brook", + -11.618956565856934 + ], + [ + "▁bargain", + -11.619012832641602 + ], + [ + "▁Nation", + -11.619209289550781 + ], + [ + "▁evolve", + -11.619260787963867 + ], + [ + "▁analyzed", + -11.619283676147461 + ], + [ + "▁safeguard", + -11.619414329528809 + ], + [ + "▁dash", + -11.619569778442383 + ], + [ + "▁breakdown", + -11.619610786437988 + ], + [ + "▁sword", + -11.619614601135254 + ], + [ + "▁convention", + -11.619800567626953 + ], + [ + "▁backing", + -11.619880676269531 + ], + [ + "▁vibe", + -11.619887351989746 + ], + [ + "▁characteristic", + -11.62010383605957 + ], + [ + "▁proceeds", + -11.620406150817871 + ], + [ + "▁retailer", + -11.620430946350098 + ], + [ + "▁Lou", + -11.620512008666992 + ], + [ + "has", + -11.620548248291016 + ], + [ + "holder", + -11.62085247039795 + ], + [ + "ool", + -11.620906829833984 + ], + [ + "DT", + -11.620914459228516 + ], + [ + "▁Vitamin", + -11.620944023132324 + ], + [ + "▁chic", + -11.621025085449219 + ], + [ + "IV", + -11.6214017868042 + ], + [ + "▁modeling", + -11.621477127075195 + ], + [ + "▁SI", + -11.621797561645508 + ], + [ + "▁seniors", + -11.621828079223633 + ], + [ + "▁1984", + -11.621829986572266 + ], + [ + "ether", + -11.621931076049805 + ], + [ + "▁prototype", + -11.622136116027832 + ], + [ + "▁Intelligence", + -11.62236213684082 + ], + [ + "▁freezer", + -11.62304973602295 + ], + [ + "▁RS", + -11.623183250427246 + ], + [ + "cept", + -11.62324047088623 + ], + [ + "▁Tap", + -11.623245239257812 + ], + [ + "▁annoying", + -11.623377799987793 + ], + [ + "▁Russell", + -11.623481750488281 + ], + [ + "▁bother", + -11.623793601989746 + ], + [ + "hun", + -11.624056816101074 + ], + [ + "kal", + -11.62417984008789 + ], + [ + "▁Beat", + -11.624198913574219 + ], + [ + "▁nutritional", + -11.624554634094238 + ], + [ + "aged", + -11.624899864196777 + ], + [ + "▁1985", + -11.624929428100586 + ], + [ + "▁approve", + -11.625070571899414 + ], + [ + "inal", + -11.625262260437012 + ], + [ + "▁palette", + -11.625275611877441 + ], + [ + "▁Nike", + -11.625418663024902 + ], + [ + "▁collapse", + -11.625577926635742 + ], + [ + "▁Christopher", + -11.625807762145996 + ], + [ + "▁HS", + -11.625954627990723 + ], + [ + "▁bracelet", + -11.626092910766602 + ], + [ + "tum", + -11.626350402832031 + ], + [ + "▁varies", + -11.626422882080078 + ], + [ + "▁adaptation", + -11.626434326171875 + ], + [ + "▁Shu", + -11.62649154663086 + ], + [ + "▁blanket", + -11.626733779907227 + ], + [ + "▁Sie", + -11.626890182495117 + ], + [ + "▁OH", + -11.627134323120117 + ], + [ + "▁spice", + -11.627227783203125 + ], + [ + "etti", + -11.627293586730957 + ], + [ + "▁elementary", + -11.627372741699219 + ], + [ + "▁grave", + -11.627394676208496 + ], + [ + "▁bacon", + -11.627467155456543 + ], + [ + "▁catering", + -11.627564430236816 + ], + [ + "▁desirable", + -11.62763500213623 + ], + [ + "▁cushions", + -11.627791404724121 + ], + [ + "▁Soon", + -11.627880096435547 + ], + [ + "▁translated", + -11.628135681152344 + ], + [ + "▁activated", + -11.628232955932617 + ], + [ + "▁Strong", + -11.628276824951172 + ], + [ + "color", + -11.628466606140137 + ], + [ + "▁reviewing", + -11.628475189208984 + ], + [ + "▁Foot", + -11.62849235534668 + ], + [ + "▁inquiry", + -11.628715515136719 + ], + [ + "150", + -11.62879753112793 + ], + [ + "▁deposits", + -11.6288423538208 + ], + [ + "▁occurring", + -11.628985404968262 + ], + [ + "coming", + -11.628990173339844 + ], + [ + "▁Deck", + -11.62906265258789 + ], + [ + "▁teen", + -11.62962818145752 + ], + [ + "▁Built", + -11.62977123260498 + ], + [ + "▁Rain", + -11.629952430725098 + ], + [ + "▁ruled", + -11.629965782165527 + ], + [ + "▁2-3", + -11.630104064941406 + ], + [ + "▁29,", + -11.630221366882324 + ], + [ + "▁linen", + -11.63036060333252 + ], + [ + "ometer", + -11.630385398864746 + ], + [ + "▁Rd", + -11.630630493164062 + ], + [ + "▁fragrance", + -11.630952835083008 + ], + [ + "▁Factory", + -11.630977630615234 + ], + [ + "▁Profile", + -11.631002426147461 + ], + [ + "-30", + -11.631074905395508 + ], + [ + "▁Essay", + -11.631095886230469 + ], + [ + "▁forests", + -11.631172180175781 + ], + [ + "▁balcony", + -11.631226539611816 + ], + [ + "▁recycled", + -11.631265640258789 + ], + [ + "pool", + -11.63127326965332 + ], + [ + "▁bang", + -11.631298065185547 + ], + [ + "▁Rule", + -11.63134765625 + ], + [ + "▁circular", + -11.631362915039062 + ], + [ + "▁jumping", + -11.631400108337402 + ], + [ + "▁bell", + -11.631487846374512 + ], + [ + "▁tricky", + -11.632050514221191 + ], + [ + "▁Firm", + -11.632088661193848 + ], + [ + "▁opera", + -11.632238388061523 + ], + [ + "▁approaching", + -11.632269859313965 + ], + [ + "▁touched", + -11.632984161376953 + ], + [ + "▁Gardens", + -11.633035659790039 + ], + [ + "▁Thompson", + -11.63311767578125 + ], + [ + "▁sci", + -11.63317584991455 + ], + [ + "▁appearing", + -11.63322639465332 + ], + [ + "▁lbs", + -11.633349418640137 + ], + [ + "▁antenna", + -11.633357048034668 + ], + [ + "▁shortage", + -11.633530616760254 + ], + [ + "▁nails", + -11.633618354797363 + ], + [ + "▁overhead", + -11.633618354797363 + ], + [ + "Mon", + -11.634024620056152 + ], + [ + "▁learners", + -11.634148597717285 + ], + [ + "▁oversee", + -11.634221076965332 + ], + [ + "BE", + -11.634281158447266 + ], + [ + "▁Tips", + -11.634345054626465 + ], + [ + "also", + -11.634376525878906 + ], + [ + "▁Designs", + -11.634378433227539 + ], + [ + "ogen", + -11.634403228759766 + ], + [ + "▁bookmark", + -11.63441276550293 + ], + [ + "TL", + -11.634594917297363 + ], + [ + ":30", + -11.63481616973877 + ], + [ + "▁LE", + -11.635305404663086 + ], + [ + "▁smartphones", + -11.635340690612793 + ], + [ + "▁NASA", + -11.635507583618164 + ], + [ + "▁aroma", + -11.635687828063965 + ], + [ + "▁Adams", + -11.63575553894043 + ], + [ + "▁satisfying", + -11.635794639587402 + ], + [ + "▁obstacles", + -11.635797500610352 + ], + [ + "▁memorial", + -11.636091232299805 + ], + [ + "▁deployed", + -11.63625717163086 + ], + [ + "▁Prepare", + -11.63632583618164 + ], + [ + "cott", + -11.636494636535645 + ], + [ + "▁staple", + -11.636517524719238 + ], + [ + "hop", + -11.636534690856934 + ], + [ + "▁crafts", + -11.636754035949707 + ], + [ + "▁84", + -11.636847496032715 + ], + [ + "▁advances", + -11.636880874633789 + ], + [ + "▁combinations", + -11.636899948120117 + ], + [ + "▁refresh", + -11.63693618774414 + ], + [ + "ACE", + -11.636937141418457 + ], + [ + "▁tanks", + -11.637091636657715 + ], + [ + "cid", + -11.637115478515625 + ], + [ + "arch", + -11.637202262878418 + ], + [ + "eld", + -11.63729476928711 + ], + [ + "▁Leather", + -11.637296676635742 + ], + [ + "▁Protect", + -11.637504577636719 + ], + [ + "AG", + -11.637592315673828 + ], + [ + "▁horizon", + -11.637598991394043 + ], + [ + "▁revised", + -11.637618064880371 + ], + [ + "▁tier", + -11.637776374816895 + ], + [ + "ographic", + -11.63794231414795 + ], + [ + "MG", + -11.638258934020996 + ], + [ + "▁progression", + -11.63828182220459 + ], + [ + "▁jeans", + -11.63846492767334 + ], + [ + "▁enhancing", + -11.638665199279785 + ], + [ + "▁bloom", + -11.638712882995605 + ], + [ + "plus", + -11.63879108428955 + ], + [ + "▁forgot", + -11.638907432556152 + ], + [ + "▁delayed", + -11.639074325561523 + ], + [ + "▁col", + -11.639083862304688 + ], + [ + "therapy", + -11.639091491699219 + ], + [ + "lets", + -11.639092445373535 + ], + [ + "▁transfers", + -11.639108657836914 + ], + [ + "▁Trading", + -11.639152526855469 + ], + [ + "▁gaps", + -11.639172554016113 + ], + [ + "ages", + -11.639253616333008 + ], + [ + "▁rocket", + -11.639396667480469 + ], + [ + "250", + -11.63947868347168 + ], + [ + "▁blessing", + -11.639521598815918 + ], + [ + "▁lifting", + -11.639552116394043 + ], + [ + "▁eternal", + -11.639554023742676 + ], + [ + "pop", + -11.639680862426758 + ], + [ + "tiv", + -11.63972282409668 + ], + [ + "eek", + -11.639791488647461 + ], + [ + "▁perspectives", + -11.640308380126953 + ], + [ + "▁Offer", + -11.640325546264648 + ], + [ + "HP", + -11.640371322631836 + ], + [ + "▁flo", + -11.640535354614258 + ], + [ + "▁notable", + -11.640539169311523 + ], + [ + "▁firmly", + -11.640750885009766 + ], + [ + "▁Ore", + -11.640990257263184 + ], + [ + "▁Mississippi", + -11.640996932983398 + ], + [ + "▁controversial", + -11.641066551208496 + ], + [ + "▁administrator", + -11.641161918640137 + ], + [ + "▁cow", + -11.64136791229248 + ], + [ + "▁dominant", + -11.641407012939453 + ], + [ + "▁BS", + -11.641423225402832 + ], + [ + "▁LP", + -11.641484260559082 + ], + [ + "▁Revolution", + -11.641497611999512 + ], + [ + "▁wipe", + -11.641643524169922 + ], + [ + "▁deserves", + -11.641671180725098 + ], + [ + "▁rentals", + -11.641905784606934 + ], + [ + "▁frustrating", + -11.641940116882324 + ], + [ + "riv", + -11.642118453979492 + ], + [ + "▁VR", + -11.642155647277832 + ], + [ + "▁unemployment", + -11.642196655273438 + ], + [ + "▁sensation", + -11.642348289489746 + ], + [ + "▁coding", + -11.642388343811035 + ], + [ + "▁Okay", + -11.642401695251465 + ], + [ + "AU", + -11.642430305480957 + ], + [ + "▁Plastic", + -11.642581939697266 + ], + [ + "▁iTunes", + -11.642999649047852 + ], + [ + "/4", + -11.643027305603027 + ], + [ + "max", + -11.643144607543945 + ], + [ + "ega", + -11.643181800842285 + ], + [ + "▁influences", + -11.643216133117676 + ], + [ + "▁dealers", + -11.643279075622559 + ], + [ + "▁scenery", + -11.643654823303223 + ], + [ + "▁Madison", + -11.643672943115234 + ], + [ + "▁mag", + -11.64383602142334 + ], + [ + "▁locksmith", + -11.644248008728027 + ], + [ + "▁glance", + -11.644248962402344 + ], + [ + "rou", + -11.644257545471191 + ], + [ + "▁por", + -11.644288063049316 + ], + [ + "▁eBay", + -11.644292831420898 + ], + [ + "▁Sl", + -11.644407272338867 + ], + [ + "stro", + -11.644449234008789 + ], + [ + "▁Bishop", + -11.644474983215332 + ], + [ + "▁bubble", + -11.644547462463379 + ], + [ + "50,000", + -11.644641876220703 + ], + [ + "▁pixels", + -11.644767761230469 + ], + [ + "▁ankle", + -11.644770622253418 + ], + [ + "▁Cab", + -11.644787788391113 + ], + [ + "▁Stir", + -11.644941329956055 + ], + [ + "LP", + -11.645008087158203 + ], + [ + "▁probe", + -11.645039558410645 + ], + [ + "quit", + -11.64505672454834 + ], + [ + "▁macro", + -11.645089149475098 + ], + [ + "▁Operations", + -11.645150184631348 + ], + [ + "▁Career", + -11.645244598388672 + ], + [ + "▁verified", + -11.645299911499023 + ], + [ + "morph", + -11.645477294921875 + ], + [ + "▁Reference", + -11.645492553710938 + ], + [ + "▁prohibited", + -11.645574569702148 + ], + [ + "▁contrary", + -11.645585060119629 + ], + [ + "▁verification", + -11.645682334899902 + ], + [ + "▁cleared", + -11.645718574523926 + ], + [ + "▁sunlight", + -11.645861625671387 + ], + [ + "▁dam", + -11.64615535736084 + ], + [ + "▁simpler", + -11.64616870880127 + ], + [ + "▁struggles", + -11.646321296691895 + ], + [ + "▁lending", + -11.646344184875488 + ], + [ + "▁swap", + -11.6464204788208 + ], + [ + "▁Graham", + -11.646444320678711 + ], + [ + "▁flowing", + -11.646489143371582 + ], + [ + "▁describing", + -11.646506309509277 + ], + [ + "▁founding", + -11.646509170532227 + ], + [ + "▁lend", + -11.646553993225098 + ], + [ + "▁Sara", + -11.646601676940918 + ], + [ + "▁Material", + -11.646632194519043 + ], + [ + "▁recognise", + -11.64669418334961 + ], + [ + "▁secretary", + -11.64736270904541 + ], + [ + "▁counting", + -11.647502899169922 + ], + [ + "▁AN", + -11.647509574890137 + ], + [ + "▁000", + -11.647578239440918 + ], + [ + "▁caution", + -11.647735595703125 + ], + [ + "▁clause", + -11.647880554199219 + ], + [ + "▁implant", + -11.64798355102539 + ], + [ + "▁Move", + -11.648038864135742 + ], + [ + "▁median", + -11.648093223571777 + ], + [ + "▁cache", + -11.648219108581543 + ], + [ + "▁None", + -11.648238182067871 + ], + [ + "6,", + -11.64848804473877 + ], + [ + "▁therapist", + -11.64870548248291 + ], + [ + "ifier", + -11.648795127868652 + ], + [ + "TU", + -11.648813247680664 + ], + [ + "rill", + -11.648819923400879 + ], + [ + "Mar", + -11.648834228515625 + ], + [ + "▁helmet", + -11.64885425567627 + ], + [ + "▁documented", + -11.648870468139648 + ], + [ + "▁Birmingham", + -11.648985862731934 + ], + [ + "▁scheduling", + -11.649333000183105 + ], + [ + "▁24,", + -11.649380683898926 + ], + [ + "ssen", + -11.649384498596191 + ], + [ + "▁elevated", + -11.649413108825684 + ], + [ + "sheet", + -11.649811744689941 + ], + [ + "▁96", + -11.650050163269043 + ], + [ + "▁wrist", + -11.65012264251709 + ], + [ + "▁rust", + -11.650147438049316 + ], + [ + "▁bias", + -11.650160789489746 + ], + [ + "▁90%", + -11.650485038757324 + ], + [ + "▁Chocolate", + -11.650493621826172 + ], + [ + "▁Franklin", + -11.650504112243652 + ], + [ + "▁BBQ", + -11.650618553161621 + ], + [ + "▁Around", + -11.65065860748291 + ], + [ + "▁Manhattan", + -11.65084171295166 + ], + [ + "▁Upper", + -11.650968551635742 + ], + [ + "▁Alternatively", + -11.651399612426758 + ], + [ + "SH", + -11.65141773223877 + ], + [ + "▁Ski", + -11.651573181152344 + ], + [ + "▁cherry", + -11.651728630065918 + ], + [ + "▁panic", + -11.651758193969727 + ], + [ + "▁refined", + -11.651914596557617 + ], + [ + "▁analysts", + -11.651922225952148 + ], + [ + "▁festivals", + -11.65196418762207 + ], + [ + "gun", + -11.652022361755371 + ], + [ + "▁musician", + -11.652071952819824 + ], + [ + "▁40%", + -11.652105331420898 + ], + [ + "▁AA", + -11.652462005615234 + ], + [ + "▁Morning", + -11.652621269226074 + ], + [ + "▁polymer", + -11.652704238891602 + ], + [ + "▁Orlando", + -11.652982711791992 + ], + [ + "▁sealed", + -11.65304946899414 + ], + [ + "▁Knowledge", + -11.653176307678223 + ], + [ + "▁Serve", + -11.653335571289062 + ], + [ + "pies", + -11.653594017028809 + ], + [ + "▁Flight", + -11.65361499786377 + ], + [ + "▁compounds", + -11.653670310974121 + ], + [ + "▁behaviors", + -11.653852462768555 + ], + [ + "▁spill", + -11.654024124145508 + ], + [ + "▁quicker", + -11.654403686523438 + ], + [ + "fil", + -11.654446601867676 + ], + [ + "▁Worth", + -11.654559135437012 + ], + [ + "rang", + -11.654808044433594 + ], + [ + "MT", + -11.655091285705566 + ], + [ + "▁soda", + -11.655133247375488 + ], + [ + "▁lands", + -11.655488014221191 + ], + [ + "ales", + -11.655491828918457 + ], + [ + "▁viable", + -11.655577659606934 + ], + [ + "▁rational", + -11.655648231506348 + ], + [ + "wards", + -11.655730247497559 + ], + [ + "▁explored", + -11.6560697555542 + ], + [ + "▁drying", + -11.656179428100586 + ], + [ + "▁Var", + -11.656288146972656 + ], + [ + "ered", + -11.656332015991211 + ], + [ + "▁catching", + -11.656380653381348 + ], + [ + "fest", + -11.656580924987793 + ], + [ + "▁albums", + -11.656661033630371 + ], + [ + "exe", + -11.656747817993164 + ], + [ + "tch", + -11.656866073608398 + ], + [ + "▁Pittsburgh", + -11.65692138671875 + ], + [ + "▁SMS", + -11.657003402709961 + ], + [ + "UB", + -11.65709400177002 + ], + [ + "▁seamless", + -11.657380104064941 + ], + [ + "▁necessity", + -11.657411575317383 + ], + [ + "▁Penn", + -11.657417297363281 + ], + [ + "▁NOTE", + -11.657685279846191 + ], + [ + "▁algorithms", + -11.657808303833008 + ], + [ + "▁enforce", + -11.65783405303955 + ], + [ + "lier", + -11.657927513122559 + ], + [ + "▁Stra", + -11.65793514251709 + ], + [ + "▁declare", + -11.657999038696289 + ], + [ + "▁Materials", + -11.658385276794434 + ], + [ + "▁Clo", + -11.658479690551758 + ], + [ + "▁Prices", + -11.658498764038086 + ], + [ + "▁breeze", + -11.658581733703613 + ], + [ + "▁outlook", + -11.658638000488281 + ], + [ + "▁indicators", + -11.658699989318848 + ], + [ + "▁tobacco", + -11.658699989318848 + ], + [ + "llen", + -11.658794403076172 + ], + [ + "itude", + -11.658930778503418 + ], + [ + "▁wondered", + -11.658939361572266 + ], + [ + "▁Rachel", + -11.6589937210083 + ], + [ + "▁mindset", + -11.6589994430542 + ], + [ + "▁clouds", + -11.65932846069336 + ], + [ + "▁fool", + -11.659329414367676 + ], + [ + "▁coordination", + -11.659496307373047 + ], + [ + "▁milestone", + -11.659554481506348 + ], + [ + "Time", + -11.65968132019043 + ], + [ + "▁amazed", + -11.659682273864746 + ], + [ + "▁UI", + -11.659947395324707 + ], + [ + "▁Contemporary", + -11.659993171691895 + ], + [ + "▁$9", + -11.660006523132324 + ], + [ + "▁Tile", + -11.660077095031738 + ], + [ + "▁accredited", + -11.660392761230469 + ], + [ + "▁Resource", + -11.660398483276367 + ], + [ + "▁Chu", + -11.660417556762695 + ], + [ + "▁Healthcare", + -11.661263465881348 + ], + [ + "▁Lawrence", + -11.661323547363281 + ], + [ + "▁awful", + -11.661476135253906 + ], + [ + "▁commands", + -11.661548614501953 + ], + [ + "▁Compare", + -11.661555290222168 + ], + [ + "▁counties", + -11.661827087402344 + ], + [ + "▁sandwich", + -11.661867141723633 + ], + [ + "filled", + -11.661869049072266 + ], + [ + ".99", + -11.661969184875488 + ], + [ + "▁pointing", + -11.661979675292969 + ], + [ + "▁Comments", + -11.662031173706055 + ], + [ + "▁polished", + -11.662071228027344 + ], + [ + "▁ONE", + -11.662800788879395 + ], + [ + "▁gospel", + -11.663008689880371 + ], + [ + "ape", + -11.663047790527344 + ], + [ + "RR", + -11.663129806518555 + ], + [ + "ARD", + -11.663180351257324 + ], + [ + "▁Carol", + -11.663188934326172 + ], + [ + "▁1920", + -11.66324520111084 + ], + [ + "▁calcium", + -11.663296699523926 + ], + [ + "▁Aaron", + -11.663358688354492 + ], + [ + "▁earthquake", + -11.663414001464844 + ], + [ + "▁theories", + -11.663468360900879 + ], + [ + "▁creamy", + -11.663508415222168 + ], + [ + "▁glimpse", + -11.663625717163086 + ], + [ + "▁watches", + -11.663883209228516 + ], + [ + "two", + -11.663993835449219 + ], + [ + "▁wore", + -11.664010047912598 + ], + [ + "▁terrific", + -11.66407299041748 + ], + [ + "▁Visa", + -11.664203643798828 + ], + [ + "Qu", + -11.664222717285156 + ], + [ + "▁ballot", + -11.664301872253418 + ], + [ + "▁vanity", + -11.664302825927734 + ], + [ + "▁dragon", + -11.664307594299316 + ], + [ + "▁stadium", + -11.664360046386719 + ], + [ + "▁licensing", + -11.66437816619873 + ], + [ + "▁pays", + -11.664408683776855 + ], + [ + "season", + -11.664548873901367 + ], + [ + "hara", + -11.664551734924316 + ], + [ + "▁Rest", + -11.664756774902344 + ], + [ + "▁prevents", + -11.665101051330566 + ], + [ + "threw", + -11.665175437927246 + ], + [ + "▁140", + -11.665189743041992 + ], + [ + "file", + -11.665221214294434 + ], + [ + "▁mit", + -11.665310859680176 + ], + [ + "▁practically", + -11.665325164794922 + ], + [ + "▁Flo", + -11.66533374786377 + ], + [ + "▁profound", + -11.66549015045166 + ], + [ + "ics", + -11.66551399230957 + ], + [ + "▁06", + -11.665685653686523 + ], + [ + "▁anticipate", + -11.665788650512695 + ], + [ + "▁sailing", + -11.665952682495117 + ], + [ + "hel", + -11.665986061096191 + ], + [ + "▁syrup", + -11.666169166564941 + ], + [ + "▁cakes", + -11.666229248046875 + ], + [ + "▁Jazz", + -11.666322708129883 + ], + [ + "▁solved", + -11.666460990905762 + ], + [ + "trip", + -11.666692733764648 + ], + [ + "corn", + -11.666915893554688 + ], + [ + "▁exhaust", + -11.666951179504395 + ], + [ + "▁Listen", + -11.667160034179688 + ], + [ + "▁Supply", + -11.667202949523926 + ], + [ + "▁equi", + -11.667314529418945 + ], + [ + "▁Swedish", + -11.667372703552246 + ], + [ + "▁ladder", + -11.667590141296387 + ], + [ + "▁chill", + -11.667718887329102 + ], + [ + "▁Analytics", + -11.667777061462402 + ], + [ + "▁picks", + -11.667818069458008 + ], + [ + "▁arc", + -11.668249130249023 + ], + [ + "▁Jobs", + -11.668316841125488 + ], + [ + "▁Arthur", + -11.668326377868652 + ], + [ + "▁Hell", + -11.66833782196045 + ], + [ + "▁Pure", + -11.668339729309082 + ], + [ + ":10", + -11.668384552001953 + ], + [ + "▁Buyer", + -11.66877555847168 + ], + [ + "▁chains", + -11.66893196105957 + ], + [ + "▁TH", + -11.669204711914062 + ], + [ + "▁clue", + -11.669210433959961 + ], + [ + "▁Barn", + -11.669325828552246 + ], + [ + "▁lineup", + -11.669527053833008 + ], + [ + "▁releasing", + -11.669570922851562 + ], + [ + "arra", + -11.66957950592041 + ], + [ + "▁editorial", + -11.669697761535645 + ], + [ + "▁remedy", + -11.669949531555176 + ], + [ + "zone", + -11.670371055603027 + ], + [ + "=\"", + -11.67060375213623 + ], + [ + "▁Steam", + -11.670796394348145 + ], + [ + "App", + -11.670880317687988 + ], + [ + "▁relatives", + -11.670988082885742 + ], + [ + "▁illustrations", + -11.671027183532715 + ], + [ + "design", + -11.671031951904297 + ], + [ + "ying", + -11.671159744262695 + ], + [ + "nine", + -11.671289443969727 + ], + [ + "▁sleeve", + -11.671357154846191 + ], + [ + "▁immigrants", + -11.671422958374023 + ], + [ + "▁compassion", + -11.671520233154297 + ], + [ + "▁glow", + -11.671642303466797 + ], + [ + "▁distant", + -11.671707153320312 + ], + [ + "standing", + -11.671738624572754 + ], + [ + "▁abundant", + -11.671797752380371 + ], + [ + "▁Climate", + -11.671821594238281 + ], + [ + "▁interpret", + -11.672065734863281 + ], + [ + "▁2007,", + -11.67219352722168 + ], + [ + "▁squeeze", + -11.67238998413086 + ], + [ + "MU", + -11.672405242919922 + ], + [ + "▁Bike", + -11.672626495361328 + ], + [ + "▁Military", + -11.67286491394043 + ], + [ + "▁farms", + -11.672933578491211 + ], + [ + "▁permanently", + -11.673253059387207 + ], + [ + "▁Karen", + -11.673277854919434 + ], + [ + "▁130", + -11.673369407653809 + ], + [ + "▁playground", + -11.673392295837402 + ], + [ + "zing", + -11.673514366149902 + ], + [ + "▁entrepreneur", + -11.67378044128418 + ], + [ + "▁threatened", + -11.673890113830566 + ], + [ + "smith", + -11.673972129821777 + ], + [ + "▁Pictures", + -11.674049377441406 + ], + [ + "media", + -11.674115180969238 + ], + [ + "▁vinegar", + -11.674148559570312 + ], + [ + "▁Tr", + -11.674189567565918 + ], + [ + "works", + -11.67457389831543 + ], + [ + "stat", + -11.674659729003906 + ], + [ + "inder", + -11.674870491027832 + ], + [ + "▁landed", + -11.674976348876953 + ], + [ + "▁specification", + -11.675302505493164 + ], + [ + "▁Pic", + -11.6754789352417 + ], + [ + "▁belongs", + -11.675487518310547 + ], + [ + "▁Sil", + -11.675619125366211 + ], + [ + "▁Gospel", + -11.676054954528809 + ], + [ + "▁Norway", + -11.676104545593262 + ], + [ + "▁educators", + -11.676156997680664 + ], + [ + "▁Expert", + -11.676198959350586 + ], + [ + "▁spreading", + -11.676207542419434 + ], + [ + "▁RC", + -11.676328659057617 + ], + [ + "▁haul", + -11.676839828491211 + ], + [ + "your", + -11.676886558532715 + ], + [ + "race", + -11.676952362060547 + ], + [ + "▁downloading", + -11.677017211914062 + ], + [ + "▁steak", + -11.67707633972168 + ], + [ + "▁Canyon", + -11.67763900756836 + ], + [ + "▁installations", + -11.677742958068848 + ], + [ + "▁ET", + -11.677823066711426 + ], + [ + "rent", + -11.677950859069824 + ], + [ + "▁improves", + -11.678010940551758 + ], + [ + "▁LinkedIn", + -11.678125381469727 + ], + [ + "▁fixing", + -11.678130149841309 + ], + [ + "alia", + -11.678370475769043 + ], + [ + "▁Nar", + -11.678410530090332 + ], + [ + "▁Corner", + -11.678488731384277 + ], + [ + "OO", + -11.67856502532959 + ], + [ + "▁duo", + -11.678628921508789 + ], + [ + "/2", + -11.6790771484375 + ], + [ + "▁Circle", + -11.679265975952148 + ], + [ + "▁runner", + -11.679275512695312 + ], + [ + "▁demonstrates", + -11.679338455200195 + ], + [ + "SON", + -11.679363250732422 + ], + [ + "▁Xbox", + -11.679367065429688 + ], + [ + "▁Chan", + -11.679553985595703 + ], + [ + "▁quoted", + -11.67969799041748 + ], + [ + "▁scared", + -11.679764747619629 + ], + [ + "▁backgrounds", + -11.67979621887207 + ], + [ + "▁Eagle", + -11.679892539978027 + ], + [ + "▁dietary", + -11.67990493774414 + ], + [ + "▁spices", + -11.679937362670898 + ], + [ + "▁assessments", + -11.680049896240234 + ], + [ + "▁incorrect", + -11.680267333984375 + ], + [ + "▁legend", + -11.680306434631348 + ], + [ + "▁(\"", + -11.680325508117676 + ], + [ + "▁connects", + -11.680347442626953 + ], + [ + "▁Economics", + -11.680404663085938 + ], + [ + "▁carriers", + -11.68045711517334 + ], + [ + "▁XP", + -11.680625915527344 + ], + [ + "force", + -11.680679321289062 + ], + [ + "▁newspapers", + -11.680828094482422 + ], + [ + "▁icons", + -11.681035995483398 + ], + [ + "▁IRS", + -11.681302070617676 + ], + [ + "SR", + -11.6813383102417 + ], + [ + "▁Success", + -11.681406021118164 + ], + [ + "▁partly", + -11.681501388549805 + ], + [ + "▁cables", + -11.681638717651367 + ], + [ + "uli", + -11.681639671325684 + ], + [ + "▁Parts", + -11.681680679321289 + ], + [ + "▁160", + -11.681844711303711 + ], + [ + "▁Prof", + -11.681851387023926 + ], + [ + "guard", + -11.681856155395508 + ], + [ + "▁TN", + -11.682169914245605 + ], + [ + "▁Lanka", + -11.682207107543945 + ], + [ + "▁Conditions", + -11.682366371154785 + ], + [ + "▁lips", + -11.6824312210083 + ], + [ + "▁Temp", + -11.682515144348145 + ], + [ + "▁Shore", + -11.683124542236328 + ], + [ + "▁Honor", + -11.683212280273438 + ], + [ + "▁dim", + -11.683287620544434 + ], + [ + "▁cop", + -11.683488845825195 + ], + [ + "vic", + -11.683710098266602 + ], + [ + "▁salon", + -11.68393325805664 + ], + [ + "cial", + -11.683956146240234 + ], + [ + "lag", + -11.684000968933105 + ], + [ + "▁legislative", + -11.684133529663086 + ], + [ + "hom", + -11.68439769744873 + ], + [ + "With", + -11.684476852416992 + ], + [ + "▁Options", + -11.684566497802734 + ], + [ + "▁Frame", + -11.684755325317383 + ], + [ + "▁driveway", + -11.684946060180664 + ], + [ + "▁renewal", + -11.685036659240723 + ], + [ + "▁Cyber", + -11.68523120880127 + ], + [ + "▁mothers", + -11.685454368591309 + ], + [ + "▁miracle", + -11.685599327087402 + ], + [ + "▁Transport", + -11.685624122619629 + ], + [ + "▁conditioner", + -11.685981750488281 + ], + [ + "▁pasta", + -11.685993194580078 + ], + [ + "▁damp", + -11.686239242553711 + ], + [ + "▁SUV", + -11.68636703491211 + ], + [ + "▁animated", + -11.686670303344727 + ], + [ + "▁collision", + -11.686729431152344 + ], + [ + "▁Faith", + -11.686958312988281 + ], + [ + "▁Kon", + -11.687023162841797 + ], + [ + "▁columns", + -11.687045097351074 + ], + [ + "▁Singh", + -11.687112808227539 + ], + [ + "▁Robin", + -11.687216758728027 + ], + [ + "▁demonstration", + -11.687238693237305 + ], + [ + "Art", + -11.687253952026367 + ], + [ + "▁Leader", + -11.687311172485352 + ], + [ + "▁ambitious", + -11.687403678894043 + ], + [ + "▁Yard", + -11.687421798706055 + ], + [ + "▁characterized", + -11.687490463256836 + ], + [ + "eric", + -11.687542915344238 + ], + [ + "▁performs", + -11.687589645385742 + ], + [ + "self", + -11.687616348266602 + ], + [ + "▁Command", + -11.687788009643555 + ], + [ + "nge", + -11.687844276428223 + ], + [ + "▁Wash", + -11.688029289245605 + ], + [ + "igan", + -11.688447952270508 + ], + [ + "▁shifting", + -11.688447952270508 + ], + [ + "▁sacred", + -11.688458442687988 + ], + [ + "▁Wright", + -11.688460350036621 + ], + [ + "▁mandate", + -11.688586235046387 + ], + [ + "▁portions", + -11.68859577178955 + ], + [ + "info", + -11.688705444335938 + ], + [ + "▁opponents", + -11.68885612487793 + ], + [ + "▁arrives", + -11.688972473144531 + ], + [ + "▁Customers", + -11.689103126525879 + ], + [ + "▁Kh", + -11.689200401306152 + ], + [ + "SB", + -11.689352035522461 + ], + [ + "▁Reviews", + -11.689401626586914 + ], + [ + "▁compression", + -11.689462661743164 + ], + [ + "▁organise", + -11.68950366973877 + ], + [ + "▁banner", + -11.689525604248047 + ], + [ + "hang", + -11.689603805541992 + ], + [ + "▁Ran", + -11.689725875854492 + ], + [ + "▁minority", + -11.689788818359375 + ], + [ + "▁elevation", + -11.689839363098145 + ], + [ + "▁Parents", + -11.690003395080566 + ], + [ + "л", + -11.69001293182373 + ], + [ + "?)", + -11.690285682678223 + ], + [ + "▁Strategy", + -11.690443992614746 + ], + [ + "▁Luc", + -11.690730094909668 + ], + [ + "▁2006.", + -11.690958976745605 + ], + [ + "▁tweet", + -11.690979957580566 + ], + [ + "▁analyses", + -11.691004753112793 + ], + [ + "ifying", + -11.691067695617676 + ], + [ + "vir", + -11.691070556640625 + ], + [ + "▁quantities", + -11.691266059875488 + ], + [ + "▁struggled", + -11.691488265991211 + ], + [ + "▁runners", + -11.691529273986816 + ], + [ + "▁styling", + -11.69172477722168 + ], + [ + "▁deny", + -11.69178581237793 + ], + [ + "▁finances", + -11.691924095153809 + ], + [ + "▁Weather", + -11.69200325012207 + ], + [ + "▁Earlier", + -11.692152976989746 + ], + [ + "▁SL", + -11.692278861999512 + ], + [ + "▁DM", + -11.69231128692627 + ], + [ + "▁foil", + -11.692346572875977 + ], + [ + "▁67", + -11.692384719848633 + ], + [ + "▁nut", + -11.69244384765625 + ], + [ + "▁jumped", + -11.692492485046387 + ], + [ + "igh", + -11.6929931640625 + ], + [ + "▁78", + -11.69301986694336 + ], + [ + "▁Vista", + -11.693094253540039 + ], + [ + "▁SB", + -11.693115234375 + ], + [ + "▁cholesterol", + -11.69329833984375 + ], + [ + "▁biology", + -11.693452835083008 + ], + [ + "▁probability", + -11.693735122680664 + ], + [ + "-25", + -11.693741798400879 + ], + [ + "▁MY", + -11.693741798400879 + ], + [ + "▁ethics", + -11.693906784057617 + ], + [ + "▁outlined", + -11.693961143493652 + ], + [ + "▁recovered", + -11.694279670715332 + ], + [ + "▁Heaven", + -11.694419860839844 + ], + [ + "▁metrics", + -11.69450855255127 + ], + [ + "▁consumed", + -11.694743156433105 + ], + [ + "▁Same", + -11.694755554199219 + ], + [ + "▁Pri", + -11.695362091064453 + ], + [ + "sub", + -11.69543743133545 + ], + [ + "▁GE", + -11.695508003234863 + ], + [ + "▁slower", + -11.695514678955078 + ], + [ + "mph", + -11.69558334350586 + ], + [ + "▁footprint", + -11.69571304321289 + ], + [ + "▁delays", + -11.695791244506836 + ], + [ + "▁syn", + -11.695845603942871 + ], + [ + "▁woods", + -11.695894241333008 + ], + [ + "▁Morris", + -11.696040153503418 + ], + [ + "▁mint", + -11.696081161499023 + ], + [ + "▁Victorian", + -11.696128845214844 + ], + [ + "▁daughters", + -11.696213722229004 + ], + [ + "▁hung", + -11.696329116821289 + ], + [ + "▁messaging", + -11.696455001831055 + ], + [ + "▁casting", + -11.696537971496582 + ], + [ + "DB", + -11.69654369354248 + ], + [ + "▁von", + -11.696976661682129 + ], + [ + "▁preliminary", + -11.697110176086426 + ], + [ + "▁nowhere", + -11.697150230407715 + ], + [ + "▁Fig", + -11.697186470031738 + ], + [ + "▁disciplines", + -11.697199821472168 + ], + [ + "▁sponsors", + -11.697395324707031 + ], + [ + "▁museums", + -11.69784164428711 + ], + [ + "▁Scout", + -11.697879791259766 + ], + [ + "▁Cr", + -11.697975158691406 + ], + [ + "cos", + -11.698322296142578 + ], + [ + "▁homeless", + -11.698386192321777 + ], + [ + "founder", + -11.698413848876953 + ], + [ + "▁Budget", + -11.698493957519531 + ], + [ + "▁nationally", + -11.698563575744629 + ], + [ + "rator", + -11.698678970336914 + ], + [ + "▁plaintiff", + -11.698698997497559 + ], + [ + "pha", + -11.698716163635254 + ], + [ + "▁defendant", + -11.69873046875 + ], + [ + "▁vibration", + -11.698742866516113 + ], + [ + "▁bare", + -11.698744773864746 + ], + [ + "▁proximity", + -11.699301719665527 + ], + [ + "▁flame", + -11.699416160583496 + ], + [ + "▁guarantees", + -11.699535369873047 + ], + [ + "umble", + -11.69954776763916 + ], + [ + "dec", + -11.69963264465332 + ], + [ + "▁resemble", + -11.699691772460938 + ], + [ + "▁Competition", + -11.699740409851074 + ], + [ + "▁lodge", + -11.6998291015625 + ], + [ + "▁Volume", + -11.699830055236816 + ], + [ + "▁existed", + -11.699917793273926 + ], + [ + "▁funnel", + -11.700104713439941 + ], + [ + "first", + -11.700105667114258 + ], + [ + "▁Planet", + -11.700343132019043 + ], + [ + "▁pads", + -11.700379371643066 + ], + [ + "▁responding", + -11.70039176940918 + ], + [ + "glu", + -11.700407981872559 + ], + [ + "lish", + -11.700562477111816 + ], + [ + "dell", + -11.700590133666992 + ], + [ + "▁(8", + -11.7007474899292 + ], + [ + "▁resin", + -11.700927734375 + ], + [ + "▁tendency", + -11.700936317443848 + ], + [ + "▁Syn", + -11.701027870178223 + ], + [ + "▁dashboard", + -11.701169967651367 + ], + [ + "▁starter", + -11.701309204101562 + ], + [ + "▁Nursing", + -11.701632499694824 + ], + [ + "▁march", + -11.702001571655273 + ], + [ + "▁passive", + -11.70219898223877 + ], + [ + "kle", + -11.702337265014648 + ], + [ + "▁Princess", + -11.702742576599121 + ], + [ + "▁Joint", + -11.702760696411133 + ], + [ + "▁rankings", + -11.702795028686523 + ], + [ + "▁86", + -11.70280647277832 + ], + [ + "▁pause", + -11.702836990356445 + ], + [ + "HL", + -11.702886581420898 + ], + [ + "▁qualifications", + -11.702957153320312 + ], + [ + "▁earliest", + -11.703062057495117 + ], + [ + "▁strikes", + -11.70360279083252 + ], + [ + "did", + -11.70368480682373 + ], + [ + "▁Decor", + -11.703810691833496 + ], + [ + "rop", + -11.703857421875 + ], + [ + "mill", + -11.703939437866211 + ], + [ + "▁Artist", + -11.703996658325195 + ], + [ + "attracted", + -11.704047203063965 + ], + [ + "mbo", + -11.704414367675781 + ], + [ + "discusses", + -11.704567909240723 + ], + [ + "▁Shower", + -11.704581260681152 + ], + [ + "▁supermarket", + -11.704641342163086 + ], + [ + "▁Traditional", + -11.704649925231934 + ], + [ + "▁shallow", + -11.70468807220459 + ], + [ + "ente", + -11.704895973205566 + ], + [ + "▁HVAC", + -11.704936027526855 + ], + [ + "change", + -11.70495319366455 + ], + [ + "mers", + -11.704965591430664 + ], + [ + "▁fossil", + -11.704972267150879 + ], + [ + "ION", + -11.705078125 + ], + [ + "▁Sw", + -11.705117225646973 + ], + [ + "▁LI", + -11.705126762390137 + ], + [ + "▁bitter", + -11.705281257629395 + ], + [ + "▁Walter", + -11.705320358276367 + ], + [ + "▁projected", + -11.705395698547363 + ], + [ + "ponent", + -11.705670356750488 + ], + [ + "▁hockey", + -11.705782890319824 + ], + [ + "▁Sugar", + -11.705886840820312 + ], + [ + "▁beside", + -11.706012725830078 + ], + [ + "▁regulated", + -11.706021308898926 + ], + [ + "▁Palestinian", + -11.70604133605957 + ], + [ + "▁fibre", + -11.706050872802734 + ], + [ + "▁Def", + -11.706056594848633 + ], + [ + "▁sleek", + -11.70622444152832 + ], + [ + "angle", + -11.70639419555664 + ], + [ + "▁briefly", + -11.706514358520508 + ], + [ + "▁Belgium", + -11.706665992736816 + ], + [ + "fect", + -11.706733703613281 + ], + [ + "hart", + -11.706802368164062 + ], + [ + "▁Wing", + -11.706833839416504 + ], + [ + "▁Speaker", + -11.706897735595703 + ], + [ + "▁Roger", + -11.706929206848145 + ], + [ + "▁webinar", + -11.707306861877441 + ], + [ + "▁spr", + -11.70739459991455 + ], + [ + "▁74", + -11.707881927490234 + ], + [ + "ional", + -11.707985877990723 + ], + [ + "▁Hawk", + -11.708075523376465 + ], + [ + "▁compiled", + -11.708209991455078 + ], + [ + "hawk", + -11.708245277404785 + ], + [ + "▁Oscar", + -11.708281517028809 + ], + [ + "▁builder", + -11.708306312561035 + ], + [ + "▁duct", + -11.708362579345703 + ], + [ + "▁VIP", + -11.708883285522461 + ], + [ + "▁Baptist", + -11.709197998046875 + ], + [ + "▁spicy", + -11.709249496459961 + ], + [ + "▁silly", + -11.709260940551758 + ], + [ + "▁Scar", + -11.709305763244629 + ], + [ + "▁sells", + -11.709308624267578 + ], + [ + "▁Rail", + -11.70954704284668 + ], + [ + "▁Qua", + -11.70958137512207 + ], + [ + "▁beating", + -11.70974349975586 + ], + [ + "▁consequence", + -11.709747314453125 + ], + [ + "▁Campbell", + -11.71015739440918 + ], + [ + "version", + -11.710365295410156 + ], + [ + "▁extraction", + -11.710409164428711 + ], + [ + "heat", + -11.710511207580566 + ], + [ + "▁Wireless", + -11.710561752319336 + ], + [ + "2.1", + -11.710615158081055 + ], + [ + "icle", + -11.710710525512695 + ], + [ + "▁Aqua", + -11.710929870605469 + ], + [ + "▁bachelor", + -11.711318016052246 + ], + [ + "▁correlation", + -11.711318969726562 + ], + [ + "Luckily", + -11.71135425567627 + ], + [ + "▁SF", + -11.711496353149414 + ], + [ + "▁unfold", + -11.711528778076172 + ], + [ + "▁GR", + -11.711548805236816 + ], + [ + "graphic", + -11.711676597595215 + ], + [ + "▁Dakota", + -11.711769104003906 + ], + [ + "▁drift", + -11.71194076538086 + ], + [ + "▁creator", + -11.712284088134766 + ], + [ + "▁15%", + -11.712324142456055 + ], + [ + "▁Kennedy", + -11.71252727508545 + ], + [ + "▁Gor", + -11.712532997131348 + ], + [ + "WD", + -11.713242530822754 + ], + [ + "▁expose", + -11.713393211364746 + ], + [ + "▁lacking", + -11.71341609954834 + ], + [ + "▁Zen", + -11.713700294494629 + ], + [ + "▁broth", + -11.713723182678223 + ], + [ + "▁relay", + -11.713735580444336 + ], + [ + "▁journalists", + -11.713762283325195 + ], + [ + "▁meantime", + -11.71381664276123 + ], + [ + "▁databases", + -11.713841438293457 + ], + [ + "▁Someone", + -11.713875770568848 + ], + [ + "▁nominated", + -11.7139253616333 + ], + [ + "▁namely", + -11.71395206451416 + ], + [ + "▁grandmother", + -11.713953018188477 + ], + [ + "▁incidents", + -11.714051246643066 + ], + [ + "▁CM", + -11.714241027832031 + ], + [ + "▁pedestrian", + -11.714306831359863 + ], + [ + "▁Wave", + -11.714395523071289 + ], + [ + "▁washed", + -11.714449882507324 + ], + [ + "▁Corn", + -11.714452743530273 + ], + [ + "▁Emily", + -11.71451473236084 + ], + [ + "▁apples", + -11.714654922485352 + ], + [ + "owner", + -11.714715003967285 + ], + [ + "▁affiliated", + -11.714726448059082 + ], + [ + "▁Rapid", + -11.714863777160645 + ], + [ + "▁Builder", + -11.714971542358398 + ], + [ + "ryl", + -11.715023040771484 + ], + [ + "▁Provider", + -11.715073585510254 + ], + [ + "▁curl", + -11.71514892578125 + ], + [ + "▁beverage", + -11.715182304382324 + ], + [ + "flower", + -11.715324401855469 + ], + [ + "▁Higher", + -11.71536922454834 + ], + [ + "▁yeah", + -11.71547794342041 + ], + [ + "▁Lauren", + -11.715760231018066 + ], + [ + "ologist", + -11.715786933898926 + ], + [ + "▁Person", + -11.71639633178711 + ], + [ + "uke", + -11.716449737548828 + ], + [ + "▁Meta", + -11.716545104980469 + ], + [ + "▁Diet", + -11.716706275939941 + ], + [ + "▁Academic", + -11.716711044311523 + ], + [ + "▁05", + -11.716885566711426 + ], + [ + "▁vis", + -11.717058181762695 + ], + [ + "▁Storm", + -11.7174072265625 + ], + [ + "▁Sab", + -11.717684745788574 + ], + [ + "Typically", + -11.717702865600586 + ], + [ + "TED", + -11.717926979064941 + ], + [ + "BM", + -11.717931747436523 + ], + [ + "▁financially", + -11.71829605102539 + ], + [ + "8)", + -11.718317031860352 + ], + [ + "▁deploy", + -11.71838092803955 + ], + [ + "May", + -11.71847152709961 + ], + [ + "lich", + -11.718615531921387 + ], + [ + "▁forex", + -11.718616485595703 + ], + [ + "▁Tur", + -11.718688011169434 + ], + [ + "▁comprising", + -11.718753814697266 + ], + [ + "▁Carbon", + -11.718836784362793 + ], + [ + "working", + -11.71899127960205 + ], + [ + "may", + -11.719173431396484 + ], + [ + "▁hypo", + -11.719391822814941 + ], + [ + "2014", + -11.719507217407227 + ], + [ + "▁exploit", + -11.719600677490234 + ], + [ + "mination", + -11.719765663146973 + ], + [ + "▁tissues", + -11.719829559326172 + ], + [ + "▁Wear", + -11.719991683959961 + ], + [ + "▁OP", + -11.720014572143555 + ], + [ + "▁Bright", + -11.72005558013916 + ], + [ + "▁incentives", + -11.72005558013916 + ], + [ + "▁Wheel", + -11.720535278320312 + ], + [ + "▁SU", + -11.72059154510498 + ], + [ + "▁Bonus", + -11.720719337463379 + ], + [ + "▁bot", + -11.720808982849121 + ], + [ + "▁bloggers", + -11.721019744873047 + ], + [ + "▁alloy", + -11.721070289611816 + ], + [ + "▁Potter", + -11.721110343933105 + ], + [ + "▁Cable", + -11.721240043640137 + ], + [ + "itter", + -11.721446990966797 + ], + [ + "▁extensions", + -11.721508979797363 + ], + [ + "▁dealership", + -11.721543312072754 + ], + [ + "buy", + -11.721813201904297 + ], + [ + "▁Stream", + -11.722142219543457 + ], + [ + "▁Residential", + -11.722171783447266 + ], + [ + "▁humble", + -11.722367286682129 + ], + [ + "▁tenants", + -11.722565650939941 + ], + [ + "stic", + -11.722735404968262 + ], + [ + "▁socks", + -11.722752571105957 + ], + [ + "▁Chelsea", + -11.722855567932129 + ], + [ + "evi", + -11.722869873046875 + ], + [ + "▁refugees", + -11.722919464111328 + ], + [ + "lain", + -11.723214149475098 + ], + [ + "▁protects", + -11.723337173461914 + ], + [ + "▁Honey", + -11.723454475402832 + ], + [ + "▁liner", + -11.72350025177002 + ], + [ + "▁avoided", + -11.723670959472656 + ], + [ + "▁Kid", + -11.723747253417969 + ], + [ + "5,", + -11.723791122436523 + ], + [ + "▁18,", + -11.723799705505371 + ], + [ + "▁clips", + -11.724013328552246 + ], + [ + "▁illustration", + -11.724166870117188 + ], + [ + "NU", + -11.72421932220459 + ], + [ + "▁acne", + -11.724231719970703 + ], + [ + "▁priest", + -11.72459888458252 + ], + [ + "▁Looks", + -11.724709510803223 + ], + [ + "▁blogger", + -11.724749565124512 + ], + [ + "around", + -11.724910736083984 + ], + [ + "▁perfection", + -11.725065231323242 + ], + [ + "▁Phase", + -11.725098609924316 + ], + [ + "▁anxious", + -11.725255012512207 + ], + [ + "▁comfortably", + -11.725299835205078 + ], + [ + "▁concerts", + -11.725472450256348 + ], + [ + "▁zoom", + -11.72553825378418 + ], + [ + "▁Marie", + -11.725664138793945 + ], + [ + "borough", + -11.725729942321777 + ], + [ + "▁parish", + -11.726054191589355 + ], + [ + "▁brochure", + -11.726079940795898 + ], + [ + "▁schedules", + -11.726101875305176 + ], + [ + "cum", + -11.726106643676758 + ], + [ + "▁Cri", + -11.726144790649414 + ], + [ + "▁withdraw", + -11.726155281066895 + ], + [ + "spi", + -11.72616958618164 + ], + [ + "▁eliminating", + -11.726180076599121 + ], + [ + "hit", + -11.726511001586914 + ], + [ + "▁hiding", + -11.726511001586914 + ], + [ + "especially", + -11.726556777954102 + ], + [ + "lem", + -11.726632118225098 + ], + [ + "▁simplicity", + -11.726731300354004 + ], + [ + "▁Cisco", + -11.726826667785645 + ], + [ + "lux", + -11.727020263671875 + ], + [ + "▁pumps", + -11.727044105529785 + ], + [ + "▁Pour", + -11.727067947387695 + ], + [ + "▁advocacy", + -11.727357864379883 + ], + [ + "▁evolving", + -11.727428436279297 + ], + [ + "▁sheer", + -11.727466583251953 + ], + [ + "dling", + -11.727745056152344 + ], + [ + "▁£2", + -11.727749824523926 + ], + [ + "▁conflicts", + -11.72782039642334 + ], + [ + "6)", + -11.727875709533691 + ], + [ + "▁eaten", + -11.727890014648438 + ], + [ + "▁14.", + -11.727909088134766 + ], + [ + "▁economics", + -11.728137969970703 + ], + [ + "▁Taiwan", + -11.728224754333496 + ], + [ + "▁Mercedes", + -11.728235244750977 + ], + [ + "▁Teacher", + -11.728800773620605 + ], + [ + "▁INC", + -11.728880882263184 + ], + [ + "▁influential", + -11.729214668273926 + ], + [ + "doc", + -11.729580879211426 + ], + [ + "▁Certification", + -11.729591369628906 + ], + [ + "▁Breakfast", + -11.729650497436523 + ], + [ + "▁premiere", + -11.72966194152832 + ], + [ + "▁novels", + -11.729694366455078 + ], + [ + "▁Photos", + -11.730071067810059 + ], + [ + "▁Warren", + -11.730094909667969 + ], + [ + "▁Stewart", + -11.730170249938965 + ], + [ + "▁bounce", + -11.730196952819824 + ], + [ + "▁Faculty", + -11.730219841003418 + ], + [ + "▁bend", + -11.730399131774902 + ], + [ + "▁colon", + -11.730412483215332 + ], + [ + "▁consensus", + -11.73042106628418 + ], + [ + "▁assembled", + -11.730521202087402 + ], + [ + "▁Explorer", + -11.730650901794434 + ], + [ + "▁seafood", + -11.730758666992188 + ], + [ + "▁neighborhoods", + -11.730775833129883 + ], + [ + "RN", + -11.73080062866211 + ], + [ + "bud", + -11.730855941772461 + ], + [ + "▁listened", + -11.730920791625977 + ], + [ + "▁toast", + -11.731014251708984 + ], + [ + "▁travels", + -11.731025695800781 + ], + [ + "best", + -11.731101989746094 + ], + [ + "▁ranges", + -11.731130599975586 + ], + [ + "▁Dal", + -11.731178283691406 + ], + [ + "para", + -11.73133373260498 + ], + [ + "▁Mari", + -11.73134708404541 + ], + [ + "▁dye", + -11.731392860412598 + ], + [ + "consisting", + -11.731489181518555 + ], + [ + "▁altogether", + -11.731515884399414 + ], + [ + "IES", + -11.731673240661621 + ], + [ + "▁Alice", + -11.73169231414795 + ], + [ + "▁smallest", + -11.731751441955566 + ], + [ + "▁bush", + -11.731908798217773 + ], + [ + "▁bur", + -11.732099533081055 + ], + [ + "▁distinguish", + -11.732632637023926 + ], + [ + "▁mechanics", + -11.732695579528809 + ], + [ + "▁acrylic", + -11.733039855957031 + ], + [ + "▁throat", + -11.733077049255371 + ], + [ + "▁Audi", + -11.733080863952637 + ], + [ + "▁explosion", + -11.733115196228027 + ], + [ + "▁LG", + -11.73322868347168 + ], + [ + "▁Egyptian", + -11.733266830444336 + ], + [ + "▁adhesive", + -11.733330726623535 + ], + [ + "lau", + -11.733389854431152 + ], + [ + "▁rival", + -11.733526229858398 + ], + [ + "▁Standards", + -11.73354434967041 + ], + [ + "▁backdrop", + -11.733914375305176 + ], + [ + "▁Harbor", + -11.733975410461426 + ], + [ + "▁Discussion", + -11.733978271484375 + ], + [ + "▁penalties", + -11.734124183654785 + ], + [ + "▁saves", + -11.734261512756348 + ], + [ + "train", + -11.734312057495117 + ], + [ + "▁Muslims", + -11.734326362609863 + ], + [ + "enberg", + -11.734428405761719 + ], + [ + "▁camps", + -11.734539031982422 + ], + [ + "▁Luxury", + -11.734580993652344 + ], + [ + "▁gloves", + -11.734644889831543 + ], + [ + "▁Gate", + -11.734984397888184 + ], + [ + "▁Guest", + -11.734992980957031 + ], + [ + "was", + -11.735060691833496 + ], + [ + "NE", + -11.735087394714355 + ], + [ + "▁Notes", + -11.735103607177734 + ], + [ + "family", + -11.735122680664062 + ], + [ + "▁modification", + -11.735176086425781 + ], + [ + "▁cage", + -11.735265731811523 + ], + [ + "▁shareholders", + -11.735932350158691 + ], + [ + "▁snake", + -11.735950469970703 + ], + [ + "▁custody", + -11.736120223999023 + ], + [ + "▁energetic", + -11.736221313476562 + ], + [ + "▁20,", + -11.736226081848145 + ], + [ + "▁Qui", + -11.736437797546387 + ], + [ + "stor", + -11.73647689819336 + ], + [ + "▁coated", + -11.736669540405273 + ], + [ + "▁coordinate", + -11.73670768737793 + ], + [ + "▁subscribers", + -11.737015724182129 + ], + [ + "NG", + -11.737027168273926 + ], + [ + "▁diploma", + -11.737175941467285 + ], + [ + "▁Gov", + -11.737343788146973 + ], + [ + "▁certificates", + -11.737617492675781 + ], + [ + "▁$500", + -11.737649917602539 + ], + [ + "▁notebook", + -11.737804412841797 + ], + [ + "▁elephant", + -11.737866401672363 + ], + [ + "▁Sean", + -11.737937927246094 + ], + [ + "▁Teaching", + -11.738068580627441 + ], + [ + "▁Thi", + -11.738136291503906 + ], + [ + "disciplinary", + -11.73814582824707 + ], + [ + "▁Carter", + -11.738265991210938 + ], + [ + "built", + -11.738377571105957 + ], + [ + "▁trunk", + -11.738425254821777 + ], + [ + "▁reside", + -11.738804817199707 + ], + [ + "IST", + -11.738818168640137 + ], + [ + "▁coordinator", + -11.73910140991211 + ], + [ + "lick", + -11.739105224609375 + ], + [ + "▁testimony", + -11.73910903930664 + ], + [ + "▁conveniently", + -11.739184379577637 + ], + [ + "▁stain", + -11.739302635192871 + ], + [ + "▁71", + -11.739554405212402 + ], + [ + "▁Essential", + -11.739631652832031 + ], + [ + "▁stereo", + -11.739686012268066 + ], + [ + "▁avail", + -11.739827156066895 + ], + [ + "▁Edinburgh", + -11.740022659301758 + ], + [ + "▁Circuit", + -11.740174293518066 + ], + [ + "▁WILL", + -11.740193367004395 + ], + [ + "ANT", + -11.740256309509277 + ], + [ + "▁medal", + -11.740262985229492 + ], + [ + "▁discomfort", + -11.740419387817383 + ], + [ + "▁strips", + -11.740509033203125 + ], + [ + "▁democratic", + -11.740514755249023 + ], + [ + "▁CAR", + -11.740720748901367 + ], + [ + "▁Lot", + -11.741116523742676 + ], + [ + "▁(9", + -11.741125106811523 + ], + [ + "▁infected", + -11.74117660522461 + ], + [ + "▁analyst", + -11.741205215454102 + ], + [ + "Don", + -11.741267204284668 + ], + [ + "▁Theater", + -11.741292953491211 + ], + [ + "/1", + -11.741338729858398 + ], + [ + "▁partition", + -11.74142837524414 + ], + [ + "▁tenant", + -11.741584777832031 + ], + [ + "6,000", + -11.741596221923828 + ], + [ + "▁1930", + -11.741657257080078 + ], + [ + "▁switches", + -11.741729736328125 + ], + [ + "▁Sci", + -11.741948127746582 + ], + [ + "▁gratitude", + -11.742080688476562 + ], + [ + "▁outreach", + -11.742130279541016 + ], + [ + "AV", + -11.742223739624023 + ], + [ + "▁reject", + -11.742274284362793 + ], + [ + "▁countryside", + -11.7423095703125 + ], + [ + "▁1983", + -11.742377281188965 + ], + [ + "vie", + -11.742453575134277 + ], + [ + "▁congregation", + -11.742513656616211 + ], + [ + "▁Shopping", + -11.74254035949707 + ], + [ + "▁photographers", + -11.74273681640625 + ], + [ + "▁spotted", + -11.742907524108887 + ], + [ + "▁terrorist", + -11.743046760559082 + ], + [ + "pul", + -11.743091583251953 + ], + [ + "▁pending", + -11.743182182312012 + ], + [ + "gged", + -11.743358612060547 + ], + [ + "▁modifications", + -11.743389129638672 + ], + [ + "▁Deal", + -11.743490219116211 + ], + [ + "▁Kir", + -11.744098663330078 + ], + [ + "▁adviser", + -11.744102478027344 + ], + [ + "▁Linda", + -11.74413013458252 + ], + [ + "ident", + -11.74413776397705 + ], + [ + "rose", + -11.744279861450195 + ], + [ + "▁Initiative", + -11.744525909423828 + ], + [ + "▁Hop", + -11.74460220336914 + ], + [ + "▁Xi", + -11.744630813598633 + ], + [ + "dry", + -11.744766235351562 + ], + [ + "▁supplying", + -11.744830131530762 + ], + [ + "▁imported", + -11.745074272155762 + ], + [ + "▁Category", + -11.745495796203613 + ], + [ + "kers", + -11.745718002319336 + ], + [ + "],", + -11.745804786682129 + ], + [ + "▁Format", + -11.745804786682129 + ], + [ + "▁prim", + -11.745806694030762 + ], + [ + "metry", + -11.746000289916992 + ], + [ + "▁Statement", + -11.746031761169434 + ], + [ + "▁insulin", + -11.74611759185791 + ], + [ + "CN", + -11.746201515197754 + ], + [ + "▁Answer", + -11.746214866638184 + ], + [ + "▁Madrid", + -11.746268272399902 + ], + [ + "dict", + -11.746609687805176 + ], + [ + "nell", + -11.746798515319824 + ], + [ + "pid", + -11.746837615966797 + ], + [ + "▁0.5", + -11.746914863586426 + ], + [ + "▁MBA", + -11.746992111206055 + ], + [ + "▁accessing", + -11.747035026550293 + ], + [ + "▁Boot", + -11.747114181518555 + ], + [ + "ault", + -11.747349739074707 + ], + [ + "fici", + -11.747580528259277 + ], + [ + "▁Pearl", + -11.747608184814453 + ], + [ + "▁Agent", + -11.747637748718262 + ], + [ + "▁Recovery", + -11.747796058654785 + ], + [ + "▁69", + -11.747808456420898 + ], + [ + "▁Unique", + -11.747941970825195 + ], + [ + "▁duplicate", + -11.748025894165039 + ], + [ + "▁complain", + -11.748188018798828 + ], + [ + "▁cliff", + -11.748418807983398 + ], + [ + "▁Bake", + -11.748466491699219 + ], + [ + "▁Fellow", + -11.748931884765625 + ], + [ + "▁defeated", + -11.748934745788574 + ], + [ + "▁Truth", + -11.74911117553711 + ], + [ + "▁Solid", + -11.749242782592773 + ], + [ + "▁lover", + -11.749299049377441 + ], + [ + "east", + -11.749403953552246 + ], + [ + "▁holistic", + -11.749412536621094 + ], + [ + "▁drawer", + -11.749537467956543 + ], + [ + "▁witnessed", + -11.749648094177246 + ], + [ + "▁greenhouse", + -11.75027084350586 + ], + [ + "▁caps", + -11.750365257263184 + ], + [ + "▁fond", + -11.750443458557129 + ], + [ + "▁Studios", + -11.75049877166748 + ], + [ + "▁phrases", + -11.750675201416016 + ], + [ + "▁seventh", + -11.750687599182129 + ], + [ + "▁Brexit", + -11.750694274902344 + ], + [ + "script", + -11.750800132751465 + ], + [ + "▁Cultural", + -11.750871658325195 + ], + [ + "▁NHS", + -11.75091552734375 + ], + [ + "▁rivers", + -11.7509183883667 + ], + [ + "▁mph", + -11.750962257385254 + ], + [ + "▁Trip", + -11.75104808807373 + ], + [ + "▁recruit", + -11.75109577178955 + ], + [ + "▁imposed", + -11.751263618469238 + ], + [ + "▁cal", + -11.751286506652832 + ], + [ + "▁faucet", + -11.751333236694336 + ], + [ + "▁worries", + -11.751564025878906 + ], + [ + "▁Various", + -11.75173568725586 + ], + [ + "tens", + -11.751782417297363 + ], + [ + "OM", + -11.752129554748535 + ], + [ + "▁365", + -11.75228500366211 + ], + [ + "▁remodeling", + -11.752432823181152 + ], + [ + "▁tones", + -11.752552032470703 + ], + [ + "own", + -11.752554893493652 + ], + [ + "▁Egg", + -11.752875328063965 + ], + [ + "▁inevitable", + -11.752978324890137 + ], + [ + "▁bears", + -11.752996444702148 + ], + [ + "▁thereof", + -11.753127098083496 + ], + [ + "▁Czech", + -11.753158569335938 + ], + [ + "when", + -11.753230094909668 + ], + [ + "▁cam", + -11.753412246704102 + ], + [ + "▁Wonder", + -11.753538131713867 + ], + [ + "▁chrome", + -11.753585815429688 + ], + [ + "▁discrimination", + -11.753915786743164 + ], + [ + "▁sticks", + -11.754034042358398 + ], + [ + "▁Rice", + -11.75415325164795 + ], + [ + "▁92", + -11.75416374206543 + ], + [ + "ndra", + -11.75430965423584 + ], + [ + "▁88", + -11.75436019897461 + ], + [ + "▁poorly", + -11.754376411437988 + ], + [ + "▁investigating", + -11.75444507598877 + ], + [ + "▁happily", + -11.754470825195312 + ], + [ + "▁spirits", + -11.754518508911133 + ], + [ + "Min", + -11.754571914672852 + ], + [ + "▁gay", + -11.755073547363281 + ], + [ + "▁Lev", + -11.755209922790527 + ], + [ + "▁traded", + -11.755209922790527 + ], + [ + "▁Archives", + -11.755218505859375 + ], + [ + "▁knit", + -11.755430221557617 + ], + [ + "▁3.0", + -11.755475044250488 + ], + [ + "hid", + -11.755825996398926 + ], + [ + "char", + -11.75583553314209 + ], + [ + "▁burned", + -11.755988121032715 + ], + [ + "▁investigations", + -11.756071090698242 + ], + [ + "OW", + -11.756446838378906 + ], + [ + "▁researching", + -11.756546974182129 + ], + [ + "▁admire", + -11.756641387939453 + ], + [ + "▁Privacy", + -11.756662368774414 + ], + [ + "▁heroes", + -11.756733894348145 + ], + [ + "lex", + -11.756763458251953 + ], + [ + "▁Lighting", + -11.757002830505371 + ], + [ + "▁technician", + -11.757133483886719 + ], + [ + "▁mixer", + -11.757184028625488 + ], + [ + "ALL", + -11.757349967956543 + ], + [ + "suit", + -11.757678031921387 + ], + [ + "▁Samuel", + -11.757688522338867 + ], + [ + "human", + -11.757772445678711 + ], + [ + "cil", + -11.757804870605469 + ], + [ + "▁moist", + -11.757952690124512 + ], + [ + "▁tolerance", + -11.757957458496094 + ], + [ + "▁bonuses", + -11.757980346679688 + ], + [ + "▁Dollar", + -11.758034706115723 + ], + [ + "▁Emma", + -11.758100509643555 + ], + [ + "▁innovations", + -11.75815200805664 + ], + [ + "▁initiated", + -11.758332252502441 + ], + [ + "▁Response", + -11.758349418640137 + ], + [ + "▁spoil", + -11.758487701416016 + ], + [ + "emon", + -11.75853157043457 + ], + [ + "▁linking", + -11.75857162475586 + ], + [ + "plex", + -11.758574485778809 + ], + [ + "changing", + -11.758711814880371 + ], + [ + "▁sciences", + -11.758866310119629 + ], + [ + "▁Kil", + -11.758996963500977 + ], + [ + "▁rigid", + -11.759255409240723 + ], + [ + "▁elect", + -11.759385108947754 + ], + [ + "add", + -11.759749412536621 + ], + [ + "▁pur", + -11.75992202758789 + ], + [ + "purpose", + -11.759930610656738 + ], + [ + "2018", + -11.75993824005127 + ], + [ + "▁Heavy", + -11.760170936584473 + ], + [ + "▁traditionally", + -11.760523796081543 + ], + [ + "azi", + -11.760581016540527 + ], + [ + "▁facebook", + -11.760621070861816 + ], + [ + "▁warmer", + -11.760812759399414 + ], + [ + "▁Advisor", + -11.760968208312988 + ], + [ + "▁Rat", + -11.761065483093262 + ], + [ + "▁mega", + -11.761200904846191 + ], + [ + "▁loft", + -11.761468887329102 + ], + [ + "▁configure", + -11.76147747039795 + ], + [ + "asse", + -11.761482238769531 + ], + [ + "▁Din", + -11.761512756347656 + ], + [ + "duc", + -11.761618614196777 + ], + [ + "pra", + -11.761619567871094 + ], + [ + "▁Mirror", + -11.761735916137695 + ], + [ + "cen", + -11.76193618774414 + ], + [ + "▁consolidation", + -11.76209831237793 + ], + [ + "▁pedal", + -11.762139320373535 + ], + [ + "▁Michelle", + -11.762168884277344 + ], + [ + "▁Boat", + -11.762228012084961 + ], + [ + "▁Managing", + -11.762491226196289 + ], + [ + "▁helicopter", + -11.762539863586426 + ], + [ + "▁cycles", + -11.762540817260742 + ], + [ + "pli", + -11.762554168701172 + ], + [ + "▁compartment", + -11.762592315673828 + ], + [ + "▁Crew", + -11.762654304504395 + ], + [ + "▁substrate", + -11.762883186340332 + ], + [ + "▁mor", + -11.76302719116211 + ], + [ + "drop", + -11.76307201385498 + ], + [ + "▁Deputy", + -11.76308536529541 + ], + [ + "▁fever", + -11.763094902038574 + ], + [ + "tree", + -11.763218879699707 + ], + [ + "▁reputable", + -11.76331901550293 + ], + [ + "Featuring", + -11.763455390930176 + ], + [ + "▁Boys", + -11.763474464416504 + ], + [ + "▁Multiple", + -11.763486862182617 + ], + [ + "▁acknowledged", + -11.763606071472168 + ], + [ + "▁Comment", + -11.76390266418457 + ], + [ + "▁sentences", + -11.763904571533203 + ], + [ + "▁angel", + -11.763909339904785 + ], + [ + "▁mirrors", + -11.764030456542969 + ], + [ + "▁Highland", + -11.7641019821167 + ], + [ + "▁fracture", + -11.764124870300293 + ], + [ + "▁galleries", + -11.764124870300293 + ], + [ + "▁Buffalo", + -11.764185905456543 + ], + [ + "DAY", + -11.764342308044434 + ], + [ + "▁1/4", + -11.764507293701172 + ], + [ + "▁Av", + -11.764730453491211 + ], + [ + "▁exquisite", + -11.764749526977539 + ], + [ + "▁Monte", + -11.764932632446289 + ], + [ + "▁Cafe", + -11.765138626098633 + ], + [ + "cci", + -11.765156745910645 + ], + [ + "▁likelihood", + -11.765192031860352 + ], + [ + "▁1982", + -11.765236854553223 + ], + [ + "▁advertise", + -11.765539169311523 + ], + [ + "rik", + -11.765568733215332 + ], + [ + "▁plasma", + -11.765623092651367 + ], + [ + "▁Agriculture", + -11.765740394592285 + ], + [ + "▁deer", + -11.765913963317871 + ], + [ + "tex", + -11.76595687866211 + ], + [ + "▁Tel", + -11.76622200012207 + ], + [ + "▁instrumental", + -11.76629638671875 + ], + [ + "▁gro", + -11.766335487365723 + ], + [ + "ario", + -11.766390800476074 + ], + [ + "▁Gin", + -11.766435623168945 + ], + [ + "▁PP", + -11.766489028930664 + ], + [ + "glo", + -11.766694068908691 + ], + [ + "income", + -11.766786575317383 + ], + [ + "▁scientist", + -11.766833305358887 + ], + [ + "▁Cole", + -11.766961097717285 + ], + [ + "▁bedding", + -11.766977310180664 + ], + [ + "boat", + -11.767258644104004 + ], + [ + "▁82", + -11.767403602600098 + ], + [ + "Whilst", + -11.767409324645996 + ], + [ + "▁Austria", + -11.76772689819336 + ], + [ + "▁Basically", + -11.767865180969238 + ], + [ + "kie", + -11.768098831176758 + ], + [ + "▁mug", + -11.768138885498047 + ], + [ + "▁temporarily", + -11.768217086791992 + ], + [ + "▁innocent", + -11.76834774017334 + ], + [ + "UE", + -11.768608093261719 + ], + [ + "▁Mit", + -11.768708229064941 + ], + [ + "bble", + -11.76880168914795 + ], + [ + "▁recreation", + -11.768823623657227 + ], + [ + "lumin", + -11.76891803741455 + ], + [ + "▁gateway", + -11.768936157226562 + ], + [ + "▁73", + -11.769234657287598 + ], + [ + "four", + -11.769338607788086 + ], + [ + "ride", + -11.769442558288574 + ], + [ + "▁Count", + -11.769463539123535 + ], + [ + "▁researcher", + -11.769478797912598 + ], + [ + "▁mock", + -11.769491195678711 + ], + [ + "tation", + -11.769591331481934 + ], + [ + "▁2005.", + -11.76962661743164 + ], + [ + "▁fellowship", + -11.769758224487305 + ], + [ + "▁medicines", + -11.76981258392334 + ], + [ + "▁wires", + -11.770048141479492 + ], + [ + "▁Nutrition", + -11.770302772521973 + ], + [ + "arri", + -11.7703275680542 + ], + [ + "▁buffet", + -11.770490646362305 + ], + [ + "▁Fra", + -11.770502090454102 + ], + [ + "▁Brothers", + -11.77051067352295 + ], + [ + "(2)", + -11.770513534545898 + ], + [ + "▁Brook", + -11.770849227905273 + ], + [ + "quot", + -11.770859718322754 + ], + [ + "▁cease", + -11.77092170715332 + ], + [ + "▁parade", + -11.770988464355469 + ], + [ + "▁switched", + -11.771230697631836 + ], + [ + "▁Scan", + -11.771247863769531 + ], + [ + "▁puppy", + -11.771313667297363 + ], + [ + "▁ginger", + -11.771332740783691 + ], + [ + "▁Reserved", + -11.771342277526855 + ], + [ + "▁echo", + -11.771391868591309 + ], + [ + "▁Less", + -11.77165412902832 + ], + [ + "▁Tab", + -11.771677017211914 + ], + [ + "▁blocking", + -11.77168083190918 + ], + [ + "▁elaborate", + -11.77180004119873 + ], + [ + "▁attacked", + -11.77183723449707 + ], + [ + "▁defects", + -11.77183723449707 + ], + [ + "▁rap", + -11.771934509277344 + ], + [ + "▁roster", + -11.772116661071777 + ], + [ + "▁correspond", + -11.772187232971191 + ], + [ + "hall", + -11.772189140319824 + ], + [ + "▁vegetarian", + -11.772377967834473 + ], + [ + "▁Related", + -11.772465705871582 + ], + [ + "held", + -11.772583961486816 + ], + [ + "▁nevertheless", + -11.772587776184082 + ], + [ + "▁Crime", + -11.772758483886719 + ], + [ + "р", + -11.772971153259277 + ], + [ + "▁Richmond", + -11.773079872131348 + ], + [ + "▁connector", + -11.773086547851562 + ], + [ + "▁credentials", + -11.773270606994629 + ], + [ + "▁qualification", + -11.77327823638916 + ], + [ + "▁Collins", + -11.773658752441406 + ], + [ + "▁microphone", + -11.773658752441406 + ], + [ + "ulator", + -11.773741722106934 + ], + [ + "hou", + -11.773751258850098 + ], + [ + "▁Der", + -11.773848533630371 + ], + [ + "▁paperwork", + -11.773914337158203 + ], + [ + "▁dump", + -11.77395248413086 + ], + [ + "▁EV", + -11.774023056030273 + ], + [ + "▁lengthy", + -11.774066925048828 + ], + [ + "▁elder", + -11.774154663085938 + ], + [ + "▁answering", + -11.774248123168945 + ], + [ + "▁rounded", + -11.774348258972168 + ], + [ + "▁1979", + -11.774515151977539 + ], + [ + "▁lamps", + -11.774680137634277 + ], + [ + "▁absent", + -11.77479362487793 + ], + [ + "▁domains", + -11.77486515045166 + ], + [ + "▁enrollment", + -11.774877548217773 + ], + [ + "MR", + -11.774986267089844 + ], + [ + "▁altered", + -11.7750883102417 + ], + [ + "aste", + -11.775335311889648 + ], + [ + "▁calculator", + -11.775371551513672 + ], + [ + "▁Dell", + -11.775424003601074 + ], + [ + "Free", + -11.775785446166992 + ], + [ + "▁horn", + -11.775890350341797 + ], + [ + "▁Discount", + -11.775904655456543 + ], + [ + "big", + -11.77592658996582 + ], + [ + "rating", + -11.776209831237793 + ], + [ + "eem", + -11.776225090026855 + ], + [ + "▁Partnership", + -11.77624225616455 + ], + [ + "▁Jul", + -11.776280403137207 + ], + [ + "uel", + -11.776294708251953 + ], + [ + "▁cancelled", + -11.7763032913208 + ], + [ + "▁AV", + -11.776395797729492 + ], + [ + "▁appropriately", + -11.776657104492188 + ], + [ + "▁pearl", + -11.776802062988281 + ], + [ + "▁mathematics", + -11.777082443237305 + ], + [ + "▁quad", + -11.777109146118164 + ], + [ + "▁incentive", + -11.77714729309082 + ], + [ + "2013", + -11.777220726013184 + ], + [ + "▁Duration", + -11.777266502380371 + ], + [ + "▁trades", + -11.777292251586914 + ], + [ + "▁bro", + -11.777457237243652 + ], + [ + "▁5:", + -11.777544975280762 + ], + [ + "▁forgive", + -11.777583122253418 + ], + [ + "▁SEC", + -11.777605056762695 + ], + [ + "▁Mai", + -11.777742385864258 + ], + [ + "▁happier", + -11.7777681350708 + ], + [ + "▁Ven", + -11.777852058410645 + ], + [ + "▁accelerate", + -11.778185844421387 + ], + [ + "▁lesser", + -11.778223991394043 + ], + [ + "▁Task", + -11.778260231018066 + ], + [ + "▁investigated", + -11.77828598022461 + ], + [ + "▁sometime", + -11.778363227844238 + ], + [ + "▁Murray", + -11.778367042541504 + ], + [ + "▁pat", + -11.778449058532715 + ], + [ + "▁lobby", + -11.778631210327148 + ], + [ + "▁Million", + -11.779106140136719 + ], + [ + "▁PayPal", + -11.779121398925781 + ], + [ + "gers", + -11.779131889343262 + ], + [ + "▁girlfriend", + -11.779158592224121 + ], + [ + "▁alliance", + -11.779356956481934 + ], + [ + "▁8-", + -11.779616355895996 + ], + [ + "comprised", + -11.77963924407959 + ], + [ + "▁Guardian", + -11.77971363067627 + ], + [ + "▁referral", + -11.779723167419434 + ], + [ + "▁Bru", + -11.77981948852539 + ], + [ + "▁Chemical", + -11.779936790466309 + ], + [ + "▁racial", + -11.779956817626953 + ], + [ + "▁scanning", + -11.78007698059082 + ], + [ + "▁midnight", + -11.780291557312012 + ], + [ + "▁Ideal", + -11.780652046203613 + ], + [ + "▁poems", + -11.780773162841797 + ], + [ + "aux", + -11.780919075012207 + ], + [ + "▁monster", + -11.78106689453125 + ], + [ + "▁Joy", + -11.78118896484375 + ], + [ + "▁painter", + -11.781543731689453 + ], + [ + "ABLE", + -11.781634330749512 + ], + [ + "poli", + -11.781757354736328 + ], + [ + "▁shifts", + -11.78201961517334 + ], + [ + "zan", + -11.782261848449707 + ], + [ + "▁lamb", + -11.782358169555664 + ], + [ + "▁verse", + -11.78237533569336 + ], + [ + "▁pu", + -11.782443046569824 + ], + [ + "▁pressed", + -11.782444953918457 + ], + [ + "▁environmentally", + -11.782585144042969 + ], + [ + "▁recruiting", + -11.782588958740234 + ], + [ + "gil", + -11.782608032226562 + ], + [ + "▁behavioral", + -11.782637596130371 + ], + [ + "▁McG", + -11.782736778259277 + ], + [ + "▁Wy", + -11.782803535461426 + ], + [ + "▁infinite", + -11.782816886901855 + ], + [ + "▁visually", + -11.782965660095215 + ], + [ + "д", + -11.783246040344238 + ], + [ + "▁waited", + -11.783246040344238 + ], + [ + "5)", + -11.783284187316895 + ], + [ + "Gen", + -11.783345222473145 + ], + [ + "▁prone", + -11.783373832702637 + ], + [ + "▁landscaping", + -11.783612251281738 + ], + [ + "▁shy", + -11.78371524810791 + ], + [ + "▁folding", + -11.78372859954834 + ], + [ + "▁roast", + -11.7837495803833 + ], + [ + "RL", + -11.78381633758545 + ], + [ + "writing", + -11.784109115600586 + ], + [ + "▁Liberty", + -11.7845458984375 + ], + [ + "▁ref", + -11.784600257873535 + ], + [ + "▁Northwest", + -11.784647941589355 + ], + [ + "cup", + -11.784947395324707 + ], + [ + "▁LCD", + -11.78496265411377 + ], + [ + "▁harmony", + -11.784968376159668 + ], + [ + "▁Shanghai", + -11.785151481628418 + ], + [ + "▁95%", + -11.78515625 + ], + [ + "▁Present", + -11.785225868225098 + ], + [ + "IND", + -11.78522777557373 + ], + [ + "▁unto", + -11.785258293151855 + ], + [ + "▁zu", + -11.785264015197754 + ], + [ + "▁scenic", + -11.785337448120117 + ], + [ + "▁gravity", + -11.785416603088379 + ], + [ + "▁viewer", + -11.785531044006348 + ], + [ + "aught", + -11.785677909851074 + ], + [ + "▁beads", + -11.78581428527832 + ], + [ + "LR", + -11.785818099975586 + ], + [ + "▁celebrity", + -11.785841941833496 + ], + [ + "Book", + -11.785980224609375 + ], + [ + "BL", + -11.786090850830078 + ], + [ + "▁negotiate", + -11.786202430725098 + ], + [ + "▁farmer", + -11.786210060119629 + ], + [ + "▁drilling", + -11.78625202178955 + ], + [ + "fill", + -11.786520957946777 + ], + [ + "▁dominated", + -11.786624908447266 + ], + [ + "▁laminate", + -11.786652565002441 + ], + [ + "▁Internal", + -11.786811828613281 + ], + [ + "▁queue", + -11.786826133728027 + ], + [ + "▁metals", + -11.786852836608887 + ], + [ + "vac", + -11.786916732788086 + ], + [ + "▁Chile", + -11.787233352661133 + ], + [ + "▁rows", + -11.78723430633545 + ], + [ + "▁Robinson", + -11.787342071533203 + ], + [ + "▁stating", + -11.787347793579102 + ], + [ + "▁athlete", + -11.787358283996582 + ], + [ + "▁administrators", + -11.78775405883789 + ], + [ + "▁Maintenance", + -11.787917137145996 + ], + [ + "▁storing", + -11.78792667388916 + ], + [ + "NK", + -11.787943840026855 + ], + [ + "▁Kor", + -11.788125038146973 + ], + [ + "EAR", + -11.7881498336792 + ], + [ + "▁lectures", + -11.788215637207031 + ], + [ + "▁marathon", + -11.788430213928223 + ], + [ + "▁festive", + -11.788482666015625 + ], + [ + "▁Roy", + -11.788595199584961 + ], + [ + "five", + -11.788599014282227 + ], + [ + "▁valuation", + -11.788644790649414 + ], + [ + "▁sculpture", + -11.78889274597168 + ], + [ + "▁RM", + -11.789156913757324 + ], + [ + "▁breathtaking", + -11.789167404174805 + ], + [ + "▁Belt", + -11.789246559143066 + ], + [ + "▁chaos", + -11.789511680603027 + ], + [ + "▁singles", + -11.78954029083252 + ], + [ + "▁lively", + -11.789754867553711 + ], + [ + "▁Larry", + -11.789782524108887 + ], + [ + "▁umbrella", + -11.789783477783203 + ], + [ + "▁gesture", + -11.789839744567871 + ], + [ + "▁Fl", + -11.78991985321045 + ], + [ + "▁Sounds", + -11.790045738220215 + ], + [ + "boro", + -11.790200233459473 + ], + [ + "tical", + -11.790226936340332 + ], + [ + "▁undertaken", + -11.790230751037598 + ], + [ + "risk", + -11.790311813354492 + ], + [ + "▁gardening", + -11.790430068969727 + ], + [ + "▁Vintage", + -11.790477752685547 + ], + [ + "▁communicating", + -11.790504455566406 + ], + [ + "▁Mason", + -11.790611267089844 + ], + [ + "▁Hit", + -11.79078197479248 + ], + [ + "▁Mountains", + -11.791010856628418 + ], + [ + "▁chase", + -11.79110336303711 + ], + [ + "▁125", + -11.79116153717041 + ], + [ + "▁Probably", + -11.791519165039062 + ], + [ + "▁accountability", + -11.79166316986084 + ], + [ + "▁Coupon", + -11.791790008544922 + ], + [ + "plate", + -11.791895866394043 + ], + [ + "▁Ul", + -11.791919708251953 + ], + [ + "▁Fitness", + -11.791973114013672 + ], + [ + "▁fuse", + -11.79200553894043 + ], + [ + "▁rigorous", + -11.792032241821289 + ], + [ + "▁interventions", + -11.792065620422363 + ], + [ + "▁grams", + -11.79223918914795 + ], + [ + "▁qualifying", + -11.79233169555664 + ], + [ + "▁equation", + -11.792346954345703 + ], + [ + "▁shutter", + -11.792670249938965 + ], + [ + "▁Political", + -11.792861938476562 + ], + [ + "▁strings", + -11.792908668518066 + ], + [ + "▁Fur", + -11.792915344238281 + ], + [ + "▁midst", + -11.792937278747559 + ], + [ + "▁Gear", + -11.792974472045898 + ], + [ + "▁damn", + -11.793054580688477 + ], + [ + "▁intermediate", + -11.793160438537598 + ], + [ + "▁Forex", + -11.793340682983398 + ], + [ + "▁socket", + -11.793367385864258 + ], + [ + "▁Campus", + -11.793469429016113 + ], + [ + "▁RF", + -11.793505668640137 + ], + [ + "▁hobby", + -11.793562889099121 + ], + [ + "▁Wait", + -11.793671607971191 + ], + [ + "▁sights", + -11.793741226196289 + ], + [ + "PF", + -11.793886184692383 + ], + [ + "parent", + -11.794057846069336 + ], + [ + "▁Leon", + -11.79407787322998 + ], + [ + "▁culinary", + -11.794089317321777 + ], + [ + "▁surgeon", + -11.794107437133789 + ], + [ + "▁journals", + -11.794175148010254 + ], + [ + "▁WP", + -11.79426383972168 + ], + [ + "▁crypto", + -11.794292449951172 + ], + [ + "▁Marshall", + -11.794690132141113 + ], + [ + "▁Columbus", + -11.794705390930176 + ], + [ + "▁constraints", + -11.794827461242676 + ], + [ + "▁iPod", + -11.79488754272461 + ], + [ + "taking", + -11.795143127441406 + ], + [ + "▁1.2", + -11.79547119140625 + ], + [ + "gress", + -11.79549789428711 + ], + [ + "▁Coming", + -11.7955904006958 + ], + [ + "▁NOW", + -11.795676231384277 + ], + [ + "▁hedge", + -11.795748710632324 + ], + [ + "izz", + -11.79598617553711 + ], + [ + "otic", + -11.79604721069336 + ], + [ + "▁recordings", + -11.796236038208008 + ], + [ + "▁horrible", + -11.796369552612305 + ], + [ + "▁disputes", + -11.796381950378418 + ], + [ + "▁Adventure", + -11.796414375305176 + ], + [ + "▁securely", + -11.796492576599121 + ], + [ + "chol", + -11.796521186828613 + ], + [ + "TON", + -11.796788215637207 + ], + [ + "▁reservations", + -11.796992301940918 + ], + [ + "▁jewel", + -11.797038078308105 + ], + [ + "-04", + -11.79705810546875 + ], + [ + "▁frustrated", + -11.79709529876709 + ], + [ + "access", + -11.79740047454834 + ], + [ + "▁Players", + -11.79778003692627 + ], + [ + "▁genuinely", + -11.797898292541504 + ], + [ + "▁renting", + -11.797972679138184 + ], + [ + "▁herein", + -11.79809284210205 + ], + [ + "▁Abu", + -11.798276901245117 + ], + [ + "▁rip", + -11.798391342163086 + ], + [ + "▁enjoyment", + -11.798521995544434 + ], + [ + "▁Drink", + -11.798639297485352 + ], + [ + "pac", + -11.798651695251465 + ], + [ + "▁Imp", + -11.798666000366211 + ], + [ + "RG", + -11.79887580871582 + ], + [ + "▁matrix", + -11.798885345458984 + ], + [ + "▁Bab", + -11.798937797546387 + ], + [ + "▁gem", + -11.798988342285156 + ], + [ + "▁Mega", + -11.799101829528809 + ], + [ + "▁discovering", + -11.799302101135254 + ], + [ + "END", + -11.799460411071777 + ], + [ + "▁Arkansas", + -11.7996244430542 + ], + [ + "▁proudly", + -11.79982852935791 + ], + [ + "▁Kindle", + -11.799896240234375 + ], + [ + "▁2014–", + -11.800164222717285 + ], + [ + "▁cushion", + -11.800166130065918 + ], + [ + "▁notifications", + -11.80023193359375 + ], + [ + "▁enthusiasts", + -11.800390243530273 + ], + [ + "▁missile", + -11.800439834594727 + ], + [ + "▁merchant", + -11.800507545471191 + ], + [ + "▁Barr", + -11.800529479980469 + ], + [ + "RES", + -11.800760269165039 + ], + [ + "nick", + -11.801006317138672 + ], + [ + "▁aligned", + -11.801060676574707 + ], + [ + "▁Vas", + -11.801066398620605 + ], + [ + "▁Outside", + -11.801127433776855 + ], + [ + "▁Alpha", + -11.801143646240234 + ], + [ + "▁plum", + -11.801163673400879 + ], + [ + "▁donors", + -11.801461219787598 + ], + [ + "▁OEM", + -11.801512718200684 + ], + [ + "tax", + -11.801913261413574 + ], + [ + "/2019", + -11.80204963684082 + ], + [ + "▁cattle", + -11.802075386047363 + ], + [ + "▁Stan", + -11.80212116241455 + ], + [ + "▁occurrence", + -11.80213451385498 + ], + [ + "▁missions", + -11.802177429199219 + ], + [ + "▁anonymous", + -11.802204132080078 + ], + [ + "▁advisory", + -11.802653312683105 + ], + [ + "▁Automatic", + -11.802664756774902 + ], + [ + "▁comfy", + -11.802729606628418 + ], + [ + "▁parcel", + -11.8028564453125 + ], + [ + "▁commissioned", + -11.803248405456543 + ], + [ + "▁Syrian", + -11.80336856842041 + ], + [ + "Sc", + -11.803962707519531 + ], + [ + "▁rum", + -11.804156303405762 + ], + [ + "sten", + -11.804215431213379 + ], + [ + "▁Advance", + -11.804240226745605 + ], + [ + "▁ranch", + -11.804441452026367 + ], + [ + "▁Plain", + -11.804590225219727 + ], + [ + "▁webpage", + -11.804713249206543 + ], + [ + "م", + -11.805065155029297 + ], + [ + "▁Az", + -11.80514144897461 + ], + [ + "▁positively", + -11.805295944213867 + ], + [ + "▁Racing", + -11.805328369140625 + ], + [ + "PH", + -11.805456161499023 + ], + [ + "▁statute", + -11.8054780960083 + ], + [ + "▁Hydro", + -11.805506706237793 + ], + [ + "▁1%", + -11.805691719055176 + ], + [ + "sec", + -11.805724143981934 + ], + [ + "▁Mitchell", + -11.805960655212402 + ], + [ + "▁Hur", + -11.805989265441895 + ], + [ + "▁Airlines", + -11.806047439575195 + ], + [ + "▁stats", + -11.806047439575195 + ], + [ + "▁Hunt", + -11.806093215942383 + ], + [ + "shore", + -11.806182861328125 + ], + [ + "▁publishers", + -11.806467056274414 + ], + [ + "OK", + -11.80660343170166 + ], + [ + "▁fifty", + -11.806629180908203 + ], + [ + "▁lakes", + -11.806639671325684 + ], + [ + "▁Portugal", + -11.806655883789062 + ], + [ + "ATA", + -11.806674003601074 + ], + [ + "▁PHP", + -11.80691909790039 + ], + [ + "▁verb", + -11.806926727294922 + ], + [ + "▁accessory", + -11.80716609954834 + ], + [ + "▁Cake", + -11.807229995727539 + ], + [ + "▁94", + -11.807294845581055 + ], + [ + "▁limiting", + -11.807433128356934 + ], + [ + "▁assuming", + -11.8075590133667 + ], + [ + "GC", + -11.80777645111084 + ], + [ + "▁Late", + -11.807777404785156 + ], + [ + "▁Nashville", + -11.807927131652832 + ], + [ + "rene", + -11.80795669555664 + ], + [ + "▁pathway", + -11.807981491088867 + ], + [ + "▁Vis", + -11.808470726013184 + ], + [ + "▁Milan", + -11.808732986450195 + ], + [ + "PB", + -11.808813095092773 + ], + [ + "▁Scripture", + -11.808818817138672 + ], + [ + "▁weakness", + -11.808954238891602 + ], + [ + "▁Episode", + -11.809020042419434 + ], + [ + "▁Coin", + -11.809027671813965 + ], + [ + "▁slides", + -11.80904483795166 + ], + [ + "▁spiral", + -11.809212684631348 + ], + [ + "▁compliment", + -11.809303283691406 + ], + [ + "▁Tru", + -11.809308052062988 + ], + [ + "▁android", + -11.809632301330566 + ], + [ + "▁Py", + -11.809741020202637 + ], + [ + "▁conceptual", + -11.80982494354248 + ], + [ + "dding", + -11.810236930847168 + ], + [ + "▁termination", + -11.810331344604492 + ], + [ + "duction", + -11.810372352600098 + ], + [ + "▁goat", + -11.81039810180664 + ], + [ + "▁discounted", + -11.810409545898438 + ], + [ + "▁Hero", + -11.81047248840332 + ], + [ + "▁Understanding", + -11.81050968170166 + ], + [ + "food", + -11.810586929321289 + ], + [ + "▁enthusiastic", + -11.810628890991211 + ], + [ + "▁undoubtedly", + -11.810816764831543 + ], + [ + "layer", + -11.810850143432617 + ], + [ + "mix", + -11.81087589263916 + ], + [ + "TION", + -11.811147689819336 + ], + [ + "▁cricket", + -11.81117057800293 + ], + [ + "▁Shan", + -11.811274528503418 + ], + [ + "▁sampling", + -11.811362266540527 + ], + [ + "blog", + -11.811384201049805 + ], + [ + "▁homeowner", + -11.81151008605957 + ], + [ + "▁Bou", + -11.81155776977539 + ], + [ + "▁Denmark", + -11.811708450317383 + ], + [ + "▁offshore", + -11.811729431152344 + ], + [ + "▁2,000", + -11.811790466308594 + ], + [ + "▁conform", + -11.811867713928223 + ], + [ + "▁banned", + -11.811919212341309 + ], + [ + "▁Cart", + -11.812277793884277 + ], + [ + "▁splash", + -11.812285423278809 + ], + [ + "▁Fisher", + -11.812461853027344 + ], + [ + "▁dosage", + -11.812511444091797 + ], + [ + "▁infant", + -11.812559127807617 + ], + [ + "▁wander", + -11.812676429748535 + ], + [ + "defined", + -11.812774658203125 + ], + [ + "▁Guy", + -11.8128080368042 + ], + [ + "▁dishwasher", + -11.8128080368042 + ], + [ + "▁psycho", + -11.81326961517334 + ], + [ + "author", + -11.813390731811523 + ], + [ + "▁cheat", + -11.813394546508789 + ], + [ + "friend", + -11.813605308532715 + ], + [ + "▁develops", + -11.813637733459473 + ], + [ + "▁shuttle", + -11.81385612487793 + ], + [ + "▁luggage", + -11.813873291015625 + ], + [ + "▁ensemble", + -11.813928604125977 + ], + [ + "▁ru", + -11.813980102539062 + ], + [ + "unit", + -11.814023971557617 + ], + [ + "▁correspondence", + -11.81406021118164 + ], + [ + "▁Puerto", + -11.814093589782715 + ], + [ + "▁isolation", + -11.814106941223145 + ], + [ + "▁Brit", + -11.814532279968262 + ], + [ + "8,", + -11.814591407775879 + ], + [ + "▁dataset", + -11.814788818359375 + ], + [ + "RU", + -11.814873695373535 + ], + [ + "ease", + -11.814915657043457 + ], + [ + "▁(7", + -11.814981460571289 + ], + [ + "▁GDP", + -11.815003395080566 + ], + [ + "cross", + -11.815133094787598 + ], + [ + "▁boyfriend", + -11.815191268920898 + ], + [ + "enne", + -11.815204620361328 + ], + [ + "▁fatal", + -11.815363883972168 + ], + [ + "▁invalid", + -11.815534591674805 + ], + [ + "▁installer", + -11.815630912780762 + ], + [ + "▁Corps", + -11.815997123718262 + ], + [ + "-24", + -11.816046714782715 + ], + [ + "▁Lip", + -11.816166877746582 + ], + [ + "▁Chart", + -11.816315650939941 + ], + [ + "▁Statistics", + -11.816418647766113 + ], + [ + "▁debit", + -11.816559791564941 + ], + [ + "▁restart", + -11.816595077514648 + ], + [ + "▁brokers", + -11.816761016845703 + ], + [ + "▁respondents", + -11.81687068939209 + ], + [ + "▁Ker", + -11.81706714630127 + ], + [ + "▁disruption", + -11.817089080810547 + ], + [ + "▁encouragement", + -11.817217826843262 + ], + [ + "▁counselor", + -11.817320823669434 + ], + [ + "▁surge", + -11.817410469055176 + ], + [ + "▁rider", + -11.817453384399414 + ], + [ + "▁Amsterdam", + -11.817625045776367 + ], + [ + "▁intern", + -11.81765365600586 + ], + [ + "▁pins", + -11.817912101745605 + ], + [ + "▁turnover", + -11.818042755126953 + ], + [ + "▁damaging", + -11.818107604980469 + ], + [ + "▁$0", + -11.81879711151123 + ], + [ + "chro", + -11.818881034851074 + ], + [ + "▁utilities", + -11.819025993347168 + ], + [ + "▁defining", + -11.819052696228027 + ], + [ + "▁pendant", + -11.819164276123047 + ], + [ + "▁concentrated", + -11.819206237792969 + ], + [ + "▁Fel", + -11.819574356079102 + ], + [ + "▁charger", + -11.81961727142334 + ], + [ + "▁Patients", + -11.81975269317627 + ], + [ + "bur", + -11.81986141204834 + ], + [ + "Oh", + -11.819881439208984 + ], + [ + "▁PH", + -11.8198823928833 + ], + [ + "▁prop", + -11.81993293762207 + ], + [ + "▁viral", + -11.820028305053711 + ], + [ + "nning", + -11.820226669311523 + ], + [ + "ulated", + -11.820284843444824 + ], + [ + "▁positioning", + -11.8204927444458 + ], + [ + "AH", + -11.820558547973633 + ], + [ + "▁Historical", + -11.820878982543945 + ], + [ + "▁bulbs", + -11.820886611938477 + ], + [ + "▁appetite", + -11.821005821228027 + ], + [ + "▁Margaret", + -11.821063995361328 + ], + [ + "▁Rot", + -11.821073532104492 + ], + [ + "▁freight", + -11.821130752563477 + ], + [ + "ра", + -11.821189880371094 + ], + [ + "▁Laboratory", + -11.821296691894531 + ], + [ + "▁Waste", + -11.821325302124023 + ], + [ + "▁Method", + -11.821342468261719 + ], + [ + "▁paddle", + -11.821361541748047 + ], + [ + "▁Publisher", + -11.821455001831055 + ], + [ + "▁lol", + -11.821572303771973 + ], + [ + "incorporating", + -11.821666717529297 + ], + [ + "▁dwelling", + -11.82209300994873 + ], + [ + "▁Chain", + -11.822101593017578 + ], + [ + "▁landscapes", + -11.822218894958496 + ], + [ + "▁void", + -11.822236061096191 + ], + [ + "▁Railway", + -11.822287559509277 + ], + [ + "▁Cop", + -11.822712898254395 + ], + [ + "▁packet", + -11.822758674621582 + ], + [ + "rain", + -11.822762489318848 + ], + [ + "▁Advisory", + -11.82282829284668 + ], + [ + "▁renewed", + -11.822979927062988 + ], + [ + "raw", + -11.823081016540527 + ], + [ + "▁allocation", + -11.823165893554688 + ], + [ + "▁analytical", + -11.823209762573242 + ], + [ + "▁fra", + -11.823302268981934 + ], + [ + "▁Christianity", + -11.823355674743652 + ], + [ + "▁kg", + -11.823563575744629 + ], + [ + "▁spatial", + -11.823575973510742 + ], + [ + "RIS", + -11.823602676391602 + ], + [ + "▁SAP", + -11.823688507080078 + ], + [ + "▁overwhelmed", + -11.82371711730957 + ], + [ + "▁Electrical", + -11.823829650878906 + ], + [ + "online", + -11.823836326599121 + ], + [ + "ime", + -11.823882102966309 + ], + [ + "ennial", + -11.823929786682129 + ], + [ + "▁Fee", + -11.823951721191406 + ], + [ + "▁revolutionary", + -11.823958396911621 + ], + [ + "▁dev", + -11.823978424072266 + ], + [ + "▁Above", + -11.824104309082031 + ], + [ + "pie", + -11.824142456054688 + ], + [ + "▁glucose", + -11.82423210144043 + ], + [ + "▁noon", + -11.82441234588623 + ], + [ + "▁1-2", + -11.824568748474121 + ], + [ + "▁violations", + -11.824607849121094 + ], + [ + "▁touching", + -11.824735641479492 + ], + [ + "dir", + -11.824848175048828 + ], + [ + "▁acc", + -11.824898719787598 + ], + [ + "▁Growth", + -11.824921607971191 + ], + [ + "bla", + -11.825102806091309 + ], + [ + "▁restrict", + -11.82532024383545 + ], + [ + "▁Plate", + -11.825420379638672 + ], + [ + "▁justify", + -11.825453758239746 + ], + [ + "egor", + -11.825483322143555 + ], + [ + "▁impacted", + -11.82565689086914 + ], + [ + "▁Kill", + -11.825926780700684 + ], + [ + "▁voluntary", + -11.826506614685059 + ], + [ + "▁economical", + -11.826528549194336 + ], + [ + "▁Consultant", + -11.826537132263184 + ], + [ + "▁desperate", + -11.826837539672852 + ], + [ + "▁laying", + -11.827013969421387 + ], + [ + "sell", + -11.827071189880371 + ], + [ + "▁cents", + -11.827370643615723 + ], + [ + "TOR", + -11.82738208770752 + ], + [ + "▁rifle", + -11.827445983886719 + ], + [ + "▁economies", + -11.827468872070312 + ], + [ + "ador", + -11.827691078186035 + ], + [ + "▁Lamp", + -11.827760696411133 + ], + [ + "CK", + -11.82807731628418 + ], + [ + "▁sunshine", + -11.828107833862305 + ], + [ + "efficient", + -11.82840633392334 + ], + [ + "▁patches", + -11.828518867492676 + ], + [ + "▁municipal", + -11.828560829162598 + ], + [ + "▁Publishing", + -11.828569412231445 + ], + [ + "▁clearing", + -11.828709602355957 + ], + [ + "▁marker", + -11.828712463378906 + ], + [ + "cies", + -11.828770637512207 + ], + [ + "▁amendment", + -11.828923225402832 + ], + [ + "cam", + -11.828963279724121 + ], + [ + "▁asleep", + -11.828978538513184 + ], + [ + "woman", + -11.828985214233398 + ], + [ + "▁EPA", + -11.829010009765625 + ], + [ + "▁dies", + -11.829119682312012 + ], + [ + "▁Ultimate", + -11.829278945922852 + ], + [ + "ART", + -11.829322814941406 + ], + [ + "securing", + -11.829608917236328 + ], + [ + "▁merger", + -11.829627990722656 + ], + [ + "▁lazy", + -11.83001708984375 + ], + [ + "▁2006,", + -11.830160140991211 + ], + [ + "▁instructors", + -11.830375671386719 + ], + [ + "-01", + -11.830602645874023 + ], + [ + "▁differentiate", + -11.830927848815918 + ], + [ + "▁Southeast", + -11.831074714660645 + ], + [ + "▁Stainless", + -11.831082344055176 + ], + [ + "▁Kirk", + -11.831131935119629 + ], + [ + "▁Liz", + -11.831254959106445 + ], + [ + "▁lush", + -11.831315040588379 + ], + [ + "▁accessibility", + -11.831340789794922 + ], + [ + "▁competitions", + -11.83144474029541 + ], + [ + "citing", + -11.831452369689941 + ], + [ + "(3)", + -11.831480026245117 + ], + [ + "▁Fixed", + -11.831558227539062 + ], + [ + "FE", + -11.831585884094238 + ], + [ + "sic", + -11.832008361816406 + ], + [ + "▁markers", + -11.832046508789062 + ], + [ + "▁Chip", + -11.832134246826172 + ], + [ + "powered", + -11.832206726074219 + ], + [ + "2000", + -11.832230567932129 + ], + [ + "GF", + -11.832376480102539 + ], + [ + "▁Rate", + -11.832579612731934 + ], + [ + "▁Eventually", + -11.83258056640625 + ], + [ + "▁roasted", + -11.832600593566895 + ], + [ + "View", + -11.832731246948242 + ], + [ + "▁metro", + -11.832755088806152 + ], + [ + "▁Desk", + -11.832781791687012 + ], + [ + "lik", + -11.83286190032959 + ], + [ + "rak", + -11.832956314086914 + ], + [ + "▁humidity", + -11.833235740661621 + ], + [ + "bone", + -11.833398818969727 + ], + [ + "▁Chen", + -11.833484649658203 + ], + [ + "▁Winner", + -11.833504676818848 + ], + [ + "▁Doug", + -11.833672523498535 + ], + [ + "▁IF", + -11.833807945251465 + ], + [ + "▁Orchestra", + -11.83405876159668 + ], + [ + "▁Spark", + -11.834187507629395 + ], + [ + "▁motivate", + -11.834208488464355 + ], + [ + "heim", + -11.834221839904785 + ], + [ + "▁Nancy", + -11.834258079528809 + ], + [ + "▁commentary", + -11.834284782409668 + ], + [ + "▁headphones", + -11.834291458129883 + ], + [ + "▁eligibility", + -11.834308624267578 + ], + [ + "▁terror", + -11.83452033996582 + ], + [ + "onne", + -11.834588050842285 + ], + [ + "mov", + -11.834639549255371 + ], + [ + "▁kindness", + -11.834717750549316 + ], + [ + "ursuant", + -11.834729194641113 + ], + [ + "product", + -11.8347806930542 + ], + [ + "▁Barry", + -11.834794044494629 + ], + [ + "▁Sierra", + -11.834940910339355 + ], + [ + "toria", + -11.835001945495605 + ], + [ + "▁intentions", + -11.835124969482422 + ], + [ + "▁chop", + -11.83518123626709 + ], + [ + "▁shiny", + -11.835196495056152 + ], + [ + "▁imagined", + -11.83535099029541 + ], + [ + "▁heel", + -11.83547592163086 + ], + [ + "▁suspected", + -11.835508346557617 + ], + [ + "▁crap", + -11.83564567565918 + ], + [ + "▁administered", + -11.835975646972656 + ], + [ + "jpg", + -11.836012840270996 + ], + [ + "▁calculation", + -11.836339950561523 + ], + [ + "▁furnace", + -11.836459159851074 + ], + [ + "▁PL", + -11.836591720581055 + ], + [ + "▁TB", + -11.83708667755127 + ], + [ + "▁bu", + -11.837129592895508 + ], + [ + "OUR", + -11.837220191955566 + ], + [ + "NP", + -11.837296485900879 + ], + [ + "▁Jerry", + -11.837309837341309 + ], + [ + "▁traits", + -11.837409973144531 + ], + [ + "▁Cards", + -11.83748722076416 + ], + [ + "▁Mul", + -11.837615013122559 + ], + [ + "▁conclude", + -11.83780288696289 + ], + [ + "▁Campaign", + -11.837831497192383 + ], + [ + "-40", + -11.837857246398926 + ], + [ + "▁sleeves", + -11.8379545211792 + ], + [ + "PORT", + -11.838019371032715 + ], + [ + "shaw", + -11.838125228881836 + ], + [ + "ulate", + -11.838171005249023 + ], + [ + "▁Bha", + -11.838421821594238 + ], + [ + "▁glorious", + -11.838446617126465 + ], + [ + "▁authentication", + -11.83859634399414 + ], + [ + "▁optimized", + -11.838726043701172 + ], + [ + "▁fifteen", + -11.838837623596191 + ], + [ + "▁1981", + -11.838898658752441 + ], + [ + "fair", + -11.838907241821289 + ], + [ + "▁preserved", + -11.839136123657227 + ], + [ + "PG", + -11.839149475097656 + ], + [ + "▁Ghost", + -11.83917236328125 + ], + [ + "▁Running", + -11.839174270629883 + ], + [ + "▁transmit", + -11.83928394317627 + ], + [ + "SF", + -11.839492797851562 + ], + [ + "▁metabolism", + -11.839651107788086 + ], + [ + "▁Bristol", + -11.83971118927002 + ], + [ + "▁bolt", + -11.839746475219727 + ], + [ + "MAN", + -11.840055465698242 + ], + [ + "▁implies", + -11.840056419372559 + ], + [ + "▁cafe", + -11.840063095092773 + ], + [ + "▁nodes", + -11.84008502960205 + ], + [ + "▁Eight", + -11.84009838104248 + ], + [ + "▁fatty", + -11.840150833129883 + ], + [ + "conce", + -11.840201377868652 + ], + [ + "▁editors", + -11.840243339538574 + ], + [ + "▁dull", + -11.840258598327637 + ], + [ + "million", + -11.840275764465332 + ], + [ + "▁Developer", + -11.840365409851074 + ], + [ + "▁marketers", + -11.840429306030273 + ], + [ + "▁protocols", + -11.840656280517578 + ], + [ + "▁technically", + -11.840860366821289 + ], + [ + "▁evaluating", + -11.840998649597168 + ], + [ + "▁digit", + -11.841606140136719 + ], + [ + "▁unfair", + -11.84190845489502 + ], + [ + "▁Nissan", + -11.84206771850586 + ], + [ + "▁Yahoo", + -11.842082023620605 + ], + [ + "▁literacy", + -11.842123985290527 + ], + [ + "▁Downtown", + -11.842130661010742 + ], + [ + "fix", + -11.842172622680664 + ], + [ + "▁Ward", + -11.84241771697998 + ], + [ + "▁extensively", + -11.84250259399414 + ], + [ + "reportedly", + -11.842520713806152 + ], + [ + "▁grief", + -11.842994689941406 + ], + [ + "HT", + -11.843027114868164 + ], + [ + "oodle", + -11.843094825744629 + ], + [ + "raft", + -11.843250274658203 + ], + [ + "OA", + -11.843356132507324 + ], + [ + "0)", + -11.843374252319336 + ], + [ + "lene", + -11.8433837890625 + ], + [ + "▁Hon", + -11.843400955200195 + ], + [ + "▁fame", + -11.84343433380127 + ], + [ + "▁mathematical", + -11.843476295471191 + ], + [ + "extending", + -11.843575477600098 + ], + [ + "▁weddings", + -11.84359073638916 + ], + [ + "▁cinnamon", + -11.843783378601074 + ], + [ + "▁towels", + -11.8438081741333 + ], + [ + "▁evenly", + -11.84384536743164 + ], + [ + "▁Jimmy", + -11.843888282775879 + ], + [ + "trop", + -11.843892097473145 + ], + [ + "▁immuno", + -11.843964576721191 + ], + [ + "▁Elementary", + -11.843988418579102 + ], + [ + "▁PD", + -11.844109535217285 + ], + [ + "▁FBI", + -11.844122886657715 + ], + [ + "▁Bangladesh", + -11.844205856323242 + ], + [ + "▁affair", + -11.844383239746094 + ], + [ + "▁Participants", + -11.844459533691406 + ], + [ + "▁Ensure", + -11.844507217407227 + ], + [ + "▁canal", + -11.844651222229004 + ], + [ + "▁Broadway", + -11.844735145568848 + ], + [ + "Str", + -11.844789505004883 + ], + [ + "▁impress", + -11.844795227050781 + ], + [ + "▁accountable", + -11.844846725463867 + ], + [ + "overlooking", + -11.845195770263672 + ], + [ + "RF", + -11.845630645751953 + ], + [ + "▁strongest", + -11.845743179321289 + ], + [ + "rish", + -11.84583568572998 + ], + [ + "▁BI", + -11.845963478088379 + ], + [ + "▁optimum", + -11.846038818359375 + ], + [ + "GN", + -11.846126556396484 + ], + [ + "▁Seller", + -11.84641170501709 + ], + [ + "▁slices", + -11.846485137939453 + ], + [ + "▁veggies", + -11.846526145935059 + ], + [ + "▁spike", + -11.846688270568848 + ], + [ + "▁Pope", + -11.846903800964355 + ], + [ + "▁Theory", + -11.846920013427734 + ], + [ + "▁crowded", + -11.846940994262695 + ], + [ + "GP", + -11.847062110900879 + ], + [ + "▁Filter", + -11.84755802154541 + ], + [ + "▁Mario", + -11.84757137298584 + ], + [ + "▁89", + -11.84774398803711 + ], + [ + "▁tide", + -11.84782600402832 + ], + [ + "▁spite", + -11.84789752960205 + ], + [ + "▁shark", + -11.848281860351562 + ], + [ + "▁Thor", + -11.848681449890137 + ], + [ + "▁jewellery", + -11.848695755004883 + ], + [ + "▁Peak", + -11.848814964294434 + ], + [ + "▁Virgin", + -11.848876953125 + ], + [ + "▁Brazilian", + -11.848883628845215 + ], + [ + "▁Wang", + -11.84920883178711 + ], + [ + "▁Keith", + -11.849283218383789 + ], + [ + "▁realised", + -11.849349975585938 + ], + [ + "▁reign", + -11.849363327026367 + ], + [ + "▁Hin", + -11.849701881408691 + ], + [ + "▁Hyper", + -11.849790573120117 + ], + [ + "▁critics", + -11.84988021850586 + ], + [ + "▁Alzheimer", + -11.850055694580078 + ], + [ + "▁Flag", + -11.850203514099121 + ], + [ + "▁stiff", + -11.850213050842285 + ], + [ + "▁mushrooms", + -11.850322723388672 + ], + [ + "▁Lovely", + -11.850602149963379 + ], + [ + "mur", + -11.85081672668457 + ], + [ + "▁diamonds", + -11.850830078125 + ], + [ + "som", + -11.850862503051758 + ], + [ + "▁Knight", + -11.850926399230957 + ], + [ + "▁Hold", + -11.851069450378418 + ], + [ + "▁81", + -11.851126670837402 + ], + [ + "▁Recent", + -11.851141929626465 + ], + [ + "final", + -11.85114860534668 + ], + [ + "▁demon", + -11.851237297058105 + ], + [ + "eren", + -11.851702690124512 + ], + [ + "▁Feed", + -11.851799011230469 + ], + [ + "▁airlines", + -11.851815223693848 + ], + [ + "▁yacht", + -11.851957321166992 + ], + [ + "▁nursery", + -11.852045059204102 + ], + [ + "ashi", + -11.852092742919922 + ], + [ + "leton", + -11.852132797241211 + ], + [ + "▁approx", + -11.852269172668457 + ], + [ + "▁Arena", + -11.852272033691406 + ], + [ + "▁Jessica", + -11.852278709411621 + ], + [ + "▁bail", + -11.852416038513184 + ], + [ + "▁distinguished", + -11.852531433105469 + ], + [ + "dependent", + -11.852638244628906 + ], + [ + "▁punishment", + -11.852757453918457 + ], + [ + "▁hydraulic", + -11.852836608886719 + ], + [ + "▁hunger", + -11.852934837341309 + ], + [ + "people", + -11.852961540222168 + ], + [ + "▁cheek", + -11.852978706359863 + ], + [ + "▁malware", + -11.853103637695312 + ], + [ + "▁Keeping", + -11.85315990447998 + ], + [ + "▁Loan", + -11.853181838989258 + ], + [ + "▁Montreal", + -11.853291511535645 + ], + [ + "▁Holland", + -11.853382110595703 + ], + [ + "▁verbal", + -11.853580474853516 + ], + [ + "▁Branch", + -11.853621482849121 + ], + [ + "▁RA", + -11.853686332702637 + ], + [ + "▁advocates", + -11.853816986083984 + ], + [ + "▁Nova", + -11.85405158996582 + ], + [ + "▁Nepal", + -11.854229927062988 + ], + [ + "course", + -11.854267120361328 + ], + [ + "▁Load", + -11.854426383972168 + ], + [ + "▁posters", + -11.854447364807129 + ], + [ + "▁accommodations", + -11.854504585266113 + ], + [ + "▁emotionally", + -11.854626655578613 + ], + [ + "▁Theme", + -11.85464859008789 + ], + [ + "▁rendering", + -11.854860305786133 + ], + [ + "▁seasoned", + -11.854873657226562 + ], + [ + "▁dare", + -11.854928970336914 + ], + [ + "▁Individual", + -11.855048179626465 + ], + [ + "▁93", + -11.855085372924805 + ], + [ + "▁beginners", + -11.855276107788086 + ], + [ + "▁defender", + -11.855276107788086 + ], + [ + "▁yogurt", + -11.85531234741211 + ], + [ + "▁Definition", + -11.855340957641602 + ], + [ + "▁Pros", + -11.855381965637207 + ], + [ + "clock", + -11.855464935302734 + ], + [ + "▁20-", + -11.85572338104248 + ], + [ + "▁viruses", + -11.855766296386719 + ], + [ + "brand", + -11.855857849121094 + ], + [ + "▁insects", + -11.856011390686035 + ], + [ + "▁transcript", + -11.856048583984375 + ], + [ + "OB", + -11.856085777282715 + ], + [ + "▁radar", + -11.85612964630127 + ], + [ + "▁Wholesale", + -11.856151580810547 + ], + [ + "▁grandchildren", + -11.85616683959961 + ], + [ + "▁98", + -11.856200218200684 + ], + [ + "▁gates", + -11.856449127197266 + ], + [ + "▁declaration", + -11.856452941894531 + ], + [ + "▁Creating", + -11.856657981872559 + ], + [ + "centric", + -11.856866836547852 + ], + [ + "▁persistent", + -11.857069969177246 + ], + [ + "health", + -11.85710334777832 + ], + [ + "▁bases", + -11.857551574707031 + ], + [ + "▁lion", + -11.857635498046875 + ], + [ + "▁replied", + -11.857793807983398 + ], + [ + "▁1500", + -11.858020782470703 + ], + [ + "▁Amendment", + -11.858022689819336 + ], + [ + "UK", + -11.858085632324219 + ], + [ + "▁deadly", + -11.858107566833496 + ], + [ + "▁threads", + -11.858111381530762 + ], + [ + "▁interval", + -11.858190536499023 + ], + [ + "▁retained", + -11.858198165893555 + ], + [ + "Or", + -11.85820198059082 + ], + [ + "▁belly", + -11.858242988586426 + ], + [ + "▁70%", + -11.858366012573242 + ], + [ + "▁appearances", + -11.858522415161133 + ], + [ + "▁Carpet", + -11.85888671875 + ], + [ + "▁Legend", + -11.859111785888672 + ], + [ + "▁Alberta", + -11.859150886535645 + ], + [ + "▁в", + -11.859200477600098 + ], + [ + "▁FO", + -11.859354019165039 + ], + [ + "▁NS", + -11.85941219329834 + ], + [ + "▁formerly", + -11.85941219329834 + ], + [ + "itation", + -11.859642028808594 + ], + [ + "▁scr", + -11.859657287597656 + ], + [ + "▁tweak", + -11.859728813171387 + ], + [ + "enny", + -11.859864234924316 + ], + [ + "iber", + -11.860445022583008 + ], + [ + "▁Tampa", + -11.860447883605957 + ], + [ + "▁sphere", + -11.860447883605957 + ], + [ + "▁chopped", + -11.86052417755127 + ], + [ + "▁streak", + -11.860626220703125 + ], + [ + "▁Colombia", + -11.860654830932617 + ], + [ + "▁proxy", + -11.860819816589355 + ], + [ + "▁stains", + -11.860984802246094 + ], + [ + "▁constitutional", + -11.861006736755371 + ], + [ + "7,", + -11.8611421585083 + ], + [ + "▁defines", + -11.861477851867676 + ], + [ + "▁boundary", + -11.861479759216309 + ], + [ + "▁Medicaid", + -11.861485481262207 + ], + [ + "▁basin", + -11.86191177368164 + ], + [ + "▁screws", + -11.862035751342773 + ], + [ + "▁predictions", + -11.862082481384277 + ], + [ + "▁Pac", + -11.862256050109863 + ], + [ + "▁Clip", + -11.862312316894531 + ], + [ + "▁purely", + -11.862505912780762 + ], + [ + "▁Kind", + -11.862853050231934 + ], + [ + "▁curiosity", + -11.862919807434082 + ], + [ + "AW", + -11.862922668457031 + ], + [ + "▁metallic", + -11.862933158874512 + ], + [ + "▁Border", + -11.862958908081055 + ], + [ + "▁sha", + -11.86303997039795 + ], + [ + "▁Pretty", + -11.863040924072266 + ], + [ + "▁Disc", + -11.863056182861328 + ], + [ + "▁wealthy", + -11.863073348999023 + ], + [ + "▁elegance", + -11.863121032714844 + ], + [ + "▁similarly", + -11.863121032714844 + ], + [ + "vari", + -11.863301277160645 + ], + [ + "▁uni", + -11.8634672164917 + ], + [ + "▁Subject", + -11.863662719726562 + ], + [ + "acre", + -11.86374282836914 + ], + [ + "▁Zoo", + -11.86402702331543 + ], + [ + "▁Terry", + -11.864141464233398 + ], + [ + ")?", + -11.864235877990723 + ], + [ + "CB", + -11.864238739013672 + ], + [ + "▁exhibits", + -11.864296913146973 + ], + [ + "chem", + -11.86439323425293 + ], + [ + "▁practitioner", + -11.864459037780762 + ], + [ + "▁bridges", + -11.86461353302002 + ], + [ + "▁Montana", + -11.864728927612305 + ], + [ + "▁pills", + -11.864775657653809 + ], + [ + "-22", + -11.864948272705078 + ], + [ + "▁transmitted", + -11.864951133728027 + ], + [ + "▁1978", + -11.864983558654785 + ], + [ + "▁hatch", + -11.865091323852539 + ], + [ + "▁Heights", + -11.86538028717041 + ], + [ + "lid", + -11.86546516418457 + ], + [ + "′", + -11.865525245666504 + ], + [ + "fast", + -11.865812301635742 + ], + [ + "▁understands", + -11.865880966186523 + ], + [ + "▁bulb", + -11.865942001342773 + ], + [ + "▁screenshot", + -11.866068840026855 + ], + [ + "▁(4)", + -11.866105079650879 + ], + [ + "▁HO", + -11.866107940673828 + ], + [ + "▁Neil", + -11.866374015808105 + ], + [ + "▁imperative", + -11.866399765014648 + ], + [ + "gus", + -11.86651611328125 + ], + [ + "▁Juan", + -11.866521835327148 + ], + [ + "▁Nan", + -11.866549491882324 + ], + [ + "▁Finish", + -11.866612434387207 + ], + [ + "▁coalition", + -11.866728782653809 + ], + [ + "▁indigenous", + -11.866745948791504 + ], + [ + "girl", + -11.86698055267334 + ], + [ + "▁Finland", + -11.867035865783691 + ], + [ + "▁acquiring", + -11.86709213256836 + ], + [ + "▁nowadays", + -11.867122650146484 + ], + [ + "location", + -11.867158889770508 + ], + [ + "▁united", + -11.867358207702637 + ], + [ + "▁vivid", + -11.867402076721191 + ], + [ + "jur", + -11.867480278015137 + ], + [ + "ologists", + -11.86760139465332 + ], + [ + "empt", + -11.867801666259766 + ], + [ + "▁Argentina", + -11.867870330810547 + ], + [ + "▁Membership", + -11.86787223815918 + ], + [ + "▁capturing", + -11.867944717407227 + ], + [ + "▁Fix", + -11.868268966674805 + ], + [ + "▁Psychology", + -11.868717193603516 + ], + [ + "▁NT", + -11.868819236755371 + ], + [ + "▁Bai", + -11.868950843811035 + ], + [ + "▁BB", + -11.869033813476562 + ], + [ + "▁diagnose", + -11.869462966918945 + ], + [ + "zie", + -11.8695068359375 + ], + [ + "▁imagery", + -11.869722366333008 + ], + [ + "▁displaying", + -11.869976043701172 + ], + [ + "BU", + -11.870019912719727 + ], + [ + "▁performers", + -11.870065689086914 + ], + [ + "cultural", + -11.870137214660645 + ], + [ + "▁stirring", + -11.870179176330566 + ], + [ + "▁Dinner", + -11.870367050170898 + ], + [ + "▁clinics", + -11.870603561401367 + ], + [ + "▁skiing", + -11.870611190795898 + ], + [ + "alism", + -11.870744705200195 + ], + [ + "▁Shot", + -11.870805740356445 + ], + [ + "▁detector", + -11.870821952819824 + ], + [ + "▁deduction", + -11.87099838256836 + ], + [ + "west", + -11.871356010437012 + ], + [ + "án", + -11.871418952941895 + ], + [ + "saw", + -11.871469497680664 + ], + [ + "▁ceilings", + -11.871488571166992 + ], + [ + "▁youngest", + -11.871646881103516 + ], + [ + "▁belonging", + -11.871703147888184 + ], + [ + "▁flex", + -11.871964454650879 + ], + [ + "▁monitored", + -11.87215518951416 + ], + [ + "▁eliminated", + -11.872159957885742 + ], + [ + "▁regimen", + -11.872184753417969 + ], + [ + "▁Industries", + -11.872208595275879 + ], + [ + "wave", + -11.872241973876953 + ], + [ + "UC", + -11.872594833374023 + ], + [ + "▁Murphy", + -11.872687339782715 + ], + [ + "▁Teachers", + -11.872758865356445 + ], + [ + "▁spinal", + -11.87277603149414 + ], + [ + "▁Allah", + -11.873172760009766 + ], + [ + "▁Receive", + -11.873177528381348 + ], + [ + "▁hardest", + -11.873306274414062 + ], + [ + "▁Cruz", + -11.873567581176758 + ], + [ + "▁Score", + -11.873719215393066 + ], + [ + "▁genius", + -11.873719215393066 + ], + [ + "▁Healthy", + -11.873810768127441 + ], + [ + "▁Roof", + -11.873839378356934 + ], + [ + "▁с", + -11.87399673461914 + ], + [ + "▁GI", + -11.874127388000488 + ], + [ + "NL", + -11.874232292175293 + ], + [ + "phi", + -11.874302864074707 + ], + [ + "---", + -11.87430477142334 + ], + [ + "▁allowance", + -11.874608993530273 + ], + [ + "▁Rhode", + -11.874627113342285 + ], + [ + "▁Shadow", + -11.874669075012207 + ], + [ + "▁Regular", + -11.87474536895752 + ], + [ + "▁drainage", + -11.87486457824707 + ], + [ + "▁amateur", + -11.875086784362793 + ], + [ + "▁feast", + -11.875102043151855 + ], + [ + "Bu", + -11.875154495239258 + ], + [ + "2015", + -11.875223159790039 + ], + [ + "▁Expect", + -11.875238418579102 + ], + [ + "▁hail", + -11.875308990478516 + ], + [ + "▁clarify", + -11.875380516052246 + ], + [ + "▁Hudson", + -11.875516891479492 + ], + [ + "▁fax", + -11.875581741333008 + ], + [ + "▁posture", + -11.87563705444336 + ], + [ + "▁Message", + -11.875653266906738 + ], + [ + "▁IM", + -11.875673294067383 + ], + [ + "kha", + -11.8756742477417 + ], + [ + "▁Oz", + -11.875689506530762 + ], + [ + "▁Expo", + -11.875703811645508 + ], + [ + "▁professionalism", + -11.87584400177002 + ], + [ + "▁raises", + -11.87591552734375 + ], + [ + "bab", + -11.875927925109863 + ], + [ + "Can", + -11.875944137573242 + ], + [ + "▁McDonald", + -11.876097679138184 + ], + [ + "glass", + -11.876321792602539 + ], + [ + "▁RI", + -11.876399040222168 + ], + [ + "▁rat", + -11.876461029052734 + ], + [ + "▁Wire", + -11.876470565795898 + ], + [ + "▁DB", + -11.87647819519043 + ], + [ + "▁4)", + -11.876516342163086 + ], + [ + "▁curb", + -11.8765287399292 + ], + [ + "lap", + -11.876595497131348 + ], + [ + "8,000", + -11.876605033874512 + ], + [ + "▁shoppers", + -11.876623153686523 + ], + [ + "▁activists", + -11.876981735229492 + ], + [ + "▁Dual", + -11.877038955688477 + ], + [ + "▁grandfather", + -11.877076148986816 + ], + [ + "▁Gall", + -11.877131462097168 + ], + [ + "udge", + -11.877223014831543 + ], + [ + "▁beverages", + -11.877399444580078 + ], + [ + "▁Testament", + -11.877448081970215 + ], + [ + "rab", + -11.877530097961426 + ], + [ + "▁expectation", + -11.877553939819336 + ], + [ + "▁Nine", + -11.877613067626953 + ], + [ + "▁interviewed", + -11.877713203430176 + ], + [ + "▁fade", + -11.878022193908691 + ], + [ + "▁yearly", + -11.878186225891113 + ], + [ + "▁Operation", + -11.878215789794922 + ], + [ + "▁Generation", + -11.87844181060791 + ], + [ + "▁flooding", + -11.878443717956543 + ], + [ + "▁assumptions", + -11.878470420837402 + ], + [ + "▁Jaw", + -11.878830909729004 + ], + [ + "▁Apparently", + -11.879097938537598 + ], + [ + "▁artisan", + -11.879133224487305 + ], + [ + "▁depot", + -11.879249572753906 + ], + [ + "но", + -11.879393577575684 + ], + [ + "▁Solution", + -11.879522323608398 + ], + [ + "▁Added", + -11.879769325256348 + ], + [ + "▁whatsoever", + -11.879974365234375 + ], + [ + "▁ar", + -11.880046844482422 + ], + [ + "▁Wallpaper", + -11.880064964294434 + ], + [ + "▁invaluable", + -11.880094528198242 + ], + [ + "▁Bern", + -11.880171775817871 + ], + [ + "▁Similar", + -11.880284309387207 + ], + [ + "▁Hebrew", + -11.880290985107422 + ], + [ + "▁Introduction", + -11.880382537841797 + ], + [ + "▁Stanley", + -11.880455017089844 + ], + [ + "ester", + -11.880553245544434 + ], + [ + "▁6:", + -11.880800247192383 + ], + [ + "▁Engineer", + -11.8808012008667 + ], + [ + "▁Concrete", + -11.880865097045898 + ], + [ + "▁forty", + -11.881032943725586 + ], + [ + "▁Woman", + -11.881098747253418 + ], + [ + "▁Reform", + -11.881336212158203 + ], + [ + "▁adore", + -11.881402969360352 + ], + [ + "▁mentally", + -11.881651878356934 + ], + [ + "▁yeast", + -11.881790161132812 + ], + [ + "eter", + -11.881935119628906 + ], + [ + "▁drone", + -11.882086753845215 + ], + [ + "▁shocked", + -11.882306098937988 + ], + [ + "▁hats", + -11.882317543029785 + ], + [ + "▁breeding", + -11.88251781463623 + ], + [ + "paced", + -11.882730484008789 + ], + [ + "▁1940", + -11.882780075073242 + ], + [ + "▁Billy", + -11.882927894592285 + ], + [ + "▁foundations", + -11.883035659790039 + ], + [ + "edit", + -11.883173942565918 + ], + [ + "▁Whole", + -11.88320255279541 + ], + [ + "▁Pub", + -11.883243560791016 + ], + [ + "▁Butter", + -11.883244514465332 + ], + [ + "▁Nintendo", + -11.883308410644531 + ], + [ + "▁textbook", + -11.883367538452148 + ], + [ + "lion", + -11.883384704589844 + ], + [ + "lent", + -11.883415222167969 + ], + [ + "pod", + -11.883540153503418 + ], + [ + "▁norm", + -11.883688926696777 + ], + [ + "▁900", + -11.883907318115234 + ], + [ + "▁sore", + -11.884215354919434 + ], + [ + "GU", + -11.884289741516113 + ], + [ + "GH", + -11.884532928466797 + ], + [ + "-21", + -11.884695053100586 + ], + [ + "▁medieval", + -11.884775161743164 + ], + [ + "▁TD", + -11.884807586669922 + ], + [ + "▁creature", + -11.885043144226074 + ], + [ + "resistant", + -11.885122299194336 + ], + [ + "▁Rub", + -11.885160446166992 + ], + [ + "▁angles", + -11.885279655456543 + ], + [ + "▁inspirational", + -11.885354042053223 + ], + [ + "▁Hampshire", + -11.88545036315918 + ], + [ + "▁sur", + -11.885468482971191 + ], + [ + "▁exc", + -11.885787963867188 + ], + [ + "▁remainder", + -11.88612174987793 + ], + [ + "▁Nurse", + -11.88617992401123 + ], + [ + "▁virtue", + -11.88630199432373 + ], + [ + "▁Evans", + -11.886323928833008 + ], + [ + "▁Sponsor", + -11.886420249938965 + ], + [ + "▁architects", + -11.88659381866455 + ], + [ + "▁disclosed", + -11.886727333068848 + ], + [ + "▁torque", + -11.886951446533203 + ], + [ + "▁Scholarship", + -11.887009620666504 + ], + [ + "▁Benjamin", + -11.887065887451172 + ], + [ + "▁bespoke", + -11.887218475341797 + ], + [ + "▁rabbit", + -11.88724422454834 + ], + [ + "▁Processing", + -11.88740348815918 + ], + [ + "▁spur", + -11.887423515319824 + ], + [ + "▁vaccine", + -11.887641906738281 + ], + [ + "▁strengthening", + -11.887939453125 + ], + [ + "▁historian", + -11.887983322143555 + ], + [ + "▁surround", + -11.88798713684082 + ], + [ + "▁wow", + -11.887988090515137 + ], + [ + "cons", + -11.888009071350098 + ], + [ + "look", + -11.888228416442871 + ], + [ + "Spec", + -11.888532638549805 + ], + [ + "▁modular", + -11.888566970825195 + ], + [ + "written", + -11.888586044311523 + ], + [ + "1-1", + -11.888711929321289 + ], + [ + "▁$12", + -11.888725280761719 + ], + [ + "▁failures", + -11.888771057128906 + ], + [ + "▁reporter", + -11.888786315917969 + ], + [ + "▁Eu", + -11.888846397399902 + ], + [ + "residing", + -11.889041900634766 + ], + [ + "Day", + -11.88914966583252 + ], + [ + "allegedly", + -11.889169692993164 + ], + [ + "▁Laser", + -11.889334678649902 + ], + [ + "▁Doors", + -11.889379501342773 + ], + [ + "KA", + -11.889421463012695 + ], + [ + "▁whale", + -11.889436721801758 + ], + [ + "▁Ep", + -11.889556884765625 + ], + [ + "▁considerations", + -11.889632225036621 + ], + [ + "▁associates", + -11.889641761779785 + ], + [ + "▁timeless", + -11.88971996307373 + ], + [ + "▁Effective", + -11.88994312286377 + ], + [ + "▁Testing", + -11.889957427978516 + ], + [ + "▁Educational", + -11.890040397644043 + ], + [ + "▁attain", + -11.89005184173584 + ], + [ + "▁Queensland", + -11.890074729919434 + ], + [ + "gla", + -11.890107154846191 + ], + [ + "CF", + -11.890237808227539 + ], + [ + "▁Fabric", + -11.89028549194336 + ], + [ + "▁Iranian", + -11.890894889831543 + ], + [ + "Why", + -11.890973091125488 + ], + [ + "▁decorate", + -11.89098072052002 + ], + [ + "▁OC", + -11.891000747680664 + ], + [ + "▁systematic", + -11.891020774841309 + ], + [ + "▁Pastor", + -11.89116096496582 + ], + [ + "▁mayor", + -11.891218185424805 + ], + [ + "▁wellbeing", + -11.891267776489258 + ], + [ + "▁inherent", + -11.891523361206055 + ], + [ + "allow", + -11.891762733459473 + ], + [ + "root", + -11.892038345336914 + ], + [ + "▁furnished", + -11.892106056213379 + ], + [ + "▁calculations", + -11.892205238342285 + ], + [ + "▁Stamp", + -11.892311096191406 + ], + [ + "▁beginner", + -11.892321586608887 + ], + [ + "HO", + -11.89233684539795 + ], + [ + "▁logs", + -11.892550468444824 + ], + [ + "▁exhibitions", + -11.892695426940918 + ], + [ + "shed", + -11.892742156982422 + ], + [ + "/16", + -11.892773628234863 + ], + [ + "public", + -11.892836570739746 + ], + [ + "bru", + -11.892919540405273 + ], + [ + "▁Pain", + -11.89293384552002 + ], + [ + "▁ridiculous", + -11.892964363098145 + ], + [ + "▁swa", + -11.89303207397461 + ], + [ + "▁unclear", + -11.893239974975586 + ], + [ + "▁scholarships", + -11.893304824829102 + ], + [ + "▁geographical", + -11.893476486206055 + ], + [ + "▁Dep", + -11.89350700378418 + ], + [ + "▁canada", + -11.893675804138184 + ], + [ + "▁sensible", + -11.893795013427734 + ], + [ + "miss", + -11.893847465515137 + ], + [ + "uge", + -11.893951416015625 + ], + [ + "▁Plat", + -11.894095420837402 + ], + [ + "▁kicked", + -11.894259452819824 + ], + [ + "▁Leonard", + -11.894590377807617 + ], + [ + "business", + -11.894787788391113 + ], + [ + "▁builders", + -11.89481258392334 + ], + [ + "station", + -11.8948974609375 + ], + [ + "▁odor", + -11.895112037658691 + ], + [ + "▁Olympics", + -11.89512825012207 + ], + [ + "▁Andrea", + -11.895278930664062 + ], + [ + "2012", + -11.895313262939453 + ], + [ + "▁Kay", + -11.89544677734375 + ], + [ + "▁raid", + -11.895606994628906 + ], + [ + "▁acted", + -11.89562702178955 + ], + [ + "▁incoming", + -11.896231651306152 + ], + [ + "sided", + -11.89639949798584 + ], + [ + "▁behave", + -11.89648723602295 + ], + [ + "▁prophet", + -11.896546363830566 + ], + [ + "▁terrorism", + -11.896598815917969 + ], + [ + "▁Guests", + -11.896687507629395 + ], + [ + "LF", + -11.896772384643555 + ], + [ + "▁79", + -11.896940231323242 + ], + [ + "▁analyzing", + -11.896967887878418 + ], + [ + "▁axis", + -11.897055625915527 + ], + [ + "cine", + -11.897071838378906 + ], + [ + "him", + -11.89719009399414 + ], + [ + "▁pH", + -11.897273063659668 + ], + [ + "▁Relations", + -11.897308349609375 + ], + [ + "▁invisible", + -11.897503852844238 + ], + [ + "▁assortment", + -11.897562026977539 + ], + [ + "Originally", + -11.897771835327148 + ], + [ + "cycle", + -11.89779281616211 + ], + [ + "▁2005,", + -11.89786148071289 + ], + [ + "▁tubes", + -11.897974014282227 + ], + [ + "▁catalogue", + -11.897974967956543 + ], + [ + "▁prohibit", + -11.898313522338867 + ], + [ + "▁$30", + -11.898324966430664 + ], + [ + "eration", + -11.89854621887207 + ], + [ + "▁Champion", + -11.898575782775879 + ], + [ + "pil", + -11.89867115020752 + ], + [ + "rud", + -11.898736953735352 + ], + [ + "▁Zero", + -11.898856163024902 + ], + [ + "FM", + -11.89893627166748 + ], + [ + "▁Yi", + -11.898957252502441 + ], + [ + "▁16.", + -11.898998260498047 + ], + [ + "▁blown", + -11.899024963378906 + ], + [ + "child", + -11.899128913879395 + ], + [ + "▁Examples", + -11.899223327636719 + ], + [ + "▁highlighting", + -11.899260520935059 + ], + [ + "▁sta", + -11.89933967590332 + ], + [ + "GR", + -11.899362564086914 + ], + [ + "▁Pl", + -11.899521827697754 + ], + [ + "Love", + -11.899778366088867 + ], + [ + "▁hinge", + -11.89981460571289 + ], + [ + "▁suppress", + -11.899843215942383 + ], + [ + "▁spotlight", + -11.899872779846191 + ], + [ + "▁Fruit", + -11.899882316589355 + ], + [ + "grass", + -11.89992618560791 + ], + [ + "▁Copper", + -11.900222778320312 + ], + [ + "break", + -11.900236129760742 + ], + [ + "▁vocabulary", + -11.900270462036133 + ], + [ + "lessly", + -11.900447845458984 + ], + [ + "▁wheelchair", + -11.900476455688477 + ], + [ + "▁awkward", + -11.900729179382324 + ], + [ + "▁Lights", + -11.900742530822754 + ], + [ + "ensi", + -11.900774955749512 + ], + [ + "config", + -11.900871276855469 + ], + [ + "▁furnishings", + -11.900979042053223 + ], + [ + "▁ugly", + -11.900984764099121 + ], + [ + "▁donor", + -11.901071548461914 + ], + [ + "▁compliant", + -11.901298522949219 + ], + [ + "▁mal", + -11.90138053894043 + ], + [ + "▁centered", + -11.901472091674805 + ], + [ + "Sta", + -11.90151596069336 + ], + [ + "▁Conservation", + -11.901552200317383 + ], + [ + "▁commented", + -11.901583671569824 + ], + [ + "▁Ashley", + -11.901825904846191 + ], + [ + "▁searched", + -11.902091979980469 + ], + [ + "▁Hurricane", + -11.902238845825195 + ], + [ + "tek", + -11.902270317077637 + ], + [ + "▁Elite", + -11.902324676513672 + ], + [ + "second", + -11.902386665344238 + ], + [ + "▁1976", + -11.902403831481934 + ], + [ + "▁devastating", + -11.902567863464355 + ], + [ + "▁Popular", + -11.902767181396484 + ], + [ + "▁india", + -11.902832984924316 + ], + [ + "▁touchdown", + -11.903082847595215 + ], + [ + "▁Horn", + -11.903181076049805 + ], + [ + "▁payday", + -11.903440475463867 + ], + [ + "▁Scientific", + -11.90355396270752 + ], + [ + "ée", + -11.903783798217773 + ], + [ + "▁Mental", + -11.903942108154297 + ], + [ + "▁Wildlife", + -11.904128074645996 + ], + [ + "▁mate", + -11.90416431427002 + ], + [ + "▁overlook", + -11.904260635375977 + ], + [ + "▁scanner", + -11.904261589050293 + ], + [ + "▁alerts", + -11.90426254272461 + ], + [ + "▁molecules", + -11.904322624206543 + ], + [ + "▁amino", + -11.904460906982422 + ], + [ + "▁Flower", + -11.904494285583496 + ], + [ + "▁unprecedented", + -11.904510498046875 + ], + [ + "quir", + -11.90456771850586 + ], + [ + "▁logging", + -11.904847145080566 + ], + [ + "▁Sel", + -11.904950141906738 + ], + [ + "▁Lost", + -11.904970169067383 + ], + [ + "▁1.0", + -11.905086517333984 + ], + [ + "▁Oliver", + -11.905232429504395 + ], + [ + "flew", + -11.905255317687988 + ], + [ + "▁exceptionally", + -11.905296325683594 + ], + [ + "ckle", + -11.905339241027832 + ], + [ + "▁MM", + -11.905385971069336 + ], + [ + "▁Jefferson", + -11.905488014221191 + ], + [ + "▁balloon", + -11.905620574951172 + ], + [ + "▁Grill", + -11.90588665008545 + ], + [ + "▁Hire", + -11.906115531921387 + ], + [ + "▁bitcoin", + -11.906344413757324 + ], + [ + "▁thru", + -11.906351089477539 + ], + [ + "horn", + -11.906359672546387 + ], + [ + "▁startups", + -11.90638256072998 + ], + [ + "▁intriguing", + -11.906457901000977 + ], + [ + "▁Manufacturing", + -11.906488418579102 + ], + [ + "▁assemble", + -11.90651798248291 + ], + [ + "▁pod", + -11.906645774841309 + ], + [ + "▁stair", + -11.906968116760254 + ], + [ + "▁Database", + -11.90699291229248 + ], + [ + "▁borrow", + -11.907013893127441 + ], + [ + "CTION", + -11.907060623168945 + ], + [ + "▁exports", + -11.907076835632324 + ], + [ + "▁preservation", + -11.90730094909668 + ], + [ + "▁forcing", + -11.907391548156738 + ], + [ + "ddle", + -11.907466888427734 + ], + [ + "▁2004.", + -11.907564163208008 + ], + [ + "▁selections", + -11.9075927734375 + ], + [ + "▁brakes", + -11.907682418823242 + ], + [ + "▁Yesterday", + -11.907748222351074 + ], + [ + "▁phases", + -11.907814979553223 + ], + [ + "2018.", + -11.907819747924805 + ], + [ + "▁sausage", + -11.907868385314941 + ], + [ + "▁heels", + -11.908029556274414 + ], + [ + "▁Hum", + -11.90804672241211 + ], + [ + "▁await", + -11.90807056427002 + ], + [ + "though", + -11.908188819885254 + ], + [ + "▁Jamie", + -11.908665657043457 + ], + [ + "▁Secure", + -11.90870475769043 + ], + [ + "▁nonetheless", + -11.908740043640137 + ], + [ + "▁charitable", + -11.90880012512207 + ], + [ + "▁lifted", + -11.908848762512207 + ], + [ + "▁replicate", + -11.908892631530762 + ], + [ + "▁inserted", + -11.909126281738281 + ], + [ + "▁reflecting", + -11.909255027770996 + ], + [ + "▁1975", + -11.909259796142578 + ], + [ + "both", + -11.909268379211426 + ], + [ + "▁bandwidth", + -11.909273147583008 + ], + [ + "▁ACT", + -11.909278869628906 + ], + [ + "although", + -11.909333229064941 + ], + [ + "▁Knowing", + -11.909383773803711 + ], + [ + "Pre", + -11.909582138061523 + ], + [ + "▁stroll", + -11.909852981567383 + ], + [ + "erton", + -11.909862518310547 + ], + [ + "▁wonders", + -11.910676002502441 + ], + [ + "▁Consulting", + -11.910876274108887 + ], + [ + "▁Election", + -11.910907745361328 + ], + [ + "▁Leg", + -11.911055564880371 + ], + [ + "▁Delaware", + -11.911118507385254 + ], + [ + "▁>>", + -11.911211013793945 + ], + [ + "▁Cameron", + -11.911272048950195 + ], + [ + "▁seminars", + -11.911376953125 + ], + [ + "▁initiate", + -11.91164779663086 + ], + [ + "achi", + -11.911760330200195 + ], + [ + "▁tragic", + -11.91181468963623 + ], + [ + "▁distress", + -11.911881446838379 + ], + [ + "▁attitudes", + -11.912090301513672 + ], + [ + "▁Abstract", + -11.912374496459961 + ], + [ + "▁Stick", + -11.912389755249023 + ], + [ + "mag", + -11.912430763244629 + ], + [ + "▁Example", + -11.912508964538574 + ], + [ + "▁Perry", + -11.912516593933105 + ], + [ + "▁Haven", + -11.912549018859863 + ], + [ + "abb", + -11.912566184997559 + ], + [ + "▁triggered", + -11.912609100341797 + ], + [ + "▁engineered", + -11.912632942199707 + ], + [ + "▁firing", + -11.912877082824707 + ], + [ + "▁guardian", + -11.912928581237793 + ], + [ + "iver", + -11.912960052490234 + ], + [ + "▁Tiger", + -11.913151741027832 + ], + [ + "▁logged", + -11.91321849822998 + ], + [ + "▁invites", + -11.91326904296875 + ], + [ + "▁grammar", + -11.913537979125977 + ], + [ + "▁monitors", + -11.91355037689209 + ], + [ + "▁sodium", + -11.913687705993652 + ], + [ + "▁shrimp", + -11.913983345031738 + ], + [ + "▁wishing", + -11.914020538330078 + ], + [ + "▁Vermont", + -11.914332389831543 + ], + [ + "▁sticking", + -11.91438102722168 + ], + [ + "▁Memory", + -11.914406776428223 + ], + [ + "▁Bun", + -11.914546012878418 + ], + [ + "▁upside", + -11.914551734924316 + ], + [ + "chlor", + -11.914679527282715 + ], + [ + "▁Admission", + -11.914704322814941 + ], + [ + "▁pinch", + -11.914896011352539 + ], + [ + "▁cutter", + -11.914945602416992 + ], + [ + "▁encryption", + -11.915225982666016 + ], + [ + "▁60%", + -11.91537094116211 + ], + [ + "▁societies", + -11.915494918823242 + ], + [ + "▁threatening", + -11.915617942810059 + ], + [ + "▁introduces", + -11.915718078613281 + ], + [ + "▁melted", + -11.916114807128906 + ], + [ + "lev", + -11.916272163391113 + ], + [ + "▁coral", + -11.91637897491455 + ], + [ + "control", + -11.916402816772461 + ], + [ + "▁allergies", + -11.916403770446777 + ], + [ + "▁nightmare", + -11.91640567779541 + ], + [ + "owing", + -11.91647720336914 + ], + [ + "▁Excellence", + -11.916523933410645 + ], + [ + "▁obesity", + -11.916523933410645 + ], + [ + "fly", + -11.91652774810791 + ], + [ + "▁trademarks", + -11.916529655456543 + ], + [ + "country", + -11.91690731048584 + ], + [ + "▁Hindu", + -11.916932106018066 + ], + [ + "Figure", + -11.91696548461914 + ], + [ + "pdf", + -11.917027473449707 + ], + [ + "▁celebrations", + -11.917217254638672 + ], + [ + "▁UT", + -11.917292594909668 + ], + [ + "▁Que", + -11.917478561401367 + ], + [ + "▁Root", + -11.917590141296387 + ], + [ + "EB", + -11.917619705200195 + ], + [ + "camp", + -11.917634010314941 + ], + [ + "▁token", + -11.917861938476562 + ], + [ + "▁pixel", + -11.917880058288574 + ], + [ + "stand", + -11.917986869812012 + ], + [ + "▁underway", + -11.918009757995605 + ], + [ + "▁soften", + -11.918155670166016 + ], + [ + "▁hormone", + -11.918169975280762 + ], + [ + "▁Resolution", + -11.918230056762695 + ], + [ + "▁recipients", + -11.918380737304688 + ], + [ + "001", + -11.918512344360352 + ], + [ + "▁blended", + -11.918603897094727 + ], + [ + "▁whisk", + -11.919675827026367 + ], + [ + "▁apparatus", + -11.919709205627441 + ], + [ + "▁decides", + -11.919975280761719 + ], + [ + "▁Wikipedia", + -11.919983863830566 + ], + [ + "lut", + -11.920263290405273 + ], + [ + "▁bypass", + -11.920281410217285 + ], + [ + "▁Woods", + -11.920368194580078 + ], + [ + "▁feasible", + -11.920438766479492 + ], + [ + "▁Mile", + -11.920499801635742 + ], + [ + "▁CRM", + -11.92056941986084 + ], + [ + "ider", + -11.92057991027832 + ], + [ + "▁roulette", + -11.920591354370117 + ], + [ + "▁Ace", + -11.920832633972168 + ], + [ + "▁Seed", + -11.920843124389648 + ], + [ + "▁Lib", + -11.920929908752441 + ], + [ + "▁COM", + -11.920937538146973 + ], + [ + "▁Remote", + -11.920951843261719 + ], + [ + "▁Uber", + -11.9210205078125 + ], + [ + "▁AF", + -11.92110824584961 + ], + [ + "▁embark", + -11.921151161193848 + ], + [ + "▁allegations", + -11.92137336730957 + ], + [ + "▁prediction", + -11.921402931213379 + ], + [ + "▁cousin", + -11.921441078186035 + ], + [ + "▁Chase", + -11.921562194824219 + ], + [ + "▁worrying", + -11.921597480773926 + ], + [ + "▁textures", + -11.921781539916992 + ], + [ + "▁Pie", + -11.921915054321289 + ], + [ + "▁Traffic", + -11.921960830688477 + ], + [ + "yle", + -11.921991348266602 + ], + [ + "▁costumes", + -11.92225170135498 + ], + [ + "El", + -11.922294616699219 + ], + [ + "nium", + -11.92234992980957 + ], + [ + "▁91", + -11.922374725341797 + ], + [ + "FD", + -11.922476768493652 + ], + [ + "▁Lim", + -11.922476768493652 + ], + [ + "▁Fly", + -11.922554969787598 + ], + [ + "Not", + -11.922612190246582 + ], + [ + "dow", + -11.92265510559082 + ], + [ + "Thank", + -11.922719955444336 + ], + [ + "▁MN", + -11.922731399536133 + ], + [ + "▁suites", + -11.922759056091309 + ], + [ + "inner", + -11.922852516174316 + ], + [ + "▁Beer", + -11.922876358032227 + ], + [ + "▁JA", + -11.922924995422363 + ], + [ + "▁soak", + -11.923267364501953 + ], + [ + "▁uniquely", + -11.923314094543457 + ], + [ + "▁sweater", + -11.923377990722656 + ], + [ + "▁spider", + -11.923556327819824 + ], + [ + "generation", + -11.923887252807617 + ], + [ + "▁craving", + -11.924005508422852 + ], + [ + "▁Tourism", + -11.924312591552734 + ], + [ + "▁Term", + -11.924351692199707 + ], + [ + "▁uncle", + -11.924396514892578 + ], + [ + "▁EUR", + -11.924826622009277 + ], + [ + "▁EL", + -11.924996376037598 + ], + [ + "BER", + -11.925065994262695 + ], + [ + "▁clutch", + -11.925232887268066 + ], + [ + "▁peppers", + -11.925413131713867 + ], + [ + "▁foremost", + -11.925435066223145 + ], + [ + "▁payroll", + -11.925493240356445 + ], + [ + "▁widget", + -11.92556095123291 + ], + [ + "call", + -11.925779342651367 + ], + [ + "▁quarterly", + -11.925853729248047 + ], + [ + "▁Lei", + -11.925857543945312 + ], + [ + "EU", + -11.92591667175293 + ], + [ + "▁elastic", + -11.925971031188965 + ], + [ + "▁APP", + -11.925997734069824 + ], + [ + "▁mortality", + -11.926112174987793 + ], + [ + "TB", + -11.926122665405273 + ], + [ + "▁Cuba", + -11.926250457763672 + ], + [ + "▁Parent", + -11.926318168640137 + ], + [ + "motion", + -11.926389694213867 + ], + [ + "▁withstand", + -11.926641464233398 + ], + [ + "Link", + -11.926661491394043 + ], + [ + "half", + -11.926703453063965 + ], + [ + "▁Medium", + -11.926713943481445 + ], + [ + "▁fountain", + -11.926876068115234 + ], + [ + "▁broadband", + -11.92687702178955 + ], + [ + "▁multitude", + -11.92687702178955 + ], + [ + "▁fixture", + -11.927294731140137 + ], + [ + "▁freshly", + -11.927319526672363 + ], + [ + "▁allocated", + -11.927349090576172 + ], + [ + "▁airplane", + -11.92739200592041 + ], + [ + "cop", + -11.927698135375977 + ], + [ + "▁Colour", + -11.927770614624023 + ], + [ + "stain", + -11.927791595458984 + ], + [ + "▁100,000", + -11.927842140197754 + ], + [ + "▁Mills", + -11.927900314331055 + ], + [ + "▁exchanges", + -11.927910804748535 + ], + [ + "sale", + -11.927935600280762 + ], + [ + "claiming", + -11.928027153015137 + ], + [ + "▁Launch", + -11.928094863891602 + ], + [ + "▁Historic", + -11.928115844726562 + ], + [ + "▁freezing", + -11.92821216583252 + ], + [ + "ncies", + -11.928285598754883 + ], + [ + "▁Lie", + -11.928434371948242 + ], + [ + "▁IoT", + -11.928524017333984 + ], + [ + "dex", + -11.928559303283691 + ], + [ + "▁Milk", + -11.928565979003906 + ], + [ + "saving", + -11.9287691116333 + ], + [ + "feed", + -11.928927421569824 + ], + [ + "▁Kr", + -11.929004669189453 + ], + [ + "▁SR", + -11.929241180419922 + ], + [ + "▁interfere", + -11.929274559020996 + ], + [ + "hog", + -11.929610252380371 + ], + [ + "▁unsure", + -11.92963695526123 + ], + [ + "▁Movement", + -11.929752349853516 + ], + [ + "plat", + -11.93019962310791 + ], + [ + "▁immense", + -11.930274963378906 + ], + [ + "▁persist", + -11.930363655090332 + ], + [ + "▁Fer", + -11.930521011352539 + ], + [ + "▁Mol", + -11.930590629577637 + ], + [ + "▁cardiovascular", + -11.930649757385254 + ], + [ + "▁Burn", + -11.930895805358887 + ], + [ + "▁darker", + -11.930938720703125 + ], + [ + "MV", + -11.931044578552246 + ], + [ + "▁unforgettable", + -11.931073188781738 + ], + [ + "▁topping", + -11.931110382080078 + ], + [ + "▁pledge", + -11.9312105178833 + ], + [ + "enna", + -11.931304931640625 + ], + [ + "Har", + -11.93130874633789 + ], + [ + "▁Arc", + -11.931324005126953 + ], + [ + "▁gl", + -11.931403160095215 + ], + [ + "”).", + -11.931426048278809 + ], + [ + "▁equality", + -11.931478500366211 + ], + [ + "▁abortion", + -11.931583404541016 + ], + [ + "▁sticky", + -11.931610107421875 + ], + [ + "▁disappointment", + -11.93162727355957 + ], + [ + "▁renew", + -11.931682586669922 + ], + [ + "▁cubic", + -11.931913375854492 + ], + [ + "▁Entry", + -11.931998252868652 + ], + [ + "agh", + -11.932016372680664 + ], + [ + "▁governing", + -11.932184219360352 + ], + [ + "proving", + -11.932403564453125 + ], + [ + "▁Bass", + -11.93251895904541 + ], + [ + "▁Hotels", + -11.932695388793945 + ], + [ + "ogy", + -11.932724952697754 + ], + [ + "▁Principal", + -11.932738304138184 + ], + [ + "▁trapped", + -11.932880401611328 + ], + [ + "▁hum", + -11.932958602905273 + ], + [ + "▁Blend", + -11.932968139648438 + ], + [ + "▁knees", + -11.93308162689209 + ], + [ + "▁Ferr", + -11.93331241607666 + ], + [ + "trade", + -11.93358325958252 + ], + [ + "GM", + -11.933642387390137 + ], + [ + "▁labeled", + -11.93364429473877 + ], + [ + "▁favorable", + -11.933659553527832 + ], + [ + "EO", + -11.93401050567627 + ], + [ + "loss", + -11.934178352355957 + ], + [ + "/5", + -11.934399604797363 + ], + [ + "inator", + -11.93442153930664 + ], + [ + "▁spelling", + -11.93452262878418 + ], + [ + "▁groove", + -11.934569358825684 + ], + [ + "kit", + -11.934657096862793 + ], + [ + "▁Plaza", + -11.93468952178955 + ], + [ + "▁Carr", + -11.934733390808105 + ], + [ + "tory", + -11.934940338134766 + ], + [ + "▁Photoshop", + -11.934986114501953 + ], + [ + "▁sponsorship", + -11.93518352508545 + ], + [ + "medi", + -11.935272216796875 + ], + [ + "volv", + -11.935372352600098 + ], + [ + "▁tilt", + -11.935546875 + ], + [ + "kom", + -11.935674667358398 + ], + [ + "▁chord", + -11.935772895812988 + ], + [ + "▁respiratory", + -11.935791015625 + ], + [ + "▁revealing", + -11.935833930969238 + ], + [ + "▁Ny", + -11.935989379882812 + ], + [ + "cite", + -11.936386108398438 + ], + [ + "▁Lynn", + -11.936750411987305 + ], + [ + "▁Neo", + -11.936820030212402 + ], + [ + "BT", + -11.936895370483398 + ], + [ + "UX", + -11.936980247497559 + ], + [ + "▁Athletic", + -11.936995506286621 + ], + [ + "▁implied", + -11.937027931213379 + ], + [ + "▁Revenue", + -11.937121391296387 + ], + [ + "▁Abraham", + -11.937305450439453 + ], + [ + "▁Grab", + -11.937411308288574 + ], + [ + "▁neglect", + -11.93754768371582 + ], + [ + "▁Tag", + -11.937747955322266 + ], + [ + "▁therapies", + -11.937989234924316 + ], + [ + "▁Pas", + -11.938335418701172 + ], + [ + "NB", + -11.938465118408203 + ], + [ + "▁steer", + -11.938684463500977 + ], + [ + "▁excluded", + -11.938854217529297 + ], + [ + "▁Tyler", + -11.93889045715332 + ], + [ + "left", + -11.938941955566406 + ], + [ + "rap", + -11.939055442810059 + ], + [ + "▁exemption", + -11.939192771911621 + ], + [ + "▁candles", + -11.939213752746582 + ], + [ + "▁Isle", + -11.939226150512695 + ], + [ + "bach", + -11.939350128173828 + ], + [ + "▁0.1", + -11.939535140991211 + ], + [ + "▁synthesis", + -11.939541816711426 + ], + [ + "▁Domain", + -11.939620971679688 + ], + [ + "▁doctrine", + -11.939658164978027 + ], + [ + "▁asthma", + -11.939942359924316 + ], + [ + "▁licenses", + -11.939962387084961 + ], + [ + "▁Astro", + -11.939973831176758 + ], + [ + "▁intact", + -11.93997573852539 + ], + [ + "▁Sm", + -11.94014835357666 + ], + [ + "Ed", + -11.940184593200684 + ], + [ + "▁cooperative", + -11.940199851989746 + ], + [ + "lator", + -11.940290451049805 + ], + [ + "▁beaten", + -11.940871238708496 + ], + [ + "▁Sho", + -11.940935134887695 + ], + [ + "count", + -11.940999984741211 + ], + [ + "▁Champions", + -11.941202163696289 + ], + [ + "▁Dear", + -11.941211700439453 + ], + [ + "▁installment", + -11.941363334655762 + ], + [ + "▁tragedy", + -11.941426277160645 + ], + [ + "▁intricate", + -11.941492080688477 + ], + [ + "/19", + -11.941550254821777 + ], + [ + "▁euro", + -11.94161319732666 + ], + [ + "▁87", + -11.941645622253418 + ], + [ + "▁spokesman", + -11.941696166992188 + ], + [ + "▁Kai", + -11.941737174987793 + ], + [ + "▁warn", + -11.941737174987793 + ], + [ + "▁zoo", + -11.942410469055176 + ], + [ + "▁stretching", + -11.942437171936035 + ], + [ + "▁Gau", + -11.942503929138184 + ], + [ + "▁Commonwealth", + -11.942517280578613 + ], + [ + "selling", + -11.942523956298828 + ], + [ + "▁repaired", + -11.94266128540039 + ], + [ + "▁Matter", + -11.942959785461426 + ], + [ + "▁ecological", + -11.943065643310547 + ], + [ + "▁Income", + -11.943126678466797 + ], + [ + "▁vest", + -11.943449974060059 + ], + [ + "▁compost", + -11.94346809387207 + ], + [ + "▁exceptions", + -11.943594932556152 + ], + [ + "▁headline", + -11.943641662597656 + ], + [ + "▁Connection", + -11.943790435791016 + ], + [ + "▁vocals", + -11.943791389465332 + ], + [ + "▁1968", + -11.943849563598633 + ], + [ + "▁slope", + -11.943921089172363 + ], + [ + "▁83", + -11.944215774536133 + ], + [ + "soci", + -11.944416046142578 + ], + [ + "▁leftover", + -11.944722175598145 + ], + [ + "▁Pull", + -11.944747924804688 + ], + [ + "▁rendered", + -11.944860458374023 + ], + [ + "▁exclude", + -11.944931983947754 + ], + [ + "▁username", + -11.945026397705078 + ], + [ + "▁qui", + -11.945311546325684 + ], + [ + "▁Tat", + -11.945352554321289 + ], + [ + "▁touring", + -11.945455551147461 + ], + [ + "▁serum", + -11.945487022399902 + ], + [ + "hur", + -11.945651054382324 + ], + [ + "electric", + -11.945713996887207 + ], + [ + "yang", + -11.945842742919922 + ], + [ + "Regarding", + -11.94587230682373 + ], + [ + "▁Concert", + -11.946064949035645 + ], + [ + "▁Jar", + -11.946142196655273 + ], + [ + "HF", + -11.946173667907715 + ], + [ + "▁quietly", + -11.946216583251953 + ], + [ + "▁Dennis", + -11.94650650024414 + ], + [ + "▁Fame", + -11.946534156799316 + ], + [ + "▁useless", + -11.946757316589355 + ], + [ + "▁VAT", + -11.946824073791504 + ], + [ + "oka", + -11.947052955627441 + ], + [ + "content", + -11.947385787963867 + ], + [ + "struct", + -11.947470664978027 + ], + [ + "▁FAQ", + -11.94771671295166 + ], + [ + "▁aviation", + -11.947917938232422 + ], + [ + "▁Claim", + -11.948063850402832 + ], + [ + "▁brutal", + -11.94815444946289 + ], + [ + "▁Reports", + -11.948324203491211 + ], + [ + "▁Commons", + -11.948567390441895 + ], + [ + "▁chew", + -11.948606491088867 + ], + [ + "▁Programs", + -11.948610305786133 + ], + [ + "▁Calendar", + -11.948657989501953 + ], + [ + "▁shampoo", + -11.948657989501953 + ], + [ + "▁1973", + -11.94892406463623 + ], + [ + "cade", + -11.948990821838379 + ], + [ + "▁ONLY", + -11.949250221252441 + ], + [ + "▁hints", + -11.949271202087402 + ], + [ + "fox", + -11.9493408203125 + ], + [ + "▁decay", + -11.949358940124512 + ], + [ + "▁warrior", + -11.94943904876709 + ], + [ + "▁Import", + -11.949495315551758 + ], + [ + "▁ser", + -11.950201034545898 + ], + [ + "div", + -11.9502592086792 + ], + [ + "▁avocado", + -11.950347900390625 + ], + [ + "▁checklist", + -11.950611114501953 + ], + [ + "▁potent", + -11.950742721557617 + ], + [ + "▁stuffed", + -11.950873374938965 + ], + [ + "▁Glasgow", + -11.950881004333496 + ], + [ + "▁Tank", + -11.950895309448242 + ], + [ + "▁Vin", + -11.951029777526855 + ], + [ + "▁beast", + -11.951101303100586 + ], + [ + "▁subsidiary", + -11.951193809509277 + ], + [ + "▁pathways", + -11.951286315917969 + ], + [ + "▁hydrogen", + -11.95134449005127 + ], + [ + "▁socio", + -11.951444625854492 + ], + [ + "▁Veterans", + -11.951557159423828 + ], + [ + "▁doubled", + -11.951565742492676 + ], + [ + "▁Neither", + -11.95162296295166 + ], + [ + "▁myth", + -11.951653480529785 + ], + [ + "▁hazardous", + -11.951742172241211 + ], + [ + "▁quarterback", + -11.951775550842285 + ], + [ + "▁tutorials", + -11.95193099975586 + ], + [ + "watt", + -11.95200252532959 + ], + [ + "▁Walking", + -11.952016830444336 + ], + [ + "▁Than", + -11.952019691467285 + ], + [ + "VC", + -11.952062606811523 + ], + [ + "▁Lastly", + -11.952091217041016 + ], + [ + "▁fires", + -11.95217227935791 + ], + [ + "▁submissions", + -11.952280044555664 + ], + [ + "▁Oc", + -11.952309608459473 + ], + [ + "▁disappeared", + -11.952341079711914 + ], + [ + "▁tart", + -11.95240306854248 + ], + [ + "▁herbal", + -11.952637672424316 + ], + [ + "▁Opti", + -11.952696800231934 + ], + [ + "▁1972", + -11.95287799835205 + ], + [ + "▁sins", + -11.953207015991211 + ], + [ + "▁analog", + -11.953329086303711 + ], + [ + "▁800-", + -11.953418731689453 + ], + [ + "tance", + -11.953563690185547 + ], + [ + "▁Settings", + -11.95359992980957 + ], + [ + "▁robots", + -11.95361328125 + ], + [ + "BD", + -11.953641891479492 + ], + [ + "▁Monster", + -11.953642845153809 + ], + [ + "▁validation", + -11.953656196594238 + ], + [ + "▁elevator", + -11.953768730163574 + ], + [ + "sham", + -11.954022407531738 + ], + [ + "▁PU", + -11.954071998596191 + ], + [ + "lane", + -11.954085350036621 + ], + [ + "▁depict", + -11.95443344116211 + ], + [ + "▁competitor", + -11.95456314086914 + ], + [ + "▁stepping", + -11.954747200012207 + ], + [ + "bli", + -11.954952239990234 + ], + [ + "▁Owen", + -11.95500659942627 + ], + [ + "clude", + -11.955084800720215 + ], + [ + "izes", + -11.955144882202148 + ], + [ + "▁endeavor", + -11.955198287963867 + ], + [ + "▁Surgery", + -11.9552583694458 + ], + [ + "▁Broad", + -11.95526123046875 + ], + [ + "▁worthwhile", + -11.955269813537598 + ], + [ + "vocation", + -11.955564498901367 + ], + [ + "▁trek", + -11.955565452575684 + ], + [ + "byte", + -11.955595970153809 + ], + [ + "▁jersey", + -11.955608367919922 + ], + [ + "▁unity", + -11.955618858337402 + ], + [ + "▁accompany", + -11.95574951171875 + ], + [ + "▁grains", + -11.955802917480469 + ], + [ + "▁fulfilling", + -11.95598030090332 + ], + [ + "▁crushed", + -11.95605182647705 + ], + [ + "▁Directory", + -11.956116676330566 + ], + [ + "▁framed", + -11.956136703491211 + ], + [ + "▁Venture", + -11.956194877624512 + ], + [ + "▁recession", + -11.956291198730469 + ], + [ + "▁Jeremy", + -11.956413269042969 + ], + [ + "▁prevented", + -11.956847190856934 + ], + [ + "▁char", + -11.956856727600098 + ], + [ + "▁Tire", + -11.957054138183594 + ], + [ + "▁coloured", + -11.957193374633789 + ], + [ + "▁blades", + -11.9572114944458 + ], + [ + "▁Swa", + -11.95721435546875 + ], + [ + "▁terminate", + -11.957295417785645 + ], + [ + "▁cryptocurrency", + -11.957425117492676 + ], + [ + "▁dialog", + -11.95747184753418 + ], + [ + "▁1800", + -11.957536697387695 + ], + [ + "▁drought", + -11.95758056640625 + ], + [ + "▁trillion", + -11.95758056640625 + ], + [ + "Bar", + -11.958061218261719 + ], + [ + "▁compatibility", + -11.958063125610352 + ], + [ + "▁quotation", + -11.958065032958984 + ], + [ + "install", + -11.95807933807373 + ], + [ + "John", + -11.958096504211426 + ], + [ + "▁$200", + -11.958121299743652 + ], + [ + "▁salvation", + -11.958148002624512 + ], + [ + "Sadly", + -11.958150863647461 + ], + [ + "▁gravel", + -11.958300590515137 + ], + [ + "GT", + -11.95835018157959 + ], + [ + "▁focal", + -11.95847225189209 + ], + [ + "0°", + -11.958717346191406 + ], + [ + "iser", + -11.958722114562988 + ], + [ + "▁overlooked", + -11.958873748779297 + ], + [ + "▁banana", + -11.958884239196777 + ], + [ + "▁impose", + -11.958930015563965 + ], + [ + "tab", + -11.95897102355957 + ], + [ + "gmail", + -11.959019660949707 + ], + [ + "▁robotic", + -11.959630012512207 + ], + [ + "▁Watson", + -11.959755897521973 + ], + [ + "tang", + -11.959832191467285 + ], + [ + "▁scoop", + -11.95985221862793 + ], + [ + "▁HC", + -11.960033416748047 + ], + [ + "▁Shell", + -11.960040092468262 + ], + [ + "▁bamboo", + -11.960140228271484 + ], + [ + "▁showers", + -11.960314750671387 + ], + [ + "anny", + -11.96040153503418 + ], + [ + "▁bind", + -11.960509300231934 + ], + [ + "▁Blanc", + -11.96052074432373 + ], + [ + "▁Cru", + -11.960671424865723 + ], + [ + "▁herb", + -11.960773468017578 + ], + [ + "▁hygiene", + -11.960962295532227 + ], + [ + "▁revision", + -11.961165428161621 + ], + [ + "▁GL", + -11.961312294006348 + ], + [ + "▁pots", + -11.961402893066406 + ], + [ + "▁yields", + -11.961421966552734 + ], + [ + "▁Owner", + -11.961563110351562 + ], + [ + "▁Complex", + -11.96160888671875 + ], + [ + "▁bracket", + -11.961644172668457 + ], + [ + "ensor", + -11.961654663085938 + ], + [ + "inspired", + -11.961812973022461 + ], + [ + "▁sanctions", + -11.961904525756836 + ], + [ + "LB", + -11.96204948425293 + ], + [ + "▁uncover", + -11.96208381652832 + ], + [ + "▁Bug", + -11.962333679199219 + ], + [ + "(),", + -11.962397575378418 + ], + [ + "1000", + -11.962471008300781 + ], + [ + "eira", + -11.962677001953125 + ], + [ + "flat", + -11.962685585021973 + ], + [ + "▁Near", + -11.962686538696289 + ], + [ + "▁incurred", + -11.962745666503906 + ], + [ + "AX", + -11.962950706481934 + ], + [ + "breaking", + -11.962957382202148 + ], + [ + "▁triangle", + -11.963278770446777 + ], + [ + "▁Skills", + -11.963308334350586 + ], + [ + "▁Stars", + -11.963430404663086 + ], + [ + "▁plaque", + -11.96343994140625 + ], + [ + "MX", + -11.963460922241211 + ], + [ + "▁Kyle", + -11.963631629943848 + ], + [ + "▁electron", + -11.963775634765625 + ], + [ + "▁tract", + -11.96391487121582 + ], + [ + "raz", + -11.964093208312988 + ], + [ + "▁Raw", + -11.964120864868164 + ], + [ + "▁Latest", + -11.96415901184082 + ], + [ + "▁litter", + -11.964241981506348 + ], + [ + "0,", + -11.964383125305176 + ], + [ + "▁Grinding", + -11.964961051940918 + ], + [ + "▁organs", + -11.964999198913574 + ], + [ + "▁Bone", + -11.965025901794434 + ], + [ + "▁Former", + -11.965184211730957 + ], + [ + "▁privately", + -11.965389251708984 + ], + [ + "assi", + -11.965411186218262 + ], + [ + "tempo", + -11.965557098388672 + ], + [ + "▁Maker", + -11.965682983398438 + ], + [ + "▁VP", + -11.965845108032227 + ], + [ + "▁spreadsheet", + -11.9658842086792 + ], + [ + "▁Wish", + -11.966005325317383 + ], + [ + "▁Mineral", + -11.966049194335938 + ], + [ + "▁pill", + -11.966179847717285 + ], + [ + "▁woke", + -11.966352462768555 + ], + [ + "▁rebuild", + -11.966526985168457 + ], + [ + "▁variant", + -11.96656608581543 + ], + [ + "▁Stanford", + -11.966584205627441 + ], + [ + "▁notably", + -11.966687202453613 + ], + [ + "▁Bau", + -11.966848373413086 + ], + [ + "▁flagship", + -11.966870307922363 + ], + [ + "▁BUT", + -11.967018127441406 + ], + [ + "▁toddler", + -11.967260360717773 + ], + [ + "▁1969", + -11.967269897460938 + ], + [ + "▁MR", + -11.967351913452148 + ], + [ + "▁bored", + -11.967409133911133 + ], + [ + "AY", + -11.96751594543457 + ], + [ + "▁grilled", + -11.967535018920898 + ], + [ + "▁orbit", + -11.967657089233398 + ], + [ + "▁Discovery", + -11.967708587646484 + ], + [ + "▁reap", + -11.968104362487793 + ], + [ + "▁1977", + -11.968453407287598 + ], + [ + "▁enroll", + -11.968667030334473 + ], + [ + "length", + -11.968698501586914 + ], + [ + "▁detailing", + -11.968732833862305 + ], + [ + "contract", + -11.968839645385742 + ], + [ + "▁servicing", + -11.969038009643555 + ], + [ + "▁twitter", + -11.96908950805664 + ], + [ + "▁polite", + -11.969134330749512 + ], + [ + "UND", + -11.96943473815918 + ], + [ + "▁payable", + -11.969549179077148 + ], + [ + "▁CBS", + -11.969589233398438 + ], + [ + "▁Trial", + -11.96961784362793 + ], + [ + "▁Sec", + -11.96968936920166 + ], + [ + "▁Item", + -11.969705581665039 + ], + [ + "structure", + -11.96973705291748 + ], + [ + "▁customs", + -11.969944953918457 + ], + [ + "▁reforms", + -11.970049858093262 + ], + [ + "jet", + -11.970108985900879 + ], + [ + "▁generates", + -11.97018051147461 + ], + [ + "2.5", + -11.970335960388184 + ], + [ + "▁resorts", + -11.970467567443848 + ], + [ + "▁trendy", + -11.970516204833984 + ], + [ + "LAN", + -11.970521926879883 + ], + [ + "▁crying", + -11.970563888549805 + ], + [ + "▁TS", + -11.970624923706055 + ], + [ + "cas", + -11.970669746398926 + ], + [ + "▁Jump", + -11.970698356628418 + ], + [ + "▁cialis", + -11.970792770385742 + ], + [ + "▁absorbed", + -11.97079849243164 + ], + [ + "▁dementia", + -11.97079849243164 + ], + [ + "▁advertisements", + -11.970931053161621 + ], + [ + "▁fog", + -11.970932006835938 + ], + [ + "▁reproduction", + -11.971053123474121 + ], + [ + "▁laughing", + -11.971110343933105 + ], + [ + "▁dominate", + -11.971138954162598 + ], + [ + "▁bent", + -11.971224784851074 + ], + [ + "▁mic", + -11.971367835998535 + ], + [ + "▁Outlook", + -11.971381187438965 + ], + [ + "▁guilt", + -11.971542358398438 + ], + [ + "▁hug", + -11.971545219421387 + ], + [ + "▁sourced", + -11.97164535522461 + ], + [ + "pine", + -11.971662521362305 + ], + [ + "▁defending", + -11.97166633605957 + ], + [ + "▁ag", + -11.971731185913086 + ], + [ + "▁explosive", + -11.971787452697754 + ], + [ + "atom", + -11.971811294555664 + ], + [ + "▁sewer", + -11.97185230255127 + ], + [ + "▁eleven", + -11.971953392028809 + ], + [ + "▁Leaf", + -11.972097396850586 + ], + [ + "identifies", + -11.972146034240723 + ], + [ + "▁4.5", + -11.972330093383789 + ], + [ + "▁shipment", + -11.97242259979248 + ], + [ + "▁retrieve", + -11.972451210021973 + ], + [ + "▁Label", + -11.972461700439453 + ], + [ + "▁Devil", + -11.972578048706055 + ], + [ + "▁concentrations", + -11.972708702087402 + ], + [ + "Ultimately", + -11.972803115844727 + ], + [ + "▁earrings", + -11.97281265258789 + ], + [ + "voc", + -11.973015785217285 + ], + [ + "▁Sid", + -11.97315788269043 + ], + [ + "reg", + -11.973158836364746 + ], + [ + "▁aboard", + -11.973335266113281 + ], + [ + "▁transplant", + -11.973762512207031 + ], + [ + "▁conclusions", + -11.973773956298828 + ], + [ + "▁WW", + -11.973915100097656 + ], + [ + "▁greeting", + -11.973946571350098 + ], + [ + "▁witnesses", + -11.973995208740234 + ], + [ + "▁origins", + -11.974093437194824 + ], + [ + "▁willingness", + -11.974197387695312 + ], + [ + "Now", + -11.974205017089844 + ], + [ + "▁china", + -11.974260330200195 + ], + [ + "▁sequences", + -11.974275588989258 + ], + [ + "▁rotate", + -11.974300384521484 + ], + [ + "▁Arabic", + -11.974393844604492 + ], + [ + "▁expressions", + -11.974406242370605 + ], + [ + "▁revelation", + -11.97441291809082 + ], + [ + "▁cocktails", + -11.974445343017578 + ], + [ + "figure", + -11.974501609802246 + ], + [ + "prompted", + -11.974737167358398 + ], + [ + "sci", + -11.974799156188965 + ], + [ + "▁bleeding", + -11.974808692932129 + ], + [ + "▁converter", + -11.97491455078125 + ], + [ + "shirts", + -11.97519302368164 + ], + [ + "▁colleague", + -11.975404739379883 + ], + [ + "boards", + -11.975481033325195 + ], + [ + "▁Error", + -11.975509643554688 + ], + [ + "deal", + -11.975653648376465 + ], + [ + "▁Promotion", + -11.9757719039917 + ], + [ + "search", + -11.975783348083496 + ], + [ + "▁quantitative", + -11.975796699523926 + ], + [ + "▁implants", + -11.975934982299805 + ], + [ + "▁amid", + -11.975996971130371 + ], + [ + "▁gameplay", + -11.976194381713867 + ], + [ + "▁brew", + -11.976282119750977 + ], + [ + "AIR", + -11.97630500793457 + ], + [ + "oral", + -11.976383209228516 + ], + [ + "▁invasion", + -11.976571083068848 + ], + [ + "▁Regulation", + -11.976753234863281 + ], + [ + "gree", + -11.976831436157227 + ], + [ + "▁reporters", + -11.97702407836914 + ], + [ + "▁Cotton", + -11.97707462310791 + ], + [ + "▁Summary", + -11.977179527282715 + ], + [ + "▁commerce", + -11.977192878723145 + ], + [ + "▁dice", + -11.977258682250977 + ], + [ + "▁crude", + -11.977337837219238 + ], + [ + "550", + -11.97734260559082 + ], + [ + "mari", + -11.977437973022461 + ], + [ + "▁Removal", + -11.977437973022461 + ], + [ + "lessness", + -11.977582931518555 + ], + [ + "▁reinforce", + -11.977598190307617 + ], + [ + "▁inspect", + -11.977602005004883 + ], + [ + "▁threaten", + -11.977832794189453 + ], + [ + "▁beats", + -11.977922439575195 + ], + [ + "▁Todd", + -11.97799301147461 + ], + [ + "▁parenting", + -11.978096008300781 + ], + [ + "▁Motion", + -11.978141784667969 + ], + [ + "▁Oakland", + -11.978147506713867 + ], + [ + "▁debts", + -11.97830581665039 + ], + [ + "▁branded", + -11.978391647338867 + ], + [ + "▁stems", + -11.978404998779297 + ], + [ + "▁dismissed", + -11.978425025939941 + ], + [ + "▁procurement", + -11.978510856628418 + ], + [ + "▁TE", + -11.978720664978027 + ], + [ + "▁Florence", + -11.978759765625 + ], + [ + "▁stitch", + -11.97883129119873 + ], + [ + "▁har", + -11.979001998901367 + ], + [ + "▁yummy", + -11.979092597961426 + ], + [ + "▁feeds", + -11.979146003723145 + ], + [ + "▁assumption", + -11.979194641113281 + ], + [ + "▁Nebraska", + -11.979338645935059 + ], + [ + "▁Interview", + -11.979538917541504 + ], + [ + "▁baseline", + -11.979813575744629 + ], + [ + "▁critically", + -11.979994773864746 + ], + [ + "▁derivative", + -11.980080604553223 + ], + [ + "▁carved", + -11.980316162109375 + ], + [ + "TRA", + -11.980318069458008 + ], + [ + "▁Ari", + -11.980476379394531 + ], + [ + "▁Kas", + -11.980511665344238 + ], + [ + "▁Pizza", + -11.980806350708008 + ], + [ + "▁counted", + -11.980984687805176 + ], + [ + "▁journalism", + -11.981181144714355 + ], + [ + "▁rugged", + -11.981303215026855 + ], + [ + "▁RBI", + -11.981406211853027 + ], + [ + "▁Cathedral", + -11.981436729431152 + ], + [ + "▁remedies", + -11.981663703918457 + ], + [ + "▁neighbourhood", + -11.981765747070312 + ], + [ + "▁elbow", + -11.981792449951172 + ], + [ + "▁acclaimed", + -11.9818115234375 + ], + [ + "▁LO", + -11.981940269470215 + ], + [ + "▁warranties", + -11.981953620910645 + ], + [ + "▁Gabriel", + -11.982101440429688 + ], + [ + "▁Idaho", + -11.982215881347656 + ], + [ + "▁Pattern", + -11.982220649719238 + ], + [ + "virus", + -11.982253074645996 + ], + [ + "▁Concept", + -11.982439041137695 + ], + [ + "▁Pump", + -11.98252010345459 + ], + [ + "▁Own", + -11.982633590698242 + ], + [ + "performance", + -11.982778549194336 + ], + [ + "▁1974", + -11.982844352722168 + ], + [ + "pple", + -11.982848167419434 + ], + [ + "▁siblings", + -11.983285903930664 + ], + [ + "▁historically", + -11.983470916748047 + ], + [ + "lore", + -11.983499526977539 + ], + [ + "chel", + -11.983673095703125 + ], + [ + "▁Tournament", + -11.983734130859375 + ], + [ + "▁Portable", + -11.984086990356445 + ], + [ + "▁opener", + -11.984298706054688 + ], + [ + "▁springs", + -11.984480857849121 + ], + [ + "▁relevance", + -11.984771728515625 + ], + [ + "▁inquiries", + -11.984838485717773 + ], + [ + "▁Python", + -11.984869003295898 + ], + [ + "▁clutter", + -11.984885215759277 + ], + [ + "giving", + -11.98535442352295 + ], + [ + "▁reef", + -11.985357284545898 + ], + [ + "stru", + -11.985427856445312 + ], + [ + "▁Replacement", + -11.985505104064941 + ], + [ + "▁ritual", + -11.985755920410156 + ], + [ + "▁Measure", + -11.985834121704102 + ], + [ + "shu", + -11.98591136932373 + ], + [ + "found", + -11.985943794250488 + ], + [ + "▁overly", + -11.985960006713867 + ], + [ + "▁Brisbane", + -11.986427307128906 + ], + [ + "▁absorption", + -11.986427307128906 + ], + [ + "▁proactive", + -11.986518859863281 + ], + [ + "angi", + -11.986552238464355 + ], + [ + "▁guiding", + -11.98662281036377 + ], + [ + "▁remotely", + -11.986711502075195 + ], + [ + "▁stickers", + -11.986716270446777 + ], + [ + "▁scripts", + -11.986812591552734 + ], + [ + "▁Prevention", + -11.986994743347168 + ], + [ + "uba", + -11.987117767333984 + ], + [ + "▁Flex", + -11.98713207244873 + ], + [ + "▁greens", + -11.987244606018066 + ], + [ + "▁flourish", + -11.987264633178711 + ], + [ + "▁Hai", + -11.987309455871582 + ], + [ + "▁Ent", + -11.987310409545898 + ], + [ + "black", + -11.987408638000488 + ], + [ + "▁ال", + -11.98748779296875 + ], + [ + "▁Rica", + -11.987489700317383 + ], + [ + "drive", + -11.987512588500977 + ], + [ + "angled", + -11.987608909606934 + ], + [ + "▁scrub", + -11.98768424987793 + ], + [ + "▁palace", + -11.987724304199219 + ], + [ + "▁Silicon", + -11.987897872924805 + ], + [ + "▁packaged", + -11.987985610961914 + ], + [ + "▁geographic", + -11.988276481628418 + ], + [ + "▁colonial", + -11.988584518432617 + ], + [ + "fur", + -11.988587379455566 + ], + [ + "▁scattered", + -11.988601684570312 + ], + [ + "owed", + -11.9886474609375 + ], + [ + "▁NZ", + -11.98873233795166 + ], + [ + "▁Nazi", + -11.988771438598633 + ], + [ + "cation", + -11.989025115966797 + ], + [ + "▁plea", + -11.989316940307617 + ], + [ + "▁ferry", + -11.98950481414795 + ], + [ + "▁Rogers", + -11.989611625671387 + ], + [ + "dialing", + -11.99011516571045 + ], + [ + "▁Sav", + -11.990120887756348 + ], + [ + "tap", + -11.990219116210938 + ], + [ + "center", + -11.990239143371582 + ], + [ + "▁maple", + -11.990316390991211 + ], + [ + "▁charities", + -11.990471839904785 + ], + [ + "▁Flow", + -11.990494728088379 + ], + [ + "ERA", + -11.99079704284668 + ], + [ + "phon", + -11.990822792053223 + ], + [ + "linger", + -11.990896224975586 + ], + [ + "▁eighth", + -11.990912437438965 + ], + [ + "duct", + -11.991192817687988 + ], + [ + "▁affiliates", + -11.991209983825684 + ], + [ + "▁allies", + -11.991316795349121 + ], + [ + "atch", + -11.991532325744629 + ], + [ + "?????", + -11.991533279418945 + ], + [ + "gui", + -11.991607666015625 + ], + [ + "▁cracks", + -11.991653442382812 + ], + [ + "▁Funeral", + -11.99183464050293 + ], + [ + "▁surrender", + -11.99193286895752 + ], + [ + "▁Norman", + -11.992022514343262 + ], + [ + "▁Trinity", + -11.992096900939941 + ], + [ + "riff", + -11.992220878601074 + ], + [ + "examining", + -11.992225646972656 + ], + [ + "▁flick", + -11.992318153381348 + ], + [ + "▁interference", + -11.99254035949707 + ], + [ + "▁cooker", + -11.992623329162598 + ], + [ + "▁cardio", + -11.992654800415039 + ], + [ + "▁renovated", + -11.992698669433594 + ], + [ + "▁polyester", + -11.992768287658691 + ], + [ + "▁graduating", + -11.992781639099121 + ], + [ + "▁tractor", + -11.992897033691406 + ], + [ + "▁Poll", + -11.992947578430176 + ], + [ + "▁noble", + -11.992982864379883 + ], + [ + "▁Sue", + -11.993067741394043 + ], + [ + "▁fierce", + -11.993337631225586 + ], + [ + "tool", + -11.993351936340332 + ], + [ + "IDE", + -11.993453979492188 + ], + [ + "▁Cheese", + -11.993547439575195 + ], + [ + "▁Seal", + -11.993858337402344 + ], + [ + "tip", + -11.99410343170166 + ], + [ + "▁inputs", + -11.994222640991211 + ], + [ + "Su", + -11.994250297546387 + ], + [ + "▁1.1", + -11.994386672973633 + ], + [ + "▁ancestors", + -11.994407653808594 + ], + [ + "▁Battery", + -11.994433403015137 + ], + [ + "▁hurricane", + -11.99448299407959 + ], + [ + "plane", + -11.99450397491455 + ], + [ + "▁Nokia", + -11.994507789611816 + ], + [ + "▁randomly", + -11.99454116821289 + ], + [ + "▁Factor", + -11.994608879089355 + ], + [ + "▁SK", + -11.994668960571289 + ], + [ + "▁requesting", + -11.995050430297852 + ], + [ + "▁filmmaker", + -11.995138168334961 + ], + [ + "▁Issue", + -11.995241165161133 + ], + [ + "▁Fact", + -11.995329856872559 + ], + [ + "Fig", + -11.995499610900879 + ], + [ + "uga", + -11.995530128479004 + ], + [ + "▁corridor", + -11.995661735534668 + ], + [ + "▁Turner", + -11.995686531066895 + ], + [ + "ener", + -11.99596881866455 + ], + [ + "▁balancing", + -11.996034622192383 + ], + [ + "▁Chapel", + -11.996077537536621 + ], + [ + "ADA", + -11.996088027954102 + ], + [ + "focused", + -11.996103286743164 + ], + [ + "2010", + -11.996248245239258 + ], + [ + "▁Balance", + -11.996406555175781 + ], + [ + "▁violate", + -11.996438980102539 + ], + [ + "▁Lam", + -11.996484756469727 + ], + [ + "mish", + -11.996892929077148 + ], + [ + "▁UAE", + -11.99695873260498 + ], + [ + "▁lag", + -11.997373580932617 + ], + [ + "▁Tal", + -11.99740219116211 + ], + [ + "▁quarters", + -11.99763298034668 + ], + [ + "▁intervals", + -11.997672080993652 + ], + [ + "▁Ale", + -11.997776985168457 + ], + [ + "▁remodel", + -11.997846603393555 + ], + [ + "▁retire", + -11.998098373413086 + ], + [ + "▁vulnerability", + -11.998124122619629 + ], + [ + "pertaining", + -11.998384475708008 + ], + [ + "▁Od", + -11.99872875213623 + ], + [ + "▁Securities", + -11.998814582824707 + ], + [ + "security", + -11.99893569946289 + ], + [ + "feld", + -11.999015808105469 + ], + [ + "▁believing", + -11.999078750610352 + ], + [ + "mun", + -11.999178886413574 + ], + [ + "▁headache", + -11.99950885772705 + ], + [ + "Out", + -12.000073432922363 + ], + [ + "▁Biology", + -12.000287055969238 + ], + [ + "natural", + -12.00031852722168 + ], + [ + "▁Treat", + -12.000387191772461 + ], + [ + "aku", + -12.00059700012207 + ], + [ + "DN", + -12.000811576843262 + ], + [ + "▁ventilation", + -12.001152038574219 + ], + [ + "▁accountant", + -12.001250267028809 + ], + [ + "▁tolerate", + -12.001303672790527 + ], + [ + "120", + -12.001326560974121 + ], + [ + "▁kilometers", + -12.001416206359863 + ], + [ + "▁2003.", + -12.00153636932373 + ], + [ + "▁dividend", + -12.001568794250488 + ], + [ + "Black", + -12.001628875732422 + ], + [ + "▁Properties", + -12.001864433288574 + ], + [ + "▁Pete", + -12.001971244812012 + ], + [ + "▁Ox", + -12.0020112991333 + ], + [ + "▁Gill", + -12.002042770385742 + ], + [ + "▁noticeable", + -12.002165794372559 + ], + [ + "bou", + -12.002364158630371 + ], + [ + "▁simplest", + -12.002718925476074 + ], + [ + "▁BP", + -12.002769470214844 + ], + [ + "quire", + -12.002786636352539 + ], + [ + "See", + -12.002893447875977 + ], + [ + "▁stance", + -12.003210067749023 + ], + [ + "7,000", + -12.003362655639648 + ], + [ + "▁disable", + -12.003363609313965 + ], + [ + "▁altitude", + -12.003396987915039 + ], + [ + "degree", + -12.003435134887695 + ], + [ + "▁Absolutely", + -12.003541946411133 + ], + [ + "▁flyer", + -12.00361156463623 + ], + [ + "▁Hood", + -12.003681182861328 + ], + [ + "▁Cle", + -12.00371265411377 + ], + [ + "▁Spot", + -12.003751754760742 + ], + [ + "▁Framework", + -12.003779411315918 + ], + [ + "▁transforming", + -12.003786087036133 + ], + [ + "▁Items", + -12.003954887390137 + ], + [ + "▁Ruth", + -12.003986358642578 + ], + [ + "▁Strategic", + -12.004024505615234 + ], + [ + "▁squash", + -12.00402545928955 + ], + [ + "▁aids", + -12.004182815551758 + ], + [ + "▁Leo", + -12.004281997680664 + ], + [ + "▁Diagram", + -12.004338264465332 + ], + [ + "▁Pol", + -12.00466537475586 + ], + [ + "▁Hans", + -12.004684448242188 + ], + [ + "▁regain", + -12.004728317260742 + ], + [ + "▁traction", + -12.004899024963379 + ], + [ + "▁Journey", + -12.004950523376465 + ], + [ + "▁Led", + -12.005006790161133 + ], + [ + "▁comprehend", + -12.005016326904297 + ], + [ + "▁innings", + -12.005064010620117 + ], + [ + "▁tenure", + -12.005212783813477 + ], + [ + "▁indirect", + -12.00540542602539 + ], + [ + "▁Bean", + -12.005643844604492 + ], + [ + "▁spy", + -12.00567626953125 + ], + [ + "▁Karl", + -12.005831718444824 + ], + [ + "Play", + -12.006031036376953 + ], + [ + "licit", + -12.00609302520752 + ], + [ + "▁Interest", + -12.0061616897583 + ], + [ + "▁SIM", + -12.006389617919922 + ], + [ + "▁unfortunate", + -12.00639820098877 + ], + [ + "▁mon", + -12.006403923034668 + ], + [ + "▁transported", + -12.006491661071777 + ], + [ + "▁printers", + -12.006662368774414 + ], + [ + "▁proposition", + -12.006668090820312 + ], + [ + "▁NSW", + -12.00677490234375 + ], + [ + "▁Shakespeare", + -12.006805419921875 + ], + [ + "▁autism", + -12.006837844848633 + ], + [ + "ACK", + -12.006869316101074 + ], + [ + "▁Pit", + -12.006993293762207 + ], + [ + "▁developmental", + -12.00719165802002 + ], + [ + "-50", + -12.007245063781738 + ], + [ + "▁Painting", + -12.007259368896484 + ], + [ + "zzo", + -12.00736141204834 + ], + [ + "oku", + -12.00738525390625 + ], + [ + "▁Asset", + -12.007527351379395 + ], + [ + "▁Nut", + -12.007566452026367 + ], + [ + "esse", + -12.007593154907227 + ], + [ + "▁Thought", + -12.007675170898438 + ], + [ + "▁residue", + -12.007866859436035 + ], + [ + "▁17.", + -12.007869720458984 + ], + [ + "ologie", + -12.007936477661133 + ], + [ + "▁CSS", + -12.0079984664917 + ], + [ + "▁colourful", + -12.008030891418457 + ], + [ + "▁Stein", + -12.008099555969238 + ], + [ + "▁FROM", + -12.008207321166992 + ], + [ + "▁Dale", + -12.008299827575684 + ], + [ + "fee", + -12.008323669433594 + ], + [ + "etz", + -12.00851058959961 + ], + [ + "mati", + -12.00866413116455 + ], + [ + "▁Parking", + -12.008770942687988 + ], + [ + "▁Bloom", + -12.008795738220215 + ], + [ + "▁lifelong", + -12.008856773376465 + ], + [ + "nova", + -12.00888442993164 + ], + [ + "▁flies", + -12.008915901184082 + ], + [ + "▁sal", + -12.008918762207031 + ], + [ + "▁Warner", + -12.008938789367676 + ], + [ + "▁Walmart", + -12.00910758972168 + ], + [ + "▁rib", + -12.009208679199219 + ], + [ + "▁credibility", + -12.009227752685547 + ], + [ + "▁Pla", + -12.009230613708496 + ], + [ + "▁quiz", + -12.009321212768555 + ], + [ + "▁turtle", + -12.00932788848877 + ], + [ + "attributed", + -12.009340286254883 + ], + [ + "▁differential", + -12.00943660736084 + ], + [ + "++", + -12.009685516357422 + ], + [ + "▁statutory", + -12.009726524353027 + ], + [ + "▁gloss", + -12.009727478027344 + ], + [ + "▁registry", + -12.00984001159668 + ], + [ + "▁Brother", + -12.009878158569336 + ], + [ + "lasting", + -12.009905815124512 + ], + [ + "ucci", + -12.009981155395508 + ], + [ + "pee", + -12.010045051574707 + ], + [ + "▁seamlessly", + -12.010388374328613 + ], + [ + "▁spinning", + -12.01042652130127 + ], + [ + "▁upholstery", + -12.010758399963379 + ], + [ + "▁sweep", + -12.010761260986328 + ], + [ + "▁bore", + -12.010966300964355 + ], + [ + "▁trainers", + -12.011013984680176 + ], + [ + "▁peek", + -12.01136589050293 + ], + [ + "▁Extension", + -12.011380195617676 + ], + [ + "▁Coordinator", + -12.011479377746582 + ], + [ + "lake", + -12.01150131225586 + ], + [ + "▁15-", + -12.011630058288574 + ], + [ + "▁Flu", + -12.011823654174805 + ], + [ + "▁amended", + -12.011846542358398 + ], + [ + "▁NW", + -12.01186752319336 + ], + [ + "VEN", + -12.011873245239258 + ], + [ + "▁curved", + -12.012139320373535 + ], + [ + "▁objection", + -12.012194633483887 + ], + [ + "ISH", + -12.012340545654297 + ], + [ + "▁1967", + -12.012429237365723 + ], + [ + "▁Monitor", + -12.012557983398438 + ], + [ + "ни", + -12.012846946716309 + ], + [ + "▁recommends", + -12.012860298156738 + ], + [ + "▁Limit", + -12.013006210327148 + ], + [ + "▁illusion", + -12.0130615234375 + ], + [ + "▁assessing", + -12.013092994689941 + ], + [ + "▁ego", + -12.013140678405762 + ], + [ + "erty", + -12.01317310333252 + ], + [ + "▁sprinkle", + -12.01319408416748 + ], + [ + "▁Bol", + -12.013275146484375 + ], + [ + "▁Zu", + -12.013283729553223 + ], + [ + "▁purse", + -12.013397216796875 + ], + [ + "▁locking", + -12.013636589050293 + ], + [ + "▁Employment", + -12.013849258422852 + ], + [ + "▁thriving", + -12.013891220092773 + ], + [ + "▁distributor", + -12.013951301574707 + ], + [ + "▁Universe", + -12.014019966125488 + ], + [ + "grabbed", + -12.014060020446777 + ], + [ + "▁lump", + -12.014081001281738 + ], + [ + "nzo", + -12.014127731323242 + ], + [ + "image", + -12.014198303222656 + ], + [ + "▁surfing", + -12.014205932617188 + ], + [ + "▁CMS", + -12.014317512512207 + ], + [ + "▁Tha", + -12.01448917388916 + ], + [ + "▁rugs", + -12.014714241027832 + ], + [ + "lov", + -12.014755249023438 + ], + [ + "▁firmware", + -12.014849662780762 + ], + [ + "▁sandwiches", + -12.014888763427734 + ], + [ + "because", + -12.014921188354492 + ], + [ + "umi", + -12.014946937561035 + ], + [ + "▁drawers", + -12.015046119689941 + ], + [ + "▁severely", + -12.015093803405762 + ], + [ + "▁invitations", + -12.015129089355469 + ], + [ + "▁stall", + -12.015212059020996 + ], + [ + "▁defect", + -12.015222549438477 + ], + [ + "▁Opening", + -12.015312194824219 + ], + [ + "▁Rai", + -12.015357971191406 + ], + [ + "thesis", + -12.015578269958496 + ], + [ + "▁margins", + -12.015755653381348 + ], + [ + "▁220", + -12.015881538391113 + ], + [ + "▁Mortgage", + -12.015896797180176 + ], + [ + "▁souls", + -12.015939712524414 + ], + [ + "▁landlord", + -12.016058921813965 + ], + [ + "▁reasoning", + -12.016068458557129 + ], + [ + "▁unions", + -12.016074180603027 + ], + [ + "▁Treasury", + -12.016097068786621 + ], + [ + "▁pillows", + -12.016132354736328 + ], + [ + "▁enclosure", + -12.01616382598877 + ], + [ + "▁Cinema", + -12.016196250915527 + ], + [ + "▁hazards", + -12.016241073608398 + ], + [ + "▁Applied", + -12.016365051269531 + ], + [ + "usion", + -12.016735076904297 + ], + [ + "▁Jake", + -12.016736030578613 + ], + [ + "Founded", + -12.016807556152344 + ], + [ + "▁magnitude", + -12.016901016235352 + ], + [ + "▁Johnny", + -12.016910552978516 + ], + [ + "▁Shah", + -12.017083168029785 + ], + [ + "▁Ride", + -12.017107009887695 + ], + [ + "▁groom", + -12.017251014709473 + ], + [ + "urn", + -12.017374992370605 + ], + [ + "▁Operating", + -12.017399787902832 + ], + [ + "▁Gaming", + -12.01743221282959 + ], + [ + "▁advertisement", + -12.017571449279785 + ], + [ + "Life", + -12.017864227294922 + ], + [ + "litre", + -12.017991065979004 + ], + [ + "▁controversy", + -12.018375396728516 + ], + [ + "▁arthritis", + -12.018509864807129 + ], + [ + "▁celebrities", + -12.018777847290039 + ], + [ + "▁Physics", + -12.018819808959961 + ], + [ + "▁comb", + -12.018826484680176 + ], + [ + "▁storytelling", + -12.018946647644043 + ], + [ + "▁Stories", + -12.018997192382812 + ], + [ + "▁scandal", + -12.019189834594727 + ], + [ + "▁Fuel", + -12.019288063049316 + ], + [ + "▁uncertain", + -12.01939582824707 + ], + [ + "▁battles", + -12.019411087036133 + ], + [ + "UG", + -12.019441604614258 + ], + [ + "gone", + -12.019454002380371 + ], + [ + "interest", + -12.019536972045898 + ], + [ + "▁Sum", + -12.019713401794434 + ], + [ + "cord", + -12.01976203918457 + ], + [ + "▁plumber", + -12.019862174987793 + ], + [ + "▁Highly", + -12.01991081237793 + ], + [ + "mul", + -12.020238876342773 + ], + [ + "▁endorsement", + -12.020248413085938 + ], + [ + "▁deco", + -12.020317077636719 + ], + [ + "▁Comm", + -12.020330429077148 + ], + [ + "▁woven", + -12.020462036132812 + ], + [ + "▁prosecutor", + -12.020524024963379 + ], + [ + "pho", + -12.020872116088867 + ], + [ + "World", + -12.020997047424316 + ], + [ + "rism", + -12.021048545837402 + ], + [ + "▁Snap", + -12.021058082580566 + ], + [ + "▁Combine", + -12.021234512329102 + ], + [ + "normal", + -12.021349906921387 + ], + [ + "▁invasive", + -12.021368980407715 + ], + [ + "▁Acid", + -12.02169418334961 + ], + [ + "▁Ambassador", + -12.021801948547363 + ], + [ + "▁guards", + -12.02194881439209 + ], + [ + "▁scales", + -12.021953582763672 + ], + [ + "▁7:", + -12.021977424621582 + ], + [ + "▁Yorkshire", + -12.022027015686035 + ], + [ + "▁choir", + -12.02225399017334 + ], + [ + "come", + -12.022321701049805 + ], + [ + "cision", + -12.022343635559082 + ], + [ + "zon", + -12.022605895996094 + ], + [ + "holders", + -12.022666931152344 + ], + [ + "▁trustee", + -12.022808074951172 + ], + [ + "talk", + -12.02290153503418 + ], + [ + "▁bouquet", + -12.02294635772705 + ], + [ + "▁Wonderful", + -12.023192405700684 + ], + [ + "▁Reduce", + -12.023228645324707 + ], + [ + "▁Fal", + -12.02336597442627 + ], + [ + "▁negligence", + -12.023385047912598 + ], + [ + "gard", + -12.023537635803223 + ], + [ + "clu", + -12.023582458496094 + ], + [ + "▁wasted", + -12.023725509643555 + ], + [ + "▁entertain", + -12.023749351501465 + ], + [ + "▁Copy", + -12.023862838745117 + ], + [ + "▁mould", + -12.02403736114502 + ], + [ + "▁invented", + -12.024039268493652 + ], + [ + "▁kindly", + -12.024044036865234 + ], + [ + "▁census", + -12.024060249328613 + ], + [ + "▁converting", + -12.024125099182129 + ], + [ + "punk", + -12.024165153503418 + ], + [ + "gic", + -12.024264335632324 + ], + [ + "▁Spider", + -12.024306297302246 + ], + [ + "▁fusion", + -12.024308204650879 + ], + [ + "▁Hour", + -12.024453163146973 + ], + [ + "▁masses", + -12.02452278137207 + ], + [ + "▁headaches", + -12.024571418762207 + ], + [ + "▁residency", + -12.024672508239746 + ], + [ + "▁teenagers", + -12.024715423583984 + ], + [ + "▁mercy", + -12.024757385253906 + ], + [ + "▁shooter", + -12.0248441696167 + ], + [ + "ESS", + -12.024982452392578 + ], + [ + "chair", + -12.025019645690918 + ], + [ + "▁authorization", + -12.025164604187012 + ], + [ + "▁2004,", + -12.025197982788086 + ], + [ + "▁plugins", + -12.025199890136719 + ], + [ + "make", + -12.025208473205566 + ], + [ + "▁3,000", + -12.025282859802246 + ], + [ + "▁kiss", + -12.025476455688477 + ], + [ + "▁quantum", + -12.02547836303711 + ], + [ + "▁HTTP", + -12.02548599243164 + ], + [ + "▁merit", + -12.025524139404297 + ], + [ + "▁integrating", + -12.025544166564941 + ], + [ + "▁questionnaire", + -12.025579452514648 + ], + [ + "fic", + -12.025625228881836 + ], + [ + "Your", + -12.025806427001953 + ], + [ + "▁bless", + -12.025812149047852 + ], + [ + "▁inhabitants", + -12.026129722595215 + ], + [ + "▁Administrator", + -12.026491165161133 + ], + [ + "▁crab", + -12.026518821716309 + ], + [ + "ctic", + -12.02653694152832 + ], + [ + "▁sequel", + -12.026588439941406 + ], + [ + "▁Lyn", + -12.026637077331543 + ], + [ + "▁rebel", + -12.026686668395996 + ], + [ + "▁Roth", + -12.026969909667969 + ], + [ + "▁Listing", + -12.027151107788086 + ], + [ + "▁1971", + -12.0271577835083 + ], + [ + "ingham", + -12.02727222442627 + ], + [ + "Best", + -12.027291297912598 + ], + [ + "RNA", + -12.027377128601074 + ], + [ + "OST", + -12.027395248413086 + ], + [ + "▁budgets", + -12.027429580688477 + ], + [ + "▁Rico", + -12.02775764465332 + ], + [ + "▁ambassador", + -12.027979850769043 + ], + [ + "clean", + -12.02802562713623 + ], + [ + "▁Vienna", + -12.028179168701172 + ], + [ + "▁protests", + -12.028257369995117 + ], + [ + "ér", + -12.028289794921875 + ], + [ + "▁lengths", + -12.028617858886719 + ], + [ + "▁incomplete", + -12.028701782226562 + ], + [ + "▁Nam", + -12.02871036529541 + ], + [ + "Yes", + -12.029097557067871 + ], + [ + "▁praying", + -12.029156684875488 + ], + [ + "▁Surface", + -12.0294189453125 + ], + [ + "▁GS", + -12.029419898986816 + ], + [ + "▁boarding", + -12.029523849487305 + ], + [ + "▁Southwest", + -12.029582977294922 + ], + [ + "▁conquer", + -12.029729843139648 + ], + [ + "▁Katie", + -12.029869079589844 + ], + [ + "▁notch", + -12.029972076416016 + ], + [ + "Get", + -12.030336380004883 + ], + [ + "▁removable", + -12.030352592468262 + ], + [ + "▁aluminium", + -12.030692100524902 + ], + [ + "▁Ted", + -12.030695915222168 + ], + [ + "▁Arctic", + -12.030749320983887 + ], + [ + "▁kernel", + -12.030896186828613 + ], + [ + "▁Device", + -12.031054496765137 + ], + [ + "▁Doing", + -12.031172752380371 + ], + [ + "▁#3", + -12.03126049041748 + ], + [ + "▁trustworthy", + -12.031332969665527 + ], + [ + "▁reflective", + -12.031495094299316 + ], + [ + "▁scream", + -12.031685829162598 + ], + [ + "graphy", + -12.031694412231445 + ], + [ + "▁menus", + -12.0320463180542 + ], + [ + "▁Victor", + -12.032148361206055 + ], + [ + "▁Spi", + -12.032155990600586 + ], + [ + "▁masterpiece", + -12.032466888427734 + ], + [ + "▁cardiac", + -12.032732009887695 + ], + [ + "▁IC", + -12.0327730178833 + ], + [ + "3.1", + -12.032835960388184 + ], + [ + "▁shaping", + -12.032922744750977 + ], + [ + "▁Harrison", + -12.03292465209961 + ], + [ + "▁designation", + -12.0330171585083 + ], + [ + "▁landmark", + -12.033123970031738 + ], + [ + "▁civilization", + -12.033246994018555 + ], + [ + "▁Mir", + -12.033289909362793 + ], + [ + "▁Beck", + -12.033540725708008 + ], + [ + "▁archives", + -12.033612251281738 + ], + [ + "chester", + -12.03369426727295 + ], + [ + "ACT", + -12.033838272094727 + ], + [ + "▁skate", + -12.033951759338379 + ], + [ + "▁Calgary", + -12.033990859985352 + ], + [ + "▁planner", + -12.034050941467285 + ], + [ + "▁OFF", + -12.034127235412598 + ], + [ + "▁straps", + -12.034296989440918 + ], + [ + "▁commitments", + -12.034299850463867 + ], + [ + "▁bark", + -12.034345626831055 + ], + [ + "quest", + -12.03438663482666 + ], + [ + "▁rays", + -12.034571647644043 + ], + [ + "▁fulfilled", + -12.034587860107422 + ], + [ + "▁newborn", + -12.034683227539062 + ], + [ + "▁stained", + -12.03475284576416 + ], + [ + "▁Danny", + -12.034834861755371 + ], + [ + "▁resolutions", + -12.034881591796875 + ], + [ + "▁apparel", + -12.034916877746582 + ], + [ + "▁Moses", + -12.03502082824707 + ], + [ + "done", + -12.035065650939941 + ], + [ + "▁pretend", + -12.035066604614258 + ], + [ + "2011", + -12.035097122192383 + ], + [ + "utmos", + -12.035191535949707 + ], + [ + "▁teenage", + -12.0352201461792 + ], + [ + "borne", + -12.035244941711426 + ], + [ + "▁illnesses", + -12.035244941711426 + ], + [ + "▁8:", + -12.035331726074219 + ], + [ + "▁crowds", + -12.035345077514648 + ], + [ + "bak", + -12.035606384277344 + ], + [ + "▁typing", + -12.035651206970215 + ], + [ + "▁reuse", + -12.035841941833496 + ], + [ + "▁breakthrough", + -12.035855293273926 + ], + [ + "accompanying", + -12.035969734191895 + ], + [ + "▁swelling", + -12.036310195922852 + ], + [ + "▁disciples", + -12.03632926940918 + ], + [ + "patient", + -12.036545753479004 + ], + [ + "▁Ticket", + -12.036598205566406 + ], + [ + "▁ruin", + -12.036614418029785 + ], + [ + "Thankfully", + -12.036786079406738 + ], + [ + "▁nominee", + -12.03699779510498 + ], + [ + "▁convincing", + -12.037027359008789 + ], + [ + "▁Um", + -12.037077903747559 + ], + [ + "▁digestive", + -12.037139892578125 + ], + [ + "▁OUT", + -12.03723430633545 + ], + [ + "▁Scale", + -12.037275314331055 + ], + [ + "▁programmer", + -12.03750228881836 + ], + [ + "▁explicitly", + -12.03751277923584 + ], + [ + "rib", + -12.037755012512207 + ], + [ + "▁7-", + -12.037825584411621 + ], + [ + "▁Sterling", + -12.037885665893555 + ], + [ + "»", + -12.037954330444336 + ], + [ + "ASH", + -12.03801155090332 + ], + [ + "▁mins", + -12.038058280944824 + ], + [ + "▁inappropriate", + -12.038225173950195 + ], + [ + "▁premiums", + -12.038259506225586 + ], + [ + "▁conserve", + -12.038276672363281 + ], + [ + "▁ideally", + -12.038365364074707 + ], + [ + "▁Except", + -12.03860855102539 + ], + [ + "▁dangers", + -12.038644790649414 + ], + [ + "ggie", + -12.038732528686523 + ], + [ + "▁practiced", + -12.038835525512695 + ], + [ + "▁Dodge", + -12.039085388183594 + ], + [ + "▁Dia", + -12.039111137390137 + ], + [ + "opted", + -12.039116859436035 + ], + [ + "▁128", + -12.039175987243652 + ], + [ + "Care", + -12.039458274841309 + ], + [ + "paper", + -12.039480209350586 + ], + [ + "▁Bang", + -12.039538383483887 + ], + [ + "give", + -12.039664268493652 + ], + [ + "▁attacking", + -12.039682388305664 + ], + [ + "▁Instruction", + -12.039701461791992 + ], + [ + "▁Tang", + -12.039820671081543 + ], + [ + "▁coll", + -12.03996467590332 + ], + [ + "Part", + -12.040003776550293 + ], + [ + "▁Experts", + -12.040040016174316 + ], + [ + "▁rented", + -12.04004192352295 + ], + [ + "▁enclosed", + -12.040141105651855 + ], + [ + "Michel", + -12.040268898010254 + ], + [ + "▁remarks", + -12.04033374786377 + ], + [ + "science", + -12.040687561035156 + ], + [ + "▁Adding", + -12.040846824645996 + ], + [ + "▁tightly", + -12.041120529174805 + ], + [ + "▁Rated", + -12.041141510009766 + ], + [ + "cyto", + -12.041166305541992 + ], + [ + "▁Diploma", + -12.041420936584473 + ], + [ + "▁gods", + -12.041508674621582 + ], + [ + "▁demonstrating", + -12.041513442993164 + ], + [ + "▁dawn", + -12.041582107543945 + ], + [ + "▁Marco", + -12.041619300842285 + ], + [ + "▁judicial", + -12.04170036315918 + ], + [ + "▁plunge", + -12.04175090789795 + ], + [ + "▁pig", + -12.04183292388916 + ], + [ + "▁exclusion", + -12.041861534118652 + ], + [ + "▁102", + -12.041962623596191 + ], + [ + "moto", + -12.041976928710938 + ], + [ + "▁Brussels", + -12.041994094848633 + ], + [ + "excluding", + -12.042097091674805 + ], + [ + "▁450", + -12.042171478271484 + ], + [ + "▁Viking", + -12.042221069335938 + ], + [ + "▁Foster", + -12.04235553741455 + ], + [ + "▁Poe", + -12.042435646057129 + ], + [ + "▁Norwegian", + -12.042440414428711 + ], + [ + "▁Chemistry", + -12.042612075805664 + ], + [ + "▁fry", + -12.042768478393555 + ], + [ + "▁tales", + -12.0429105758667 + ], + [ + "▁hooked", + -12.043074607849121 + ], + [ + "▁Charter", + -12.043092727661133 + ], + [ + "▁Lunch", + -12.04321002960205 + ], + [ + "FR", + -12.043264389038086 + ], + [ + "email", + -12.043469429016113 + ], + [ + "▁fragment", + -12.043485641479492 + ], + [ + "BP", + -12.043581008911133 + ], + [ + "▁motive", + -12.043624877929688 + ], + [ + "▁purchaser", + -12.043741226196289 + ], + [ + "▁cautious", + -12.04391860961914 + ], + [ + "▁blues", + -12.044483184814453 + ], + [ + "mple", + -12.044525146484375 + ], + [ + "erry", + -12.044596672058105 + ], + [ + "▁rinse", + -12.044827461242676 + ], + [ + "▁gifted", + -12.04483413696289 + ], + [ + "▁teenager", + -12.044878959655762 + ], + [ + "unch", + -12.044951438903809 + ], + [ + "close", + -12.044955253601074 + ], + [ + "▁cough", + -12.044958114624023 + ], + [ + "phan", + -12.045093536376953 + ], + [ + "bay", + -12.045187950134277 + ], + [ + "▁leaks", + -12.045207023620605 + ], + [ + "▁Championships", + -12.045450210571289 + ], + [ + "▁cupboard", + -12.045459747314453 + ], + [ + "▁Shield", + -12.0455322265625 + ], + [ + "▁Yan", + -12.045649528503418 + ], + [ + "▁Flowers", + -12.045897483825684 + ], + [ + "rado", + -12.045920372009277 + ], + [ + "▁frost", + -12.046051979064941 + ], + [ + "tune", + -12.046102523803711 + ], + [ + "▁Est", + -12.046113014221191 + ], + [ + "▁MAR", + -12.0462064743042 + ], + [ + "▁nomination", + -12.046457290649414 + ], + [ + "▁Prim", + -12.046814918518066 + ], + [ + "OE", + -12.046981811523438 + ], + [ + "▁trio", + -12.047019958496094 + ], + [ + "▁Catherine", + -12.0470552444458 + ], + [ + "▁soldier", + -12.04708194732666 + ], + [ + "▁downside", + -12.0472412109375 + ], + [ + "▁Maps", + -12.047446250915527 + ], + [ + "▁particle", + -12.047603607177734 + ], + [ + "▁preferably", + -12.047789573669434 + ], + [ + "uation", + -12.047932624816895 + ], + [ + "▁extracted", + -12.048261642456055 + ], + [ + "mart", + -12.048330307006836 + ], + [ + "▁NBC", + -12.048564910888672 + ], + [ + "▁resilience", + -12.048781394958496 + ], + [ + "▁reel", + -12.048828125 + ], + [ + "▁devotion", + -12.048920631408691 + ], + [ + "▁adjusting", + -12.04894733428955 + ], + [ + "▁survivors", + -12.04902172088623 + ], + [ + "▁airports", + -12.049135208129883 + ], + [ + "▁Buddhist", + -12.049162864685059 + ], + [ + "▁Municipal", + -12.049196243286133 + ], + [ + "rier", + -12.049208641052246 + ], + [ + "▁princess", + -12.049238204956055 + ], + [ + "▁empire", + -12.049351692199707 + ], + [ + "▁inhibitor", + -12.049549102783203 + ], + [ + "▁Anything", + -12.049582481384277 + ], + [ + "▁Nigerian", + -12.04958438873291 + ], + [ + "▁NH", + -12.049840927124023 + ], + [ + "▁Foods", + -12.049985885620117 + ], + [ + "▁motif", + -12.05007553100586 + ], + [ + "▁Driving", + -12.050167083740234 + ], + [ + "▁shifted", + -12.050322532653809 + ], + [ + "▁Brandon", + -12.050835609436035 + ], + [ + "help", + -12.0508394241333 + ], + [ + "▁Julia", + -12.050874710083008 + ], + [ + "-02", + -12.05099868774414 + ], + [ + "ardi", + -12.05154037475586 + ], + [ + "▁Doc", + -12.051581382751465 + ], + [ + "▁chili", + -12.05175495147705 + ], + [ + "iddle", + -12.051915168762207 + ], + [ + "Likewise", + -12.051993370056152 + ], + [ + "▁flavours", + -12.052037239074707 + ], + [ + "▁pitcher", + -12.052109718322754 + ], + [ + "▁workouts", + -12.052136421203613 + ], + [ + "▁Mann", + -12.052140235900879 + ], + [ + "▁Kara", + -12.052164077758789 + ], + [ + "▁formulation", + -12.052276611328125 + ], + [ + "▁endure", + -12.052573204040527 + ], + [ + "▁simmer", + -12.052639961242676 + ], + [ + "▁gown", + -12.052733421325684 + ], + [ + "▁Chevrolet", + -12.052765846252441 + ], + [ + "Che", + -12.052783966064453 + ], + [ + "▁showroom", + -12.052844047546387 + ], + [ + "▁Bud", + -12.053045272827148 + ], + [ + "songwriter", + -12.05327320098877 + ], + [ + "▁Township", + -12.053583145141602 + ], + [ + "▁Warm", + -12.053587913513184 + ], + [ + "▁perfume", + -12.053601264953613 + ], + [ + "▁(20", + -12.053624153137207 + ], + [ + "▁Mono", + -12.05372142791748 + ], + [ + "▁compose", + -12.053728103637695 + ], + [ + "▁Berkeley", + -12.05401611328125 + ], + [ + "pati", + -12.054020881652832 + ], + [ + "▁ruler", + -12.05404281616211 + ], + [ + "▁saint", + -12.054201126098633 + ], + [ + "▁autonomous", + -12.054293632507324 + ], + [ + "▁Formula", + -12.05443000793457 + ], + [ + "▁XL", + -12.054722785949707 + ], + [ + "▁Few", + -12.054727554321289 + ], + [ + "▁Peru", + -12.054753303527832 + ], + [ + "▁validity", + -12.054930686950684 + ], + [ + "▁Sofa", + -12.054998397827148 + ], + [ + "▁blender", + -12.055093765258789 + ], + [ + "▁paradise", + -12.055093765258789 + ], + [ + "▁daunting", + -12.055163383483887 + ], + [ + "▁problematic", + -12.055179595947266 + ], + [ + "stad", + -12.05521297454834 + ], + [ + "▁advisors", + -12.055230140686035 + ], + [ + "Well", + -12.055322647094727 + ], + [ + "iger", + -12.055365562438965 + ], + [ + "▁coordinated", + -12.055602073669434 + ], + [ + "ologi", + -12.055702209472656 + ], + [ + "▁uncommon", + -12.055831909179688 + ], + [ + "▁Lion", + -12.055952072143555 + ], + [ + "▁voucher", + -12.05595874786377 + ], + [ + "▁Cincinnati", + -12.055964469909668 + ], + [ + "▁Conduct", + -12.056077003479004 + ], + [ + "▁Ottawa", + -12.056138038635254 + ], + [ + "GL", + -12.056159019470215 + ], + [ + "▁Nano", + -12.056171417236328 + ], + [ + "▁Milwaukee", + -12.056242942810059 + ], + [ + "225", + -12.056346893310547 + ], + [ + "▁weave", + -12.056346893310547 + ], + [ + "▁Hours", + -12.056371688842773 + ], + [ + "▁Kris", + -12.056509971618652 + ], + [ + "▁WHAT", + -12.05657958984375 + ], + [ + "▁Accounting", + -12.056734085083008 + ], + [ + "▁honesty", + -12.056760787963867 + ], + [ + "▁sang", + -12.0568208694458 + ], + [ + "chemical", + -12.057053565979004 + ], + [ + "▁FE", + -12.057120323181152 + ], + [ + "esteem", + -12.057168006896973 + ], + [ + "▁planes", + -12.057175636291504 + ], + [ + "▁doc", + -12.057219505310059 + ], + [ + "Web", + -12.057231903076172 + ], + [ + "▁drums", + -12.05733585357666 + ], + [ + "controlled", + -12.057342529296875 + ], + [ + "hine", + -12.057351112365723 + ], + [ + "▁Personally", + -12.057469367980957 + ], + [ + "ка", + -12.057624816894531 + ], + [ + "2019", + -12.057659149169922 + ], + [ + "▁fibers", + -12.057762145996094 + ], + [ + "▁picturesque", + -12.057848930358887 + ], + [ + "lapse", + -12.058158874511719 + ], + [ + "▁Fil", + -12.058387756347656 + ], + [ + "▁heights", + -12.058531761169434 + ], + [ + "▁Indians", + -12.058539390563965 + ], + [ + "▁Ple", + -12.058808326721191 + ], + [ + "▁vague", + -12.058859825134277 + ], + [ + "▁Iceland", + -12.058945655822754 + ], + [ + "▁preschool", + -12.059328079223633 + ], + [ + "por", + -12.059407234191895 + ], + [ + "specializing", + -12.059420585632324 + ], + [ + "▁expedition", + -12.059452056884766 + ], + [ + "▁drunk", + -12.059565544128418 + ], + [ + "▁Repeat", + -12.059685707092285 + ], + [ + "▁monkey", + -12.0596923828125 + ], + [ + "erman", + -12.059746742248535 + ], + [ + "▁NCAA", + -12.0597505569458 + ], + [ + "▁Portuguese", + -12.059941291809082 + ], + [ + "culture", + -12.05994701385498 + ], + [ + "communications", + -12.060210227966309 + ], + [ + "ception", + -12.060267448425293 + ], + [ + "▁Perth", + -12.060296058654785 + ], + [ + "worthy", + -12.060333251953125 + ], + [ + "comb", + -12.060352325439453 + ], + [ + "▁Lakes", + -12.060473442077637 + ], + [ + "▁Cities", + -12.06054973602295 + ], + [ + "▁exempt", + -12.060602188110352 + ], + [ + "▁creations", + -12.060686111450195 + ], + [ + "▁Eagles", + -12.06081771850586 + ], + [ + "▁shadows", + -12.061004638671875 + ], + [ + "▁sorted", + -12.061107635498047 + ], + [ + "ón", + -12.061163902282715 + ], + [ + "▁weaknesses", + -12.061182022094727 + ], + [ + "▁blackjack", + -12.061236381530762 + ], + [ + "ips", + -12.061307907104492 + ], + [ + "▁electrode", + -12.061659812927246 + ], + [ + "channel", + -12.061823844909668 + ], + [ + "▁variants", + -12.06185245513916 + ], + [ + "cyte", + -12.061939239501953 + ], + [ + "▁simplify", + -12.062103271484375 + ], + [ + "▁Brush", + -12.062173843383789 + ], + [ + "▁Trek", + -12.062204360961914 + ], + [ + "went", + -12.062248229980469 + ], + [ + "▁instinct", + -12.062281608581543 + ], + [ + "▁Liberal", + -12.062398910522461 + ], + [ + "▁Neu", + -12.062400817871094 + ], + [ + "▁Points", + -12.062450408935547 + ], + [ + "▁los", + -12.06245231628418 + ], + [ + "peak", + -12.062484741210938 + ], + [ + "escence", + -12.062577247619629 + ], + [ + "▁19.", + -12.06259536743164 + ], + [ + "ibly", + -12.062707901000977 + ], + [ + "▁perceive", + -12.062823295593262 + ], + [ + "8.5", + -12.062941551208496 + ], + [ + "▁logos", + -12.062966346740723 + ], + [ + "▁competence", + -12.06302261352539 + ], + [ + "▁constitution", + -12.063187599182129 + ], + [ + "▁Jamaica", + -12.06323528289795 + ], + [ + "square", + -12.0634765625 + ], + [ + "▁tabs", + -12.063699722290039 + ], + [ + "▁Vir", + -12.063716888427734 + ], + [ + "posit", + -12.06386947631836 + ], + [ + "mite", + -12.063899040222168 + ], + [ + "▁Parks", + -12.064163208007812 + ], + [ + "strict", + -12.064165115356445 + ], + [ + "▁repository", + -12.064356803894043 + ], + [ + "▁severity", + -12.064496994018555 + ], + [ + "▁poses", + -12.064628601074219 + ], + [ + "▁economist", + -12.064847946166992 + ], + [ + "ISA", + -12.064873695373535 + ], + [ + "▁Spread", + -12.06493854522705 + ], + [ + "▁Parish", + -12.064996719360352 + ], + [ + "▁Workers", + -12.065118789672852 + ], + [ + "RON", + -12.065185546875 + ], + [ + "▁ripe", + -12.065308570861816 + ], + [ + "▁definitions", + -12.065321922302246 + ], + [ + "▁personalities", + -12.065448760986328 + ], + [ + "▁Gran", + -12.065474510192871 + ], + [ + "▁getaway", + -12.065696716308594 + ], + [ + "▁stranger", + -12.065796852111816 + ], + [ + "keeping", + -12.065825462341309 + ], + [ + "loom", + -12.065905570983887 + ], + [ + "▁bust", + -12.066061973571777 + ], + [ + "▁railroad", + -12.066076278686523 + ], + [ + "▁accidentally", + -12.066110610961914 + ], + [ + "▁Tamil", + -12.066169738769531 + ], + [ + "▁bees", + -12.066184043884277 + ], + [ + "▁flock", + -12.066298484802246 + ], + [ + "▁Hang", + -12.0664701461792 + ], + [ + "▁Mak", + -12.066627502441406 + ], + [ + "imp", + -12.066630363464355 + ], + [ + "iter", + -12.066780090332031 + ], + [ + "▁Lum", + -12.066814422607422 + ], + [ + "Ver", + -12.06684684753418 + ], + [ + "▁berries", + -12.06685733795166 + ], + [ + "team", + -12.066929817199707 + ], + [ + "▁Dow", + -12.067172050476074 + ], + [ + "lice", + -12.06718921661377 + ], + [ + "▁jungle", + -12.067240715026855 + ], + [ + "▁hazard", + -12.06725025177002 + ], + [ + "▁Projects", + -12.06727123260498 + ], + [ + "▁shout", + -12.06735610961914 + ], + [ + "▁foul", + -12.067389488220215 + ], + [ + "▁75%", + -12.067421913146973 + ], + [ + "▁5,000", + -12.067460060119629 + ], + [ + "▁forefront", + -12.067506790161133 + ], + [ + "grin", + -12.06753921508789 + ], + [ + "3.2", + -12.067545890808105 + ], + [ + "▁XML", + -12.067667961120605 + ], + [ + "▁straw", + -12.06775188446045 + ], + [ + ":20", + -12.067773818969727 + ], + [ + "▁enters", + -12.068032264709473 + ], + [ + "▁NGO", + -12.068042755126953 + ], + [ + "▁french", + -12.068239212036133 + ], + [ + "pas", + -12.06828498840332 + ], + [ + "▁Sustainable", + -12.068297386169434 + ], + [ + "▁studios", + -12.068371772766113 + ], + [ + "▁feat", + -12.068402290344238 + ], + [ + "▁hilarious", + -12.068614959716797 + ], + [ + "▁suspicious", + -12.068739891052246 + ], + [ + "▁Drum", + -12.068883895874023 + ], + [ + "▁CPA", + -12.069046020507812 + ], + [ + "▁smiling", + -12.069568634033203 + ], + [ + "▁Imperial", + -12.069711685180664 + ], + [ + "▁scalp", + -12.069828987121582 + ], + [ + "dish", + -12.070110321044922 + ], + [ + "▁Hughes", + -12.070171356201172 + ], + [ + "▁Male", + -12.070239067077637 + ], + [ + "▁Sharp", + -12.070405960083008 + ], + [ + "psy", + -12.070474624633789 + ], + [ + "▁optimistic", + -12.070589065551758 + ], + [ + "▁armor", + -12.07082748413086 + ], + [ + "▁velvet", + -12.071051597595215 + ], + [ + "▁upgrading", + -12.071090698242188 + ], + [ + "▁evenings", + -12.071256637573242 + ], + [ + "▁grease", + -12.071417808532715 + ], + [ + "mous", + -12.071540832519531 + ], + [ + "▁Minor", + -12.071606636047363 + ], + [ + "▁outdated", + -12.07172966003418 + ], + [ + "▁vegetation", + -12.071969985961914 + ], + [ + "▁salaries", + -12.072026252746582 + ], + [ + "▁deadlines", + -12.072029113769531 + ], + [ + "neck", + -12.072221755981445 + ], + [ + "▁Interested", + -12.072376251220703 + ], + [ + "▁ATM", + -12.07260513305664 + ], + [ + "lien", + -12.072796821594238 + ], + [ + "GIS", + -12.073162078857422 + ], + [ + "▁WHO", + -12.073193550109863 + ], + [ + "▁Gem", + -12.073234558105469 + ], + [ + "▁turbine", + -12.073248863220215 + ], + [ + "▁indoors", + -12.07349681854248 + ], + [ + "cock", + -12.073514938354492 + ], + [ + "▁Vincent", + -12.073515892028809 + ], + [ + "▁grapes", + -12.073708534240723 + ], + [ + "CHE", + -12.073729515075684 + ], + [ + "▁sidewalk", + -12.073740005493164 + ], + [ + "▁Venice", + -12.07399845123291 + ], + [ + "▁demanded", + -12.074010848999023 + ], + [ + "▁formally", + -12.074047088623047 + ], + [ + "THER", + -12.07415771484375 + ], + [ + "▁Sandy", + -12.074162483215332 + ], + [ + "▁classrooms", + -12.07418155670166 + ], + [ + "▁Thinking", + -12.074361801147461 + ], + [ + "▁170", + -12.074565887451172 + ], + [ + "▁avenue", + -12.074596405029297 + ], + [ + "FO", + -12.074867248535156 + ], + [ + "ANCE", + -12.074970245361328 + ], + [ + "▁citation", + -12.075106620788574 + ], + [ + "▁bets", + -12.075343132019043 + ], + [ + "▁FR", + -12.075448036193848 + ], + [ + "▁prose", + -12.075544357299805 + ], + [ + "▁Tesla", + -12.075662612915039 + ], + [ + "▁reservoir", + -12.075728416442871 + ], + [ + "2.3", + -12.075960159301758 + ], + [ + "▁peripheral", + -12.075977325439453 + ], + [ + "▁Ethiopia", + -12.076047897338867 + ], + [ + "▁reluctant", + -12.076047897338867 + ], + [ + "▁les", + -12.076088905334473 + ], + [ + "▁Clay", + -12.07618236541748 + ], + [ + "rez", + -12.076227188110352 + ], + [ + "PAC", + -12.076272964477539 + ], + [ + "▁appeals", + -12.076359748840332 + ], + [ + "▁flawless", + -12.076384544372559 + ], + [ + "liner", + -12.076444625854492 + ], + [ + "▁Skype", + -12.076470375061035 + ], + [ + "DER", + -12.076516151428223 + ], + [ + "▁Nag", + -12.076571464538574 + ], + [ + "▁Mos", + -12.076581001281738 + ], + [ + "▁Magn", + -12.076706886291504 + ], + [ + "▁Candidates", + -12.076751708984375 + ], + [ + "▁Powder", + -12.07675838470459 + ], + [ + "thank", + -12.076821327209473 + ], + [ + "▁BEST", + -12.0768404006958 + ], + [ + "▁civic", + -12.076972007751465 + ], + [ + "▁Firefox", + -12.07697868347168 + ], + [ + "▁dysfunction", + -12.077043533325195 + ], + [ + "▁commence", + -12.077105522155762 + ], + [ + "▁captures", + -12.077475547790527 + ], + [ + "▁Wu", + -12.077644348144531 + ], + [ + "▁themed", + -12.07766342163086 + ], + [ + "▁bait", + -12.07777214050293 + ], + [ + "▁rainbow", + -12.077868461608887 + ], + [ + "bate", + -12.077908515930176 + ], + [ + "cla", + -12.077948570251465 + ], + [ + "▁digging", + -12.078025817871094 + ], + [ + "▁Founder", + -12.078246116638184 + ], + [ + "skin", + -12.078478813171387 + ], + [ + "ifies", + -12.078519821166992 + ], + [ + "▁VM", + -12.078592300415039 + ], + [ + "▁carrots", + -12.078594207763672 + ], + [ + "▁Azure", + -12.078635215759277 + ], + [ + "rial", + -12.078641891479492 + ], + [ + "▁CNN", + -12.078865051269531 + ], + [ + "tik", + -12.078985214233398 + ], + [ + "▁Consequently", + -12.079178810119629 + ], + [ + "YA", + -12.079252243041992 + ], + [ + "▁tangible", + -12.079252243041992 + ], + [ + "▁Gan", + -12.079391479492188 + ], + [ + "till", + -12.079546928405762 + ], + [ + "350", + -12.079564094543457 + ], + [ + "▁crank", + -12.079580307006836 + ], + [ + "uber", + -12.079625129699707 + ], + [ + "gol", + -12.079668998718262 + ], + [ + "▁slate", + -12.079689025878906 + ], + [ + "▁disappointing", + -12.079730033874512 + ], + [ + "safe", + -12.07980728149414 + ], + [ + "▁Swift", + -12.07983684539795 + ], + [ + "▁plead", + -12.079852104187012 + ], + [ + "▁acre", + -12.079930305480957 + ], + [ + "▁Rebecca", + -12.079998970031738 + ], + [ + "▁1900", + -12.080035209655762 + ], + [ + "▁collector", + -12.080076217651367 + ], + [ + "▁corrosion", + -12.080355644226074 + ], + [ + "AMP", + -12.08037281036377 + ], + [ + "▁vapor", + -12.080547332763672 + ], + [ + "acc", + -12.08092212677002 + ], + [ + "▁exhibited", + -12.080941200256348 + ], + [ + "▁Rescue", + -12.081121444702148 + ], + [ + "▁Grow", + -12.081279754638672 + ], + [ + "rush", + -12.081510543823242 + ], + [ + "phen", + -12.081539154052734 + ], + [ + "▁rotating", + -12.081774711608887 + ], + [ + "▁fixes", + -12.081966400146484 + ], + [ + "▁heavier", + -12.081974983215332 + ], + [ + "touch", + -12.08199691772461 + ], + [ + "▁Gay", + -12.082262992858887 + ], + [ + "▁4.0", + -12.082298278808594 + ], + [ + "▁Divine", + -12.082371711730957 + ], + [ + "rice", + -12.082548141479492 + ], + [ + "▁puff", + -12.082559585571289 + ], + [ + "▁pleasing", + -12.082576751708984 + ], + [ + "▁lightning", + -12.082759857177734 + ], + [ + "▁Cedar", + -12.0828275680542 + ], + [ + "▁predecessor", + -12.082857131958008 + ], + [ + "▁Desktop", + -12.082890510559082 + ], + [ + "▁spins", + -12.083001136779785 + ], + [ + "▁Gla", + -12.083020210266113 + ], + [ + "▁Athens", + -12.083114624023438 + ], + [ + "▁Province", + -12.08314323425293 + ], + [ + "▁governed", + -12.083170890808105 + ], + [ + "▁gallon", + -12.083334922790527 + ], + [ + "▁Cemetery", + -12.083465576171875 + ], + [ + "trained", + -12.083549499511719 + ], + [ + "▁Sit", + -12.083550453186035 + ], + [ + "pens", + -12.08358383178711 + ], + [ + "▁glitter", + -12.083646774291992 + ], + [ + "▁grind", + -12.083709716796875 + ], + [ + "▁Bis", + -12.083719253540039 + ], + [ + "▁motors", + -12.083927154541016 + ], + [ + "▁wilderness", + -12.084038734436035 + ], + [ + "▁outfits", + -12.084150314331055 + ], + [ + "▁Celtic", + -12.084287643432617 + ], + [ + "▁aerial", + -12.084331512451172 + ], + [ + "▁diy", + -12.084376335144043 + ], + [ + "▁cas", + -12.084396362304688 + ], + [ + "▁comics", + -12.084575653076172 + ], + [ + "▁efficacy", + -12.084610939025879 + ], + [ + "▁AZ", + -12.08482551574707 + ], + [ + "suite", + -12.085351943969727 + ], + [ + "eep", + -12.085363388061523 + ], + [ + "▁alpha", + -12.085622787475586 + ], + [ + "kir", + -12.085772514343262 + ], + [ + "▁Beth", + -12.085786819458008 + ], + [ + "▁boo", + -12.085820198059082 + ], + [ + "▁waiver", + -12.085836410522461 + ], + [ + "grove", + -12.08587646484375 + ], + [ + "▁Croatia", + -12.085902214050293 + ], + [ + "▁Benefits", + -12.085986137390137 + ], + [ + "anim", + -12.086008071899414 + ], + [ + "MAX", + -12.086074829101562 + ], + [ + "▁Deb", + -12.086103439331055 + ], + [ + "▁Problem", + -12.086126327514648 + ], + [ + "▁Tee", + -12.086132049560547 + ], + [ + "api", + -12.086243629455566 + ], + [ + "▁Amanda", + -12.086564064025879 + ], + [ + "▁snapshot", + -12.086647033691406 + ], + [ + "▁Ghana", + -12.086799621582031 + ], + [ + "VR", + -12.08693790435791 + ], + [ + "▁(12", + -12.086954116821289 + ], + [ + "▁Representative", + -12.086970329284668 + ], + [ + "OVER", + -12.086978912353516 + ], + [ + "▁2003,", + -12.086992263793945 + ], + [ + "▁citrus", + -12.087051391601562 + ], + [ + "▁Cherry", + -12.087089538574219 + ], + [ + "▁oversight", + -12.087121963500977 + ], + [ + "▁Poor", + -12.08714485168457 + ], + [ + "hum", + -12.087152481079102 + ], + [ + "▁Structure", + -12.087374687194824 + ], + [ + "▁Blake", + -12.087377548217773 + ], + [ + "▁sparkling", + -12.087446212768555 + ], + [ + "▁Bah", + -12.087663650512695 + ], + [ + "lander", + -12.087716102600098 + ], + [ + "▁Ronald", + -12.087797164916992 + ], + [ + "▁Cars", + -12.087881088256836 + ], + [ + "viv", + -12.087907791137695 + ], + [ + "1.7", + -12.088162422180176 + ], + [ + "▁Fran", + -12.088240623474121 + ], + [ + "▁tens", + -12.088396072387695 + ], + [ + "akh", + -12.088459968566895 + ], + [ + "▁gadgets", + -12.088496208190918 + ], + [ + "ought", + -12.088558197021484 + ], + [ + "Sha", + -12.0885648727417 + ], + [ + "▁Marina", + -12.088605880737305 + ], + [ + "▁Session", + -12.08865737915039 + ], + [ + "▁Jeep", + -12.08900260925293 + ], + [ + "▁Charge", + -12.089065551757812 + ], + [ + "These", + -12.089111328125 + ], + [ + "▁investigators", + -12.089118003845215 + ], + [ + "solve", + -12.089200973510742 + ], + [ + "▁hairstyle", + -12.089271545410156 + ], + [ + "ubi", + -12.089311599731445 + ], + [ + "Ann", + -12.089360237121582 + ], + [ + "▁mist", + -12.089370727539062 + ], + [ + "▁HAVE", + -12.089407920837402 + ], + [ + "USA", + -12.089613914489746 + ], + [ + "cute", + -12.089653968811035 + ], + [ + "-09", + -12.089678764343262 + ], + [ + "▁$300", + -12.089860916137695 + ], + [ + "grown", + -12.090118408203125 + ], + [ + "▁Cardinal", + -12.090154647827148 + ], + [ + "▁canopy", + -12.090291023254395 + ], + [ + "handed", + -12.09032154083252 + ], + [ + "▁interfaces", + -12.090328216552734 + ], + [ + "▁cult", + -12.090402603149414 + ], + [ + "▁Desert", + -12.090500831604004 + ], + [ + "crypt", + -12.090521812438965 + ], + [ + "▁exhausted", + -12.090532302856445 + ], + [ + "▁hello", + -12.090534210205078 + ], + [ + "except", + -12.09061050415039 + ], + [ + "ECT", + -12.090662002563477 + ], + [ + "▁Fourth", + -12.090677261352539 + ], + [ + "▁Rear", + -12.090860366821289 + ], + [ + "▁corrupt", + -12.090906143188477 + ], + [ + "PRO", + -12.091044425964355 + ], + [ + "▁Bulgaria", + -12.091191291809082 + ], + [ + "▁Lounge", + -12.091421127319336 + ], + [ + "▁Dust", + -12.091485977172852 + ], + [ + "▁convicted", + -12.09154224395752 + ], + [ + "▁fats", + -12.091565132141113 + ], + [ + "▁miniature", + -12.091663360595703 + ], + [ + "▁dancers", + -12.09169864654541 + ], + [ + "▁Gel", + -12.091757774353027 + ], + [ + "▁Bali", + -12.091904640197754 + ], + [ + "▁Jin", + -12.091989517211914 + ], + [ + "leading", + -12.092068672180176 + ], + [ + "▁inspector", + -12.092070579528809 + ], + [ + "▁Bryan", + -12.092081069946289 + ], + [ + "▁realizing", + -12.092082023620605 + ], + [ + "▁240", + -12.092126846313477 + ], + [ + "▁scout", + -12.092138290405273 + ], + [ + "▁fairy", + -12.09216594696045 + ], + [ + "▁EA", + -12.0924711227417 + ], + [ + "LIC", + -12.092702865600586 + ], + [ + "▁nutrient", + -12.09272289276123 + ], + [ + "special", + -12.092867851257324 + ], + [ + "▁travelled", + -12.092970848083496 + ], + [ + "1/2", + -12.093031883239746 + ], + [ + "Cat", + -12.093189239501953 + ], + [ + "▁Cave", + -12.093193054199219 + ], + [ + "▁Instant", + -12.0931978225708 + ], + [ + "▁Weekend", + -12.093286514282227 + ], + [ + "▁provincial", + -12.093358039855957 + ], + [ + "▁Cent", + -12.093385696411133 + ], + [ + "▁sadly", + -12.09354305267334 + ], + [ + "▁Sanders", + -12.093828201293945 + ], + [ + "▁lanes", + -12.09406566619873 + ], + [ + "▁sim", + -12.094260215759277 + ], + [ + "xx", + -12.094278335571289 + ], + [ + "▁digest", + -12.094440460205078 + ], + [ + "▁volunteering", + -12.094646453857422 + ], + [ + "▁Offering", + -12.094839096069336 + ], + [ + "▁organizer", + -12.095076560974121 + ], + [ + "uous", + -12.095101356506348 + ], + [ + "▁Bil", + -12.09511947631836 + ], + [ + "1.1", + -12.095298767089844 + ], + [ + "▁resting", + -12.09529972076416 + ], + [ + "▁messy", + -12.095300674438477 + ], + [ + "▁â", + -12.095438957214355 + ], + [ + "▁Nest", + -12.095470428466797 + ], + [ + "urg", + -12.095747947692871 + ], + [ + "lix", + -12.095821380615234 + ], + [ + "▁Venezuela", + -12.095854759216309 + ], + [ + "kay", + -12.095945358276367 + ], + [ + "augh", + -12.096051216125488 + ], + [ + "▁knob", + -12.096110343933105 + ], + [ + "Box", + -12.096217155456543 + ], + [ + "▁Gy", + -12.09626579284668 + ], + [ + "▁Period", + -12.096427917480469 + ], + [ + "thorn", + -12.096566200256348 + ], + [ + "▁antibiotics", + -12.096699714660645 + ], + [ + "HM", + -12.096724510192871 + ], + [ + "▁humanitarian", + -12.096726417541504 + ], + [ + "▁Extract", + -12.096898078918457 + ], + [ + "▁velocity", + -12.096978187561035 + ], + [ + "▁Electronics", + -12.097058296203613 + ], + [ + "▁deputy", + -12.097160339355469 + ], + [ + "10)", + -12.09738540649414 + ], + [ + "Med", + -12.097557067871094 + ], + [ + "urged", + -12.09764289855957 + ], + [ + "888", + -12.097647666931152 + ], + [ + "", + -12.352408409118652 + ], + [ + "▁denim", + -12.35251235961914 + ], + [ + "▁absurd", + -12.352630615234375 + ], + [ + "▁collects", + -12.352836608886719 + ], + [ + "▁Split", + -12.352849960327148 + ], + [ + "▁Kre", + -12.35288143157959 + ], + [ + "▁downtime", + -12.352930068969727 + ], + [ + "gian", + -12.353008270263672 + ], + [ + "founded", + -12.353013038635254 + ], + [ + "▁$150", + -12.353050231933594 + ], + [ + "▁bizarre", + -12.35305118560791 + ], + [ + "▁advent", + -12.353199005126953 + ], + [ + "▁prioritize", + -12.353203773498535 + ], + [ + "▁(16", + -12.353314399719238 + ], + [ + "pton", + -12.353560447692871 + ], + [ + "▁Barnes", + -12.353615760803223 + ], + [ + "ENCE", + -12.353741645812988 + ], + [ + "▁Springfield", + -12.353798866271973 + ], + [ + "0000", + -12.353851318359375 + ], + [ + "▁inconvenience", + -12.35389518737793 + ], + [ + "mpl", + -12.353959083557129 + ], + [ + "modern", + -12.354209899902344 + ], + [ + "▁lust", + -12.35423469543457 + ], + [ + "finder", + -12.354241371154785 + ], + [ + "▁impulse", + -12.354270935058594 + ], + [ + "▁fol", + -12.354395866394043 + ], + [ + "▁Physician", + -12.354416847229004 + ], + [ + "▁labs", + -12.354432106018066 + ], + [ + "▁rehearsal", + -12.354458808898926 + ], + [ + "▁Spiritual", + -12.354574203491211 + ], + [ + "▁Hear", + -12.354761123657227 + ], + [ + "▁southwest", + -12.354783058166504 + ], + [ + "▁introductory", + -12.354881286621094 + ], + [ + "▁contracted", + -12.354899406433105 + ], + [ + "DES", + -12.354914665222168 + ], + [ + "▁inflammatory", + -12.35500431060791 + ], + [ + "▁Fishing", + -12.355212211608887 + ], + [ + "▁boosting", + -12.355273246765137 + ], + [ + "▁eclectic", + -12.355350494384766 + ], + [ + "▁understandable", + -12.355524063110352 + ], + [ + "▁Holdings", + -12.355622291564941 + ], + [ + "escent", + -12.355634689331055 + ], + [ + "▁waterfront", + -12.35581111907959 + ], + [ + "▁obsession", + -12.355894088745117 + ], + [ + "latin", + -12.355896949768066 + ], + [ + "▁Sense", + -12.355902671813965 + ], + [ + "▁Solo", + -12.355953216552734 + ], + [ + "▁Boo", + -12.356157302856445 + ], + [ + "▁Giant", + -12.356217384338379 + ], + [ + "▁Established", + -12.356311798095703 + ], + [ + "▁Jenny", + -12.356429100036621 + ], + [ + "▁Submit", + -12.356446266174316 + ], + [ + "URL", + -12.356450080871582 + ], + [ + "▁prince", + -12.356472969055176 + ], + [ + "player", + -12.356606483459473 + ], + [ + "▁stocking", + -12.356648445129395 + ], + [ + "▁referee", + -12.35666275024414 + ], + [ + "▁Pig", + -12.356673240661621 + ], + [ + "▁medicinal", + -12.356816291809082 + ], + [ + "▁Blvd", + -12.356854438781738 + ], + [ + "▁Created", + -12.356857299804688 + ], + [ + "▁projections", + -12.356863975524902 + ], + [ + "▁Rag", + -12.356921195983887 + ], + [ + "▁Changes", + -12.356952667236328 + ], + [ + "▁ICT", + -12.357002258300781 + ], + [ + "201", + -12.35701847076416 + ], + [ + "▁bullying", + -12.35726261138916 + ], + [ + "▁civilians", + -12.357294082641602 + ], + [ + "▁Gain", + -12.357412338256836 + ], + [ + "▁Boom", + -12.357586860656738 + ], + [ + "▁overhaul", + -12.357589721679688 + ], + [ + "▁Amber", + -12.357625961303711 + ], + [ + "▁rebate", + -12.357718467712402 + ], + [ + "▁Female", + -12.357844352722168 + ], + [ + "▁Dylan", + -12.3578462600708 + ], + [ + "▁cafes", + -12.358004570007324 + ], + [ + "direct", + -12.358059883117676 + ], + [ + "▁disconnect", + -12.358077049255371 + ], + [ + "▁у", + -12.358230590820312 + ], + [ + "▁softer", + -12.35826301574707 + ], + [ + "rub", + -12.358266830444336 + ], + [ + "▁colony", + -12.358363151550293 + ], + [ + "liv", + -12.358404159545898 + ], + [ + "▁Laptop", + -12.358428001403809 + ], + [ + "▁pinterest", + -12.358488082885742 + ], + [ + "▁vpn", + -12.358561515808105 + ], + [ + "▁reg", + -12.358705520629883 + ], + [ + "▁rumors", + -12.358994483947754 + ], + [ + "▁Apartment", + -12.359100341796875 + ], + [ + "▁mentors", + -12.359105110168457 + ], + [ + "▁Moment", + -12.359238624572754 + ], + [ + "▁brokerage", + -12.359386444091797 + ], + [ + "▁ISP", + -12.3594331741333 + ], + [ + "▁pricey", + -12.359434127807617 + ], + [ + "▁comparative", + -12.359743118286133 + ], + [ + "▁burns", + -12.359766006469727 + ], + [ + "▁neighbours", + -12.359870910644531 + ], + [ + "▁Patch", + -12.35992431640625 + ], + [ + "committing", + -12.359972953796387 + ], + [ + "clusion", + -12.359992980957031 + ], + [ + "ст", + -12.359993934631348 + ], + [ + "▁aspirations", + -12.360044479370117 + ], + [ + "▁Holmes", + -12.360052108764648 + ], + [ + "▁Yar", + -12.360063552856445 + ], + [ + "▁destroying", + -12.360089302062988 + ], + [ + "issuing", + -12.360147476196289 + ], + [ + "▁Labs", + -12.36021900177002 + ], + [ + "osphere", + -12.360374450683594 + ], + [ + "hydr", + -12.360431671142578 + ], + [ + "bill", + -12.360696792602539 + ], + [ + "▁brackets", + -12.360697746276855 + ], + [ + "▁popping", + -12.360721588134766 + ], + [ + "▁affiliation", + -12.360861778259277 + ], + [ + "▁calorie", + -12.360930442810059 + ], + [ + "▁icing", + -12.360966682434082 + ], + [ + "▁Shade", + -12.360993385314941 + ], + [ + "▁Louisville", + -12.36099624633789 + ], + [ + "▁Cad", + -12.361029624938965 + ], + [ + "insisted", + -12.361067771911621 + ], + [ + "▁tranquil", + -12.361235618591309 + ], + [ + "▁Duncan", + -12.361248970031738 + ], + [ + "DY", + -12.361250877380371 + ], + [ + "▁rash", + -12.361289024353027 + ], + [ + "▁Abbey", + -12.361383438110352 + ], + [ + "▁GREAT", + -12.361407279968262 + ], + [ + "▁Grid", + -12.361532211303711 + ], + [ + "▁enduring", + -12.361703872680664 + ], + [ + "tral", + -12.36171817779541 + ], + [ + "▁amazingly", + -12.361835479736328 + ], + [ + "▁Monthly", + -12.362395286560059 + ], + [ + "dad", + -12.362757682800293 + ], + [ + "▁Packers", + -12.3628511428833 + ], + [ + "USD", + -12.362959861755371 + ], + [ + "▁whoever", + -12.363086700439453 + ], + [ + "Tri", + -12.363324165344238 + ], + [ + "▁strawberries", + -12.363373756408691 + ], + [ + "▁visualize", + -12.36340045928955 + ], + [ + "▁referenced", + -12.363594055175781 + ], + [ + "▁Piano", + -12.363602638244629 + ], + [ + "Pay", + -12.36368179321289 + ], + [ + "▁Hau", + -12.363740921020508 + ], + [ + "▁Cone", + -12.36377239227295 + ], + [ + "▁contests", + -12.363805770874023 + ], + [ + "▁Lex", + -12.363842010498047 + ], + [ + "▁Pant", + -12.364102363586426 + ], + [ + "depend", + -12.36412525177002 + ], + [ + "▁mentions", + -12.364143371582031 + ], + [ + "Mac", + -12.36414623260498 + ], + [ + "Tra", + -12.364155769348145 + ], + [ + "▁OTHER", + -12.364301681518555 + ], + [ + "▁silicon", + -12.364389419555664 + ], + [ + "resh", + -12.364444732666016 + ], + [ + "hound", + -12.364760398864746 + ], + [ + "▁Timber", + -12.364855766296387 + ], + [ + "▁Kel", + -12.364950180053711 + ], + [ + "▁unlawful", + -12.365174293518066 + ], + [ + "▁buff", + -12.36523151397705 + ], + [ + "▁Omega", + -12.36532211303711 + ], + [ + "▁harmless", + -12.365510940551758 + ], + [ + "▁predator", + -12.365562438964844 + ], + [ + "▁Pixel", + -12.36567211151123 + ], + [ + "icate", + -12.36575984954834 + ], + [ + "▁Musical", + -12.365768432617188 + ], + [ + "▁alley", + -12.36577320098877 + ], + [ + "▁virgin", + -12.365796089172363 + ], + [ + "ignoring", + -12.365840911865234 + ], + [ + "▁cried", + -12.365974426269531 + ], + [ + "lph", + -12.366061210632324 + ], + [ + "▁pickle", + -12.366158485412598 + ], + [ + "▁(2010)", + -12.366268157958984 + ], + [ + "▁HB", + -12.366279602050781 + ], + [ + "▁Huawei", + -12.36630916595459 + ], + [ + "▁Maximum", + -12.366317749023438 + ], + [ + "▁electrician", + -12.366378784179688 + ], + [ + "▁manifestation", + -12.366657257080078 + ], + [ + "▁royalty", + -12.366658210754395 + ], + [ + "STA", + -12.366700172424316 + ], + [ + "▁Caroline", + -12.366765975952148 + ], + [ + "static", + -12.367118835449219 + ], + [ + "▁ERP", + -12.367363929748535 + ], + [ + "▁Sold", + -12.367511749267578 + ], + [ + "▁blink", + -12.367552757263184 + ], + [ + "tucked", + -12.367581367492676 + ], + [ + "▁Odd", + -12.367592811584473 + ], + [ + "▁infamous", + -12.367785453796387 + ], + [ + "▁interrupt", + -12.367791175842285 + ], + [ + "Aside", + -12.367918014526367 + ], + [ + "▁Wellington", + -12.367918014526367 + ], + [ + "▁Jeffrey", + -12.367932319641113 + ], + [ + "OY", + -12.367990493774414 + ], + [ + "▁shaking", + -12.368175506591797 + ], + [ + "▁hut", + -12.368274688720703 + ], + [ + "hak", + -12.368300437927246 + ], + [ + "▁Sul", + -12.36848258972168 + ], + [ + "▁tempting", + -12.368504524230957 + ], + [ + "▁Lawyers", + -12.368515014648438 + ], + [ + "rtz", + -12.368621826171875 + ], + [ + "▁pasture", + -12.368638038635254 + ], + [ + "▁sinks", + -12.368699073791504 + ], + [ + "▁Integration", + -12.369002342224121 + ], + [ + "ERT", + -12.369063377380371 + ], + [ + "▁1.8", + -12.369128227233887 + ], + [ + "▁CNC", + -12.369160652160645 + ], + [ + "▁Approach", + -12.369285583496094 + ], + [ + "boot", + -12.369294166564941 + ], + [ + "▁sourcing", + -12.369338989257812 + ], + [ + "-00", + -12.369455337524414 + ], + [ + "Contin", + -12.369470596313477 + ], + [ + "▁Vick", + -12.3695650100708 + ], + [ + "▁Symposium", + -12.36959171295166 + ], + [ + "▁dividends", + -12.369593620300293 + ], + [ + "▁Indoor", + -12.369638442993164 + ], + [ + "▁Meat", + -12.369650840759277 + ], + [ + "▁drafted", + -12.369650840759277 + ], + [ + "▁enquiry", + -12.3696870803833 + ], + [ + "▁tiger", + -12.36972427368164 + ], + [ + "bic", + -12.369799613952637 + ], + [ + "▁Congrats", + -12.369830131530762 + ], + [ + "▁emphasized", + -12.369858741760254 + ], + [ + "▁Lyon", + -12.369891166687012 + ], + [ + "iment", + -12.370087623596191 + ], + [ + "▁disturbance", + -12.370192527770996 + ], + [ + "▁Whi", + -12.3704252243042 + ], + [ + "▁Refer", + -12.370508193969727 + ], + [ + "▁Rou", + -12.370513916015625 + ], + [ + "▁farther", + -12.370514869689941 + ], + [ + "▁thrust", + -12.370519638061523 + ], + [ + "▁Gilbert", + -12.370665550231934 + ], + [ + "lva", + -12.37074089050293 + ], + [ + "▁Wiki", + -12.37083625793457 + ], + [ + "▁mentioning", + -12.371026992797852 + ], + [ + "те", + -12.37105655670166 + ], + [ + "Gra", + -12.371070861816406 + ], + [ + "-100", + -12.371113777160645 + ], + [ + "mist", + -12.371152877807617 + ], + [ + "▁Roller", + -12.371591567993164 + ], + [ + "Even", + -12.371594429016113 + ], + [ + "▁Attack", + -12.371648788452148 + ], + [ + "carbon", + -12.371675491333008 + ], + [ + "▁mortar", + -12.371681213378906 + ], + [ + "▁spells", + -12.371826171875 + ], + [ + "formed", + -12.371833801269531 + ], + [ + "▁taxation", + -12.371866226196289 + ], + [ + "▁Ark", + -12.37191104888916 + ], + [ + "dip", + -12.371916770935059 + ], + [ + "▁expiration", + -12.371929168701172 + ], + [ + "PCR", + -12.372086524963379 + ], + [ + "▁sym", + -12.372166633605957 + ], + [ + "▁dorm", + -12.372170448303223 + ], + [ + "▁antibody", + -12.372200965881348 + ], + [ + "▁garments", + -12.372200965881348 + ], + [ + "zine", + -12.372213363647461 + ], + [ + "▁repetitive", + -12.372215270996094 + ], + [ + "▁Gala", + -12.372318267822266 + ], + [ + "▁cookbook", + -12.372466087341309 + ], + [ + "▁Artificial", + -12.372502326965332 + ], + [ + "CES", + -12.372507095336914 + ], + [ + "▁Frost", + -12.372550010681152 + ], + [ + "spanning", + -12.372594833374023 + ], + [ + "Inter", + -12.372637748718262 + ], + [ + "▁Dayton", + -12.372672080993652 + ], + [ + "video", + -12.372735977172852 + ], + [ + "▁informational", + -12.37279987335205 + ], + [ + "▁mourn", + -12.37288761138916 + ], + [ + "▁Lor", + -12.372997283935547 + ], + [ + "expressly", + -12.373018264770508 + ], + [ + "▁bidding", + -12.373085975646973 + ], + [ + "▁Norfolk", + -12.373180389404297 + ], + [ + "·", + -12.373214721679688 + ], + [ + "▁Writers", + -12.37327766418457 + ], + [ + "idge", + -12.373357772827148 + ], + [ + "▁lavender", + -12.373747825622559 + ], + [ + "vig", + -12.373825073242188 + ], + [ + "▁Toy", + -12.373854637145996 + ], + [ + "▁drawback", + -12.373945236206055 + ], + [ + "themed", + -12.374112129211426 + ], + [ + "▁eventual", + -12.374147415161133 + ], + [ + "▁conception", + -12.374211311340332 + ], + [ + "haft", + -12.374288558959961 + ], + [ + "▁Trim", + -12.374296188354492 + ], + [ + "▁Jur", + -12.374341011047363 + ], + [ + "moti", + -12.374488830566406 + ], + [ + "rule", + -12.37454605102539 + ], + [ + "▁tread", + -12.374635696411133 + ], + [ + "▁capsule", + -12.37481689453125 + ], + [ + "model", + -12.374833106994629 + ], + [ + "gul", + -12.374881744384766 + ], + [ + "▁beneficiaries", + -12.375085830688477 + ], + [ + "▁#4", + -12.375123023986816 + ], + [ + "▁Papa", + -12.37519359588623 + ], + [ + "elen", + -12.375199317932129 + ], + [ + "▁Instructor", + -12.375279426574707 + ], + [ + "▁certainty", + -12.375295639038086 + ], + [ + "valu", + -12.37531566619873 + ], + [ + "▁Scha", + -12.37562084197998 + ], + [ + "lining", + -12.375799179077148 + ], + [ + "▁Malta", + -12.375809669494629 + ], + [ + "▁Persian", + -12.375911712646484 + ], + [ + "▁trainee", + -12.376020431518555 + ], + [ + "▁insurer", + -12.376054763793945 + ], + [ + "Div", + -12.376080513000488 + ], + [ + "▁Cher", + -12.376110076904297 + ], + [ + "▁cigarette", + -12.376118659973145 + ], + [ + "▁Shake", + -12.376126289367676 + ], + [ + "▁upfront", + -12.376303672790527 + ], + [ + "▁postal", + -12.37658977508545 + ], + [ + "▁Smooth", + -12.376957893371582 + ], + [ + "▁controllers", + -12.37708854675293 + ], + [ + "▁antioxidants", + -12.377226829528809 + ], + [ + "▁regression", + -12.377418518066406 + ], + [ + "9,000", + -12.377449989318848 + ], + [ + "▁linguistic", + -12.377498626708984 + ], + [ + "series", + -12.377544403076172 + ], + [ + "index", + -12.377605438232422 + ], + [ + "▁graphical", + -12.37767505645752 + ], + [ + "▁CHA", + -12.377760887145996 + ], + [ + "▁empowered", + -12.377836227416992 + ], + [ + "▁Paw", + -12.377877235412598 + ], + [ + "▁racist", + -12.37788200378418 + ], + [ + "reminiscent", + -12.377971649169922 + ], + [ + "▁Durham", + -12.3780517578125 + ], + [ + "▁diary", + -12.378405570983887 + ], + [ + "approved", + -12.378472328186035 + ], + [ + "▁Angels", + -12.37852954864502 + ], + [ + "▁Rum", + -12.378551483154297 + ], + [ + "omas", + -12.378647804260254 + ], + [ + "▁(+", + -12.37867546081543 + ], + [ + "▁terminals", + -12.378692626953125 + ], + [ + "▁firefighter", + -12.3787841796875 + ], + [ + "Max", + -12.37891960144043 + ], + [ + "▁по", + -12.378995895385742 + ], + [ + "▁Engagement", + -12.379100799560547 + ], + [ + "▁dug", + -12.379297256469727 + ], + [ + "▁cavity", + -12.379303932189941 + ], + [ + "▁Vietnamese", + -12.379312515258789 + ], + [ + "▁carbs", + -12.379341125488281 + ], + [ + "▁230", + -12.379531860351562 + ], + [ + "util", + -12.379539489746094 + ], + [ + "160", + -12.379561424255371 + ], + [ + "▁newcomer", + -12.379581451416016 + ], + [ + "▁KO", + -12.379643440246582 + ], + [ + "▁mainland", + -12.379812240600586 + ], + [ + "▁criminals", + -12.380202293395996 + ], + [ + "▁outsourcing", + -12.38026237487793 + ], + [ + "mbre", + -12.38029670715332 + ], + [ + "▁mash", + -12.380414962768555 + ], + [ + "▁Hawaiian", + -12.380541801452637 + ], + [ + "IAN", + -12.380555152893066 + ], + [ + "FX", + -12.380691528320312 + ], + [ + "▁migrants", + -12.380743980407715 + ], + [ + "▁aperture", + -12.380804061889648 + ], + [ + "▁conversions", + -12.380918502807617 + ], + [ + "▁infringement", + -12.381096839904785 + ], + [ + "▁heck", + -12.381383895874023 + ], + [ + "▁faulty", + -12.381467819213867 + ], + [ + "wich", + -12.38155746459961 + ], + [ + "*****", + -12.381610870361328 + ], + [ + "Her", + -12.381712913513184 + ], + [ + "▁pores", + -12.381732940673828 + ], + [ + "▁Jewelry", + -12.381818771362305 + ], + [ + "▁screaming", + -12.381866455078125 + ], + [ + "▁Selling", + -12.381877899169922 + ], + [ + "▁uninstall", + -12.381891250610352 + ], + [ + "▁Mess", + -12.381928443908691 + ], + [ + "▁memo", + -12.381936073303223 + ], + [ + "▁Timothy", + -12.382105827331543 + ], + [ + "cab", + -12.382123947143555 + ], + [ + "Reg", + -12.382129669189453 + ], + [ + "Mobile", + -12.382309913635254 + ], + [ + "▁sil", + -12.38238525390625 + ], + [ + "▁pivot", + -12.382438659667969 + ], + [ + "▁Doll", + -12.382526397705078 + ], + [ + "bread", + -12.382533073425293 + ], + [ + "▁Vanity", + -12.382637977600098 + ], + [ + "priced", + -12.383003234863281 + ], + [ + "▁perceptions", + -12.383024215698242 + ], + [ + "▁Latino", + -12.383057594299316 + ], + [ + "▁temptation", + -12.383095741271973 + ], + [ + "▁harbour", + -12.383119583129883 + ], + [ + "▁antioxidant", + -12.383265495300293 + ], + [ + "▁Files", + -12.38337230682373 + ], + [ + "▁favourites", + -12.383427619934082 + ], + [ + "▁pineapple", + -12.3836030960083 + ], + [ + "▁Alexa", + -12.383613586425781 + ], + [ + "▁Eating", + -12.383692741394043 + ], + [ + "Great", + -12.38376235961914 + ], + [ + "▁infrared", + -12.383795738220215 + ], + [ + "▁verdict", + -12.383878707885742 + ], + [ + "▁Sullivan", + -12.38392448425293 + ], + [ + "▁Issues", + -12.38408088684082 + ], + [ + "▁Nicola", + -12.384121894836426 + ], + [ + "▁sedan", + -12.384148597717285 + ], + [ + "▁discoveries", + -12.384207725524902 + ], + [ + "▁emergence", + -12.384231567382812 + ], + [ + "▁copying", + -12.38428020477295 + ], + [ + "▁(2015)", + -12.384387016296387 + ], + [ + "▁newsletters", + -12.384622573852539 + ], + [ + "hopper", + -12.384686470031738 + ], + [ + "▁plantation", + -12.384737014770508 + ], + [ + "ür", + -12.384780883789062 + ], + [ + "▁Troy", + -12.384936332702637 + ], + [ + "▁Known", + -12.385138511657715 + ], + [ + "▁£5", + -12.385194778442383 + ], + [ + "Red", + -12.385296821594238 + ], + [ + "▁Rosen", + -12.385330200195312 + ], + [ + "▁unload", + -12.385360717773438 + ], + [ + "▁repeating", + -12.38546371459961 + ], + [ + "▁listener", + -12.385526657104492 + ], + [ + "▁Sister", + -12.38556957244873 + ], + [ + "▁Tara", + -12.385613441467285 + ], + [ + "iku", + -12.385626792907715 + ], + [ + "gur", + -12.385647773742676 + ], + [ + "▁Bottle", + -12.385658264160156 + ], + [ + "▁accelerated", + -12.385836601257324 + ], + [ + "gain", + -12.386065483093262 + ], + [ + "▁glazed", + -12.386120796203613 + ], + [ + "rber", + -12.386171340942383 + ], + [ + "ALS", + -12.386200904846191 + ], + [ + "▁Monica", + -12.386259078979492 + ], + [ + "Make", + -12.386265754699707 + ], + [ + "▁conceived", + -12.386272430419922 + ], + [ + "▁6:00", + -12.386321067810059 + ], + [ + "▁Deluxe", + -12.386458396911621 + ], + [ + "▁Dynamics", + -12.386490821838379 + ], + [ + "▁pumping", + -12.386491775512695 + ], + [ + "▁fictional", + -12.386548042297363 + ], + [ + "mbi", + -12.386550903320312 + ], + [ + "▁Trainer", + -12.386579513549805 + ], + [ + "▁Ethics", + -12.386749267578125 + ], + [ + "▁evaluations", + -12.386885643005371 + ], + [ + "▁Pharmaceutical", + -12.386991500854492 + ], + [ + "▁Seg", + -12.387029647827148 + ], + [ + "375", + -12.387077331542969 + ], + [ + "für", + -12.387142181396484 + ], + [ + "▁ETF", + -12.387249946594238 + ], + [ + "▁solicitor", + -12.387282371520996 + ], + [ + "large", + -12.387351036071777 + ], + [ + "▁solder", + -12.387369155883789 + ], + [ + "▁smash", + -12.3873872756958 + ], + [ + "After", + -12.38742733001709 + ], + [ + "▁shoots", + -12.387589454650879 + ], + [ + "▁Basin", + -12.387735366821289 + ], + [ + "garde", + -12.387794494628906 + ], + [ + "▁Investors", + -12.387798309326172 + ], + [ + "▁Everybody", + -12.387825965881348 + ], + [ + "▁Scroll", + -12.387919425964355 + ], + [ + "▁versa", + -12.387961387634277 + ], + [ + "▁idol", + -12.387984275817871 + ], + [ + "▁Jacket", + -12.388032913208008 + ], + [ + "▁juices", + -12.388077735900879 + ], + [ + "6.0", + -12.388147354125977 + ], + [ + "Ste", + -12.388162612915039 + ], + [ + "7.5", + -12.388166427612305 + ], + [ + "igne", + -12.388328552246094 + ], + [ + "▁promoter", + -12.38833999633789 + ], + [ + "▁presenter", + -12.388343811035156 + ], + [ + "▁Epic", + -12.388384819030762 + ], + [ + "▁preparations", + -12.388500213623047 + ], + [ + "▁woodland", + -12.388510704040527 + ], + [ + "San", + -12.388585090637207 + ], + [ + "▁pear", + -12.388591766357422 + ], + [ + "litis", + -12.388705253601074 + ], + [ + "▁mattresses", + -12.388784408569336 + ], + [ + "ORE", + -12.388815879821777 + ], + [ + "YO", + -12.389031410217285 + ], + [ + "▁dependence", + -12.38919448852539 + ], + [ + "▁semiconductor", + -12.3892240524292 + ], + [ + "▁thou", + -12.389293670654297 + ], + [ + "▁deposited", + -12.389317512512207 + ], + [ + "4.4", + -12.38943099975586 + ], + [ + "▁Evolution", + -12.38945484161377 + ], + [ + "factor", + -12.38950252532959 + ], + [ + "▁malt", + -12.389679908752441 + ], + [ + "▁Speak", + -12.389698028564453 + ], + [ + "▁Wan", + -12.38973617553711 + ], + [ + "▁youngsters", + -12.38976001739502 + ], + [ + "▁republic", + -12.389779090881348 + ], + [ + "▁philosopher", + -12.38980770111084 + ], + [ + "Of", + -12.390143394470215 + ], + [ + "remarkably", + -12.39018726348877 + ], + [ + "▁Boulevard", + -12.39024543762207 + ], + [ + "cry", + -12.390271186828613 + ], + [ + "▁Plumbing", + -12.390498161315918 + ], + [ + "zip", + -12.390507698059082 + ], + [ + "functional", + -12.390525817871094 + ], + [ + "▁Dial", + -12.390586853027344 + ], + [ + "▁racks", + -12.390691757202148 + ], + [ + "117", + -12.390847206115723 + ], + [ + "▁Ubuntu", + -12.390877723693848 + ], + [ + "▁reliance", + -12.390877723693848 + ], + [ + "▁Already", + -12.390966415405273 + ], + [ + "▁PlayStation", + -12.391023635864258 + ], + [ + "▁collage", + -12.391035079956055 + ], + [ + "INS", + -12.391039848327637 + ], + [ + "▁Henderson", + -12.391120910644531 + ], + [ + "▁Across", + -12.391324043273926 + ], + [ + "▁parental", + -12.391337394714355 + ], + [ + "▁Debt", + -12.391365051269531 + ], + [ + "▁Sprint", + -12.391427993774414 + ], + [ + "Mod", + -12.391522407531738 + ], + [ + "shift", + -12.39167594909668 + ], + [ + "-80", + -12.391690254211426 + ], + [ + "▁SAN", + -12.391733169555664 + ], + [ + "▁Windsor", + -12.391746520996094 + ], + [ + "-90", + -12.391790390014648 + ], + [ + "First", + -12.391824722290039 + ], + [ + "owski", + -12.392036437988281 + ], + [ + "▁Volvo", + -12.392366409301758 + ], + [ + "aber", + -12.392416000366211 + ], + [ + "▁Charm", + -12.39246940612793 + ], + [ + "SOL", + -12.392535209655762 + ], + [ + "▁HTC", + -12.392559051513672 + ], + [ + "▁bombing", + -12.392624855041504 + ], + [ + "▁3%", + -12.392629623413086 + ], + [ + "▁privileges", + -12.39264965057373 + ], + [ + "risti", + -12.392728805541992 + ], + [ + "▁sounding", + -12.392762184143066 + ], + [ + "▁Erin", + -12.392791748046875 + ], + [ + "▁plush", + -12.392816543579102 + ], + [ + "▁Noble", + -12.392926216125488 + ], + [ + "lung", + -12.392938613891602 + ], + [ + "DIA", + -12.39302921295166 + ], + [ + "▁Sharing", + -12.393050193786621 + ], + [ + "▁mutations", + -12.393160820007324 + ], + [ + "▁iteration", + -12.39324951171875 + ], + [ + "▁Gym", + -12.39326286315918 + ], + [ + "lose", + -12.393354415893555 + ], + [ + "▁Fusion", + -12.39338493347168 + ], + [ + "▁Sak", + -12.393441200256348 + ], + [ + "▁Quotes", + -12.393451690673828 + ], + [ + "▁nutritious", + -12.393509864807129 + ], + [ + "lbs", + -12.393592834472656 + ], + [ + "conscious", + -12.393623352050781 + ], + [ + "▁teammates", + -12.393802642822266 + ], + [ + "▁chunk", + -12.393837928771973 + ], + [ + "▁bonded", + -12.393844604492188 + ], + [ + "▁Lean", + -12.393854141235352 + ], + [ + "▁rugby", + -12.393889427185059 + ], + [ + "Ideally", + -12.393890380859375 + ], + [ + "EMA", + -12.393941879272461 + ], + [ + "▁nausea", + -12.393951416015625 + ], + [ + "▁neurons", + -12.394013404846191 + ], + [ + "▁Westminster", + -12.394144058227539 + ], + [ + "▁elevate", + -12.394219398498535 + ], + [ + "▁Buzz", + -12.394482612609863 + ], + [ + "▁Pokemon", + -12.394735336303711 + ], + [ + "▁(2014)", + -12.39504337310791 + ], + [ + "▁weeds", + -12.395076751708984 + ], + [ + "▁Reality", + -12.395108222961426 + ], + [ + "▁traveler", + -12.395112037658691 + ], + [ + "▁enamel", + -12.39511489868164 + ], + [ + "▁slash", + -12.395151138305664 + ], + [ + "▁Spice", + -12.395272254943848 + ], + [ + "▁Commander", + -12.395403861999512 + ], + [ + "illian", + -12.395618438720703 + ], + [ + "▁Chal", + -12.39562702178955 + ], + [ + "▁Lawn", + -12.395719528198242 + ], + [ + "▁Poetry", + -12.395735740661621 + ], + [ + "luc", + -12.395798683166504 + ], + [ + "arro", + -12.395963668823242 + ], + [ + "▁cheerful", + -12.395973205566406 + ], + [ + "▁strawberry", + -12.396021842956543 + ], + [ + "UNI", + -12.396023750305176 + ], + [ + "▁Rank", + -12.39630126953125 + ], + [ + "▁(2012)", + -12.396357536315918 + ], + [ + "▁resides", + -12.396451950073242 + ], + [ + "▁biography", + -12.396590232849121 + ], + [ + "▁Zhang", + -12.396699905395508 + ], + [ + "loop", + -12.396797180175781 + ], + [ + "▁northwest", + -12.396830558776855 + ], + [ + "▁1/3", + -12.396950721740723 + ], + [ + "List", + -12.397232055664062 + ], + [ + "▁Hearing", + -12.397249221801758 + ], + [ + "▁tack", + -12.397334098815918 + ], + [ + "▁flake", + -12.397482872009277 + ], + [ + "▁maritime", + -12.397722244262695 + ], + [ + "▁Cran", + -12.397911071777344 + ], + [ + "▁sul", + -12.397920608520508 + ], + [ + "refundable", + -12.397934913635254 + ], + [ + "▁handbag", + -12.398022651672363 + ], + [ + "project", + -12.398041725158691 + ], + [ + "▁TIP", + -12.398041725158691 + ], + [ + "▁sip", + -12.398115158081055 + ], + [ + "LINE", + -12.398148536682129 + ], + [ + "▁enthusiast", + -12.398247718811035 + ], + [ + "depicted", + -12.398258209228516 + ], + [ + "cism", + -12.398308753967285 + ], + [ + "patch", + -12.398394584655762 + ], + [ + "▁mushroom", + -12.398477554321289 + ], + [ + "▁AMD", + -12.398524284362793 + ], + [ + "esque", + -12.39858341217041 + ], + [ + "▁Emp", + -12.398602485656738 + ], + [ + "▁sediment", + -12.398612022399902 + ], + [ + "▁Harvest", + -12.39866828918457 + ], + [ + "▁Relax", + -12.398809432983398 + ], + [ + "▁complained", + -12.398881912231445 + ], + [ + "▁populated", + -12.399065017700195 + ], + [ + "▁Units", + -12.399251937866211 + ], + [ + "▁Till", + -12.399395942687988 + ], + [ + "▁scaling", + -12.399848937988281 + ], + [ + "-70", + -12.399866104125977 + ], + [ + "▁Brett", + -12.399920463562012 + ], + [ + "▁Garcia", + -12.399941444396973 + ], + [ + "consuming", + -12.400010108947754 + ], + [ + "▁cracking", + -12.40011978149414 + ], + [ + "uffle", + -12.400128364562988 + ], + [ + "▁cultivate", + -12.400160789489746 + ], + [ + "▁filmed", + -12.400216102600098 + ], + [ + "▁Derek", + -12.400291442871094 + ], + [ + "▁Rates", + -12.400314331054688 + ], + [ + "▁Businesses", + -12.400445938110352 + ], + [ + "▁Powell", + -12.400566101074219 + ], + [ + "▁testimonials", + -12.400578498840332 + ], + [ + "WM", + -12.40068531036377 + ], + [ + "Power", + -12.4007568359375 + ], + [ + "▁coping", + -12.400775909423828 + ], + [ + "▁WIN", + -12.400788307189941 + ], + [ + "▁Essex", + -12.400798797607422 + ], + [ + "▁expire", + -12.40085220336914 + ], + [ + "▁Jer", + -12.400912284851074 + ], + [ + "▁unleash", + -12.401004791259766 + ], + [ + "▁Randy", + -12.401021957397461 + ], + [ + "bir", + -12.401122093200684 + ], + [ + "▁accustomed", + -12.401151657104492 + ], + [ + "▁Rebel", + -12.401226043701172 + ], + [ + "▁Vacation", + -12.401238441467285 + ], + [ + "zza", + -12.401284217834473 + ], + [ + "alone", + -12.401344299316406 + ], + [ + "▁mixes", + -12.401388168334961 + ], + [ + "▁Compact", + -12.401446342468262 + ], + [ + "▁Gregory", + -12.401449203491211 + ], + [ + "Pass", + -12.401494026184082 + ], + [ + "▁digestion", + -12.401504516601562 + ], + [ + "▁throne", + -12.401610374450684 + ], + [ + "▁aspiring", + -12.401650428771973 + ], + [ + "▁computational", + -12.401895523071289 + ], + [ + "▁Kro", + -12.401991844177246 + ], + [ + "▁canoe", + -12.402050971984863 + ], + [ + "asia", + -12.402090072631836 + ], + [ + "▁sunrise", + -12.402199745178223 + ], + [ + "▁recruiter", + -12.402202606201172 + ], + [ + "rach", + -12.402227401733398 + ], + [ + "AZ", + -12.402233123779297 + ], + [ + "▁eighteen", + -12.40274715423584 + ], + [ + "▁Speech", + -12.40275764465332 + ], + [ + "▁Pierre", + -12.402788162231445 + ], + [ + "▁Wallace", + -12.402815818786621 + ], + [ + "▁Flying", + -12.40302562713623 + ], + [ + "▁joyful", + -12.403155326843262 + ], + [ + "News", + -12.403176307678223 + ], + [ + "itive", + -12.403189659118652 + ], + [ + "pea", + -12.403258323669434 + ], + [ + "▁volatile", + -12.403319358825684 + ], + [ + "confronted", + -12.403326988220215 + ], + [ + "dust", + -12.403528213500977 + ], + [ + "▁Wake", + -12.403552055358887 + ], + [ + "stumbled", + -12.40372371673584 + ], + [ + "2,500", + -12.403761863708496 + ], + [ + "DW", + -12.40378189086914 + ], + [ + "sig", + -12.40393352508545 + ], + [ + "▁exchanged", + -12.40410327911377 + ], + [ + "commercial", + -12.404184341430664 + ], + [ + "rada", + -12.404342651367188 + ], + [ + "▁usable", + -12.404438972473145 + ], + [ + "▁Dai", + -12.404523849487305 + ], + [ + "▁handset", + -12.40457534790039 + ], + [ + "▁potassium", + -12.404600143432617 + ], + [ + "deb", + -12.404606819152832 + ], + [ + "rome", + -12.404668807983398 + ], + [ + "▁hu", + -12.404776573181152 + ], + [ + "▁Armstrong", + -12.40485954284668 + ], + [ + "ifiable", + -12.404915809631348 + ], + [ + "▁Profit", + -12.404915809631348 + ], + [ + "▁Topic", + -12.404932022094727 + ], + [ + "▁spectator", + -12.405095100402832 + ], + [ + "wine", + -12.405242919921875 + ], + [ + "▁wandering", + -12.405498504638672 + ], + [ + "▁Understand", + -12.405567169189453 + ], + [ + "▁quirky", + -12.405610084533691 + ], + [ + "▁traumatic", + -12.405630111694336 + ], + [ + "▁northeast", + -12.405838966369629 + ], + [ + "▁booster", + -12.40588092803955 + ], + [ + "diff", + -12.405890464782715 + ], + [ + "▁skincare", + -12.405895233154297 + ], + [ + "true", + -12.406155586242676 + ], + [ + "etc", + -12.406187057495117 + ], + [ + "▁Liu", + -12.406232833862305 + ], + [ + "▁ounces", + -12.406277656555176 + ], + [ + "▁Mira", + -12.406281471252441 + ], + [ + "▁escaped", + -12.406376838684082 + ], + [ + "▁pursued", + -12.406397819519043 + ], + [ + "opathy", + -12.406423568725586 + ], + [ + "ICA", + -12.406451225280762 + ], + [ + "▁burgers", + -12.40652847290039 + ], + [ + "OVE", + -12.406622886657715 + ], + [ + "▁meanwhile", + -12.406774520874023 + ], + [ + "▁deaf", + -12.406829833984375 + ], + [ + "▁summarize", + -12.406956672668457 + ], + [ + "▁certifications", + -12.407155990600586 + ], + [ + "▁staring", + -12.407336235046387 + ], + [ + "▁academy", + -12.407515525817871 + ], + [ + "▁vicinity", + -12.407565116882324 + ], + [ + "▁Monroe", + -12.407614707946777 + ], + [ + "osity", + -12.40774917602539 + ], + [ + "▁Quilt", + -12.407867431640625 + ], + [ + "centered", + -12.40795612335205 + ], + [ + "▁Café", + -12.408011436462402 + ], + [ + "WAR", + -12.40805435180664 + ], + [ + "▁scrutiny", + -12.408308029174805 + ], + [ + "▁Cabinets", + -12.408315658569336 + ], + [ + "▁compositions", + -12.408388137817383 + ], + [ + "▁Maxim", + -12.408799171447754 + ], + [ + "▁Computing", + -12.408853530883789 + ], + [ + "▁Operator", + -12.408981323242188 + ], + [ + "▁undermine", + -12.408997535705566 + ], + [ + "▁Sai", + -12.409082412719727 + ], + [ + "▁Slow", + -12.409265518188477 + ], + [ + "5.6", + -12.409290313720703 + ], + [ + "jor", + -12.40938949584961 + ], + [ + "▁violin", + -12.40961742401123 + ], + [ + "▁cigarettes", + -12.409642219543457 + ], + [ + "price", + -12.409807205200195 + ], + [ + "▁despair", + -12.410043716430664 + ], + [ + "▁staffing", + -12.41024398803711 + ], + [ + "▁Apache", + -12.410282135009766 + ], + [ + "▁Aurora", + -12.410591125488281 + ], + [ + "▁Rip", + -12.410612106323242 + ], + [ + "▁Ng", + -12.410774230957031 + ], + [ + "DOT", + -12.41093635559082 + ], + [ + "developed", + -12.41094970703125 + ], + [ + "ously", + -12.410962104797363 + ], + [ + "▁electoral", + -12.411006927490234 + ], + [ + "support", + -12.41114616394043 + ], + [ + "endorsed", + -12.411340713500977 + ], + [ + "build", + -12.411478042602539 + ], + [ + "luck", + -12.41161823272705 + ], + [ + "▁Bears", + -12.411674499511719 + ], + [ + "▁packets", + -12.411684036254883 + ], + [ + "▁Bark", + -12.411791801452637 + ], + [ + "▁forensic", + -12.411974906921387 + ], + [ + "▁Cowboy", + -12.411993026733398 + ], + [ + "equate", + -12.41201114654541 + ], + [ + "▁ART", + -12.412141799926758 + ], + [ + "▁Lay", + -12.412223815917969 + ], + [ + "▁Translation", + -12.4122314453125 + ], + [ + "▁metropolitan", + -12.412281036376953 + ], + [ + "▁Associated", + -12.412332534790039 + ], + [ + "▁buckle", + -12.412415504455566 + ], + [ + "▁Height", + -12.41248893737793 + ], + [ + "▁Doctors", + -12.412540435791016 + ], + [ + "kim", + -12.41259765625 + ], + [ + "▁Kerry", + -12.412622451782227 + ], + [ + "packed", + -12.412717819213867 + ], + [ + "▁gradient", + -12.412924766540527 + ], + [ + "Archived", + -12.413000106811523 + ], + [ + "TIM", + -12.413002967834473 + ], + [ + "▁mindfulness", + -12.413068771362305 + ], + [ + "▁shareholder", + -12.413116455078125 + ], + [ + "LAS", + -12.41317081451416 + ], + [ + "ussi", + -12.413180351257324 + ], + [ + "grand", + -12.413349151611328 + ], + [ + "▁communal", + -12.413397789001465 + ], + [ + "▁planners", + -12.413432121276855 + ], + [ + "▁outright", + -12.413471221923828 + ], + [ + "▁Gibson", + -12.413473129272461 + ], + [ + "▁succession", + -12.413631439208984 + ], + [ + "▁deviation", + -12.413773536682129 + ], + [ + "ectomy", + -12.413823127746582 + ], + [ + "▁sam", + -12.413865089416504 + ], + [ + "▁insightful", + -12.413975715637207 + ], + [ + "Sea", + -12.414009094238281 + ], + [ + "plug", + -12.414207458496094 + ], + [ + "▁hamper", + -12.414310455322266 + ], + [ + "▁Awareness", + -12.414320945739746 + ], + [ + "▁Jill", + -12.41440486907959 + ], + [ + "▁detention", + -12.41440486907959 + ], + [ + "▁burnt", + -12.41447639465332 + ], + [ + "▁6.5", + -12.41447925567627 + ], + [ + "▁Comprehensive", + -12.414668083190918 + ], + [ + "BY", + -12.414681434631348 + ], + [ + "Share", + -12.41469669342041 + ], + [ + "▁Wendy", + -12.414767265319824 + ], + [ + "Back", + -12.414892196655273 + ], + [ + "▁thriller", + -12.41489315032959 + ], + [ + "4.3", + -12.414899826049805 + ], + [ + "60,000", + -12.41500473022461 + ], + [ + "ution", + -12.415079116821289 + ], + [ + "▁Thermo", + -12.415294647216797 + ], + [ + "▁Apollo", + -12.415316581726074 + ], + [ + "▁Sheffield", + -12.41536808013916 + ], + [ + "hala", + -12.415473937988281 + ], + [ + "▁(2011)", + -12.41551399230957 + ], + [ + "▁Restoration", + -12.415565490722656 + ], + [ + "▁augment", + -12.415609359741211 + ], + [ + "▁Friendly", + -12.415645599365234 + ], + [ + "▁renovations", + -12.415650367736816 + ], + [ + "▁fluids", + -12.41569709777832 + ], + [ + "▁Princeton", + -12.415724754333496 + ], + [ + "lium", + -12.415809631347656 + ], + [ + "▁knives", + -12.415815353393555 + ], + [ + "▁unchanged", + -12.415865898132324 + ], + [ + "▁Hosting", + -12.416040420532227 + ], + [ + "▁stools", + -12.41604995727539 + ], + [ + "▁Pharmacy", + -12.416126251220703 + ], + [ + "▁Wheat", + -12.41620922088623 + ], + [ + "▁Stefan", + -12.416237831115723 + ], + [ + "oids", + -12.416348457336426 + ], + [ + "▁cellar", + -12.416367530822754 + ], + [ + "▁Sno", + -12.416388511657715 + ], + [ + "▁molding", + -12.416397094726562 + ], + [ + "1,000", + -12.41640853881836 + ], + [ + "▁borrowed", + -12.416770935058594 + ], + [ + "▁connectors", + -12.416823387145996 + ], + [ + "130", + -12.416894912719727 + ], + [ + "▁chimney", + -12.416913986206055 + ], + [ + "▁Morocco", + -12.416927337646484 + ], + [ + "▁Chairs", + -12.417041778564453 + ], + [ + "▁daytime", + -12.417081832885742 + ], + [ + "5-7", + -12.417144775390625 + ], + [ + "ENG", + -12.41718864440918 + ], + [ + "▁stresses", + -12.41733169555664 + ], + [ + "▁reversed", + -12.417344093322754 + ], + [ + "▁Clock", + -12.417351722717285 + ], + [ + "▁Parties", + -12.417362213134766 + ], + [ + "▁0.3", + -12.417364120483398 + ], + [ + "▁fled", + -12.417447090148926 + ], + [ + "▁Inch", + -12.417548179626465 + ], + [ + "▁tuna", + -12.417583465576172 + ], + [ + "loved", + -12.417652130126953 + ], + [ + "▁alcoholic", + -12.417828559875488 + ], + [ + "▁plots", + -12.418319702148438 + ], + [ + "▁unsuccessful", + -12.418414115905762 + ], + [ + "▁Flip", + -12.418463706970215 + ], + [ + "nbsp", + -12.41858196258545 + ], + [ + "2.9", + -12.418811798095703 + ], + [ + "▁Pod", + -12.418940544128418 + ], + [ + "iche", + -12.418953895568848 + ], + [ + "▁settlements", + -12.418998718261719 + ], + [ + "▁Marriage", + -12.419164657592773 + ], + [ + "▁someday", + -12.41919994354248 + ], + [ + "▁immunity", + -12.419214248657227 + ], + [ + "▁Contractor", + -12.419266700744629 + ], + [ + "▁graft", + -12.419408798217773 + ], + [ + "▁concludes", + -12.41943645477295 + ], + [ + "▁suburban", + -12.419503211975098 + ], + [ + "▁presumably", + -12.419522285461426 + ], + [ + "▁shingle", + -12.419530868530273 + ], + [ + "▁Couple", + -12.419622421264648 + ], + [ + "▁bishop", + -12.419759750366211 + ], + [ + "▁Meal", + -12.419854164123535 + ], + [ + "▁Pride", + -12.419990539550781 + ], + [ + "▁Skip", + -12.42020320892334 + ], + [ + "▁entirety", + -12.420204162597656 + ], + [ + "▁contracting", + -12.420258522033691 + ], + [ + "Ros", + -12.420387268066406 + ], + [ + "▁Petr", + -12.420416831970215 + ], + [ + "▁seekers", + -12.420581817626953 + ], + [ + "▁witch", + -12.420588493347168 + ], + [ + "avour", + -12.420655250549316 + ], + [ + "▁scratches", + -12.42067813873291 + ], + [ + "admin", + -12.420703887939453 + ], + [ + "▁Include", + -12.420796394348145 + ], + [ + "record", + -12.4208345413208 + ], + [ + "▁pane", + -12.420918464660645 + ], + [ + "VAL", + -12.421075820922852 + ], + [ + "▁Salmon", + -12.421103477478027 + ], + [ + "Medic", + -12.421162605285645 + ], + [ + "▁Sally", + -12.421181678771973 + ], + [ + "▁Merry", + -12.421351432800293 + ], + [ + "▁Shepherd", + -12.421470642089844 + ], + [ + "▁GMT", + -12.421530723571777 + ], + [ + "▁stubborn", + -12.421587944030762 + ], + [ + "▁Articles", + -12.421648979187012 + ], + [ + "listed", + -12.421652793884277 + ], + [ + "▁equations", + -12.421773910522461 + ], + [ + "▁Breast", + -12.421853065490723 + ], + [ + "▁lotion", + -12.421859741210938 + ], + [ + "▁Grim", + -12.421982765197754 + ], + [ + "450", + -12.422026634216309 + ], + [ + "▁Rare", + -12.422038078308105 + ], + [ + "Uploaded", + -12.422290802001953 + ], + [ + "▁cabbage", + -12.422432899475098 + ], + [ + "▁briefing", + -12.422433853149414 + ], + [ + "▁Unity", + -12.42250919342041 + ], + [ + "again", + -12.422638893127441 + ], + [ + "▁furnish", + -12.422760009765625 + ], + [ + "▁cooled", + -12.422783851623535 + ], + [ + "▁Sudan", + -12.422961235046387 + ], + [ + "Uni", + -12.423077583312988 + ], + [ + "▁lifts", + -12.423237800598145 + ], + [ + "follow", + -12.423384666442871 + ], + [ + "▁twisted", + -12.4233980178833 + ], + [ + "hub", + -12.4234037399292 + ], + [ + "ishing", + -12.423492431640625 + ], + [ + "usse", + -12.423600196838379 + ], + [ + "▁monument", + -12.423639297485352 + ], + [ + "▁rails", + -12.423639297485352 + ], + [ + "▁telecom", + -12.423662185668945 + ], + [ + "▁Demand", + -12.423763275146484 + ], + [ + "▁Gifts", + -12.423785209655762 + ], + [ + "▁mantra", + -12.423788070678711 + ], + [ + "▁wit", + -12.423826217651367 + ], + [ + "▁feather", + -12.423870086669922 + ], + [ + "▁claw", + -12.423872947692871 + ], + [ + "▁Presentation", + -12.4238920211792 + ], + [ + "▁veg", + -12.424060821533203 + ], + [ + "stow", + -12.424070358276367 + ], + [ + "▁curator", + -12.424139976501465 + ], + [ + "2.0", + -12.424333572387695 + ], + [ + "▁brewing", + -12.424489974975586 + ], + [ + "▁Rider", + -12.424641609191895 + ], + [ + "▁hated", + -12.424714088439941 + ], + [ + "▁commenting", + -12.42475700378418 + ], + [ + "▁inspires", + -12.42485523223877 + ], + [ + "▁Manor", + -12.424872398376465 + ], + [ + "▁redemption", + -12.424888610839844 + ], + [ + "▁caravan", + -12.424893379211426 + ], + [ + "ли", + -12.424909591674805 + ], + [ + "plasm", + -12.424920082092285 + ], + [ + "▁stitching", + -12.42506217956543 + ], + [ + "!!!!!", + -12.425216674804688 + ], + [ + "EY", + -12.425233840942383 + ], + [ + "▁Tie", + -12.425372123718262 + ], + [ + "▁traps", + -12.425540924072266 + ], + [ + "▁Damage", + -12.42554759979248 + ], + [ + "▁staging", + -12.425559997558594 + ], + [ + "▁reels", + -12.425647735595703 + ], + [ + "▁Megan", + -12.425690650939941 + ], + [ + "reach", + -12.425749778747559 + ], + [ + "232", + -12.425762176513672 + ], + [ + "▁contaminated", + -12.426047325134277 + ], + [ + "▁selfish", + -12.426056861877441 + ], + [ + "▁overlay", + -12.426068305969238 + ], + [ + "▁Granite", + -12.426131248474121 + ], + [ + "▁Klein", + -12.426225662231445 + ], + [ + "▁Drivers", + -12.426322937011719 + ], + [ + "HG", + -12.426363945007324 + ], + [ + "▁Trace", + -12.426473617553711 + ], + [ + "kul", + -12.426636695861816 + ], + [ + "▁irrelevant", + -12.426652908325195 + ], + [ + "▁directive", + -12.426692008972168 + ], + [ + "won", + -12.4268159866333 + ], + [ + "▁kilo", + -12.426835060119629 + ], + [ + "▁deepest", + -12.426896095275879 + ], + [ + "▁methodologies", + -12.427059173583984 + ], + [ + "▁slept", + -12.42715835571289 + ], + [ + "▁inspected", + -12.427255630493164 + ], + [ + "▁terminated", + -12.427337646484375 + ], + [ + "▁invoices", + -12.427431106567383 + ], + [ + "▁deepen", + -12.42746353149414 + ], + [ + "▁signatures", + -12.427502632141113 + ], + [ + "epsi", + -12.427542686462402 + ], + [ + "professional", + -12.427613258361816 + ], + [ + "▁identities", + -12.42761516571045 + ], + [ + "chemistry", + -12.427790641784668 + ], + [ + "▁30,000", + -12.42785358428955 + ], + [ + "▁GET", + -12.427858352661133 + ], + [ + "▁Kos", + -12.427906036376953 + ], + [ + "▁Explain", + -12.42816162109375 + ], + [ + "▁distortion", + -12.428179740905762 + ], + [ + "▁gutters", + -12.42818546295166 + ], + [ + "▁1/2\"", + -12.428244590759277 + ], + [ + "▁Bour", + -12.428337097167969 + ], + [ + "▁stocked", + -12.428360939025879 + ], + [ + "▁programmed", + -12.42839241027832 + ], + [ + "▁stealing", + -12.428443908691406 + ], + [ + "▁majestic", + -12.428470611572266 + ], + [ + "▁Chronicle", + -12.428638458251953 + ], + [ + "▁chunks", + -12.428648948669434 + ], + [ + "▁Diabetes", + -12.428773880004883 + ], + [ + "▁CIA", + -12.428851127624512 + ], + [ + "▁poles", + -12.428871154785156 + ], + [ + "hack", + -12.42889404296875 + ], + [ + "▁Accept", + -12.428956031799316 + ], + [ + "Air", + -12.429051399230957 + ], + [ + "▁Leicester", + -12.429128646850586 + ], + [ + "▁Facility", + -12.429129600524902 + ], + [ + "▁striving", + -12.429179191589355 + ], + [ + "▁Carroll", + -12.429215431213379 + ], + [ + "▁Warning", + -12.429314613342285 + ], + [ + "▁Candy", + -12.429327011108398 + ], + [ + "▁souvenir", + -12.429431915283203 + ], + [ + "▁PCI", + -12.429691314697266 + ], + [ + "▁Jacobs", + -12.42978572845459 + ], + [ + "▁Crazy", + -12.429938316345215 + ], + [ + "▁1948", + -12.430012702941895 + ], + [ + "▁formatting", + -12.430194854736328 + ], + [ + "▁Bread", + -12.430350303649902 + ], + [ + "egan", + -12.43038558959961 + ], + [ + "▁contractual", + -12.430464744567871 + ], + [ + "▁Rand", + -12.430617332458496 + ], + [ + "▁Deals", + -12.430646896362305 + ], + [ + "▁erosion", + -12.430656433105469 + ], + [ + "▁carbohydrates", + -12.430843353271484 + ], + [ + "▁LAN", + -12.431163787841797 + ], + [ + "encompasses", + -12.431230545043945 + ], + [ + "▁5:30", + -12.431402206420898 + ], + [ + "▁(2016)", + -12.431404113769531 + ], + [ + "▁Conn", + -12.431404113769531 + ], + [ + "secure", + -12.431546211242676 + ], + [ + "401", + -12.43166732788086 + ], + [ + "▁Knights", + -12.431672096252441 + ], + [ + "▁youthful", + -12.431753158569336 + ], + [ + "▁harvested", + -12.431767463684082 + ], + [ + "▁Printing", + -12.43188762664795 + ], + [ + "▁Powered", + -12.431912422180176 + ], + [ + "▁Travis", + -12.431915283203125 + ], + [ + "▁Ferrari", + -12.431984901428223 + ], + [ + "People", + -12.432050704956055 + ], + [ + "▁puppies", + -12.432229042053223 + ], + [ + "▁deliberate", + -12.432278633117676 + ], + [ + "icon", + -12.43244743347168 + ], + [ + "rack", + -12.432452201843262 + ], + [ + "rena", + -12.432458877563477 + ], + [ + "▁Pill", + -12.432476997375488 + ], + [ + "▁permissions", + -12.432519912719727 + ], + [ + "between", + -12.432730674743652 + ], + [ + "▁Trader", + -12.432793617248535 + ], + [ + "awaiting", + -12.432823181152344 + ], + [ + "▁Palestine", + -12.43282699584961 + ], + [ + "▁Pole", + -12.4329195022583 + ], + [ + "▁specialised", + -12.432952880859375 + ], + [ + "▁dreaming", + -12.433161735534668 + ], + [ + "▁extracts", + -12.43330192565918 + ], + [ + "▁1959", + -12.433390617370605 + ], + [ + "MAP", + -12.43349552154541 + ], + [ + "bies", + -12.433602333068848 + ], + [ + "▁relentless", + -12.433690071105957 + ], + [ + "▁frankly", + -12.433767318725586 + ], + [ + "▁hunter", + -12.433816909790039 + ], + [ + "▁Rotary", + -12.43384075164795 + ], + [ + "▁sixteen", + -12.433979034423828 + ], + [ + "▁Amp", + -12.43402099609375 + ], + [ + "▁103", + -12.434096336364746 + ], + [ + "▁tents", + -12.434128761291504 + ], + [ + "▁Gad", + -12.434711456298828 + ], + [ + "▁unite", + -12.434748649597168 + ], + [ + "wak", + -12.434795379638672 + ], + [ + "▁Forbes", + -12.434832572937012 + ], + [ + "capped", + -12.434982299804688 + ], + [ + "▁broaden", + -12.43514633178711 + ], + [ + "▁saucepan", + -12.435198783874512 + ], + [ + "▁continental", + -12.435203552246094 + ], + [ + "▁Clarke", + -12.435234069824219 + ], + [ + "440", + -12.435403823852539 + ], + [ + "▁nuance", + -12.435473442077637 + ], + [ + "smart", + -12.435847282409668 + ], + [ + "▁unsafe", + -12.435860633850098 + ], + [ + "▁Examination", + -12.43587875366211 + ], + [ + "laz", + -12.435895919799805 + ], + [ + "partisan", + -12.435918807983398 + ], + [ + "▁Spy", + -12.435933113098145 + ], + [ + "▁crumb", + -12.435946464538574 + ], + [ + "▁telescope", + -12.435955047607422 + ], + [ + "▁surveyed", + -12.435978889465332 + ], + [ + "pyr", + -12.435997009277344 + ], + [ + "▁Purpose", + -12.436056137084961 + ], + [ + "▁sunscreen", + -12.436083793640137 + ], + [ + "NIC", + -12.436089515686035 + ], + [ + "emer", + -12.436219215393066 + ], + [ + "▁fundamentally", + -12.436271667480469 + ], + [ + "▁savvy", + -12.436355590820312 + ], + [ + "▁abdominal", + -12.436386108398438 + ], + [ + "need", + -12.43639850616455 + ], + [ + "▁overweight", + -12.43652057647705 + ], + [ + "▁Wooden", + -12.436594009399414 + ], + [ + "▁rude", + -12.436713218688965 + ], + [ + "▁UNESCO", + -12.43704891204834 + ], + [ + "▁establishments", + -12.437060356140137 + ], + [ + "▁turnaround", + -12.437118530273438 + ], + [ + "▁brushed", + -12.437244415283203 + ], + [ + "▁drones", + -12.437294006347656 + ], + [ + "▁Squ", + -12.437296867370605 + ], + [ + "notch", + -12.437429428100586 + ], + [ + "chal", + -12.437440872192383 + ], + [ + "▁rectangle", + -12.437559127807617 + ], + [ + "ographer", + -12.437638282775879 + ], + [ + "▁Healing", + -12.43774700164795 + ], + [ + "▁Lone", + -12.437771797180176 + ], + [ + "▁burglar", + -12.437854766845703 + ], + [ + "▁explorer", + -12.437911033630371 + ], + [ + "catching", + -12.437918663024902 + ], + [ + "erator", + -12.438004493713379 + ], + [ + "▁Dim", + -12.438131332397461 + ], + [ + "▁geek", + -12.438209533691406 + ], + [ + "▁Rom", + -12.438218116760254 + ], + [ + "▁IR", + -12.438223838806152 + ], + [ + "▁Regard", + -12.438271522521973 + ], + [ + "▁wicked", + -12.438383102416992 + ], + [ + "▁debates", + -12.438423156738281 + ], + [ + "▁supporter", + -12.438434600830078 + ], + [ + "▁reckon", + -12.43847942352295 + ], + [ + "April", + -12.438678741455078 + ], + [ + "▁popcorn", + -12.438879013061523 + ], + [ + "▁AJ", + -12.4389009475708 + ], + [ + "▁Won", + -12.438922882080078 + ], + [ + "ATS", + -12.439005851745605 + ], + [ + "KING", + -12.439030647277832 + ], + [ + "worn", + -12.439044952392578 + ], + [ + "etter", + -12.439128875732422 + ], + [ + "affi", + -12.439299583435059 + ], + [ + "▁Hale", + -12.439375877380371 + ], + [ + "noid", + -12.439448356628418 + ], + [ + "▁Remodel", + -12.439699172973633 + ], + [ + "▁excerpt", + -12.439702987670898 + ], + [ + "lil", + -12.439984321594238 + ], + [ + "▁Changing", + -12.44002914428711 + ], + [ + "▁Reuters", + -12.440255165100098 + ], + [ + "▁arbitrary", + -12.440317153930664 + ], + [ + "▁SITE", + -12.440350532531738 + ], + [ + "weep", + -12.440468788146973 + ], + [ + "Build", + -12.440637588500977 + ], + [ + "gist", + -12.440835952758789 + ], + [ + "▁perimeter", + -12.44088077545166 + ], + [ + "▁MW", + -12.44090461730957 + ], + [ + "▁endangered", + -12.440930366516113 + ], + [ + "▁evoke", + -12.440956115722656 + ], + [ + "▁repay", + -12.441104888916016 + ], + [ + "rek", + -12.441388130187988 + ], + [ + "▁Satellite", + -12.441390991210938 + ], + [ + "▁Lynch", + -12.44140625 + ], + [ + "▁idle", + -12.441516876220703 + ], + [ + "▁concurrent", + -12.44151782989502 + ], + [ + "▁milling", + -12.441591262817383 + ], + [ + "▁Reid", + -12.441706657409668 + ], + [ + "▁fertility", + -12.441851615905762 + ], + [ + "▁Transition", + -12.442066192626953 + ], + [ + "quel", + -12.442254066467285 + ], + [ + "▁Drake", + -12.442397117614746 + ], + [ + "▁jerseys", + -12.442495346069336 + ], + [ + "Compared", + -12.4425048828125 + ], + [ + "▁tumble", + -12.442631721496582 + ], + [ + "6.2", + -12.442794799804688 + ], + [ + "▁$11", + -12.443005561828613 + ], + [ + "▁ratios", + -12.443192481994629 + ], + [ + "▁perennial", + -12.443197250366211 + ], + [ + "▁Religion", + -12.443236351013184 + ], + [ + "▁unbelievable", + -12.443355560302734 + ], + [ + "ados", + -12.443361282348633 + ], + [ + "▁experimenting", + -12.443525314331055 + ], + [ + "▁Conf", + -12.443572044372559 + ], + [ + "gru", + -12.443581581115723 + ], + [ + "▁Holidays", + -12.443703651428223 + ], + [ + "▁Discuss", + -12.443748474121094 + ], + [ + "North", + -12.443798065185547 + ], + [ + "▁satin", + -12.44379997253418 + ], + [ + "▁omission", + -12.443800926208496 + ], + [ + "▁leaking", + -12.44394588470459 + ], + [ + "▁bloody", + -12.444113731384277 + ], + [ + "▁collaborating", + -12.44421100616455 + ], + [ + "▁fingertips", + -12.444211959838867 + ], + [ + "▁mansion", + -12.444268226623535 + ], + [ + "▁attachments", + -12.44428539276123 + ], + [ + "▁Funny", + -12.444331169128418 + ], + [ + "▁clicked", + -12.44433307647705 + ], + [ + "▁Initial", + -12.444364547729492 + ], + [ + "▁wetland", + -12.44450855255127 + ], + [ + "▁lawsuits", + -12.444544792175293 + ], + [ + "fusion", + -12.444586753845215 + ], + [ + "▁slipped", + -12.444624900817871 + ], + [ + "▁religions", + -12.444634437561035 + ], + [ + "▁impart", + -12.444665908813477 + ], + [ + "▁accord", + -12.444673538208008 + ], + [ + "▁multiply", + -12.44468879699707 + ], + [ + "▁poke", + -12.444721221923828 + ], + [ + "▁Depression", + -12.444841384887695 + ], + [ + "▁Transit", + -12.444916725158691 + ], + [ + "▁loosen", + -12.444951057434082 + ], + [ + "GEN", + -12.44495964050293 + ], + [ + "▁servants", + -12.444977760314941 + ], + [ + "▁stew", + -12.444981575012207 + ], + [ + "▁memoir", + -12.444995880126953 + ], + [ + "▁ambulance", + -12.445033073425293 + ], + [ + "East", + -12.445262908935547 + ], + [ + "anism", + -12.445323944091797 + ], + [ + "▁axe", + -12.445409774780273 + ], + [ + "▁suspects", + -12.445429801940918 + ], + [ + "▁Emirates", + -12.44580364227295 + ], + [ + "chief", + -12.445836067199707 + ], + [ + "▁residual", + -12.446009635925293 + ], + [ + "▁weekday", + -12.446017265319824 + ], + [ + "▁discs", + -12.44609546661377 + ], + [ + "phosphate", + -12.446187019348145 + ], + [ + "▁pharmacist", + -12.446267127990723 + ], + [ + "▁Lily", + -12.446296691894531 + ], + [ + "six", + -12.446319580078125 + ], + [ + "▁slogan", + -12.446322441101074 + ], + [ + "▁Istanbul", + -12.446369171142578 + ], + [ + "established", + -12.446395874023438 + ], + [ + "▁accidental", + -12.446491241455078 + ], + [ + "▁resignation", + -12.446574211120605 + ], + [ + "▁demolition", + -12.446626663208008 + ], + [ + "▁Concord", + -12.44668960571289 + ], + [ + "▁NF", + -12.446690559387207 + ], + [ + "▁Deliver", + -12.446742057800293 + ], + [ + "▁braces", + -12.44684886932373 + ], + [ + "▁contender", + -12.44686222076416 + ], + [ + "▁bothered", + -12.446884155273438 + ], + [ + "▁possesses", + -12.44709587097168 + ], + [ + "▁Convert", + -12.44711685180664 + ], + [ + "iously", + -12.447151184082031 + ], + [ + "▁Colors", + -12.447179794311523 + ], + [ + "▁Petro", + -12.447293281555176 + ], + [ + "▁Alumni", + -12.44771671295166 + ], + [ + "disc", + -12.447813034057617 + ], + [ + "▁synth", + -12.448005676269531 + ], + [ + "▁statewide", + -12.448029518127441 + ], + [ + "▁humour", + -12.448066711425781 + ], + [ + "▁Manage", + -12.448528289794922 + ], + [ + "▁probable", + -12.448539733886719 + ], + [ + "▁worksheet", + -12.448569297790527 + ], + [ + "▁platinum", + -12.448636054992676 + ], + [ + "▁slavery", + -12.448690414428711 + ], + [ + "▁REAL", + -12.448854446411133 + ], + [ + "▁Coral", + -12.448866844177246 + ], + [ + "▁Novel", + -12.44890308380127 + ], + [ + "▁guru", + -12.44898509979248 + ], + [ + "▁exporter", + -12.449013710021973 + ], + [ + "▁Shannon", + -12.449070930480957 + ], + [ + "▁riot", + -12.449084281921387 + ], + [ + "URE", + -12.449136734008789 + ], + [ + "▁Casey", + -12.449197769165039 + ], + [ + "tackling", + -12.44922924041748 + ], + [ + "TRO", + -12.449338912963867 + ], + [ + "▁Beast", + -12.449362754821777 + ], + [ + "Ru", + -12.449549674987793 + ], + [ + "▁Blair", + -12.449666023254395 + ], + [ + "▁JD", + -12.449666023254395 + ], + [ + "▁violated", + -12.44975471496582 + ], + [ + "▁hierarchy", + -12.4497709274292 + ], + [ + "▁Realtor", + -12.44990348815918 + ], + [ + "phor", + -12.449938774108887 + ], + [ + "▁lone", + -12.449958801269531 + ], + [ + "▁scalable", + -12.449995994567871 + ], + [ + "▁hover", + -12.450050354003906 + ], + [ + "1.2", + -12.450066566467285 + ], + [ + "▁Quote", + -12.450165748596191 + ], + [ + "caster", + -12.450177192687988 + ], + [ + "▁classy", + -12.450288772583008 + ], + [ + "▁hrs", + -12.450589179992676 + ], + [ + "▁ceremonies", + -12.45064926147461 + ], + [ + "EEN", + -12.450681686401367 + ], + [ + "why", + -12.450773239135742 + ], + [ + "▁Talking", + -12.45077896118164 + ], + [ + "▁comforter", + -12.450835227966309 + ], + [ + "▁Cit", + -12.450896263122559 + ], + [ + "▁campuses", + -12.45090389251709 + ], + [ + "▁drafting", + -12.451363563537598 + ], + [ + "▁Celebration", + -12.451373100280762 + ], + [ + "▁Apartments", + -12.451386451721191 + ], + [ + "▁flooded", + -12.45138931274414 + ], + [ + "▁YES", + -12.451495170593262 + ], + [ + "▁Smile", + -12.451537132263184 + ], + [ + "▁vow", + -12.451627731323242 + ], + [ + "▁ribs", + -12.451934814453125 + ], + [ + "▁Tanzania", + -12.451942443847656 + ], + [ + "▁merged", + -12.452083587646484 + ], + [ + "labor", + -12.4520845413208 + ], + [ + "▁Spe", + -12.452106475830078 + ], + [ + "stroke", + -12.452149391174316 + ], + [ + "▁passages", + -12.452408790588379 + ], + [ + "▁congestion", + -12.452497482299805 + ], + [ + "▁Random", + -12.452524185180664 + ], + [ + "▁banners", + -12.452542304992676 + ], + [ + "▁Strike", + -12.452607154846191 + ], + [ + "▁trout", + -12.45273208618164 + ], + [ + "▁singers", + -12.452752113342285 + ], + [ + "▁detergent", + -12.45279312133789 + ], + [ + "&#", + -12.452816009521484 + ], + [ + "▁Franco", + -12.452850341796875 + ], + [ + "▁Crushing", + -12.452923774719238 + ], + [ + "▁selfie", + -12.453023910522461 + ], + [ + "▁Trend", + -12.453173637390137 + ], + [ + "bull", + -12.453459739685059 + ], + [ + "▁Curtain", + -12.45350170135498 + ], + [ + "▁voyage", + -12.45356273651123 + ], + [ + "SCI", + -12.453636169433594 + ], + [ + ":23", + -12.45365047454834 + ], + [ + "▁Aus", + -12.453666687011719 + ], + [ + ",000,000", + -12.453707695007324 + ], + [ + "▁jurisdictions", + -12.453798294067383 + ], + [ + "▁scanned", + -12.453824996948242 + ], + [ + "▁purity", + -12.454023361206055 + ], + [ + "▁speeches", + -12.454046249389648 + ], + [ + "▁Diane", + -12.454054832458496 + ], + [ + "▁Edmonton", + -12.454066276550293 + ], + [ + "▁southeast", + -12.454078674316406 + ], + [ + "▁Spotify", + -12.454117774963379 + ], + [ + "▁veterinarian", + -12.454117774963379 + ], + [ + "▁Mostly", + -12.45423698425293 + ], + [ + "▁ignition", + -12.45438003540039 + ], + [ + "▁pigs", + -12.454398155212402 + ], + [ + "▁Nail", + -12.454421997070312 + ], + [ + "gues", + -12.454513549804688 + ], + [ + "leveraging", + -12.454578399658203 + ], + [ + "▁Fiction", + -12.454660415649414 + ], + [ + "▁4,000", + -12.454736709594727 + ], + [ + ":22", + -12.454787254333496 + ], + [ + "▁Sprinkle", + -12.454854011535645 + ], + [ + "▁Producer", + -12.455209732055664 + ], + [ + "▁kitten", + -12.455245018005371 + ], + [ + "▁Kru", + -12.455259323120117 + ], + [ + "▁Accounts", + -12.455327033996582 + ], + [ + "Seems", + -12.455392837524414 + ], + [ + "▁Singer", + -12.4554443359375 + ], + [ + "▁flea", + -12.455510139465332 + ], + [ + "▁Pont", + -12.455607414245605 + ], + [ + "▁crossover", + -12.455609321594238 + ], + [ + "QUI", + -12.455708503723145 + ], + [ + "▁hinder", + -12.455766677856445 + ], + [ + "please", + -12.455960273742676 + ], + [ + "▁streamlined", + -12.456271171569824 + ], + [ + "▁Architects", + -12.456275939941406 + ], + [ + "▁WAS", + -12.456300735473633 + ], + [ + "▁cedar", + -12.456315040588379 + ], + [ + "▁campsite", + -12.456587791442871 + ], + [ + "▁Prague", + -12.45671272277832 + ], + [ + "▁PIN", + -12.456741333007812 + ], + [ + "▁stereotype", + -12.45675277709961 + ], + [ + "▁theaters", + -12.456755638122559 + ], + [ + "▁Proof", + -12.456771850585938 + ], + [ + "▁translations", + -12.456880569458008 + ], + [ + "▁permitting", + -12.456921577453613 + ], + [ + "▁reactor", + -12.45693588256836 + ], + [ + "▁Pediatric", + -12.457025527954102 + ], + [ + "▁breakout", + -12.457052230834961 + ], + [ + "▁unwind", + -12.457147598266602 + ], + [ + "▁plank", + -12.457149505615234 + ], + [ + "▁Been", + -12.45719051361084 + ], + [ + "▁veins", + -12.457280158996582 + ], + [ + "▁confess", + -12.457716941833496 + ], + [ + "PIC", + -12.457890510559082 + ], + [ + "▁Sox", + -12.457930564880371 + ], + [ + "▁Positive", + -12.457962989807129 + ], + [ + "tique", + -12.4580659866333 + ], + [ + "▁preventive", + -12.458076477050781 + ], + [ + "cient", + -12.45810317993164 + ], + [ + "zio", + -12.458120346069336 + ], + [ + "▁refuge", + -12.458136558532715 + ], + [ + "language", + -12.458176612854004 + ], + [ + "ncy", + -12.458206176757812 + ], + [ + "▁Janet", + -12.458233833312988 + ], + [ + "connect", + -12.458271980285645 + ], + [ + "▁cathedral", + -12.45832633972168 + ], + [ + "blast", + -12.458372116088867 + ], + [ + "▁tracker", + -12.458378791809082 + ], + [ + "▁farmhouse", + -12.458440780639648 + ], + [ + "OV", + -12.458500862121582 + ], + [ + "▁Vent", + -12.458517074584961 + ], + [ + "▁Burger", + -12.458663940429688 + ], + [ + "▁Escape", + -12.45883560180664 + ], + [ + "▁wager", + -12.458841323852539 + ], + [ + "▁juvenile", + -12.458950996398926 + ], + [ + "▁coefficient", + -12.459041595458984 + ], + [ + "▁enhancements", + -12.459092140197754 + ], + [ + "▁tortilla", + -12.45910930633545 + ], + [ + "▁cubes", + -12.459152221679688 + ], + [ + "▁consolidated", + -12.459280967712402 + ], + [ + "▁Brady", + -12.459477424621582 + ], + [ + "▁Writer", + -12.459583282470703 + ], + [ + "▁companions", + -12.459674835205078 + ], + [ + "▁Dimensions", + -12.459794998168945 + ], + [ + "▁Poli", + -12.459837913513184 + ], + [ + "202", + -12.46007251739502 + ], + [ + "Page", + -12.460128784179688 + ], + [ + "▁pitching", + -12.460150718688965 + ], + [ + "▁chapel", + -12.460346221923828 + ], + [ + "▁7.5", + -12.460355758666992 + ], + [ + "▁1958", + -12.460399627685547 + ], + [ + "▁Vit", + -12.460541725158691 + ], + [ + "pla", + -12.460548400878906 + ], + [ + "▁iphone", + -12.460594177246094 + ], + [ + "▁biodiversity", + -12.460619926452637 + ], + [ + "▁calibration", + -12.460619926452637 + ], + [ + "Over", + -12.460644721984863 + ], + [ + "▁physiological", + -12.460672378540039 + ], + [ + "▁(30", + -12.46072006225586 + ], + [ + "▁heaters", + -12.460808753967285 + ], + [ + "▁Bloomberg", + -12.460919380187988 + ], + [ + "▁Kathy", + -12.460944175720215 + ], + [ + "▁salsa", + -12.461090087890625 + ], + [ + "▁asylum", + -12.461213111877441 + ], + [ + "121", + -12.461235046386719 + ], + [ + "▁Passion", + -12.461235046386719 + ], + [ + "▁ignorance", + -12.461246490478516 + ], + [ + "turned", + -12.46131706237793 + ], + [ + "▁Palestinians", + -12.46138858795166 + ], + [ + "▁Stuff", + -12.461466789245605 + ], + [ + "▁commodities", + -12.461507797241211 + ], + [ + "▁lookout", + -12.461562156677246 + ], + [ + "▁Identify", + -12.46160888671875 + ], + [ + "▁resurrection", + -12.461617469787598 + ], + [ + "soluble", + -12.461774826049805 + ], + [ + "▁replies", + -12.461926460266113 + ], + [ + "blew", + -12.461976051330566 + ], + [ + "street", + -12.462089538574219 + ], + [ + "▁descriptive", + -12.462239265441895 + ], + [ + "▁cloudy", + -12.462414741516113 + ], + [ + "▁Answers", + -12.462516784667969 + ], + [ + "▁acupuncture", + -12.462657928466797 + ], + [ + "▁supervised", + -12.462664604187012 + ], + [ + "▁disappoint", + -12.462669372558594 + ], + [ + "4.5", + -12.462727546691895 + ], + [ + "PAR", + -12.462777137756348 + ], + [ + "▁hostile", + -12.462790489196777 + ], + [ + "▁crosses", + -12.462809562683105 + ], + [ + "▁occupant", + -12.462814331054688 + ], + [ + "▁cruel", + -12.46282958984375 + ], + [ + "▁Outstanding", + -12.462847709655762 + ], + [ + "▁Trent", + -12.463013648986816 + ], + [ + "GER", + -12.46313762664795 + ], + [ + "▁Shawn", + -12.463171005249023 + ], + [ + "0.5", + -12.463210105895996 + ], + [ + "▁wrestling", + -12.46323299407959 + ], + [ + "▁corps", + -12.463258743286133 + ], + [ + "▁imprint", + -12.463296890258789 + ], + [ + "▁USDA", + -12.463361740112305 + ], + [ + "▁puppet", + -12.46336841583252 + ], + [ + "bron", + -12.463443756103516 + ], + [ + "▁glove", + -12.463458061218262 + ], + [ + "▁HOME", + -12.463485717773438 + ], + [ + "▁lucrative", + -12.463546752929688 + ], + [ + "▁weighed", + -12.463611602783203 + ], + [ + "▁penetration", + -12.463651657104492 + ], + [ + "▁Mug", + -12.463726997375488 + ], + [ + "▁makeover", + -12.4637451171875 + ], + [ + "plethor", + -12.463773727416992 + ], + [ + "auer", + -12.4638032913208 + ], + [ + "▁bakery", + -12.463817596435547 + ], + [ + "▁Owners", + -12.463913917541504 + ], + [ + "▁Kom", + -12.464048385620117 + ], + [ + "▁Solomon", + -12.464085578918457 + ], + [ + "simi", + -12.464112281799316 + ], + [ + "material", + -12.464287757873535 + ], + [ + "▁destiny", + -12.464346885681152 + ], + [ + "▁111", + -12.464347839355469 + ], + [ + "▁dumps", + -12.464406967163086 + ], + [ + "▁auf", + -12.464448928833008 + ], + [ + "▁broccoli", + -12.464489936828613 + ], + [ + "grabbing", + -12.464533805847168 + ], + [ + "▁Kashmir", + -12.464542388916016 + ], + [ + "▁Kerala", + -12.464738845825195 + ], + [ + "strom", + -12.464764595031738 + ], + [ + "Fun", + -12.464849472045898 + ], + [ + "blaze", + -12.464855194091797 + ], + [ + "mediated", + -12.46496868133545 + ], + [ + "▁Tape", + -12.4650297164917 + ], + [ + "climbed", + -12.465126991271973 + ], + [ + "▁External", + -12.46517276763916 + ], + [ + "surpassed", + -12.465335845947266 + ], + [ + "▁propaganda", + -12.465380668640137 + ], + [ + "▁pyramid", + -12.465433120727539 + ], + [ + ":21", + -12.465461730957031 + ], + [ + "stitution", + -12.46551513671875 + ], + [ + "orous", + -12.465535163879395 + ], + [ + "CSA", + -12.465547561645508 + ], + [ + "▁Presidential", + -12.465635299682617 + ], + [ + "▁precipitation", + -12.465642929077148 + ], + [ + "▁appetizer", + -12.46569538116455 + ], + [ + "▁$14", + -12.46570110321045 + ], + [ + "▁glacier", + -12.46590518951416 + ], + [ + "▁proficient", + -12.465957641601562 + ], + [ + "lani", + -12.465975761413574 + ], + [ + "▁Dig", + -12.466018676757812 + ], + [ + "▁lord", + -12.466097831726074 + ], + [ + "▁Proc", + -12.466273307800293 + ], + [ + "Situated", + -12.46627426147461 + ], + [ + "▁receipts", + -12.466428756713867 + ], + [ + "▁collapsed", + -12.466534614562988 + ], + [ + "▁Shirt", + -12.466632843017578 + ], + [ + "▁Turk", + -12.46678352355957 + ], + [ + "▁lava", + -12.466795921325684 + ], + [ + "155", + -12.466798782348633 + ], + [ + "▁ecosystems", + -12.466838836669922 + ], + [ + "▁recon", + -12.466878890991211 + ], + [ + "▁175", + -12.466920852661133 + ], + [ + "rigg", + -12.467193603515625 + ], + [ + "▁eclipse", + -12.467375755310059 + ], + [ + "▁nominal", + -12.467415809631348 + ], + [ + "zin", + -12.46741771697998 + ], + [ + "▁motto", + -12.467428207397461 + ], + [ + "▁troubleshooting", + -12.467449188232422 + ], + [ + "1⁄2", + -12.467487335205078 + ], + [ + "▁Reporting", + -12.467576026916504 + ], + [ + "▁Yep", + -12.467927932739258 + ], + [ + "stuff", + -12.467940330505371 + ], + [ + "▁pesticides", + -12.467977523803711 + ], + [ + "▁gatherings", + -12.468003273010254 + ], + [ + "▁FIFA", + -12.468256950378418 + ], + [ + "psych", + -12.46827220916748 + ], + [ + "fiction", + -12.468392372131348 + ], + [ + "rrington", + -12.468461036682129 + ], + [ + "▁calming", + -12.468649864196777 + ], + [ + "▁Gorgeous", + -12.468673706054688 + ], + [ + "▁Chrysler", + -12.468706130981445 + ], + [ + "▁Macro", + -12.46872329711914 + ], + [ + "IZE", + -12.468765258789062 + ], + [ + "▁petroleum", + -12.468794822692871 + ], + [ + "165", + -12.468889236450195 + ], + [ + "natal", + -12.468913078308105 + ], + [ + "▁wolf", + -12.468927383422852 + ], + [ + "▁Proper", + -12.469014167785645 + ], + [ + "▁laboratories", + -12.46916389465332 + ], + [ + "▁Estonia", + -12.469240188598633 + ], + [ + "▁pitches", + -12.469246864318848 + ], + [ + "▁Charity", + -12.46939754486084 + ], + [ + "needed", + -12.469480514526367 + ], + [ + "battling", + -12.469599723815918 + ], + [ + "▁Communities", + -12.469980239868164 + ], + [ + "▁treaty", + -12.470061302185059 + ], + [ + "▁underestimate", + -12.470112800598145 + ], + [ + "▁compress", + -12.470162391662598 + ], + [ + "▁ornaments", + -12.470257759094238 + ], + [ + "▁Austrian", + -12.470267295837402 + ], + [ + "▁dissolved", + -12.470293045043945 + ], + [ + "▁homeschool", + -12.470330238342285 + ], + [ + "▁Crypto", + -12.470333099365234 + ], + [ + "▁Arlington", + -12.470375061035156 + ], + [ + "▁Penguin", + -12.470389366149902 + ], + [ + "RAD", + -12.470459938049316 + ], + [ + "▁eff", + -12.470477104187012 + ], + [ + "▁Slim", + -12.470752716064453 + ], + [ + "▁handheld", + -12.470820426940918 + ], + [ + "▁possessions", + -12.470885276794434 + ], + [ + "register", + -12.470894813537598 + ], + [ + "WP", + -12.47089958190918 + ], + [ + "▁Filipino", + -12.470902442932129 + ], + [ + "▁priests", + -12.470921516418457 + ], + [ + "▁Savings", + -12.471030235290527 + ], + [ + "ATED", + -12.471059799194336 + ], + [ + "▁provinces", + -12.471321105957031 + ], + [ + "▁Antarctic", + -12.471376419067383 + ], + [ + "▁Chill", + -12.471678733825684 + ], + [ + "▁commemorate", + -12.471750259399414 + ], + [ + "▁mutant", + -12.471833229064941 + ], + [ + "▁hull", + -12.471839904785156 + ], + [ + "▁Interface", + -12.47191333770752 + ], + [ + "▁exported", + -12.47193431854248 + ], + [ + "▁Uncle", + -12.471966743469238 + ], + [ + "RIA", + -12.472147941589355 + ], + [ + "$1", + -12.472260475158691 + ], + [ + "▁Afghan", + -12.47232437133789 + ], + [ + "▁bodily", + -12.47232723236084 + ], + [ + "volution", + -12.472411155700684 + ], + [ + "▁Haw", + -12.472460746765137 + ], + [ + "yak", + -12.472615242004395 + ], + [ + "▁Technician", + -12.472750663757324 + ], + [ + "▁Petersburg", + -12.472820281982422 + ], + [ + "▁degradation", + -12.472960472106934 + ], + [ + "▁pitched", + -12.47299575805664 + ], + [ + "▁aquarium", + -12.473077774047852 + ], + [ + "▁Supervisor", + -12.473440170288086 + ], + [ + "▁Eva", + -12.473514556884766 + ], + [ + "amide", + -12.473821640014648 + ], + [ + "mental", + -12.473891258239746 + ], + [ + "corp", + -12.473962783813477 + ], + [ + "Cloud", + -12.474011421203613 + ], + [ + "▁stimulus", + -12.47412395477295 + ], + [ + "tire", + -12.474146842956543 + ], + [ + "▁finale", + -12.474193572998047 + ], + [ + "Sweet", + -12.474225997924805 + ], + [ + "▁Myanmar", + -12.474336624145508 + ], + [ + "whipped", + -12.474465370178223 + ], + [ + "▁Vil", + -12.474507331848145 + ], + [ + "▁Wheels", + -12.474532127380371 + ], + [ + "▁thinner", + -12.474637985229492 + ], + [ + "▁Appeal", + -12.47465705871582 + ], + [ + "slated", + -12.474735260009766 + ], + [ + "▁Logic", + -12.474790573120117 + ], + [ + "gating", + -12.474811553955078 + ], + [ + "▁Sink", + -12.474815368652344 + ], + [ + "pinning", + -12.474845886230469 + ], + [ + "▁Krishna", + -12.475024223327637 + ], + [ + "▁lumber", + -12.475024223327637 + ], + [ + "▁believer", + -12.475083351135254 + ], + [ + "▁playback", + -12.475187301635742 + ], + [ + "▁tapping", + -12.475224494934082 + ], + [ + "▁Yum", + -12.47541618347168 + ], + [ + "▁insulated", + -12.475462913513184 + ], + [ + "▁workmanship", + -12.475600242614746 + ], + [ + "▁baggage", + -12.47566032409668 + ], + [ + "▁Productions", + -12.47571086883545 + ], + [ + "▁librarian", + -12.475711822509766 + ], + [ + "▁stalls", + -12.47579288482666 + ], + [ + "▁Embassy", + -12.475817680358887 + ], + [ + "▁injustice", + -12.47581958770752 + ], + [ + "June", + -12.47589111328125 + ], + [ + "▁Mist", + -12.475934982299805 + ], + [ + "EVE", + -12.47617244720459 + ], + [ + "▁Genetic", + -12.476236343383789 + ], + [ + "▁на", + -12.476364135742188 + ], + [ + "▁temporal", + -12.476540565490723 + ], + [ + "▁Jaguar", + -12.476615905761719 + ], + [ + "▁Jupiter", + -12.47671890258789 + ], + [ + "▁CW", + -12.476845741271973 + ], + [ + "▁standalone", + -12.477075576782227 + ], + [ + "jin", + -12.477107048034668 + ], + [ + "▁communicated", + -12.477229118347168 + ], + [ + "▁gadget", + -12.477238655090332 + ], + [ + "▁Louise", + -12.477264404296875 + ], + [ + "haven", + -12.477423667907715 + ], + [ + "ingen", + -12.477453231811523 + ], + [ + "▁spans", + -12.477520942687988 + ], + [ + "▁negotiated", + -12.4775390625 + ], + [ + "▁canyon", + -12.477543830871582 + ], + [ + "▁creep", + -12.47763729095459 + ], + [ + "▁135", + -12.477645874023438 + ], + [ + "▁Frontier", + -12.477727890014648 + ], + [ + "▁85%", + -12.477858543395996 + ], + [ + "▁juicy", + -12.477940559387207 + ], + [ + "▁Psycho", + -12.47799015045166 + ], + [ + "▁Schi", + -12.478019714355469 + ], + [ + "▁inferior", + -12.47809886932373 + ], + [ + "▁Compliance", + -12.47815227508545 + ], + [ + "▁immensely", + -12.478425025939941 + ], + [ + "management", + -12.478453636169434 + ], + [ + "nav", + -12.47890567779541 + ], + [ + "separating", + -12.479001998901367 + ], + [ + "▁filtration", + -12.479057312011719 + ], + [ + "▁bowling", + -12.479146003723145 + ], + [ + "Explo", + -12.479242324829102 + ], + [ + "Suitable", + -12.479354858398438 + ], + [ + "▁modem", + -12.479466438293457 + ], + [ + "LOG", + -12.479517936706543 + ], + [ + "▁dolphin", + -12.479537010192871 + ], + [ + "void", + -12.479737281799316 + ], + [ + "▁entre", + -12.479888916015625 + ], + [ + "▁CRE", + -12.479903221130371 + ], + [ + "▁pupil", + -12.479939460754395 + ], + [ + "▁decking", + -12.479951858520508 + ], + [ + "illion", + -12.47996711730957 + ], + [ + "▁aftermath", + -12.479974746704102 + ], + [ + "White", + -12.480117797851562 + ], + [ + "geared", + -12.480149269104004 + ], + [ + "▁Copenhagen", + -12.480173110961914 + ], + [ + "▁Clara", + -12.480423927307129 + ], + [ + "colour", + -12.480469703674316 + ], + [ + "ichi", + -12.480721473693848 + ], + [ + "▁Boulder", + -12.480758666992188 + ], + [ + "▁continuation", + -12.480917930603027 + ], + [ + "CAL", + -12.481019973754883 + ], + [ + "▁prostate", + -12.481148719787598 + ], + [ + "777", + -12.481321334838867 + ], + [ + "▁Yemen", + -12.481557846069336 + ], + [ + "▁Ou", + -12.481584548950195 + ], + [ + "▁storyline", + -12.481593132019043 + ], + [ + "▁motorist", + -12.481712341308594 + ], + [ + "▁Mut", + -12.481765747070312 + ], + [ + "▁Mask", + -12.481792449951172 + ], + [ + "▁proliferation", + -12.481823921203613 + ], + [ + "▁Birds", + -12.481853485107422 + ], + [ + "trap", + -12.481919288635254 + ], + [ + "▁weaker", + -12.482156753540039 + ], + [ + "Top", + -12.482370376586914 + ], + [ + "hale", + -12.482385635375977 + ], + [ + "ulus", + -12.482385635375977 + ], + [ + "▁3-5", + -12.48241901397705 + ], + [ + "▁Cooking", + -12.482487678527832 + ], + [ + "▁Celebrate", + -12.48251724243164 + ], + [ + "directional", + -12.482532501220703 + ], + [ + "critical", + -12.482568740844727 + ], + [ + "▁Including", + -12.482677459716797 + ], + [ + "▁sinus", + -12.482821464538574 + ], + [ + "▁sincerely", + -12.48287296295166 + ], + [ + "existing", + -12.482881546020508 + ], + [ + "▁doorstep", + -12.48307991027832 + ], + [ + "▁Curtis", + -12.483100891113281 + ], + [ + "▁bricks", + -12.483174324035645 + ], + [ + "▁Candle", + -12.483205795288086 + ], + [ + "▁Albany", + -12.483214378356934 + ], + [ + "▁chorus", + -12.483264923095703 + ], + [ + "▁splendid", + -12.483370780944824 + ], + [ + "▁doctoral", + -12.483466148376465 + ], + [ + "▁murdered", + -12.483525276184082 + ], + [ + "Mu", + -12.483768463134766 + ], + [ + "▁LIVE", + -12.483786582946777 + ], + [ + "ATH", + -12.48386287689209 + ], + [ + "▁Opportunity", + -12.48395824432373 + ], + [ + "▁strokes", + -12.4840669631958 + ], + [ + "▁fig", + -12.484164237976074 + ], + [ + "▁terminology", + -12.484172821044922 + ], + [ + "▁Lol", + -12.484203338623047 + ], + [ + "▁cabins", + -12.484212875366211 + ], + [ + "▁broadcasting", + -12.48425006866455 + ], + [ + "▁£4", + -12.484312057495117 + ], + [ + "▁ROM", + -12.48435115814209 + ], + [ + "▁cumulative", + -12.484386444091797 + ], + [ + "joy", + -12.484413146972656 + ], + [ + "▁sway", + -12.484452247619629 + ], + [ + "▁Dimension", + -12.48448657989502 + ], + [ + "▁thirteen", + -12.484599113464355 + ], + [ + "▁striker", + -12.484687805175781 + ], + [ + "410", + -12.48482608795166 + ], + [ + "▁Away", + -12.484902381896973 + ], + [ + "▁expenditures", + -12.485173225402832 + ], + [ + "▁strengthened", + -12.485219955444336 + ], + [ + "▁filtered", + -12.485231399536133 + ], + [ + "▁stylist", + -12.48525333404541 + ], + [ + "target", + -12.485441207885742 + ], + [ + "nous", + -12.485442161560059 + ], + [ + "▁distill", + -12.485448837280273 + ], + [ + "▁fab", + -12.485490798950195 + ], + [ + "CV", + -12.485651016235352 + ], + [ + "▁Honestly", + -12.485883712768555 + ], + [ + "altering", + -12.48588752746582 + ], + [ + "▁vanish", + -12.485902786254883 + ], + [ + "▁stole", + -12.486001014709473 + ], + [ + "cloud", + -12.486079216003418 + ], + [ + "seized", + -12.486109733581543 + ], + [ + "plain", + -12.486226081848145 + ], + [ + "▁1956", + -12.486265182495117 + ], + [ + "surface", + -12.486534118652344 + ], + [ + "▁Bless", + -12.48682689666748 + ], + [ + "▁scholarly", + -12.486828804016113 + ], + [ + "▁simulator", + -12.486859321594238 + ], + [ + "▁Rugby", + -12.486915588378906 + ], + [ + "▁Movers", + -12.48692512512207 + ], + [ + "Soft", + -12.486976623535156 + ], + [ + "▁Moss", + -12.48704719543457 + ], + [ + "▁glossy", + -12.487048149108887 + ], + [ + "▁learner", + -12.487051963806152 + ], + [ + "▁catheter", + -12.48716926574707 + ], + [ + "▁Cornwall", + -12.48719596862793 + ], + [ + "▁glyco", + -12.487235069274902 + ], + [ + "▁Conc", + -12.487589836120605 + ], + [ + "▁scramble", + -12.487710952758789 + ], + [ + "▁pastel", + -12.487756729125977 + ], + [ + "▁livelihood", + -12.48775863647461 + ], + [ + "340", + -12.487858772277832 + ], + [ + "bourne", + -12.487874984741211 + ], + [ + "▁Rising", + -12.488094329833984 + ], + [ + "▁5:00", + -12.488096237182617 + ], + [ + "▁pistol", + -12.488189697265625 + ], + [ + "moni", + -12.488241195678711 + ], + [ + "chant", + -12.488356590270996 + ], + [ + "▁ascend", + -12.4886474609375 + ], + [ + "▁repetition", + -12.488670349121094 + ], + [ + "▁Hidden", + -12.488780975341797 + ], + [ + "▁outgoing", + -12.488784790039062 + ], + [ + "▁subdivision", + -12.488885879516602 + ], + [ + "▁accusation", + -12.48893928527832 + ], + [ + "▁Nobel", + -12.4889554977417 + ], + [ + "▁Applicants", + -12.48896598815918 + ], + [ + "▁predictive", + -12.48902702331543 + ], + [ + "▁coarse", + -12.489067077636719 + ], + [ + "ACA", + -12.489092826843262 + ], + [ + "▁Patricia", + -12.489100456237793 + ], + [ + "▁comprehension", + -12.489100456237793 + ], + [ + ":24", + -12.489104270935059 + ], + [ + "▁poultry", + -12.48920726776123 + ], + [ + "MIT", + -12.48924732208252 + ], + [ + "▁oneself", + -12.489398956298828 + ], + [ + "Hol", + -12.489473342895508 + ], + [ + "▁bunk", + -12.489584922790527 + ], + [ + "▁Composite", + -12.489827156066895 + ], + [ + "2007", + -12.489856719970703 + ], + [ + "3.7", + -12.489870071411133 + ], + [ + "mitted", + -12.489974021911621 + ], + [ + "should", + -12.49015998840332 + ], + [ + "▁Replace", + -12.490198135375977 + ], + [ + "▁Prep", + -12.490201950073242 + ], + [ + "▁Stella", + -12.49031925201416 + ], + [ + "every", + -12.490336418151855 + ], + [ + "phobia", + -12.490459442138672 + ], + [ + "▁Finn", + -12.490609169006348 + ], + [ + "▁Citizens", + -12.490615844726562 + ], + [ + "▁Cork", + -12.490693092346191 + ], + [ + "▁owl", + -12.490697860717773 + ], + [ + "▁arcade", + -12.490705490112305 + ], + [ + "cene", + -12.490742683410645 + ], + [ + "▁Cricket", + -12.490769386291504 + ], + [ + "uter", + -12.49081802368164 + ], + [ + "▁inventor", + -12.491116523742676 + ], + [ + "▁defendants", + -12.491135597229004 + ], + [ + "▁MAY", + -12.491217613220215 + ], + [ + "▁dancer", + -12.491291046142578 + ], + [ + "domain", + -12.491299629211426 + ], + [ + "▁dedicate", + -12.491387367248535 + ], + [ + "▁Harley", + -12.491426467895508 + ], + [ + "▁stitches", + -12.491604804992676 + ], + [ + "▁repertoire", + -12.491735458374023 + ], + [ + "growth", + -12.49173641204834 + ], + [ + "▁disregard", + -12.491842269897461 + ], + [ + "▁1957", + -12.491878509521484 + ], + [ + "elected", + -12.491950988769531 + ], + [ + "▁gotta", + -12.492047309875488 + ], + [ + "▁Alto", + -12.49227523803711 + ], + [ + "▁Cliff", + -12.49242115020752 + ], + [ + "▁pavement", + -12.492443084716797 + ], + [ + "▁stationary", + -12.492584228515625 + ], + [ + "▁calculating", + -12.492650985717773 + ], + [ + "lection", + -12.492733001708984 + ], + [ + "▁Treasure", + -12.492822647094727 + ], + [ + "▁Flame", + -12.49282455444336 + ], + [ + "▁Boh", + -12.492871284484863 + ], + [ + "▁manageable", + -12.492956161499023 + ], + [ + "ovic", + -12.493110656738281 + ], + [ + "bacter", + -12.4932279586792 + ], + [ + "dford", + -12.49326229095459 + ], + [ + "▁mailbox", + -12.49329662322998 + ], + [ + "▁Mack", + -12.49336051940918 + ], + [ + "affe", + -12.493660926818848 + ], + [ + "▁cosy", + -12.493844985961914 + ], + [ + "oscopic", + -12.493889808654785 + ], + [ + "▁eyebrow", + -12.493896484375 + ], + [ + "▁Clerk", + -12.493972778320312 + ], + [ + "regulating", + -12.493998527526855 + ], + [ + "▁topical", + -12.494003295898438 + ], + [ + "▁bilateral", + -12.494250297546387 + ], + [ + "▁vulnerabilities", + -12.494268417358398 + ], + [ + "▁1,500", + -12.49428653717041 + ], + [ + "▁Griffin", + -12.494384765625 + ], + [ + "aylor", + -12.494417190551758 + ], + [ + "▁bre", + -12.494427680969238 + ], + [ + "lough", + -12.4946870803833 + ], + [ + "▁harvesting", + -12.494757652282715 + ], + [ + "▁Nordic", + -12.495057106018066 + ], + [ + "▁bookstore", + -12.49520206451416 + ], + [ + "▁envision", + -12.495217323303223 + ], + [ + "▁Collective", + -12.495219230651855 + ], + [ + "▁Appeals", + -12.495251655578613 + ], + [ + "▁mammal", + -12.49527645111084 + ], + [ + "▁robe", + -12.495292663574219 + ], + [ + "▁hurting", + -12.495433807373047 + ], + [ + "worker", + -12.495546340942383 + ], + [ + "▁Drag", + -12.495563507080078 + ], + [ + "March", + -12.495732307434082 + ], + [ + "saver", + -12.495773315429688 + ], + [ + "301", + -12.495889663696289 + ], + [ + "Type", + -12.495911598205566 + ], + [ + "▁generously", + -12.49592113494873 + ], + [ + "▁inaccurate", + -12.495943069458008 + ], + [ + "▁Heroes", + -12.495972633361816 + ], + [ + "rath", + -12.496031761169434 + ], + [ + "▁marvel", + -12.496213912963867 + ], + [ + "▁donating", + -12.496228218078613 + ], + [ + "▁discard", + -12.496283531188965 + ], + [ + "650", + -12.496360778808594 + ], + [ + "▁INTER", + -12.49636459350586 + ], + [ + "▁fli", + -12.496386528015137 + ], + [ + "eminent", + -12.496438980102539 + ], + [ + "urban", + -12.496525764465332 + ], + [ + "▁wearable", + -12.496561050415039 + ], + [ + "▁Relief", + -12.496593475341797 + ], + [ + "▁aromatic", + -12.496663093566895 + ], + [ + "▁municipalities", + -12.496720314025879 + ], + [ + "▁migraine", + -12.49675464630127 + ], + [ + "▁pudding", + -12.496825218200684 + ], + [ + "Where", + -12.496826171875 + ], + [ + "▁inconsistent", + -12.496916770935059 + ], + [ + "126", + -12.496971130371094 + ], + [ + "focus", + -12.49708366394043 + ], + [ + "▁Cry", + -12.497211456298828 + ], + [ + "▁Rah", + -12.497329711914062 + ], + [ + "▁wisely", + -12.49743366241455 + ], + [ + "▁Canvas", + -12.497566223144531 + ], + [ + "▁descendant", + -12.49778938293457 + ], + [ + "▁FUN", + -12.497833251953125 + ], + [ + "▁Nottingham", + -12.497838973999023 + ], + [ + "▁imperial", + -12.497869491577148 + ], + [ + "▁digits", + -12.497881889343262 + ], + [ + "▁immersive", + -12.498000144958496 + ], + [ + "▁Raz", + -12.498114585876465 + ], + [ + "trust", + -12.498115539550781 + ], + [ + "eater", + -12.498156547546387 + ], + [ + "▁evolutionary", + -12.498177528381348 + ], + [ + "▁Runner", + -12.49820613861084 + ], + [ + "▁Chic", + -12.498223304748535 + ], + [ + "▁Caesar", + -12.498255729675293 + ], + [ + "▁Permanent", + -12.498271942138672 + ], + [ + "▁Sessions", + -12.4983491897583 + ], + [ + "▁Naval", + -12.498384475708008 + ], + [ + "▁Betty", + -12.498624801635742 + ], + [ + "▁Meaning", + -12.498625755310059 + ], + [ + "▁volleyball", + -12.498650550842285 + ], + [ + "▁sightseeing", + -12.498651504516602 + ], + [ + "deep", + -12.498705863952637 + ], + [ + "▁slap", + -12.498708724975586 + ], + [ + "▁mango", + -12.498786926269531 + ], + [ + "▁discontinu", + -12.498800277709961 + ], + [ + "▁Disability", + -12.498851776123047 + ], + [ + "▁generators", + -12.498865127563477 + ], + [ + "▁Graphics", + -12.498868942260742 + ], + [ + "naut", + -12.499201774597168 + ], + [ + "sharing", + -12.499253273010254 + ], + [ + "▁(2009)", + -12.499345779418945 + ], + [ + "rien", + -12.49939250946045 + ], + [ + "▁$100,000", + -12.499515533447266 + ], + [ + "▁Ceramic", + -12.499519348144531 + ], + [ + "▁Automation", + -12.499574661254883 + ], + [ + "hydrate", + -12.499727249145508 + ], + [ + "▁fret", + -12.499728202819824 + ], + [ + "▁comeback", + -12.49984359741211 + ], + [ + "inning", + -12.499903678894043 + ], + [ + "▁facilitated", + -12.499939918518066 + ], + [ + "▁suburb", + -12.49998950958252 + ], + [ + "▁5.0", + -12.500033378601074 + ], + [ + "▁noisy", + -12.5000638961792 + ], + [ + "▁tyres", + -12.500083923339844 + ], + [ + "turing", + -12.50013256072998 + ], + [ + "▁faction", + -12.500272750854492 + ], + [ + "champ", + -12.500370979309082 + ], + [ + "▁digitally", + -12.500394821166992 + ], + [ + "▁hunters", + -12.500402450561523 + ], + [ + "▁Scientists", + -12.500701904296875 + ], + [ + "▁Hole", + -12.500709533691406 + ], + [ + "▁recommending", + -12.500712394714355 + ], + [ + "infused", + -12.50076961517334 + ], + [ + "▁Blogger", + -12.500775337219238 + ], + [ + "▁hacking", + -12.500905990600586 + ], + [ + "▁oyster", + -12.500986099243164 + ], + [ + "▁sorrow", + -12.501001358032227 + ], + [ + "navigating", + -12.501031875610352 + ], + [ + "▁imaginative", + -12.501092910766602 + ], + [ + "▁artery", + -12.50113582611084 + ], + [ + "▁650", + -12.501142501831055 + ], + [ + "training", + -12.501280784606934 + ], + [ + "▁chiropractic", + -12.501473426818848 + ], + [ + "▁conventions", + -12.501489639282227 + ], + [ + "▁Coastal", + -12.501598358154297 + ], + [ + "▁Sent", + -12.501891136169434 + ], + [ + "▁withdrawn", + -12.501916885375977 + ], + [ + "▁Bron", + -12.502147674560547 + ], + [ + "▁Result", + -12.502243995666504 + ], + [ + "▁Mustang", + -12.502288818359375 + ], + [ + "▁altar", + -12.502307891845703 + ], + [ + "▁props", + -12.502351760864258 + ], + [ + "▁lantern", + -12.502402305603027 + ], + [ + "▁Navi", + -12.50247859954834 + ], + [ + "physio", + -12.502484321594238 + ], + [ + "▁monuments", + -12.50253677368164 + ], + [ + "▁Maintain", + -12.50259017944336 + ], + [ + "▁JP", + -12.502650260925293 + ], + [ + "▁workspace", + -12.502741813659668 + ], + [ + "▁clam", + -12.502781867980957 + ], + [ + "▁Ability", + -12.502786636352539 + ], + [ + "TES", + -12.503030776977539 + ], + [ + "▁psychic", + -12.503133773803711 + ], + [ + "▁recruited", + -12.503191947937012 + ], + [ + "/7", + -12.503351211547852 + ], + [ + "bps", + -12.503369331359863 + ], + [ + "▁Mp", + -12.503741264343262 + ], + [ + "▁tendon", + -12.503756523132324 + ], + [ + "▁Kurt", + -12.503764152526855 + ], + [ + "▁Hun", + -12.50381851196289 + ], + [ + "▁Coaching", + -12.503829956054688 + ], + [ + "rais", + -12.503885269165039 + ], + [ + "forward", + -12.504034042358398 + ], + [ + "▁Russ", + -12.504063606262207 + ], + [ + "▁antibodies", + -12.504140853881836 + ], + [ + "SIC", + -12.504216194152832 + ], + [ + "chip", + -12.5043363571167 + ], + [ + "▁Darwin", + -12.504400253295898 + ], + [ + "1.0", + -12.504446983337402 + ], + [ + "▁alphabet", + -12.504495620727539 + ], + [ + "▁victories", + -12.504514694213867 + ], + [ + "▁Sunshine", + -12.504524230957031 + ], + [ + "▁multinational", + -12.50467586517334 + ], + [ + "▁cheque", + -12.50477123260498 + ], + [ + "effect", + -12.504830360412598 + ], + [ + "▁Thu", + -12.504852294921875 + ], + [ + "▁nurturing", + -12.504959106445312 + ], + [ + "▁endeavors", + -12.504989624023438 + ], + [ + "XL", + -12.505030632019043 + ], + [ + "▁vineyards", + -12.505110740661621 + ], + [ + "etched", + -12.505167007446289 + ], + [ + "▁cupcakes", + -12.505350112915039 + ], + [ + "contin", + -12.50538158416748 + ], + [ + "fight", + -12.505409240722656 + ], + [ + "immu", + -12.505435943603516 + ], + [ + "▁COMP", + -12.505463600158691 + ], + [ + "Pad", + -12.50546646118164 + ], + [ + "imon", + -12.505539894104004 + ], + [ + "▁counterpart", + -12.505568504333496 + ], + [ + "▁Rolling", + -12.505620002746582 + ], + [ + "ер", + -12.505620956420898 + ], + [ + "▁Musk", + -12.50568675994873 + ], + [ + "▁legends", + -12.505804061889648 + ], + [ + "▁Agile", + -12.505819320678711 + ], + [ + "▁reminders", + -12.505842208862305 + ], + [ + "AIN", + -12.505959510803223 + ], + [ + "▁Parade", + -12.505970001220703 + ], + [ + "atsu", + -12.506082534790039 + ], + [ + "lde", + -12.506099700927734 + ], + [ + "▁testament", + -12.50621509552002 + ], + [ + "▁mosque", + -12.506439208984375 + ], + [ + "▁Evening", + -12.506475448608398 + ], + [ + "▁distraction", + -12.506507873535156 + ], + [ + "axial", + -12.506612777709961 + ], + [ + "▁dubbed", + -12.506723403930664 + ], + [ + "▁Aboriginal", + -12.506725311279297 + ], + [ + "rgy", + -12.506760597229004 + ], + [ + "▁Sussex", + -12.506815910339355 + ], + [ + "▁Dash", + -12.506834983825684 + ], + [ + "▁nominations", + -12.50692367553711 + ], + [ + "▁vascular", + -12.506998062133789 + ], + [ + "▁rocking", + -12.507037162780762 + ], + [ + "▁nickname", + -12.50704574584961 + ], + [ + "▁congress", + -12.507144927978516 + ], + [ + "living", + -12.507400512695312 + ], + [ + "▁windshield", + -12.507439613342285 + ], + [ + "activ", + -12.507454872131348 + ], + [ + "▁Norton", + -12.507665634155273 + ], + [ + "▁Judy", + -12.507774353027344 + ], + [ + "▁breadth", + -12.507854461669922 + ], + [ + "lary", + -12.507967948913574 + ], + [ + "▁validated", + -12.508275985717773 + ], + [ + "▁Oral", + -12.508296012878418 + ], + [ + "▁Lux", + -12.508321762084961 + ], + [ + "erci", + -12.5084228515625 + ], + [ + "▁renal", + -12.50844669342041 + ], + [ + "▁ecommerce", + -12.508484840393066 + ], + [ + "▁rebuilt", + -12.508655548095703 + ], + [ + "__", + -12.508879661560059 + ], + [ + "▁politician", + -12.508996963500977 + ], + [ + "handcrafted", + -12.509016036987305 + ], + [ + "pick", + -12.509021759033203 + ], + [ + "▁Sup", + -12.509086608886719 + ], + [ + "▁outpatient", + -12.509093284606934 + ], + [ + "▁eras", + -12.509098052978516 + ], + [ + "▁stray", + -12.509125709533691 + ], + [ + "▁Gandhi", + -12.509223937988281 + ], + [ + "▁PET", + -12.50922966003418 + ], + [ + "tolerant", + -12.509354591369629 + ], + [ + "▁stripped", + -12.509407997131348 + ], + [ + "▁fourteen", + -12.509415626525879 + ], + [ + "▁Rewards", + -12.509566307067871 + ], + [ + "▁sectional", + -12.509620666503906 + ], + [ + "Bra", + -12.50971508026123 + ], + [ + "▁Alexandr", + -12.509721755981445 + ], + [ + "ensu", + -12.509780883789062 + ], + [ + "RED", + -12.509905815124512 + ], + [ + "▁(2017)", + -12.509933471679688 + ], + [ + "▁diner", + -12.509939193725586 + ], + [ + "▁caller", + -12.51007080078125 + ], + [ + "JU", + -12.510185241699219 + ], + [ + "▁Recommended", + -12.510380744934082 + ], + [ + "▁Finger", + -12.510420799255371 + ], + [ + "▁mutually", + -12.510481834411621 + ], + [ + "legal", + -12.510533332824707 + ], + [ + "▁fist", + -12.510705947875977 + ], + [ + "▁sleeper", + -12.510756492614746 + ], + [ + "▁dissolve", + -12.510778427124023 + ], + [ + "▁$75", + -12.51085090637207 + ], + [ + "▁Mull", + -12.51087474822998 + ], + [ + "▁Pom", + -12.510945320129395 + ], + [ + "▁Straight", + -12.511034965515137 + ], + [ + "▁myths", + -12.511110305786133 + ], + [ + "▁finely", + -12.511128425598145 + ], + [ + "▁Brilliant", + -12.511252403259277 + ], + [ + "▁Sigma", + -12.511270523071289 + ], + [ + "micro", + -12.511290550231934 + ], + [ + "Based", + -12.511327743530273 + ], + [ + "▁bingo", + -12.51153564453125 + ], + [ + "▁Plymouth", + -12.51158332824707 + ], + [ + "▁grit", + -12.511748313903809 + ], + [ + "▁Retro", + -12.511754035949707 + ], + [ + "▁Costume", + -12.511832237243652 + ], + [ + "INA", + -12.511898040771484 + ], + [ + "flight", + -12.511930465698242 + ], + [ + "destined", + -12.51203441619873 + ], + [ + "▁leaning", + -12.512125015258789 + ], + [ + "▁alot", + -12.512229919433594 + ], + [ + "riya", + -12.512267112731934 + ], + [ + "Works", + -12.512584686279297 + ], + [ + "▁wan", + -12.512618064880371 + ], + [ + "▁Benefit", + -12.512679100036621 + ], + [ + "Rock", + -12.51284122467041 + ], + [ + "▁safest", + -12.512953758239746 + ], + [ + "More", + -12.513026237487793 + ], + [ + "▁disadvantage", + -12.513039588928223 + ], + [ + "Space", + -12.513162612915039 + ], + [ + "▁pier", + -12.513289451599121 + ], + [ + "▁shelters", + -12.513405799865723 + ], + [ + "Sync", + -12.513668060302734 + ], + [ + "tari", + -12.513717651367188 + ], + [ + "acqui", + -12.513737678527832 + ], + [ + "▁shipments", + -12.51375675201416 + ], + [ + "▁Improve", + -12.513837814331055 + ], + [ + "▁paragraphs", + -12.513839721679688 + ], + [ + "▁Trailer", + -12.51384162902832 + ], + [ + "▁brushing", + -12.513888359069824 + ], + [ + "▁gentleman", + -12.513916969299316 + ], + [ + "▁brewery", + -12.51392650604248 + ], + [ + "▁Carson", + -12.514005661010742 + ], + [ + "▁Milton", + -12.514031410217285 + ], + [ + "▁restrain", + -12.514130592346191 + ], + [ + "▁banquet", + -12.514139175415039 + ], + [ + "oche", + -12.514166831970215 + ], + [ + "ayne", + -12.51419448852539 + ], + [ + "▁blueprint", + -12.514303207397461 + ], + [ + "genetic", + -12.514419555664062 + ], + [ + "▁Wise", + -12.514453887939453 + ], + [ + "▁militant", + -12.514607429504395 + ], + [ + "▁Kingston", + -12.514612197875977 + ], + [ + "▁READ", + -12.514634132385254 + ], + [ + "▁Agents", + -12.514763832092285 + ], + [ + "▁Beverly", + -12.514885902404785 + ], + [ + "WH", + -12.515032768249512 + ], + [ + "▁Jackie", + -12.515044212341309 + ], + [ + "quant", + -12.51504898071289 + ], + [ + "▁Sunny", + -12.515101432800293 + ], + [ + "▁histories", + -12.515113830566406 + ], + [ + "▁transformer", + -12.515169143676758 + ], + [ + "▁Patriots", + -12.515260696411133 + ], + [ + "▁downstream", + -12.515384674072266 + ], + [ + "▁Developing", + -12.515506744384766 + ], + [ + "▁Lithuania", + -12.515543937683105 + ], + [ + "maximise", + -12.515822410583496 + ], + [ + "issue", + -12.515868186950684 + ], + [ + "▁receptors", + -12.5159273147583 + ], + [ + "riot", + -12.515936851501465 + ], + [ + "140", + -12.516027450561523 + ], + [ + "▁justification", + -12.516156196594238 + ], + [ + "▁Riverside", + -12.516227722167969 + ], + [ + "▁canned", + -12.516274452209473 + ], + [ + "▁proportions", + -12.516385078430176 + ], + [ + "▁boxing", + -12.516441345214844 + ], + [ + "▁cosmetics", + -12.516677856445312 + ], + [ + "▁Topics", + -12.516732215881348 + ], + [ + "Needless", + -12.516741752624512 + ], + [ + "▁subscriber", + -12.516745567321777 + ], + [ + "▁HDMI", + -12.516754150390625 + ], + [ + "▁Elk", + -12.516777038574219 + ], + [ + "▁Reynolds", + -12.516813278198242 + ], + [ + "▁addictive", + -12.516823768615723 + ], + [ + "Design", + -12.517579078674316 + ], + [ + "▁enlarge", + -12.5176362991333 + ], + [ + "▁alterations", + -12.51778507232666 + ], + [ + "wild", + -12.51782512664795 + ], + [ + "▁Amar", + -12.518050193786621 + ], + [ + "▁handler", + -12.51809024810791 + ], + [ + "▁atomic", + -12.51816463470459 + ], + [ + "▁Fry", + -12.518184661865234 + ], + [ + "▁restroom", + -12.51826000213623 + ], + [ + "▁lifespan", + -12.518306732177734 + ], + [ + "205", + -12.518526077270508 + ], + [ + "▁drummer", + -12.518601417541504 + ], + [ + "boarding", + -12.518610000610352 + ], + [ + "▁Suites", + -12.518753051757812 + ], + [ + "▁swift", + -12.518780708312988 + ], + [ + "▁Actor", + -12.518805503845215 + ], + [ + "▁GST", + -12.51907730102539 + ], + [ + "ija", + -12.519476890563965 + ], + [ + "▁Inner", + -12.519783020019531 + ], + [ + "▁reconciliation", + -12.520020484924316 + ], + [ + "▁Hyderabad", + -12.520075798034668 + ], + [ + "▁Stockholm", + -12.520088195800781 + ], + [ + "▁revival", + -12.520146369934082 + ], + [ + "▁Bench", + -12.520177841186523 + ], + [ + "Pri", + -12.520218849182129 + ], + [ + "▁graceful", + -12.520329475402832 + ], + [ + "▁flair", + -12.520427703857422 + ], + [ + "▁Psalm", + -12.52052116394043 + ], + [ + "▁glaze", + -12.520689964294434 + ], + [ + "▁discrete", + -12.52071762084961 + ], + [ + "▁Specific", + -12.520868301391602 + ], + [ + "symmetric", + -12.520886421203613 + ], + [ + "▁comforting", + -12.5210542678833 + ], + [ + "▁soaking", + -12.521124839782715 + ], + [ + "beck", + -12.521146774291992 + ], + [ + "▁rescued", + -12.521183013916016 + ], + [ + "▁graphs", + -12.521211624145508 + ], + [ + "PEC", + -12.521291732788086 + ], + [ + "complete", + -12.521345138549805 + ], + [ + "▁Promo", + -12.521345138549805 + ], + [ + "▁Jewel", + -12.521398544311523 + ], + [ + "Key", + -12.5216064453125 + ], + [ + "ACS", + -12.521612167358398 + ], + [ + "▁hatred", + -12.52175235748291 + ], + [ + "▁Sunset", + -12.521781921386719 + ], + [ + "▁exploitation", + -12.522017478942871 + ], + [ + "▁tablespoon", + -12.522022247314453 + ], + [ + "▁Burns", + -12.522039413452148 + ], + [ + "▁contrasting", + -12.522087097167969 + ], + [ + "▁aquatic", + -12.52214241027832 + ], + [ + "pushes", + -12.522345542907715 + ], + [ + "▁Kot", + -12.522562980651855 + ], + [ + "▁Guinea", + -12.52263069152832 + ], + [ + "▁$250", + -12.522814750671387 + ], + [ + "▁Cute", + -12.52282428741455 + ], + [ + "▁1947", + -12.522941589355469 + ], + [ + "▁liquidity", + -12.52309513092041 + ], + [ + "▁slick", + -12.523102760314941 + ], + [ + "▁Witch", + -12.523246765136719 + ], + [ + "4-1", + -12.523520469665527 + ], + [ + "tension", + -12.523627281188965 + ], + [ + "▁tariffs", + -12.523633003234863 + ], + [ + "▁razor", + -12.523880004882812 + ], + [ + "ARS", + -12.524077415466309 + ], + [ + "▁originate", + -12.524328231811523 + ], + [ + "▁prerequisite", + -12.524415016174316 + ], + [ + "wyn", + -12.524468421936035 + ], + [ + "▁Salem", + -12.524543762207031 + ], + [ + "▁skeptical", + -12.524627685546875 + ], + [ + "▁medals", + -12.52482795715332 + ], + [ + "▁Nikon", + -12.524883270263672 + ], + [ + "tapped", + -12.524931907653809 + ], + [ + "▁Heath", + -12.524938583374023 + ], + [ + "▁merc", + -12.525148391723633 + ], + [ + "▁(13", + -12.525218963623047 + ], + [ + "▁fringe", + -12.525267601013184 + ], + [ + "▁$60", + -12.52531909942627 + ], + [ + "▁numb", + -12.525367736816406 + ], + [ + "odor", + -12.525457382202148 + ], + [ + "▁wrestle", + -12.525519371032715 + ], + [ + "▁crave", + -12.525546073913574 + ], + [ + "▁conscience", + -12.52577018737793 + ], + [ + "▁Identity", + -12.525798797607422 + ], + [ + "Preheat", + -12.525800704956055 + ], + [ + "Open", + -12.52585220336914 + ], + [ + "▁dire", + -12.525871276855469 + ], + [ + "▁maternal", + -12.525914192199707 + ], + [ + "▁exert", + -12.525946617126465 + ], + [ + "4.6", + -12.526141166687012 + ], + [ + "▁reconstruct", + -12.526150703430176 + ], + [ + "0-4", + -12.526331901550293 + ], + [ + "▁downstairs", + -12.526354789733887 + ], + [ + "▁increment", + -12.526391983032227 + ], + [ + "▁courteous", + -12.526397705078125 + ], + [ + "▁Converter", + -12.526407241821289 + ], + [ + "▁Lego", + -12.526410102844238 + ], + [ + "pak", + -12.526668548583984 + ], + [ + "▁Accent", + -12.526772499084473 + ], + [ + "mian", + -12.526982307434082 + ], + [ + "▁prayed", + -12.527060508728027 + ], + [ + "▁Icon", + -12.527068138122559 + ], + [ + "dim", + -12.527173042297363 + ], + [ + "▁flashing", + -12.527233123779297 + ], + [ + "Served", + -12.527280807495117 + ], + [ + "▁gradual", + -12.527459144592285 + ], + [ + "▁shorten", + -12.527519226074219 + ], + [ + "brush", + -12.527536392211914 + ], + [ + "rade", + -12.527701377868652 + ], + [ + "▁mutation", + -12.52791690826416 + ], + [ + "HOT", + -12.527965545654297 + ], + [ + "▁comedian", + -12.528035163879395 + ], + [ + "maybe", + -12.528080940246582 + ], + [ + "▁720", + -12.528103828430176 + ], + [ + "▁empowerment", + -12.528129577636719 + ], + [ + "▁squirrel", + -12.528251647949219 + ], + [ + "én", + -12.528355598449707 + ], + [ + "ен", + -12.528472900390625 + ], + [ + "▁Indonesian", + -12.528505325317383 + ], + [ + "6.1", + -12.52863597869873 + ], + [ + "WF", + -12.528637886047363 + ], + [ + "▁Difference", + -12.528642654418945 + ], + [ + "▁Ballet", + -12.528786659240723 + ], + [ + "▁troll", + -12.5288667678833 + ], + [ + "while", + -12.528932571411133 + ], + [ + "▁optimism", + -12.529078483581543 + ], + [ + "▁LLP", + -12.529279708862305 + ], + [ + "125", + -12.529438018798828 + ], + [ + "▁backward", + -12.529508590698242 + ], + [ + "▁Messenger", + -12.529536247253418 + ], + [ + "▁Fireplace", + -12.529666900634766 + ], + [ + "lusive", + -12.529702186584473 + ], + [ + "▁Myers", + -12.529751777648926 + ], + [ + "City", + -12.529757499694824 + ], + [ + "▁variance", + -12.52981948852539 + ], + [ + "▁Thing", + -12.529949188232422 + ], + [ + "▁precautions", + -12.530023574829102 + ], + [ + "▁WO", + -12.530172348022461 + ], + [ + "▁stump", + -12.530179023742676 + ], + [ + "partnered", + -12.530267715454102 + ], + [ + "▁mitigation", + -12.530431747436523 + ], + [ + "▁LTD", + -12.530434608459473 + ], + [ + "▁municipality", + -12.53044605255127 + ], + [ + "▁$13", + -12.530509948730469 + ], + [ + "NASDAQ", + -12.530599594116211 + ], + [ + "▁theatrical", + -12.530619621276855 + ], + [ + "▁Handle", + -12.530683517456055 + ], + [ + "▁Morrison", + -12.530853271484375 + ], + [ + "hey", + -12.530929565429688 + ], + [ + "▁loaf", + -12.531021118164062 + ], + [ + "▁neon", + -12.531177520751953 + ], + [ + "▁1955", + -12.531307220458984 + ], + [ + "▁Gul", + -12.53147029876709 + ], + [ + "john", + -12.531482696533203 + ], + [ + "▁Bran", + -12.531514167785645 + ], + [ + "yet", + -12.53151798248291 + ], + [ + "▁schematic", + -12.531612396240234 + ], + [ + "▁Seminar", + -12.531696319580078 + ], + [ + "▁Registry", + -12.53177547454834 + ], + [ + "corporation", + -12.531803131103516 + ], + [ + "Mr", + -12.531818389892578 + ], + [ + "▁256", + -12.531974792480469 + ], + [ + "▁ASP", + -12.532061576843262 + ], + [ + "▁Ginger", + -12.532115936279297 + ], + [ + "▁surgeons", + -12.532218933105469 + ], + [ + "pun", + -12.532242774963379 + ], + [ + "▁Ferguson", + -12.532279968261719 + ], + [ + "▁subset", + -12.532288551330566 + ], + [ + "zad", + -12.532289505004883 + ], + [ + "▁Gut", + -12.532347679138184 + ], + [ + "▁piping", + -12.532356262207031 + ], + [ + "▁Requirements", + -12.532392501831055 + ], + [ + "▁Grammy", + -12.53243350982666 + ], + [ + "▁pharma", + -12.532564163208008 + ], + [ + "▁Sacred", + -12.532674789428711 + ], + [ + "▁separator", + -12.53272819519043 + ], + [ + "▁vaccines", + -12.532809257507324 + ], + [ + "▁reinforcement", + -12.532846450805664 + ], + [ + "picture", + -12.533073425292969 + ], + [ + "▁upscale", + -12.53309154510498 + ], + [ + "CRA", + -12.533097267150879 + ], + [ + "▁axle", + -12.533173561096191 + ], + [ + "▁Vivi", + -12.533249855041504 + ], + [ + "cheap", + -12.533425331115723 + ], + [ + "▁Prairie", + -12.533571243286133 + ], + [ + "▁investigator", + -12.533656120300293 + ], + [ + "▁proficiency", + -12.53373908996582 + ], + [ + "▁coaster", + -12.533769607543945 + ], + [ + "▁(14", + -12.533782005310059 + ], + [ + "▁bells", + -12.533784866333008 + ], + [ + "▁stark", + -12.533791542053223 + ], + [ + "▁malfunction", + -12.533869743347168 + ], + [ + "▁Finnish", + -12.533885955810547 + ], + [ + "handle", + -12.534008026123047 + ], + [ + "▁Strategies", + -12.534075736999512 + ], + [ + "▁Cardiff", + -12.534154891967773 + ], + [ + "▁Feature", + -12.534217834472656 + ], + [ + "Continuing", + -12.534357070922852 + ], + [ + "▁Categories", + -12.534468650817871 + ], + [ + "RIC", + -12.534628868103027 + ], + [ + "▁Peri", + -12.534859657287598 + ], + [ + "▁Cleaner", + -12.534886360168457 + ], + [ + "224", + -12.534906387329102 + ], + [ + "▁chick", + -12.53492546081543 + ], + [ + "▁Fork", + -12.535017013549805 + ], + [ + "▁compliments", + -12.535181999206543 + ], + [ + "▁bladder", + -12.535200119018555 + ], + [ + "▁9:30", + -12.535252571105957 + ], + [ + "▁ISIS", + -12.535429000854492 + ], + [ + "▁abused", + -12.535468101501465 + ], + [ + "▁SharePoint", + -12.535505294799805 + ], + [ + "▁Bride", + -12.535506248474121 + ], + [ + "jon", + -12.535542488098145 + ], + [ + "▁seams", + -12.53554630279541 + ], + [ + "▁WV", + -12.535560607910156 + ], + [ + "▁$400", + -12.5355806350708 + ], + [ + "▁Parkinson", + -12.535701751708984 + ], + [ + "▁£10", + -12.535709381103516 + ], + [ + "▁1-3", + -12.535745620727539 + ], + [ + "earth", + -12.535880088806152 + ], + [ + "dorf", + -12.535957336425781 + ], + [ + "▁gran", + -12.536069869995117 + ], + [ + "▁mop", + -12.536075592041016 + ], + [ + "▁Mentor", + -12.536194801330566 + ], + [ + "▁grandson", + -12.536222457885742 + ], + [ + "▁simulations", + -12.536230087280273 + ], + [ + "tossed", + -12.536277770996094 + ], + [ + "▁grout", + -12.536357879638672 + ], + [ + "▁shear", + -12.53637981414795 + ], + [ + "▁Cosmetic", + -12.536606788635254 + ], + [ + "Name", + -12.536624908447266 + ], + [ + "▁vibr", + -12.536752700805664 + ], + [ + "bog", + -12.536908149719238 + ], + [ + "gaz", + -12.53697681427002 + ], + [ + "SPA", + -12.537074089050293 + ], + [ + "▁wreath", + -12.537097930908203 + ], + [ + "TN", + -12.537185668945312 + ], + [ + "▁crib", + -12.53721809387207 + ], + [ + "▁Exactly", + -12.537676811218262 + ], + [ + "watering", + -12.5377197265625 + ], + [ + "▁pouch", + -12.537956237792969 + ], + [ + "▁Brake", + -12.537961959838867 + ], + [ + "▁Trends", + -12.5379638671875 + ], + [ + "grave", + -12.538228988647461 + ], + [ + "▁Shri", + -12.538275718688965 + ], + [ + "▁Maz", + -12.538314819335938 + ], + [ + "▁warfare", + -12.538411140441895 + ], + [ + "▁zest", + -12.538447380065918 + ], + [ + "▁Distance", + -12.538532257080078 + ], + [ + "lak", + -12.538589477539062 + ], + [ + "▁Coconut", + -12.538650512695312 + ], + [ + "OSS", + -12.538721084594727 + ], + [ + "▁firearms", + -12.538725852966309 + ], + [ + "6-3", + -12.538803100585938 + ], + [ + "▁Somali", + -12.538912773132324 + ], + [ + "▁consolidate", + -12.538956642150879 + ], + [ + "NING", + -12.538966178894043 + ], + [ + "▁Cod", + -12.539022445678711 + ], + [ + "▁embarrassing", + -12.539072036743164 + ], + [ + "▁intrigued", + -12.539091110229492 + ], + [ + "Adapt", + -12.539161682128906 + ], + [ + "▁sixty", + -12.539222717285156 + ], + [ + "obliged", + -12.539273262023926 + ], + [ + "▁Scrap", + -12.53931999206543 + ], + [ + "124", + -12.539321899414062 + ], + [ + "common", + -12.53934097290039 + ], + [ + "▁sympathy", + -12.539545059204102 + ], + [ + "▁descend", + -12.539560317993164 + ], + [ + "▁courier", + -12.539597511291504 + ], + [ + "▁Providence", + -12.539619445800781 + ], + [ + "nix", + -12.539644241333008 + ], + [ + "▁Enforcement", + -12.539708137512207 + ], + [ + "▁ideology", + -12.53972053527832 + ], + [ + "▁Legislature", + -12.53982162475586 + ], + [ + "▁disruptive", + -12.539868354797363 + ], + [ + "▁Pakistani", + -12.539895057678223 + ], + [ + "▁GW", + -12.53994369506836 + ], + [ + "▁punish", + -12.540000915527344 + ], + [ + "▁Lancaster", + -12.540060043334961 + ], + [ + "▁cultivation", + -12.540103912353516 + ], + [ + "▁Performing", + -12.540200233459473 + ], + [ + "▁Flood", + -12.54024600982666 + ], + [ + "hren", + -12.540374755859375 + ], + [ + "phyl", + -12.540519714355469 + ], + [ + "▁plated", + -12.540586471557617 + ], + [ + "▁attendant", + -12.540624618530273 + ], + [ + "▁Stoke", + -12.54062557220459 + ], + [ + "▁$16", + -12.54063606262207 + ], + [ + "▁bombs", + -12.540654182434082 + ], + [ + "▁messenger", + -12.540895462036133 + ], + [ + "▁borrowers", + -12.540943145751953 + ], + [ + "▁MOD", + -12.541034698486328 + ], + [ + "strong", + -12.54114818572998 + ], + [ + "▁Fern", + -12.541351318359375 + ], + [ + "▁cruising", + -12.541519165039062 + ], + [ + "▁trays", + -12.541543006896973 + ], + [ + "▁criticized", + -12.541703224182129 + ], + [ + "▁subsidiaries", + -12.541744232177734 + ], + [ + "131", + -12.541783332824707 + ], + [ + "hay", + -12.541790008544922 + ], + [ + "▁107", + -12.54179859161377 + ], + [ + "▁smiled", + -12.542120933532715 + ], + [ + "▁Dunn", + -12.542641639709473 + ], + [ + "▁nozzle", + -12.54266357421875 + ], + [ + "/15", + -12.542671203613281 + ], + [ + "▁complie", + -12.542696952819824 + ], + [ + "▁Glo", + -12.542754173278809 + ], + [ + "▁perks", + -12.542850494384766 + ], + [ + "▁Plenty", + -12.54293441772461 + ], + [ + "▁Sever", + -12.542946815490723 + ], + [ + "trial", + -12.543004989624023 + ], + [ + "▁tighten", + -12.543103218078613 + ], + [ + "KK", + -12.543140411376953 + ], + [ + "▁Ful", + -12.543171882629395 + ], + [ + "▁PCB", + -12.543203353881836 + ], + [ + "▁Tribe", + -12.543289184570312 + ], + [ + "ZA", + -12.543316841125488 + ], + [ + "SIDE", + -12.543326377868652 + ], + [ + "▁radiant", + -12.543451309204102 + ], + [ + "▁improper", + -12.543553352355957 + ], + [ + "▁pertinent", + -12.543784141540527 + ], + [ + "▁cybersecurity", + -12.543863296508789 + ], + [ + "treatment", + -12.543867111206055 + ], + [ + "hopping", + -12.543985366821289 + ], + [ + "significant", + -12.544201850891113 + ], + [ + "hereby", + -12.54427719116211 + ], + [ + "▁2-1", + -12.544318199157715 + ], + [ + "▁Hugh", + -12.544434547424316 + ], + [ + "▁placebo", + -12.545014381408691 + ], + [ + "▁gums", + -12.54502010345459 + ], + [ + "▁Venus", + -12.545242309570312 + ], + [ + "▁feathers", + -12.545248031616211 + ], + [ + "▁Corr", + -12.545387268066406 + ], + [ + "▁terrifying", + -12.545430183410645 + ], + [ + "Tru", + -12.545439720153809 + ], + [ + "Connect", + -12.5455961227417 + ], + [ + "▁neatly", + -12.545598030090332 + ], + [ + "111", + -12.545633316040039 + ], + [ + "▁Progressive", + -12.545638084411621 + ], + [ + "▁Roo", + -12.545716285705566 + ], + [ + "6000", + -12.545758247375488 + ], + [ + "▁Dictionary", + -12.545770645141602 + ], + [ + "enstein", + -12.545836448669434 + ], + [ + "▁innovator", + -12.545841217041016 + ], + [ + "▁Extreme", + -12.545928001403809 + ], + [ + "/17", + -12.545931816101074 + ], + [ + "clear", + -12.546031951904297 + ], + [ + "elf", + -12.546061515808105 + ], + [ + "▁WhatsApp", + -12.546131134033203 + ], + [ + "▁attire", + -12.54619312286377 + ], + [ + "▁dependency", + -12.546208381652832 + ], + [ + "▁Cycl", + -12.546209335327148 + ], + [ + "▁hotspot", + -12.546258926391602 + ], + [ + "▁Mazda", + -12.546289443969727 + ], + [ + "▁workstation", + -12.546324729919434 + ], + [ + "▁restraint", + -12.546399116516113 + ], + [ + "▁gemstone", + -12.546464920043945 + ], + [ + "▁Omni", + -12.546513557434082 + ], + [ + "speaking", + -12.546591758728027 + ], + [ + "▁lobster", + -12.546683311462402 + ], + [ + "UAL", + -12.546714782714844 + ], + [ + "isch", + -12.54674243927002 + ], + [ + "▁GOOD", + -12.546760559082031 + ], + [ + "▁Olympia", + -12.546793937683105 + ], + [ + "▁Lutheran", + -12.546798706054688 + ], + [ + "-45", + -12.546992301940918 + ], + [ + "▁Fight", + -12.547038078308105 + ], + [ + "▁retract", + -12.5472412109375 + ], + [ + "▁Aim", + -12.547451972961426 + ], + [ + "EACH", + -12.547501564025879 + ], + [ + "▁Vet", + -12.547526359558105 + ], + [ + "▁Fraser", + -12.547586441040039 + ], + [ + "▁($1", + -12.547679901123047 + ], + [ + "▁shores", + -12.547781944274902 + ], + [ + "▁Dock", + -12.54780387878418 + ], + [ + "travel", + -12.54784107208252 + ], + [ + "sala", + -12.548013687133789 + ], + [ + "▁Gap", + -12.548127174377441 + ], + [ + "▁Quant", + -12.548226356506348 + ], + [ + "▁watercolor", + -12.54828929901123 + ], + [ + "VIEW", + -12.548290252685547 + ], + [ + "▁assertion", + -12.548487663269043 + ], + [ + "▁Binary", + -12.548492431640625 + ], + [ + "whichever", + -12.548587799072266 + ], + [ + "220", + -12.548593521118164 + ], + [ + "▁1944", + -12.548659324645996 + ], + [ + "▁Carrier", + -12.548667907714844 + ], + [ + "▁WOW", + -12.548707962036133 + ], + [ + "▁sushi", + -12.548720359802246 + ], + [ + "▁Continental", + -12.549072265625 + ], + [ + "▁Licensed", + -12.549123764038086 + ], + [ + "▁algae", + -12.549187660217285 + ], + [ + "▁Potential", + -12.549201011657715 + ], + [ + "▁condominium", + -12.549243927001953 + ], + [ + "grid", + -12.549247741699219 + ], + [ + "▁infusion", + -12.549345970153809 + ], + [ + "▁sigh", + -12.549346923828125 + ], + [ + "▁Gee", + -12.549439430236816 + ], + [ + "tub", + -12.549464225769043 + ], + [ + "▁Seth", + -12.549530982971191 + ], + [ + "▁apt", + -12.549678802490234 + ], + [ + "▁resonance", + -12.549814224243164 + ], + [ + "wag", + -12.550044059753418 + ], + [ + "▁pint", + -12.550069808959961 + ], + [ + "▁0.6", + -12.550132751464844 + ], + [ + "▁commenced", + -12.550294876098633 + ], + [ + "▁butterflies", + -12.55044174194336 + ], + [ + "▁Surrey", + -12.55056095123291 + ], + [ + "▁commuter", + -12.550670623779297 + ], + [ + "▁recount", + -12.550809860229492 + ], + [ + "▁facets", + -12.550835609436035 + ], + [ + "English", + -12.55085277557373 + ], + [ + "▁bible", + -12.551065444946289 + ], + [ + "▁unstable", + -12.551155090332031 + ], + [ + "▁ascertain", + -12.551218032836914 + ], + [ + "lair", + -12.551260948181152 + ], + [ + "campus", + -12.551304817199707 + ], + [ + "14)", + -12.551315307617188 + ], + [ + "▁Roma", + -12.551358222961426 + ], + [ + "▁sovereign", + -12.55146312713623 + ], + [ + "▁Saving", + -12.551572799682617 + ], + [ + "▁Exterior", + -12.551584243774414 + ], + [ + "▁Script", + -12.551789283752441 + ], + [ + "kick", + -12.552007675170898 + ], + [ + "serve", + -12.552007675170898 + ], + [ + "headquartered", + -12.552223205566406 + ], + [ + "▁wil", + -12.552412033081055 + ], + [ + "unpaid", + -12.552518844604492 + ], + [ + "▁intro", + -12.552541732788086 + ], + [ + "▁Monkey", + -12.55260944366455 + ], + [ + "▁fashioned", + -12.552680969238281 + ], + [ + "▁GmbH", + -12.55284309387207 + ], + [ + "▁surgeries", + -12.553017616271973 + ], + [ + "är", + -12.553077697753906 + ], + [ + "▁Indie", + -12.55312442779541 + ], + [ + "▁prescribe", + -12.55321216583252 + ], + [ + "▁questionable", + -12.553289413452148 + ], + [ + "▁tuck", + -12.553465843200684 + ], + [ + "kla", + -12.553629875183105 + ], + [ + "▁Git", + -12.553648948669434 + ], + [ + "esco", + -12.553728103637695 + ], + [ + "▁flames", + -12.553841590881348 + ], + [ + "▁discern", + -12.553889274597168 + ], + [ + "▁Pune", + -12.554027557373047 + ], + [ + "▁humid", + -12.554046630859375 + ], + [ + "enriched", + -12.554102897644043 + ], + [ + "▁antibiotic", + -12.554146766662598 + ], + [ + "▁wavelength", + -12.554259300231934 + ], + [ + "▁sage", + -12.554296493530273 + ], + [ + "thirds", + -12.554388999938965 + ], + [ + "Mbps", + -12.554441452026367 + ], + [ + "▁uploading", + -12.554458618164062 + ], + [ + "fulness", + -12.554489135742188 + ], + [ + "▁bathing", + -12.554603576660156 + ], + [ + "Armed", + -12.554618835449219 + ], + [ + "▁persuade", + -12.554656982421875 + ], + [ + "▁superstar", + -12.554677963256836 + ], + [ + "▁Sisters", + -12.55469036102295 + ], + [ + "ROW", + -12.554697036743164 + ], + [ + "▁800-3", + -12.554963111877441 + ], + [ + "▁Insert", + -12.555015563964844 + ], + [ + "▁relieved", + -12.55504035949707 + ], + [ + "shake", + -12.555047035217285 + ], + [ + "▁Brewing", + -12.55505084991455 + ], + [ + "▁intuition", + -12.555249214172363 + ], + [ + "▁sideline", + -12.555286407470703 + ], + [ + "▁marvelous", + -12.555304527282715 + ], + [ + "▁Swim", + -12.55531120300293 + ], + [ + "▁trimming", + -12.555536270141602 + ], + [ + "▁skating", + -12.555553436279297 + ], + [ + "▁Wii", + -12.555624008178711 + ], + [ + "▁differentiation", + -12.555634498596191 + ], + [ + "▁ripped", + -12.555704116821289 + ], + [ + "▁Leslie", + -12.555747032165527 + ], + [ + "▁AIDS", + -12.55577278137207 + ], + [ + "Super", + -12.555780410766602 + ], + [ + "Call", + -12.555821418762207 + ], + [ + "▁Dub", + -12.555839538574219 + ], + [ + "▁Huge", + -12.556021690368652 + ], + [ + "protein", + -12.556035995483398 + ], + [ + "▁grading", + -12.556060791015625 + ], + [ + "▁surrounds", + -12.556161880493164 + ], + [ + "▁Peterson", + -12.556188583374023 + ], + [ + "▁1600", + -12.556360244750977 + ], + [ + "▁Newsletter", + -12.556370735168457 + ], + [ + "▁Richardson", + -12.55643367767334 + ], + [ + "istan", + -12.556544303894043 + ], + [ + "▁Tibetan", + -12.556599617004395 + ], + [ + "▁usability", + -12.55666446685791 + ], + [ + "▁capitalism", + -12.55670166015625 + ], + [ + "▁vitality", + -12.55670166015625 + ], + [ + "whereby", + -12.556857109069824 + ], + [ + "▁(#", + -12.55701732635498 + ], + [ + "DNA", + -12.557025909423828 + ], + [ + "▁restructuring", + -12.557086944580078 + ], + [ + "▁Hungarian", + -12.557316780090332 + ], + [ + "▁Accident", + -12.55760383605957 + ], + [ + "▁kettle", + -12.557624816894531 + ], + [ + "2.2", + -12.557693481445312 + ], + [ + "vous", + -12.557695388793945 + ], + [ + "ienne", + -12.557716369628906 + ], + [ + "▁averaging", + -12.558064460754395 + ], + [ + "ARA", + -12.558107376098633 + ], + [ + "ön", + -12.55826473236084 + ], + [ + "▁mentality", + -12.558289527893066 + ], + [ + "▁refrigerate", + -12.558294296264648 + ], + [ + "▁DON", + -12.558342933654785 + ], + [ + "Cam", + -12.558573722839355 + ], + [ + "physical", + -12.558601379394531 + ], + [ + "▁ikea", + -12.558624267578125 + ], + [ + "▁tactic", + -12.558712005615234 + ], + [ + "▁starch", + -12.558796882629395 + ], + [ + "▁Mueller", + -12.558981895446777 + ], + [ + "▁beneficiary", + -12.558985710144043 + ], + [ + "▁disposition", + -12.55911922454834 + ], + [ + "▁Quinn", + -12.55916976928711 + ], + [ + "TIN", + -12.55920124053955 + ], + [ + "▁Recording", + -12.55926513671875 + ], + [ + "shadow", + -12.55933952331543 + ], + [ + "▁preset", + -12.559344291687012 + ], + [ + "feel", + -12.5594482421875 + ], + [ + "▁Capacity", + -12.559735298156738 + ], + [ + "▁slaughter", + -12.559849739074707 + ], + [ + "▁honeymoon", + -12.559920310974121 + ], + [ + "▁migrate", + -12.559958457946777 + ], + [ + "trix", + -12.560047149658203 + ], + [ + "▁heavenly", + -12.560192108154297 + ], + [ + "▁stigma", + -12.56026840209961 + ], + [ + "▁weaving", + -12.560283660888672 + ], + [ + "Ray", + -12.560346603393555 + ], + [ + "▁lymph", + -12.560408592224121 + ], + [ + "▁9/11", + -12.560670852661133 + ], + [ + "utu", + -12.560736656188965 + ], + [ + "▁Devices", + -12.560837745666504 + ], + [ + "▁1939", + -12.56092357635498 + ], + [ + "▁drizzle", + -12.561002731323242 + ], + [ + "staff", + -12.561127662658691 + ], + [ + "resolving", + -12.561134338378906 + ], + [ + "▁centerpiece", + -12.561199188232422 + ], + [ + "inson", + -12.561246871948242 + ], + [ + "▁vouchers", + -12.561285018920898 + ], + [ + "nada", + -12.561326026916504 + ], + [ + "▁borrower", + -12.561371803283691 + ], + [ + "▁4%", + -12.56141185760498 + ], + [ + "▁Advice", + -12.561461448669434 + ], + [ + "▁sketches", + -12.561482429504395 + ], + [ + "▁Password", + -12.561483383178711 + ], + [ + "▁displaced", + -12.56152629852295 + ], + [ + "▁Pleasant", + -12.561637878417969 + ], + [ + "▁Tweet", + -12.561639785766602 + ], + [ + "▁Ske", + -12.561676025390625 + ], + [ + "raise", + -12.561698913574219 + ], + [ + "▁urgency", + -12.561882019042969 + ], + [ + "▁Valve", + -12.561949729919434 + ], + [ + "▁Manila", + -12.562152862548828 + ], + [ + "▁imposing", + -12.562389373779297 + ], + [ + "▁Kane", + -12.562444686889648 + ], + [ + "▁pancakes", + -12.562735557556152 + ], + [ + "▁speedy", + -12.562790870666504 + ], + [ + "uid", + -12.562849998474121 + ], + [ + "▁Combined", + -12.562851905822754 + ], + [ + "3-0", + -12.562884330749512 + ], + [ + "▁breaker", + -12.562959671020508 + ], + [ + "spiration", + -12.563017845153809 + ], + [ + "▁pottery", + -12.563026428222656 + ], + [ + "▁garnish", + -12.563206672668457 + ], + [ + "▁bending", + -12.563374519348145 + ], + [ + "▁spirituality", + -12.56342601776123 + ], + [ + "▁melody", + -12.56342887878418 + ], + [ + "▁hitch", + -12.563492774963379 + ], + [ + "▁endpoint", + -12.563590049743652 + ], + [ + "Game", + -12.563942909240723 + ], + [ + "utz", + -12.563944816589355 + ], + [ + "020", + -12.563972473144531 + ], + [ + "3.8", + -12.563994407653809 + ], + [ + "▁revenge", + -12.56418228149414 + ], + [ + "▁seldom", + -12.564186096191406 + ], + [ + "▁Adventures", + -12.564201354980469 + ], + [ + "▁growers", + -12.564362525939941 + ], + [ + "▁Cornell", + -12.564599990844727 + ], + [ + "▁Programming", + -12.564642906188965 + ], + [ + "▁Peel", + -12.564724922180176 + ], + [ + "▁tedious", + -12.564778327941895 + ], + [ + "▁lipstick", + -12.564803123474121 + ], + [ + "discover", + -12.564811706542969 + ], + [ + "▁paramount", + -12.564933776855469 + ], + [ + "File", + -12.56494140625 + ], + [ + "ле", + -12.565049171447754 + ], + [ + "dox", + -12.565107345581055 + ], + [ + "▁africa", + -12.565108299255371 + ], + [ + "operation", + -12.565164566040039 + ], + [ + "CIO", + -12.565303802490234 + ], + [ + "▁Overview", + -12.565476417541504 + ], + [ + "▁hobbies", + -12.565574645996094 + ], + [ + "▁reusable", + -12.565805435180664 + ], + [ + "▁latch", + -12.565855026245117 + ], + [ + "▁feared", + -12.56589412689209 + ], + [ + "nagar", + -12.566004753112793 + ], + [ + "2-2", + -12.566132545471191 + ], + [ + "pipe", + -12.566136360168457 + ], + [ + "holic", + -12.56616497039795 + ], + [ + ":26", + -12.566474914550781 + ], + [ + "VB", + -12.56666374206543 + ], + [ + "topic", + -12.566875457763672 + ], + [ + "ivi", + -12.566892623901367 + ], + [ + "▁archaeological", + -12.566964149475098 + ], + [ + "950", + -12.5670804977417 + ], + [ + "▁florist", + -12.567240715026855 + ], + [ + "chee", + -12.567329406738281 + ], + [ + "▁mast", + -12.567398071289062 + ], + [ + "▁unmatched", + -12.567429542541504 + ], + [ + "▁ruined", + -12.567471504211426 + ], + [ + "pivotal", + -12.567495346069336 + ], + [ + "▁Worcester", + -12.56760311126709 + ], + [ + "Mari", + -12.567659378051758 + ], + [ + "▁Rabbi", + -12.567834854125977 + ], + [ + "unless", + -12.567845344543457 + ], + [ + "▁inheritance", + -12.567879676818848 + ], + [ + "▁abound", + -12.568008422851562 + ], + [ + "Numerous", + -12.568069458007812 + ], + [ + "ghan", + -12.56810188293457 + ], + [ + "▁classmates", + -12.56814193725586 + ], + [ + "jee", + -12.568222999572754 + ], + [ + "▁Plug", + -12.568415641784668 + ], + [ + "▁Marty", + -12.568497657775879 + ], + [ + "▁11:00", + -12.568522453308105 + ], + [ + "egg", + -12.56856632232666 + ], + [ + "▁stunt", + -12.568602561950684 + ], + [ + "▁soothe", + -12.568605422973633 + ], + [ + "▁solidarity", + -12.56882381439209 + ], + [ + "▁Lotus", + -12.568950653076172 + ], + [ + "▁Legion", + -12.569008827209473 + ], + [ + "ATCH", + -12.569091796875 + ], + [ + "▁Riley", + -12.569168090820312 + ], + [ + "▁chilled", + -12.569214820861816 + ], + [ + "▁cork", + -12.569303512573242 + ], + [ + "▁Alexandria", + -12.569395065307617 + ], + [ + "▁Dat", + -12.56939697265625 + ], + [ + "▁disagreement", + -12.569499969482422 + ], + [ + "AKE", + -12.569604873657227 + ], + [ + "mig", + -12.569714546203613 + ], + [ + "▁Carnival", + -12.569753646850586 + ], + [ + "▁directories", + -12.569875717163086 + ], + [ + "ро", + -12.569950103759766 + ], + [ + "ün", + -12.569979667663574 + ], + [ + "Live", + -12.570023536682129 + ], + [ + "▁Merchant", + -12.570184707641602 + ], + [ + "IAL", + -12.570198059082031 + ], + [ + "▁Evil", + -12.570444107055664 + ], + [ + "▁Jac", + -12.570554733276367 + ], + [ + "download", + -12.570569038391113 + ], + [ + "▁progressed", + -12.570696830749512 + ], + [ + "▁Kenneth", + -12.570745468139648 + ], + [ + "▁refrain", + -12.570876121520996 + ], + [ + "6-2", + -12.570915222167969 + ], + [ + "▁Slip", + -12.57093620300293 + ], + [ + "▁Yamaha", + -12.570959091186523 + ], + [ + "music", + -12.571043014526367 + ], + [ + "▁walkway", + -12.571072578430176 + ], + [ + "▁vocational", + -12.571127891540527 + ], + [ + "▁Soldier", + -12.571304321289062 + ], + [ + "▁Brock", + -12.571427345275879 + ], + [ + "RW", + -12.571455001831055 + ], + [ + "▁RED", + -12.571474075317383 + ], + [ + "China", + -12.57148265838623 + ], + [ + "▁titanium", + -12.571513175964355 + ], + [ + "7.0", + -12.571579933166504 + ], + [ + "▁balloons", + -12.571756362915039 + ], + [ + "▁perpetual", + -12.571793556213379 + ], + [ + "▁pom", + -12.571876525878906 + ], + [ + "▁Maj", + -12.571945190429688 + ], + [ + "▁Communist", + -12.572054862976074 + ], + [ + "▁fluorescent", + -12.5720853805542 + ], + [ + "▁rituals", + -12.572125434875488 + ], + [ + "▁Chap", + -12.572128295898438 + ], + [ + "▁Bid", + -12.57213020324707 + ], + [ + "▁Drill", + -12.572243690490723 + ], + [ + "▁enquiries", + -12.572259902954102 + ], + [ + "▁Pep", + -12.572264671325684 + ], + [ + "bike", + -12.572458267211914 + ], + [ + "uku", + -12.57252025604248 + ], + [ + "spring", + -12.572608947753906 + ], + [ + "▁MLB", + -12.572625160217285 + ], + [ + "▁skeleton", + -12.572843551635742 + ], + [ + "exposing", + -12.572941780090332 + ], + [ + "▁stash", + -12.572975158691406 + ], + [ + "▁toughest", + -12.572983741760254 + ], + [ + "▁displacement", + -12.573058128356934 + ], + [ + "▁lavish", + -12.573164939880371 + ], + [ + "▁Prison", + -12.573171615600586 + ], + [ + "dream", + -12.573212623596191 + ], + [ + "▁Pavilion", + -12.57325267791748 + ], + [ + "mund", + -12.573271751403809 + ], + [ + "▁(2008)", + -12.573302268981934 + ], + [ + "coding", + -12.573345184326172 + ], + [ + "phase", + -12.573379516601562 + ], + [ + "utton", + -12.573413848876953 + ], + [ + "central", + -12.573419570922852 + ], + [ + "▁collaborator", + -12.5735445022583 + ], + [ + "nath", + -12.573686599731445 + ], + [ + "gies", + -12.573697090148926 + ], + [ + "▁carrot", + -12.573845863342285 + ], + [ + "▁refreshed", + -12.573877334594727 + ], + [ + "▁chilly", + -12.573904037475586 + ], + [ + "different", + -12.573963165283203 + ], + [ + "compelled", + -12.574094772338867 + ], + [ + "▁Etsy", + -12.574200630187988 + ], + [ + "▁Supplement", + -12.57421875 + ], + [ + "▁fullest", + -12.574234008789062 + ], + [ + "▁catastrophic", + -12.574246406555176 + ], + [ + "7.1", + -12.574264526367188 + ], + [ + "LED", + -12.574355125427246 + ], + [ + "▁benches", + -12.574362754821777 + ], + [ + "▁1-800-", + -12.574365615844727 + ], + [ + "▁unlocked", + -12.57441234588623 + ], + [ + "7-8", + -12.574414253234863 + ], + [ + "steroid", + -12.574444770812988 + ], + [ + "Look", + -12.57447624206543 + ], + [ + "▁Hitler", + -12.574767112731934 + ], + [ + "▁1954", + -12.575141906738281 + ], + [ + "▁pony", + -12.57515811920166 + ], + [ + "▁chap", + -12.575207710266113 + ], + [ + "▁authorize", + -12.57535457611084 + ], + [ + "▁Ost", + -12.57564926147461 + ], + [ + "VIS", + -12.575675964355469 + ], + [ + "▁campground", + -12.57570743560791 + ], + [ + "biz", + -12.575759887695312 + ], + [ + "▁Luck", + -12.576031684875488 + ], + [ + "club", + -12.576202392578125 + ], + [ + "traction", + -12.576250076293945 + ], + [ + "fide", + -12.576263427734375 + ], + [ + "▁Marion", + -12.576353073120117 + ], + [ + "traditional", + -12.57637882232666 + ], + [ + "▁Cou", + -12.576400756835938 + ], + [ + "before", + -12.576443672180176 + ], + [ + "▁dread", + -12.576469421386719 + ], + [ + "awaited", + -12.576580047607422 + ], + [ + "▁Precision", + -12.576615333557129 + ], + [ + "▁distributing", + -12.576618194580078 + ], + [ + "▁Rid", + -12.576635360717773 + ], + [ + "▁Marriott", + -12.57664680480957 + ], + [ + "240", + -12.576650619506836 + ], + [ + "/2018", + -12.576910018920898 + ], + [ + "▁Feeling", + -12.576951026916504 + ], + [ + "▁Mesa", + -12.577101707458496 + ], + [ + "▁MacBook", + -12.57711410522461 + ], + [ + "▁Exit", + -12.577166557312012 + ], + [ + "ROM", + -12.577287673950195 + ], + [ + "XX", + -12.57736873626709 + ], + [ + "▁apprentice", + -12.577425003051758 + ], + [ + "TING", + -12.577766418457031 + ], + [ + "▁motherboard", + -12.577788352966309 + ], + [ + "▁piston", + -12.578166961669922 + ], + [ + "▁rebuilding", + -12.578221321105957 + ], + [ + "▁Molly", + -12.578359603881836 + ], + [ + "▁teamwork", + -12.578381538391113 + ], + [ + "▁Lightning", + -12.578398704528809 + ], + [ + "6-1", + -12.578511238098145 + ], + [ + "▁literal", + -12.5786771774292 + ], + [ + "mote", + -12.578764915466309 + ], + [ + "▁confine", + -12.57894229888916 + ], + [ + "ension", + -12.579085350036621 + ], + [ + "▁fragments", + -12.579089164733887 + ], + [ + "▁scal", + -12.579174995422363 + ], + [ + "▁Hamburg", + -12.579193115234375 + ], + [ + "▁Lopez", + -12.579404830932617 + ], + [ + "▁regeneration", + -12.57949447631836 + ], + [ + "vention", + -12.579588890075684 + ], + [ + "▁cousins", + -12.579606056213379 + ], + [ + "▁Calvin", + -12.579612731933594 + ], + [ + "▁Wesley", + -12.579632759094238 + ], + [ + "denying", + -12.579666137695312 + ], + [ + "▁volcanic", + -12.579699516296387 + ], + [ + "▁Beef", + -12.579736709594727 + ], + [ + "▁mistaken", + -12.579800605773926 + ], + [ + "digit", + -12.579955101013184 + ], + [ + "pok", + -12.580015182495117 + ], + [ + "fashioned", + -12.5800199508667 + ], + [ + "▁contraction", + -12.580087661743164 + ], + [ + "▁addicted", + -12.580114364624023 + ], + [ + "▁toddlers", + -12.580167770385742 + ], + [ + "▁Funding", + -12.58018684387207 + ], + [ + "ambo", + -12.58022689819336 + ], + [ + "▁cyclists", + -12.58022689819336 + ], + [ + "▁combustion", + -12.580227851867676 + ], + [ + "▁Zach", + -12.580411911010742 + ], + [ + "▁10:30", + -12.580429077148438 + ], + [ + "▁merits", + -12.58044719696045 + ], + [ + "▁torch", + -12.580460548400879 + ], + [ + "Pack", + -12.580525398254395 + ], + [ + "▁Eugene", + -12.580621719360352 + ], + [ + "▁Slav", + -12.580662727355957 + ], + [ + "▁replay", + -12.580852508544922 + ], + [ + "▁Universities", + -12.5810546875 + ], + [ + "▁Sonic", + -12.58117961883545 + ], + [ + "▁Utility", + -12.581351280212402 + ], + [ + "mba", + -12.581456184387207 + ], + [ + "▁Raleigh", + -12.581631660461426 + ], + [ + "▁Brew", + -12.581731796264648 + ], + [ + "▁franc", + -12.581778526306152 + ], + [ + "▁statistically", + -12.581778526306152 + ], + [ + "Pacific", + -12.581905364990234 + ], + [ + "▁groceries", + -12.581934928894043 + ], + [ + "▁terribly", + -12.582053184509277 + ], + [ + "▁downloadable", + -12.582161903381348 + ], + [ + "▁ebay", + -12.582242965698242 + ], + [ + "Source", + -12.582330703735352 + ], + [ + "▁dude", + -12.582343101501465 + ], + [ + "▁Retirement", + -12.582406997680664 + ], + [ + "stay", + -12.582558631896973 + ], + [ + "sons", + -12.582562446594238 + ], + [ + "▁societal", + -12.582701683044434 + ], + [ + "▁candid", + -12.582706451416016 + ], + [ + "▁Penny", + -12.582744598388672 + ], + [ + "VP", + -12.582867622375488 + ], + [ + "▁Zar", + -12.582914352416992 + ], + [ + "▁embellish", + -12.582990646362305 + ], + [ + "▁distressed", + -12.582993507385254 + ], + [ + "▁Shock", + -12.58316707611084 + ], + [ + "Dec", + -12.58319091796875 + ], + [ + "4.7", + -12.583216667175293 + ], + [ + "▁(6)", + -12.583353996276855 + ], + [ + "▁uphold", + -12.583378791809082 + ], + [ + "▁Easily", + -12.583410263061523 + ], + [ + "nag", + -12.583494186401367 + ], + [ + "▁vault", + -12.583537101745605 + \ No newline at end of file