From 638b63c52ffcf356c74d03d1d9bb25db3cd6a218 Mon Sep 17 00:00:00 2001 From: ModelHub XC Date: Thu, 14 May 2026 05:11:42 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=9D=E5=A7=8B=E5=8C=96=E9=A1=B9=E7=9B=AE?= =?UTF-8?q?=EF=BC=8C=E7=94=B1ModelHub=20XC=E7=A4=BE=E5=8C=BA=E6=8F=90?= =?UTF-8?q?=E4=BE=9B=E6=A8=A1=E5=9E=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Model: ChengsenWang/ChatTime-1-7B-Chat Source: Original Platform --- .gitattributes | 35 + README.md | 150 + added_tokens.json | 10003 ++++ architecture.png | Bin 0 -> 309599 bytes config.json | 31 + generation_config.json | 10 + model-00001-of-00003.safetensors | 3 + model-00002-of-00003.safetensors | 3 + model-00003-of-00003.safetensors | 3 + model.safetensors.index.json | 298 + special_tokens_map.json | 24 + tokenizer.model | 3 + tokenizer_config.json | 80051 +++++++++++++++++++++++++++++ 13 files changed, 90614 insertions(+) create mode 100644 .gitattributes create mode 100644 README.md create mode 100644 added_tokens.json create mode 100644 architecture.png create mode 100644 config.json create mode 100644 generation_config.json create mode 100644 model-00001-of-00003.safetensors create mode 100644 model-00002-of-00003.safetensors create mode 100644 model-00003-of-00003.safetensors create mode 100644 model.safetensors.index.json create mode 100644 special_tokens_map.json create mode 100644 tokenizer.model create mode 100644 tokenizer_config.json diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..a6344aa --- /dev/null +++ b/.gitattributes @@ -0,0 +1,35 @@ +*.7z filter=lfs diff=lfs merge=lfs -text +*.arrow filter=lfs diff=lfs merge=lfs -text +*.bin filter=lfs diff=lfs merge=lfs -text +*.bz2 filter=lfs diff=lfs merge=lfs -text +*.ckpt filter=lfs diff=lfs merge=lfs -text +*.ftz filter=lfs diff=lfs merge=lfs -text +*.gz filter=lfs diff=lfs merge=lfs -text +*.h5 filter=lfs diff=lfs merge=lfs -text +*.joblib filter=lfs diff=lfs merge=lfs -text +*.lfs.* filter=lfs diff=lfs merge=lfs -text +*.mlmodel filter=lfs diff=lfs merge=lfs -text +*.model filter=lfs diff=lfs merge=lfs -text +*.msgpack filter=lfs diff=lfs merge=lfs -text +*.npy filter=lfs diff=lfs merge=lfs -text +*.npz filter=lfs diff=lfs merge=lfs -text +*.onnx filter=lfs diff=lfs merge=lfs -text +*.ot filter=lfs diff=lfs merge=lfs -text +*.parquet filter=lfs diff=lfs merge=lfs -text +*.pb filter=lfs diff=lfs merge=lfs -text +*.pickle filter=lfs diff=lfs merge=lfs -text +*.pkl filter=lfs diff=lfs merge=lfs -text +*.pt filter=lfs diff=lfs merge=lfs -text +*.pth filter=lfs diff=lfs merge=lfs -text +*.rar filter=lfs diff=lfs merge=lfs -text +*.safetensors filter=lfs diff=lfs merge=lfs -text +saved_model/**/* filter=lfs diff=lfs merge=lfs -text +*.tar.* filter=lfs diff=lfs merge=lfs -text +*.tar filter=lfs diff=lfs merge=lfs -text +*.tflite filter=lfs diff=lfs merge=lfs -text +*.tgz filter=lfs diff=lfs merge=lfs -text +*.wasm filter=lfs diff=lfs merge=lfs -text +*.xz filter=lfs diff=lfs merge=lfs -text +*.zip filter=lfs diff=lfs merge=lfs -text +*.zst filter=lfs diff=lfs merge=lfs -text +*tfevents* filter=lfs diff=lfs merge=lfs -text diff --git a/README.md b/README.md new file mode 100644 index 0000000..db4baa6 --- /dev/null +++ b/README.md @@ -0,0 +1,150 @@ +--- +license: apache-2.0 +datasets: +- ChengsenWang/ChatTime-1-Finetune-100K +base_model: +- ChengsenWang/ChatTime-1-7B-Base +tags: +- time-series +- pretrained-model +- foundation-model +- multimodality +- multimodal-time-series-foundation-model +pipeline_tag: time-series-forecasting +--- + +# ChatTime: A Multimodal Time Series Foundation Model + +## ✨ Introduction + +In this paper, we innovatively model time series as a foreign language and construct ChatTime, a unified framework for time series and text processing. As an out-of-the-box multimodal time series foundation model, ChatTime provides zero-shot forecasting capability and supports bimodal input/output for both time series and text. We design a series of experiments to verify the superior performance of ChatTime across multiple tasks and scenarios, and create four multimodal datasets to address data gaps. The experimental results demonstrate the potential and utility of ChatTime. + +As depicted in Figure 1(c), during the instruction fine-tuning stage, we fine-tune [ChengsenWang/ChatTime-1-7B-Base](https://huggingface.co/ChengsenWang/ChatTime-1-7B-Base) on [ChengsenWang/ChatTime-1-Finetune-100K](https://huggingface.co/datasets/ChengsenWang/ChatTime-1-Finetune-100K), yielding [ChengsenWang/ChatTime-1-7B-Chat](https://huggingface.co/ChengsenWang/ChatTime-1-7B-Chat). + +For details on ChatTime models, training data and procedures, and experimental results, please refer to the [arXiv](https://arxiv.org/abs/2412.11376). + +![](architecture.png) + +## 📈 Usage + +We present three minimal examples showing how to perform the multimodal time series analysis using the ChatTime model. The detailed code is available in the [Github](https://github.com/ForestsKing/ChatTime). + +### Zero-Shot Time Series Forecasting + +```python + +import numpy as np +import pandas as pd +import matplotlib.pyplot as plt +from model.model import ChatTime + +dataset = "Traffic" +hist_len = 120 +pred_len = 24 +model_path = "ChengsenWang/ChatTime-1-7B-Chat" + +df = pd.read_csv(f"./dataset/{dataset}.csv") +hist_data = np.array(df["Hist"].apply(eval).values.tolist())[:, -hist_len:][0] +pred_data = np.array(df["Pred"].apply(eval).values.tolist())[:, :pred_len][0] + +model = ChatTime(hist_len=hist_len, pred_len=pred_len, model_path=model_path) + +out = model.predict(hist_data) + +hist_x = np.linspace(0, hist_len-1, hist_len) +pred_x = np.linspace(hist_len, hist_len+pred_len-1, pred_len) + +plt.figure(figsize=(8, 2), dpi=500) +plt.plot(hist_x, hist_data, color='#000000') +plt.plot(pred_x, pred_data, color='#000000', label='true') +plt.plot(pred_x, out, color='#FF7F0E', label='pred') +plt.axvline(hist_len, color='red') +plt.legend(loc="upper left") +plt.show() + +``` + +### Context-Guided Time Series Forecasting + +```python + +import numpy as np +import pandas as pd +import matplotlib.pyplot as plt +from model.model import ChatTime + +dataset = "PTF" +hist_len = 120 +pred_len = 24 +model_path = "ChengsenWang/ChatTime-1-7B-Chat" + +df = pd.read_csv(f"./dataset/{dataset}.csv") +hist_data = np.array(df["Hist"].apply(eval).values.tolist())[:, -hist_len:][0] +pred_data = np.array(df["Pred"].apply(eval).values.tolist())[:, :pred_len][0] +context = df["Text"].values[0] + +model = ChatTime(hist_len=hist_len, pred_len=pred_len, model_path=model_path) + +out_text = model.predict(hist_data, context) +out = model.predict(hist_data) + +hist_x = np.linspace(0, hist_len-1, hist_len) +pred_x = np.linspace(hist_len, hist_len+pred_len-1, pred_len) + +plt.figure(figsize=(8, 2), dpi=500) +plt.plot(hist_x, hist_data, color='#000000') +plt.plot(pred_x, pred_data, color='#000000', label='true') +plt.plot(pred_x, out_text, color='#FF7F0E', label='pred_text') +plt.plot(pred_x, out, color='#1F77B4', label='pred') +plt.axvline(hist_len, color='red') +plt.legend(loc="upper left") +plt.show() + +``` + +### Time Series Question Answering + +```python + +import numpy as np +import pandas as pd +import matplotlib.pyplot as plt +from model.model import ChatTime + +dataset = "TSQA" +model_path = "ChengsenWang/ChatTime-1-7B-Chat" + +df = pd.read_csv(f"./dataset/{dataset}.csv") +series = np.array(df["Series"].apply(eval).values.tolist())[0] +question = df["Question"].values[0] +answer = df["Answer"].values[0] + +model = ChatTime(model_path=model_path) + +out = model.analyze(question, series) + +plt.figure(figsize=(8, 2), dpi=500) +plt.plot(series, color='#000000') +plt.show() + +print(question) +print(f"\n{out} / {answer}\n") + +``` + +## 📝 Citation + +If you find this repo or our work useful for your research, please consider citing the paper: + +```tex +@inproceedings{ + author = {Chengsen Wang and Qi Qi and Jingyu Wang and Haifeng Sun and Zirui Zhuang and Jinming Wu and Lei Zhang and Jianxin Liao}, + title = {ChatTime: A Unified Multimodal Time Series Foundation Model Bridging Numerical and Textual Data}, + booktitle = {AAAI Conference on Artificial Intelligence}, + year = {2025}, +} +``` + +## 📪 Contact + +If you have any question, please contact [cswang@bupt.edu.cn](). \ No newline at end of file diff --git a/added_tokens.json b/added_tokens.json new file mode 100644 index 0000000..975a14b --- /dev/null +++ b/added_tokens.json @@ -0,0 +1,10003 @@ +{ + "###-0.0001###": 36999, + "###-0.0003###": 36998, + "###-0.0005###": 36997, + "###-0.0007###": 36996, + "###-0.0009###": 36995, + "###-0.0011###": 36994, + "###-0.0013###": 36993, + "###-0.0015###": 36992, + "###-0.0017###": 36991, + "###-0.0019###": 36990, + "###-0.0021###": 36989, + "###-0.0023###": 36988, + "###-0.0025###": 36987, + "###-0.0027###": 36986, + "###-0.0029###": 36985, + "###-0.0031###": 36984, + "###-0.0033###": 36983, + "###-0.0035###": 36982, + "###-0.0037###": 36981, + "###-0.0039###": 36980, + "###-0.0041###": 36979, + "###-0.0043###": 36978, + "###-0.0045###": 36977, + "###-0.0047###": 36976, + "###-0.0049###": 36975, + "###-0.0051###": 36974, + "###-0.0053###": 36973, + "###-0.0055###": 36972, + "###-0.0057###": 36971, + "###-0.0059###": 36970, + "###-0.0061###": 36969, + "###-0.0063###": 36968, + "###-0.0065###": 36967, + "###-0.0067###": 36966, + "###-0.0069###": 36965, + "###-0.0071###": 36964, + "###-0.0073###": 36963, + "###-0.0075###": 36962, + "###-0.0077###": 36961, + "###-0.0079###": 36960, + "###-0.0081###": 36959, + "###-0.0083###": 36958, + "###-0.0085###": 36957, + "###-0.0087###": 36956, + "###-0.0089###": 36955, + "###-0.0091###": 36954, + "###-0.0093###": 36953, + "###-0.0095###": 36952, + "###-0.0097###": 36951, + "###-0.0099###": 36950, + "###-0.0101###": 36949, + "###-0.0103###": 36948, + "###-0.0105###": 36947, + "###-0.0107###": 36946, + "###-0.0109###": 36945, + "###-0.0111###": 36944, + "###-0.0113###": 36943, + "###-0.0115###": 36942, + "###-0.0117###": 36941, + "###-0.0119###": 36940, + "###-0.0121###": 36939, + "###-0.0123###": 36938, + "###-0.0125###": 36937, + "###-0.0127###": 36936, + "###-0.0129###": 36935, + "###-0.0131###": 36934, + "###-0.0133###": 36933, + "###-0.0135###": 36932, + "###-0.0137###": 36931, + "###-0.0139###": 36930, + "###-0.0141###": 36929, + "###-0.0143###": 36928, + "###-0.0145###": 36927, + "###-0.0147###": 36926, + "###-0.0149###": 36925, + "###-0.0151###": 36924, + "###-0.0153###": 36923, + "###-0.0155###": 36922, + "###-0.0157###": 36921, + "###-0.0159###": 36920, + "###-0.0161###": 36919, + "###-0.0163###": 36918, + "###-0.0165###": 36917, + "###-0.0167###": 36916, + "###-0.0169###": 36915, + "###-0.0171###": 36914, + "###-0.0173###": 36913, + "###-0.0175###": 36912, + "###-0.0177###": 36911, + "###-0.0179###": 36910, + "###-0.0181###": 36909, + "###-0.0183###": 36908, + "###-0.0185###": 36907, + "###-0.0187###": 36906, + "###-0.0189###": 36905, + "###-0.0191###": 36904, + "###-0.0193###": 36903, + "###-0.0195###": 36902, + "###-0.0197###": 36901, + "###-0.0199###": 36900, + "###-0.0201###": 36899, + "###-0.0203###": 36898, + "###-0.0205###": 36897, + "###-0.0207###": 36896, + "###-0.0209###": 36895, + "###-0.0211###": 36894, + "###-0.0213###": 36893, + "###-0.0215###": 36892, + "###-0.0217###": 36891, + "###-0.0219###": 36890, + "###-0.0221###": 36889, + "###-0.0223###": 36888, + "###-0.0225###": 36887, + "###-0.0227###": 36886, + "###-0.0229###": 36885, + "###-0.0231###": 36884, + "###-0.0233###": 36883, + "###-0.0235###": 36882, + "###-0.0237###": 36881, + "###-0.0239###": 36880, + "###-0.0241###": 36879, + "###-0.0243###": 36878, + "###-0.0245###": 36877, + "###-0.0247###": 36876, + "###-0.0249###": 36875, + "###-0.0251###": 36874, + "###-0.0253###": 36873, + "###-0.0255###": 36872, + "###-0.0257###": 36871, + "###-0.0259###": 36870, + "###-0.0261###": 36869, + "###-0.0263###": 36868, + "###-0.0265###": 36867, + "###-0.0267###": 36866, + "###-0.0269###": 36865, + "###-0.0271###": 36864, + "###-0.0273###": 36863, + "###-0.0275###": 36862, + "###-0.0277###": 36861, + "###-0.0279###": 36860, + "###-0.0281###": 36859, + "###-0.0283###": 36858, + "###-0.0285###": 36857, + "###-0.0287###": 36856, + "###-0.0289###": 36855, + "###-0.0291###": 36854, + "###-0.0293###": 36853, + "###-0.0295###": 36852, + "###-0.0297###": 36851, + "###-0.0299###": 36850, + "###-0.0301###": 36849, + "###-0.0303###": 36848, + "###-0.0305###": 36847, + "###-0.0307###": 36846, + "###-0.0309###": 36845, + "###-0.0311###": 36844, + "###-0.0313###": 36843, + "###-0.0315###": 36842, + "###-0.0317###": 36841, + "###-0.0319###": 36840, + "###-0.0321###": 36839, + "###-0.0323###": 36838, + "###-0.0325###": 36837, + "###-0.0327###": 36836, + "###-0.0329###": 36835, + "###-0.0331###": 36834, + "###-0.0333###": 36833, + "###-0.0335###": 36832, + "###-0.0337###": 36831, + "###-0.0339###": 36830, + "###-0.0341###": 36829, + "###-0.0343###": 36828, + "###-0.0345###": 36827, + "###-0.0347###": 36826, + "###-0.0349###": 36825, + "###-0.0351###": 36824, + "###-0.0353###": 36823, + "###-0.0355###": 36822, + "###-0.0357###": 36821, + "###-0.0359###": 36820, + "###-0.0361###": 36819, + "###-0.0363###": 36818, + "###-0.0365###": 36817, + "###-0.0367###": 36816, + "###-0.0369###": 36815, + "###-0.0371###": 36814, + "###-0.0373###": 36813, + "###-0.0375###": 36812, + "###-0.0377###": 36811, + "###-0.0379###": 36810, + "###-0.0381###": 36809, + "###-0.0383###": 36808, + "###-0.0385###": 36807, + "###-0.0387###": 36806, + "###-0.0389###": 36805, + "###-0.0391###": 36804, + "###-0.0393###": 36803, + "###-0.0395###": 36802, + "###-0.0397###": 36801, + "###-0.0399###": 36800, + "###-0.0401###": 36799, + "###-0.0403###": 36798, + "###-0.0405###": 36797, + "###-0.0407###": 36796, + "###-0.0409###": 36795, + "###-0.0411###": 36794, + "###-0.0413###": 36793, + "###-0.0415###": 36792, + "###-0.0417###": 36791, + "###-0.0419###": 36790, + "###-0.0421###": 36789, + "###-0.0423###": 36788, + "###-0.0425###": 36787, + "###-0.0427###": 36786, + "###-0.0429###": 36785, + "###-0.0431###": 36784, + "###-0.0433###": 36783, + "###-0.0435###": 36782, + "###-0.0437###": 36781, + "###-0.0439###": 36780, + "###-0.0441###": 36779, + "###-0.0443###": 36778, + "###-0.0445###": 36777, + "###-0.0447###": 36776, + "###-0.0449###": 36775, + "###-0.0451###": 36774, + "###-0.0453###": 36773, + "###-0.0455###": 36772, + "###-0.0457###": 36771, + "###-0.0459###": 36770, + "###-0.0461###": 36769, + "###-0.0463###": 36768, + "###-0.0465###": 36767, + "###-0.0467###": 36766, + "###-0.0469###": 36765, + "###-0.0471###": 36764, + "###-0.0473###": 36763, + "###-0.0475###": 36762, + "###-0.0477###": 36761, + "###-0.0479###": 36760, + "###-0.0481###": 36759, + "###-0.0483###": 36758, + "###-0.0485###": 36757, + "###-0.0487###": 36756, + "###-0.0489###": 36755, + "###-0.0491###": 36754, + "###-0.0493###": 36753, + "###-0.0495###": 36752, + "###-0.0497###": 36751, + "###-0.0499###": 36750, + "###-0.0501###": 36749, + "###-0.0503###": 36748, + "###-0.0505###": 36747, + "###-0.0507###": 36746, + "###-0.0509###": 36745, + "###-0.0511###": 36744, + "###-0.0513###": 36743, + "###-0.0515###": 36742, + "###-0.0517###": 36741, + "###-0.0519###": 36740, + "###-0.0521###": 36739, + "###-0.0523###": 36738, + "###-0.0525###": 36737, + "###-0.0527###": 36736, + "###-0.0529###": 36735, + "###-0.0531###": 36734, + "###-0.0533###": 36733, + "###-0.0535###": 36732, + "###-0.0537###": 36731, + "###-0.0539###": 36730, + "###-0.0541###": 36729, + "###-0.0543###": 36728, + "###-0.0545###": 36727, + "###-0.0547###": 36726, + "###-0.0549###": 36725, + "###-0.0551###": 36724, + "###-0.0553###": 36723, + "###-0.0555###": 36722, + "###-0.0557###": 36721, + "###-0.0559###": 36720, + "###-0.0561###": 36719, + "###-0.0563###": 36718, + "###-0.0565###": 36717, + "###-0.0567###": 36716, + "###-0.0569###": 36715, + "###-0.0571###": 36714, + "###-0.0573###": 36713, + "###-0.0575###": 36712, + "###-0.0577###": 36711, + "###-0.0579###": 36710, + "###-0.0581###": 36709, + "###-0.0583###": 36708, + "###-0.0585###": 36707, + "###-0.0587###": 36706, + "###-0.0589###": 36705, + "###-0.0591###": 36704, + "###-0.0593###": 36703, + "###-0.0595###": 36702, + "###-0.0597###": 36701, + "###-0.0599###": 36700, + "###-0.0601###": 36699, + "###-0.0603###": 36698, + "###-0.0605###": 36697, + "###-0.0607###": 36696, + "###-0.0609###": 36695, + "###-0.0611###": 36694, + "###-0.0613###": 36693, + "###-0.0615###": 36692, + "###-0.0617###": 36691, + "###-0.0619###": 36690, + "###-0.0621###": 36689, + "###-0.0623###": 36688, + "###-0.0625###": 36687, + "###-0.0627###": 36686, + "###-0.0629###": 36685, + "###-0.0631###": 36684, + "###-0.0633###": 36683, + "###-0.0635###": 36682, + "###-0.0637###": 36681, + "###-0.0639###": 36680, + "###-0.0641###": 36679, + "###-0.0643###": 36678, + "###-0.0645###": 36677, + "###-0.0647###": 36676, + "###-0.0649###": 36675, + "###-0.0651###": 36674, + "###-0.0653###": 36673, + "###-0.0655###": 36672, + "###-0.0657###": 36671, + "###-0.0659###": 36670, + "###-0.0661###": 36669, + "###-0.0663###": 36668, + "###-0.0665###": 36667, + "###-0.0667###": 36666, + "###-0.0669###": 36665, + "###-0.0671###": 36664, + "###-0.0673###": 36663, + "###-0.0675###": 36662, + "###-0.0677###": 36661, + "###-0.0679###": 36660, + "###-0.0681###": 36659, + "###-0.0683###": 36658, + "###-0.0685###": 36657, + "###-0.0687###": 36656, + "###-0.0689###": 36655, + "###-0.0691###": 36654, + "###-0.0693###": 36653, + "###-0.0695###": 36652, + "###-0.0697###": 36651, + "###-0.0699###": 36650, + "###-0.0701###": 36649, + "###-0.0703###": 36648, + "###-0.0705###": 36647, + "###-0.0707###": 36646, + "###-0.0709###": 36645, + "###-0.0711###": 36644, + "###-0.0713###": 36643, + "###-0.0715###": 36642, + "###-0.0717###": 36641, + "###-0.0719###": 36640, + "###-0.0721###": 36639, + "###-0.0723###": 36638, + "###-0.0725###": 36637, + "###-0.0727###": 36636, + "###-0.0729###": 36635, + "###-0.0731###": 36634, + "###-0.0733###": 36633, + "###-0.0735###": 36632, + "###-0.0737###": 36631, + "###-0.0739###": 36630, + "###-0.0741###": 36629, + "###-0.0743###": 36628, + "###-0.0745###": 36627, + "###-0.0747###": 36626, + "###-0.0749###": 36625, + "###-0.0751###": 36624, + "###-0.0753###": 36623, + "###-0.0755###": 36622, + "###-0.0757###": 36621, + "###-0.0759###": 36620, + "###-0.0761###": 36619, + "###-0.0763###": 36618, + "###-0.0765###": 36617, + "###-0.0767###": 36616, + "###-0.0769###": 36615, + "###-0.0771###": 36614, + "###-0.0773###": 36613, + "###-0.0775###": 36612, + "###-0.0777###": 36611, + "###-0.0779###": 36610, + "###-0.0781###": 36609, + "###-0.0783###": 36608, + "###-0.0785###": 36607, + "###-0.0787###": 36606, + "###-0.0789###": 36605, + "###-0.0791###": 36604, + "###-0.0793###": 36603, + "###-0.0795###": 36602, + "###-0.0797###": 36601, + "###-0.0799###": 36600, + "###-0.0801###": 36599, + "###-0.0803###": 36598, + "###-0.0805###": 36597, + "###-0.0807###": 36596, + "###-0.0809###": 36595, + "###-0.0811###": 36594, + "###-0.0813###": 36593, + "###-0.0815###": 36592, + "###-0.0817###": 36591, + "###-0.0819###": 36590, + "###-0.0821###": 36589, + "###-0.0823###": 36588, + "###-0.0825###": 36587, + "###-0.0827###": 36586, + "###-0.0829###": 36585, + "###-0.0831###": 36584, + "###-0.0833###": 36583, + "###-0.0835###": 36582, + "###-0.0837###": 36581, + "###-0.0839###": 36580, + "###-0.0841###": 36579, + "###-0.0843###": 36578, + "###-0.0845###": 36577, + "###-0.0847###": 36576, + "###-0.0849###": 36575, + "###-0.0851###": 36574, + "###-0.0853###": 36573, + "###-0.0855###": 36572, + "###-0.0857###": 36571, + "###-0.0859###": 36570, + "###-0.0861###": 36569, + "###-0.0863###": 36568, + "###-0.0865###": 36567, + "###-0.0867###": 36566, + "###-0.0869###": 36565, + "###-0.0871###": 36564, + "###-0.0873###": 36563, + "###-0.0875###": 36562, + "###-0.0877###": 36561, + "###-0.0879###": 36560, + "###-0.0881###": 36559, + "###-0.0883###": 36558, + "###-0.0885###": 36557, + "###-0.0887###": 36556, + "###-0.0889###": 36555, + "###-0.0891###": 36554, + "###-0.0893###": 36553, + "###-0.0895###": 36552, + "###-0.0897###": 36551, + "###-0.0899###": 36550, + "###-0.0901###": 36549, + "###-0.0903###": 36548, + "###-0.0905###": 36547, + "###-0.0907###": 36546, + "###-0.0909###": 36545, + "###-0.0911###": 36544, + "###-0.0913###": 36543, + "###-0.0915###": 36542, + "###-0.0917###": 36541, + "###-0.0919###": 36540, + "###-0.0921###": 36539, + "###-0.0923###": 36538, + "###-0.0925###": 36537, + "###-0.0927###": 36536, + "###-0.0929###": 36535, + "###-0.0931###": 36534, + "###-0.0933###": 36533, + "###-0.0935###": 36532, + "###-0.0937###": 36531, + "###-0.0939###": 36530, + "###-0.0941###": 36529, + "###-0.0943###": 36528, + "###-0.0945###": 36527, + "###-0.0947###": 36526, + "###-0.0949###": 36525, + "###-0.0951###": 36524, + "###-0.0953###": 36523, + "###-0.0955###": 36522, + "###-0.0957###": 36521, + "###-0.0959###": 36520, + "###-0.0961###": 36519, + "###-0.0963###": 36518, + "###-0.0965###": 36517, + "###-0.0967###": 36516, + "###-0.0969###": 36515, + "###-0.0971###": 36514, + "###-0.0973###": 36513, + "###-0.0975###": 36512, + "###-0.0977###": 36511, + "###-0.0979###": 36510, + "###-0.0981###": 36509, + "###-0.0983###": 36508, + "###-0.0985###": 36507, + "###-0.0987###": 36506, + "###-0.0989###": 36505, + "###-0.0991###": 36504, + "###-0.0993###": 36503, + "###-0.0995###": 36502, + "###-0.0997###": 36501, + "###-0.0999###": 36500, + "###-0.1001###": 36499, + "###-0.1003###": 36498, + "###-0.1005###": 36497, + "###-0.1007###": 36496, + "###-0.1009###": 36495, + "###-0.1011###": 36494, + "###-0.1013###": 36493, + "###-0.1015###": 36492, + "###-0.1017###": 36491, + "###-0.1019###": 36490, + "###-0.1021###": 36489, + "###-0.1023###": 36488, + "###-0.1025###": 36487, + "###-0.1027###": 36486, + "###-0.1029###": 36485, + "###-0.1031###": 36484, + "###-0.1033###": 36483, + "###-0.1035###": 36482, + "###-0.1037###": 36481, + "###-0.1039###": 36480, + "###-0.1041###": 36479, + "###-0.1043###": 36478, + "###-0.1045###": 36477, + "###-0.1047###": 36476, + "###-0.1049###": 36475, + "###-0.1051###": 36474, + "###-0.1053###": 36473, + "###-0.1055###": 36472, + "###-0.1057###": 36471, + "###-0.1059###": 36470, + "###-0.1061###": 36469, + "###-0.1063###": 36468, + "###-0.1065###": 36467, + "###-0.1067###": 36466, + "###-0.1069###": 36465, + "###-0.1071###": 36464, + "###-0.1073###": 36463, + "###-0.1075###": 36462, + "###-0.1077###": 36461, + "###-0.1079###": 36460, + "###-0.1081###": 36459, + "###-0.1083###": 36458, + "###-0.1085###": 36457, + "###-0.1087###": 36456, + "###-0.1089###": 36455, + "###-0.1091###": 36454, + "###-0.1093###": 36453, + "###-0.1095###": 36452, + "###-0.1097###": 36451, + "###-0.1099###": 36450, + "###-0.1101###": 36449, + "###-0.1103###": 36448, + "###-0.1105###": 36447, + "###-0.1107###": 36446, + "###-0.1109###": 36445, + "###-0.1111###": 36444, + "###-0.1113###": 36443, + "###-0.1115###": 36442, + "###-0.1117###": 36441, + "###-0.1119###": 36440, + "###-0.1121###": 36439, + "###-0.1123###": 36438, + "###-0.1125###": 36437, + "###-0.1127###": 36436, + "###-0.1129###": 36435, + "###-0.1131###": 36434, + "###-0.1133###": 36433, + "###-0.1135###": 36432, + "###-0.1137###": 36431, + "###-0.1139###": 36430, + "###-0.1141###": 36429, + "###-0.1143###": 36428, + "###-0.1145###": 36427, + "###-0.1147###": 36426, + "###-0.1149###": 36425, + "###-0.1151###": 36424, + "###-0.1153###": 36423, + "###-0.1155###": 36422, + "###-0.1157###": 36421, + "###-0.1159###": 36420, + "###-0.1161###": 36419, + "###-0.1163###": 36418, + "###-0.1165###": 36417, + "###-0.1167###": 36416, + "###-0.1169###": 36415, + "###-0.1171###": 36414, + "###-0.1173###": 36413, + "###-0.1175###": 36412, + "###-0.1177###": 36411, + "###-0.1179###": 36410, + "###-0.1181###": 36409, + "###-0.1183###": 36408, + "###-0.1185###": 36407, + "###-0.1187###": 36406, + "###-0.1189###": 36405, + "###-0.1191###": 36404, + "###-0.1193###": 36403, + "###-0.1195###": 36402, + "###-0.1197###": 36401, + "###-0.1199###": 36400, + "###-0.1201###": 36399, + "###-0.1203###": 36398, + "###-0.1205###": 36397, + "###-0.1207###": 36396, + "###-0.1209###": 36395, + "###-0.1211###": 36394, + "###-0.1213###": 36393, + "###-0.1215###": 36392, + "###-0.1217###": 36391, + "###-0.1219###": 36390, + "###-0.1221###": 36389, + "###-0.1223###": 36388, + "###-0.1225###": 36387, + "###-0.1227###": 36386, + "###-0.1229###": 36385, + "###-0.1231###": 36384, + "###-0.1233###": 36383, + "###-0.1235###": 36382, + "###-0.1237###": 36381, + "###-0.1239###": 36380, + "###-0.1241###": 36379, + "###-0.1243###": 36378, + "###-0.1245###": 36377, + "###-0.1247###": 36376, + "###-0.1249###": 36375, + "###-0.1251###": 36374, + "###-0.1253###": 36373, + "###-0.1255###": 36372, + "###-0.1257###": 36371, + "###-0.1259###": 36370, + "###-0.1261###": 36369, + "###-0.1263###": 36368, + "###-0.1265###": 36367, + "###-0.1267###": 36366, + "###-0.1269###": 36365, + "###-0.1271###": 36364, + "###-0.1273###": 36363, + "###-0.1275###": 36362, + "###-0.1277###": 36361, + "###-0.1279###": 36360, + "###-0.1281###": 36359, + "###-0.1283###": 36358, + "###-0.1285###": 36357, + "###-0.1287###": 36356, + "###-0.1289###": 36355, + "###-0.1291###": 36354, + "###-0.1293###": 36353, + "###-0.1295###": 36352, + "###-0.1297###": 36351, + "###-0.1299###": 36350, + "###-0.1301###": 36349, + "###-0.1303###": 36348, + "###-0.1305###": 36347, + "###-0.1307###": 36346, + "###-0.1309###": 36345, + "###-0.1311###": 36344, + "###-0.1313###": 36343, + "###-0.1315###": 36342, + "###-0.1317###": 36341, + "###-0.1319###": 36340, + "###-0.1321###": 36339, + "###-0.1323###": 36338, + "###-0.1325###": 36337, + "###-0.1327###": 36336, + "###-0.1329###": 36335, + "###-0.1331###": 36334, + "###-0.1333###": 36333, + "###-0.1335###": 36332, + "###-0.1337###": 36331, + "###-0.1339###": 36330, + "###-0.1341###": 36329, + "###-0.1343###": 36328, + "###-0.1345###": 36327, + "###-0.1347###": 36326, + "###-0.1349###": 36325, + "###-0.1351###": 36324, + "###-0.1353###": 36323, + "###-0.1355###": 36322, + "###-0.1357###": 36321, + "###-0.1359###": 36320, + "###-0.1361###": 36319, + "###-0.1363###": 36318, + "###-0.1365###": 36317, + "###-0.1367###": 36316, + "###-0.1369###": 36315, + "###-0.1371###": 36314, + "###-0.1373###": 36313, + "###-0.1375###": 36312, + "###-0.1377###": 36311, + "###-0.1379###": 36310, + "###-0.1381###": 36309, + "###-0.1383###": 36308, + "###-0.1385###": 36307, + "###-0.1387###": 36306, + "###-0.1389###": 36305, + "###-0.1391###": 36304, + "###-0.1393###": 36303, + "###-0.1395###": 36302, + "###-0.1397###": 36301, + "###-0.1399###": 36300, + "###-0.1401###": 36299, + "###-0.1403###": 36298, + "###-0.1405###": 36297, + "###-0.1407###": 36296, + "###-0.1409###": 36295, + "###-0.1411###": 36294, + "###-0.1413###": 36293, + "###-0.1415###": 36292, + "###-0.1417###": 36291, + "###-0.1419###": 36290, + "###-0.1421###": 36289, + "###-0.1423###": 36288, + "###-0.1425###": 36287, + "###-0.1427###": 36286, + "###-0.1429###": 36285, + "###-0.1431###": 36284, + "###-0.1433###": 36283, + "###-0.1435###": 36282, + "###-0.1437###": 36281, + "###-0.1439###": 36280, + "###-0.1441###": 36279, + "###-0.1443###": 36278, + "###-0.1445###": 36277, + "###-0.1447###": 36276, + "###-0.1449###": 36275, + "###-0.1451###": 36274, + "###-0.1453###": 36273, + "###-0.1455###": 36272, + "###-0.1457###": 36271, + "###-0.1459###": 36270, + "###-0.1461###": 36269, + "###-0.1463###": 36268, + "###-0.1465###": 36267, + "###-0.1467###": 36266, + "###-0.1469###": 36265, + "###-0.1471###": 36264, + "###-0.1473###": 36263, + "###-0.1475###": 36262, + "###-0.1477###": 36261, + "###-0.1479###": 36260, + "###-0.1481###": 36259, + "###-0.1483###": 36258, + "###-0.1485###": 36257, + "###-0.1487###": 36256, + "###-0.1489###": 36255, + "###-0.1491###": 36254, + "###-0.1493###": 36253, + "###-0.1495###": 36252, + "###-0.1497###": 36251, + "###-0.1499###": 36250, + "###-0.1501###": 36249, + "###-0.1503###": 36248, + "###-0.1505###": 36247, + "###-0.1507###": 36246, + "###-0.1509###": 36245, + "###-0.1511###": 36244, + "###-0.1513###": 36243, + "###-0.1515###": 36242, + "###-0.1517###": 36241, + "###-0.1519###": 36240, + "###-0.1521###": 36239, + "###-0.1523###": 36238, + "###-0.1525###": 36237, + "###-0.1527###": 36236, + "###-0.1529###": 36235, + "###-0.1531###": 36234, + "###-0.1533###": 36233, + "###-0.1535###": 36232, + "###-0.1537###": 36231, + "###-0.1539###": 36230, + "###-0.1541###": 36229, + "###-0.1543###": 36228, + "###-0.1545###": 36227, + "###-0.1547###": 36226, + "###-0.1549###": 36225, + "###-0.1551###": 36224, + "###-0.1553###": 36223, + "###-0.1555###": 36222, + "###-0.1557###": 36221, + "###-0.1559###": 36220, + "###-0.1561###": 36219, + "###-0.1563###": 36218, + "###-0.1565###": 36217, + "###-0.1567###": 36216, + "###-0.1569###": 36215, + "###-0.1571###": 36214, + "###-0.1573###": 36213, + "###-0.1575###": 36212, + "###-0.1577###": 36211, + "###-0.1579###": 36210, + "###-0.1581###": 36209, + "###-0.1583###": 36208, + "###-0.1585###": 36207, + "###-0.1587###": 36206, + "###-0.1589###": 36205, + "###-0.1591###": 36204, + "###-0.1593###": 36203, + "###-0.1595###": 36202, + "###-0.1597###": 36201, + "###-0.1599###": 36200, + "###-0.1601###": 36199, + "###-0.1603###": 36198, + "###-0.1605###": 36197, + "###-0.1607###": 36196, + "###-0.1609###": 36195, + "###-0.1611###": 36194, + "###-0.1613###": 36193, + "###-0.1615###": 36192, + "###-0.1617###": 36191, + "###-0.1619###": 36190, + "###-0.1621###": 36189, + "###-0.1623###": 36188, + "###-0.1625###": 36187, + "###-0.1627###": 36186, + "###-0.1629###": 36185, + "###-0.1631###": 36184, + "###-0.1633###": 36183, + "###-0.1635###": 36182, + "###-0.1637###": 36181, + "###-0.1639###": 36180, + "###-0.1641###": 36179, + "###-0.1643###": 36178, + "###-0.1645###": 36177, + "###-0.1647###": 36176, + "###-0.1649###": 36175, + "###-0.1651###": 36174, + "###-0.1653###": 36173, + "###-0.1655###": 36172, + "###-0.1657###": 36171, + "###-0.1659###": 36170, + "###-0.1661###": 36169, + "###-0.1663###": 36168, + "###-0.1665###": 36167, + "###-0.1667###": 36166, + "###-0.1669###": 36165, + "###-0.1671###": 36164, + "###-0.1673###": 36163, + "###-0.1675###": 36162, + "###-0.1677###": 36161, + "###-0.1679###": 36160, + "###-0.1681###": 36159, + "###-0.1683###": 36158, + "###-0.1685###": 36157, + "###-0.1687###": 36156, + "###-0.1689###": 36155, + "###-0.1691###": 36154, + "###-0.1693###": 36153, + "###-0.1695###": 36152, + "###-0.1697###": 36151, + "###-0.1699###": 36150, + "###-0.1701###": 36149, + "###-0.1703###": 36148, + "###-0.1705###": 36147, + "###-0.1707###": 36146, + "###-0.1709###": 36145, + "###-0.1711###": 36144, + "###-0.1713###": 36143, + "###-0.1715###": 36142, + "###-0.1717###": 36141, + "###-0.1719###": 36140, + "###-0.1721###": 36139, + "###-0.1723###": 36138, + "###-0.1725###": 36137, + "###-0.1727###": 36136, + "###-0.1729###": 36135, + "###-0.1731###": 36134, + "###-0.1733###": 36133, + "###-0.1735###": 36132, + "###-0.1737###": 36131, + "###-0.1739###": 36130, + "###-0.1741###": 36129, + "###-0.1743###": 36128, + "###-0.1745###": 36127, + "###-0.1747###": 36126, + "###-0.1749###": 36125, + "###-0.1751###": 36124, + "###-0.1753###": 36123, + "###-0.1755###": 36122, + "###-0.1757###": 36121, + "###-0.1759###": 36120, + "###-0.1761###": 36119, + "###-0.1763###": 36118, + "###-0.1765###": 36117, + "###-0.1767###": 36116, + "###-0.1769###": 36115, + "###-0.1771###": 36114, + "###-0.1773###": 36113, + "###-0.1775###": 36112, + "###-0.1777###": 36111, + "###-0.1779###": 36110, + "###-0.1781###": 36109, + "###-0.1783###": 36108, + "###-0.1785###": 36107, + "###-0.1787###": 36106, + "###-0.1789###": 36105, + "###-0.1791###": 36104, + "###-0.1793###": 36103, + "###-0.1795###": 36102, + "###-0.1797###": 36101, + "###-0.1799###": 36100, + "###-0.1801###": 36099, + "###-0.1803###": 36098, + "###-0.1805###": 36097, + "###-0.1807###": 36096, + "###-0.1809###": 36095, + "###-0.1811###": 36094, + "###-0.1813###": 36093, + "###-0.1815###": 36092, + "###-0.1817###": 36091, + "###-0.1819###": 36090, + "###-0.1821###": 36089, + "###-0.1823###": 36088, + "###-0.1825###": 36087, + "###-0.1827###": 36086, + "###-0.1829###": 36085, + "###-0.1831###": 36084, + "###-0.1833###": 36083, + "###-0.1835###": 36082, + "###-0.1837###": 36081, + "###-0.1839###": 36080, + "###-0.1841###": 36079, + "###-0.1843###": 36078, + "###-0.1845###": 36077, + "###-0.1847###": 36076, + "###-0.1849###": 36075, + "###-0.1851###": 36074, + "###-0.1853###": 36073, + "###-0.1855###": 36072, + "###-0.1857###": 36071, + "###-0.1859###": 36070, + "###-0.1861###": 36069, + "###-0.1863###": 36068, + "###-0.1865###": 36067, + "###-0.1867###": 36066, + "###-0.1869###": 36065, + "###-0.1871###": 36064, + "###-0.1873###": 36063, + "###-0.1875###": 36062, + "###-0.1877###": 36061, + "###-0.1879###": 36060, + "###-0.1881###": 36059, + "###-0.1883###": 36058, + "###-0.1885###": 36057, + "###-0.1887###": 36056, + "###-0.1889###": 36055, + "###-0.1891###": 36054, + "###-0.1893###": 36053, + "###-0.1895###": 36052, + "###-0.1897###": 36051, + "###-0.1899###": 36050, + "###-0.1901###": 36049, + "###-0.1903###": 36048, + "###-0.1905###": 36047, + "###-0.1907###": 36046, + "###-0.1909###": 36045, + "###-0.1911###": 36044, + "###-0.1913###": 36043, + "###-0.1915###": 36042, + "###-0.1917###": 36041, + "###-0.1919###": 36040, + "###-0.1921###": 36039, + "###-0.1923###": 36038, + "###-0.1925###": 36037, + "###-0.1927###": 36036, + "###-0.1929###": 36035, + "###-0.1931###": 36034, + "###-0.1933###": 36033, + "###-0.1935###": 36032, + "###-0.1937###": 36031, + "###-0.1939###": 36030, + "###-0.1941###": 36029, + "###-0.1943###": 36028, + "###-0.1945###": 36027, + "###-0.1947###": 36026, + "###-0.1949###": 36025, + "###-0.1951###": 36024, + "###-0.1953###": 36023, + "###-0.1955###": 36022, + "###-0.1957###": 36021, + "###-0.1959###": 36020, + "###-0.1961###": 36019, + "###-0.1963###": 36018, + "###-0.1965###": 36017, + "###-0.1967###": 36016, + "###-0.1969###": 36015, + "###-0.1971###": 36014, + "###-0.1973###": 36013, + "###-0.1975###": 36012, + "###-0.1977###": 36011, + "###-0.1979###": 36010, + "###-0.1981###": 36009, + "###-0.1983###": 36008, + "###-0.1985###": 36007, + "###-0.1987###": 36006, + "###-0.1989###": 36005, + "###-0.1991###": 36004, + "###-0.1993###": 36003, + "###-0.1995###": 36002, + "###-0.1997###": 36001, + "###-0.1999###": 36000, + "###-0.2001###": 35999, + "###-0.2003###": 35998, + "###-0.2005###": 35997, + "###-0.2007###": 35996, + "###-0.2009###": 35995, + "###-0.2011###": 35994, + "###-0.2013###": 35993, + "###-0.2015###": 35992, + "###-0.2017###": 35991, + "###-0.2019###": 35990, + "###-0.2021###": 35989, + "###-0.2023###": 35988, + "###-0.2025###": 35987, + "###-0.2027###": 35986, + "###-0.2029###": 35985, + "###-0.2031###": 35984, + "###-0.2033###": 35983, + "###-0.2035###": 35982, + "###-0.2037###": 35981, + "###-0.2039###": 35980, + "###-0.2041###": 35979, + "###-0.2043###": 35978, + "###-0.2045###": 35977, + "###-0.2047###": 35976, + "###-0.2049###": 35975, + "###-0.2051###": 35974, + "###-0.2053###": 35973, + "###-0.2055###": 35972, + "###-0.2057###": 35971, + "###-0.2059###": 35970, + "###-0.2061###": 35969, + "###-0.2063###": 35968, + "###-0.2065###": 35967, + "###-0.2067###": 35966, + "###-0.2069###": 35965, + "###-0.2071###": 35964, + "###-0.2073###": 35963, + "###-0.2075###": 35962, + "###-0.2077###": 35961, + "###-0.2079###": 35960, + "###-0.2081###": 35959, + "###-0.2083###": 35958, + "###-0.2085###": 35957, + "###-0.2087###": 35956, + "###-0.2089###": 35955, + "###-0.2091###": 35954, + "###-0.2093###": 35953, + "###-0.2095###": 35952, + "###-0.2097###": 35951, + "###-0.2099###": 35950, + "###-0.2101###": 35949, + "###-0.2103###": 35948, + "###-0.2105###": 35947, + "###-0.2107###": 35946, + "###-0.2109###": 35945, + "###-0.2111###": 35944, + "###-0.2113###": 35943, + "###-0.2115###": 35942, + "###-0.2117###": 35941, + "###-0.2119###": 35940, + "###-0.2121###": 35939, + "###-0.2123###": 35938, + "###-0.2125###": 35937, + "###-0.2127###": 35936, + "###-0.2129###": 35935, + "###-0.2131###": 35934, + "###-0.2133###": 35933, + "###-0.2135###": 35932, + "###-0.2137###": 35931, + "###-0.2139###": 35930, + "###-0.2141###": 35929, + "###-0.2143###": 35928, + "###-0.2145###": 35927, + "###-0.2147###": 35926, + "###-0.2149###": 35925, + "###-0.2151###": 35924, + "###-0.2153###": 35923, + "###-0.2155###": 35922, + "###-0.2157###": 35921, + "###-0.2159###": 35920, + "###-0.2161###": 35919, + "###-0.2163###": 35918, + "###-0.2165###": 35917, + "###-0.2167###": 35916, + "###-0.2169###": 35915, + "###-0.2171###": 35914, + "###-0.2173###": 35913, + "###-0.2175###": 35912, + "###-0.2177###": 35911, + "###-0.2179###": 35910, + "###-0.2181###": 35909, + "###-0.2183###": 35908, + "###-0.2185###": 35907, + "###-0.2187###": 35906, + "###-0.2189###": 35905, + "###-0.2191###": 35904, + "###-0.2193###": 35903, + "###-0.2195###": 35902, + "###-0.2197###": 35901, + "###-0.2199###": 35900, + "###-0.2201###": 35899, + "###-0.2203###": 35898, + "###-0.2205###": 35897, + "###-0.2207###": 35896, + "###-0.2209###": 35895, + "###-0.2211###": 35894, + "###-0.2213###": 35893, + "###-0.2215###": 35892, + "###-0.2217###": 35891, + "###-0.2219###": 35890, + "###-0.2221###": 35889, + "###-0.2223###": 35888, + "###-0.2225###": 35887, + "###-0.2227###": 35886, + "###-0.2229###": 35885, + "###-0.2231###": 35884, + "###-0.2233###": 35883, + "###-0.2235###": 35882, + "###-0.2237###": 35881, + "###-0.2239###": 35880, + "###-0.2241###": 35879, + "###-0.2243###": 35878, + "###-0.2245###": 35877, + "###-0.2247###": 35876, + "###-0.2249###": 35875, + "###-0.2251###": 35874, + "###-0.2253###": 35873, + "###-0.2255###": 35872, + "###-0.2257###": 35871, + "###-0.2259###": 35870, + "###-0.2261###": 35869, + "###-0.2263###": 35868, + "###-0.2265###": 35867, + "###-0.2267###": 35866, + "###-0.2269###": 35865, + "###-0.2271###": 35864, + "###-0.2273###": 35863, + "###-0.2275###": 35862, + "###-0.2277###": 35861, + "###-0.2279###": 35860, + "###-0.2281###": 35859, + "###-0.2283###": 35858, + "###-0.2285###": 35857, + "###-0.2287###": 35856, + "###-0.2289###": 35855, + "###-0.2291###": 35854, + "###-0.2293###": 35853, + "###-0.2295###": 35852, + "###-0.2297###": 35851, + "###-0.2299###": 35850, + "###-0.2301###": 35849, + "###-0.2303###": 35848, + "###-0.2305###": 35847, + "###-0.2307###": 35846, + "###-0.2309###": 35845, + "###-0.2311###": 35844, + "###-0.2313###": 35843, + "###-0.2315###": 35842, + "###-0.2317###": 35841, + "###-0.2319###": 35840, + "###-0.2321###": 35839, + "###-0.2323###": 35838, + "###-0.2325###": 35837, + "###-0.2327###": 35836, + "###-0.2329###": 35835, + "###-0.2331###": 35834, + "###-0.2333###": 35833, + "###-0.2335###": 35832, + "###-0.2337###": 35831, + "###-0.2339###": 35830, + "###-0.2341###": 35829, + "###-0.2343###": 35828, + "###-0.2345###": 35827, + "###-0.2347###": 35826, + "###-0.2349###": 35825, + "###-0.2351###": 35824, + "###-0.2353###": 35823, + "###-0.2355###": 35822, + "###-0.2357###": 35821, + "###-0.2359###": 35820, + "###-0.2361###": 35819, + "###-0.2363###": 35818, + "###-0.2365###": 35817, + "###-0.2367###": 35816, + "###-0.2369###": 35815, + "###-0.2371###": 35814, + "###-0.2373###": 35813, + "###-0.2375###": 35812, + "###-0.2377###": 35811, + "###-0.2379###": 35810, + "###-0.2381###": 35809, + "###-0.2383###": 35808, + "###-0.2385###": 35807, + "###-0.2387###": 35806, + "###-0.2389###": 35805, + "###-0.2391###": 35804, + "###-0.2393###": 35803, + "###-0.2395###": 35802, + "###-0.2397###": 35801, + "###-0.2399###": 35800, + "###-0.2401###": 35799, + "###-0.2403###": 35798, + "###-0.2405###": 35797, + "###-0.2407###": 35796, + "###-0.2409###": 35795, + "###-0.2411###": 35794, + "###-0.2413###": 35793, + "###-0.2415###": 35792, + "###-0.2417###": 35791, + "###-0.2419###": 35790, + "###-0.2421###": 35789, + "###-0.2423###": 35788, + "###-0.2425###": 35787, + "###-0.2427###": 35786, + "###-0.2429###": 35785, + "###-0.2431###": 35784, + "###-0.2433###": 35783, + "###-0.2435###": 35782, + "###-0.2437###": 35781, + "###-0.2439###": 35780, + "###-0.2441###": 35779, + "###-0.2443###": 35778, + "###-0.2445###": 35777, + "###-0.2447###": 35776, + "###-0.2449###": 35775, + "###-0.2451###": 35774, + "###-0.2453###": 35773, + "###-0.2455###": 35772, + "###-0.2457###": 35771, + "###-0.2459###": 35770, + "###-0.2461###": 35769, + "###-0.2463###": 35768, + "###-0.2465###": 35767, + "###-0.2467###": 35766, + "###-0.2469###": 35765, + "###-0.2471###": 35764, + "###-0.2473###": 35763, + "###-0.2475###": 35762, + "###-0.2477###": 35761, + "###-0.2479###": 35760, + "###-0.2481###": 35759, + "###-0.2483###": 35758, + "###-0.2485###": 35757, + "###-0.2487###": 35756, + "###-0.2489###": 35755, + "###-0.2491###": 35754, + "###-0.2493###": 35753, + "###-0.2495###": 35752, + "###-0.2497###": 35751, + "###-0.2499###": 35750, + "###-0.2501###": 35749, + "###-0.2503###": 35748, + "###-0.2505###": 35747, + "###-0.2507###": 35746, + "###-0.2509###": 35745, + "###-0.2511###": 35744, + "###-0.2513###": 35743, + "###-0.2515###": 35742, + "###-0.2517###": 35741, + "###-0.2519###": 35740, + "###-0.2521###": 35739, + "###-0.2523###": 35738, + "###-0.2525###": 35737, + "###-0.2527###": 35736, + "###-0.2529###": 35735, + "###-0.2531###": 35734, + "###-0.2533###": 35733, + "###-0.2535###": 35732, + "###-0.2537###": 35731, + "###-0.2539###": 35730, + "###-0.2541###": 35729, + "###-0.2543###": 35728, + "###-0.2545###": 35727, + "###-0.2547###": 35726, + "###-0.2549###": 35725, + "###-0.2551###": 35724, + "###-0.2553###": 35723, + "###-0.2555###": 35722, + "###-0.2557###": 35721, + "###-0.2559###": 35720, + "###-0.2561###": 35719, + "###-0.2563###": 35718, + "###-0.2565###": 35717, + "###-0.2567###": 35716, + "###-0.2569###": 35715, + "###-0.2571###": 35714, + "###-0.2573###": 35713, + "###-0.2575###": 35712, + "###-0.2577###": 35711, + "###-0.2579###": 35710, + "###-0.2581###": 35709, + "###-0.2583###": 35708, + "###-0.2585###": 35707, + "###-0.2587###": 35706, + "###-0.2589###": 35705, + "###-0.2591###": 35704, + "###-0.2593###": 35703, + "###-0.2595###": 35702, + "###-0.2597###": 35701, + "###-0.2599###": 35700, + "###-0.2601###": 35699, + "###-0.2603###": 35698, + "###-0.2605###": 35697, + "###-0.2607###": 35696, + "###-0.2609###": 35695, + "###-0.2611###": 35694, + "###-0.2613###": 35693, + "###-0.2615###": 35692, + "###-0.2617###": 35691, + "###-0.2619###": 35690, + "###-0.2621###": 35689, + "###-0.2623###": 35688, + "###-0.2625###": 35687, + "###-0.2627###": 35686, + "###-0.2629###": 35685, + "###-0.2631###": 35684, + "###-0.2633###": 35683, + "###-0.2635###": 35682, + "###-0.2637###": 35681, + "###-0.2639###": 35680, + "###-0.2641###": 35679, + "###-0.2643###": 35678, + "###-0.2645###": 35677, + "###-0.2647###": 35676, + "###-0.2649###": 35675, + "###-0.2651###": 35674, + "###-0.2653###": 35673, + "###-0.2655###": 35672, + "###-0.2657###": 35671, + "###-0.2659###": 35670, + "###-0.2661###": 35669, + "###-0.2663###": 35668, + "###-0.2665###": 35667, + "###-0.2667###": 35666, + "###-0.2669###": 35665, + "###-0.2671###": 35664, + "###-0.2673###": 35663, + "###-0.2675###": 35662, + "###-0.2677###": 35661, + "###-0.2679###": 35660, + "###-0.2681###": 35659, + "###-0.2683###": 35658, + "###-0.2685###": 35657, + "###-0.2687###": 35656, + "###-0.2689###": 35655, + "###-0.2691###": 35654, + "###-0.2693###": 35653, + "###-0.2695###": 35652, + "###-0.2697###": 35651, + "###-0.2699###": 35650, + "###-0.2701###": 35649, + "###-0.2703###": 35648, + "###-0.2705###": 35647, + "###-0.2707###": 35646, + "###-0.2709###": 35645, + "###-0.2711###": 35644, + "###-0.2713###": 35643, + "###-0.2715###": 35642, + "###-0.2717###": 35641, + "###-0.2719###": 35640, + "###-0.2721###": 35639, + "###-0.2723###": 35638, + "###-0.2725###": 35637, + "###-0.2727###": 35636, + "###-0.2729###": 35635, + "###-0.2731###": 35634, + "###-0.2733###": 35633, + "###-0.2735###": 35632, + "###-0.2737###": 35631, + "###-0.2739###": 35630, + "###-0.2741###": 35629, + "###-0.2743###": 35628, + "###-0.2745###": 35627, + "###-0.2747###": 35626, + "###-0.2749###": 35625, + "###-0.2751###": 35624, + "###-0.2753###": 35623, + "###-0.2755###": 35622, + "###-0.2757###": 35621, + "###-0.2759###": 35620, + "###-0.2761###": 35619, + "###-0.2763###": 35618, + "###-0.2765###": 35617, + "###-0.2767###": 35616, + "###-0.2769###": 35615, + "###-0.2771###": 35614, + "###-0.2773###": 35613, + "###-0.2775###": 35612, + "###-0.2777###": 35611, + "###-0.2779###": 35610, + "###-0.2781###": 35609, + "###-0.2783###": 35608, + "###-0.2785###": 35607, + "###-0.2787###": 35606, + "###-0.2789###": 35605, + "###-0.2791###": 35604, + "###-0.2793###": 35603, + "###-0.2795###": 35602, + "###-0.2797###": 35601, + "###-0.2799###": 35600, + "###-0.2801###": 35599, + "###-0.2803###": 35598, + "###-0.2805###": 35597, + "###-0.2807###": 35596, + "###-0.2809###": 35595, + "###-0.2811###": 35594, + "###-0.2813###": 35593, + "###-0.2815###": 35592, + "###-0.2817###": 35591, + "###-0.2819###": 35590, + "###-0.2821###": 35589, + "###-0.2823###": 35588, + "###-0.2825###": 35587, + "###-0.2827###": 35586, + "###-0.2829###": 35585, + "###-0.2831###": 35584, + "###-0.2833###": 35583, + "###-0.2835###": 35582, + "###-0.2837###": 35581, + "###-0.2839###": 35580, + "###-0.2841###": 35579, + "###-0.2843###": 35578, + "###-0.2845###": 35577, + "###-0.2847###": 35576, + "###-0.2849###": 35575, + "###-0.2851###": 35574, + "###-0.2853###": 35573, + "###-0.2855###": 35572, + "###-0.2857###": 35571, + "###-0.2859###": 35570, + "###-0.2861###": 35569, + "###-0.2863###": 35568, + "###-0.2865###": 35567, + "###-0.2867###": 35566, + "###-0.2869###": 35565, + "###-0.2871###": 35564, + "###-0.2873###": 35563, + "###-0.2875###": 35562, + "###-0.2877###": 35561, + "###-0.2879###": 35560, + "###-0.2881###": 35559, + "###-0.2883###": 35558, + "###-0.2885###": 35557, + "###-0.2887###": 35556, + "###-0.2889###": 35555, + "###-0.2891###": 35554, + "###-0.2893###": 35553, + "###-0.2895###": 35552, + "###-0.2897###": 35551, + "###-0.2899###": 35550, + "###-0.2901###": 35549, + "###-0.2903###": 35548, + "###-0.2905###": 35547, + "###-0.2907###": 35546, + "###-0.2909###": 35545, + "###-0.2911###": 35544, + "###-0.2913###": 35543, + "###-0.2915###": 35542, + "###-0.2917###": 35541, + "###-0.2919###": 35540, + "###-0.2921###": 35539, + "###-0.2923###": 35538, + "###-0.2925###": 35537, + "###-0.2927###": 35536, + "###-0.2929###": 35535, + "###-0.2931###": 35534, + "###-0.2933###": 35533, + "###-0.2935###": 35532, + "###-0.2937###": 35531, + "###-0.2939###": 35530, + "###-0.2941###": 35529, + "###-0.2943###": 35528, + "###-0.2945###": 35527, + "###-0.2947###": 35526, + "###-0.2949###": 35525, + "###-0.2951###": 35524, + "###-0.2953###": 35523, + "###-0.2955###": 35522, + "###-0.2957###": 35521, + "###-0.2959###": 35520, + "###-0.2961###": 35519, + "###-0.2963###": 35518, + "###-0.2965###": 35517, + "###-0.2967###": 35516, + "###-0.2969###": 35515, + "###-0.2971###": 35514, + "###-0.2973###": 35513, + "###-0.2975###": 35512, + "###-0.2977###": 35511, + "###-0.2979###": 35510, + "###-0.2981###": 35509, + "###-0.2983###": 35508, + "###-0.2985###": 35507, + "###-0.2987###": 35506, + "###-0.2989###": 35505, + "###-0.2991###": 35504, + "###-0.2993###": 35503, + "###-0.2995###": 35502, + "###-0.2997###": 35501, + "###-0.2999###": 35500, + "###-0.3001###": 35499, + "###-0.3003###": 35498, + "###-0.3005###": 35497, + "###-0.3007###": 35496, + "###-0.3009###": 35495, + "###-0.3011###": 35494, + "###-0.3013###": 35493, + "###-0.3015###": 35492, + "###-0.3017###": 35491, + "###-0.3019###": 35490, + "###-0.3021###": 35489, + "###-0.3023###": 35488, + "###-0.3025###": 35487, + "###-0.3027###": 35486, + "###-0.3029###": 35485, + "###-0.3031###": 35484, + "###-0.3033###": 35483, + "###-0.3035###": 35482, + "###-0.3037###": 35481, + "###-0.3039###": 35480, + "###-0.3041###": 35479, + "###-0.3043###": 35478, + "###-0.3045###": 35477, + "###-0.3047###": 35476, + "###-0.3049###": 35475, + "###-0.3051###": 35474, + "###-0.3053###": 35473, + "###-0.3055###": 35472, + "###-0.3057###": 35471, + "###-0.3059###": 35470, + "###-0.3061###": 35469, + "###-0.3063###": 35468, + "###-0.3065###": 35467, + "###-0.3067###": 35466, + "###-0.3069###": 35465, + "###-0.3071###": 35464, + "###-0.3073###": 35463, + "###-0.3075###": 35462, + "###-0.3077###": 35461, + "###-0.3079###": 35460, + "###-0.3081###": 35459, + "###-0.3083###": 35458, + "###-0.3085###": 35457, + "###-0.3087###": 35456, + "###-0.3089###": 35455, + "###-0.3091###": 35454, + "###-0.3093###": 35453, + "###-0.3095###": 35452, + "###-0.3097###": 35451, + "###-0.3099###": 35450, + "###-0.3101###": 35449, + "###-0.3103###": 35448, + "###-0.3105###": 35447, + "###-0.3107###": 35446, + "###-0.3109###": 35445, + "###-0.3111###": 35444, + "###-0.3113###": 35443, + "###-0.3115###": 35442, + "###-0.3117###": 35441, + "###-0.3119###": 35440, + "###-0.3121###": 35439, + "###-0.3123###": 35438, + "###-0.3125###": 35437, + "###-0.3127###": 35436, + "###-0.3129###": 35435, + "###-0.3131###": 35434, + "###-0.3133###": 35433, + "###-0.3135###": 35432, + "###-0.3137###": 35431, + "###-0.3139###": 35430, + "###-0.3141###": 35429, + "###-0.3143###": 35428, + "###-0.3145###": 35427, + "###-0.3147###": 35426, + "###-0.3149###": 35425, + "###-0.3151###": 35424, + "###-0.3153###": 35423, + "###-0.3155###": 35422, + "###-0.3157###": 35421, + "###-0.3159###": 35420, + "###-0.3161###": 35419, + "###-0.3163###": 35418, + "###-0.3165###": 35417, + "###-0.3167###": 35416, + "###-0.3169###": 35415, + "###-0.3171###": 35414, + "###-0.3173###": 35413, + "###-0.3175###": 35412, + "###-0.3177###": 35411, + "###-0.3179###": 35410, + "###-0.3181###": 35409, + "###-0.3183###": 35408, + "###-0.3185###": 35407, + "###-0.3187###": 35406, + "###-0.3189###": 35405, + "###-0.3191###": 35404, + "###-0.3193###": 35403, + "###-0.3195###": 35402, + "###-0.3197###": 35401, + "###-0.3199###": 35400, + "###-0.3201###": 35399, + "###-0.3203###": 35398, + "###-0.3205###": 35397, + "###-0.3207###": 35396, + "###-0.3209###": 35395, + "###-0.3211###": 35394, + "###-0.3213###": 35393, + "###-0.3215###": 35392, + "###-0.3217###": 35391, + "###-0.3219###": 35390, + "###-0.3221###": 35389, + "###-0.3223###": 35388, + "###-0.3225###": 35387, + "###-0.3227###": 35386, + "###-0.3229###": 35385, + "###-0.3231###": 35384, + "###-0.3233###": 35383, + "###-0.3235###": 35382, + "###-0.3237###": 35381, + "###-0.3239###": 35380, + "###-0.3241###": 35379, + "###-0.3243###": 35378, + "###-0.3245###": 35377, + "###-0.3247###": 35376, + "###-0.3249###": 35375, + "###-0.3251###": 35374, + "###-0.3253###": 35373, + "###-0.3255###": 35372, + "###-0.3257###": 35371, + "###-0.3259###": 35370, + "###-0.3261###": 35369, + "###-0.3263###": 35368, + "###-0.3265###": 35367, + "###-0.3267###": 35366, + "###-0.3269###": 35365, + "###-0.3271###": 35364, + "###-0.3273###": 35363, + "###-0.3275###": 35362, + "###-0.3277###": 35361, + "###-0.3279###": 35360, + "###-0.3281###": 35359, + "###-0.3283###": 35358, + "###-0.3285###": 35357, + "###-0.3287###": 35356, + "###-0.3289###": 35355, + "###-0.3291###": 35354, + "###-0.3293###": 35353, + "###-0.3295###": 35352, + "###-0.3297###": 35351, + "###-0.3299###": 35350, + "###-0.3301###": 35349, + "###-0.3303###": 35348, + "###-0.3305###": 35347, + "###-0.3307###": 35346, + "###-0.3309###": 35345, + "###-0.3311###": 35344, + "###-0.3313###": 35343, + "###-0.3315###": 35342, + "###-0.3317###": 35341, + "###-0.3319###": 35340, + "###-0.3321###": 35339, + "###-0.3323###": 35338, + "###-0.3325###": 35337, + "###-0.3327###": 35336, + "###-0.3329###": 35335, + "###-0.3331###": 35334, + "###-0.3333###": 35333, + "###-0.3335###": 35332, + "###-0.3337###": 35331, + "###-0.3339###": 35330, + "###-0.3341###": 35329, + "###-0.3343###": 35328, + "###-0.3345###": 35327, + "###-0.3347###": 35326, + "###-0.3349###": 35325, + "###-0.3351###": 35324, + "###-0.3353###": 35323, + "###-0.3355###": 35322, + "###-0.3357###": 35321, + "###-0.3359###": 35320, + "###-0.3361###": 35319, + "###-0.3363###": 35318, + "###-0.3365###": 35317, + "###-0.3367###": 35316, + "###-0.3369###": 35315, + "###-0.3371###": 35314, + "###-0.3373###": 35313, + "###-0.3375###": 35312, + "###-0.3377###": 35311, + "###-0.3379###": 35310, + "###-0.3381###": 35309, + "###-0.3383###": 35308, + "###-0.3385###": 35307, + "###-0.3387###": 35306, + "###-0.3389###": 35305, + "###-0.3391###": 35304, + "###-0.3393###": 35303, + "###-0.3395###": 35302, + "###-0.3397###": 35301, + "###-0.3399###": 35300, + "###-0.3401###": 35299, + "###-0.3403###": 35298, + "###-0.3405###": 35297, + "###-0.3407###": 35296, + "###-0.3409###": 35295, + "###-0.3411###": 35294, + "###-0.3413###": 35293, + "###-0.3415###": 35292, + "###-0.3417###": 35291, + "###-0.3419###": 35290, + "###-0.3421###": 35289, + "###-0.3423###": 35288, + "###-0.3425###": 35287, + "###-0.3427###": 35286, + "###-0.3429###": 35285, + "###-0.3431###": 35284, + "###-0.3433###": 35283, + "###-0.3435###": 35282, + "###-0.3437###": 35281, + "###-0.3439###": 35280, + "###-0.3441###": 35279, + "###-0.3443###": 35278, + "###-0.3445###": 35277, + "###-0.3447###": 35276, + "###-0.3449###": 35275, + "###-0.3451###": 35274, + "###-0.3453###": 35273, + "###-0.3455###": 35272, + "###-0.3457###": 35271, + "###-0.3459###": 35270, + "###-0.3461###": 35269, + "###-0.3463###": 35268, + "###-0.3465###": 35267, + "###-0.3467###": 35266, + "###-0.3469###": 35265, + "###-0.3471###": 35264, + "###-0.3473###": 35263, + "###-0.3475###": 35262, + "###-0.3477###": 35261, + "###-0.3479###": 35260, + "###-0.3481###": 35259, + "###-0.3483###": 35258, + "###-0.3485###": 35257, + "###-0.3487###": 35256, + "###-0.3489###": 35255, + "###-0.3491###": 35254, + "###-0.3493###": 35253, + "###-0.3495###": 35252, + "###-0.3497###": 35251, + "###-0.3499###": 35250, + "###-0.3501###": 35249, + "###-0.3503###": 35248, + "###-0.3505###": 35247, + "###-0.3507###": 35246, + "###-0.3509###": 35245, + "###-0.3511###": 35244, + "###-0.3513###": 35243, + "###-0.3515###": 35242, + "###-0.3517###": 35241, + "###-0.3519###": 35240, + "###-0.3521###": 35239, + "###-0.3523###": 35238, + "###-0.3525###": 35237, + "###-0.3527###": 35236, + "###-0.3529###": 35235, + "###-0.3531###": 35234, + "###-0.3533###": 35233, + "###-0.3535###": 35232, + "###-0.3537###": 35231, + "###-0.3539###": 35230, + "###-0.3541###": 35229, + "###-0.3543###": 35228, + "###-0.3545###": 35227, + "###-0.3547###": 35226, + "###-0.3549###": 35225, + "###-0.3551###": 35224, + "###-0.3553###": 35223, + "###-0.3555###": 35222, + "###-0.3557###": 35221, + "###-0.3559###": 35220, + "###-0.3561###": 35219, + "###-0.3563###": 35218, + "###-0.3565###": 35217, + "###-0.3567###": 35216, + "###-0.3569###": 35215, + "###-0.3571###": 35214, + "###-0.3573###": 35213, + "###-0.3575###": 35212, + "###-0.3577###": 35211, + "###-0.3579###": 35210, + "###-0.3581###": 35209, + "###-0.3583###": 35208, + "###-0.3585###": 35207, + "###-0.3587###": 35206, + "###-0.3589###": 35205, + "###-0.3591###": 35204, + "###-0.3593###": 35203, + "###-0.3595###": 35202, + "###-0.3597###": 35201, + "###-0.3599###": 35200, + "###-0.3601###": 35199, + "###-0.3603###": 35198, + "###-0.3605###": 35197, + "###-0.3607###": 35196, + "###-0.3609###": 35195, + "###-0.3611###": 35194, + "###-0.3613###": 35193, + "###-0.3615###": 35192, + "###-0.3617###": 35191, + "###-0.3619###": 35190, + "###-0.3621###": 35189, + "###-0.3623###": 35188, + "###-0.3625###": 35187, + "###-0.3627###": 35186, + "###-0.3629###": 35185, + "###-0.3631###": 35184, + "###-0.3633###": 35183, + "###-0.3635###": 35182, + "###-0.3637###": 35181, + "###-0.3639###": 35180, + "###-0.3641###": 35179, + "###-0.3643###": 35178, + "###-0.3645###": 35177, + "###-0.3647###": 35176, + "###-0.3649###": 35175, + "###-0.3651###": 35174, + "###-0.3653###": 35173, + "###-0.3655###": 35172, + "###-0.3657###": 35171, + "###-0.3659###": 35170, + "###-0.3661###": 35169, + "###-0.3663###": 35168, + "###-0.3665###": 35167, + "###-0.3667###": 35166, + "###-0.3669###": 35165, + "###-0.3671###": 35164, + "###-0.3673###": 35163, + "###-0.3675###": 35162, + "###-0.3677###": 35161, + "###-0.3679###": 35160, + "###-0.3681###": 35159, + "###-0.3683###": 35158, + "###-0.3685###": 35157, + "###-0.3687###": 35156, + "###-0.3689###": 35155, + "###-0.3691###": 35154, + "###-0.3693###": 35153, + "###-0.3695###": 35152, + "###-0.3697###": 35151, + "###-0.3699###": 35150, + "###-0.3701###": 35149, + "###-0.3703###": 35148, + "###-0.3705###": 35147, + "###-0.3707###": 35146, + "###-0.3709###": 35145, + "###-0.3711###": 35144, + "###-0.3713###": 35143, + "###-0.3715###": 35142, + "###-0.3717###": 35141, + "###-0.3719###": 35140, + "###-0.3721###": 35139, + "###-0.3723###": 35138, + "###-0.3725###": 35137, + "###-0.3727###": 35136, + "###-0.3729###": 35135, + "###-0.3731###": 35134, + "###-0.3733###": 35133, + "###-0.3735###": 35132, + "###-0.3737###": 35131, + "###-0.3739###": 35130, + "###-0.3741###": 35129, + "###-0.3743###": 35128, + "###-0.3745###": 35127, + "###-0.3747###": 35126, + "###-0.3749###": 35125, + "###-0.3751###": 35124, + "###-0.3753###": 35123, + "###-0.3755###": 35122, + "###-0.3757###": 35121, + "###-0.3759###": 35120, + "###-0.3761###": 35119, + "###-0.3763###": 35118, + "###-0.3765###": 35117, + "###-0.3767###": 35116, + "###-0.3769###": 35115, + "###-0.3771###": 35114, + "###-0.3773###": 35113, + "###-0.3775###": 35112, + "###-0.3777###": 35111, + "###-0.3779###": 35110, + "###-0.3781###": 35109, + "###-0.3783###": 35108, + "###-0.3785###": 35107, + "###-0.3787###": 35106, + "###-0.3789###": 35105, + "###-0.3791###": 35104, + "###-0.3793###": 35103, + "###-0.3795###": 35102, + "###-0.3797###": 35101, + "###-0.3799###": 35100, + "###-0.3801###": 35099, + "###-0.3803###": 35098, + "###-0.3805###": 35097, + "###-0.3807###": 35096, + "###-0.3809###": 35095, + "###-0.3811###": 35094, + "###-0.3813###": 35093, + "###-0.3815###": 35092, + "###-0.3817###": 35091, + "###-0.3819###": 35090, + "###-0.3821###": 35089, + "###-0.3823###": 35088, + "###-0.3825###": 35087, + "###-0.3827###": 35086, + "###-0.3829###": 35085, + "###-0.3831###": 35084, + "###-0.3833###": 35083, + "###-0.3835###": 35082, + "###-0.3837###": 35081, + "###-0.3839###": 35080, + "###-0.3841###": 35079, + "###-0.3843###": 35078, + "###-0.3845###": 35077, + "###-0.3847###": 35076, + "###-0.3849###": 35075, + "###-0.3851###": 35074, + "###-0.3853###": 35073, + "###-0.3855###": 35072, + "###-0.3857###": 35071, + "###-0.3859###": 35070, + "###-0.3861###": 35069, + "###-0.3863###": 35068, + "###-0.3865###": 35067, + "###-0.3867###": 35066, + "###-0.3869###": 35065, + "###-0.3871###": 35064, + "###-0.3873###": 35063, + "###-0.3875###": 35062, + "###-0.3877###": 35061, + "###-0.3879###": 35060, + "###-0.3881###": 35059, + "###-0.3883###": 35058, + "###-0.3885###": 35057, + "###-0.3887###": 35056, + "###-0.3889###": 35055, + "###-0.3891###": 35054, + "###-0.3893###": 35053, + "###-0.3895###": 35052, + "###-0.3897###": 35051, + "###-0.3899###": 35050, + "###-0.3901###": 35049, + "###-0.3903###": 35048, + "###-0.3905###": 35047, + "###-0.3907###": 35046, + "###-0.3909###": 35045, + "###-0.3911###": 35044, + "###-0.3913###": 35043, + "###-0.3915###": 35042, + "###-0.3917###": 35041, + "###-0.3919###": 35040, + "###-0.3921###": 35039, + "###-0.3923###": 35038, + "###-0.3925###": 35037, + "###-0.3927###": 35036, + "###-0.3929###": 35035, + "###-0.3931###": 35034, + "###-0.3933###": 35033, + "###-0.3935###": 35032, + "###-0.3937###": 35031, + "###-0.3939###": 35030, + "###-0.3941###": 35029, + "###-0.3943###": 35028, + "###-0.3945###": 35027, + "###-0.3947###": 35026, + "###-0.3949###": 35025, + "###-0.3951###": 35024, + "###-0.3953###": 35023, + "###-0.3955###": 35022, + "###-0.3957###": 35021, + "###-0.3959###": 35020, + "###-0.3961###": 35019, + "###-0.3963###": 35018, + "###-0.3965###": 35017, + "###-0.3967###": 35016, + "###-0.3969###": 35015, + "###-0.3971###": 35014, + "###-0.3973###": 35013, + "###-0.3975###": 35012, + "###-0.3977###": 35011, + "###-0.3979###": 35010, + "###-0.3981###": 35009, + "###-0.3983###": 35008, + "###-0.3985###": 35007, + "###-0.3987###": 35006, + "###-0.3989###": 35005, + "###-0.3991###": 35004, + "###-0.3993###": 35003, + "###-0.3995###": 35002, + "###-0.3997###": 35001, + "###-0.3999###": 35000, + "###-0.4001###": 34999, + "###-0.4003###": 34998, + "###-0.4005###": 34997, + "###-0.4007###": 34996, + "###-0.4009###": 34995, + "###-0.4011###": 34994, + "###-0.4013###": 34993, + "###-0.4015###": 34992, + "###-0.4017###": 34991, + "###-0.4019###": 34990, + "###-0.4021###": 34989, + "###-0.4023###": 34988, + "###-0.4025###": 34987, + "###-0.4027###": 34986, + "###-0.4029###": 34985, + "###-0.4031###": 34984, + "###-0.4033###": 34983, + "###-0.4035###": 34982, + "###-0.4037###": 34981, + "###-0.4039###": 34980, + "###-0.4041###": 34979, + "###-0.4043###": 34978, + "###-0.4045###": 34977, + "###-0.4047###": 34976, + "###-0.4049###": 34975, + "###-0.4051###": 34974, + "###-0.4053###": 34973, + "###-0.4055###": 34972, + "###-0.4057###": 34971, + "###-0.4059###": 34970, + "###-0.4061###": 34969, + "###-0.4063###": 34968, + "###-0.4065###": 34967, + "###-0.4067###": 34966, + "###-0.4069###": 34965, + "###-0.4071###": 34964, + "###-0.4073###": 34963, + "###-0.4075###": 34962, + "###-0.4077###": 34961, + "###-0.4079###": 34960, + "###-0.4081###": 34959, + "###-0.4083###": 34958, + "###-0.4085###": 34957, + "###-0.4087###": 34956, + "###-0.4089###": 34955, + "###-0.4091###": 34954, + "###-0.4093###": 34953, + "###-0.4095###": 34952, + "###-0.4097###": 34951, + "###-0.4099###": 34950, + "###-0.4101###": 34949, + "###-0.4103###": 34948, + "###-0.4105###": 34947, + "###-0.4107###": 34946, + "###-0.4109###": 34945, + "###-0.4111###": 34944, + "###-0.4113###": 34943, + "###-0.4115###": 34942, + "###-0.4117###": 34941, + "###-0.4119###": 34940, + "###-0.4121###": 34939, + "###-0.4123###": 34938, + "###-0.4125###": 34937, + "###-0.4127###": 34936, + "###-0.4129###": 34935, + "###-0.4131###": 34934, + "###-0.4133###": 34933, + "###-0.4135###": 34932, + "###-0.4137###": 34931, + "###-0.4139###": 34930, + "###-0.4141###": 34929, + "###-0.4143###": 34928, + "###-0.4145###": 34927, + "###-0.4147###": 34926, + "###-0.4149###": 34925, + "###-0.4151###": 34924, + "###-0.4153###": 34923, + "###-0.4155###": 34922, + "###-0.4157###": 34921, + "###-0.4159###": 34920, + "###-0.4161###": 34919, + "###-0.4163###": 34918, + "###-0.4165###": 34917, + "###-0.4167###": 34916, + "###-0.4169###": 34915, + "###-0.4171###": 34914, + "###-0.4173###": 34913, + "###-0.4175###": 34912, + "###-0.4177###": 34911, + "###-0.4179###": 34910, + "###-0.4181###": 34909, + "###-0.4183###": 34908, + "###-0.4185###": 34907, + "###-0.4187###": 34906, + "###-0.4189###": 34905, + "###-0.4191###": 34904, + "###-0.4193###": 34903, + "###-0.4195###": 34902, + "###-0.4197###": 34901, + "###-0.4199###": 34900, + "###-0.4201###": 34899, + "###-0.4203###": 34898, + "###-0.4205###": 34897, + "###-0.4207###": 34896, + "###-0.4209###": 34895, + "###-0.4211###": 34894, + "###-0.4213###": 34893, + "###-0.4215###": 34892, + "###-0.4217###": 34891, + "###-0.4219###": 34890, + "###-0.4221###": 34889, + "###-0.4223###": 34888, + "###-0.4225###": 34887, + "###-0.4227###": 34886, + "###-0.4229###": 34885, + "###-0.4231###": 34884, + "###-0.4233###": 34883, + "###-0.4235###": 34882, + "###-0.4237###": 34881, + "###-0.4239###": 34880, + "###-0.4241###": 34879, + "###-0.4243###": 34878, + "###-0.4245###": 34877, + "###-0.4247###": 34876, + "###-0.4249###": 34875, + "###-0.4251###": 34874, + "###-0.4253###": 34873, + "###-0.4255###": 34872, + "###-0.4257###": 34871, + "###-0.4259###": 34870, + "###-0.4261###": 34869, + "###-0.4263###": 34868, + "###-0.4265###": 34867, + "###-0.4267###": 34866, + "###-0.4269###": 34865, + "###-0.4271###": 34864, + "###-0.4273###": 34863, + "###-0.4275###": 34862, + "###-0.4277###": 34861, + "###-0.4279###": 34860, + "###-0.4281###": 34859, + "###-0.4283###": 34858, + "###-0.4285###": 34857, + "###-0.4287###": 34856, + "###-0.4289###": 34855, + "###-0.4291###": 34854, + "###-0.4293###": 34853, + "###-0.4295###": 34852, + "###-0.4297###": 34851, + "###-0.4299###": 34850, + "###-0.4301###": 34849, + "###-0.4303###": 34848, + "###-0.4305###": 34847, + "###-0.4307###": 34846, + "###-0.4309###": 34845, + "###-0.4311###": 34844, + "###-0.4313###": 34843, + "###-0.4315###": 34842, + "###-0.4317###": 34841, + "###-0.4319###": 34840, + "###-0.4321###": 34839, + "###-0.4323###": 34838, + "###-0.4325###": 34837, + "###-0.4327###": 34836, + "###-0.4329###": 34835, + "###-0.4331###": 34834, + "###-0.4333###": 34833, + "###-0.4335###": 34832, + "###-0.4337###": 34831, + "###-0.4339###": 34830, + "###-0.4341###": 34829, + "###-0.4343###": 34828, + "###-0.4345###": 34827, + "###-0.4347###": 34826, + "###-0.4349###": 34825, + "###-0.4351###": 34824, + "###-0.4353###": 34823, + "###-0.4355###": 34822, + "###-0.4357###": 34821, + "###-0.4359###": 34820, + "###-0.4361###": 34819, + "###-0.4363###": 34818, + "###-0.4365###": 34817, + "###-0.4367###": 34816, + "###-0.4369###": 34815, + "###-0.4371###": 34814, + "###-0.4373###": 34813, + "###-0.4375###": 34812, + "###-0.4377###": 34811, + "###-0.4379###": 34810, + "###-0.4381###": 34809, + "###-0.4383###": 34808, + "###-0.4385###": 34807, + "###-0.4387###": 34806, + "###-0.4389###": 34805, + "###-0.4391###": 34804, + "###-0.4393###": 34803, + "###-0.4395###": 34802, + "###-0.4397###": 34801, + "###-0.4399###": 34800, + "###-0.4401###": 34799, + "###-0.4403###": 34798, + "###-0.4405###": 34797, + "###-0.4407###": 34796, + "###-0.4409###": 34795, + "###-0.4411###": 34794, + "###-0.4413###": 34793, + "###-0.4415###": 34792, + "###-0.4417###": 34791, + "###-0.4419###": 34790, + "###-0.4421###": 34789, + "###-0.4423###": 34788, + "###-0.4425###": 34787, + "###-0.4427###": 34786, + "###-0.4429###": 34785, + "###-0.4431###": 34784, + "###-0.4433###": 34783, + "###-0.4435###": 34782, + "###-0.4437###": 34781, + "###-0.4439###": 34780, + "###-0.4441###": 34779, + "###-0.4443###": 34778, + "###-0.4445###": 34777, + "###-0.4447###": 34776, + "###-0.4449###": 34775, + "###-0.4451###": 34774, + "###-0.4453###": 34773, + "###-0.4455###": 34772, + "###-0.4457###": 34771, + "###-0.4459###": 34770, + "###-0.4461###": 34769, + "###-0.4463###": 34768, + "###-0.4465###": 34767, + "###-0.4467###": 34766, + "###-0.4469###": 34765, + "###-0.4471###": 34764, + "###-0.4473###": 34763, + "###-0.4475###": 34762, + "###-0.4477###": 34761, + "###-0.4479###": 34760, + "###-0.4481###": 34759, + "###-0.4483###": 34758, + "###-0.4485###": 34757, + "###-0.4487###": 34756, + "###-0.4489###": 34755, + "###-0.4491###": 34754, + "###-0.4493###": 34753, + "###-0.4495###": 34752, + "###-0.4497###": 34751, + "###-0.4499###": 34750, + "###-0.4501###": 34749, + "###-0.4503###": 34748, + "###-0.4505###": 34747, + "###-0.4507###": 34746, + "###-0.4509###": 34745, + "###-0.4511###": 34744, + "###-0.4513###": 34743, + "###-0.4515###": 34742, + "###-0.4517###": 34741, + "###-0.4519###": 34740, + "###-0.4521###": 34739, + "###-0.4523###": 34738, + "###-0.4525###": 34737, + "###-0.4527###": 34736, + "###-0.4529###": 34735, + "###-0.4531###": 34734, + "###-0.4533###": 34733, + "###-0.4535###": 34732, + "###-0.4537###": 34731, + "###-0.4539###": 34730, + "###-0.4541###": 34729, + "###-0.4543###": 34728, + "###-0.4545###": 34727, + "###-0.4547###": 34726, + "###-0.4549###": 34725, + "###-0.4551###": 34724, + "###-0.4553###": 34723, + "###-0.4555###": 34722, + "###-0.4557###": 34721, + "###-0.4559###": 34720, + "###-0.4561###": 34719, + "###-0.4563###": 34718, + "###-0.4565###": 34717, + "###-0.4567###": 34716, + "###-0.4569###": 34715, + "###-0.4571###": 34714, + "###-0.4573###": 34713, + "###-0.4575###": 34712, + "###-0.4577###": 34711, + "###-0.4579###": 34710, + "###-0.4581###": 34709, + "###-0.4583###": 34708, + "###-0.4585###": 34707, + "###-0.4587###": 34706, + "###-0.4589###": 34705, + "###-0.4591###": 34704, + "###-0.4593###": 34703, + "###-0.4595###": 34702, + "###-0.4597###": 34701, + "###-0.4599###": 34700, + "###-0.4601###": 34699, + "###-0.4603###": 34698, + "###-0.4605###": 34697, + "###-0.4607###": 34696, + "###-0.4609###": 34695, + "###-0.4611###": 34694, + "###-0.4613###": 34693, + "###-0.4615###": 34692, + "###-0.4617###": 34691, + "###-0.4619###": 34690, + "###-0.4621###": 34689, + "###-0.4623###": 34688, + "###-0.4625###": 34687, + "###-0.4627###": 34686, + "###-0.4629###": 34685, + "###-0.4631###": 34684, + "###-0.4633###": 34683, + "###-0.4635###": 34682, + "###-0.4637###": 34681, + "###-0.4639###": 34680, + "###-0.4641###": 34679, + "###-0.4643###": 34678, + "###-0.4645###": 34677, + "###-0.4647###": 34676, + "###-0.4649###": 34675, + "###-0.4651###": 34674, + "###-0.4653###": 34673, + "###-0.4655###": 34672, + "###-0.4657###": 34671, + "###-0.4659###": 34670, + "###-0.4661###": 34669, + "###-0.4663###": 34668, + "###-0.4665###": 34667, + "###-0.4667###": 34666, + "###-0.4669###": 34665, + "###-0.4671###": 34664, + "###-0.4673###": 34663, + "###-0.4675###": 34662, + "###-0.4677###": 34661, + "###-0.4679###": 34660, + "###-0.4681###": 34659, + "###-0.4683###": 34658, + "###-0.4685###": 34657, + "###-0.4687###": 34656, + "###-0.4689###": 34655, + "###-0.4691###": 34654, + "###-0.4693###": 34653, + "###-0.4695###": 34652, + "###-0.4697###": 34651, + "###-0.4699###": 34650, + "###-0.4701###": 34649, + "###-0.4703###": 34648, + "###-0.4705###": 34647, + "###-0.4707###": 34646, + "###-0.4709###": 34645, + "###-0.4711###": 34644, + "###-0.4713###": 34643, + "###-0.4715###": 34642, + "###-0.4717###": 34641, + "###-0.4719###": 34640, + "###-0.4721###": 34639, + "###-0.4723###": 34638, + "###-0.4725###": 34637, + "###-0.4727###": 34636, + "###-0.4729###": 34635, + "###-0.4731###": 34634, + "###-0.4733###": 34633, + "###-0.4735###": 34632, + "###-0.4737###": 34631, + "###-0.4739###": 34630, + "###-0.4741###": 34629, + "###-0.4743###": 34628, + "###-0.4745###": 34627, + "###-0.4747###": 34626, + "###-0.4749###": 34625, + "###-0.4751###": 34624, + "###-0.4753###": 34623, + "###-0.4755###": 34622, + "###-0.4757###": 34621, + "###-0.4759###": 34620, + "###-0.4761###": 34619, + "###-0.4763###": 34618, + "###-0.4765###": 34617, + "###-0.4767###": 34616, + "###-0.4769###": 34615, + "###-0.4771###": 34614, + "###-0.4773###": 34613, + "###-0.4775###": 34612, + "###-0.4777###": 34611, + "###-0.4779###": 34610, + "###-0.4781###": 34609, + "###-0.4783###": 34608, + "###-0.4785###": 34607, + "###-0.4787###": 34606, + "###-0.4789###": 34605, + "###-0.4791###": 34604, + "###-0.4793###": 34603, + "###-0.4795###": 34602, + "###-0.4797###": 34601, + "###-0.4799###": 34600, + "###-0.4801###": 34599, + "###-0.4803###": 34598, + "###-0.4805###": 34597, + "###-0.4807###": 34596, + "###-0.4809###": 34595, + "###-0.4811###": 34594, + "###-0.4813###": 34593, + "###-0.4815###": 34592, + "###-0.4817###": 34591, + "###-0.4819###": 34590, + "###-0.4821###": 34589, + "###-0.4823###": 34588, + "###-0.4825###": 34587, + "###-0.4827###": 34586, + "###-0.4829###": 34585, + "###-0.4831###": 34584, + "###-0.4833###": 34583, + "###-0.4835###": 34582, + "###-0.4837###": 34581, + "###-0.4839###": 34580, + "###-0.4841###": 34579, + "###-0.4843###": 34578, + "###-0.4845###": 34577, + "###-0.4847###": 34576, + "###-0.4849###": 34575, + "###-0.4851###": 34574, + "###-0.4853###": 34573, + "###-0.4855###": 34572, + "###-0.4857###": 34571, + "###-0.4859###": 34570, + "###-0.4861###": 34569, + "###-0.4863###": 34568, + "###-0.4865###": 34567, + "###-0.4867###": 34566, + "###-0.4869###": 34565, + "###-0.4871###": 34564, + "###-0.4873###": 34563, + "###-0.4875###": 34562, + "###-0.4877###": 34561, + "###-0.4879###": 34560, + "###-0.4881###": 34559, + "###-0.4883###": 34558, + "###-0.4885###": 34557, + "###-0.4887###": 34556, + "###-0.4889###": 34555, + "###-0.4891###": 34554, + "###-0.4893###": 34553, + "###-0.4895###": 34552, + "###-0.4897###": 34551, + "###-0.4899###": 34550, + "###-0.4901###": 34549, + "###-0.4903###": 34548, + "###-0.4905###": 34547, + "###-0.4907###": 34546, + "###-0.4909###": 34545, + "###-0.4911###": 34544, + "###-0.4913###": 34543, + "###-0.4915###": 34542, + "###-0.4917###": 34541, + "###-0.4919###": 34540, + "###-0.4921###": 34539, + "###-0.4923###": 34538, + "###-0.4925###": 34537, + "###-0.4927###": 34536, + "###-0.4929###": 34535, + "###-0.4931###": 34534, + "###-0.4933###": 34533, + "###-0.4935###": 34532, + "###-0.4937###": 34531, + "###-0.4939###": 34530, + "###-0.4941###": 34529, + "###-0.4943###": 34528, + "###-0.4945###": 34527, + "###-0.4947###": 34526, + "###-0.4949###": 34525, + "###-0.4951###": 34524, + "###-0.4953###": 34523, + "###-0.4955###": 34522, + "###-0.4957###": 34521, + "###-0.4959###": 34520, + "###-0.4961###": 34519, + "###-0.4963###": 34518, + "###-0.4965###": 34517, + "###-0.4967###": 34516, + "###-0.4969###": 34515, + "###-0.4971###": 34514, + "###-0.4973###": 34513, + "###-0.4975###": 34512, + "###-0.4977###": 34511, + "###-0.4979###": 34510, + "###-0.4981###": 34509, + "###-0.4983###": 34508, + "###-0.4985###": 34507, + "###-0.4987###": 34506, + "###-0.4989###": 34505, + "###-0.4991###": 34504, + "###-0.4993###": 34503, + "###-0.4995###": 34502, + "###-0.4997###": 34501, + "###-0.4999###": 34500, + "###-0.5001###": 34499, + "###-0.5003###": 34498, + "###-0.5005###": 34497, + "###-0.5007###": 34496, + "###-0.5009###": 34495, + "###-0.5011###": 34494, + "###-0.5013###": 34493, + "###-0.5015###": 34492, + "###-0.5017###": 34491, + "###-0.5019###": 34490, + "###-0.5021###": 34489, + "###-0.5023###": 34488, + "###-0.5025###": 34487, + "###-0.5027###": 34486, + "###-0.5029###": 34485, + "###-0.5031###": 34484, + "###-0.5033###": 34483, + "###-0.5035###": 34482, + "###-0.5037###": 34481, + "###-0.5039###": 34480, + "###-0.5041###": 34479, + "###-0.5043###": 34478, + "###-0.5045###": 34477, + "###-0.5047###": 34476, + "###-0.5049###": 34475, + "###-0.5051###": 34474, + "###-0.5053###": 34473, + "###-0.5055###": 34472, + "###-0.5057###": 34471, + "###-0.5059###": 34470, + "###-0.5061###": 34469, + "###-0.5063###": 34468, + "###-0.5065###": 34467, + "###-0.5067###": 34466, + "###-0.5069###": 34465, + "###-0.5071###": 34464, + "###-0.5073###": 34463, + "###-0.5075###": 34462, + "###-0.5077###": 34461, + "###-0.5079###": 34460, + "###-0.5081###": 34459, + "###-0.5083###": 34458, + "###-0.5085###": 34457, + "###-0.5087###": 34456, + "###-0.5089###": 34455, + "###-0.5091###": 34454, + "###-0.5093###": 34453, + "###-0.5095###": 34452, + "###-0.5097###": 34451, + "###-0.5099###": 34450, + "###-0.5101###": 34449, + "###-0.5103###": 34448, + "###-0.5105###": 34447, + "###-0.5107###": 34446, + "###-0.5109###": 34445, + "###-0.5111###": 34444, + "###-0.5113###": 34443, + "###-0.5115###": 34442, + "###-0.5117###": 34441, + "###-0.5119###": 34440, + "###-0.5121###": 34439, + "###-0.5123###": 34438, + "###-0.5125###": 34437, + "###-0.5127###": 34436, + "###-0.5129###": 34435, + "###-0.5131###": 34434, + "###-0.5133###": 34433, + "###-0.5135###": 34432, + "###-0.5137###": 34431, + "###-0.5139###": 34430, + "###-0.5141###": 34429, + "###-0.5143###": 34428, + "###-0.5145###": 34427, + "###-0.5147###": 34426, + "###-0.5149###": 34425, + "###-0.5151###": 34424, + "###-0.5153###": 34423, + "###-0.5155###": 34422, + "###-0.5157###": 34421, + "###-0.5159###": 34420, + "###-0.5161###": 34419, + "###-0.5163###": 34418, + "###-0.5165###": 34417, + "###-0.5167###": 34416, + "###-0.5169###": 34415, + "###-0.5171###": 34414, + "###-0.5173###": 34413, + "###-0.5175###": 34412, + "###-0.5177###": 34411, + "###-0.5179###": 34410, + "###-0.5181###": 34409, + "###-0.5183###": 34408, + "###-0.5185###": 34407, + "###-0.5187###": 34406, + "###-0.5189###": 34405, + "###-0.5191###": 34404, + "###-0.5193###": 34403, + "###-0.5195###": 34402, + "###-0.5197###": 34401, + "###-0.5199###": 34400, + "###-0.5201###": 34399, + "###-0.5203###": 34398, + "###-0.5205###": 34397, + "###-0.5207###": 34396, + "###-0.5209###": 34395, + "###-0.5211###": 34394, + "###-0.5213###": 34393, + "###-0.5215###": 34392, + "###-0.5217###": 34391, + "###-0.5219###": 34390, + "###-0.5221###": 34389, + "###-0.5223###": 34388, + "###-0.5225###": 34387, + "###-0.5227###": 34386, + "###-0.5229###": 34385, + "###-0.5231###": 34384, + "###-0.5233###": 34383, + "###-0.5235###": 34382, + "###-0.5237###": 34381, + "###-0.5239###": 34380, + "###-0.5241###": 34379, + "###-0.5243###": 34378, + "###-0.5245###": 34377, + "###-0.5247###": 34376, + "###-0.5249###": 34375, + "###-0.5251###": 34374, + "###-0.5253###": 34373, + "###-0.5255###": 34372, + "###-0.5257###": 34371, + "###-0.5259###": 34370, + "###-0.5261###": 34369, + "###-0.5263###": 34368, + "###-0.5265###": 34367, + "###-0.5267###": 34366, + "###-0.5269###": 34365, + "###-0.5271###": 34364, + "###-0.5273###": 34363, + "###-0.5275###": 34362, + "###-0.5277###": 34361, + "###-0.5279###": 34360, + "###-0.5281###": 34359, + "###-0.5283###": 34358, + "###-0.5285###": 34357, + "###-0.5287###": 34356, + "###-0.5289###": 34355, + "###-0.5291###": 34354, + "###-0.5293###": 34353, + "###-0.5295###": 34352, + "###-0.5297###": 34351, + "###-0.5299###": 34350, + "###-0.5301###": 34349, + "###-0.5303###": 34348, + "###-0.5305###": 34347, + "###-0.5307###": 34346, + "###-0.5309###": 34345, + "###-0.5311###": 34344, + "###-0.5313###": 34343, + "###-0.5315###": 34342, + "###-0.5317###": 34341, + "###-0.5319###": 34340, + "###-0.5321###": 34339, + "###-0.5323###": 34338, + "###-0.5325###": 34337, + "###-0.5327###": 34336, + "###-0.5329###": 34335, + "###-0.5331###": 34334, + "###-0.5333###": 34333, + "###-0.5335###": 34332, + "###-0.5337###": 34331, + "###-0.5339###": 34330, + "###-0.5341###": 34329, + "###-0.5343###": 34328, + "###-0.5345###": 34327, + "###-0.5347###": 34326, + "###-0.5349###": 34325, + "###-0.5351###": 34324, + "###-0.5353###": 34323, + "###-0.5355###": 34322, + "###-0.5357###": 34321, + "###-0.5359###": 34320, + "###-0.5361###": 34319, + "###-0.5363###": 34318, + "###-0.5365###": 34317, + "###-0.5367###": 34316, + "###-0.5369###": 34315, + "###-0.5371###": 34314, + "###-0.5373###": 34313, + "###-0.5375###": 34312, + "###-0.5377###": 34311, + "###-0.5379###": 34310, + "###-0.5381###": 34309, + "###-0.5383###": 34308, + "###-0.5385###": 34307, + "###-0.5387###": 34306, + "###-0.5389###": 34305, + "###-0.5391###": 34304, + "###-0.5393###": 34303, + "###-0.5395###": 34302, + "###-0.5397###": 34301, + "###-0.5399###": 34300, + "###-0.5401###": 34299, + "###-0.5403###": 34298, + "###-0.5405###": 34297, + "###-0.5407###": 34296, + "###-0.5409###": 34295, + "###-0.5411###": 34294, + "###-0.5413###": 34293, + "###-0.5415###": 34292, + "###-0.5417###": 34291, + "###-0.5419###": 34290, + "###-0.5421###": 34289, + "###-0.5423###": 34288, + "###-0.5425###": 34287, + "###-0.5427###": 34286, + "###-0.5429###": 34285, + "###-0.5431###": 34284, + "###-0.5433###": 34283, + "###-0.5435###": 34282, + "###-0.5437###": 34281, + "###-0.5439###": 34280, + "###-0.5441###": 34279, + "###-0.5443###": 34278, + "###-0.5445###": 34277, + "###-0.5447###": 34276, + "###-0.5449###": 34275, + "###-0.5451###": 34274, + "###-0.5453###": 34273, + "###-0.5455###": 34272, + "###-0.5457###": 34271, + "###-0.5459###": 34270, + "###-0.5461###": 34269, + "###-0.5463###": 34268, + "###-0.5465###": 34267, + "###-0.5467###": 34266, + "###-0.5469###": 34265, + "###-0.5471###": 34264, + "###-0.5473###": 34263, + "###-0.5475###": 34262, + "###-0.5477###": 34261, + "###-0.5479###": 34260, + "###-0.5481###": 34259, + "###-0.5483###": 34258, + "###-0.5485###": 34257, + "###-0.5487###": 34256, + "###-0.5489###": 34255, + "###-0.5491###": 34254, + "###-0.5493###": 34253, + "###-0.5495###": 34252, + "###-0.5497###": 34251, + "###-0.5499###": 34250, + "###-0.5501###": 34249, + "###-0.5503###": 34248, + "###-0.5505###": 34247, + "###-0.5507###": 34246, + "###-0.5509###": 34245, + "###-0.5511###": 34244, + "###-0.5513###": 34243, + "###-0.5515###": 34242, + "###-0.5517###": 34241, + "###-0.5519###": 34240, + "###-0.5521###": 34239, + "###-0.5523###": 34238, + "###-0.5525###": 34237, + "###-0.5527###": 34236, + "###-0.5529###": 34235, + "###-0.5531###": 34234, + "###-0.5533###": 34233, + "###-0.5535###": 34232, + "###-0.5537###": 34231, + "###-0.5539###": 34230, + "###-0.5541###": 34229, + "###-0.5543###": 34228, + "###-0.5545###": 34227, + "###-0.5547###": 34226, + "###-0.5549###": 34225, + "###-0.5551###": 34224, + "###-0.5553###": 34223, + "###-0.5555###": 34222, + "###-0.5557###": 34221, + "###-0.5559###": 34220, + "###-0.5561###": 34219, + "###-0.5563###": 34218, + "###-0.5565###": 34217, + "###-0.5567###": 34216, + "###-0.5569###": 34215, + "###-0.5571###": 34214, + "###-0.5573###": 34213, + "###-0.5575###": 34212, + "###-0.5577###": 34211, + "###-0.5579###": 34210, + "###-0.5581###": 34209, + "###-0.5583###": 34208, + "###-0.5585###": 34207, + "###-0.5587###": 34206, + "###-0.5589###": 34205, + "###-0.5591###": 34204, + "###-0.5593###": 34203, + "###-0.5595###": 34202, + "###-0.5597###": 34201, + "###-0.5599###": 34200, + "###-0.5601###": 34199, + "###-0.5603###": 34198, + "###-0.5605###": 34197, + "###-0.5607###": 34196, + "###-0.5609###": 34195, + "###-0.5611###": 34194, + "###-0.5613###": 34193, + "###-0.5615###": 34192, + "###-0.5617###": 34191, + "###-0.5619###": 34190, + "###-0.5621###": 34189, + "###-0.5623###": 34188, + "###-0.5625###": 34187, + "###-0.5627###": 34186, + "###-0.5629###": 34185, + "###-0.5631###": 34184, + "###-0.5633###": 34183, + "###-0.5635###": 34182, + "###-0.5637###": 34181, + "###-0.5639###": 34180, + "###-0.5641###": 34179, + "###-0.5643###": 34178, + "###-0.5645###": 34177, + "###-0.5647###": 34176, + "###-0.5649###": 34175, + "###-0.5651###": 34174, + "###-0.5653###": 34173, + "###-0.5655###": 34172, + "###-0.5657###": 34171, + "###-0.5659###": 34170, + "###-0.5661###": 34169, + "###-0.5663###": 34168, + "###-0.5665###": 34167, + "###-0.5667###": 34166, + "###-0.5669###": 34165, + "###-0.5671###": 34164, + "###-0.5673###": 34163, + "###-0.5675###": 34162, + "###-0.5677###": 34161, + "###-0.5679###": 34160, + "###-0.5681###": 34159, + "###-0.5683###": 34158, + "###-0.5685###": 34157, + "###-0.5687###": 34156, + "###-0.5689###": 34155, + "###-0.5691###": 34154, + "###-0.5693###": 34153, + "###-0.5695###": 34152, + "###-0.5697###": 34151, + "###-0.5699###": 34150, + "###-0.5701###": 34149, + "###-0.5703###": 34148, + "###-0.5705###": 34147, + "###-0.5707###": 34146, + "###-0.5709###": 34145, + "###-0.5711###": 34144, + "###-0.5713###": 34143, + "###-0.5715###": 34142, + "###-0.5717###": 34141, + "###-0.5719###": 34140, + "###-0.5721###": 34139, + "###-0.5723###": 34138, + "###-0.5725###": 34137, + "###-0.5727###": 34136, + "###-0.5729###": 34135, + "###-0.5731###": 34134, + "###-0.5733###": 34133, + "###-0.5735###": 34132, + "###-0.5737###": 34131, + "###-0.5739###": 34130, + "###-0.5741###": 34129, + "###-0.5743###": 34128, + "###-0.5745###": 34127, + "###-0.5747###": 34126, + "###-0.5749###": 34125, + "###-0.5751###": 34124, + "###-0.5753###": 34123, + "###-0.5755###": 34122, + "###-0.5757###": 34121, + "###-0.5759###": 34120, + "###-0.5761###": 34119, + "###-0.5763###": 34118, + "###-0.5765###": 34117, + "###-0.5767###": 34116, + "###-0.5769###": 34115, + "###-0.5771###": 34114, + "###-0.5773###": 34113, + "###-0.5775###": 34112, + "###-0.5777###": 34111, + "###-0.5779###": 34110, + "###-0.5781###": 34109, + "###-0.5783###": 34108, + "###-0.5785###": 34107, + "###-0.5787###": 34106, + "###-0.5789###": 34105, + "###-0.5791###": 34104, + "###-0.5793###": 34103, + "###-0.5795###": 34102, + "###-0.5797###": 34101, + "###-0.5799###": 34100, + "###-0.5801###": 34099, + "###-0.5803###": 34098, + "###-0.5805###": 34097, + "###-0.5807###": 34096, + "###-0.5809###": 34095, + "###-0.5811###": 34094, + "###-0.5813###": 34093, + "###-0.5815###": 34092, + "###-0.5817###": 34091, + "###-0.5819###": 34090, + "###-0.5821###": 34089, + "###-0.5823###": 34088, + "###-0.5825###": 34087, + "###-0.5827###": 34086, + "###-0.5829###": 34085, + "###-0.5831###": 34084, + "###-0.5833###": 34083, + "###-0.5835###": 34082, + "###-0.5837###": 34081, + "###-0.5839###": 34080, + "###-0.5841###": 34079, + "###-0.5843###": 34078, + "###-0.5845###": 34077, + "###-0.5847###": 34076, + "###-0.5849###": 34075, + "###-0.5851###": 34074, + "###-0.5853###": 34073, + "###-0.5855###": 34072, + "###-0.5857###": 34071, + "###-0.5859###": 34070, + "###-0.5861###": 34069, + "###-0.5863###": 34068, + "###-0.5865###": 34067, + "###-0.5867###": 34066, + "###-0.5869###": 34065, + "###-0.5871###": 34064, + "###-0.5873###": 34063, + "###-0.5875###": 34062, + "###-0.5877###": 34061, + "###-0.5879###": 34060, + "###-0.5881###": 34059, + "###-0.5883###": 34058, + "###-0.5885###": 34057, + "###-0.5887###": 34056, + "###-0.5889###": 34055, + "###-0.5891###": 34054, + "###-0.5893###": 34053, + "###-0.5895###": 34052, + "###-0.5897###": 34051, + "###-0.5899###": 34050, + "###-0.5901###": 34049, + "###-0.5903###": 34048, + "###-0.5905###": 34047, + "###-0.5907###": 34046, + "###-0.5909###": 34045, + "###-0.5911###": 34044, + "###-0.5913###": 34043, + "###-0.5915###": 34042, + "###-0.5917###": 34041, + "###-0.5919###": 34040, + "###-0.5921###": 34039, + "###-0.5923###": 34038, + "###-0.5925###": 34037, + "###-0.5927###": 34036, + "###-0.5929###": 34035, + "###-0.5931###": 34034, + "###-0.5933###": 34033, + "###-0.5935###": 34032, + "###-0.5937###": 34031, + "###-0.5939###": 34030, + "###-0.5941###": 34029, + "###-0.5943###": 34028, + "###-0.5945###": 34027, + "###-0.5947###": 34026, + "###-0.5949###": 34025, + "###-0.5951###": 34024, + "###-0.5953###": 34023, + "###-0.5955###": 34022, + "###-0.5957###": 34021, + "###-0.5959###": 34020, + "###-0.5961###": 34019, + "###-0.5963###": 34018, + "###-0.5965###": 34017, + "###-0.5967###": 34016, + "###-0.5969###": 34015, + "###-0.5971###": 34014, + "###-0.5973###": 34013, + "###-0.5975###": 34012, + "###-0.5977###": 34011, + "###-0.5979###": 34010, + "###-0.5981###": 34009, + "###-0.5983###": 34008, + "###-0.5985###": 34007, + "###-0.5987###": 34006, + "###-0.5989###": 34005, + "###-0.5991###": 34004, + "###-0.5993###": 34003, + "###-0.5995###": 34002, + "###-0.5997###": 34001, + "###-0.5999###": 34000, + "###-0.6001###": 33999, + "###-0.6003###": 33998, + "###-0.6005###": 33997, + "###-0.6007###": 33996, + "###-0.6009###": 33995, + "###-0.6011###": 33994, + "###-0.6013###": 33993, + "###-0.6015###": 33992, + "###-0.6017###": 33991, + "###-0.6019###": 33990, + "###-0.6021###": 33989, + "###-0.6023###": 33988, + "###-0.6025###": 33987, + "###-0.6027###": 33986, + "###-0.6029###": 33985, + "###-0.6031###": 33984, + "###-0.6033###": 33983, + "###-0.6035###": 33982, + "###-0.6037###": 33981, + "###-0.6039###": 33980, + "###-0.6041###": 33979, + "###-0.6043###": 33978, + "###-0.6045###": 33977, + "###-0.6047###": 33976, + "###-0.6049###": 33975, + "###-0.6051###": 33974, + "###-0.6053###": 33973, + "###-0.6055###": 33972, + "###-0.6057###": 33971, + "###-0.6059###": 33970, + "###-0.6061###": 33969, + "###-0.6063###": 33968, + "###-0.6065###": 33967, + "###-0.6067###": 33966, + "###-0.6069###": 33965, + "###-0.6071###": 33964, + "###-0.6073###": 33963, + "###-0.6075###": 33962, + "###-0.6077###": 33961, + "###-0.6079###": 33960, + "###-0.6081###": 33959, + "###-0.6083###": 33958, + "###-0.6085###": 33957, + "###-0.6087###": 33956, + "###-0.6089###": 33955, + "###-0.6091###": 33954, + "###-0.6093###": 33953, + "###-0.6095###": 33952, + "###-0.6097###": 33951, + "###-0.6099###": 33950, + "###-0.6101###": 33949, + "###-0.6103###": 33948, + "###-0.6105###": 33947, + "###-0.6107###": 33946, + "###-0.6109###": 33945, + "###-0.6111###": 33944, + "###-0.6113###": 33943, + "###-0.6115###": 33942, + "###-0.6117###": 33941, + "###-0.6119###": 33940, + "###-0.6121###": 33939, + "###-0.6123###": 33938, + "###-0.6125###": 33937, + "###-0.6127###": 33936, + "###-0.6129###": 33935, + "###-0.6131###": 33934, + "###-0.6133###": 33933, + "###-0.6135###": 33932, + "###-0.6137###": 33931, + "###-0.6139###": 33930, + "###-0.6141###": 33929, + "###-0.6143###": 33928, + "###-0.6145###": 33927, + "###-0.6147###": 33926, + "###-0.6149###": 33925, + "###-0.6151###": 33924, + "###-0.6153###": 33923, + "###-0.6155###": 33922, + "###-0.6157###": 33921, + "###-0.6159###": 33920, + "###-0.6161###": 33919, + "###-0.6163###": 33918, + "###-0.6165###": 33917, + "###-0.6167###": 33916, + "###-0.6169###": 33915, + "###-0.6171###": 33914, + "###-0.6173###": 33913, + "###-0.6175###": 33912, + "###-0.6177###": 33911, + "###-0.6179###": 33910, + "###-0.6181###": 33909, + "###-0.6183###": 33908, + "###-0.6185###": 33907, + "###-0.6187###": 33906, + "###-0.6189###": 33905, + "###-0.6191###": 33904, + "###-0.6193###": 33903, + "###-0.6195###": 33902, + "###-0.6197###": 33901, + "###-0.6199###": 33900, + "###-0.6201###": 33899, + "###-0.6203###": 33898, + "###-0.6205###": 33897, + "###-0.6207###": 33896, + "###-0.6209###": 33895, + "###-0.6211###": 33894, + "###-0.6213###": 33893, + "###-0.6215###": 33892, + "###-0.6217###": 33891, + "###-0.6219###": 33890, + "###-0.6221###": 33889, + "###-0.6223###": 33888, + "###-0.6225###": 33887, + "###-0.6227###": 33886, + "###-0.6229###": 33885, + "###-0.6231###": 33884, + "###-0.6233###": 33883, + "###-0.6235###": 33882, + "###-0.6237###": 33881, + "###-0.6239###": 33880, + "###-0.6241###": 33879, + "###-0.6243###": 33878, + "###-0.6245###": 33877, + "###-0.6247###": 33876, + "###-0.6249###": 33875, + "###-0.6251###": 33874, + "###-0.6253###": 33873, + "###-0.6255###": 33872, + "###-0.6257###": 33871, + "###-0.6259###": 33870, + "###-0.6261###": 33869, + "###-0.6263###": 33868, + "###-0.6265###": 33867, + "###-0.6267###": 33866, + "###-0.6269###": 33865, + "###-0.6271###": 33864, + "###-0.6273###": 33863, + "###-0.6275###": 33862, + "###-0.6277###": 33861, + "###-0.6279###": 33860, + "###-0.6281###": 33859, + "###-0.6283###": 33858, + "###-0.6285###": 33857, + "###-0.6287###": 33856, + "###-0.6289###": 33855, + "###-0.6291###": 33854, + "###-0.6293###": 33853, + "###-0.6295###": 33852, + "###-0.6297###": 33851, + "###-0.6299###": 33850, + "###-0.6301###": 33849, + "###-0.6303###": 33848, + "###-0.6305###": 33847, + "###-0.6307###": 33846, + "###-0.6309###": 33845, + "###-0.6311###": 33844, + "###-0.6313###": 33843, + "###-0.6315###": 33842, + "###-0.6317###": 33841, + "###-0.6319###": 33840, + "###-0.6321###": 33839, + "###-0.6323###": 33838, + "###-0.6325###": 33837, + "###-0.6327###": 33836, + "###-0.6329###": 33835, + "###-0.6331###": 33834, + "###-0.6333###": 33833, + "###-0.6335###": 33832, + "###-0.6337###": 33831, + "###-0.6339###": 33830, + "###-0.6341###": 33829, + "###-0.6343###": 33828, + "###-0.6345###": 33827, + "###-0.6347###": 33826, + "###-0.6349###": 33825, + "###-0.6351###": 33824, + "###-0.6353###": 33823, + "###-0.6355###": 33822, + "###-0.6357###": 33821, + "###-0.6359###": 33820, + "###-0.6361###": 33819, + "###-0.6363###": 33818, + "###-0.6365###": 33817, + "###-0.6367###": 33816, + "###-0.6369###": 33815, + "###-0.6371###": 33814, + "###-0.6373###": 33813, + "###-0.6375###": 33812, + "###-0.6377###": 33811, + "###-0.6379###": 33810, + "###-0.6381###": 33809, + "###-0.6383###": 33808, + "###-0.6385###": 33807, + "###-0.6387###": 33806, + "###-0.6389###": 33805, + "###-0.6391###": 33804, + "###-0.6393###": 33803, + "###-0.6395###": 33802, + "###-0.6397###": 33801, + "###-0.6399###": 33800, + "###-0.6401###": 33799, + "###-0.6403###": 33798, + "###-0.6405###": 33797, + "###-0.6407###": 33796, + "###-0.6409###": 33795, + "###-0.6411###": 33794, + "###-0.6413###": 33793, + "###-0.6415###": 33792, + "###-0.6417###": 33791, + "###-0.6419###": 33790, + "###-0.6421###": 33789, + "###-0.6423###": 33788, + "###-0.6425###": 33787, + "###-0.6427###": 33786, + "###-0.6429###": 33785, + "###-0.6431###": 33784, + "###-0.6433###": 33783, + "###-0.6435###": 33782, + "###-0.6437###": 33781, + "###-0.6439###": 33780, + "###-0.6441###": 33779, + "###-0.6443###": 33778, + "###-0.6445###": 33777, + "###-0.6447###": 33776, + "###-0.6449###": 33775, + "###-0.6451###": 33774, + "###-0.6453###": 33773, + "###-0.6455###": 33772, + "###-0.6457###": 33771, + "###-0.6459###": 33770, + "###-0.6461###": 33769, + "###-0.6463###": 33768, + "###-0.6465###": 33767, + "###-0.6467###": 33766, + "###-0.6469###": 33765, + "###-0.6471###": 33764, + "###-0.6473###": 33763, + "###-0.6475###": 33762, + "###-0.6477###": 33761, + "###-0.6479###": 33760, + "###-0.6481###": 33759, + "###-0.6483###": 33758, + "###-0.6485###": 33757, + "###-0.6487###": 33756, + "###-0.6489###": 33755, + "###-0.6491###": 33754, + "###-0.6493###": 33753, + "###-0.6495###": 33752, + "###-0.6497###": 33751, + "###-0.6499###": 33750, + "###-0.6501###": 33749, + "###-0.6503###": 33748, + "###-0.6505###": 33747, + "###-0.6507###": 33746, + "###-0.6509###": 33745, + "###-0.6511###": 33744, + "###-0.6513###": 33743, + "###-0.6515###": 33742, + "###-0.6517###": 33741, + "###-0.6519###": 33740, + "###-0.6521###": 33739, + "###-0.6523###": 33738, + "###-0.6525###": 33737, + "###-0.6527###": 33736, + "###-0.6529###": 33735, + "###-0.6531###": 33734, + "###-0.6533###": 33733, + "###-0.6535###": 33732, + "###-0.6537###": 33731, + "###-0.6539###": 33730, + "###-0.6541###": 33729, + "###-0.6543###": 33728, + "###-0.6545###": 33727, + "###-0.6547###": 33726, + "###-0.6549###": 33725, + "###-0.6551###": 33724, + "###-0.6553###": 33723, + "###-0.6555###": 33722, + "###-0.6557###": 33721, + "###-0.6559###": 33720, + "###-0.6561###": 33719, + "###-0.6563###": 33718, + "###-0.6565###": 33717, + "###-0.6567###": 33716, + "###-0.6569###": 33715, + "###-0.6571###": 33714, + "###-0.6573###": 33713, + "###-0.6575###": 33712, + "###-0.6577###": 33711, + "###-0.6579###": 33710, + "###-0.6581###": 33709, + "###-0.6583###": 33708, + "###-0.6585###": 33707, + "###-0.6587###": 33706, + "###-0.6589###": 33705, + "###-0.6591###": 33704, + "###-0.6593###": 33703, + "###-0.6595###": 33702, + "###-0.6597###": 33701, + "###-0.6599###": 33700, + "###-0.6601###": 33699, + "###-0.6603###": 33698, + "###-0.6605###": 33697, + "###-0.6607###": 33696, + "###-0.6609###": 33695, + "###-0.6611###": 33694, + "###-0.6613###": 33693, + "###-0.6615###": 33692, + "###-0.6617###": 33691, + "###-0.6619###": 33690, + "###-0.6621###": 33689, + "###-0.6623###": 33688, + "###-0.6625###": 33687, + "###-0.6627###": 33686, + "###-0.6629###": 33685, + "###-0.6631###": 33684, + "###-0.6633###": 33683, + "###-0.6635###": 33682, + "###-0.6637###": 33681, + "###-0.6639###": 33680, + "###-0.6641###": 33679, + "###-0.6643###": 33678, + "###-0.6645###": 33677, + "###-0.6647###": 33676, + "###-0.6649###": 33675, + "###-0.6651###": 33674, + "###-0.6653###": 33673, + "###-0.6655###": 33672, + "###-0.6657###": 33671, + "###-0.6659###": 33670, + "###-0.6661###": 33669, + "###-0.6663###": 33668, + "###-0.6665###": 33667, + "###-0.6667###": 33666, + "###-0.6669###": 33665, + "###-0.6671###": 33664, + "###-0.6673###": 33663, + "###-0.6675###": 33662, + "###-0.6677###": 33661, + "###-0.6679###": 33660, + "###-0.6681###": 33659, + "###-0.6683###": 33658, + "###-0.6685###": 33657, + "###-0.6687###": 33656, + "###-0.6689###": 33655, + "###-0.6691###": 33654, + "###-0.6693###": 33653, + "###-0.6695###": 33652, + "###-0.6697###": 33651, + "###-0.6699###": 33650, + "###-0.6701###": 33649, + "###-0.6703###": 33648, + "###-0.6705###": 33647, + "###-0.6707###": 33646, + "###-0.6709###": 33645, + "###-0.6711###": 33644, + "###-0.6713###": 33643, + "###-0.6715###": 33642, + "###-0.6717###": 33641, + "###-0.6719###": 33640, + "###-0.6721###": 33639, + "###-0.6723###": 33638, + "###-0.6725###": 33637, + "###-0.6727###": 33636, + "###-0.6729###": 33635, + "###-0.6731###": 33634, + "###-0.6733###": 33633, + "###-0.6735###": 33632, + "###-0.6737###": 33631, + "###-0.6739###": 33630, + "###-0.6741###": 33629, + "###-0.6743###": 33628, + "###-0.6745###": 33627, + "###-0.6747###": 33626, + "###-0.6749###": 33625, + "###-0.6751###": 33624, + "###-0.6753###": 33623, + "###-0.6755###": 33622, + "###-0.6757###": 33621, + "###-0.6759###": 33620, + "###-0.6761###": 33619, + "###-0.6763###": 33618, + "###-0.6765###": 33617, + "###-0.6767###": 33616, + "###-0.6769###": 33615, + "###-0.6771###": 33614, + "###-0.6773###": 33613, + "###-0.6775###": 33612, + "###-0.6777###": 33611, + "###-0.6779###": 33610, + "###-0.6781###": 33609, + "###-0.6783###": 33608, + "###-0.6785###": 33607, + "###-0.6787###": 33606, + "###-0.6789###": 33605, + "###-0.6791###": 33604, + "###-0.6793###": 33603, + "###-0.6795###": 33602, + "###-0.6797###": 33601, + "###-0.6799###": 33600, + "###-0.6801###": 33599, + "###-0.6803###": 33598, + "###-0.6805###": 33597, + "###-0.6807###": 33596, + "###-0.6809###": 33595, + "###-0.6811###": 33594, + "###-0.6813###": 33593, + "###-0.6815###": 33592, + "###-0.6817###": 33591, + "###-0.6819###": 33590, + "###-0.6821###": 33589, + "###-0.6823###": 33588, + "###-0.6825###": 33587, + "###-0.6827###": 33586, + "###-0.6829###": 33585, + "###-0.6831###": 33584, + "###-0.6833###": 33583, + "###-0.6835###": 33582, + "###-0.6837###": 33581, + "###-0.6839###": 33580, + "###-0.6841###": 33579, + "###-0.6843###": 33578, + "###-0.6845###": 33577, + "###-0.6847###": 33576, + "###-0.6849###": 33575, + "###-0.6851###": 33574, + "###-0.6853###": 33573, + "###-0.6855###": 33572, + "###-0.6857###": 33571, + "###-0.6859###": 33570, + "###-0.6861###": 33569, + "###-0.6863###": 33568, + "###-0.6865###": 33567, + "###-0.6867###": 33566, + "###-0.6869###": 33565, + "###-0.6871###": 33564, + "###-0.6873###": 33563, + "###-0.6875###": 33562, + "###-0.6877###": 33561, + "###-0.6879###": 33560, + "###-0.6881###": 33559, + "###-0.6883###": 33558, + "###-0.6885###": 33557, + "###-0.6887###": 33556, + "###-0.6889###": 33555, + "###-0.6891###": 33554, + "###-0.6893###": 33553, + "###-0.6895###": 33552, + "###-0.6897###": 33551, + "###-0.6899###": 33550, + "###-0.6901###": 33549, + "###-0.6903###": 33548, + "###-0.6905###": 33547, + "###-0.6907###": 33546, + "###-0.6909###": 33545, + "###-0.6911###": 33544, + "###-0.6913###": 33543, + "###-0.6915###": 33542, + "###-0.6917###": 33541, + "###-0.6919###": 33540, + "###-0.6921###": 33539, + "###-0.6923###": 33538, + "###-0.6925###": 33537, + "###-0.6927###": 33536, + "###-0.6929###": 33535, + "###-0.6931###": 33534, + "###-0.6933###": 33533, + "###-0.6935###": 33532, + "###-0.6937###": 33531, + "###-0.6939###": 33530, + "###-0.6941###": 33529, + "###-0.6943###": 33528, + "###-0.6945###": 33527, + "###-0.6947###": 33526, + "###-0.6949###": 33525, + "###-0.6951###": 33524, + "###-0.6953###": 33523, + "###-0.6955###": 33522, + "###-0.6957###": 33521, + "###-0.6959###": 33520, + "###-0.6961###": 33519, + "###-0.6963###": 33518, + "###-0.6965###": 33517, + "###-0.6967###": 33516, + "###-0.6969###": 33515, + "###-0.6971###": 33514, + "###-0.6973###": 33513, + "###-0.6975###": 33512, + "###-0.6977###": 33511, + "###-0.6979###": 33510, + "###-0.6981###": 33509, + "###-0.6983###": 33508, + "###-0.6985###": 33507, + "###-0.6987###": 33506, + "###-0.6989###": 33505, + "###-0.6991###": 33504, + "###-0.6993###": 33503, + "###-0.6995###": 33502, + "###-0.6997###": 33501, + "###-0.6999###": 33500, + "###-0.7001###": 33499, + "###-0.7003###": 33498, + "###-0.7005###": 33497, + "###-0.7007###": 33496, + "###-0.7009###": 33495, + "###-0.7011###": 33494, + "###-0.7013###": 33493, + "###-0.7015###": 33492, + "###-0.7017###": 33491, + "###-0.7019###": 33490, + "###-0.7021###": 33489, + "###-0.7023###": 33488, + "###-0.7025###": 33487, + "###-0.7027###": 33486, + "###-0.7029###": 33485, + "###-0.7031###": 33484, + "###-0.7033###": 33483, + "###-0.7035###": 33482, + "###-0.7037###": 33481, + "###-0.7039###": 33480, + "###-0.7041###": 33479, + "###-0.7043###": 33478, + "###-0.7045###": 33477, + "###-0.7047###": 33476, + "###-0.7049###": 33475, + "###-0.7051###": 33474, + "###-0.7053###": 33473, + "###-0.7055###": 33472, + "###-0.7057###": 33471, + "###-0.7059###": 33470, + "###-0.7061###": 33469, + "###-0.7063###": 33468, + "###-0.7065###": 33467, + "###-0.7067###": 33466, + "###-0.7069###": 33465, + "###-0.7071###": 33464, + "###-0.7073###": 33463, + "###-0.7075###": 33462, + "###-0.7077###": 33461, + "###-0.7079###": 33460, + "###-0.7081###": 33459, + "###-0.7083###": 33458, + "###-0.7085###": 33457, + "###-0.7087###": 33456, + "###-0.7089###": 33455, + "###-0.7091###": 33454, + "###-0.7093###": 33453, + "###-0.7095###": 33452, + "###-0.7097###": 33451, + "###-0.7099###": 33450, + "###-0.7101###": 33449, + "###-0.7103###": 33448, + "###-0.7105###": 33447, + "###-0.7107###": 33446, + "###-0.7109###": 33445, + "###-0.7111###": 33444, + "###-0.7113###": 33443, + "###-0.7115###": 33442, + "###-0.7117###": 33441, + "###-0.7119###": 33440, + "###-0.7121###": 33439, + "###-0.7123###": 33438, + "###-0.7125###": 33437, + "###-0.7127###": 33436, + "###-0.7129###": 33435, + "###-0.7131###": 33434, + "###-0.7133###": 33433, + "###-0.7135###": 33432, + "###-0.7137###": 33431, + "###-0.7139###": 33430, + "###-0.7141###": 33429, + "###-0.7143###": 33428, + "###-0.7145###": 33427, + "###-0.7147###": 33426, + "###-0.7149###": 33425, + "###-0.7151###": 33424, + "###-0.7153###": 33423, + "###-0.7155###": 33422, + "###-0.7157###": 33421, + "###-0.7159###": 33420, + "###-0.7161###": 33419, + "###-0.7163###": 33418, + "###-0.7165###": 33417, + "###-0.7167###": 33416, + "###-0.7169###": 33415, + "###-0.7171###": 33414, + "###-0.7173###": 33413, + "###-0.7175###": 33412, + "###-0.7177###": 33411, + "###-0.7179###": 33410, + "###-0.7181###": 33409, + "###-0.7183###": 33408, + "###-0.7185###": 33407, + "###-0.7187###": 33406, + "###-0.7189###": 33405, + "###-0.7191###": 33404, + "###-0.7193###": 33403, + "###-0.7195###": 33402, + "###-0.7197###": 33401, + "###-0.7199###": 33400, + "###-0.7201###": 33399, + "###-0.7203###": 33398, + "###-0.7205###": 33397, + "###-0.7207###": 33396, + "###-0.7209###": 33395, + "###-0.7211###": 33394, + "###-0.7213###": 33393, + "###-0.7215###": 33392, + "###-0.7217###": 33391, + "###-0.7219###": 33390, + "###-0.7221###": 33389, + "###-0.7223###": 33388, + "###-0.7225###": 33387, + "###-0.7227###": 33386, + "###-0.7229###": 33385, + "###-0.7231###": 33384, + "###-0.7233###": 33383, + "###-0.7235###": 33382, + "###-0.7237###": 33381, + "###-0.7239###": 33380, + "###-0.7241###": 33379, + "###-0.7243###": 33378, + "###-0.7245###": 33377, + "###-0.7247###": 33376, + "###-0.7249###": 33375, + "###-0.7251###": 33374, + "###-0.7253###": 33373, + "###-0.7255###": 33372, + "###-0.7257###": 33371, + "###-0.7259###": 33370, + "###-0.7261###": 33369, + "###-0.7263###": 33368, + "###-0.7265###": 33367, + "###-0.7267###": 33366, + "###-0.7269###": 33365, + "###-0.7271###": 33364, + "###-0.7273###": 33363, + "###-0.7275###": 33362, + "###-0.7277###": 33361, + "###-0.7279###": 33360, + "###-0.7281###": 33359, + "###-0.7283###": 33358, + "###-0.7285###": 33357, + "###-0.7287###": 33356, + "###-0.7289###": 33355, + "###-0.7291###": 33354, + "###-0.7293###": 33353, + "###-0.7295###": 33352, + "###-0.7297###": 33351, + "###-0.7299###": 33350, + "###-0.7301###": 33349, + "###-0.7303###": 33348, + "###-0.7305###": 33347, + "###-0.7307###": 33346, + "###-0.7309###": 33345, + "###-0.7311###": 33344, + "###-0.7313###": 33343, + "###-0.7315###": 33342, + "###-0.7317###": 33341, + "###-0.7319###": 33340, + "###-0.7321###": 33339, + "###-0.7323###": 33338, + "###-0.7325###": 33337, + "###-0.7327###": 33336, + "###-0.7329###": 33335, + "###-0.7331###": 33334, + "###-0.7333###": 33333, + "###-0.7335###": 33332, + "###-0.7337###": 33331, + "###-0.7339###": 33330, + "###-0.7341###": 33329, + "###-0.7343###": 33328, + "###-0.7345###": 33327, + "###-0.7347###": 33326, + "###-0.7349###": 33325, + "###-0.7351###": 33324, + "###-0.7353###": 33323, + "###-0.7355###": 33322, + "###-0.7357###": 33321, + "###-0.7359###": 33320, + "###-0.7361###": 33319, + "###-0.7363###": 33318, + "###-0.7365###": 33317, + "###-0.7367###": 33316, + "###-0.7369###": 33315, + "###-0.7371###": 33314, + "###-0.7373###": 33313, + "###-0.7375###": 33312, + "###-0.7377###": 33311, + "###-0.7379###": 33310, + "###-0.7381###": 33309, + "###-0.7383###": 33308, + "###-0.7385###": 33307, + "###-0.7387###": 33306, + "###-0.7389###": 33305, + "###-0.7391###": 33304, + "###-0.7393###": 33303, + "###-0.7395###": 33302, + "###-0.7397###": 33301, + "###-0.7399###": 33300, + "###-0.7401###": 33299, + "###-0.7403###": 33298, + "###-0.7405###": 33297, + "###-0.7407###": 33296, + "###-0.7409###": 33295, + "###-0.7411###": 33294, + "###-0.7413###": 33293, + "###-0.7415###": 33292, + "###-0.7417###": 33291, + "###-0.7419###": 33290, + "###-0.7421###": 33289, + "###-0.7423###": 33288, + "###-0.7425###": 33287, + "###-0.7427###": 33286, + "###-0.7429###": 33285, + "###-0.7431###": 33284, + "###-0.7433###": 33283, + "###-0.7435###": 33282, + "###-0.7437###": 33281, + "###-0.7439###": 33280, + "###-0.7441###": 33279, + "###-0.7443###": 33278, + "###-0.7445###": 33277, + "###-0.7447###": 33276, + "###-0.7449###": 33275, + "###-0.7451###": 33274, + "###-0.7453###": 33273, + "###-0.7455###": 33272, + "###-0.7457###": 33271, + "###-0.7459###": 33270, + "###-0.7461###": 33269, + "###-0.7463###": 33268, + "###-0.7465###": 33267, + "###-0.7467###": 33266, + "###-0.7469###": 33265, + "###-0.7471###": 33264, + "###-0.7473###": 33263, + "###-0.7475###": 33262, + "###-0.7477###": 33261, + "###-0.7479###": 33260, + "###-0.7481###": 33259, + "###-0.7483###": 33258, + "###-0.7485###": 33257, + "###-0.7487###": 33256, + "###-0.7489###": 33255, + "###-0.7491###": 33254, + "###-0.7493###": 33253, + "###-0.7495###": 33252, + "###-0.7497###": 33251, + "###-0.7499###": 33250, + "###-0.7501###": 33249, + "###-0.7503###": 33248, + "###-0.7505###": 33247, + "###-0.7507###": 33246, + "###-0.7509###": 33245, + "###-0.7511###": 33244, + "###-0.7513###": 33243, + "###-0.7515###": 33242, + "###-0.7517###": 33241, + "###-0.7519###": 33240, + "###-0.7521###": 33239, + "###-0.7523###": 33238, + "###-0.7525###": 33237, + "###-0.7527###": 33236, + "###-0.7529###": 33235, + "###-0.7531###": 33234, + "###-0.7533###": 33233, + "###-0.7535###": 33232, + "###-0.7537###": 33231, + "###-0.7539###": 33230, + "###-0.7541###": 33229, + "###-0.7543###": 33228, + "###-0.7545###": 33227, + "###-0.7547###": 33226, + "###-0.7549###": 33225, + "###-0.7551###": 33224, + "###-0.7553###": 33223, + "###-0.7555###": 33222, + "###-0.7557###": 33221, + "###-0.7559###": 33220, + "###-0.7561###": 33219, + "###-0.7563###": 33218, + "###-0.7565###": 33217, + "###-0.7567###": 33216, + "###-0.7569###": 33215, + "###-0.7571###": 33214, + "###-0.7573###": 33213, + "###-0.7575###": 33212, + "###-0.7577###": 33211, + "###-0.7579###": 33210, + "###-0.7581###": 33209, + "###-0.7583###": 33208, + "###-0.7585###": 33207, + "###-0.7587###": 33206, + "###-0.7589###": 33205, + "###-0.7591###": 33204, + "###-0.7593###": 33203, + "###-0.7595###": 33202, + "###-0.7597###": 33201, + "###-0.7599###": 33200, + "###-0.7601###": 33199, + "###-0.7603###": 33198, + "###-0.7605###": 33197, + "###-0.7607###": 33196, + "###-0.7609###": 33195, + "###-0.7611###": 33194, + "###-0.7613###": 33193, + "###-0.7615###": 33192, + "###-0.7617###": 33191, + "###-0.7619###": 33190, + "###-0.7621###": 33189, + "###-0.7623###": 33188, + "###-0.7625###": 33187, + "###-0.7627###": 33186, + "###-0.7629###": 33185, + "###-0.7631###": 33184, + "###-0.7633###": 33183, + "###-0.7635###": 33182, + "###-0.7637###": 33181, + "###-0.7639###": 33180, + "###-0.7641###": 33179, + "###-0.7643###": 33178, + "###-0.7645###": 33177, + "###-0.7647###": 33176, + "###-0.7649###": 33175, + "###-0.7651###": 33174, + "###-0.7653###": 33173, + "###-0.7655###": 33172, + "###-0.7657###": 33171, + "###-0.7659###": 33170, + "###-0.7661###": 33169, + "###-0.7663###": 33168, + "###-0.7665###": 33167, + "###-0.7667###": 33166, + "###-0.7669###": 33165, + "###-0.7671###": 33164, + "###-0.7673###": 33163, + "###-0.7675###": 33162, + "###-0.7677###": 33161, + "###-0.7679###": 33160, + "###-0.7681###": 33159, + "###-0.7683###": 33158, + "###-0.7685###": 33157, + "###-0.7687###": 33156, + "###-0.7689###": 33155, + "###-0.7691###": 33154, + "###-0.7693###": 33153, + "###-0.7695###": 33152, + "###-0.7697###": 33151, + "###-0.7699###": 33150, + "###-0.7701###": 33149, + "###-0.7703###": 33148, + "###-0.7705###": 33147, + "###-0.7707###": 33146, + "###-0.7709###": 33145, + "###-0.7711###": 33144, + "###-0.7713###": 33143, + "###-0.7715###": 33142, + "###-0.7717###": 33141, + "###-0.7719###": 33140, + "###-0.7721###": 33139, + "###-0.7723###": 33138, + "###-0.7725###": 33137, + "###-0.7727###": 33136, + "###-0.7729###": 33135, + "###-0.7731###": 33134, + "###-0.7733###": 33133, + "###-0.7735###": 33132, + "###-0.7737###": 33131, + "###-0.7739###": 33130, + "###-0.7741###": 33129, + "###-0.7743###": 33128, + "###-0.7745###": 33127, + "###-0.7747###": 33126, + "###-0.7749###": 33125, + "###-0.7751###": 33124, + "###-0.7753###": 33123, + "###-0.7755###": 33122, + "###-0.7757###": 33121, + "###-0.7759###": 33120, + "###-0.7761###": 33119, + "###-0.7763###": 33118, + "###-0.7765###": 33117, + "###-0.7767###": 33116, + "###-0.7769###": 33115, + "###-0.7771###": 33114, + "###-0.7773###": 33113, + "###-0.7775###": 33112, + "###-0.7777###": 33111, + "###-0.7779###": 33110, + "###-0.7781###": 33109, + "###-0.7783###": 33108, + "###-0.7785###": 33107, + "###-0.7787###": 33106, + "###-0.7789###": 33105, + "###-0.7791###": 33104, + "###-0.7793###": 33103, + "###-0.7795###": 33102, + "###-0.7797###": 33101, + "###-0.7799###": 33100, + "###-0.7801###": 33099, + "###-0.7803###": 33098, + "###-0.7805###": 33097, + "###-0.7807###": 33096, + "###-0.7809###": 33095, + "###-0.7811###": 33094, + "###-0.7813###": 33093, + "###-0.7815###": 33092, + "###-0.7817###": 33091, + "###-0.7819###": 33090, + "###-0.7821###": 33089, + "###-0.7823###": 33088, + "###-0.7825###": 33087, + "###-0.7827###": 33086, + "###-0.7829###": 33085, + "###-0.7831###": 33084, + "###-0.7833###": 33083, + "###-0.7835###": 33082, + "###-0.7837###": 33081, + "###-0.7839###": 33080, + "###-0.7841###": 33079, + "###-0.7843###": 33078, + "###-0.7845###": 33077, + "###-0.7847###": 33076, + "###-0.7849###": 33075, + "###-0.7851###": 33074, + "###-0.7853###": 33073, + "###-0.7855###": 33072, + "###-0.7857###": 33071, + "###-0.7859###": 33070, + "###-0.7861###": 33069, + "###-0.7863###": 33068, + "###-0.7865###": 33067, + "###-0.7867###": 33066, + "###-0.7869###": 33065, + "###-0.7871###": 33064, + "###-0.7873###": 33063, + "###-0.7875###": 33062, + "###-0.7877###": 33061, + "###-0.7879###": 33060, + "###-0.7881###": 33059, + "###-0.7883###": 33058, + "###-0.7885###": 33057, + "###-0.7887###": 33056, + "###-0.7889###": 33055, + "###-0.7891###": 33054, + "###-0.7893###": 33053, + "###-0.7895###": 33052, + "###-0.7897###": 33051, + "###-0.7899###": 33050, + "###-0.7901###": 33049, + "###-0.7903###": 33048, + "###-0.7905###": 33047, + "###-0.7907###": 33046, + "###-0.7909###": 33045, + "###-0.7911###": 33044, + "###-0.7913###": 33043, + "###-0.7915###": 33042, + "###-0.7917###": 33041, + "###-0.7919###": 33040, + "###-0.7921###": 33039, + "###-0.7923###": 33038, + "###-0.7925###": 33037, + "###-0.7927###": 33036, + "###-0.7929###": 33035, + "###-0.7931###": 33034, + "###-0.7933###": 33033, + "###-0.7935###": 33032, + "###-0.7937###": 33031, + "###-0.7939###": 33030, + "###-0.7941###": 33029, + "###-0.7943###": 33028, + "###-0.7945###": 33027, + "###-0.7947###": 33026, + "###-0.7949###": 33025, + "###-0.7951###": 33024, + "###-0.7953###": 33023, + "###-0.7955###": 33022, + "###-0.7957###": 33021, + "###-0.7959###": 33020, + "###-0.7961###": 33019, + "###-0.7963###": 33018, + "###-0.7965###": 33017, + "###-0.7967###": 33016, + "###-0.7969###": 33015, + "###-0.7971###": 33014, + "###-0.7973###": 33013, + "###-0.7975###": 33012, + "###-0.7977###": 33011, + "###-0.7979###": 33010, + "###-0.7981###": 33009, + "###-0.7983###": 33008, + "###-0.7985###": 33007, + "###-0.7987###": 33006, + "###-0.7989###": 33005, + "###-0.7991###": 33004, + "###-0.7993###": 33003, + "###-0.7995###": 33002, + "###-0.7997###": 33001, + "###-0.7999###": 33000, + "###-0.8001###": 32999, + "###-0.8003###": 32998, + "###-0.8005###": 32997, + "###-0.8007###": 32996, + "###-0.8009###": 32995, + "###-0.8011###": 32994, + "###-0.8013###": 32993, + "###-0.8015###": 32992, + "###-0.8017###": 32991, + "###-0.8019###": 32990, + "###-0.8021###": 32989, + "###-0.8023###": 32988, + "###-0.8025###": 32987, + "###-0.8027###": 32986, + "###-0.8029###": 32985, + "###-0.8031###": 32984, + "###-0.8033###": 32983, + "###-0.8035###": 32982, + "###-0.8037###": 32981, + "###-0.8039###": 32980, + "###-0.8041###": 32979, + "###-0.8043###": 32978, + "###-0.8045###": 32977, + "###-0.8047###": 32976, + "###-0.8049###": 32975, + "###-0.8051###": 32974, + "###-0.8053###": 32973, + "###-0.8055###": 32972, + "###-0.8057###": 32971, + "###-0.8059###": 32970, + "###-0.8061###": 32969, + "###-0.8063###": 32968, + "###-0.8065###": 32967, + "###-0.8067###": 32966, + "###-0.8069###": 32965, + "###-0.8071###": 32964, + "###-0.8073###": 32963, + "###-0.8075###": 32962, + "###-0.8077###": 32961, + "###-0.8079###": 32960, + "###-0.8081###": 32959, + "###-0.8083###": 32958, + "###-0.8085###": 32957, + "###-0.8087###": 32956, + "###-0.8089###": 32955, + "###-0.8091###": 32954, + "###-0.8093###": 32953, + "###-0.8095###": 32952, + "###-0.8097###": 32951, + "###-0.8099###": 32950, + "###-0.8101###": 32949, + "###-0.8103###": 32948, + "###-0.8105###": 32947, + "###-0.8107###": 32946, + "###-0.8109###": 32945, + "###-0.8111###": 32944, + "###-0.8113###": 32943, + "###-0.8115###": 32942, + "###-0.8117###": 32941, + "###-0.8119###": 32940, + "###-0.8121###": 32939, + "###-0.8123###": 32938, + "###-0.8125###": 32937, + "###-0.8127###": 32936, + "###-0.8129###": 32935, + "###-0.8131###": 32934, + "###-0.8133###": 32933, + "###-0.8135###": 32932, + "###-0.8137###": 32931, + "###-0.8139###": 32930, + "###-0.8141###": 32929, + "###-0.8143###": 32928, + "###-0.8145###": 32927, + "###-0.8147###": 32926, + "###-0.8149###": 32925, + "###-0.8151###": 32924, + "###-0.8153###": 32923, + "###-0.8155###": 32922, + "###-0.8157###": 32921, + "###-0.8159###": 32920, + "###-0.8161###": 32919, + "###-0.8163###": 32918, + "###-0.8165###": 32917, + "###-0.8167###": 32916, + "###-0.8169###": 32915, + "###-0.8171###": 32914, + "###-0.8173###": 32913, + "###-0.8175###": 32912, + "###-0.8177###": 32911, + "###-0.8179###": 32910, + "###-0.8181###": 32909, + "###-0.8183###": 32908, + "###-0.8185###": 32907, + "###-0.8187###": 32906, + "###-0.8189###": 32905, + "###-0.8191###": 32904, + "###-0.8193###": 32903, + "###-0.8195###": 32902, + "###-0.8197###": 32901, + "###-0.8199###": 32900, + "###-0.8201###": 32899, + "###-0.8203###": 32898, + "###-0.8205###": 32897, + "###-0.8207###": 32896, + "###-0.8209###": 32895, + "###-0.8211###": 32894, + "###-0.8213###": 32893, + "###-0.8215###": 32892, + "###-0.8217###": 32891, + "###-0.8219###": 32890, + "###-0.8221###": 32889, + "###-0.8223###": 32888, + "###-0.8225###": 32887, + "###-0.8227###": 32886, + "###-0.8229###": 32885, + "###-0.8231###": 32884, + "###-0.8233###": 32883, + "###-0.8235###": 32882, + "###-0.8237###": 32881, + "###-0.8239###": 32880, + "###-0.8241###": 32879, + "###-0.8243###": 32878, + "###-0.8245###": 32877, + "###-0.8247###": 32876, + "###-0.8249###": 32875, + "###-0.8251###": 32874, + "###-0.8253###": 32873, + "###-0.8255###": 32872, + "###-0.8257###": 32871, + "###-0.8259###": 32870, + "###-0.8261###": 32869, + "###-0.8263###": 32868, + "###-0.8265###": 32867, + "###-0.8267###": 32866, + "###-0.8269###": 32865, + "###-0.8271###": 32864, + "###-0.8273###": 32863, + "###-0.8275###": 32862, + "###-0.8277###": 32861, + "###-0.8279###": 32860, + "###-0.8281###": 32859, + "###-0.8283###": 32858, + "###-0.8285###": 32857, + "###-0.8287###": 32856, + "###-0.8289###": 32855, + "###-0.8291###": 32854, + "###-0.8293###": 32853, + "###-0.8295###": 32852, + "###-0.8297###": 32851, + "###-0.8299###": 32850, + "###-0.8301###": 32849, + "###-0.8303###": 32848, + "###-0.8305###": 32847, + "###-0.8307###": 32846, + "###-0.8309###": 32845, + "###-0.8311###": 32844, + "###-0.8313###": 32843, + "###-0.8315###": 32842, + "###-0.8317###": 32841, + "###-0.8319###": 32840, + "###-0.8321###": 32839, + "###-0.8323###": 32838, + "###-0.8325###": 32837, + "###-0.8327###": 32836, + "###-0.8329###": 32835, + "###-0.8331###": 32834, + "###-0.8333###": 32833, + "###-0.8335###": 32832, + "###-0.8337###": 32831, + "###-0.8339###": 32830, + "###-0.8341###": 32829, + "###-0.8343###": 32828, + "###-0.8345###": 32827, + "###-0.8347###": 32826, + "###-0.8349###": 32825, + "###-0.8351###": 32824, + "###-0.8353###": 32823, + "###-0.8355###": 32822, + "###-0.8357###": 32821, + "###-0.8359###": 32820, + "###-0.8361###": 32819, + "###-0.8363###": 32818, + "###-0.8365###": 32817, + "###-0.8367###": 32816, + "###-0.8369###": 32815, + "###-0.8371###": 32814, + "###-0.8373###": 32813, + "###-0.8375###": 32812, + "###-0.8377###": 32811, + "###-0.8379###": 32810, + "###-0.8381###": 32809, + "###-0.8383###": 32808, + "###-0.8385###": 32807, + "###-0.8387###": 32806, + "###-0.8389###": 32805, + "###-0.8391###": 32804, + "###-0.8393###": 32803, + "###-0.8395###": 32802, + "###-0.8397###": 32801, + "###-0.8399###": 32800, + "###-0.8401###": 32799, + "###-0.8403###": 32798, + "###-0.8405###": 32797, + "###-0.8407###": 32796, + "###-0.8409###": 32795, + "###-0.8411###": 32794, + "###-0.8413###": 32793, + "###-0.8415###": 32792, + "###-0.8417###": 32791, + "###-0.8419###": 32790, + "###-0.8421###": 32789, + "###-0.8423###": 32788, + "###-0.8425###": 32787, + "###-0.8427###": 32786, + "###-0.8429###": 32785, + "###-0.8431###": 32784, + "###-0.8433###": 32783, + "###-0.8435###": 32782, + "###-0.8437###": 32781, + "###-0.8439###": 32780, + "###-0.8441###": 32779, + "###-0.8443###": 32778, + "###-0.8445###": 32777, + "###-0.8447###": 32776, + "###-0.8449###": 32775, + "###-0.8451###": 32774, + "###-0.8453###": 32773, + "###-0.8455###": 32772, + "###-0.8457###": 32771, + "###-0.8459###": 32770, + "###-0.8461###": 32769, + "###-0.8463###": 32768, + "###-0.8465###": 32767, + "###-0.8467###": 32766, + "###-0.8469###": 32765, + "###-0.8471###": 32764, + "###-0.8473###": 32763, + "###-0.8475###": 32762, + "###-0.8477###": 32761, + "###-0.8479###": 32760, + "###-0.8481###": 32759, + "###-0.8483###": 32758, + "###-0.8485###": 32757, + "###-0.8487###": 32756, + "###-0.8489###": 32755, + "###-0.8491###": 32754, + "###-0.8493###": 32753, + "###-0.8495###": 32752, + "###-0.8497###": 32751, + "###-0.8499###": 32750, + "###-0.8501###": 32749, + "###-0.8503###": 32748, + "###-0.8505###": 32747, + "###-0.8507###": 32746, + "###-0.8509###": 32745, + "###-0.8511###": 32744, + "###-0.8513###": 32743, + "###-0.8515###": 32742, + "###-0.8517###": 32741, + "###-0.8519###": 32740, + "###-0.8521###": 32739, + "###-0.8523###": 32738, + "###-0.8525###": 32737, + "###-0.8527###": 32736, + "###-0.8529###": 32735, + "###-0.8531###": 32734, + "###-0.8533###": 32733, + "###-0.8535###": 32732, + "###-0.8537###": 32731, + "###-0.8539###": 32730, + "###-0.8541###": 32729, + "###-0.8543###": 32728, + "###-0.8545###": 32727, + "###-0.8547###": 32726, + "###-0.8549###": 32725, + "###-0.8551###": 32724, + "###-0.8553###": 32723, + "###-0.8555###": 32722, + "###-0.8557###": 32721, + "###-0.8559###": 32720, + "###-0.8561###": 32719, + "###-0.8563###": 32718, + "###-0.8565###": 32717, + "###-0.8567###": 32716, + "###-0.8569###": 32715, + "###-0.8571###": 32714, + "###-0.8573###": 32713, + "###-0.8575###": 32712, + "###-0.8577###": 32711, + "###-0.8579###": 32710, + "###-0.8581###": 32709, + "###-0.8583###": 32708, + "###-0.8585###": 32707, + "###-0.8587###": 32706, + "###-0.8589###": 32705, + "###-0.8591###": 32704, + "###-0.8593###": 32703, + "###-0.8595###": 32702, + "###-0.8597###": 32701, + "###-0.8599###": 32700, + "###-0.8601###": 32699, + "###-0.8603###": 32698, + "###-0.8605###": 32697, + "###-0.8607###": 32696, + "###-0.8609###": 32695, + "###-0.8611###": 32694, + "###-0.8613###": 32693, + "###-0.8615###": 32692, + "###-0.8617###": 32691, + "###-0.8619###": 32690, + "###-0.8621###": 32689, + "###-0.8623###": 32688, + "###-0.8625###": 32687, + "###-0.8627###": 32686, + "###-0.8629###": 32685, + "###-0.8631###": 32684, + "###-0.8633###": 32683, + "###-0.8635###": 32682, + "###-0.8637###": 32681, + "###-0.8639###": 32680, + "###-0.8641###": 32679, + "###-0.8643###": 32678, + "###-0.8645###": 32677, + "###-0.8647###": 32676, + "###-0.8649###": 32675, + "###-0.8651###": 32674, + "###-0.8653###": 32673, + "###-0.8655###": 32672, + "###-0.8657###": 32671, + "###-0.8659###": 32670, + "###-0.8661###": 32669, + "###-0.8663###": 32668, + "###-0.8665###": 32667, + "###-0.8667###": 32666, + "###-0.8669###": 32665, + "###-0.8671###": 32664, + "###-0.8673###": 32663, + "###-0.8675###": 32662, + "###-0.8677###": 32661, + "###-0.8679###": 32660, + "###-0.8681###": 32659, + "###-0.8683###": 32658, + "###-0.8685###": 32657, + "###-0.8687###": 32656, + "###-0.8689###": 32655, + "###-0.8691###": 32654, + "###-0.8693###": 32653, + "###-0.8695###": 32652, + "###-0.8697###": 32651, + "###-0.8699###": 32650, + "###-0.8701###": 32649, + "###-0.8703###": 32648, + "###-0.8705###": 32647, + "###-0.8707###": 32646, + "###-0.8709###": 32645, + "###-0.8711###": 32644, + "###-0.8713###": 32643, + "###-0.8715###": 32642, + "###-0.8717###": 32641, + "###-0.8719###": 32640, + "###-0.8721###": 32639, + "###-0.8723###": 32638, + "###-0.8725###": 32637, + "###-0.8727###": 32636, + "###-0.8729###": 32635, + "###-0.8731###": 32634, + "###-0.8733###": 32633, + "###-0.8735###": 32632, + "###-0.8737###": 32631, + "###-0.8739###": 32630, + "###-0.8741###": 32629, + "###-0.8743###": 32628, + "###-0.8745###": 32627, + "###-0.8747###": 32626, + "###-0.8749###": 32625, + "###-0.8751###": 32624, + "###-0.8753###": 32623, + "###-0.8755###": 32622, + "###-0.8757###": 32621, + "###-0.8759###": 32620, + "###-0.8761###": 32619, + "###-0.8763###": 32618, + "###-0.8765###": 32617, + "###-0.8767###": 32616, + "###-0.8769###": 32615, + "###-0.8771###": 32614, + "###-0.8773###": 32613, + "###-0.8775###": 32612, + "###-0.8777###": 32611, + "###-0.8779###": 32610, + "###-0.8781###": 32609, + "###-0.8783###": 32608, + "###-0.8785###": 32607, + "###-0.8787###": 32606, + "###-0.8789###": 32605, + "###-0.8791###": 32604, + "###-0.8793###": 32603, + "###-0.8795###": 32602, + "###-0.8797###": 32601, + "###-0.8799###": 32600, + "###-0.8801###": 32599, + "###-0.8803###": 32598, + "###-0.8805###": 32597, + "###-0.8807###": 32596, + "###-0.8809###": 32595, + "###-0.8811###": 32594, + "###-0.8813###": 32593, + "###-0.8815###": 32592, + "###-0.8817###": 32591, + "###-0.8819###": 32590, + "###-0.8821###": 32589, + "###-0.8823###": 32588, + "###-0.8825###": 32587, + "###-0.8827###": 32586, + "###-0.8829###": 32585, + "###-0.8831###": 32584, + "###-0.8833###": 32583, + "###-0.8835###": 32582, + "###-0.8837###": 32581, + "###-0.8839###": 32580, + "###-0.8841###": 32579, + "###-0.8843###": 32578, + "###-0.8845###": 32577, + "###-0.8847###": 32576, + "###-0.8849###": 32575, + "###-0.8851###": 32574, + "###-0.8853###": 32573, + "###-0.8855###": 32572, + "###-0.8857###": 32571, + "###-0.8859###": 32570, + "###-0.8861###": 32569, + "###-0.8863###": 32568, + "###-0.8865###": 32567, + "###-0.8867###": 32566, + "###-0.8869###": 32565, + "###-0.8871###": 32564, + "###-0.8873###": 32563, + "###-0.8875###": 32562, + "###-0.8877###": 32561, + "###-0.8879###": 32560, + "###-0.8881###": 32559, + "###-0.8883###": 32558, + "###-0.8885###": 32557, + "###-0.8887###": 32556, + "###-0.8889###": 32555, + "###-0.8891###": 32554, + "###-0.8893###": 32553, + "###-0.8895###": 32552, + "###-0.8897###": 32551, + "###-0.8899###": 32550, + "###-0.8901###": 32549, + "###-0.8903###": 32548, + "###-0.8905###": 32547, + "###-0.8907###": 32546, + "###-0.8909###": 32545, + "###-0.8911###": 32544, + "###-0.8913###": 32543, + "###-0.8915###": 32542, + "###-0.8917###": 32541, + "###-0.8919###": 32540, + "###-0.8921###": 32539, + "###-0.8923###": 32538, + "###-0.8925###": 32537, + "###-0.8927###": 32536, + "###-0.8929###": 32535, + "###-0.8931###": 32534, + "###-0.8933###": 32533, + "###-0.8935###": 32532, + "###-0.8937###": 32531, + "###-0.8939###": 32530, + "###-0.8941###": 32529, + "###-0.8943###": 32528, + "###-0.8945###": 32527, + "###-0.8947###": 32526, + "###-0.8949###": 32525, + "###-0.8951###": 32524, + "###-0.8953###": 32523, + "###-0.8955###": 32522, + "###-0.8957###": 32521, + "###-0.8959###": 32520, + "###-0.8961###": 32519, + "###-0.8963###": 32518, + "###-0.8965###": 32517, + "###-0.8967###": 32516, + "###-0.8969###": 32515, + "###-0.8971###": 32514, + "###-0.8973###": 32513, + "###-0.8975###": 32512, + "###-0.8977###": 32511, + "###-0.8979###": 32510, + "###-0.8981###": 32509, + "###-0.8983###": 32508, + "###-0.8985###": 32507, + "###-0.8987###": 32506, + "###-0.8989###": 32505, + "###-0.8991###": 32504, + "###-0.8993###": 32503, + "###-0.8995###": 32502, + "###-0.8997###": 32501, + "###-0.8999###": 32500, + "###-0.9001###": 32499, + "###-0.9003###": 32498, + "###-0.9005###": 32497, + "###-0.9007###": 32496, + "###-0.9009###": 32495, + "###-0.9011###": 32494, + "###-0.9013###": 32493, + "###-0.9015###": 32492, + "###-0.9017###": 32491, + "###-0.9019###": 32490, + "###-0.9021###": 32489, + "###-0.9023###": 32488, + "###-0.9025###": 32487, + "###-0.9027###": 32486, + "###-0.9029###": 32485, + "###-0.9031###": 32484, + "###-0.9033###": 32483, + "###-0.9035###": 32482, + "###-0.9037###": 32481, + "###-0.9039###": 32480, + "###-0.9041###": 32479, + "###-0.9043###": 32478, + "###-0.9045###": 32477, + "###-0.9047###": 32476, + "###-0.9049###": 32475, + "###-0.9051###": 32474, + "###-0.9053###": 32473, + "###-0.9055###": 32472, + "###-0.9057###": 32471, + "###-0.9059###": 32470, + "###-0.9061###": 32469, + "###-0.9063###": 32468, + "###-0.9065###": 32467, + "###-0.9067###": 32466, + "###-0.9069###": 32465, + "###-0.9071###": 32464, + "###-0.9073###": 32463, + "###-0.9075###": 32462, + "###-0.9077###": 32461, + "###-0.9079###": 32460, + "###-0.9081###": 32459, + "###-0.9083###": 32458, + "###-0.9085###": 32457, + "###-0.9087###": 32456, + "###-0.9089###": 32455, + "###-0.9091###": 32454, + "###-0.9093###": 32453, + "###-0.9095###": 32452, + "###-0.9097###": 32451, + "###-0.9099###": 32450, + "###-0.9101###": 32449, + "###-0.9103###": 32448, + "###-0.9105###": 32447, + "###-0.9107###": 32446, + "###-0.9109###": 32445, + "###-0.9111###": 32444, + "###-0.9113###": 32443, + "###-0.9115###": 32442, + "###-0.9117###": 32441, + "###-0.9119###": 32440, + "###-0.9121###": 32439, + "###-0.9123###": 32438, + "###-0.9125###": 32437, + "###-0.9127###": 32436, + "###-0.9129###": 32435, + "###-0.9131###": 32434, + "###-0.9133###": 32433, + "###-0.9135###": 32432, + "###-0.9137###": 32431, + "###-0.9139###": 32430, + "###-0.9141###": 32429, + "###-0.9143###": 32428, + "###-0.9145###": 32427, + "###-0.9147###": 32426, + "###-0.9149###": 32425, + "###-0.9151###": 32424, + "###-0.9153###": 32423, + "###-0.9155###": 32422, + "###-0.9157###": 32421, + "###-0.9159###": 32420, + "###-0.9161###": 32419, + "###-0.9163###": 32418, + "###-0.9165###": 32417, + "###-0.9167###": 32416, + "###-0.9169###": 32415, + "###-0.9171###": 32414, + "###-0.9173###": 32413, + "###-0.9175###": 32412, + "###-0.9177###": 32411, + "###-0.9179###": 32410, + "###-0.9181###": 32409, + "###-0.9183###": 32408, + "###-0.9185###": 32407, + "###-0.9187###": 32406, + "###-0.9189###": 32405, + "###-0.9191###": 32404, + "###-0.9193###": 32403, + "###-0.9195###": 32402, + "###-0.9197###": 32401, + "###-0.9199###": 32400, + "###-0.9201###": 32399, + "###-0.9203###": 32398, + "###-0.9205###": 32397, + "###-0.9207###": 32396, + "###-0.9209###": 32395, + "###-0.9211###": 32394, + "###-0.9213###": 32393, + "###-0.9215###": 32392, + "###-0.9217###": 32391, + "###-0.9219###": 32390, + "###-0.9221###": 32389, + "###-0.9223###": 32388, + "###-0.9225###": 32387, + "###-0.9227###": 32386, + "###-0.9229###": 32385, + "###-0.9231###": 32384, + "###-0.9233###": 32383, + "###-0.9235###": 32382, + "###-0.9237###": 32381, + "###-0.9239###": 32380, + "###-0.9241###": 32379, + "###-0.9243###": 32378, + "###-0.9245###": 32377, + "###-0.9247###": 32376, + "###-0.9249###": 32375, + "###-0.9251###": 32374, + "###-0.9253###": 32373, + "###-0.9255###": 32372, + "###-0.9257###": 32371, + "###-0.9259###": 32370, + "###-0.9261###": 32369, + "###-0.9263###": 32368, + "###-0.9265###": 32367, + "###-0.9267###": 32366, + "###-0.9269###": 32365, + "###-0.9271###": 32364, + "###-0.9273###": 32363, + "###-0.9275###": 32362, + "###-0.9277###": 32361, + "###-0.9279###": 32360, + "###-0.9281###": 32359, + "###-0.9283###": 32358, + "###-0.9285###": 32357, + "###-0.9287###": 32356, + "###-0.9289###": 32355, + "###-0.9291###": 32354, + "###-0.9293###": 32353, + "###-0.9295###": 32352, + "###-0.9297###": 32351, + "###-0.9299###": 32350, + "###-0.9301###": 32349, + "###-0.9303###": 32348, + "###-0.9305###": 32347, + "###-0.9307###": 32346, + "###-0.9309###": 32345, + "###-0.9311###": 32344, + "###-0.9313###": 32343, + "###-0.9315###": 32342, + "###-0.9317###": 32341, + "###-0.9319###": 32340, + "###-0.9321###": 32339, + "###-0.9323###": 32338, + "###-0.9325###": 32337, + "###-0.9327###": 32336, + "###-0.9329###": 32335, + "###-0.9331###": 32334, + "###-0.9333###": 32333, + "###-0.9335###": 32332, + "###-0.9337###": 32331, + "###-0.9339###": 32330, + "###-0.9341###": 32329, + "###-0.9343###": 32328, + "###-0.9345###": 32327, + "###-0.9347###": 32326, + "###-0.9349###": 32325, + "###-0.9351###": 32324, + "###-0.9353###": 32323, + "###-0.9355###": 32322, + "###-0.9357###": 32321, + "###-0.9359###": 32320, + "###-0.9361###": 32319, + "###-0.9363###": 32318, + "###-0.9365###": 32317, + "###-0.9367###": 32316, + "###-0.9369###": 32315, + "###-0.9371###": 32314, + "###-0.9373###": 32313, + "###-0.9375###": 32312, + "###-0.9377###": 32311, + "###-0.9379###": 32310, + "###-0.9381###": 32309, + "###-0.9383###": 32308, + "###-0.9385###": 32307, + "###-0.9387###": 32306, + "###-0.9389###": 32305, + "###-0.9391###": 32304, + "###-0.9393###": 32303, + "###-0.9395###": 32302, + "###-0.9397###": 32301, + "###-0.9399###": 32300, + "###-0.9401###": 32299, + "###-0.9403###": 32298, + "###-0.9405###": 32297, + "###-0.9407###": 32296, + "###-0.9409###": 32295, + "###-0.9411###": 32294, + "###-0.9413###": 32293, + "###-0.9415###": 32292, + "###-0.9417###": 32291, + "###-0.9419###": 32290, + "###-0.9421###": 32289, + "###-0.9423###": 32288, + "###-0.9425###": 32287, + "###-0.9427###": 32286, + "###-0.9429###": 32285, + "###-0.9431###": 32284, + "###-0.9433###": 32283, + "###-0.9435###": 32282, + "###-0.9437###": 32281, + "###-0.9439###": 32280, + "###-0.9441###": 32279, + "###-0.9443###": 32278, + "###-0.9445###": 32277, + "###-0.9447###": 32276, + "###-0.9449###": 32275, + "###-0.9451###": 32274, + "###-0.9453###": 32273, + "###-0.9455###": 32272, + "###-0.9457###": 32271, + "###-0.9459###": 32270, + "###-0.9461###": 32269, + "###-0.9463###": 32268, + "###-0.9465###": 32267, + "###-0.9467###": 32266, + "###-0.9469###": 32265, + "###-0.9471###": 32264, + "###-0.9473###": 32263, + "###-0.9475###": 32262, + "###-0.9477###": 32261, + "###-0.9479###": 32260, + "###-0.9481###": 32259, + "###-0.9483###": 32258, + "###-0.9485###": 32257, + "###-0.9487###": 32256, + "###-0.9489###": 32255, + "###-0.9491###": 32254, + "###-0.9493###": 32253, + "###-0.9495###": 32252, + "###-0.9497###": 32251, + "###-0.9499###": 32250, + "###-0.9501###": 32249, + "###-0.9503###": 32248, + "###-0.9505###": 32247, + "###-0.9507###": 32246, + "###-0.9509###": 32245, + "###-0.9511###": 32244, + "###-0.9513###": 32243, + "###-0.9515###": 32242, + "###-0.9517###": 32241, + "###-0.9519###": 32240, + "###-0.9521###": 32239, + "###-0.9523###": 32238, + "###-0.9525###": 32237, + "###-0.9527###": 32236, + "###-0.9529###": 32235, + "###-0.9531###": 32234, + "###-0.9533###": 32233, + "###-0.9535###": 32232, + "###-0.9537###": 32231, + "###-0.9539###": 32230, + "###-0.9541###": 32229, + "###-0.9543###": 32228, + "###-0.9545###": 32227, + "###-0.9547###": 32226, + "###-0.9549###": 32225, + "###-0.9551###": 32224, + "###-0.9553###": 32223, + "###-0.9555###": 32222, + "###-0.9557###": 32221, + "###-0.9559###": 32220, + "###-0.9561###": 32219, + "###-0.9563###": 32218, + "###-0.9565###": 32217, + "###-0.9567###": 32216, + "###-0.9569###": 32215, + "###-0.9571###": 32214, + "###-0.9573###": 32213, + "###-0.9575###": 32212, + "###-0.9577###": 32211, + "###-0.9579###": 32210, + "###-0.9581###": 32209, + "###-0.9583###": 32208, + "###-0.9585###": 32207, + "###-0.9587###": 32206, + "###-0.9589###": 32205, + "###-0.9591###": 32204, + "###-0.9593###": 32203, + "###-0.9595###": 32202, + "###-0.9597###": 32201, + "###-0.9599###": 32200, + "###-0.9601###": 32199, + "###-0.9603###": 32198, + "###-0.9605###": 32197, + "###-0.9607###": 32196, + "###-0.9609###": 32195, + "###-0.9611###": 32194, + "###-0.9613###": 32193, + "###-0.9615###": 32192, + "###-0.9617###": 32191, + "###-0.9619###": 32190, + "###-0.9621###": 32189, + "###-0.9623###": 32188, + "###-0.9625###": 32187, + "###-0.9627###": 32186, + "###-0.9629###": 32185, + "###-0.9631###": 32184, + "###-0.9633###": 32183, + "###-0.9635###": 32182, + "###-0.9637###": 32181, + "###-0.9639###": 32180, + "###-0.9641###": 32179, + "###-0.9643###": 32178, + "###-0.9645###": 32177, + "###-0.9647###": 32176, + "###-0.9649###": 32175, + "###-0.9651###": 32174, + "###-0.9653###": 32173, + "###-0.9655###": 32172, + "###-0.9657###": 32171, + "###-0.9659###": 32170, + "###-0.9661###": 32169, + "###-0.9663###": 32168, + "###-0.9665###": 32167, + "###-0.9667###": 32166, + "###-0.9669###": 32165, + "###-0.9671###": 32164, + "###-0.9673###": 32163, + "###-0.9675###": 32162, + "###-0.9677###": 32161, + "###-0.9679###": 32160, + "###-0.9681###": 32159, + "###-0.9683###": 32158, + "###-0.9685###": 32157, + "###-0.9687###": 32156, + "###-0.9689###": 32155, + "###-0.9691###": 32154, + "###-0.9693###": 32153, + "###-0.9695###": 32152, + "###-0.9697###": 32151, + "###-0.9699###": 32150, + "###-0.9701###": 32149, + "###-0.9703###": 32148, + "###-0.9705###": 32147, + "###-0.9707###": 32146, + "###-0.9709###": 32145, + "###-0.9711###": 32144, + "###-0.9713###": 32143, + "###-0.9715###": 32142, + "###-0.9717###": 32141, + "###-0.9719###": 32140, + "###-0.9721###": 32139, + "###-0.9723###": 32138, + "###-0.9725###": 32137, + "###-0.9727###": 32136, + "###-0.9729###": 32135, + "###-0.9731###": 32134, + "###-0.9733###": 32133, + "###-0.9735###": 32132, + "###-0.9737###": 32131, + "###-0.9739###": 32130, + "###-0.9741###": 32129, + "###-0.9743###": 32128, + "###-0.9745###": 32127, + "###-0.9747###": 32126, + "###-0.9749###": 32125, + "###-0.9751###": 32124, + "###-0.9753###": 32123, + "###-0.9755###": 32122, + "###-0.9757###": 32121, + "###-0.9759###": 32120, + "###-0.9761###": 32119, + "###-0.9763###": 32118, + "###-0.9765###": 32117, + "###-0.9767###": 32116, + "###-0.9769###": 32115, + "###-0.9771###": 32114, + "###-0.9773###": 32113, + "###-0.9775###": 32112, + "###-0.9777###": 32111, + "###-0.9779###": 32110, + "###-0.9781###": 32109, + "###-0.9783###": 32108, + "###-0.9785###": 32107, + "###-0.9787###": 32106, + "###-0.9789###": 32105, + "###-0.9791###": 32104, + "###-0.9793###": 32103, + "###-0.9795###": 32102, + "###-0.9797###": 32101, + "###-0.9799###": 32100, + "###-0.9801###": 32099, + "###-0.9803###": 32098, + "###-0.9805###": 32097, + "###-0.9807###": 32096, + "###-0.9809###": 32095, + "###-0.9811###": 32094, + "###-0.9813###": 32093, + "###-0.9815###": 32092, + "###-0.9817###": 32091, + "###-0.9819###": 32090, + "###-0.9821###": 32089, + "###-0.9823###": 32088, + "###-0.9825###": 32087, + "###-0.9827###": 32086, + "###-0.9829###": 32085, + "###-0.9831###": 32084, + "###-0.9833###": 32083, + "###-0.9835###": 32082, + "###-0.9837###": 32081, + "###-0.9839###": 32080, + "###-0.9841###": 32079, + "###-0.9843###": 32078, + "###-0.9845###": 32077, + "###-0.9847###": 32076, + "###-0.9849###": 32075, + "###-0.9851###": 32074, + "###-0.9853###": 32073, + "###-0.9855###": 32072, + "###-0.9857###": 32071, + "###-0.9859###": 32070, + "###-0.9861###": 32069, + "###-0.9863###": 32068, + "###-0.9865###": 32067, + "###-0.9867###": 32066, + "###-0.9869###": 32065, + "###-0.9871###": 32064, + "###-0.9873###": 32063, + "###-0.9875###": 32062, + "###-0.9877###": 32061, + "###-0.9879###": 32060, + "###-0.9881###": 32059, + "###-0.9883###": 32058, + "###-0.9885###": 32057, + "###-0.9887###": 32056, + "###-0.9889###": 32055, + "###-0.9891###": 32054, + "###-0.9893###": 32053, + "###-0.9895###": 32052, + "###-0.9897###": 32051, + "###-0.9899###": 32050, + "###-0.9901###": 32049, + "###-0.9903###": 32048, + "###-0.9905###": 32047, + "###-0.9907###": 32046, + "###-0.9909###": 32045, + "###-0.9911###": 32044, + "###-0.9913###": 32043, + "###-0.9915###": 32042, + "###-0.9917###": 32041, + "###-0.9919###": 32040, + "###-0.9921###": 32039, + "###-0.9923###": 32038, + "###-0.9925###": 32037, + "###-0.9927###": 32036, + "###-0.9929###": 32035, + "###-0.9931###": 32034, + "###-0.9933###": 32033, + "###-0.9935###": 32032, + "###-0.9937###": 32031, + "###-0.9939###": 32030, + "###-0.9941###": 32029, + "###-0.9943###": 32028, + "###-0.9945###": 32027, + "###-0.9947###": 32026, + "###-0.9949###": 32025, + "###-0.9951###": 32024, + "###-0.9953###": 32023, + "###-0.9955###": 32022, + "###-0.9957###": 32021, + "###-0.9959###": 32020, + "###-0.9961###": 32019, + "###-0.9963###": 32018, + "###-0.9965###": 32017, + "###-0.9967###": 32016, + "###-0.9969###": 32015, + "###-0.9971###": 32014, + "###-0.9973###": 32013, + "###-0.9975###": 32012, + "###-0.9977###": 32011, + "###-0.9979###": 32010, + "###-0.9981###": 32009, + "###-0.9983###": 32008, + "###-0.9985###": 32007, + "###-0.9987###": 32006, + "###-0.9989###": 32005, + "###-0.9991###": 32004, + "###-0.9993###": 32003, + "###-0.9995###": 32002, + "###-0.9997###": 32001, + "###-0.9999###": 32000, + "###0.0001###": 37000, + "###0.0003###": 37001, + "###0.0005###": 37002, + "###0.0007###": 37003, + "###0.0009###": 37004, + "###0.0011###": 37005, + "###0.0013###": 37006, + "###0.0015###": 37007, + "###0.0017###": 37008, + "###0.0019###": 37009, + "###0.0021###": 37010, + "###0.0023###": 37011, + "###0.0025###": 37012, + "###0.0027###": 37013, + "###0.0029###": 37014, + "###0.0031###": 37015, + "###0.0033###": 37016, + "###0.0035###": 37017, + "###0.0037###": 37018, + "###0.0039###": 37019, + "###0.0041###": 37020, + "###0.0043###": 37021, + "###0.0045###": 37022, + "###0.0047###": 37023, + "###0.0049###": 37024, + "###0.0051###": 37025, + "###0.0053###": 37026, + "###0.0055###": 37027, + "###0.0057###": 37028, + "###0.0059###": 37029, + "###0.0061###": 37030, + "###0.0063###": 37031, + "###0.0065###": 37032, + "###0.0067###": 37033, + "###0.0069###": 37034, + "###0.0071###": 37035, + "###0.0073###": 37036, + "###0.0075###": 37037, + "###0.0077###": 37038, + "###0.0079###": 37039, + "###0.0081###": 37040, + "###0.0083###": 37041, + "###0.0085###": 37042, + "###0.0087###": 37043, + "###0.0089###": 37044, + "###0.0091###": 37045, + "###0.0093###": 37046, + "###0.0095###": 37047, + "###0.0097###": 37048, + "###0.0099###": 37049, + "###0.0101###": 37050, + "###0.0103###": 37051, + "###0.0105###": 37052, + "###0.0107###": 37053, + "###0.0109###": 37054, + "###0.0111###": 37055, + "###0.0113###": 37056, + "###0.0115###": 37057, + "###0.0117###": 37058, + "###0.0119###": 37059, + "###0.0121###": 37060, + "###0.0123###": 37061, + "###0.0125###": 37062, + "###0.0127###": 37063, + "###0.0129###": 37064, + "###0.0131###": 37065, + "###0.0133###": 37066, + "###0.0135###": 37067, + "###0.0137###": 37068, + "###0.0139###": 37069, + "###0.0141###": 37070, + "###0.0143###": 37071, + "###0.0145###": 37072, + "###0.0147###": 37073, + "###0.0149###": 37074, + "###0.0151###": 37075, + "###0.0153###": 37076, + "###0.0155###": 37077, + "###0.0157###": 37078, + "###0.0159###": 37079, + "###0.0161###": 37080, + "###0.0163###": 37081, + "###0.0165###": 37082, + "###0.0167###": 37083, + "###0.0169###": 37084, + "###0.0171###": 37085, + "###0.0173###": 37086, + "###0.0175###": 37087, + "###0.0177###": 37088, + "###0.0179###": 37089, + "###0.0181###": 37090, + "###0.0183###": 37091, + "###0.0185###": 37092, + "###0.0187###": 37093, + "###0.0189###": 37094, + "###0.0191###": 37095, + "###0.0193###": 37096, + "###0.0195###": 37097, + "###0.0197###": 37098, + "###0.0199###": 37099, + "###0.0201###": 37100, + "###0.0203###": 37101, + "###0.0205###": 37102, + "###0.0207###": 37103, + "###0.0209###": 37104, + "###0.0211###": 37105, + "###0.0213###": 37106, + "###0.0215###": 37107, + "###0.0217###": 37108, + "###0.0219###": 37109, + "###0.0221###": 37110, + "###0.0223###": 37111, + "###0.0225###": 37112, + "###0.0227###": 37113, + "###0.0229###": 37114, + "###0.0231###": 37115, + "###0.0233###": 37116, + "###0.0235###": 37117, + "###0.0237###": 37118, + "###0.0239###": 37119, + "###0.0241###": 37120, + "###0.0243###": 37121, + "###0.0245###": 37122, + "###0.0247###": 37123, + "###0.0249###": 37124, + "###0.0251###": 37125, + "###0.0253###": 37126, + "###0.0255###": 37127, + "###0.0257###": 37128, + "###0.0259###": 37129, + "###0.0261###": 37130, + "###0.0263###": 37131, + "###0.0265###": 37132, + "###0.0267###": 37133, + "###0.0269###": 37134, + "###0.0271###": 37135, + "###0.0273###": 37136, + "###0.0275###": 37137, + "###0.0277###": 37138, + "###0.0279###": 37139, + "###0.0281###": 37140, + "###0.0283###": 37141, + "###0.0285###": 37142, + "###0.0287###": 37143, + "###0.0289###": 37144, + "###0.0291###": 37145, + "###0.0293###": 37146, + "###0.0295###": 37147, + "###0.0297###": 37148, + "###0.0299###": 37149, + "###0.0301###": 37150, + "###0.0303###": 37151, + "###0.0305###": 37152, + "###0.0307###": 37153, + "###0.0309###": 37154, + "###0.0311###": 37155, + "###0.0313###": 37156, + "###0.0315###": 37157, + "###0.0317###": 37158, + "###0.0319###": 37159, + "###0.0321###": 37160, + "###0.0323###": 37161, + "###0.0325###": 37162, + "###0.0327###": 37163, + "###0.0329###": 37164, + "###0.0331###": 37165, + "###0.0333###": 37166, + "###0.0335###": 37167, + "###0.0337###": 37168, + "###0.0339###": 37169, + "###0.0341###": 37170, + "###0.0343###": 37171, + "###0.0345###": 37172, + "###0.0347###": 37173, + "###0.0349###": 37174, + "###0.0351###": 37175, + "###0.0353###": 37176, + "###0.0355###": 37177, + "###0.0357###": 37178, + "###0.0359###": 37179, + "###0.0361###": 37180, + "###0.0363###": 37181, + "###0.0365###": 37182, + "###0.0367###": 37183, + "###0.0369###": 37184, + "###0.0371###": 37185, + "###0.0373###": 37186, + "###0.0375###": 37187, + "###0.0377###": 37188, + "###0.0379###": 37189, + "###0.0381###": 37190, + "###0.0383###": 37191, + "###0.0385###": 37192, + "###0.0387###": 37193, + "###0.0389###": 37194, + "###0.0391###": 37195, + "###0.0393###": 37196, + "###0.0395###": 37197, + "###0.0397###": 37198, + "###0.0399###": 37199, + "###0.0401###": 37200, + "###0.0403###": 37201, + "###0.0405###": 37202, + "###0.0407###": 37203, + "###0.0409###": 37204, + "###0.0411###": 37205, + "###0.0413###": 37206, + "###0.0415###": 37207, + "###0.0417###": 37208, + "###0.0419###": 37209, + "###0.0421###": 37210, + "###0.0423###": 37211, + "###0.0425###": 37212, + "###0.0427###": 37213, + "###0.0429###": 37214, + "###0.0431###": 37215, + "###0.0433###": 37216, + "###0.0435###": 37217, + "###0.0437###": 37218, + "###0.0439###": 37219, + "###0.0441###": 37220, + "###0.0443###": 37221, + "###0.0445###": 37222, + "###0.0447###": 37223, + "###0.0449###": 37224, + "###0.0451###": 37225, + "###0.0453###": 37226, + "###0.0455###": 37227, + "###0.0457###": 37228, + "###0.0459###": 37229, + "###0.0461###": 37230, + "###0.0463###": 37231, + "###0.0465###": 37232, + "###0.0467###": 37233, + "###0.0469###": 37234, + "###0.0471###": 37235, + "###0.0473###": 37236, + "###0.0475###": 37237, + "###0.0477###": 37238, + "###0.0479###": 37239, + "###0.0481###": 37240, + "###0.0483###": 37241, + "###0.0485###": 37242, + "###0.0487###": 37243, + "###0.0489###": 37244, + "###0.0491###": 37245, + "###0.0493###": 37246, + "###0.0495###": 37247, + "###0.0497###": 37248, + "###0.0499###": 37249, + "###0.0501###": 37250, + "###0.0503###": 37251, + "###0.0505###": 37252, + "###0.0507###": 37253, + "###0.0509###": 37254, + "###0.0511###": 37255, + "###0.0513###": 37256, + "###0.0515###": 37257, + "###0.0517###": 37258, + "###0.0519###": 37259, + "###0.0521###": 37260, + "###0.0523###": 37261, + "###0.0525###": 37262, + "###0.0527###": 37263, + "###0.0529###": 37264, + "###0.0531###": 37265, + "###0.0533###": 37266, + "###0.0535###": 37267, + "###0.0537###": 37268, + "###0.0539###": 37269, + "###0.0541###": 37270, + "###0.0543###": 37271, + "###0.0545###": 37272, + "###0.0547###": 37273, + "###0.0549###": 37274, + "###0.0551###": 37275, + "###0.0553###": 37276, + "###0.0555###": 37277, + "###0.0557###": 37278, + "###0.0559###": 37279, + "###0.0561###": 37280, + "###0.0563###": 37281, + "###0.0565###": 37282, + "###0.0567###": 37283, + "###0.0569###": 37284, + "###0.0571###": 37285, + "###0.0573###": 37286, + "###0.0575###": 37287, + "###0.0577###": 37288, + "###0.0579###": 37289, + "###0.0581###": 37290, + "###0.0583###": 37291, + "###0.0585###": 37292, + "###0.0587###": 37293, + "###0.0589###": 37294, + "###0.0591###": 37295, + "###0.0593###": 37296, + "###0.0595###": 37297, + "###0.0597###": 37298, + "###0.0599###": 37299, + "###0.0601###": 37300, + "###0.0603###": 37301, + "###0.0605###": 37302, + "###0.0607###": 37303, + "###0.0609###": 37304, + "###0.0611###": 37305, + "###0.0613###": 37306, + "###0.0615###": 37307, + "###0.0617###": 37308, + "###0.0619###": 37309, + "###0.0621###": 37310, + "###0.0623###": 37311, + "###0.0625###": 37312, + "###0.0627###": 37313, + "###0.0629###": 37314, + "###0.0631###": 37315, + "###0.0633###": 37316, + "###0.0635###": 37317, + "###0.0637###": 37318, + "###0.0639###": 37319, + "###0.0641###": 37320, + "###0.0643###": 37321, + "###0.0645###": 37322, + "###0.0647###": 37323, + "###0.0649###": 37324, + "###0.0651###": 37325, + "###0.0653###": 37326, + "###0.0655###": 37327, + "###0.0657###": 37328, + "###0.0659###": 37329, + "###0.0661###": 37330, + "###0.0663###": 37331, + "###0.0665###": 37332, + "###0.0667###": 37333, + "###0.0669###": 37334, + "###0.0671###": 37335, + "###0.0673###": 37336, + "###0.0675###": 37337, + "###0.0677###": 37338, + "###0.0679###": 37339, + "###0.0681###": 37340, + "###0.0683###": 37341, + "###0.0685###": 37342, + "###0.0687###": 37343, + "###0.0689###": 37344, + "###0.0691###": 37345, + "###0.0693###": 37346, + "###0.0695###": 37347, + "###0.0697###": 37348, + "###0.0699###": 37349, + "###0.0701###": 37350, + "###0.0703###": 37351, + "###0.0705###": 37352, + "###0.0707###": 37353, + "###0.0709###": 37354, + "###0.0711###": 37355, + "###0.0713###": 37356, + "###0.0715###": 37357, + "###0.0717###": 37358, + "###0.0719###": 37359, + "###0.0721###": 37360, + "###0.0723###": 37361, + "###0.0725###": 37362, + "###0.0727###": 37363, + "###0.0729###": 37364, + "###0.0731###": 37365, + "###0.0733###": 37366, + "###0.0735###": 37367, + "###0.0737###": 37368, + "###0.0739###": 37369, + "###0.0741###": 37370, + "###0.0743###": 37371, + "###0.0745###": 37372, + "###0.0747###": 37373, + "###0.0749###": 37374, + "###0.0751###": 37375, + "###0.0753###": 37376, + "###0.0755###": 37377, + "###0.0757###": 37378, + "###0.0759###": 37379, + "###0.0761###": 37380, + "###0.0763###": 37381, + "###0.0765###": 37382, + "###0.0767###": 37383, + "###0.0769###": 37384, + "###0.0771###": 37385, + "###0.0773###": 37386, + "###0.0775###": 37387, + "###0.0777###": 37388, + "###0.0779###": 37389, + "###0.0781###": 37390, + "###0.0783###": 37391, + "###0.0785###": 37392, + "###0.0787###": 37393, + "###0.0789###": 37394, + "###0.0791###": 37395, + "###0.0793###": 37396, + "###0.0795###": 37397, + "###0.0797###": 37398, + "###0.0799###": 37399, + "###0.0801###": 37400, + "###0.0803###": 37401, + "###0.0805###": 37402, + "###0.0807###": 37403, + "###0.0809###": 37404, + "###0.0811###": 37405, + "###0.0813###": 37406, + "###0.0815###": 37407, + "###0.0817###": 37408, + "###0.0819###": 37409, + "###0.0821###": 37410, + "###0.0823###": 37411, + "###0.0825###": 37412, + "###0.0827###": 37413, + "###0.0829###": 37414, + "###0.0831###": 37415, + "###0.0833###": 37416, + "###0.0835###": 37417, + "###0.0837###": 37418, + "###0.0839###": 37419, + "###0.0841###": 37420, + "###0.0843###": 37421, + "###0.0845###": 37422, + "###0.0847###": 37423, + "###0.0849###": 37424, + "###0.0851###": 37425, + "###0.0853###": 37426, + "###0.0855###": 37427, + "###0.0857###": 37428, + "###0.0859###": 37429, + "###0.0861###": 37430, + "###0.0863###": 37431, + "###0.0865###": 37432, + "###0.0867###": 37433, + "###0.0869###": 37434, + "###0.0871###": 37435, + "###0.0873###": 37436, + "###0.0875###": 37437, + "###0.0877###": 37438, + "###0.0879###": 37439, + "###0.0881###": 37440, + "###0.0883###": 37441, + "###0.0885###": 37442, + "###0.0887###": 37443, + "###0.0889###": 37444, + "###0.0891###": 37445, + "###0.0893###": 37446, + "###0.0895###": 37447, + "###0.0897###": 37448, + "###0.0899###": 37449, + "###0.0901###": 37450, + "###0.0903###": 37451, + "###0.0905###": 37452, + "###0.0907###": 37453, + "###0.0909###": 37454, + "###0.0911###": 37455, + "###0.0913###": 37456, + "###0.0915###": 37457, + "###0.0917###": 37458, + "###0.0919###": 37459, + "###0.0921###": 37460, + "###0.0923###": 37461, + "###0.0925###": 37462, + "###0.0927###": 37463, + "###0.0929###": 37464, + "###0.0931###": 37465, + "###0.0933###": 37466, + "###0.0935###": 37467, + "###0.0937###": 37468, + "###0.0939###": 37469, + "###0.0941###": 37470, + "###0.0943###": 37471, + "###0.0945###": 37472, + "###0.0947###": 37473, + "###0.0949###": 37474, + "###0.0951###": 37475, + "###0.0953###": 37476, + "###0.0955###": 37477, + "###0.0957###": 37478, + "###0.0959###": 37479, + "###0.0961###": 37480, + "###0.0963###": 37481, + "###0.0965###": 37482, + "###0.0967###": 37483, + "###0.0969###": 37484, + "###0.0971###": 37485, + "###0.0973###": 37486, + "###0.0975###": 37487, + "###0.0977###": 37488, + "###0.0979###": 37489, + "###0.0981###": 37490, + "###0.0983###": 37491, + "###0.0985###": 37492, + "###0.0987###": 37493, + "###0.0989###": 37494, + "###0.0991###": 37495, + "###0.0993###": 37496, + "###0.0995###": 37497, + "###0.0997###": 37498, + "###0.0999###": 37499, + "###0.1001###": 37500, + "###0.1003###": 37501, + "###0.1005###": 37502, + "###0.1007###": 37503, + "###0.1009###": 37504, + "###0.1011###": 37505, + "###0.1013###": 37506, + "###0.1015###": 37507, + "###0.1017###": 37508, + "###0.1019###": 37509, + "###0.1021###": 37510, + "###0.1023###": 37511, + "###0.1025###": 37512, + "###0.1027###": 37513, + "###0.1029###": 37514, + "###0.1031###": 37515, + "###0.1033###": 37516, + "###0.1035###": 37517, + "###0.1037###": 37518, + "###0.1039###": 37519, + "###0.1041###": 37520, + "###0.1043###": 37521, + "###0.1045###": 37522, + "###0.1047###": 37523, + "###0.1049###": 37524, + "###0.1051###": 37525, + "###0.1053###": 37526, + "###0.1055###": 37527, + "###0.1057###": 37528, + "###0.1059###": 37529, + "###0.1061###": 37530, + "###0.1063###": 37531, + "###0.1065###": 37532, + "###0.1067###": 37533, + "###0.1069###": 37534, + "###0.1071###": 37535, + "###0.1073###": 37536, + "###0.1075###": 37537, + "###0.1077###": 37538, + "###0.1079###": 37539, + "###0.1081###": 37540, + "###0.1083###": 37541, + "###0.1085###": 37542, + "###0.1087###": 37543, + "###0.1089###": 37544, + "###0.1091###": 37545, + "###0.1093###": 37546, + "###0.1095###": 37547, + "###0.1097###": 37548, + "###0.1099###": 37549, + "###0.1101###": 37550, + "###0.1103###": 37551, + "###0.1105###": 37552, + "###0.1107###": 37553, + "###0.1109###": 37554, + "###0.1111###": 37555, + "###0.1113###": 37556, + "###0.1115###": 37557, + "###0.1117###": 37558, + "###0.1119###": 37559, + "###0.1121###": 37560, + "###0.1123###": 37561, + "###0.1125###": 37562, + "###0.1127###": 37563, + "###0.1129###": 37564, + "###0.1131###": 37565, + "###0.1133###": 37566, + "###0.1135###": 37567, + "###0.1137###": 37568, + "###0.1139###": 37569, + "###0.1141###": 37570, + "###0.1143###": 37571, + "###0.1145###": 37572, + "###0.1147###": 37573, + "###0.1149###": 37574, + "###0.1151###": 37575, + "###0.1153###": 37576, + "###0.1155###": 37577, + "###0.1157###": 37578, + "###0.1159###": 37579, + "###0.1161###": 37580, + "###0.1163###": 37581, + "###0.1165###": 37582, + "###0.1167###": 37583, + "###0.1169###": 37584, + "###0.1171###": 37585, + "###0.1173###": 37586, + "###0.1175###": 37587, + "###0.1177###": 37588, + "###0.1179###": 37589, + "###0.1181###": 37590, + "###0.1183###": 37591, + "###0.1185###": 37592, + "###0.1187###": 37593, + "###0.1189###": 37594, + "###0.1191###": 37595, + "###0.1193###": 37596, + "###0.1195###": 37597, + "###0.1197###": 37598, + "###0.1199###": 37599, + "###0.1201###": 37600, + "###0.1203###": 37601, + "###0.1205###": 37602, + "###0.1207###": 37603, + "###0.1209###": 37604, + "###0.1211###": 37605, + "###0.1213###": 37606, + "###0.1215###": 37607, + "###0.1217###": 37608, + "###0.1219###": 37609, + "###0.1221###": 37610, + "###0.1223###": 37611, + "###0.1225###": 37612, + "###0.1227###": 37613, + "###0.1229###": 37614, + "###0.1231###": 37615, + "###0.1233###": 37616, + "###0.1235###": 37617, + "###0.1237###": 37618, + "###0.1239###": 37619, + "###0.1241###": 37620, + "###0.1243###": 37621, + "###0.1245###": 37622, + "###0.1247###": 37623, + "###0.1249###": 37624, + "###0.1251###": 37625, + "###0.1253###": 37626, + "###0.1255###": 37627, + "###0.1257###": 37628, + "###0.1259###": 37629, + "###0.1261###": 37630, + "###0.1263###": 37631, + "###0.1265###": 37632, + "###0.1267###": 37633, + "###0.1269###": 37634, + "###0.1271###": 37635, + "###0.1273###": 37636, + "###0.1275###": 37637, + "###0.1277###": 37638, + "###0.1279###": 37639, + "###0.1281###": 37640, + "###0.1283###": 37641, + "###0.1285###": 37642, + "###0.1287###": 37643, + "###0.1289###": 37644, + "###0.1291###": 37645, + "###0.1293###": 37646, + "###0.1295###": 37647, + "###0.1297###": 37648, + "###0.1299###": 37649, + "###0.1301###": 37650, + "###0.1303###": 37651, + "###0.1305###": 37652, + "###0.1307###": 37653, + "###0.1309###": 37654, + "###0.1311###": 37655, + "###0.1313###": 37656, + "###0.1315###": 37657, + "###0.1317###": 37658, + "###0.1319###": 37659, + "###0.1321###": 37660, + "###0.1323###": 37661, + "###0.1325###": 37662, + "###0.1327###": 37663, + "###0.1329###": 37664, + "###0.1331###": 37665, + "###0.1333###": 37666, + "###0.1335###": 37667, + "###0.1337###": 37668, + "###0.1339###": 37669, + "###0.1341###": 37670, + "###0.1343###": 37671, + "###0.1345###": 37672, + "###0.1347###": 37673, + "###0.1349###": 37674, + "###0.1351###": 37675, + "###0.1353###": 37676, + "###0.1355###": 37677, + "###0.1357###": 37678, + "###0.1359###": 37679, + "###0.1361###": 37680, + "###0.1363###": 37681, + "###0.1365###": 37682, + "###0.1367###": 37683, + "###0.1369###": 37684, + "###0.1371###": 37685, + "###0.1373###": 37686, + "###0.1375###": 37687, + "###0.1377###": 37688, + "###0.1379###": 37689, + "###0.1381###": 37690, + "###0.1383###": 37691, + "###0.1385###": 37692, + "###0.1387###": 37693, + "###0.1389###": 37694, + "###0.1391###": 37695, + "###0.1393###": 37696, + "###0.1395###": 37697, + "###0.1397###": 37698, + "###0.1399###": 37699, + "###0.1401###": 37700, + "###0.1403###": 37701, + "###0.1405###": 37702, + "###0.1407###": 37703, + "###0.1409###": 37704, + "###0.1411###": 37705, + "###0.1413###": 37706, + "###0.1415###": 37707, + "###0.1417###": 37708, + "###0.1419###": 37709, + "###0.1421###": 37710, + "###0.1423###": 37711, + "###0.1425###": 37712, + "###0.1427###": 37713, + "###0.1429###": 37714, + "###0.1431###": 37715, + "###0.1433###": 37716, + "###0.1435###": 37717, + "###0.1437###": 37718, + "###0.1439###": 37719, + "###0.1441###": 37720, + "###0.1443###": 37721, + "###0.1445###": 37722, + "###0.1447###": 37723, + "###0.1449###": 37724, + "###0.1451###": 37725, + "###0.1453###": 37726, + "###0.1455###": 37727, + "###0.1457###": 37728, + "###0.1459###": 37729, + "###0.1461###": 37730, + "###0.1463###": 37731, + "###0.1465###": 37732, + "###0.1467###": 37733, + "###0.1469###": 37734, + "###0.1471###": 37735, + "###0.1473###": 37736, + "###0.1475###": 37737, + "###0.1477###": 37738, + "###0.1479###": 37739, + "###0.1481###": 37740, + "###0.1483###": 37741, + "###0.1485###": 37742, + "###0.1487###": 37743, + "###0.1489###": 37744, + "###0.1491###": 37745, + "###0.1493###": 37746, + "###0.1495###": 37747, + "###0.1497###": 37748, + "###0.1499###": 37749, + "###0.1501###": 37750, + "###0.1503###": 37751, + "###0.1505###": 37752, + "###0.1507###": 37753, + "###0.1509###": 37754, + "###0.1511###": 37755, + "###0.1513###": 37756, + "###0.1515###": 37757, + "###0.1517###": 37758, + "###0.1519###": 37759, + "###0.1521###": 37760, + "###0.1523###": 37761, + "###0.1525###": 37762, + "###0.1527###": 37763, + "###0.1529###": 37764, + "###0.1531###": 37765, + "###0.1533###": 37766, + "###0.1535###": 37767, + "###0.1537###": 37768, + "###0.1539###": 37769, + "###0.1541###": 37770, + "###0.1543###": 37771, + "###0.1545###": 37772, + "###0.1547###": 37773, + "###0.1549###": 37774, + "###0.1551###": 37775, + "###0.1553###": 37776, + "###0.1555###": 37777, + "###0.1557###": 37778, + "###0.1559###": 37779, + "###0.1561###": 37780, + "###0.1563###": 37781, + "###0.1565###": 37782, + "###0.1567###": 37783, + "###0.1569###": 37784, + "###0.1571###": 37785, + "###0.1573###": 37786, + "###0.1575###": 37787, + "###0.1577###": 37788, + "###0.1579###": 37789, + "###0.1581###": 37790, + "###0.1583###": 37791, + "###0.1585###": 37792, + "###0.1587###": 37793, + "###0.1589###": 37794, + "###0.1591###": 37795, + "###0.1593###": 37796, + "###0.1595###": 37797, + "###0.1597###": 37798, + "###0.1599###": 37799, + "###0.1601###": 37800, + "###0.1603###": 37801, + "###0.1605###": 37802, + "###0.1607###": 37803, + "###0.1609###": 37804, + "###0.1611###": 37805, + "###0.1613###": 37806, + "###0.1615###": 37807, + "###0.1617###": 37808, + "###0.1619###": 37809, + "###0.1621###": 37810, + "###0.1623###": 37811, + "###0.1625###": 37812, + "###0.1627###": 37813, + "###0.1629###": 37814, + "###0.1631###": 37815, + "###0.1633###": 37816, + "###0.1635###": 37817, + "###0.1637###": 37818, + "###0.1639###": 37819, + "###0.1641###": 37820, + "###0.1643###": 37821, + "###0.1645###": 37822, + "###0.1647###": 37823, + "###0.1649###": 37824, + "###0.1651###": 37825, + "###0.1653###": 37826, + "###0.1655###": 37827, + "###0.1657###": 37828, + "###0.1659###": 37829, + "###0.1661###": 37830, + "###0.1663###": 37831, + "###0.1665###": 37832, + "###0.1667###": 37833, + "###0.1669###": 37834, + "###0.1671###": 37835, + "###0.1673###": 37836, + "###0.1675###": 37837, + "###0.1677###": 37838, + "###0.1679###": 37839, + "###0.1681###": 37840, + "###0.1683###": 37841, + "###0.1685###": 37842, + "###0.1687###": 37843, + "###0.1689###": 37844, + "###0.1691###": 37845, + "###0.1693###": 37846, + "###0.1695###": 37847, + "###0.1697###": 37848, + "###0.1699###": 37849, + "###0.1701###": 37850, + "###0.1703###": 37851, + "###0.1705###": 37852, + "###0.1707###": 37853, + "###0.1709###": 37854, + "###0.1711###": 37855, + "###0.1713###": 37856, + "###0.1715###": 37857, + "###0.1717###": 37858, + "###0.1719###": 37859, + "###0.1721###": 37860, + "###0.1723###": 37861, + "###0.1725###": 37862, + "###0.1727###": 37863, + "###0.1729###": 37864, + "###0.1731###": 37865, + "###0.1733###": 37866, + "###0.1735###": 37867, + "###0.1737###": 37868, + "###0.1739###": 37869, + "###0.1741###": 37870, + "###0.1743###": 37871, + "###0.1745###": 37872, + "###0.1747###": 37873, + "###0.1749###": 37874, + "###0.1751###": 37875, + "###0.1753###": 37876, + "###0.1755###": 37877, + "###0.1757###": 37878, + "###0.1759###": 37879, + "###0.1761###": 37880, + "###0.1763###": 37881, + "###0.1765###": 37882, + "###0.1767###": 37883, + "###0.1769###": 37884, + "###0.1771###": 37885, + "###0.1773###": 37886, + "###0.1775###": 37887, + "###0.1777###": 37888, + "###0.1779###": 37889, + "###0.1781###": 37890, + "###0.1783###": 37891, + "###0.1785###": 37892, + "###0.1787###": 37893, + "###0.1789###": 37894, + "###0.1791###": 37895, + "###0.1793###": 37896, + "###0.1795###": 37897, + "###0.1797###": 37898, + "###0.1799###": 37899, + "###0.1801###": 37900, + "###0.1803###": 37901, + "###0.1805###": 37902, + "###0.1807###": 37903, + "###0.1809###": 37904, + "###0.1811###": 37905, + "###0.1813###": 37906, + "###0.1815###": 37907, + "###0.1817###": 37908, + "###0.1819###": 37909, + "###0.1821###": 37910, + "###0.1823###": 37911, + "###0.1825###": 37912, + "###0.1827###": 37913, + "###0.1829###": 37914, + "###0.1831###": 37915, + "###0.1833###": 37916, + "###0.1835###": 37917, + "###0.1837###": 37918, + "###0.1839###": 37919, + "###0.1841###": 37920, + "###0.1843###": 37921, + "###0.1845###": 37922, + "###0.1847###": 37923, + "###0.1849###": 37924, + "###0.1851###": 37925, + "###0.1853###": 37926, + "###0.1855###": 37927, + "###0.1857###": 37928, + "###0.1859###": 37929, + "###0.1861###": 37930, + "###0.1863###": 37931, + "###0.1865###": 37932, + "###0.1867###": 37933, + "###0.1869###": 37934, + "###0.1871###": 37935, + "###0.1873###": 37936, + "###0.1875###": 37937, + "###0.1877###": 37938, + "###0.1879###": 37939, + "###0.1881###": 37940, + "###0.1883###": 37941, + "###0.1885###": 37942, + "###0.1887###": 37943, + "###0.1889###": 37944, + "###0.1891###": 37945, + "###0.1893###": 37946, + "###0.1895###": 37947, + "###0.1897###": 37948, + "###0.1899###": 37949, + "###0.1901###": 37950, + "###0.1903###": 37951, + "###0.1905###": 37952, + "###0.1907###": 37953, + "###0.1909###": 37954, + "###0.1911###": 37955, + "###0.1913###": 37956, + "###0.1915###": 37957, + "###0.1917###": 37958, + "###0.1919###": 37959, + "###0.1921###": 37960, + "###0.1923###": 37961, + "###0.1925###": 37962, + "###0.1927###": 37963, + "###0.1929###": 37964, + "###0.1931###": 37965, + "###0.1933###": 37966, + "###0.1935###": 37967, + "###0.1937###": 37968, + "###0.1939###": 37969, + "###0.1941###": 37970, + "###0.1943###": 37971, + "###0.1945###": 37972, + "###0.1947###": 37973, + "###0.1949###": 37974, + "###0.1951###": 37975, + "###0.1953###": 37976, + "###0.1955###": 37977, + "###0.1957###": 37978, + "###0.1959###": 37979, + "###0.1961###": 37980, + "###0.1963###": 37981, + "###0.1965###": 37982, + "###0.1967###": 37983, + "###0.1969###": 37984, + "###0.1971###": 37985, + "###0.1973###": 37986, + "###0.1975###": 37987, + "###0.1977###": 37988, + "###0.1979###": 37989, + "###0.1981###": 37990, + "###0.1983###": 37991, + "###0.1985###": 37992, + "###0.1987###": 37993, + "###0.1989###": 37994, + "###0.1991###": 37995, + "###0.1993###": 37996, + "###0.1995###": 37997, + "###0.1997###": 37998, + "###0.1999###": 37999, + "###0.2001###": 38000, + "###0.2003###": 38001, + "###0.2005###": 38002, + "###0.2007###": 38003, + "###0.2009###": 38004, + "###0.2011###": 38005, + "###0.2013###": 38006, + "###0.2015###": 38007, + "###0.2017###": 38008, + "###0.2019###": 38009, + "###0.2021###": 38010, + "###0.2023###": 38011, + "###0.2025###": 38012, + "###0.2027###": 38013, + "###0.2029###": 38014, + "###0.2031###": 38015, + "###0.2033###": 38016, + "###0.2035###": 38017, + "###0.2037###": 38018, + "###0.2039###": 38019, + "###0.2041###": 38020, + "###0.2043###": 38021, + "###0.2045###": 38022, + "###0.2047###": 38023, + "###0.2049###": 38024, + "###0.2051###": 38025, + "###0.2053###": 38026, + "###0.2055###": 38027, + "###0.2057###": 38028, + "###0.2059###": 38029, + "###0.2061###": 38030, + "###0.2063###": 38031, + "###0.2065###": 38032, + "###0.2067###": 38033, + "###0.2069###": 38034, + "###0.2071###": 38035, + "###0.2073###": 38036, + "###0.2075###": 38037, + "###0.2077###": 38038, + "###0.2079###": 38039, + "###0.2081###": 38040, + "###0.2083###": 38041, + "###0.2085###": 38042, + "###0.2087###": 38043, + "###0.2089###": 38044, + "###0.2091###": 38045, + "###0.2093###": 38046, + "###0.2095###": 38047, + "###0.2097###": 38048, + "###0.2099###": 38049, + "###0.2101###": 38050, + "###0.2103###": 38051, + "###0.2105###": 38052, + "###0.2107###": 38053, + "###0.2109###": 38054, + "###0.2111###": 38055, + "###0.2113###": 38056, + "###0.2115###": 38057, + "###0.2117###": 38058, + "###0.2119###": 38059, + "###0.2121###": 38060, + "###0.2123###": 38061, + "###0.2125###": 38062, + "###0.2127###": 38063, + "###0.2129###": 38064, + "###0.2131###": 38065, + "###0.2133###": 38066, + "###0.2135###": 38067, + "###0.2137###": 38068, + "###0.2139###": 38069, + "###0.2141###": 38070, + "###0.2143###": 38071, + "###0.2145###": 38072, + "###0.2147###": 38073, + "###0.2149###": 38074, + "###0.2151###": 38075, + "###0.2153###": 38076, + "###0.2155###": 38077, + "###0.2157###": 38078, + "###0.2159###": 38079, + "###0.2161###": 38080, + "###0.2163###": 38081, + "###0.2165###": 38082, + "###0.2167###": 38083, + "###0.2169###": 38084, + "###0.2171###": 38085, + "###0.2173###": 38086, + "###0.2175###": 38087, + "###0.2177###": 38088, + "###0.2179###": 38089, + "###0.2181###": 38090, + "###0.2183###": 38091, + "###0.2185###": 38092, + "###0.2187###": 38093, + "###0.2189###": 38094, + "###0.2191###": 38095, + "###0.2193###": 38096, + "###0.2195###": 38097, + "###0.2197###": 38098, + "###0.2199###": 38099, + "###0.2201###": 38100, + "###0.2203###": 38101, + "###0.2205###": 38102, + "###0.2207###": 38103, + "###0.2209###": 38104, + "###0.2211###": 38105, + "###0.2213###": 38106, + "###0.2215###": 38107, + "###0.2217###": 38108, + "###0.2219###": 38109, + "###0.2221###": 38110, + "###0.2223###": 38111, + "###0.2225###": 38112, + "###0.2227###": 38113, + "###0.2229###": 38114, + "###0.2231###": 38115, + "###0.2233###": 38116, + "###0.2235###": 38117, + "###0.2237###": 38118, + "###0.2239###": 38119, + "###0.2241###": 38120, + "###0.2243###": 38121, + "###0.2245###": 38122, + "###0.2247###": 38123, + "###0.2249###": 38124, + "###0.2251###": 38125, + "###0.2253###": 38126, + "###0.2255###": 38127, + "###0.2257###": 38128, + "###0.2259###": 38129, + "###0.2261###": 38130, + "###0.2263###": 38131, + "###0.2265###": 38132, + "###0.2267###": 38133, + "###0.2269###": 38134, + "###0.2271###": 38135, + "###0.2273###": 38136, + "###0.2275###": 38137, + "###0.2277###": 38138, + "###0.2279###": 38139, + "###0.2281###": 38140, + "###0.2283###": 38141, + "###0.2285###": 38142, + "###0.2287###": 38143, + "###0.2289###": 38144, + "###0.2291###": 38145, + "###0.2293###": 38146, + "###0.2295###": 38147, + "###0.2297###": 38148, + "###0.2299###": 38149, + "###0.2301###": 38150, + "###0.2303###": 38151, + "###0.2305###": 38152, + "###0.2307###": 38153, + "###0.2309###": 38154, + "###0.2311###": 38155, + "###0.2313###": 38156, + "###0.2315###": 38157, + "###0.2317###": 38158, + "###0.2319###": 38159, + "###0.2321###": 38160, + "###0.2323###": 38161, + "###0.2325###": 38162, + "###0.2327###": 38163, + "###0.2329###": 38164, + "###0.2331###": 38165, + "###0.2333###": 38166, + "###0.2335###": 38167, + "###0.2337###": 38168, + "###0.2339###": 38169, + "###0.2341###": 38170, + "###0.2343###": 38171, + "###0.2345###": 38172, + "###0.2347###": 38173, + "###0.2349###": 38174, + "###0.2351###": 38175, + "###0.2353###": 38176, + "###0.2355###": 38177, + "###0.2357###": 38178, + "###0.2359###": 38179, + "###0.2361###": 38180, + "###0.2363###": 38181, + "###0.2365###": 38182, + "###0.2367###": 38183, + "###0.2369###": 38184, + "###0.2371###": 38185, + "###0.2373###": 38186, + "###0.2375###": 38187, + "###0.2377###": 38188, + "###0.2379###": 38189, + "###0.2381###": 38190, + "###0.2383###": 38191, + "###0.2385###": 38192, + "###0.2387###": 38193, + "###0.2389###": 38194, + "###0.2391###": 38195, + "###0.2393###": 38196, + "###0.2395###": 38197, + "###0.2397###": 38198, + "###0.2399###": 38199, + "###0.2401###": 38200, + "###0.2403###": 38201, + "###0.2405###": 38202, + "###0.2407###": 38203, + "###0.2409###": 38204, + "###0.2411###": 38205, + "###0.2413###": 38206, + "###0.2415###": 38207, + "###0.2417###": 38208, + "###0.2419###": 38209, + "###0.2421###": 38210, + "###0.2423###": 38211, + "###0.2425###": 38212, + "###0.2427###": 38213, + "###0.2429###": 38214, + "###0.2431###": 38215, + "###0.2433###": 38216, + "###0.2435###": 38217, + "###0.2437###": 38218, + "###0.2439###": 38219, + "###0.2441###": 38220, + "###0.2443###": 38221, + "###0.2445###": 38222, + "###0.2447###": 38223, + "###0.2449###": 38224, + "###0.2451###": 38225, + "###0.2453###": 38226, + "###0.2455###": 38227, + "###0.2457###": 38228, + "###0.2459###": 38229, + "###0.2461###": 38230, + "###0.2463###": 38231, + "###0.2465###": 38232, + "###0.2467###": 38233, + "###0.2469###": 38234, + "###0.2471###": 38235, + "###0.2473###": 38236, + "###0.2475###": 38237, + "###0.2477###": 38238, + "###0.2479###": 38239, + "###0.2481###": 38240, + "###0.2483###": 38241, + "###0.2485###": 38242, + "###0.2487###": 38243, + "###0.2489###": 38244, + "###0.2491###": 38245, + "###0.2493###": 38246, + "###0.2495###": 38247, + "###0.2497###": 38248, + "###0.2499###": 38249, + "###0.2501###": 38250, + "###0.2503###": 38251, + "###0.2505###": 38252, + "###0.2507###": 38253, + "###0.2509###": 38254, + "###0.2511###": 38255, + "###0.2513###": 38256, + "###0.2515###": 38257, + "###0.2517###": 38258, + "###0.2519###": 38259, + "###0.2521###": 38260, + "###0.2523###": 38261, + "###0.2525###": 38262, + "###0.2527###": 38263, + "###0.2529###": 38264, + "###0.2531###": 38265, + "###0.2533###": 38266, + "###0.2535###": 38267, + "###0.2537###": 38268, + "###0.2539###": 38269, + "###0.2541###": 38270, + "###0.2543###": 38271, + "###0.2545###": 38272, + "###0.2547###": 38273, + "###0.2549###": 38274, + "###0.2551###": 38275, + "###0.2553###": 38276, + "###0.2555###": 38277, + "###0.2557###": 38278, + "###0.2559###": 38279, + "###0.2561###": 38280, + "###0.2563###": 38281, + "###0.2565###": 38282, + "###0.2567###": 38283, + "###0.2569###": 38284, + "###0.2571###": 38285, + "###0.2573###": 38286, + "###0.2575###": 38287, + "###0.2577###": 38288, + "###0.2579###": 38289, + "###0.2581###": 38290, + "###0.2583###": 38291, + "###0.2585###": 38292, + "###0.2587###": 38293, + "###0.2589###": 38294, + "###0.2591###": 38295, + "###0.2593###": 38296, + "###0.2595###": 38297, + "###0.2597###": 38298, + "###0.2599###": 38299, + "###0.2601###": 38300, + "###0.2603###": 38301, + "###0.2605###": 38302, + "###0.2607###": 38303, + "###0.2609###": 38304, + "###0.2611###": 38305, + "###0.2613###": 38306, + "###0.2615###": 38307, + "###0.2617###": 38308, + "###0.2619###": 38309, + "###0.2621###": 38310, + "###0.2623###": 38311, + "###0.2625###": 38312, + "###0.2627###": 38313, + "###0.2629###": 38314, + "###0.2631###": 38315, + "###0.2633###": 38316, + "###0.2635###": 38317, + "###0.2637###": 38318, + "###0.2639###": 38319, + "###0.2641###": 38320, + "###0.2643###": 38321, + "###0.2645###": 38322, + "###0.2647###": 38323, + "###0.2649###": 38324, + "###0.2651###": 38325, + "###0.2653###": 38326, + "###0.2655###": 38327, + "###0.2657###": 38328, + "###0.2659###": 38329, + "###0.2661###": 38330, + "###0.2663###": 38331, + "###0.2665###": 38332, + "###0.2667###": 38333, + "###0.2669###": 38334, + "###0.2671###": 38335, + "###0.2673###": 38336, + "###0.2675###": 38337, + "###0.2677###": 38338, + "###0.2679###": 38339, + "###0.2681###": 38340, + "###0.2683###": 38341, + "###0.2685###": 38342, + "###0.2687###": 38343, + "###0.2689###": 38344, + "###0.2691###": 38345, + "###0.2693###": 38346, + "###0.2695###": 38347, + "###0.2697###": 38348, + "###0.2699###": 38349, + "###0.2701###": 38350, + "###0.2703###": 38351, + "###0.2705###": 38352, + "###0.2707###": 38353, + "###0.2709###": 38354, + "###0.2711###": 38355, + "###0.2713###": 38356, + "###0.2715###": 38357, + "###0.2717###": 38358, + "###0.2719###": 38359, + "###0.2721###": 38360, + "###0.2723###": 38361, + "###0.2725###": 38362, + "###0.2727###": 38363, + "###0.2729###": 38364, + "###0.2731###": 38365, + "###0.2733###": 38366, + "###0.2735###": 38367, + "###0.2737###": 38368, + "###0.2739###": 38369, + "###0.2741###": 38370, + "###0.2743###": 38371, + "###0.2745###": 38372, + "###0.2747###": 38373, + "###0.2749###": 38374, + "###0.2751###": 38375, + "###0.2753###": 38376, + "###0.2755###": 38377, + "###0.2757###": 38378, + "###0.2759###": 38379, + "###0.2761###": 38380, + "###0.2763###": 38381, + "###0.2765###": 38382, + "###0.2767###": 38383, + "###0.2769###": 38384, + "###0.2771###": 38385, + "###0.2773###": 38386, + "###0.2775###": 38387, + "###0.2777###": 38388, + "###0.2779###": 38389, + "###0.2781###": 38390, + "###0.2783###": 38391, + "###0.2785###": 38392, + "###0.2787###": 38393, + "###0.2789###": 38394, + "###0.2791###": 38395, + "###0.2793###": 38396, + "###0.2795###": 38397, + "###0.2797###": 38398, + "###0.2799###": 38399, + "###0.2801###": 38400, + "###0.2803###": 38401, + "###0.2805###": 38402, + "###0.2807###": 38403, + "###0.2809###": 38404, + "###0.2811###": 38405, + "###0.2813###": 38406, + "###0.2815###": 38407, + "###0.2817###": 38408, + "###0.2819###": 38409, + "###0.2821###": 38410, + "###0.2823###": 38411, + "###0.2825###": 38412, + "###0.2827###": 38413, + "###0.2829###": 38414, + "###0.2831###": 38415, + "###0.2833###": 38416, + "###0.2835###": 38417, + "###0.2837###": 38418, + "###0.2839###": 38419, + "###0.2841###": 38420, + "###0.2843###": 38421, + "###0.2845###": 38422, + "###0.2847###": 38423, + "###0.2849###": 38424, + "###0.2851###": 38425, + "###0.2853###": 38426, + "###0.2855###": 38427, + "###0.2857###": 38428, + "###0.2859###": 38429, + "###0.2861###": 38430, + "###0.2863###": 38431, + "###0.2865###": 38432, + "###0.2867###": 38433, + "###0.2869###": 38434, + "###0.2871###": 38435, + "###0.2873###": 38436, + "###0.2875###": 38437, + "###0.2877###": 38438, + "###0.2879###": 38439, + "###0.2881###": 38440, + "###0.2883###": 38441, + "###0.2885###": 38442, + "###0.2887###": 38443, + "###0.2889###": 38444, + "###0.2891###": 38445, + "###0.2893###": 38446, + "###0.2895###": 38447, + "###0.2897###": 38448, + "###0.2899###": 38449, + "###0.2901###": 38450, + "###0.2903###": 38451, + "###0.2905###": 38452, + "###0.2907###": 38453, + "###0.2909###": 38454, + "###0.2911###": 38455, + "###0.2913###": 38456, + "###0.2915###": 38457, + "###0.2917###": 38458, + "###0.2919###": 38459, + "###0.2921###": 38460, + "###0.2923###": 38461, + "###0.2925###": 38462, + "###0.2927###": 38463, + "###0.2929###": 38464, + "###0.2931###": 38465, + "###0.2933###": 38466, + "###0.2935###": 38467, + "###0.2937###": 38468, + "###0.2939###": 38469, + "###0.2941###": 38470, + "###0.2943###": 38471, + "###0.2945###": 38472, + "###0.2947###": 38473, + "###0.2949###": 38474, + "###0.2951###": 38475, + "###0.2953###": 38476, + "###0.2955###": 38477, + "###0.2957###": 38478, + "###0.2959###": 38479, + "###0.2961###": 38480, + "###0.2963###": 38481, + "###0.2965###": 38482, + "###0.2967###": 38483, + "###0.2969###": 38484, + "###0.2971###": 38485, + "###0.2973###": 38486, + "###0.2975###": 38487, + "###0.2977###": 38488, + "###0.2979###": 38489, + "###0.2981###": 38490, + "###0.2983###": 38491, + "###0.2985###": 38492, + "###0.2987###": 38493, + "###0.2989###": 38494, + "###0.2991###": 38495, + "###0.2993###": 38496, + "###0.2995###": 38497, + "###0.2997###": 38498, + "###0.2999###": 38499, + "###0.3001###": 38500, + "###0.3003###": 38501, + "###0.3005###": 38502, + "###0.3007###": 38503, + "###0.3009###": 38504, + "###0.3011###": 38505, + "###0.3013###": 38506, + "###0.3015###": 38507, + "###0.3017###": 38508, + "###0.3019###": 38509, + "###0.3021###": 38510, + "###0.3023###": 38511, + "###0.3025###": 38512, + "###0.3027###": 38513, + "###0.3029###": 38514, + "###0.3031###": 38515, + "###0.3033###": 38516, + "###0.3035###": 38517, + "###0.3037###": 38518, + "###0.3039###": 38519, + "###0.3041###": 38520, + "###0.3043###": 38521, + "###0.3045###": 38522, + "###0.3047###": 38523, + "###0.3049###": 38524, + "###0.3051###": 38525, + "###0.3053###": 38526, + "###0.3055###": 38527, + "###0.3057###": 38528, + "###0.3059###": 38529, + "###0.3061###": 38530, + "###0.3063###": 38531, + "###0.3065###": 38532, + "###0.3067###": 38533, + "###0.3069###": 38534, + "###0.3071###": 38535, + "###0.3073###": 38536, + "###0.3075###": 38537, + "###0.3077###": 38538, + "###0.3079###": 38539, + "###0.3081###": 38540, + "###0.3083###": 38541, + "###0.3085###": 38542, + "###0.3087###": 38543, + "###0.3089###": 38544, + "###0.3091###": 38545, + "###0.3093###": 38546, + "###0.3095###": 38547, + "###0.3097###": 38548, + "###0.3099###": 38549, + "###0.3101###": 38550, + "###0.3103###": 38551, + "###0.3105###": 38552, + "###0.3107###": 38553, + "###0.3109###": 38554, + "###0.3111###": 38555, + "###0.3113###": 38556, + "###0.3115###": 38557, + "###0.3117###": 38558, + "###0.3119###": 38559, + "###0.3121###": 38560, + "###0.3123###": 38561, + "###0.3125###": 38562, + "###0.3127###": 38563, + "###0.3129###": 38564, + "###0.3131###": 38565, + "###0.3133###": 38566, + "###0.3135###": 38567, + "###0.3137###": 38568, + "###0.3139###": 38569, + "###0.3141###": 38570, + "###0.3143###": 38571, + "###0.3145###": 38572, + "###0.3147###": 38573, + "###0.3149###": 38574, + "###0.3151###": 38575, + "###0.3153###": 38576, + "###0.3155###": 38577, + "###0.3157###": 38578, + "###0.3159###": 38579, + "###0.3161###": 38580, + "###0.3163###": 38581, + "###0.3165###": 38582, + "###0.3167###": 38583, + "###0.3169###": 38584, + "###0.3171###": 38585, + "###0.3173###": 38586, + "###0.3175###": 38587, + "###0.3177###": 38588, + "###0.3179###": 38589, + "###0.3181###": 38590, + "###0.3183###": 38591, + "###0.3185###": 38592, + "###0.3187###": 38593, + "###0.3189###": 38594, + "###0.3191###": 38595, + "###0.3193###": 38596, + "###0.3195###": 38597, + "###0.3197###": 38598, + "###0.3199###": 38599, + "###0.3201###": 38600, + "###0.3203###": 38601, + "###0.3205###": 38602, + "###0.3207###": 38603, + "###0.3209###": 38604, + "###0.3211###": 38605, + "###0.3213###": 38606, + "###0.3215###": 38607, + "###0.3217###": 38608, + "###0.3219###": 38609, + "###0.3221###": 38610, + "###0.3223###": 38611, + "###0.3225###": 38612, + "###0.3227###": 38613, + "###0.3229###": 38614, + "###0.3231###": 38615, + "###0.3233###": 38616, + "###0.3235###": 38617, + "###0.3237###": 38618, + "###0.3239###": 38619, + "###0.3241###": 38620, + "###0.3243###": 38621, + "###0.3245###": 38622, + "###0.3247###": 38623, + "###0.3249###": 38624, + "###0.3251###": 38625, + "###0.3253###": 38626, + "###0.3255###": 38627, + "###0.3257###": 38628, + "###0.3259###": 38629, + "###0.3261###": 38630, + "###0.3263###": 38631, + "###0.3265###": 38632, + "###0.3267###": 38633, + "###0.3269###": 38634, + "###0.3271###": 38635, + "###0.3273###": 38636, + "###0.3275###": 38637, + "###0.3277###": 38638, + "###0.3279###": 38639, + "###0.3281###": 38640, + "###0.3283###": 38641, + "###0.3285###": 38642, + "###0.3287###": 38643, + "###0.3289###": 38644, + "###0.3291###": 38645, + "###0.3293###": 38646, + "###0.3295###": 38647, + "###0.3297###": 38648, + "###0.3299###": 38649, + "###0.3301###": 38650, + "###0.3303###": 38651, + "###0.3305###": 38652, + "###0.3307###": 38653, + "###0.3309###": 38654, + "###0.3311###": 38655, + "###0.3313###": 38656, + "###0.3315###": 38657, + "###0.3317###": 38658, + "###0.3319###": 38659, + "###0.3321###": 38660, + "###0.3323###": 38661, + "###0.3325###": 38662, + "###0.3327###": 38663, + "###0.3329###": 38664, + "###0.3331###": 38665, + "###0.3333###": 38666, + "###0.3335###": 38667, + "###0.3337###": 38668, + "###0.3339###": 38669, + "###0.3341###": 38670, + "###0.3343###": 38671, + "###0.3345###": 38672, + "###0.3347###": 38673, + "###0.3349###": 38674, + "###0.3351###": 38675, + "###0.3353###": 38676, + "###0.3355###": 38677, + "###0.3357###": 38678, + "###0.3359###": 38679, + "###0.3361###": 38680, + "###0.3363###": 38681, + "###0.3365###": 38682, + "###0.3367###": 38683, + "###0.3369###": 38684, + "###0.3371###": 38685, + "###0.3373###": 38686, + "###0.3375###": 38687, + "###0.3377###": 38688, + "###0.3379###": 38689, + "###0.3381###": 38690, + "###0.3383###": 38691, + "###0.3385###": 38692, + "###0.3387###": 38693, + "###0.3389###": 38694, + "###0.3391###": 38695, + "###0.3393###": 38696, + "###0.3395###": 38697, + "###0.3397###": 38698, + "###0.3399###": 38699, + "###0.3401###": 38700, + "###0.3403###": 38701, + "###0.3405###": 38702, + "###0.3407###": 38703, + "###0.3409###": 38704, + "###0.3411###": 38705, + "###0.3413###": 38706, + "###0.3415###": 38707, + "###0.3417###": 38708, + "###0.3419###": 38709, + "###0.3421###": 38710, + "###0.3423###": 38711, + "###0.3425###": 38712, + "###0.3427###": 38713, + "###0.3429###": 38714, + "###0.3431###": 38715, + "###0.3433###": 38716, + "###0.3435###": 38717, + "###0.3437###": 38718, + "###0.3439###": 38719, + "###0.3441###": 38720, + "###0.3443###": 38721, + "###0.3445###": 38722, + "###0.3447###": 38723, + "###0.3449###": 38724, + "###0.3451###": 38725, + "###0.3453###": 38726, + "###0.3455###": 38727, + "###0.3457###": 38728, + "###0.3459###": 38729, + "###0.3461###": 38730, + "###0.3463###": 38731, + "###0.3465###": 38732, + "###0.3467###": 38733, + "###0.3469###": 38734, + "###0.3471###": 38735, + "###0.3473###": 38736, + "###0.3475###": 38737, + "###0.3477###": 38738, + "###0.3479###": 38739, + "###0.3481###": 38740, + "###0.3483###": 38741, + "###0.3485###": 38742, + "###0.3487###": 38743, + "###0.3489###": 38744, + "###0.3491###": 38745, + "###0.3493###": 38746, + "###0.3495###": 38747, + "###0.3497###": 38748, + "###0.3499###": 38749, + "###0.3501###": 38750, + "###0.3503###": 38751, + "###0.3505###": 38752, + "###0.3507###": 38753, + "###0.3509###": 38754, + "###0.3511###": 38755, + "###0.3513###": 38756, + "###0.3515###": 38757, + "###0.3517###": 38758, + "###0.3519###": 38759, + "###0.3521###": 38760, + "###0.3523###": 38761, + "###0.3525###": 38762, + "###0.3527###": 38763, + "###0.3529###": 38764, + "###0.3531###": 38765, + "###0.3533###": 38766, + "###0.3535###": 38767, + "###0.3537###": 38768, + "###0.3539###": 38769, + "###0.3541###": 38770, + "###0.3543###": 38771, + "###0.3545###": 38772, + "###0.3547###": 38773, + "###0.3549###": 38774, + "###0.3551###": 38775, + "###0.3553###": 38776, + "###0.3555###": 38777, + "###0.3557###": 38778, + "###0.3559###": 38779, + "###0.3561###": 38780, + "###0.3563###": 38781, + "###0.3565###": 38782, + "###0.3567###": 38783, + "###0.3569###": 38784, + "###0.3571###": 38785, + "###0.3573###": 38786, + "###0.3575###": 38787, + "###0.3577###": 38788, + "###0.3579###": 38789, + "###0.3581###": 38790, + "###0.3583###": 38791, + "###0.3585###": 38792, + "###0.3587###": 38793, + "###0.3589###": 38794, + "###0.3591###": 38795, + "###0.3593###": 38796, + "###0.3595###": 38797, + "###0.3597###": 38798, + "###0.3599###": 38799, + "###0.3601###": 38800, + "###0.3603###": 38801, + "###0.3605###": 38802, + "###0.3607###": 38803, + "###0.3609###": 38804, + "###0.3611###": 38805, + "###0.3613###": 38806, + "###0.3615###": 38807, + "###0.3617###": 38808, + "###0.3619###": 38809, + "###0.3621###": 38810, + "###0.3623###": 38811, + "###0.3625###": 38812, + "###0.3627###": 38813, + "###0.3629###": 38814, + "###0.3631###": 38815, + "###0.3633###": 38816, + "###0.3635###": 38817, + "###0.3637###": 38818, + "###0.3639###": 38819, + "###0.3641###": 38820, + "###0.3643###": 38821, + "###0.3645###": 38822, + "###0.3647###": 38823, + "###0.3649###": 38824, + "###0.3651###": 38825, + "###0.3653###": 38826, + "###0.3655###": 38827, + "###0.3657###": 38828, + "###0.3659###": 38829, + "###0.3661###": 38830, + "###0.3663###": 38831, + "###0.3665###": 38832, + "###0.3667###": 38833, + "###0.3669###": 38834, + "###0.3671###": 38835, + "###0.3673###": 38836, + "###0.3675###": 38837, + "###0.3677###": 38838, + "###0.3679###": 38839, + "###0.3681###": 38840, + "###0.3683###": 38841, + "###0.3685###": 38842, + "###0.3687###": 38843, + "###0.3689###": 38844, + "###0.3691###": 38845, + "###0.3693###": 38846, + "###0.3695###": 38847, + "###0.3697###": 38848, + "###0.3699###": 38849, + "###0.3701###": 38850, + "###0.3703###": 38851, + "###0.3705###": 38852, + "###0.3707###": 38853, + "###0.3709###": 38854, + "###0.3711###": 38855, + "###0.3713###": 38856, + "###0.3715###": 38857, + "###0.3717###": 38858, + "###0.3719###": 38859, + "###0.3721###": 38860, + "###0.3723###": 38861, + "###0.3725###": 38862, + "###0.3727###": 38863, + "###0.3729###": 38864, + "###0.3731###": 38865, + "###0.3733###": 38866, + "###0.3735###": 38867, + "###0.3737###": 38868, + "###0.3739###": 38869, + "###0.3741###": 38870, + "###0.3743###": 38871, + "###0.3745###": 38872, + "###0.3747###": 38873, + "###0.3749###": 38874, + "###0.3751###": 38875, + "###0.3753###": 38876, + "###0.3755###": 38877, + "###0.3757###": 38878, + "###0.3759###": 38879, + "###0.3761###": 38880, + "###0.3763###": 38881, + "###0.3765###": 38882, + "###0.3767###": 38883, + "###0.3769###": 38884, + "###0.3771###": 38885, + "###0.3773###": 38886, + "###0.3775###": 38887, + "###0.3777###": 38888, + "###0.3779###": 38889, + "###0.3781###": 38890, + "###0.3783###": 38891, + "###0.3785###": 38892, + "###0.3787###": 38893, + "###0.3789###": 38894, + "###0.3791###": 38895, + "###0.3793###": 38896, + "###0.3795###": 38897, + "###0.3797###": 38898, + "###0.3799###": 38899, + "###0.3801###": 38900, + "###0.3803###": 38901, + "###0.3805###": 38902, + "###0.3807###": 38903, + "###0.3809###": 38904, + "###0.3811###": 38905, + "###0.3813###": 38906, + "###0.3815###": 38907, + "###0.3817###": 38908, + "###0.3819###": 38909, + "###0.3821###": 38910, + "###0.3823###": 38911, + "###0.3825###": 38912, + "###0.3827###": 38913, + "###0.3829###": 38914, + "###0.3831###": 38915, + "###0.3833###": 38916, + "###0.3835###": 38917, + "###0.3837###": 38918, + "###0.3839###": 38919, + "###0.3841###": 38920, + "###0.3843###": 38921, + "###0.3845###": 38922, + "###0.3847###": 38923, + "###0.3849###": 38924, + "###0.3851###": 38925, + "###0.3853###": 38926, + "###0.3855###": 38927, + "###0.3857###": 38928, + "###0.3859###": 38929, + "###0.3861###": 38930, + "###0.3863###": 38931, + "###0.3865###": 38932, + "###0.3867###": 38933, + "###0.3869###": 38934, + "###0.3871###": 38935, + "###0.3873###": 38936, + "###0.3875###": 38937, + "###0.3877###": 38938, + "###0.3879###": 38939, + "###0.3881###": 38940, + "###0.3883###": 38941, + "###0.3885###": 38942, + "###0.3887###": 38943, + "###0.3889###": 38944, + "###0.3891###": 38945, + "###0.3893###": 38946, + "###0.3895###": 38947, + "###0.3897###": 38948, + "###0.3899###": 38949, + "###0.3901###": 38950, + "###0.3903###": 38951, + "###0.3905###": 38952, + "###0.3907###": 38953, + "###0.3909###": 38954, + "###0.3911###": 38955, + "###0.3913###": 38956, + "###0.3915###": 38957, + "###0.3917###": 38958, + "###0.3919###": 38959, + "###0.3921###": 38960, + "###0.3923###": 38961, + "###0.3925###": 38962, + "###0.3927###": 38963, + "###0.3929###": 38964, + "###0.3931###": 38965, + "###0.3933###": 38966, + "###0.3935###": 38967, + "###0.3937###": 38968, + "###0.3939###": 38969, + "###0.3941###": 38970, + "###0.3943###": 38971, + "###0.3945###": 38972, + "###0.3947###": 38973, + "###0.3949###": 38974, + "###0.3951###": 38975, + "###0.3953###": 38976, + "###0.3955###": 38977, + "###0.3957###": 38978, + "###0.3959###": 38979, + "###0.3961###": 38980, + "###0.3963###": 38981, + "###0.3965###": 38982, + "###0.3967###": 38983, + "###0.3969###": 38984, + "###0.3971###": 38985, + "###0.3973###": 38986, + "###0.3975###": 38987, + "###0.3977###": 38988, + "###0.3979###": 38989, + "###0.3981###": 38990, + "###0.3983###": 38991, + "###0.3985###": 38992, + "###0.3987###": 38993, + "###0.3989###": 38994, + "###0.3991###": 38995, + "###0.3993###": 38996, + "###0.3995###": 38997, + "###0.3997###": 38998, + "###0.3999###": 38999, + "###0.4001###": 39000, + "###0.4003###": 39001, + "###0.4005###": 39002, + "###0.4007###": 39003, + "###0.4009###": 39004, + "###0.4011###": 39005, + "###0.4013###": 39006, + "###0.4015###": 39007, + "###0.4017###": 39008, + "###0.4019###": 39009, + "###0.4021###": 39010, + "###0.4023###": 39011, + "###0.4025###": 39012, + "###0.4027###": 39013, + "###0.4029###": 39014, + "###0.4031###": 39015, + "###0.4033###": 39016, + "###0.4035###": 39017, + "###0.4037###": 39018, + "###0.4039###": 39019, + "###0.4041###": 39020, + "###0.4043###": 39021, + "###0.4045###": 39022, + "###0.4047###": 39023, + "###0.4049###": 39024, + "###0.4051###": 39025, + "###0.4053###": 39026, + "###0.4055###": 39027, + "###0.4057###": 39028, + "###0.4059###": 39029, + "###0.4061###": 39030, + "###0.4063###": 39031, + "###0.4065###": 39032, + "###0.4067###": 39033, + "###0.4069###": 39034, + "###0.4071###": 39035, + "###0.4073###": 39036, + "###0.4075###": 39037, + "###0.4077###": 39038, + "###0.4079###": 39039, + "###0.4081###": 39040, + "###0.4083###": 39041, + "###0.4085###": 39042, + "###0.4087###": 39043, + "###0.4089###": 39044, + "###0.4091###": 39045, + "###0.4093###": 39046, + "###0.4095###": 39047, + "###0.4097###": 39048, + "###0.4099###": 39049, + "###0.4101###": 39050, + "###0.4103###": 39051, + "###0.4105###": 39052, + "###0.4107###": 39053, + "###0.4109###": 39054, + "###0.4111###": 39055, + "###0.4113###": 39056, + "###0.4115###": 39057, + "###0.4117###": 39058, + "###0.4119###": 39059, + "###0.4121###": 39060, + "###0.4123###": 39061, + "###0.4125###": 39062, + "###0.4127###": 39063, + "###0.4129###": 39064, + "###0.4131###": 39065, + "###0.4133###": 39066, + "###0.4135###": 39067, + "###0.4137###": 39068, + "###0.4139###": 39069, + "###0.4141###": 39070, + "###0.4143###": 39071, + "###0.4145###": 39072, + "###0.4147###": 39073, + "###0.4149###": 39074, + "###0.4151###": 39075, + "###0.4153###": 39076, + "###0.4155###": 39077, + "###0.4157###": 39078, + "###0.4159###": 39079, + "###0.4161###": 39080, + "###0.4163###": 39081, + "###0.4165###": 39082, + "###0.4167###": 39083, + "###0.4169###": 39084, + "###0.4171###": 39085, + "###0.4173###": 39086, + "###0.4175###": 39087, + "###0.4177###": 39088, + "###0.4179###": 39089, + "###0.4181###": 39090, + "###0.4183###": 39091, + "###0.4185###": 39092, + "###0.4187###": 39093, + "###0.4189###": 39094, + "###0.4191###": 39095, + "###0.4193###": 39096, + "###0.4195###": 39097, + "###0.4197###": 39098, + "###0.4199###": 39099, + "###0.4201###": 39100, + "###0.4203###": 39101, + "###0.4205###": 39102, + "###0.4207###": 39103, + "###0.4209###": 39104, + "###0.4211###": 39105, + "###0.4213###": 39106, + "###0.4215###": 39107, + "###0.4217###": 39108, + "###0.4219###": 39109, + "###0.4221###": 39110, + "###0.4223###": 39111, + "###0.4225###": 39112, + "###0.4227###": 39113, + "###0.4229###": 39114, + "###0.4231###": 39115, + "###0.4233###": 39116, + "###0.4235###": 39117, + "###0.4237###": 39118, + "###0.4239###": 39119, + "###0.4241###": 39120, + "###0.4243###": 39121, + "###0.4245###": 39122, + "###0.4247###": 39123, + "###0.4249###": 39124, + "###0.4251###": 39125, + "###0.4253###": 39126, + "###0.4255###": 39127, + "###0.4257###": 39128, + "###0.4259###": 39129, + "###0.4261###": 39130, + "###0.4263###": 39131, + "###0.4265###": 39132, + "###0.4267###": 39133, + "###0.4269###": 39134, + "###0.4271###": 39135, + "###0.4273###": 39136, + "###0.4275###": 39137, + "###0.4277###": 39138, + "###0.4279###": 39139, + "###0.4281###": 39140, + "###0.4283###": 39141, + "###0.4285###": 39142, + "###0.4287###": 39143, + "###0.4289###": 39144, + "###0.4291###": 39145, + "###0.4293###": 39146, + "###0.4295###": 39147, + "###0.4297###": 39148, + "###0.4299###": 39149, + "###0.4301###": 39150, + "###0.4303###": 39151, + "###0.4305###": 39152, + "###0.4307###": 39153, + "###0.4309###": 39154, + "###0.4311###": 39155, + "###0.4313###": 39156, + "###0.4315###": 39157, + "###0.4317###": 39158, + "###0.4319###": 39159, + "###0.4321###": 39160, + "###0.4323###": 39161, + "###0.4325###": 39162, + "###0.4327###": 39163, + "###0.4329###": 39164, + "###0.4331###": 39165, + "###0.4333###": 39166, + "###0.4335###": 39167, + "###0.4337###": 39168, + "###0.4339###": 39169, + "###0.4341###": 39170, + "###0.4343###": 39171, + "###0.4345###": 39172, + "###0.4347###": 39173, + "###0.4349###": 39174, + "###0.4351###": 39175, + "###0.4353###": 39176, + "###0.4355###": 39177, + "###0.4357###": 39178, + "###0.4359###": 39179, + "###0.4361###": 39180, + "###0.4363###": 39181, + "###0.4365###": 39182, + "###0.4367###": 39183, + "###0.4369###": 39184, + "###0.4371###": 39185, + "###0.4373###": 39186, + "###0.4375###": 39187, + "###0.4377###": 39188, + "###0.4379###": 39189, + "###0.4381###": 39190, + "###0.4383###": 39191, + "###0.4385###": 39192, + "###0.4387###": 39193, + "###0.4389###": 39194, + "###0.4391###": 39195, + "###0.4393###": 39196, + "###0.4395###": 39197, + "###0.4397###": 39198, + "###0.4399###": 39199, + "###0.4401###": 39200, + "###0.4403###": 39201, + "###0.4405###": 39202, + "###0.4407###": 39203, + "###0.4409###": 39204, + "###0.4411###": 39205, + "###0.4413###": 39206, + "###0.4415###": 39207, + "###0.4417###": 39208, + "###0.4419###": 39209, + "###0.4421###": 39210, + "###0.4423###": 39211, + "###0.4425###": 39212, + "###0.4427###": 39213, + "###0.4429###": 39214, + "###0.4431###": 39215, + "###0.4433###": 39216, + "###0.4435###": 39217, + "###0.4437###": 39218, + "###0.4439###": 39219, + "###0.4441###": 39220, + "###0.4443###": 39221, + "###0.4445###": 39222, + "###0.4447###": 39223, + "###0.4449###": 39224, + "###0.4451###": 39225, + "###0.4453###": 39226, + "###0.4455###": 39227, + "###0.4457###": 39228, + "###0.4459###": 39229, + "###0.4461###": 39230, + "###0.4463###": 39231, + "###0.4465###": 39232, + "###0.4467###": 39233, + "###0.4469###": 39234, + "###0.4471###": 39235, + "###0.4473###": 39236, + "###0.4475###": 39237, + "###0.4477###": 39238, + "###0.4479###": 39239, + "###0.4481###": 39240, + "###0.4483###": 39241, + "###0.4485###": 39242, + "###0.4487###": 39243, + "###0.4489###": 39244, + "###0.4491###": 39245, + "###0.4493###": 39246, + "###0.4495###": 39247, + "###0.4497###": 39248, + "###0.4499###": 39249, + "###0.4501###": 39250, + "###0.4503###": 39251, + "###0.4505###": 39252, + "###0.4507###": 39253, + "###0.4509###": 39254, + "###0.4511###": 39255, + "###0.4513###": 39256, + "###0.4515###": 39257, + "###0.4517###": 39258, + "###0.4519###": 39259, + "###0.4521###": 39260, + "###0.4523###": 39261, + "###0.4525###": 39262, + "###0.4527###": 39263, + "###0.4529###": 39264, + "###0.4531###": 39265, + "###0.4533###": 39266, + "###0.4535###": 39267, + "###0.4537###": 39268, + "###0.4539###": 39269, + "###0.4541###": 39270, + "###0.4543###": 39271, + "###0.4545###": 39272, + "###0.4547###": 39273, + "###0.4549###": 39274, + "###0.4551###": 39275, + "###0.4553###": 39276, + "###0.4555###": 39277, + "###0.4557###": 39278, + "###0.4559###": 39279, + "###0.4561###": 39280, + "###0.4563###": 39281, + "###0.4565###": 39282, + "###0.4567###": 39283, + "###0.4569###": 39284, + "###0.4571###": 39285, + "###0.4573###": 39286, + "###0.4575###": 39287, + "###0.4577###": 39288, + "###0.4579###": 39289, + "###0.4581###": 39290, + "###0.4583###": 39291, + "###0.4585###": 39292, + "###0.4587###": 39293, + "###0.4589###": 39294, + "###0.4591###": 39295, + "###0.4593###": 39296, + "###0.4595###": 39297, + "###0.4597###": 39298, + "###0.4599###": 39299, + "###0.4601###": 39300, + "###0.4603###": 39301, + "###0.4605###": 39302, + "###0.4607###": 39303, + "###0.4609###": 39304, + "###0.4611###": 39305, + "###0.4613###": 39306, + "###0.4615###": 39307, + "###0.4617###": 39308, + "###0.4619###": 39309, + "###0.4621###": 39310, + "###0.4623###": 39311, + "###0.4625###": 39312, + "###0.4627###": 39313, + "###0.4629###": 39314, + "###0.4631###": 39315, + "###0.4633###": 39316, + "###0.4635###": 39317, + "###0.4637###": 39318, + "###0.4639###": 39319, + "###0.4641###": 39320, + "###0.4643###": 39321, + "###0.4645###": 39322, + "###0.4647###": 39323, + "###0.4649###": 39324, + "###0.4651###": 39325, + "###0.4653###": 39326, + "###0.4655###": 39327, + "###0.4657###": 39328, + "###0.4659###": 39329, + "###0.4661###": 39330, + "###0.4663###": 39331, + "###0.4665###": 39332, + "###0.4667###": 39333, + "###0.4669###": 39334, + "###0.4671###": 39335, + "###0.4673###": 39336, + "###0.4675###": 39337, + "###0.4677###": 39338, + "###0.4679###": 39339, + "###0.4681###": 39340, + "###0.4683###": 39341, + "###0.4685###": 39342, + "###0.4687###": 39343, + "###0.4689###": 39344, + "###0.4691###": 39345, + "###0.4693###": 39346, + "###0.4695###": 39347, + "###0.4697###": 39348, + "###0.4699###": 39349, + "###0.4701###": 39350, + "###0.4703###": 39351, + "###0.4705###": 39352, + "###0.4707###": 39353, + "###0.4709###": 39354, + "###0.4711###": 39355, + "###0.4713###": 39356, + "###0.4715###": 39357, + "###0.4717###": 39358, + "###0.4719###": 39359, + "###0.4721###": 39360, + "###0.4723###": 39361, + "###0.4725###": 39362, + "###0.4727###": 39363, + "###0.4729###": 39364, + "###0.4731###": 39365, + "###0.4733###": 39366, + "###0.4735###": 39367, + "###0.4737###": 39368, + "###0.4739###": 39369, + "###0.4741###": 39370, + "###0.4743###": 39371, + "###0.4745###": 39372, + "###0.4747###": 39373, + "###0.4749###": 39374, + "###0.4751###": 39375, + "###0.4753###": 39376, + "###0.4755###": 39377, + "###0.4757###": 39378, + "###0.4759###": 39379, + "###0.4761###": 39380, + "###0.4763###": 39381, + "###0.4765###": 39382, + "###0.4767###": 39383, + "###0.4769###": 39384, + "###0.4771###": 39385, + "###0.4773###": 39386, + "###0.4775###": 39387, + "###0.4777###": 39388, + "###0.4779###": 39389, + "###0.4781###": 39390, + "###0.4783###": 39391, + "###0.4785###": 39392, + "###0.4787###": 39393, + "###0.4789###": 39394, + "###0.4791###": 39395, + "###0.4793###": 39396, + "###0.4795###": 39397, + "###0.4797###": 39398, + "###0.4799###": 39399, + "###0.4801###": 39400, + "###0.4803###": 39401, + "###0.4805###": 39402, + "###0.4807###": 39403, + "###0.4809###": 39404, + "###0.4811###": 39405, + "###0.4813###": 39406, + "###0.4815###": 39407, + "###0.4817###": 39408, + "###0.4819###": 39409, + "###0.4821###": 39410, + "###0.4823###": 39411, + "###0.4825###": 39412, + "###0.4827###": 39413, + "###0.4829###": 39414, + "###0.4831###": 39415, + "###0.4833###": 39416, + "###0.4835###": 39417, + "###0.4837###": 39418, + "###0.4839###": 39419, + "###0.4841###": 39420, + "###0.4843###": 39421, + "###0.4845###": 39422, + "###0.4847###": 39423, + "###0.4849###": 39424, + "###0.4851###": 39425, + "###0.4853###": 39426, + "###0.4855###": 39427, + "###0.4857###": 39428, + "###0.4859###": 39429, + "###0.4861###": 39430, + "###0.4863###": 39431, + "###0.4865###": 39432, + "###0.4867###": 39433, + "###0.4869###": 39434, + "###0.4871###": 39435, + "###0.4873###": 39436, + "###0.4875###": 39437, + "###0.4877###": 39438, + "###0.4879###": 39439, + "###0.4881###": 39440, + "###0.4883###": 39441, + "###0.4885###": 39442, + "###0.4887###": 39443, + "###0.4889###": 39444, + "###0.4891###": 39445, + "###0.4893###": 39446, + "###0.4895###": 39447, + "###0.4897###": 39448, + "###0.4899###": 39449, + "###0.4901###": 39450, + "###0.4903###": 39451, + "###0.4905###": 39452, + "###0.4907###": 39453, + "###0.4909###": 39454, + "###0.4911###": 39455, + "###0.4913###": 39456, + "###0.4915###": 39457, + "###0.4917###": 39458, + "###0.4919###": 39459, + "###0.4921###": 39460, + "###0.4923###": 39461, + "###0.4925###": 39462, + "###0.4927###": 39463, + "###0.4929###": 39464, + "###0.4931###": 39465, + "###0.4933###": 39466, + "###0.4935###": 39467, + "###0.4937###": 39468, + "###0.4939###": 39469, + "###0.4941###": 39470, + "###0.4943###": 39471, + "###0.4945###": 39472, + "###0.4947###": 39473, + "###0.4949###": 39474, + "###0.4951###": 39475, + "###0.4953###": 39476, + "###0.4955###": 39477, + "###0.4957###": 39478, + "###0.4959###": 39479, + "###0.4961###": 39480, + "###0.4963###": 39481, + "###0.4965###": 39482, + "###0.4967###": 39483, + "###0.4969###": 39484, + "###0.4971###": 39485, + "###0.4973###": 39486, + "###0.4975###": 39487, + "###0.4977###": 39488, + "###0.4979###": 39489, + "###0.4981###": 39490, + "###0.4983###": 39491, + "###0.4985###": 39492, + "###0.4987###": 39493, + "###0.4989###": 39494, + "###0.4991###": 39495, + "###0.4993###": 39496, + "###0.4995###": 39497, + "###0.4997###": 39498, + "###0.4999###": 39499, + "###0.5001###": 39500, + "###0.5003###": 39501, + "###0.5005###": 39502, + "###0.5007###": 39503, + "###0.5009###": 39504, + "###0.5011###": 39505, + "###0.5013###": 39506, + "###0.5015###": 39507, + "###0.5017###": 39508, + "###0.5019###": 39509, + "###0.5021###": 39510, + "###0.5023###": 39511, + "###0.5025###": 39512, + "###0.5027###": 39513, + "###0.5029###": 39514, + "###0.5031###": 39515, + "###0.5033###": 39516, + "###0.5035###": 39517, + "###0.5037###": 39518, + "###0.5039###": 39519, + "###0.5041###": 39520, + "###0.5043###": 39521, + "###0.5045###": 39522, + "###0.5047###": 39523, + "###0.5049###": 39524, + "###0.5051###": 39525, + "###0.5053###": 39526, + "###0.5055###": 39527, + "###0.5057###": 39528, + "###0.5059###": 39529, + "###0.5061###": 39530, + "###0.5063###": 39531, + "###0.5065###": 39532, + "###0.5067###": 39533, + "###0.5069###": 39534, + "###0.5071###": 39535, + "###0.5073###": 39536, + "###0.5075###": 39537, + "###0.5077###": 39538, + "###0.5079###": 39539, + "###0.5081###": 39540, + "###0.5083###": 39541, + "###0.5085###": 39542, + "###0.5087###": 39543, + "###0.5089###": 39544, + "###0.5091###": 39545, + "###0.5093###": 39546, + "###0.5095###": 39547, + "###0.5097###": 39548, + "###0.5099###": 39549, + "###0.5101###": 39550, + "###0.5103###": 39551, + "###0.5105###": 39552, + "###0.5107###": 39553, + "###0.5109###": 39554, + "###0.5111###": 39555, + "###0.5113###": 39556, + "###0.5115###": 39557, + "###0.5117###": 39558, + "###0.5119###": 39559, + "###0.5121###": 39560, + "###0.5123###": 39561, + "###0.5125###": 39562, + "###0.5127###": 39563, + "###0.5129###": 39564, + "###0.5131###": 39565, + "###0.5133###": 39566, + "###0.5135###": 39567, + "###0.5137###": 39568, + "###0.5139###": 39569, + "###0.5141###": 39570, + "###0.5143###": 39571, + "###0.5145###": 39572, + "###0.5147###": 39573, + "###0.5149###": 39574, + "###0.5151###": 39575, + "###0.5153###": 39576, + "###0.5155###": 39577, + "###0.5157###": 39578, + "###0.5159###": 39579, + "###0.5161###": 39580, + "###0.5163###": 39581, + "###0.5165###": 39582, + "###0.5167###": 39583, + "###0.5169###": 39584, + "###0.5171###": 39585, + "###0.5173###": 39586, + "###0.5175###": 39587, + "###0.5177###": 39588, + "###0.5179###": 39589, + "###0.5181###": 39590, + "###0.5183###": 39591, + "###0.5185###": 39592, + "###0.5187###": 39593, + "###0.5189###": 39594, + "###0.5191###": 39595, + "###0.5193###": 39596, + "###0.5195###": 39597, + "###0.5197###": 39598, + "###0.5199###": 39599, + "###0.5201###": 39600, + "###0.5203###": 39601, + "###0.5205###": 39602, + "###0.5207###": 39603, + "###0.5209###": 39604, + "###0.5211###": 39605, + "###0.5213###": 39606, + "###0.5215###": 39607, + "###0.5217###": 39608, + "###0.5219###": 39609, + "###0.5221###": 39610, + "###0.5223###": 39611, + "###0.5225###": 39612, + "###0.5227###": 39613, + "###0.5229###": 39614, + "###0.5231###": 39615, + "###0.5233###": 39616, + "###0.5235###": 39617, + "###0.5237###": 39618, + "###0.5239###": 39619, + "###0.5241###": 39620, + "###0.5243###": 39621, + "###0.5245###": 39622, + "###0.5247###": 39623, + "###0.5249###": 39624, + "###0.5251###": 39625, + "###0.5253###": 39626, + "###0.5255###": 39627, + "###0.5257###": 39628, + "###0.5259###": 39629, + "###0.5261###": 39630, + "###0.5263###": 39631, + "###0.5265###": 39632, + "###0.5267###": 39633, + "###0.5269###": 39634, + "###0.5271###": 39635, + "###0.5273###": 39636, + "###0.5275###": 39637, + "###0.5277###": 39638, + "###0.5279###": 39639, + "###0.5281###": 39640, + "###0.5283###": 39641, + "###0.5285###": 39642, + "###0.5287###": 39643, + "###0.5289###": 39644, + "###0.5291###": 39645, + "###0.5293###": 39646, + "###0.5295###": 39647, + "###0.5297###": 39648, + "###0.5299###": 39649, + "###0.5301###": 39650, + "###0.5303###": 39651, + "###0.5305###": 39652, + "###0.5307###": 39653, + "###0.5309###": 39654, + "###0.5311###": 39655, + "###0.5313###": 39656, + "###0.5315###": 39657, + "###0.5317###": 39658, + "###0.5319###": 39659, + "###0.5321###": 39660, + "###0.5323###": 39661, + "###0.5325###": 39662, + "###0.5327###": 39663, + "###0.5329###": 39664, + "###0.5331###": 39665, + "###0.5333###": 39666, + "###0.5335###": 39667, + "###0.5337###": 39668, + "###0.5339###": 39669, + "###0.5341###": 39670, + "###0.5343###": 39671, + "###0.5345###": 39672, + "###0.5347###": 39673, + "###0.5349###": 39674, + "###0.5351###": 39675, + "###0.5353###": 39676, + "###0.5355###": 39677, + "###0.5357###": 39678, + "###0.5359###": 39679, + "###0.5361###": 39680, + "###0.5363###": 39681, + "###0.5365###": 39682, + "###0.5367###": 39683, + "###0.5369###": 39684, + "###0.5371###": 39685, + "###0.5373###": 39686, + "###0.5375###": 39687, + "###0.5377###": 39688, + "###0.5379###": 39689, + "###0.5381###": 39690, + "###0.5383###": 39691, + "###0.5385###": 39692, + "###0.5387###": 39693, + "###0.5389###": 39694, + "###0.5391###": 39695, + "###0.5393###": 39696, + "###0.5395###": 39697, + "###0.5397###": 39698, + "###0.5399###": 39699, + "###0.5401###": 39700, + "###0.5403###": 39701, + "###0.5405###": 39702, + "###0.5407###": 39703, + "###0.5409###": 39704, + "###0.5411###": 39705, + "###0.5413###": 39706, + "###0.5415###": 39707, + "###0.5417###": 39708, + "###0.5419###": 39709, + "###0.5421###": 39710, + "###0.5423###": 39711, + "###0.5425###": 39712, + "###0.5427###": 39713, + "###0.5429###": 39714, + "###0.5431###": 39715, + "###0.5433###": 39716, + "###0.5435###": 39717, + "###0.5437###": 39718, + "###0.5439###": 39719, + "###0.5441###": 39720, + "###0.5443###": 39721, + "###0.5445###": 39722, + "###0.5447###": 39723, + "###0.5449###": 39724, + "###0.5451###": 39725, + "###0.5453###": 39726, + "###0.5455###": 39727, + "###0.5457###": 39728, + "###0.5459###": 39729, + "###0.5461###": 39730, + "###0.5463###": 39731, + "###0.5465###": 39732, + "###0.5467###": 39733, + "###0.5469###": 39734, + "###0.5471###": 39735, + "###0.5473###": 39736, + "###0.5475###": 39737, + "###0.5477###": 39738, + "###0.5479###": 39739, + "###0.5481###": 39740, + "###0.5483###": 39741, + "###0.5485###": 39742, + "###0.5487###": 39743, + "###0.5489###": 39744, + "###0.5491###": 39745, + "###0.5493###": 39746, + "###0.5495###": 39747, + "###0.5497###": 39748, + "###0.5499###": 39749, + "###0.5501###": 39750, + "###0.5503###": 39751, + "###0.5505###": 39752, + "###0.5507###": 39753, + "###0.5509###": 39754, + "###0.5511###": 39755, + "###0.5513###": 39756, + "###0.5515###": 39757, + "###0.5517###": 39758, + "###0.5519###": 39759, + "###0.5521###": 39760, + "###0.5523###": 39761, + "###0.5525###": 39762, + "###0.5527###": 39763, + "###0.5529###": 39764, + "###0.5531###": 39765, + "###0.5533###": 39766, + "###0.5535###": 39767, + "###0.5537###": 39768, + "###0.5539###": 39769, + "###0.5541###": 39770, + "###0.5543###": 39771, + "###0.5545###": 39772, + "###0.5547###": 39773, + "###0.5549###": 39774, + "###0.5551###": 39775, + "###0.5553###": 39776, + "###0.5555###": 39777, + "###0.5557###": 39778, + "###0.5559###": 39779, + "###0.5561###": 39780, + "###0.5563###": 39781, + "###0.5565###": 39782, + "###0.5567###": 39783, + "###0.5569###": 39784, + "###0.5571###": 39785, + "###0.5573###": 39786, + "###0.5575###": 39787, + "###0.5577###": 39788, + "###0.5579###": 39789, + "###0.5581###": 39790, + "###0.5583###": 39791, + "###0.5585###": 39792, + "###0.5587###": 39793, + "###0.5589###": 39794, + "###0.5591###": 39795, + "###0.5593###": 39796, + "###0.5595###": 39797, + "###0.5597###": 39798, + "###0.5599###": 39799, + "###0.5601###": 39800, + "###0.5603###": 39801, + "###0.5605###": 39802, + "###0.5607###": 39803, + "###0.5609###": 39804, + "###0.5611###": 39805, + "###0.5613###": 39806, + "###0.5615###": 39807, + "###0.5617###": 39808, + "###0.5619###": 39809, + "###0.5621###": 39810, + "###0.5623###": 39811, + "###0.5625###": 39812, + "###0.5627###": 39813, + "###0.5629###": 39814, + "###0.5631###": 39815, + "###0.5633###": 39816, + "###0.5635###": 39817, + "###0.5637###": 39818, + "###0.5639###": 39819, + "###0.5641###": 39820, + "###0.5643###": 39821, + "###0.5645###": 39822, + "###0.5647###": 39823, + "###0.5649###": 39824, + "###0.5651###": 39825, + "###0.5653###": 39826, + "###0.5655###": 39827, + "###0.5657###": 39828, + "###0.5659###": 39829, + "###0.5661###": 39830, + "###0.5663###": 39831, + "###0.5665###": 39832, + "###0.5667###": 39833, + "###0.5669###": 39834, + "###0.5671###": 39835, + "###0.5673###": 39836, + "###0.5675###": 39837, + "###0.5677###": 39838, + "###0.5679###": 39839, + "###0.5681###": 39840, + "###0.5683###": 39841, + "###0.5685###": 39842, + "###0.5687###": 39843, + "###0.5689###": 39844, + "###0.5691###": 39845, + "###0.5693###": 39846, + "###0.5695###": 39847, + "###0.5697###": 39848, + "###0.5699###": 39849, + "###0.5701###": 39850, + "###0.5703###": 39851, + "###0.5705###": 39852, + "###0.5707###": 39853, + "###0.5709###": 39854, + "###0.5711###": 39855, + "###0.5713###": 39856, + "###0.5715###": 39857, + "###0.5717###": 39858, + "###0.5719###": 39859, + "###0.5721###": 39860, + "###0.5723###": 39861, + "###0.5725###": 39862, + "###0.5727###": 39863, + "###0.5729###": 39864, + "###0.5731###": 39865, + "###0.5733###": 39866, + "###0.5735###": 39867, + "###0.5737###": 39868, + "###0.5739###": 39869, + "###0.5741###": 39870, + "###0.5743###": 39871, + "###0.5745###": 39872, + "###0.5747###": 39873, + "###0.5749###": 39874, + "###0.5751###": 39875, + "###0.5753###": 39876, + "###0.5755###": 39877, + "###0.5757###": 39878, + "###0.5759###": 39879, + "###0.5761###": 39880, + "###0.5763###": 39881, + "###0.5765###": 39882, + "###0.5767###": 39883, + "###0.5769###": 39884, + "###0.5771###": 39885, + "###0.5773###": 39886, + "###0.5775###": 39887, + "###0.5777###": 39888, + "###0.5779###": 39889, + "###0.5781###": 39890, + "###0.5783###": 39891, + "###0.5785###": 39892, + "###0.5787###": 39893, + "###0.5789###": 39894, + "###0.5791###": 39895, + "###0.5793###": 39896, + "###0.5795###": 39897, + "###0.5797###": 39898, + "###0.5799###": 39899, + "###0.5801###": 39900, + "###0.5803###": 39901, + "###0.5805###": 39902, + "###0.5807###": 39903, + "###0.5809###": 39904, + "###0.5811###": 39905, + "###0.5813###": 39906, + "###0.5815###": 39907, + "###0.5817###": 39908, + "###0.5819###": 39909, + "###0.5821###": 39910, + "###0.5823###": 39911, + "###0.5825###": 39912, + "###0.5827###": 39913, + "###0.5829###": 39914, + "###0.5831###": 39915, + "###0.5833###": 39916, + "###0.5835###": 39917, + "###0.5837###": 39918, + "###0.5839###": 39919, + "###0.5841###": 39920, + "###0.5843###": 39921, + "###0.5845###": 39922, + "###0.5847###": 39923, + "###0.5849###": 39924, + "###0.5851###": 39925, + "###0.5853###": 39926, + "###0.5855###": 39927, + "###0.5857###": 39928, + "###0.5859###": 39929, + "###0.5861###": 39930, + "###0.5863###": 39931, + "###0.5865###": 39932, + "###0.5867###": 39933, + "###0.5869###": 39934, + "###0.5871###": 39935, + "###0.5873###": 39936, + "###0.5875###": 39937, + "###0.5877###": 39938, + "###0.5879###": 39939, + "###0.5881###": 39940, + "###0.5883###": 39941, + "###0.5885###": 39942, + "###0.5887###": 39943, + "###0.5889###": 39944, + "###0.5891###": 39945, + "###0.5893###": 39946, + "###0.5895###": 39947, + "###0.5897###": 39948, + "###0.5899###": 39949, + "###0.5901###": 39950, + "###0.5903###": 39951, + "###0.5905###": 39952, + "###0.5907###": 39953, + "###0.5909###": 39954, + "###0.5911###": 39955, + "###0.5913###": 39956, + "###0.5915###": 39957, + "###0.5917###": 39958, + "###0.5919###": 39959, + "###0.5921###": 39960, + "###0.5923###": 39961, + "###0.5925###": 39962, + "###0.5927###": 39963, + "###0.5929###": 39964, + "###0.5931###": 39965, + "###0.5933###": 39966, + "###0.5935###": 39967, + "###0.5937###": 39968, + "###0.5939###": 39969, + "###0.5941###": 39970, + "###0.5943###": 39971, + "###0.5945###": 39972, + "###0.5947###": 39973, + "###0.5949###": 39974, + "###0.5951###": 39975, + "###0.5953###": 39976, + "###0.5955###": 39977, + "###0.5957###": 39978, + "###0.5959###": 39979, + "###0.5961###": 39980, + "###0.5963###": 39981, + "###0.5965###": 39982, + "###0.5967###": 39983, + "###0.5969###": 39984, + "###0.5971###": 39985, + "###0.5973###": 39986, + "###0.5975###": 39987, + "###0.5977###": 39988, + "###0.5979###": 39989, + "###0.5981###": 39990, + "###0.5983###": 39991, + "###0.5985###": 39992, + "###0.5987###": 39993, + "###0.5989###": 39994, + "###0.5991###": 39995, + "###0.5993###": 39996, + "###0.5995###": 39997, + "###0.5997###": 39998, + "###0.5999###": 39999, + "###0.6001###": 40000, + "###0.6003###": 40001, + "###0.6005###": 40002, + "###0.6007###": 40003, + "###0.6009###": 40004, + "###0.6011###": 40005, + "###0.6013###": 40006, + "###0.6015###": 40007, + "###0.6017###": 40008, + "###0.6019###": 40009, + "###0.6021###": 40010, + "###0.6023###": 40011, + "###0.6025###": 40012, + "###0.6027###": 40013, + "###0.6029###": 40014, + "###0.6031###": 40015, + "###0.6033###": 40016, + "###0.6035###": 40017, + "###0.6037###": 40018, + "###0.6039###": 40019, + "###0.6041###": 40020, + "###0.6043###": 40021, + "###0.6045###": 40022, + "###0.6047###": 40023, + "###0.6049###": 40024, + "###0.6051###": 40025, + "###0.6053###": 40026, + "###0.6055###": 40027, + "###0.6057###": 40028, + "###0.6059###": 40029, + "###0.6061###": 40030, + "###0.6063###": 40031, + "###0.6065###": 40032, + "###0.6067###": 40033, + "###0.6069###": 40034, + "###0.6071###": 40035, + "###0.6073###": 40036, + "###0.6075###": 40037, + "###0.6077###": 40038, + "###0.6079###": 40039, + "###0.6081###": 40040, + "###0.6083###": 40041, + "###0.6085###": 40042, + "###0.6087###": 40043, + "###0.6089###": 40044, + "###0.6091###": 40045, + "###0.6093###": 40046, + "###0.6095###": 40047, + "###0.6097###": 40048, + "###0.6099###": 40049, + "###0.6101###": 40050, + "###0.6103###": 40051, + "###0.6105###": 40052, + "###0.6107###": 40053, + "###0.6109###": 40054, + "###0.6111###": 40055, + "###0.6113###": 40056, + "###0.6115###": 40057, + "###0.6117###": 40058, + "###0.6119###": 40059, + "###0.6121###": 40060, + "###0.6123###": 40061, + "###0.6125###": 40062, + "###0.6127###": 40063, + "###0.6129###": 40064, + "###0.6131###": 40065, + "###0.6133###": 40066, + "###0.6135###": 40067, + "###0.6137###": 40068, + "###0.6139###": 40069, + "###0.6141###": 40070, + "###0.6143###": 40071, + "###0.6145###": 40072, + "###0.6147###": 40073, + "###0.6149###": 40074, + "###0.6151###": 40075, + "###0.6153###": 40076, + "###0.6155###": 40077, + "###0.6157###": 40078, + "###0.6159###": 40079, + "###0.6161###": 40080, + "###0.6163###": 40081, + "###0.6165###": 40082, + "###0.6167###": 40083, + "###0.6169###": 40084, + "###0.6171###": 40085, + "###0.6173###": 40086, + "###0.6175###": 40087, + "###0.6177###": 40088, + "###0.6179###": 40089, + "###0.6181###": 40090, + "###0.6183###": 40091, + "###0.6185###": 40092, + "###0.6187###": 40093, + "###0.6189###": 40094, + "###0.6191###": 40095, + "###0.6193###": 40096, + "###0.6195###": 40097, + "###0.6197###": 40098, + "###0.6199###": 40099, + "###0.6201###": 40100, + "###0.6203###": 40101, + "###0.6205###": 40102, + "###0.6207###": 40103, + "###0.6209###": 40104, + "###0.6211###": 40105, + "###0.6213###": 40106, + "###0.6215###": 40107, + "###0.6217###": 40108, + "###0.6219###": 40109, + "###0.6221###": 40110, + "###0.6223###": 40111, + "###0.6225###": 40112, + "###0.6227###": 40113, + "###0.6229###": 40114, + "###0.6231###": 40115, + "###0.6233###": 40116, + "###0.6235###": 40117, + "###0.6237###": 40118, + "###0.6239###": 40119, + "###0.6241###": 40120, + "###0.6243###": 40121, + "###0.6245###": 40122, + "###0.6247###": 40123, + "###0.6249###": 40124, + "###0.6251###": 40125, + "###0.6253###": 40126, + "###0.6255###": 40127, + "###0.6257###": 40128, + "###0.6259###": 40129, + "###0.6261###": 40130, + "###0.6263###": 40131, + "###0.6265###": 40132, + "###0.6267###": 40133, + "###0.6269###": 40134, + "###0.6271###": 40135, + "###0.6273###": 40136, + "###0.6275###": 40137, + "###0.6277###": 40138, + "###0.6279###": 40139, + "###0.6281###": 40140, + "###0.6283###": 40141, + "###0.6285###": 40142, + "###0.6287###": 40143, + "###0.6289###": 40144, + "###0.6291###": 40145, + "###0.6293###": 40146, + "###0.6295###": 40147, + "###0.6297###": 40148, + "###0.6299###": 40149, + "###0.6301###": 40150, + "###0.6303###": 40151, + "###0.6305###": 40152, + "###0.6307###": 40153, + "###0.6309###": 40154, + "###0.6311###": 40155, + "###0.6313###": 40156, + "###0.6315###": 40157, + "###0.6317###": 40158, + "###0.6319###": 40159, + "###0.6321###": 40160, + "###0.6323###": 40161, + "###0.6325###": 40162, + "###0.6327###": 40163, + "###0.6329###": 40164, + "###0.6331###": 40165, + "###0.6333###": 40166, + "###0.6335###": 40167, + "###0.6337###": 40168, + "###0.6339###": 40169, + "###0.6341###": 40170, + "###0.6343###": 40171, + "###0.6345###": 40172, + "###0.6347###": 40173, + "###0.6349###": 40174, + "###0.6351###": 40175, + "###0.6353###": 40176, + "###0.6355###": 40177, + "###0.6357###": 40178, + "###0.6359###": 40179, + "###0.6361###": 40180, + "###0.6363###": 40181, + "###0.6365###": 40182, + "###0.6367###": 40183, + "###0.6369###": 40184, + "###0.6371###": 40185, + "###0.6373###": 40186, + "###0.6375###": 40187, + "###0.6377###": 40188, + "###0.6379###": 40189, + "###0.6381###": 40190, + "###0.6383###": 40191, + "###0.6385###": 40192, + "###0.6387###": 40193, + "###0.6389###": 40194, + "###0.6391###": 40195, + "###0.6393###": 40196, + "###0.6395###": 40197, + "###0.6397###": 40198, + "###0.6399###": 40199, + "###0.6401###": 40200, + "###0.6403###": 40201, + "###0.6405###": 40202, + "###0.6407###": 40203, + "###0.6409###": 40204, + "###0.6411###": 40205, + "###0.6413###": 40206, + "###0.6415###": 40207, + "###0.6417###": 40208, + "###0.6419###": 40209, + "###0.6421###": 40210, + "###0.6423###": 40211, + "###0.6425###": 40212, + "###0.6427###": 40213, + "###0.6429###": 40214, + "###0.6431###": 40215, + "###0.6433###": 40216, + "###0.6435###": 40217, + "###0.6437###": 40218, + "###0.6439###": 40219, + "###0.6441###": 40220, + "###0.6443###": 40221, + "###0.6445###": 40222, + "###0.6447###": 40223, + "###0.6449###": 40224, + "###0.6451###": 40225, + "###0.6453###": 40226, + "###0.6455###": 40227, + "###0.6457###": 40228, + "###0.6459###": 40229, + "###0.6461###": 40230, + "###0.6463###": 40231, + "###0.6465###": 40232, + "###0.6467###": 40233, + "###0.6469###": 40234, + "###0.6471###": 40235, + "###0.6473###": 40236, + "###0.6475###": 40237, + "###0.6477###": 40238, + "###0.6479###": 40239, + "###0.6481###": 40240, + "###0.6483###": 40241, + "###0.6485###": 40242, + "###0.6487###": 40243, + "###0.6489###": 40244, + "###0.6491###": 40245, + "###0.6493###": 40246, + "###0.6495###": 40247, + "###0.6497###": 40248, + "###0.6499###": 40249, + "###0.6501###": 40250, + "###0.6503###": 40251, + "###0.6505###": 40252, + "###0.6507###": 40253, + "###0.6509###": 40254, + "###0.6511###": 40255, + "###0.6513###": 40256, + "###0.6515###": 40257, + "###0.6517###": 40258, + "###0.6519###": 40259, + "###0.6521###": 40260, + "###0.6523###": 40261, + "###0.6525###": 40262, + "###0.6527###": 40263, + "###0.6529###": 40264, + "###0.6531###": 40265, + "###0.6533###": 40266, + "###0.6535###": 40267, + "###0.6537###": 40268, + "###0.6539###": 40269, + "###0.6541###": 40270, + "###0.6543###": 40271, + "###0.6545###": 40272, + "###0.6547###": 40273, + "###0.6549###": 40274, + "###0.6551###": 40275, + "###0.6553###": 40276, + "###0.6555###": 40277, + "###0.6557###": 40278, + "###0.6559###": 40279, + "###0.6561###": 40280, + "###0.6563###": 40281, + "###0.6565###": 40282, + "###0.6567###": 40283, + "###0.6569###": 40284, + "###0.6571###": 40285, + "###0.6573###": 40286, + "###0.6575###": 40287, + "###0.6577###": 40288, + "###0.6579###": 40289, + "###0.6581###": 40290, + "###0.6583###": 40291, + "###0.6585###": 40292, + "###0.6587###": 40293, + "###0.6589###": 40294, + "###0.6591###": 40295, + "###0.6593###": 40296, + "###0.6595###": 40297, + "###0.6597###": 40298, + "###0.6599###": 40299, + "###0.6601###": 40300, + "###0.6603###": 40301, + "###0.6605###": 40302, + "###0.6607###": 40303, + "###0.6609###": 40304, + "###0.6611###": 40305, + "###0.6613###": 40306, + "###0.6615###": 40307, + "###0.6617###": 40308, + "###0.6619###": 40309, + "###0.6621###": 40310, + "###0.6623###": 40311, + "###0.6625###": 40312, + "###0.6627###": 40313, + "###0.6629###": 40314, + "###0.6631###": 40315, + "###0.6633###": 40316, + "###0.6635###": 40317, + "###0.6637###": 40318, + "###0.6639###": 40319, + "###0.6641###": 40320, + "###0.6643###": 40321, + "###0.6645###": 40322, + "###0.6647###": 40323, + "###0.6649###": 40324, + "###0.6651###": 40325, + "###0.6653###": 40326, + "###0.6655###": 40327, + "###0.6657###": 40328, + "###0.6659###": 40329, + "###0.6661###": 40330, + "###0.6663###": 40331, + "###0.6665###": 40332, + "###0.6667###": 40333, + "###0.6669###": 40334, + "###0.6671###": 40335, + "###0.6673###": 40336, + "###0.6675###": 40337, + "###0.6677###": 40338, + "###0.6679###": 40339, + "###0.6681###": 40340, + "###0.6683###": 40341, + "###0.6685###": 40342, + "###0.6687###": 40343, + "###0.6689###": 40344, + "###0.6691###": 40345, + "###0.6693###": 40346, + "###0.6695###": 40347, + "###0.6697###": 40348, + "###0.6699###": 40349, + "###0.6701###": 40350, + "###0.6703###": 40351, + "###0.6705###": 40352, + "###0.6707###": 40353, + "###0.6709###": 40354, + "###0.6711###": 40355, + "###0.6713###": 40356, + "###0.6715###": 40357, + "###0.6717###": 40358, + "###0.6719###": 40359, + "###0.6721###": 40360, + "###0.6723###": 40361, + "###0.6725###": 40362, + "###0.6727###": 40363, + "###0.6729###": 40364, + "###0.6731###": 40365, + "###0.6733###": 40366, + "###0.6735###": 40367, + "###0.6737###": 40368, + "###0.6739###": 40369, + "###0.6741###": 40370, + "###0.6743###": 40371, + "###0.6745###": 40372, + "###0.6747###": 40373, + "###0.6749###": 40374, + "###0.6751###": 40375, + "###0.6753###": 40376, + "###0.6755###": 40377, + "###0.6757###": 40378, + "###0.6759###": 40379, + "###0.6761###": 40380, + "###0.6763###": 40381, + "###0.6765###": 40382, + "###0.6767###": 40383, + "###0.6769###": 40384, + "###0.6771###": 40385, + "###0.6773###": 40386, + "###0.6775###": 40387, + "###0.6777###": 40388, + "###0.6779###": 40389, + "###0.6781###": 40390, + "###0.6783###": 40391, + "###0.6785###": 40392, + "###0.6787###": 40393, + "###0.6789###": 40394, + "###0.6791###": 40395, + "###0.6793###": 40396, + "###0.6795###": 40397, + "###0.6797###": 40398, + "###0.6799###": 40399, + "###0.6801###": 40400, + "###0.6803###": 40401, + "###0.6805###": 40402, + "###0.6807###": 40403, + "###0.6809###": 40404, + "###0.6811###": 40405, + "###0.6813###": 40406, + "###0.6815###": 40407, + "###0.6817###": 40408, + "###0.6819###": 40409, + "###0.6821###": 40410, + "###0.6823###": 40411, + "###0.6825###": 40412, + "###0.6827###": 40413, + "###0.6829###": 40414, + "###0.6831###": 40415, + "###0.6833###": 40416, + "###0.6835###": 40417, + "###0.6837###": 40418, + "###0.6839###": 40419, + "###0.6841###": 40420, + "###0.6843###": 40421, + "###0.6845###": 40422, + "###0.6847###": 40423, + "###0.6849###": 40424, + "###0.6851###": 40425, + "###0.6853###": 40426, + "###0.6855###": 40427, + "###0.6857###": 40428, + "###0.6859###": 40429, + "###0.6861###": 40430, + "###0.6863###": 40431, + "###0.6865###": 40432, + "###0.6867###": 40433, + "###0.6869###": 40434, + "###0.6871###": 40435, + "###0.6873###": 40436, + "###0.6875###": 40437, + "###0.6877###": 40438, + "###0.6879###": 40439, + "###0.6881###": 40440, + "###0.6883###": 40441, + "###0.6885###": 40442, + "###0.6887###": 40443, + "###0.6889###": 40444, + "###0.6891###": 40445, + "###0.6893###": 40446, + "###0.6895###": 40447, + "###0.6897###": 40448, + "###0.6899###": 40449, + "###0.6901###": 40450, + "###0.6903###": 40451, + "###0.6905###": 40452, + "###0.6907###": 40453, + "###0.6909###": 40454, + "###0.6911###": 40455, + "###0.6913###": 40456, + "###0.6915###": 40457, + "###0.6917###": 40458, + "###0.6919###": 40459, + "###0.6921###": 40460, + "###0.6923###": 40461, + "###0.6925###": 40462, + "###0.6927###": 40463, + "###0.6929###": 40464, + "###0.6931###": 40465, + "###0.6933###": 40466, + "###0.6935###": 40467, + "###0.6937###": 40468, + "###0.6939###": 40469, + "###0.6941###": 40470, + "###0.6943###": 40471, + "###0.6945###": 40472, + "###0.6947###": 40473, + "###0.6949###": 40474, + "###0.6951###": 40475, + "###0.6953###": 40476, + "###0.6955###": 40477, + "###0.6957###": 40478, + "###0.6959###": 40479, + "###0.6961###": 40480, + "###0.6963###": 40481, + "###0.6965###": 40482, + "###0.6967###": 40483, + "###0.6969###": 40484, + "###0.6971###": 40485, + "###0.6973###": 40486, + "###0.6975###": 40487, + "###0.6977###": 40488, + "###0.6979###": 40489, + "###0.6981###": 40490, + "###0.6983###": 40491, + "###0.6985###": 40492, + "###0.6987###": 40493, + "###0.6989###": 40494, + "###0.6991###": 40495, + "###0.6993###": 40496, + "###0.6995###": 40497, + "###0.6997###": 40498, + "###0.6999###": 40499, + "###0.7001###": 40500, + "###0.7003###": 40501, + "###0.7005###": 40502, + "###0.7007###": 40503, + "###0.7009###": 40504, + "###0.7011###": 40505, + "###0.7013###": 40506, + "###0.7015###": 40507, + "###0.7017###": 40508, + "###0.7019###": 40509, + "###0.7021###": 40510, + "###0.7023###": 40511, + "###0.7025###": 40512, + "###0.7027###": 40513, + "###0.7029###": 40514, + "###0.7031###": 40515, + "###0.7033###": 40516, + "###0.7035###": 40517, + "###0.7037###": 40518, + "###0.7039###": 40519, + "###0.7041###": 40520, + "###0.7043###": 40521, + "###0.7045###": 40522, + "###0.7047###": 40523, + "###0.7049###": 40524, + "###0.7051###": 40525, + "###0.7053###": 40526, + "###0.7055###": 40527, + "###0.7057###": 40528, + "###0.7059###": 40529, + "###0.7061###": 40530, + "###0.7063###": 40531, + "###0.7065###": 40532, + "###0.7067###": 40533, + "###0.7069###": 40534, + "###0.7071###": 40535, + "###0.7073###": 40536, + "###0.7075###": 40537, + "###0.7077###": 40538, + "###0.7079###": 40539, + "###0.7081###": 40540, + "###0.7083###": 40541, + "###0.7085###": 40542, + "###0.7087###": 40543, + "###0.7089###": 40544, + "###0.7091###": 40545, + "###0.7093###": 40546, + "###0.7095###": 40547, + "###0.7097###": 40548, + "###0.7099###": 40549, + "###0.7101###": 40550, + "###0.7103###": 40551, + "###0.7105###": 40552, + "###0.7107###": 40553, + "###0.7109###": 40554, + "###0.7111###": 40555, + "###0.7113###": 40556, + "###0.7115###": 40557, + "###0.7117###": 40558, + "###0.7119###": 40559, + "###0.7121###": 40560, + "###0.7123###": 40561, + "###0.7125###": 40562, + "###0.7127###": 40563, + "###0.7129###": 40564, + "###0.7131###": 40565, + "###0.7133###": 40566, + "###0.7135###": 40567, + "###0.7137###": 40568, + "###0.7139###": 40569, + "###0.7141###": 40570, + "###0.7143###": 40571, + "###0.7145###": 40572, + "###0.7147###": 40573, + "###0.7149###": 40574, + "###0.7151###": 40575, + "###0.7153###": 40576, + "###0.7155###": 40577, + "###0.7157###": 40578, + "###0.7159###": 40579, + "###0.7161###": 40580, + "###0.7163###": 40581, + "###0.7165###": 40582, + "###0.7167###": 40583, + "###0.7169###": 40584, + "###0.7171###": 40585, + "###0.7173###": 40586, + "###0.7175###": 40587, + "###0.7177###": 40588, + "###0.7179###": 40589, + "###0.7181###": 40590, + "###0.7183###": 40591, + "###0.7185###": 40592, + "###0.7187###": 40593, + "###0.7189###": 40594, + "###0.7191###": 40595, + "###0.7193###": 40596, + "###0.7195###": 40597, + "###0.7197###": 40598, + "###0.7199###": 40599, + "###0.7201###": 40600, + "###0.7203###": 40601, + "###0.7205###": 40602, + "###0.7207###": 40603, + "###0.7209###": 40604, + "###0.7211###": 40605, + "###0.7213###": 40606, + "###0.7215###": 40607, + "###0.7217###": 40608, + "###0.7219###": 40609, + "###0.7221###": 40610, + "###0.7223###": 40611, + "###0.7225###": 40612, + "###0.7227###": 40613, + "###0.7229###": 40614, + "###0.7231###": 40615, + "###0.7233###": 40616, + "###0.7235###": 40617, + "###0.7237###": 40618, + "###0.7239###": 40619, + "###0.7241###": 40620, + "###0.7243###": 40621, + "###0.7245###": 40622, + "###0.7247###": 40623, + "###0.7249###": 40624, + "###0.7251###": 40625, + "###0.7253###": 40626, + "###0.7255###": 40627, + "###0.7257###": 40628, + "###0.7259###": 40629, + "###0.7261###": 40630, + "###0.7263###": 40631, + "###0.7265###": 40632, + "###0.7267###": 40633, + "###0.7269###": 40634, + "###0.7271###": 40635, + "###0.7273###": 40636, + "###0.7275###": 40637, + "###0.7277###": 40638, + "###0.7279###": 40639, + "###0.7281###": 40640, + "###0.7283###": 40641, + "###0.7285###": 40642, + "###0.7287###": 40643, + "###0.7289###": 40644, + "###0.7291###": 40645, + "###0.7293###": 40646, + "###0.7295###": 40647, + "###0.7297###": 40648, + "###0.7299###": 40649, + "###0.7301###": 40650, + "###0.7303###": 40651, + "###0.7305###": 40652, + "###0.7307###": 40653, + "###0.7309###": 40654, + "###0.7311###": 40655, + "###0.7313###": 40656, + "###0.7315###": 40657, + "###0.7317###": 40658, + "###0.7319###": 40659, + "###0.7321###": 40660, + "###0.7323###": 40661, + "###0.7325###": 40662, + "###0.7327###": 40663, + "###0.7329###": 40664, + "###0.7331###": 40665, + "###0.7333###": 40666, + "###0.7335###": 40667, + "###0.7337###": 40668, + "###0.7339###": 40669, + "###0.7341###": 40670, + "###0.7343###": 40671, + "###0.7345###": 40672, + "###0.7347###": 40673, + "###0.7349###": 40674, + "###0.7351###": 40675, + "###0.7353###": 40676, + "###0.7355###": 40677, + "###0.7357###": 40678, + "###0.7359###": 40679, + "###0.7361###": 40680, + "###0.7363###": 40681, + "###0.7365###": 40682, + "###0.7367###": 40683, + "###0.7369###": 40684, + "###0.7371###": 40685, + "###0.7373###": 40686, + "###0.7375###": 40687, + "###0.7377###": 40688, + "###0.7379###": 40689, + "###0.7381###": 40690, + "###0.7383###": 40691, + "###0.7385###": 40692, + "###0.7387###": 40693, + "###0.7389###": 40694, + "###0.7391###": 40695, + "###0.7393###": 40696, + "###0.7395###": 40697, + "###0.7397###": 40698, + "###0.7399###": 40699, + "###0.7401###": 40700, + "###0.7403###": 40701, + "###0.7405###": 40702, + "###0.7407###": 40703, + "###0.7409###": 40704, + "###0.7411###": 40705, + "###0.7413###": 40706, + "###0.7415###": 40707, + "###0.7417###": 40708, + "###0.7419###": 40709, + "###0.7421###": 40710, + "###0.7423###": 40711, + "###0.7425###": 40712, + "###0.7427###": 40713, + "###0.7429###": 40714, + "###0.7431###": 40715, + "###0.7433###": 40716, + "###0.7435###": 40717, + "###0.7437###": 40718, + "###0.7439###": 40719, + "###0.7441###": 40720, + "###0.7443###": 40721, + "###0.7445###": 40722, + "###0.7447###": 40723, + "###0.7449###": 40724, + "###0.7451###": 40725, + "###0.7453###": 40726, + "###0.7455###": 40727, + "###0.7457###": 40728, + "###0.7459###": 40729, + "###0.7461###": 40730, + "###0.7463###": 40731, + "###0.7465###": 40732, + "###0.7467###": 40733, + "###0.7469###": 40734, + "###0.7471###": 40735, + "###0.7473###": 40736, + "###0.7475###": 40737, + "###0.7477###": 40738, + "###0.7479###": 40739, + "###0.7481###": 40740, + "###0.7483###": 40741, + "###0.7485###": 40742, + "###0.7487###": 40743, + "###0.7489###": 40744, + "###0.7491###": 40745, + "###0.7493###": 40746, + "###0.7495###": 40747, + "###0.7497###": 40748, + "###0.7499###": 40749, + "###0.7501###": 40750, + "###0.7503###": 40751, + "###0.7505###": 40752, + "###0.7507###": 40753, + "###0.7509###": 40754, + "###0.7511###": 40755, + "###0.7513###": 40756, + "###0.7515###": 40757, + "###0.7517###": 40758, + "###0.7519###": 40759, + "###0.7521###": 40760, + "###0.7523###": 40761, + "###0.7525###": 40762, + "###0.7527###": 40763, + "###0.7529###": 40764, + "###0.7531###": 40765, + "###0.7533###": 40766, + "###0.7535###": 40767, + "###0.7537###": 40768, + "###0.7539###": 40769, + "###0.7541###": 40770, + "###0.7543###": 40771, + "###0.7545###": 40772, + "###0.7547###": 40773, + "###0.7549###": 40774, + "###0.7551###": 40775, + "###0.7553###": 40776, + "###0.7555###": 40777, + "###0.7557###": 40778, + "###0.7559###": 40779, + "###0.7561###": 40780, + "###0.7563###": 40781, + "###0.7565###": 40782, + "###0.7567###": 40783, + "###0.7569###": 40784, + "###0.7571###": 40785, + "###0.7573###": 40786, + "###0.7575###": 40787, + "###0.7577###": 40788, + "###0.7579###": 40789, + "###0.7581###": 40790, + "###0.7583###": 40791, + "###0.7585###": 40792, + "###0.7587###": 40793, + "###0.7589###": 40794, + "###0.7591###": 40795, + "###0.7593###": 40796, + "###0.7595###": 40797, + "###0.7597###": 40798, + "###0.7599###": 40799, + "###0.7601###": 40800, + "###0.7603###": 40801, + "###0.7605###": 40802, + "###0.7607###": 40803, + "###0.7609###": 40804, + "###0.7611###": 40805, + "###0.7613###": 40806, + "###0.7615###": 40807, + "###0.7617###": 40808, + "###0.7619###": 40809, + "###0.7621###": 40810, + "###0.7623###": 40811, + "###0.7625###": 40812, + "###0.7627###": 40813, + "###0.7629###": 40814, + "###0.7631###": 40815, + "###0.7633###": 40816, + "###0.7635###": 40817, + "###0.7637###": 40818, + "###0.7639###": 40819, + "###0.7641###": 40820, + "###0.7643###": 40821, + "###0.7645###": 40822, + "###0.7647###": 40823, + "###0.7649###": 40824, + "###0.7651###": 40825, + "###0.7653###": 40826, + "###0.7655###": 40827, + "###0.7657###": 40828, + "###0.7659###": 40829, + "###0.7661###": 40830, + "###0.7663###": 40831, + "###0.7665###": 40832, + "###0.7667###": 40833, + "###0.7669###": 40834, + "###0.7671###": 40835, + "###0.7673###": 40836, + "###0.7675###": 40837, + "###0.7677###": 40838, + "###0.7679###": 40839, + "###0.7681###": 40840, + "###0.7683###": 40841, + "###0.7685###": 40842, + "###0.7687###": 40843, + "###0.7689###": 40844, + "###0.7691###": 40845, + "###0.7693###": 40846, + "###0.7695###": 40847, + "###0.7697###": 40848, + "###0.7699###": 40849, + "###0.7701###": 40850, + "###0.7703###": 40851, + "###0.7705###": 40852, + "###0.7707###": 40853, + "###0.7709###": 40854, + "###0.7711###": 40855, + "###0.7713###": 40856, + "###0.7715###": 40857, + "###0.7717###": 40858, + "###0.7719###": 40859, + "###0.7721###": 40860, + "###0.7723###": 40861, + "###0.7725###": 40862, + "###0.7727###": 40863, + "###0.7729###": 40864, + "###0.7731###": 40865, + "###0.7733###": 40866, + "###0.7735###": 40867, + "###0.7737###": 40868, + "###0.7739###": 40869, + "###0.7741###": 40870, + "###0.7743###": 40871, + "###0.7745###": 40872, + "###0.7747###": 40873, + "###0.7749###": 40874, + "###0.7751###": 40875, + "###0.7753###": 40876, + "###0.7755###": 40877, + "###0.7757###": 40878, + "###0.7759###": 40879, + "###0.7761###": 40880, + "###0.7763###": 40881, + "###0.7765###": 40882, + "###0.7767###": 40883, + "###0.7769###": 40884, + "###0.7771###": 40885, + "###0.7773###": 40886, + "###0.7775###": 40887, + "###0.7777###": 40888, + "###0.7779###": 40889, + "###0.7781###": 40890, + "###0.7783###": 40891, + "###0.7785###": 40892, + "###0.7787###": 40893, + "###0.7789###": 40894, + "###0.7791###": 40895, + "###0.7793###": 40896, + "###0.7795###": 40897, + "###0.7797###": 40898, + "###0.7799###": 40899, + "###0.7801###": 40900, + "###0.7803###": 40901, + "###0.7805###": 40902, + "###0.7807###": 40903, + "###0.7809###": 40904, + "###0.7811###": 40905, + "###0.7813###": 40906, + "###0.7815###": 40907, + "###0.7817###": 40908, + "###0.7819###": 40909, + "###0.7821###": 40910, + "###0.7823###": 40911, + "###0.7825###": 40912, + "###0.7827###": 40913, + "###0.7829###": 40914, + "###0.7831###": 40915, + "###0.7833###": 40916, + "###0.7835###": 40917, + "###0.7837###": 40918, + "###0.7839###": 40919, + "###0.7841###": 40920, + "###0.7843###": 40921, + "###0.7845###": 40922, + "###0.7847###": 40923, + "###0.7849###": 40924, + "###0.7851###": 40925, + "###0.7853###": 40926, + "###0.7855###": 40927, + "###0.7857###": 40928, + "###0.7859###": 40929, + "###0.7861###": 40930, + "###0.7863###": 40931, + "###0.7865###": 40932, + "###0.7867###": 40933, + "###0.7869###": 40934, + "###0.7871###": 40935, + "###0.7873###": 40936, + "###0.7875###": 40937, + "###0.7877###": 40938, + "###0.7879###": 40939, + "###0.7881###": 40940, + "###0.7883###": 40941, + "###0.7885###": 40942, + "###0.7887###": 40943, + "###0.7889###": 40944, + "###0.7891###": 40945, + "###0.7893###": 40946, + "###0.7895###": 40947, + "###0.7897###": 40948, + "###0.7899###": 40949, + "###0.7901###": 40950, + "###0.7903###": 40951, + "###0.7905###": 40952, + "###0.7907###": 40953, + "###0.7909###": 40954, + "###0.7911###": 40955, + "###0.7913###": 40956, + "###0.7915###": 40957, + "###0.7917###": 40958, + "###0.7919###": 40959, + "###0.7921###": 40960, + "###0.7923###": 40961, + "###0.7925###": 40962, + "###0.7927###": 40963, + "###0.7929###": 40964, + "###0.7931###": 40965, + "###0.7933###": 40966, + "###0.7935###": 40967, + "###0.7937###": 40968, + "###0.7939###": 40969, + "###0.7941###": 40970, + "###0.7943###": 40971, + "###0.7945###": 40972, + "###0.7947###": 40973, + "###0.7949###": 40974, + "###0.7951###": 40975, + "###0.7953###": 40976, + "###0.7955###": 40977, + "###0.7957###": 40978, + "###0.7959###": 40979, + "###0.7961###": 40980, + "###0.7963###": 40981, + "###0.7965###": 40982, + "###0.7967###": 40983, + "###0.7969###": 40984, + "###0.7971###": 40985, + "###0.7973###": 40986, + "###0.7975###": 40987, + "###0.7977###": 40988, + "###0.7979###": 40989, + "###0.7981###": 40990, + "###0.7983###": 40991, + "###0.7985###": 40992, + "###0.7987###": 40993, + "###0.7989###": 40994, + "###0.7991###": 40995, + "###0.7993###": 40996, + "###0.7995###": 40997, + "###0.7997###": 40998, + "###0.7999###": 40999, + "###0.8001###": 41000, + "###0.8003###": 41001, + "###0.8005###": 41002, + "###0.8007###": 41003, + "###0.8009###": 41004, + "###0.8011###": 41005, + "###0.8013###": 41006, + "###0.8015###": 41007, + "###0.8017###": 41008, + "###0.8019###": 41009, + "###0.8021###": 41010, + "###0.8023###": 41011, + "###0.8025###": 41012, + "###0.8027###": 41013, + "###0.8029###": 41014, + "###0.8031###": 41015, + "###0.8033###": 41016, + "###0.8035###": 41017, + "###0.8037###": 41018, + "###0.8039###": 41019, + "###0.8041###": 41020, + "###0.8043###": 41021, + "###0.8045###": 41022, + "###0.8047###": 41023, + "###0.8049###": 41024, + "###0.8051###": 41025, + "###0.8053###": 41026, + "###0.8055###": 41027, + "###0.8057###": 41028, + "###0.8059###": 41029, + "###0.8061###": 41030, + "###0.8063###": 41031, + "###0.8065###": 41032, + "###0.8067###": 41033, + "###0.8069###": 41034, + "###0.8071###": 41035, + "###0.8073###": 41036, + "###0.8075###": 41037, + "###0.8077###": 41038, + "###0.8079###": 41039, + "###0.8081###": 41040, + "###0.8083###": 41041, + "###0.8085###": 41042, + "###0.8087###": 41043, + "###0.8089###": 41044, + "###0.8091###": 41045, + "###0.8093###": 41046, + "###0.8095###": 41047, + "###0.8097###": 41048, + "###0.8099###": 41049, + "###0.8101###": 41050, + "###0.8103###": 41051, + "###0.8105###": 41052, + "###0.8107###": 41053, + "###0.8109###": 41054, + "###0.8111###": 41055, + "###0.8113###": 41056, + "###0.8115###": 41057, + "###0.8117###": 41058, + "###0.8119###": 41059, + "###0.8121###": 41060, + "###0.8123###": 41061, + "###0.8125###": 41062, + "###0.8127###": 41063, + "###0.8129###": 41064, + "###0.8131###": 41065, + "###0.8133###": 41066, + "###0.8135###": 41067, + "###0.8137###": 41068, + "###0.8139###": 41069, + "###0.8141###": 41070, + "###0.8143###": 41071, + "###0.8145###": 41072, + "###0.8147###": 41073, + "###0.8149###": 41074, + "###0.8151###": 41075, + "###0.8153###": 41076, + "###0.8155###": 41077, + "###0.8157###": 41078, + "###0.8159###": 41079, + "###0.8161###": 41080, + "###0.8163###": 41081, + "###0.8165###": 41082, + "###0.8167###": 41083, + "###0.8169###": 41084, + "###0.8171###": 41085, + "###0.8173###": 41086, + "###0.8175###": 41087, + "###0.8177###": 41088, + "###0.8179###": 41089, + "###0.8181###": 41090, + "###0.8183###": 41091, + "###0.8185###": 41092, + "###0.8187###": 41093, + "###0.8189###": 41094, + "###0.8191###": 41095, + "###0.8193###": 41096, + "###0.8195###": 41097, + "###0.8197###": 41098, + "###0.8199###": 41099, + "###0.8201###": 41100, + "###0.8203###": 41101, + "###0.8205###": 41102, + "###0.8207###": 41103, + "###0.8209###": 41104, + "###0.8211###": 41105, + "###0.8213###": 41106, + "###0.8215###": 41107, + "###0.8217###": 41108, + "###0.8219###": 41109, + "###0.8221###": 41110, + "###0.8223###": 41111, + "###0.8225###": 41112, + "###0.8227###": 41113, + "###0.8229###": 41114, + "###0.8231###": 41115, + "###0.8233###": 41116, + "###0.8235###": 41117, + "###0.8237###": 41118, + "###0.8239###": 41119, + "###0.8241###": 41120, + "###0.8243###": 41121, + "###0.8245###": 41122, + "###0.8247###": 41123, + "###0.8249###": 41124, + "###0.8251###": 41125, + "###0.8253###": 41126, + "###0.8255###": 41127, + "###0.8257###": 41128, + "###0.8259###": 41129, + "###0.8261###": 41130, + "###0.8263###": 41131, + "###0.8265###": 41132, + "###0.8267###": 41133, + "###0.8269###": 41134, + "###0.8271###": 41135, + "###0.8273###": 41136, + "###0.8275###": 41137, + "###0.8277###": 41138, + "###0.8279###": 41139, + "###0.8281###": 41140, + "###0.8283###": 41141, + "###0.8285###": 41142, + "###0.8287###": 41143, + "###0.8289###": 41144, + "###0.8291###": 41145, + "###0.8293###": 41146, + "###0.8295###": 41147, + "###0.8297###": 41148, + "###0.8299###": 41149, + "###0.8301###": 41150, + "###0.8303###": 41151, + "###0.8305###": 41152, + "###0.8307###": 41153, + "###0.8309###": 41154, + "###0.8311###": 41155, + "###0.8313###": 41156, + "###0.8315###": 41157, + "###0.8317###": 41158, + "###0.8319###": 41159, + "###0.8321###": 41160, + "###0.8323###": 41161, + "###0.8325###": 41162, + "###0.8327###": 41163, + "###0.8329###": 41164, + "###0.8331###": 41165, + "###0.8333###": 41166, + "###0.8335###": 41167, + "###0.8337###": 41168, + "###0.8339###": 41169, + "###0.8341###": 41170, + "###0.8343###": 41171, + "###0.8345###": 41172, + "###0.8347###": 41173, + "###0.8349###": 41174, + "###0.8351###": 41175, + "###0.8353###": 41176, + "###0.8355###": 41177, + "###0.8357###": 41178, + "###0.8359###": 41179, + "###0.8361###": 41180, + "###0.8363###": 41181, + "###0.8365###": 41182, + "###0.8367###": 41183, + "###0.8369###": 41184, + "###0.8371###": 41185, + "###0.8373###": 41186, + "###0.8375###": 41187, + "###0.8377###": 41188, + "###0.8379###": 41189, + "###0.8381###": 41190, + "###0.8383###": 41191, + "###0.8385###": 41192, + "###0.8387###": 41193, + "###0.8389###": 41194, + "###0.8391###": 41195, + "###0.8393###": 41196, + "###0.8395###": 41197, + "###0.8397###": 41198, + "###0.8399###": 41199, + "###0.8401###": 41200, + "###0.8403###": 41201, + "###0.8405###": 41202, + "###0.8407###": 41203, + "###0.8409###": 41204, + "###0.8411###": 41205, + "###0.8413###": 41206, + "###0.8415###": 41207, + "###0.8417###": 41208, + "###0.8419###": 41209, + "###0.8421###": 41210, + "###0.8423###": 41211, + "###0.8425###": 41212, + "###0.8427###": 41213, + "###0.8429###": 41214, + "###0.8431###": 41215, + "###0.8433###": 41216, + "###0.8435###": 41217, + "###0.8437###": 41218, + "###0.8439###": 41219, + "###0.8441###": 41220, + "###0.8443###": 41221, + "###0.8445###": 41222, + "###0.8447###": 41223, + "###0.8449###": 41224, + "###0.8451###": 41225, + "###0.8453###": 41226, + "###0.8455###": 41227, + "###0.8457###": 41228, + "###0.8459###": 41229, + "###0.8461###": 41230, + "###0.8463###": 41231, + "###0.8465###": 41232, + "###0.8467###": 41233, + "###0.8469###": 41234, + "###0.8471###": 41235, + "###0.8473###": 41236, + "###0.8475###": 41237, + "###0.8477###": 41238, + "###0.8479###": 41239, + "###0.8481###": 41240, + "###0.8483###": 41241, + "###0.8485###": 41242, + "###0.8487###": 41243, + "###0.8489###": 41244, + "###0.8491###": 41245, + "###0.8493###": 41246, + "###0.8495###": 41247, + "###0.8497###": 41248, + "###0.8499###": 41249, + "###0.8501###": 41250, + "###0.8503###": 41251, + "###0.8505###": 41252, + "###0.8507###": 41253, + "###0.8509###": 41254, + "###0.8511###": 41255, + "###0.8513###": 41256, + "###0.8515###": 41257, + "###0.8517###": 41258, + "###0.8519###": 41259, + "###0.8521###": 41260, + "###0.8523###": 41261, + "###0.8525###": 41262, + "###0.8527###": 41263, + "###0.8529###": 41264, + "###0.8531###": 41265, + "###0.8533###": 41266, + "###0.8535###": 41267, + "###0.8537###": 41268, + "###0.8539###": 41269, + "###0.8541###": 41270, + "###0.8543###": 41271, + "###0.8545###": 41272, + "###0.8547###": 41273, + "###0.8549###": 41274, + "###0.8551###": 41275, + "###0.8553###": 41276, + "###0.8555###": 41277, + "###0.8557###": 41278, + "###0.8559###": 41279, + "###0.8561###": 41280, + "###0.8563###": 41281, + "###0.8565###": 41282, + "###0.8567###": 41283, + "###0.8569###": 41284, + "###0.8571###": 41285, + "###0.8573###": 41286, + "###0.8575###": 41287, + "###0.8577###": 41288, + "###0.8579###": 41289, + "###0.8581###": 41290, + "###0.8583###": 41291, + "###0.8585###": 41292, + "###0.8587###": 41293, + "###0.8589###": 41294, + "###0.8591###": 41295, + "###0.8593###": 41296, + "###0.8595###": 41297, + "###0.8597###": 41298, + "###0.8599###": 41299, + "###0.8601###": 41300, + "###0.8603###": 41301, + "###0.8605###": 41302, + "###0.8607###": 41303, + "###0.8609###": 41304, + "###0.8611###": 41305, + "###0.8613###": 41306, + "###0.8615###": 41307, + "###0.8617###": 41308, + "###0.8619###": 41309, + "###0.8621###": 41310, + "###0.8623###": 41311, + "###0.8625###": 41312, + "###0.8627###": 41313, + "###0.8629###": 41314, + "###0.8631###": 41315, + "###0.8633###": 41316, + "###0.8635###": 41317, + "###0.8637###": 41318, + "###0.8639###": 41319, + "###0.8641###": 41320, + "###0.8643###": 41321, + "###0.8645###": 41322, + "###0.8647###": 41323, + "###0.8649###": 41324, + "###0.8651###": 41325, + "###0.8653###": 41326, + "###0.8655###": 41327, + "###0.8657###": 41328, + "###0.8659###": 41329, + "###0.8661###": 41330, + "###0.8663###": 41331, + "###0.8665###": 41332, + "###0.8667###": 41333, + "###0.8669###": 41334, + "###0.8671###": 41335, + "###0.8673###": 41336, + "###0.8675###": 41337, + "###0.8677###": 41338, + "###0.8679###": 41339, + "###0.8681###": 41340, + "###0.8683###": 41341, + "###0.8685###": 41342, + "###0.8687###": 41343, + "###0.8689###": 41344, + "###0.8691###": 41345, + "###0.8693###": 41346, + "###0.8695###": 41347, + "###0.8697###": 41348, + "###0.8699###": 41349, + "###0.8701###": 41350, + "###0.8703###": 41351, + "###0.8705###": 41352, + "###0.8707###": 41353, + "###0.8709###": 41354, + "###0.8711###": 41355, + "###0.8713###": 41356, + "###0.8715###": 41357, + "###0.8717###": 41358, + "###0.8719###": 41359, + "###0.8721###": 41360, + "###0.8723###": 41361, + "###0.8725###": 41362, + "###0.8727###": 41363, + "###0.8729###": 41364, + "###0.8731###": 41365, + "###0.8733###": 41366, + "###0.8735###": 41367, + "###0.8737###": 41368, + "###0.8739###": 41369, + "###0.8741###": 41370, + "###0.8743###": 41371, + "###0.8745###": 41372, + "###0.8747###": 41373, + "###0.8749###": 41374, + "###0.8751###": 41375, + "###0.8753###": 41376, + "###0.8755###": 41377, + "###0.8757###": 41378, + "###0.8759###": 41379, + "###0.8761###": 41380, + "###0.8763###": 41381, + "###0.8765###": 41382, + "###0.8767###": 41383, + "###0.8769###": 41384, + "###0.8771###": 41385, + "###0.8773###": 41386, + "###0.8775###": 41387, + "###0.8777###": 41388, + "###0.8779###": 41389, + "###0.8781###": 41390, + "###0.8783###": 41391, + "###0.8785###": 41392, + "###0.8787###": 41393, + "###0.8789###": 41394, + "###0.8791###": 41395, + "###0.8793###": 41396, + "###0.8795###": 41397, + "###0.8797###": 41398, + "###0.8799###": 41399, + "###0.8801###": 41400, + "###0.8803###": 41401, + "###0.8805###": 41402, + "###0.8807###": 41403, + "###0.8809###": 41404, + "###0.8811###": 41405, + "###0.8813###": 41406, + "###0.8815###": 41407, + "###0.8817###": 41408, + "###0.8819###": 41409, + "###0.8821###": 41410, + "###0.8823###": 41411, + "###0.8825###": 41412, + "###0.8827###": 41413, + "###0.8829###": 41414, + "###0.8831###": 41415, + "###0.8833###": 41416, + "###0.8835###": 41417, + "###0.8837###": 41418, + "###0.8839###": 41419, + "###0.8841###": 41420, + "###0.8843###": 41421, + "###0.8845###": 41422, + "###0.8847###": 41423, + "###0.8849###": 41424, + "###0.8851###": 41425, + "###0.8853###": 41426, + "###0.8855###": 41427, + "###0.8857###": 41428, + "###0.8859###": 41429, + "###0.8861###": 41430, + "###0.8863###": 41431, + "###0.8865###": 41432, + "###0.8867###": 41433, + "###0.8869###": 41434, + "###0.8871###": 41435, + "###0.8873###": 41436, + "###0.8875###": 41437, + "###0.8877###": 41438, + "###0.8879###": 41439, + "###0.8881###": 41440, + "###0.8883###": 41441, + "###0.8885###": 41442, + "###0.8887###": 41443, + "###0.8889###": 41444, + "###0.8891###": 41445, + "###0.8893###": 41446, + "###0.8895###": 41447, + "###0.8897###": 41448, + "###0.8899###": 41449, + "###0.8901###": 41450, + "###0.8903###": 41451, + "###0.8905###": 41452, + "###0.8907###": 41453, + "###0.8909###": 41454, + "###0.8911###": 41455, + "###0.8913###": 41456, + "###0.8915###": 41457, + "###0.8917###": 41458, + "###0.8919###": 41459, + "###0.8921###": 41460, + "###0.8923###": 41461, + "###0.8925###": 41462, + "###0.8927###": 41463, + "###0.8929###": 41464, + "###0.8931###": 41465, + "###0.8933###": 41466, + "###0.8935###": 41467, + "###0.8937###": 41468, + "###0.8939###": 41469, + "###0.8941###": 41470, + "###0.8943###": 41471, + "###0.8945###": 41472, + "###0.8947###": 41473, + "###0.8949###": 41474, + "###0.8951###": 41475, + "###0.8953###": 41476, + "###0.8955###": 41477, + "###0.8957###": 41478, + "###0.8959###": 41479, + "###0.8961###": 41480, + "###0.8963###": 41481, + "###0.8965###": 41482, + "###0.8967###": 41483, + "###0.8969###": 41484, + "###0.8971###": 41485, + "###0.8973###": 41486, + "###0.8975###": 41487, + "###0.8977###": 41488, + "###0.8979###": 41489, + "###0.8981###": 41490, + "###0.8983###": 41491, + "###0.8985###": 41492, + "###0.8987###": 41493, + "###0.8989###": 41494, + "###0.8991###": 41495, + "###0.8993###": 41496, + "###0.8995###": 41497, + "###0.8997###": 41498, + "###0.8999###": 41499, + "###0.9001###": 41500, + "###0.9003###": 41501, + "###0.9005###": 41502, + "###0.9007###": 41503, + "###0.9009###": 41504, + "###0.9011###": 41505, + "###0.9013###": 41506, + "###0.9015###": 41507, + "###0.9017###": 41508, + "###0.9019###": 41509, + "###0.9021###": 41510, + "###0.9023###": 41511, + "###0.9025###": 41512, + "###0.9027###": 41513, + "###0.9029###": 41514, + "###0.9031###": 41515, + "###0.9033###": 41516, + "###0.9035###": 41517, + "###0.9037###": 41518, + "###0.9039###": 41519, + "###0.9041###": 41520, + "###0.9043###": 41521, + "###0.9045###": 41522, + "###0.9047###": 41523, + "###0.9049###": 41524, + "###0.9051###": 41525, + "###0.9053###": 41526, + "###0.9055###": 41527, + "###0.9057###": 41528, + "###0.9059###": 41529, + "###0.9061###": 41530, + "###0.9063###": 41531, + "###0.9065###": 41532, + "###0.9067###": 41533, + "###0.9069###": 41534, + "###0.9071###": 41535, + "###0.9073###": 41536, + "###0.9075###": 41537, + "###0.9077###": 41538, + "###0.9079###": 41539, + "###0.9081###": 41540, + "###0.9083###": 41541, + "###0.9085###": 41542, + "###0.9087###": 41543, + "###0.9089###": 41544, + "###0.9091###": 41545, + "###0.9093###": 41546, + "###0.9095###": 41547, + "###0.9097###": 41548, + "###0.9099###": 41549, + "###0.9101###": 41550, + "###0.9103###": 41551, + "###0.9105###": 41552, + "###0.9107###": 41553, + "###0.9109###": 41554, + "###0.9111###": 41555, + "###0.9113###": 41556, + "###0.9115###": 41557, + "###0.9117###": 41558, + "###0.9119###": 41559, + "###0.9121###": 41560, + "###0.9123###": 41561, + "###0.9125###": 41562, + "###0.9127###": 41563, + "###0.9129###": 41564, + "###0.9131###": 41565, + "###0.9133###": 41566, + "###0.9135###": 41567, + "###0.9137###": 41568, + "###0.9139###": 41569, + "###0.9141###": 41570, + "###0.9143###": 41571, + "###0.9145###": 41572, + "###0.9147###": 41573, + "###0.9149###": 41574, + "###0.9151###": 41575, + "###0.9153###": 41576, + "###0.9155###": 41577, + "###0.9157###": 41578, + "###0.9159###": 41579, + "###0.9161###": 41580, + "###0.9163###": 41581, + "###0.9165###": 41582, + "###0.9167###": 41583, + "###0.9169###": 41584, + "###0.9171###": 41585, + "###0.9173###": 41586, + "###0.9175###": 41587, + "###0.9177###": 41588, + "###0.9179###": 41589, + "###0.9181###": 41590, + "###0.9183###": 41591, + "###0.9185###": 41592, + "###0.9187###": 41593, + "###0.9189###": 41594, + "###0.9191###": 41595, + "###0.9193###": 41596, + "###0.9195###": 41597, + "###0.9197###": 41598, + "###0.9199###": 41599, + "###0.9201###": 41600, + "###0.9203###": 41601, + "###0.9205###": 41602, + "###0.9207###": 41603, + "###0.9209###": 41604, + "###0.9211###": 41605, + "###0.9213###": 41606, + "###0.9215###": 41607, + "###0.9217###": 41608, + "###0.9219###": 41609, + "###0.9221###": 41610, + "###0.9223###": 41611, + "###0.9225###": 41612, + "###0.9227###": 41613, + "###0.9229###": 41614, + "###0.9231###": 41615, + "###0.9233###": 41616, + "###0.9235###": 41617, + "###0.9237###": 41618, + "###0.9239###": 41619, + "###0.9241###": 41620, + "###0.9243###": 41621, + "###0.9245###": 41622, + "###0.9247###": 41623, + "###0.9249###": 41624, + "###0.9251###": 41625, + "###0.9253###": 41626, + "###0.9255###": 41627, + "###0.9257###": 41628, + "###0.9259###": 41629, + "###0.9261###": 41630, + "###0.9263###": 41631, + "###0.9265###": 41632, + "###0.9267###": 41633, + "###0.9269###": 41634, + "###0.9271###": 41635, + "###0.9273###": 41636, + "###0.9275###": 41637, + "###0.9277###": 41638, + "###0.9279###": 41639, + "###0.9281###": 41640, + "###0.9283###": 41641, + "###0.9285###": 41642, + "###0.9287###": 41643, + "###0.9289###": 41644, + "###0.9291###": 41645, + "###0.9293###": 41646, + "###0.9295###": 41647, + "###0.9297###": 41648, + "###0.9299###": 41649, + "###0.9301###": 41650, + "###0.9303###": 41651, + "###0.9305###": 41652, + "###0.9307###": 41653, + "###0.9309###": 41654, + "###0.9311###": 41655, + "###0.9313###": 41656, + "###0.9315###": 41657, + "###0.9317###": 41658, + "###0.9319###": 41659, + "###0.9321###": 41660, + "###0.9323###": 41661, + "###0.9325###": 41662, + "###0.9327###": 41663, + "###0.9329###": 41664, + "###0.9331###": 41665, + "###0.9333###": 41666, + "###0.9335###": 41667, + "###0.9337###": 41668, + "###0.9339###": 41669, + "###0.9341###": 41670, + "###0.9343###": 41671, + "###0.9345###": 41672, + "###0.9347###": 41673, + "###0.9349###": 41674, + "###0.9351###": 41675, + "###0.9353###": 41676, + "###0.9355###": 41677, + "###0.9357###": 41678, + "###0.9359###": 41679, + "###0.9361###": 41680, + "###0.9363###": 41681, + "###0.9365###": 41682, + "###0.9367###": 41683, + "###0.9369###": 41684, + "###0.9371###": 41685, + "###0.9373###": 41686, + "###0.9375###": 41687, + "###0.9377###": 41688, + "###0.9379###": 41689, + "###0.9381###": 41690, + "###0.9383###": 41691, + "###0.9385###": 41692, + "###0.9387###": 41693, + "###0.9389###": 41694, + "###0.9391###": 41695, + "###0.9393###": 41696, + "###0.9395###": 41697, + "###0.9397###": 41698, + "###0.9399###": 41699, + "###0.9401###": 41700, + "###0.9403###": 41701, + "###0.9405###": 41702, + "###0.9407###": 41703, + "###0.9409###": 41704, + "###0.9411###": 41705, + "###0.9413###": 41706, + "###0.9415###": 41707, + "###0.9417###": 41708, + "###0.9419###": 41709, + "###0.9421###": 41710, + "###0.9423###": 41711, + "###0.9425###": 41712, + "###0.9427###": 41713, + "###0.9429###": 41714, + "###0.9431###": 41715, + "###0.9433###": 41716, + "###0.9435###": 41717, + "###0.9437###": 41718, + "###0.9439###": 41719, + "###0.9441###": 41720, + "###0.9443###": 41721, + "###0.9445###": 41722, + "###0.9447###": 41723, + "###0.9449###": 41724, + "###0.9451###": 41725, + "###0.9453###": 41726, + "###0.9455###": 41727, + "###0.9457###": 41728, + "###0.9459###": 41729, + "###0.9461###": 41730, + "###0.9463###": 41731, + "###0.9465###": 41732, + "###0.9467###": 41733, + "###0.9469###": 41734, + "###0.9471###": 41735, + "###0.9473###": 41736, + "###0.9475###": 41737, + "###0.9477###": 41738, + "###0.9479###": 41739, + "###0.9481###": 41740, + "###0.9483###": 41741, + "###0.9485###": 41742, + "###0.9487###": 41743, + "###0.9489###": 41744, + "###0.9491###": 41745, + "###0.9493###": 41746, + "###0.9495###": 41747, + "###0.9497###": 41748, + "###0.9499###": 41749, + "###0.9501###": 41750, + "###0.9503###": 41751, + "###0.9505###": 41752, + "###0.9507###": 41753, + "###0.9509###": 41754, + "###0.9511###": 41755, + "###0.9513###": 41756, + "###0.9515###": 41757, + "###0.9517###": 41758, + "###0.9519###": 41759, + "###0.9521###": 41760, + "###0.9523###": 41761, + "###0.9525###": 41762, + "###0.9527###": 41763, + "###0.9529###": 41764, + "###0.9531###": 41765, + "###0.9533###": 41766, + "###0.9535###": 41767, + "###0.9537###": 41768, + "###0.9539###": 41769, + "###0.9541###": 41770, + "###0.9543###": 41771, + "###0.9545###": 41772, + "###0.9547###": 41773, + "###0.9549###": 41774, + "###0.9551###": 41775, + "###0.9553###": 41776, + "###0.9555###": 41777, + "###0.9557###": 41778, + "###0.9559###": 41779, + "###0.9561###": 41780, + "###0.9563###": 41781, + "###0.9565###": 41782, + "###0.9567###": 41783, + "###0.9569###": 41784, + "###0.9571###": 41785, + "###0.9573###": 41786, + "###0.9575###": 41787, + "###0.9577###": 41788, + "###0.9579###": 41789, + "###0.9581###": 41790, + "###0.9583###": 41791, + "###0.9585###": 41792, + "###0.9587###": 41793, + "###0.9589###": 41794, + "###0.9591###": 41795, + "###0.9593###": 41796, + "###0.9595###": 41797, + "###0.9597###": 41798, + "###0.9599###": 41799, + "###0.9601###": 41800, + "###0.9603###": 41801, + "###0.9605###": 41802, + "###0.9607###": 41803, + "###0.9609###": 41804, + "###0.9611###": 41805, + "###0.9613###": 41806, + "###0.9615###": 41807, + "###0.9617###": 41808, + "###0.9619###": 41809, + "###0.9621###": 41810, + "###0.9623###": 41811, + "###0.9625###": 41812, + "###0.9627###": 41813, + "###0.9629###": 41814, + "###0.9631###": 41815, + "###0.9633###": 41816, + "###0.9635###": 41817, + "###0.9637###": 41818, + "###0.9639###": 41819, + "###0.9641###": 41820, + "###0.9643###": 41821, + "###0.9645###": 41822, + "###0.9647###": 41823, + "###0.9649###": 41824, + "###0.9651###": 41825, + "###0.9653###": 41826, + "###0.9655###": 41827, + "###0.9657###": 41828, + "###0.9659###": 41829, + "###0.9661###": 41830, + "###0.9663###": 41831, + "###0.9665###": 41832, + "###0.9667###": 41833, + "###0.9669###": 41834, + "###0.9671###": 41835, + "###0.9673###": 41836, + "###0.9675###": 41837, + "###0.9677###": 41838, + "###0.9679###": 41839, + "###0.9681###": 41840, + "###0.9683###": 41841, + "###0.9685###": 41842, + "###0.9687###": 41843, + "###0.9689###": 41844, + "###0.9691###": 41845, + "###0.9693###": 41846, + "###0.9695###": 41847, + "###0.9697###": 41848, + "###0.9699###": 41849, + "###0.9701###": 41850, + "###0.9703###": 41851, + "###0.9705###": 41852, + "###0.9707###": 41853, + "###0.9709###": 41854, + "###0.9711###": 41855, + "###0.9713###": 41856, + "###0.9715###": 41857, + "###0.9717###": 41858, + "###0.9719###": 41859, + "###0.9721###": 41860, + "###0.9723###": 41861, + "###0.9725###": 41862, + "###0.9727###": 41863, + "###0.9729###": 41864, + "###0.9731###": 41865, + "###0.9733###": 41866, + "###0.9735###": 41867, + "###0.9737###": 41868, + "###0.9739###": 41869, + "###0.9741###": 41870, + "###0.9743###": 41871, + "###0.9745###": 41872, + "###0.9747###": 41873, + "###0.9749###": 41874, + "###0.9751###": 41875, + "###0.9753###": 41876, + "###0.9755###": 41877, + "###0.9757###": 41878, + "###0.9759###": 41879, + "###0.9761###": 41880, + "###0.9763###": 41881, + "###0.9765###": 41882, + "###0.9767###": 41883, + "###0.9769###": 41884, + "###0.9771###": 41885, + "###0.9773###": 41886, + "###0.9775###": 41887, + "###0.9777###": 41888, + "###0.9779###": 41889, + "###0.9781###": 41890, + "###0.9783###": 41891, + "###0.9785###": 41892, + "###0.9787###": 41893, + "###0.9789###": 41894, + "###0.9791###": 41895, + "###0.9793###": 41896, + "###0.9795###": 41897, + "###0.9797###": 41898, + "###0.9799###": 41899, + "###0.9801###": 41900, + "###0.9803###": 41901, + "###0.9805###": 41902, + "###0.9807###": 41903, + "###0.9809###": 41904, + "###0.9811###": 41905, + "###0.9813###": 41906, + "###0.9815###": 41907, + "###0.9817###": 41908, + "###0.9819###": 41909, + "###0.9821###": 41910, + "###0.9823###": 41911, + "###0.9825###": 41912, + "###0.9827###": 41913, + "###0.9829###": 41914, + "###0.9831###": 41915, + "###0.9833###": 41916, + "###0.9835###": 41917, + "###0.9837###": 41918, + "###0.9839###": 41919, + "###0.9841###": 41920, + "###0.9843###": 41921, + "###0.9845###": 41922, + "###0.9847###": 41923, + "###0.9849###": 41924, + "###0.9851###": 41925, + "###0.9853###": 41926, + "###0.9855###": 41927, + "###0.9857###": 41928, + "###0.9859###": 41929, + "###0.9861###": 41930, + "###0.9863###": 41931, + "###0.9865###": 41932, + "###0.9867###": 41933, + "###0.9869###": 41934, + "###0.9871###": 41935, + "###0.9873###": 41936, + "###0.9875###": 41937, + "###0.9877###": 41938, + "###0.9879###": 41939, + "###0.9881###": 41940, + "###0.9883###": 41941, + "###0.9885###": 41942, + "###0.9887###": 41943, + "###0.9889###": 41944, + "###0.9891###": 41945, + "###0.9893###": 41946, + "###0.9895###": 41947, + "###0.9897###": 41948, + "###0.9899###": 41949, + "###0.9901###": 41950, + "###0.9903###": 41951, + "###0.9905###": 41952, + "###0.9907###": 41953, + "###0.9909###": 41954, + "###0.9911###": 41955, + "###0.9913###": 41956, + "###0.9915###": 41957, + "###0.9917###": 41958, + "###0.9919###": 41959, + "###0.9921###": 41960, + "###0.9923###": 41961, + "###0.9925###": 41962, + "###0.9927###": 41963, + "###0.9929###": 41964, + "###0.9931###": 41965, + "###0.9933###": 41966, + "###0.9935###": 41967, + "###0.9937###": 41968, + "###0.9939###": 41969, + "###0.9941###": 41970, + "###0.9943###": 41971, + "###0.9945###": 41972, + "###0.9947###": 41973, + "###0.9949###": 41974, + "###0.9951###": 41975, + "###0.9953###": 41976, + "###0.9955###": 41977, + "###0.9957###": 41978, + "###0.9959###": 41979, + "###0.9961###": 41980, + "###0.9963###": 41981, + "###0.9965###": 41982, + "###0.9967###": 41983, + "###0.9969###": 41984, + "###0.9971###": 41985, + "###0.9973###": 41986, + "###0.9975###": 41987, + "###0.9977###": 41988, + "###0.9979###": 41989, + "###0.9981###": 41990, + "###0.9983###": 41991, + "###0.9985###": 41992, + "###0.9987###": 41993, + "###0.9989###": 41994, + "###0.9991###": 41995, + "###0.9993###": 41996, + "###0.9995###": 41997, + "###0.9997###": 41998, + "###0.9999###": 41999, + "###Nan###": 42000 +} diff --git a/architecture.png b/architecture.png new file mode 100644 index 0000000000000000000000000000000000000000..7d16bf46461a6508dbc4fd1c67b2ddc60699560b GIT binary patch literal 309599 zcmeFZWmjB5yDf?a3+@Cb5S-u=+}(q_ySux)26uP&#@*c|IE}l*?d*Nd{c^|I@BIOX zG1jQX>gw*2hezg|MYz1I7$Q6#JQx@lqJ+4xA{ZF7C>R(dCF~c_6G&Swdr$-Js3;}~ zRy~D(0{X?xSWUu2Mh1);bPo##1&#*>{jUq?;syWq|K5v&Q-VSM*K-IkuuyX_sQ=YR z7S#Uxi345#-t*rrWG?vs>J5693-P~uLyP7@{_lH8%71Tr8Zg)ZHE?#~>W*MwSmggM za0$ilS72cLU=qRt%5LCi+Av-ii|E;R*(e@xUE-IdGW=G=5dnUBy%5x}`O2smg_N+= zl+*;^MdFwk@=!&v)M0)-In;BWmvIiC&pJ2so~a$<Ew?6K zBO!mJi@~ORNX;uIU;8?PZz)J&VIczih>8D?4Zn-%4jzqbKufpVD^f;mtQ_qn-N5i} z81f$s>%orM&g5qLL_-076ci{Z@c(n;fCKSa5AaUI*S1<%myTj00ggkHDU7NK%>9pF z{%>GzU=TmQoKHiULmckf{)vmr|MK%Y)&Ft0|2-ALU_Un4^H6oF$l1b!+emJUbSB*Y z^Wgs1z!gbn@Wz4O2@rJWhYr_N>1f|aQUAwDL4i*Tg7J#c^wd!1Pa{wP)qkj(ko|{| zHKT%IzXVZ;TC2uu{l^h;BZG@XEj@I)k4F7Zi~C=%)kgALKjCzZ4gPhh5cmHdHuS$& zC_A`^6{Ub;Iz4eh^grw!6!$<(OVCrJGBXPm>)l+5hxta2{DKfeE1o#8O- z<5@C|szVSUzYz3i)`|q~>+3s~!On0no*H|zKf2c*v$-MLxZ^< z$qrXL0$koNjj9e(Zlb-+Ty}%E?ImGiXa&Dq&T@^%Q)ZF*-uS<&l->4zB&gD8ium|=wN-VZ^8Ob`V2Dw$utbr$ufTYo zb^`Afl;o)TSURLFdjp^wy`CNJ+nn!?XV3Cej{oMtZn$oH-^~aiD|EP=mnxSj5^{}K zrY*&jiJ2`|Yg^1Sm`rE=5_7%SsFOFF%H&iol_!bh_OA7L_wab!biL2p^ag$T@m?%n zv*uQfF5gr9vWw%w66fAw!CNRw2dTzkh+Q30)paC9*{|-5+Z@b)4No zp-6YYikkG;Ds<3?C=O9AJueM6m`vuAibSZHR_ty2yhd-i9}z^>&&K#q|Vg7Ko+GsEcuhHev6gsU^d}IylH)6Tf$=PJHnSRxl zr1E@P(|x>d+x`0y2EZ(gh8h+YCO`e7=Wg^zPT|hZP9{S1XrK{jKPf1Dq`laT(7*2E zi67wYz&N4vS(&W<=*bfbm5$~6Xw589o=Wt}9zAN)f;1XSrb#`yo#vaapQhotN@ul{ z2JKt&G~M&YSiPm+C^Nby)u|NI{G*kZ9v-(_?I0Uy8Ksx|F(GfpFiNJ$G+|Z=96fm`x^dfQuEWQZEUzAZOomi`wdRg64d=m8CZr#Qq>HYXU5+ z(e0Mi?r?D)3!qlQOziDM@>eJjon_zlDqvGfFlp{lG#QB_!Rqf*gi_h$l+im;tTPbV zB?3q~Q-mZz8~p7HhO^;`+8u%aa>0kkZevwx!>nDU!J6^Rg^m?F)w*Zb=)_1#IYOna z#|RYvV+2}~1=>HS%QcrtgOs%`Kbo(C5zuK3d3@el+tdTUAWoP|aD;+=!z}x4q{hZT z3hRad;rV#+yW4k_Urb%1A7V4b>tWUOZs?os3UvbaH`txqr-M}8;u^q9L<+rjx}lcA zN!gR%@FEPSeQeQ<9QQSp{%Ry$_!xnNF->Z|R$Bq3D?kea1xK$UeIE{jFq~h@3SXPU zGoC)HTQKy2D6iqi^m^tGO(c|VPO@f`TJ?)^=_f?*>p|@BDjF*n^-3po>M2ctU@#Sz zoKA-GcO{U|=f?JLZROx{+~vsP^+|HE-V|)H-IQij=kD3f8&5mPr@|{CgA_)|W=6v2 z&}(o$Psc1%4kuO4SJQ`wgR55;V}kZ?B=!@#MgK89H@jD2KA)m3O}qNg#$&Zoiy;*? z&m`*s+#M8teK@B}55Q@9?6Of{L_k`>i@Az2luMyi7rYuqnnMdJ6`vCFtCC5kfugN~ zLA8`q?7%u}x?S+vXi$5xkSkB3lU=-|mKa1hXi*ipf%dnG?jiUf=-lhkUjsbyaoIlv z$Y}r7K&p$m}Ju@=~XW9lGu_|Qf{?YTr?3v9*vR{&;2CeF1O=x+Krl2 z9~>B%k>h(W)ZtyLj6-C0WMO<6#MY%mK(o{m>K80MAEzsm-Ah+4_p(1V;KYLJ#PaWl ziJ3iY(lp=NCwIEPX~N)$!skqIM%RuI8@dyoW)lI>F!P5jl_~uQ9#rD|=;b)es=hO8 z2*JR!*q$3rZWq_xitOS0^*BFZj&L$QdaLB;hpD6%9Iu|B6gHc|Zd;yA^`sv{j7z!| z4dzvoLZce<1rhH%P0Ev^T8B%O3|~{UrD}1nHkbUn#X;9=K>VsFK7=WQPBD@1YsS`x z6-8Eu(Q`d2!w|}?pl0>s$^39J-|-efPA;~_mYi|qxD<=GzZSqH%V+ft`JU)kAkr;@ zc7Y$h$Qz1S1%A|h16P(|xPoW#Br?xxkj~kvzr#V@rwd1gK}g? zBA05YlJ5i2p#!FXUQZi9;lleE)x-774T6*Uze^GxsAelIIY=G%nChDZkAfY6W}D6S zA==a;{l7k-05A{mex-fEXRc@OT0J+9 zmj()vb-)v~H-~j|T)sK95)c7GCyc-9<#BG|(l;-FF$EB}d9qwe3DJXWjxv6p({Wc!YXMcs8bC*^c^tPsg<%X7Tl-R+^CFQK3Y(Y7uV*J6;Bc!;=6 zlMbuhVv`kNfUMiKMQLa5e7!4jyC8*4C;Ul^^P{j77gfTI2_nAp&RgqK^`xT?lC~Hw z=MVmVB9}AJD1N(aF|g6+MVv&0PQK0?%<`76`*|ea?)GpJs)dhJzyY7J9pnr#KI9`( zsHOL?q6<5|{ho&V6B!f0-z<;|+{8SI93(4q3P!`?;`w~L4cd{eMzb7Vti?FzJQGrN zW_bUXZ(tLnDAi*`KbwFDhmdzq{Dqwe(qpMkv0iURt-Ol5x!>2nbBm-HqLn~^NQ>cD zR)+HCv;CS(k7>y0vJLR2i|M-dD`=k&C8FTd)VoKxIAAg!b0foNGKGX79!51fJt;x2 zdjD&C*LIXGg(^NVGeDL|qgq|aYPqB~aen&fsaPHM^S?}wo50@$(L!O_WsQz?%3;ypoxfYUCDpY=hC`zHE`j{2|X^PBs+y(}%Y$+bX?rethbG$`--*^h-u zkS9Lt1%3PHb}rrR<71g~C9p^iO4Hk`%?Klz*3`Tz|Mb15I#pD~os3yTj&H zT?tYC@>bJl9?6qMA?;)J5Vrr&&3pQFg zbmOy?Iw}>?!;x^#JeGXBekR#*O$J^GAswmjkZC6?&iSGn%h(`z>9yUK|Uh06UX0>FMM7fj8@m(8-yDEy8Zl7sG6MPHfUwtdKUzGfz4IyWm=a4aYw| z8c#F_2dU83zgh}Yrn#*aNe@U;=8-e**zUc61nus7Ddiv^LfFSt5cP%KpHHvg>yufg zQsHran$k%Dc-N#%4bhg+!FUQQ(KmGWcl4-Gmw5qR3TiwY+ZOJDWuuk}wYbpXhGn_j zz>jF}rz`(1UU`PO={8Q0C(i7|9D8|~6G8B6m-}mBuL2x)Q{k(oXhnBis6Tq3B(Snfn8+k2@8z`}pEYN7Opo(n0x-uHSu_`PtO+Z93+iY*r zkVO7mAQnUIp{0(1^aorCvdv6+Q}1-liANX|0vH+{w*BTBh~p+vVUggKRSLZMo~eV2 zWiF~o3(eq_GpF5dS5vSCDBoH%YKWZyEfZyF1!1#3?=R}PH(IgH%GLFTSiXy{mM0_r zdkdaB-!RZsLinXMq?YNm;iRY)6VZYtm5lUkG8U;*ssxu_R?F2|?esgmbA2+F&PyeW z7UAX*W{T_sUq?!GfsOF^ZtMNf?;Me~qkYC_4@z}WI|#Ja za96=K#A>bvqbt{Y;VKSCvRNh9{oVP=(g{94t%*erBWf2nGF3aJzdC#EQKfSjgm5B{ z&oBu_3Fb7ICRWu|Y%1lHZ)q=YbaxG4Un1wL?TZc^w@ekI#Ijh5h=q@!yMcwcyZCYCeY~+ZsCyYlQTr>s9NP zPUmZ^rzTV}2uG9FEktqyE%yB{`wUOTtw>tV?_7}#DFCdm(z$LFBGW_9vj?ph)T;luM!~n|taJamFE{;@`7mP>#1xq4C~NmYr@*b`fMwE!i_l zPgGb{sx(CAOXO4y{V=q&v<&rVDqmYoeoVx#AyM8HC1$MggvV8bqV z#AilQsjEGsA?~vqmW?_-I+MkfYp7JJ34jug`B3w<{t{RS60;Mo9UhO1CieTh$@jjK z#FIT&H1DD&i$zJgeg>V+*2(sSe;_Cb#(P#H;=(@4e7(h59G@F>9A(hCf*_`)rS13o zS7BrEt~7u0rk1NTTUTZO?Ja~9AP$7(zA-}9sB;Kx!*2ESBhT#k{)@h7*byE=%pm7i zi#23OCD82S&{8BmownW5v6l>#WNwnTx2htCIQI`{d0I2V)BNz(r;j zFj`7b6f4bFV7J-e5b`#D91;ros_+=TbbIiFNKwG-uI`_66d`WchiM-j2S(SQ-3mB; z@|1lW$5|I&L-VJW1IWI{X8ts-*6v`_ytU^XGH`mnIWUorcPo5{M3R^_cJyUS%x7d| zgp!g$73lef(i02uB-`bx5r|;m04>nyiq(+}zA0=YBDhpvdt#x`+rZg*c zob6x&{izZc8q`KOe-`zD*}3j7x)3ux<7+d8Kfy4?mh7V})~L@e)^Zqnrc}mQKvVp7 zLd{LQaD_^{$*J8;by2oI;3K#NEEXo)ZEtz+VkfsGO23^uW!^xgUZ1Xbkn5&pDz%F^P8)?%r!qH~ zy1E^img{~eP`$wfHDxE2Rz2b6?u4w+4C&XhSPXt1sK81}XED#O46f4{O9zv-mfYfx zfPg%m4#7Lv6xPydllH$IQUF;ldR+!SssM2ZnS6%Bh|RRvW`t@)SL%vHxR#)0F9^YzJf&qMwd0QhDqlVnG8|)n|($i zDM6Gg3aEg~1?9YE|-8*Gmu#mxQcjx~8$*=5b#xqB5H>`mTZT zouE?fr&tl8`#x&GMRgKqHvxs!s!V-_&MM-M*-*2i_yuo$PY78#?zMnybB$CL5FlX3 z1r3i~N7?Og5HVOsgA{>P_dQE%w&ackwiV6afH7sc^w$NXDlkL)rB7-PWEwPlK;O@I zR~H4TyAd#mT2VY650+%gUjNZAh)iNx)BLG~i!3C)4pgFg{C=8;sq(F0&vm*Nai3Mi zzldUq=NG@(;EHi!LTLr_hhf6u;lxE_|Au){@DlzWEc_ZjU2-YEp{uD49XS392iN>P zb#Lz+hTr9R=j8b3x19U^RXz7eh4L-y?YmFfSJ915`fCV*q+WPTT7qu8*Z4-_9T`|* zn1d2fa?*~K!PTY+&`@7%+0$j_CKf9wD3~0cqS)Qdj4JFSFu?7?a(%*BETkMMdd#UV z4;@Q-?^*qvi6KihGyfE|;6Bcmpx+m&7i3_qeQSsWn}VB?OEw6XI-|yptk+!Lgihzb zoT=r|AD3j@-9?ht1Bc>tInM1j{}QV9CA!sdc#bcrf5-*icBA$U92@5k8DZktglIje zQi?+vPYtVXMdrq3SDS3I-PVD&YG9wPFOpO`2R2a_i+{x&NzH-ZpO%BZ#m+4qseDDM zEvaBXAmVfhl5G(AH22Zrc7MTmZ?J^1K0@qGj0#A-=?_6HxZWF{&lib21|f>9SW;`7 zu=~-)Pjt&8HFoy!e4bI&i048+SssbH?!!Z<7b;RO*ihWi{y}=33$S@R5F#g2m32<9 z+ryN#+TTctt5{r%2Qxm7YYv zE@34IXLJy=5!dd@6i3NFg@A@{)ejn=7jW`78l!cPNEFA>M$b?G$|^gjl3k}Ymlg;% zg$lJi?6~a}2q;0C5Qk3hoF4W_3xm^VVAm15u@}Y~hyB zLpeCpFePy+OYgo-{@9*3GH+S z+Jm26W{H%6nJ$-=3jXUIYekJNzEDn-PCo#^IW#V3q65#A0`h`CAqpHxp6wiId+D|Bc5QqNMU%h(2zo;vKe#3y zKb$mR+$mfBLL}D&L35dcJvljvm$gM+r9_DZZ6n=wobY^2sntFlNdX>+#5rN|CGGK& zDX{yn26r#cQWQTp793XN>?Kthbd^HG6pzJiwmKz-zz|}9zAjC`DJbCe4}Z3`O6FYmY8V%g0`Vl_kZz@W>CCO zJCFh7JCO_k@i4NTC~gpbz~Xo)9a$cXfR)d#b1wV1xxPZGi{wBL0ip*MZkq@f4zHK) zP6npUH;1+-64mPrpchLO0s)^NugaU1y@>1CJf6ozsXF;(N+s#9aY2r-f1W<>;0z+b zX(4?I0`Q~9!~_7m`?p7=?audD(9S+RBSpro@wdzAVy%`{tq;Ujt#@uEzOY>VLVhB$VJ@q3mtEQaxREfFGt#JI|b zxR59!JIxJ8S5-?vK-Ux!ok-_Jm$M;<$HhVD)Eg#_DcJ+~M)yy$b zBmviq81`8E$KvpWOkrufKTAlbNaFxMR7^dm13cbEyJd?=X_U6~UUl8%PuH4+$LHYC zDda(+hKib6lCHrG#04ZT{c^ofb|+56V$hK$6OED|{>E;jtP&k&lBOO2TOh~#{M~=U zYPmWK4~viOA43J-+8;2@F$1l3Iwsq)8uDh=fmblW(?C$CN=+X%mcS zCwu}iV6&wP1xAiP=pE9NgK)+-rjjEL=OdF7UzH|;B@F<)GqvNsr;>*T!O zN#zXnx#fo1hb)J*xlV5b?CrJjrV;0smdmfXn1I0O6JM8$lJ1ss2}Wn#=JfCg_!6zR z{yM!6Zslq#`w~^3!sCh2DD95VB3tb0LY`M71%()cty~+{Cb}mZR-UbVMwm4FEM3#M zu-~W6B?ZHB^MIxAB7^Q~}>=Fff8 zrO!f$6VDg2Mn=3BOOxv_>}bEMG)n;Z*r;RIXO>B(>n^#3H7?915^F-JX4mq})QY7) z?{V)^Rv#&SmU(VQ$QqqbRXQ4c?qDiGm(KOV7=fC2Pgk{qv7<} zGq1|%@?*O?3IQ}NmO6J#a1YgEg7R!KSie8B`(Gc@zcwzKnxIJGEaN7iJF_StbY+a;CmY==Y}@ztXu5^dvvOwsrXQIPmN6YFWO|6esC=0At7E1p<6s7* z&5GFmcm)(1(s}MofE8VYai<>ct~<>rR>2ukyvfm~L?^XuAJJ;HV_O0tp%dpCMb~&J+O^ApL_oURu zW2{kjW)RogiGU~cF6u}n7ld>Ptg}y%sG{dMqo_I?F|EDtTlP`8V1>wLa5%dPiOi}+Gv(=3VS&T%$rMBSSdJ-rYp+UUM14ABx zSu)$%xJ9Ys4_R znb2d`Y+{&C;eTpKDX$#=3`8@7_Nv`I* zRH>c_T&f!PX$`OfW-d)EyzqHF)z+6TzQ5E_u@h4M)U`IQ822NiwFf0pw(WL*1IE7e zYL+RIV>+F*Z2KtnR(-kE6z1Vmvn1x)pXU3N1_eT;a}+Ryl^yWSr8WWLA5i6>+%grf zMk0|yxkwVTndt}_0X0^HADxNVj2}fZa%Q;Jxe~zz2imL!; z2k&pEIpw9=r!b4R{?*uogp!e_zQPJ3c&D_f7q^Gu6jmpwo+=H!y#iyqY&_mv^Iv!s zLZkjjAB-o9EAWurO3bDi6(WFh-uu77fk*#a16;KFGBFK#nmP|yrIzWygNl1im7 z1CxE~dp{}3p#^FXy@8}G)Oh(1fslOcVKHInhm!*b=EEz6?I6fLh%$>9pYh8ZJqY@Y zkj;_RYB$}q)riSD`P?0hwD5Z3A8a|q0V$EAAa5<$b)=6!XXTfrYV8Uj(D#Z6Y8S^gK!BIbgDSHs zmHM|N&)W{T*;c1}d;1v=4tSh4@p|nl87`}RnnJ?Z3Zc1o<*O@}30WD?Dq{gy^c(xQ z@_xx$=^Gi(foNu9a7}hMMdSRut%Wr|fYc84d)2KYIsH&wwAwMFVg}5Zv$mn`RHLI9 z!G>Wv$JEGkzw2JM687;t=XRUWr1a%HjDkA>Y$azXvWLv#%GEI2i}~Uuo8@+^ePZ`( z9pS9|>~>qj(WkiSw05Hz4lb_E-~RdhIOMB0hwEL;Q>$CXyIv`A*tsQ#aH6~O(PWzC ziD}3sXD{zFzI43dMw_Fvx-QP>rzaYXdaLM78~jO_Xhp|wdR4DYmf_~xnw(huBgvJLyCfg8yqQUEe~Sw6N9$sf~)YqVsc`4pFXI^zI~E! z>2?nDU=3(;Y#Z8p;fK7Ahf1qX#f1l|L~w-qy_d)xt$8|EfsjV!XO6x(LN#W=#{1GQ zCZObq+75k-E1$Pg?e+1pCPLT!05ep#86>abm`r0H#&$El71C{2!wOYyoX*WmH zHDSC@1X*m>cwJAsk#|QqzKY{1bW}0hH$|$M=iMInz%hw7Lb2CF|4)^;G!2v|DpJx} zhcC{8f`Vont@aC*>db;fASKY;?@7vV6psf*y|SZ0^3(dja~ z-0EThA=3~h{h`RJhCOmL0bKs_B0Y5RXTkj7K2i_QZ$xIZ3FK67shkB=Ve~Rc=Jg|K zF6lofOPw%g;La7Iwt^5A5VDk#`QSVsIUyTE=QT!W_g1k$N z^s9?aSv~QP-i1g6%cd|Tb-OK5JiunPJ)<4K8IU`T%=aP6^XgkUhe&i*sAJ*N?M1)? zA|)c|*MdOF8igT)ERCn>|GjUxg)*Tu4pOQvDth4uDlg{0 z_5?bEL?2~#`u4(=b))pJJ8|;m>NO;+W-~KhlN=S_#3^KG&GScBn@dZ=iDaOPis*oN z67-wcH__(!zsN-M$J1WQ7H8Y@bTn%1n+TUY@TOA<5u8~}M7yfiP4-t-YLM%6>&(HJ&A#H~ii)=joJSC#Pu#>VbiiIMhV5nJYM_rx6J}K4Wm1KkfWY zp?p((30?-hYnb0JHiG$P;UV42?twgdm83+&QO7daF>iuINaq6Mf7HCg;l#xP7*Wf7 zZte!D%B{ESVhR7k-lOvo@HZ5HEm>9CE}0`Y#J~-AiRIq#14*J}=+++<&)MI&qpP#E zHfDRy{YF|7(pf5z3K`mK87i4 zPa+a#aHHM_W^=d!eiONijSR5x=GLsY$5gAQs-Nc{A%+W}NN?d_ktRle@NZ5%DuDSf zqVI~+Ii%!7tj_rxV;!yuJ?}P++i>Xjn&Z0GVLMm@mZV3w>z<6! z&`U;_RbhN6_W;4 z=bX$dA)QijlnCoFG>vrFJ(FW(L>YczlkfR4A#(8={N6&D(xKTSNQC+`mc#Wzt0`&= z2SxG~gH=^h66ZD=nc8Cuq_<*apWP$fo5>S8^lJU)M=ZxM&yFogI!u-uj;}^&VL-u? z=)jtmsM05MS{Y8y!;qDe-IcB6VP{`ND7u-aBznj6ket#;s5C9rB7@Aa}9nvGr<{c^%p@5%s?O#L0LfJ@`eJqECKdd_%vXh~4YndmDZ z;J@&`STf8$50V2SLxj2;oJ4-7%VdqX zIU1MoT-CtBYKX>L&?CA+h59T%U*|3i*=Rb_ZDLU9{E11GBp$Rs{!PYM5}O<<(BeVQ zyW`e9jZW=TAIv=ME@Z{?J!PN4DQwo`w=u^v1JC=m<22707uG(R7CiS=59An; zg;F!rJBSHZCM4wkcj(}Xz~X!c-=ESdybC5_XQ!|wF+>z}5CQ75>PiG&u@xkOEXM$- zlFTUN{75GG&4`BinUMAYkOsby#>13SV!(jKjO z0$e<0c^KzxJS!)mwxh z(bKwCokIaNU=%BBN?h1Yvi|fwi6R*{O_qk?uXUXy+o9<_Fxf%%J(FoQ99 z`DxX9?eFBx_Jhnzy3^+#cuXi}*qwYv=-;|ep{ZS6y1psx_jnSz^~TnhgwthARi2@2 zlduAX#IDJ7)ep7%!F;No(_G~VZ%R1eUp%KH)GjJj$?|mm1_YPNPVOfQji94Ku|QO5 zaLXo|%Fc&225oY5J)7)G5gVygYpK86Fsfe71yQMfA9VFfIHvaH6Z!6QVM&R`W=;G_ zY{Clp{D|{VYoru}c*(!(R|tMG${l^f6JgvV-tWLdpY2KkUn(EZ{1u{tz0Qsqj8sBS ztVg*HKTYt@TPNl?0}`#oL{I??M>g)!vm@u$<}RR*=gSxrE#ZS#>01oN)nv#k0$L6~ zoK^fe`lQNMD@@bIVa88bL=h_z;*k}>K@s5mZ#wP*Fb?#1H+5 zC27=);izOFjDz+Abcj<9y8VI!5`od<14>R8~Log{-wBBr|1uWK{ zY&4p8lnj*|@l+~M`1tOfs-1pfB7?<`Y;_zdkODnn{Ci)bX~Ps+ zflO!xL+v_QLq``ymix=MkP)9iNCZl0(}y2EFi$s+0^sxk#+1Cp*R1|EV7?|sdXr!J z4%uw$D5cl_fTD?d_wFb|inMeDh1VO1EP8Y}{>6iiglgi@768rh1Ay%59iAj~w zf1uMN#cMS=m{j0C5~kMGtvjO21EardFeAK0)5|x_t^Z*9(%bvCp0x#wHwSL-DDE<2 zbXu%k{2?56XI^4J2G*=X1`49yN3TB)77wcaCl5q|-0P@Tw~u!OJ?K14_ z`g1IcB$GE-t(q^f>9J6}Z`&@;xg&5ERs4uUm`KwL=fB4{c(+-2?YX7vO~P^pf81%^ zZA2MzB(eeXj!vY1i8*J^N}N`l=JP!Pgjw7TvkUAi$DMv{vX9-rRh|~RRIV32zM0WR zw->URSRAx7@JufN*J+mDk8h$jR8I!QV$Wqf<8o{9gEo{p>eqC;Qq1h#?^eu>jbWvP z_P($)v)gW|U=`Mqvf89_0)H7D0JqI2U%HhwJ}rAc=vr(ug%E)%s_M5KI4EHv1V7ET z{mCLGm}83OAAID20D^P&kGia}Wsii1Pfy`zhG5K+iv9Q5d1XDSr}IokeR24TzH5B> zvZbzR#e)cAw=?L4^Wvtm-QkUkzmRKh&LL*rTqz; z4D%Xi_|&+^6FA6mo9uKZWQw6+?uD6~P4R zPaq&u1|~L3QUMwFh+ezs`c_rGAa#qarR_Cs>+a<2a?*OrF$?b2*GX;IuS-p z3?vt3v3%Cxq8EVBj;hYb|fTM%b*F^klQ&;Mx0KvRoKu~rXs%zdzOT1Q>V8Ux}zCnNi2!Eza4 zbV+M7kc*`)t+x{;op2u)lUKbL5L61(1rY{3JD)De6oDvd9pgcG-(1k)KBiax-@y`} zjXoSK1{K$hQ|v$sX=Fm~KQ5PBGXD{R742y9p@Fs;YkBOG z#!Mp3_YP9I(;Px=t>B_6_rem}=o)~E-gV{ti`EL>xQ>p;CHdy|vaYX8j_(~w6-eJ@ z>i+gI`9W01X~5|bOMm{mUAipa;&awiSJUeUDSB@r3SyT{7PV1(JNe)eV6wmb+`L)( z+2jH~ne8JmXL2;ByP&>y|DE&`B@miy2u7eI$rn}~ftKg->~)%Jz06Qp$M$MR3hFcK zA3Que8%Df?r`~0P4#SdO%9X))D>T-x!j3|_EcTO1Z3JL@H=**s{};fL<9BD^6BHuw zlSvcMlSHKuHI2kIoz}(6-h%|566J8}l5Yw2#KQWbz`hjUc#5jlY?anFUphiru0!r^ zBRi2L-nWP9mTRvR$%$7(5(&Y;E56be3t>y}BS&kr8#(cBn4w0}=(JtZ^_Nq5oKk4V zY*L}L((rvmDc9BAI4}1|Q>B(3c?y>sMLlth!3!;^I>!{n4F=x?^Cvs_ov?L#2|!Nb zu!Ls$^ljB~%_@-N)&)Lhj$&?G+lGm*|Uo(yDCkjm$2aarze; zbMjEmdC}d(@1Lubczm@qlV06Fep6}oiORTK_ion_0iGcypKEK{yrj3Mf~p+ScByNK zedS{IbHfpMFKnxs+m9m4W4e4MF}44wv6^#4pD(Wl^GK>Tql9TbK|UWDAOSUY5mX%s zd^lrVk${8<`Ux11I8ku|5xay4yPh-wmsDqv?){R4L_UD)y<`@W*?sJ^)Hiy9ymcbE z+*Z~Ms*gQ;3^k@GgXK39LP4|?SXf4j9--Gf;S|QXw!8>Qi|xE2*fdHGcc$yVIPud> zdg|;@sK+@TKq_hwJRcz$dj}Hy$f#|diSsvKY_uu;2G1)URW)(~$!zE_#kOlYZ{WrF zWxmVnXTkGHfpp3x3FK1g9m^gdT7x8h$=Ji@y#?#;Q6oO(VpS&v?gvtUjcs?CtS^RG=+kEu3_pUe@V zO9H31RT=ctXWky8;#J*4ny1lwQLRBU?IPx4p#o?CB1tJXQr~ymc1c> zr;$QQi3=qvEqSQv{NR00!>}gAt>qR`c9Vg%5S-oGXuLP)*8C<=Yea-L1(3c^xQ)dwbs-$*eM0% zqt6K86&5qthY-?DuLbj_=ybGGS*E8&-|MpFk|m8xwGv`yYK|z-9ZCVF+a!zS&w-=W zUmKGXhGc&Kd}~OxEhUwJf!#4~yt9+-yj{Q(EA774O8 z2uWxK{%64?ySW=rD69eixbzU^PAic0TO-JsmVxyi;mQ!o&XwI;f&V+2nABa)!K@9O~Tbn;{;iO-9nDseo zzV$hU2FAVL@H}JQ7^B_dbnnYHr?6#l#~VS7J<1VpYt~{7O2M|4UmbDB6~uRj7E$VO zm0}}%`9eDc|MYprSBmHxS1!6jf2DfrSjE6{O#|i2`K?tMok*spKPJpPQYPLG5Y{}s zOw$7htk)VPpiiE60+A>5{Ny3s;Y=?yY6o_&hlzgBqK8hTF^7WKogxU3^`#E_-Y=?- zEmHs&%7058SmxvqpVjs*8(ILY*sNCgk$InTSJSw+{vWE|GN`UL+SW`61PksC8~5N6 z+@0VK!GgPcaCdiicZcBa?(PJ4+4TBO-E+H}KNMB_$6~Kn=N#i1Mj&nw9TN!(3d(?y0$(PZNkMQ@l~#GOL)kWG zlK+xMPb^RIthCnnn$ub-_eVs;W4M%z->lJ`3{{2L?X~l@G;G=1WiP4?_Wt-snm@*b z+K_k@1%n`uH|V-mM2*{VKS1i#_&jBdC3923TU3kJndtsF?ak8nn$oK=rSg}5DVR4j z$)A((_L&Zs)sv^u>wfD1NQDCA1@wjZpYRU|G<&WnAlU|0@`&!8$ll$-$VZ8_(51{^4=$-?SoMW|lH{O(u^s3;U2+X=fSMu>ayN9+ijJ^v% z{2;knDIG{zbX&G~S6L0(vNqIlDSVHA3vDm=vAN{fnd;^==jkqq?2!C?0Qd8)z%Ie| zn5sK~Q`TBOKOF0Z5-oE{;la+G}exv3J&5F;+e_E}4Xr}L%40F^-6X)^>|H6njD8ji)- zG|5cVXO6my7n!g zIi|@SZNKe@pxT(sprc6k0O;0Ws=k^pRatFlM>!Bfq>;^usQi}iSqMm1@UbwMRzIZr zXTFO7Ntjn-SVb&8hZed~5?>#XLx|-dsu`b#>mZJeJr-ezcgqsD7{KHx_;J!hM!L6V zUVbeV&Uf+mYg^%?_DWiE`K>_EE))o|N^PCIrtW;@0}W#u25=Bn{49^eMFdlpt5J(5 z(j@$5zWeMBJ`r~#7qx{`;REMTcE2Iz$Paqu4-e`s>gJ>^jG-k(7@oAVK z{}_zi{e`N|5PgS_Sfo#8C~f;aSJvXU;wu(($+k?o8#M_eSU}J9fvL^)8jg2BWOu6j zE%&B2fS_P^my3ux93PVN^yUyoCCH~T`$RfF=st&%s5?98`w92cJ1ndFxeQw{5mt15 zl{VJ?J~;)tc*jy?mg$z(Go0ue*nf!Hr=V~1L`vQT*L2e7wR7rZ{aISMN`|TaV}4-k zLkiF<;W)mzlg&>zhw1y)$DS1y#xFG%7c~a)d(Ka}^t7vnp4Lm&E0Sx^ z9%VnfOv7qUX=x9SM+^rqmxcIT@7nv4@>*@K!!L>3Snh?TT08@VNSDJ{eMp)*ekUXM zymev)y@p@1#4Het_IUfjsC0=xgKvTt*loHz<*(t*!;X%n6C8a8bPwL}@U_Q9_|`?= z9(ea(e|oWEG7_55Z^ZF^6#d<&+ zdO#GJOATYHUf-LCwO<)xLXs1j5-~3IxI=e+$e<`WMZznRY<)J$Yui(29+Q^_6JTwI z5~-rO`b#_F%Z*la@rc3x$!%g1pN@uFHqo!$3O-zDULv*A_yt$>De@ngw8y{6L@J$} zhL|L(bkfl(iRae%B@|-v{Wni#YPbWCrWMJshgB#wz@IL?X4WvNW$wVA%i2Z@lBj;mU|iwv#Y5~CktD~C4OQ-7o1Q@h?BO0*)4 zPN(EwQf0-|F zPF^X)w3X|3KLUr}{V(c)0hKZR~y%qPK-w`R;>O%&I6sV(N+$5lu> zdH+6Vtp6BUdJ-iao;)J#l&3!m<`bqIFU;orq<@kpQ&KCVSC`iI?IUiLcRt2knX1r_ zyOYiNYv)+G!dK@eR-TtYNma-UbIoEJHk+T}haVljsvoVqEJb^nhQv~Dxn3~IB1P#- z!$-^)wWe@%Q{C0pw_`9}M9W4AdfZpMn1dWYsceYF`kn@R;bGS4h{fKoqA!`M%GNc| z_wSfG^tU}|5-zJby?1OA=j=Q`>>P-?Hg=JS4z(1s1hJXmds>lEAbGxiM$V71+Z!zX zqekr5sNG^K*orPN?`{(%SABhz&{v11(1Z~J!9^DDnj?GRw8_;QKF(9luC#{E7P&=)9g>X~r zwr2A>zSBjEG5r*W*prrl^0Y=bhM8)dS(*{VO{~r~680M=z=(`wZdxU+Tr)Z!R^cqF z;!Go1i>U9kNaiGOafQ(1+s*NRpqzoXZ3Y_J>~cV^WRfcn?ywvHAbp&^0<6{B?ZdRA z#A1E~v~T~(mTn@g7nFlI-VDR*1JIyHg4M1m*25^f%Oe!%(3rg~Ct>63e^UGw2{FO8u>EUcL;OF+L&@lcxa+35DT=$F}mnN=P?lA*%%L zGc}=GirrY6x72$MgLQ@DI)_#N(+7O`yf6`1w%diS&J)3l>P(ku%qHQ9kqN?w=|3PV+Ya+RJoo* zy&o0;6{G~fdss3#_*2MdRq$OoOjc;;p8yVYE=?Ok_ZCmBm%Zd}?Kv~ddx$a781B`h zLRwhHjbw^Qd|4)zq-%?t862;i@~Yya9f^;IBs0)7r<~@CZLnNvHzlRvvtZcqWebw9t3RUxUHy>aFXUok2?vLEn9XeqWvG)qUv(Mn zZ?r9t6h-x#$OK>v=T3;{4F7W-rl-IxP9La5deszqT8rQ6vQO0i_zZ-?DyN3@R?c6y zYn52NH{l>g-2C2E`=C!roOyp1D{80^sbl_%J0200;)&_7dcVK> zKZ8SdV*8%KihRP)n|_7to|C&^2#vA}Mh2vv$mFf^w$>IMR-2aY@1LxVWVtC)$nr~lc{?!(A{hml;b-yzevZaa5i2M{n9`jQS1gC1R zL81vQtJ@|FJ#K|a(3DdBW6-WiK1OGCtEAqFm8mF{*<@{{tawD@SF{BQ+xdo9RK&}# ztkQ{@jhExwFFK0#znnNE%cmmik46`t<>YlW=|uEV0$wz?i#0_6W7q$X3$K1ddiwb- ze`n43GOd&6dMF^Tgo|GlytN$6bNZb;@ncHn~Z&eM`r8h2^C~bJ5hZ zb`V-IQ5Vm7H{_WLP{j!UdieOqijTi~3mX!8GKqruUlB_?x*zcix(ti75;#nfphXT@ctYYX$gKHoAg zRH0#X7oASeD?=AlKB&}+LFpjQE~dOEZ|a^Ss3}^#o4fESHw{^V`F`M0V@(8_e zH?9`Mi{s5Ufc;*CQ%YR!1szd{NG1VU!eVVbz`b9ud~93KT#D$z${-=V?<`nTKRXLE9LLz(=9Y*onK*U@^h@=4{ZqPI z7K;@mmcY;foL&EeO^pfoB%bUajMlS-Yv&Dr9s> zds=0XSid_HXmtZL*(#;Oxwf~(Sup3yt5?aZdGp>%|K!n$G}khyq|RshqK=%g!FqGX*QJ%dv&24 z=rbPp2Z_izh2=xo)eTC`gEyQ-OUm}7E%o@8lnc{~K3q`5&vCWmLGO#Bpx5-hbJWSs zhMHD?UC+~h2mFQFJ#*{{EcMGE0YP~r;I-UV|8bl;_;GaDEr~9xHe%50jhtSqX}q3- zqW(XWYT%z((=Ri-h!8&?ONZpj3pFgD#x@rfWadwd$oVOrhd+-gEP`J}Dsv;`#p7~T4#cM!vH zBAb5;V?%=I|GuLo((T7-f0>e+>s7bS$&}?fgre;6vZq@>KKh*qnxzz{cORYyHGtU+ z4PCG(hbIA9IR(`(Jcc?&R;tfUMGajoxCNlXRThr^;|r8)55!{ zP-h&!xt(y|aPHl5G2WjJJnmp#ksFiXlT+0VeN`$*@hjFw>;_S;sC| z`N^&ZF8h{17q!3S9R9Mv?Rb2XJ{5lM61+OzHtia^x#3lfxU3e^&Pu;zq>v&_kqIn^ zbMmo!x81CA&=M&%k)C~0M;qATg>u39S?oTT`1qHQCk9(bF5BmZoL;YM{fm6Ej3n|E zB4mRPo_M_z$4p=?K`d9QD4ihExC)w#yY{|Tcs}!48xGgv@{eBVcMGqE3mlxew#ufq zdGFtqV|M40K!0Y=Vct+P*`$b1GkJb8nw~%>^XR9aOp-j2h`wNXuZXDB(1;@1} zE2Tc?JLb-uzlmHva2yS>x z%WgAFLFktPg$35ehiFttw+L$$rod*sB>L^%M_7tV0($5I#aW*|XrL@O> zxL0^Djvvtkno^reg&ARd(K~Hk-vv<$GBugZGDH=du;caV^lG-0AbpwPhNqKwgXVmO z_|$S``u))n#-|=tcluvxb4oxG)CoF-0Zd$Q zYFOK6cG)|G;fGBwyUUuaQPWO5TSeXnG_iVxvsFL0_Fk?y4d(YIV`Lm z*SSa8w=o)m2!}79 zOQxdfy&SU!Czclp%y^>+m)yT)Rs-kH_8V+N&fYpn%i58vd})N{wspqY|@AcX@b!SGDePB6Ok z(ZY?JwO-apws=Yd^;G@8u_#*{>T#R8Nl)nh} zuTisu8FNR^s)u)YfF-OoKaM|mw}y{P@`9>d)62+*D7^sBe7$X8(U)E1EE<$gZt|~y zSbEr}V(2@Dr{vP}Rk^5R?2%TT#OKxLOBACyCx5nzSc%93i3iTFGhxPeF}Y|*iWT~Z zn$T8(Wi%uF$t2rom@>ZqxXV;7TXqc?>x|hinBI2Y^g_hp$>L*wfbi>aVZXh=J(MgNH+BBQo&h^vB>#Z&SJ)V zegcT1Ij*Vp4cE)$++G(vjb?L$2AJx8@QUbU*f2@s6b`H;<%y#*ijvWxomr27*Pnh^ zU_0N5dC|p$o2_oFBz|#i;l&eh{x6UpT3dj*k(OkBhh!Dgdo?hm=0XpC&mz+99=vwa zJWI#nKB@iQ)Sf&~ni5wJX|^{Qsd7c$(8F%K{dfG2@ZkRidDrnm@R5frOq0r&=g_-M zGTZq}+=WO~SFEH=8(Ih1vyh;rWuro*R9qYG4i-}_jSMg{U!4yWMB0#0IJVHmRIYLo zS7~B?lUDMfuyV!mvNVO*FhXSXZHLF>PDrPSk2--mJ|7rsc)YS(cw3tIVY-o&*I_Cb^4o&|AW_2{S!$x~ZXKflWk$s{yz9|S)Y5yk zx}K)}@`A>^JLqW3;SSy1XOyRGtG0TyuiHD@Q`9Chvq~Ex;v{|fu(`7RB$R_cN5#i7 z|C!$=XHs~u^u_05Sv!l4=xq}?9<#M zbE`zteo@2tRCj$kk&>k&iD-lf0RxN725{BpnenQ-=SFvv-26~UGLAtd(j9YL-CuFT z1RUUq>hF*{6@0yJ6olyhjg+1E!8d$z&Pls-$%yg+=&jf}J=&PfB52U z{HZNG%h4J?DXe5z1O{_fAgt(c#d=-Sl<*`3#I4Gs>&`W>#Gq;$kE3-8ZI zjvTGI33jBQe{&;^ym-%>khl$2$BKz0CT{HDGKcdT+Cw~fVbx#Z8`gM&(rGqMuFCTa zWcaXxN4S{Py@xMf*v|PRq&4h~m;+fpHR9iBJ*e(tKaF=`TVG(PyYH2L~STTG%$0 z2Ngo&ulC+_-G5q!eNTbf-<}65pVTwB*ZIg2Vj%O-I*ni27m3X|v@2^h6j)B&f7g$6 zAQJLOsDtNg^o38?IG*WM*cIgGhl61HZ^ul1z%ok^5XOk)s50))4Gd!uyo2-ocn_M) z@!PY81~&6UDcLIpc!OVSp~_{qA$BK1kVfq;)+6ID^s-4K!p}s*n`jn>E;cQ^SU;D- zN=B5AtylVA5FMESkQer9y=}jnarE&mOok@M@2SFzt2DA&S;z%ueYBMGT|jMHRJ`6e zKyX_NA*mM(PW>>&1Bepd-rlD}^@8M*ZOET9v_dx9Yb;KrkR^Nt{!>c1f1s76#Z55oL2!U>}%8kf_A~$12j$;-gtJHQ~M)sK*O`W|LJ@G6nYJ+XoF?; zr@$yAeLM5-kAI~by;8P)2h1S+-q#h^GT}QS!2Im?7Hjcu<|-;y%r7>*KdMoh8b+J* zU$`v&V6FzKuApwk%KwNV;%Q(cZIfS=Qy?^tHu8v&Jtv|CY5vwEAi@0d7R2|VuCy9& zB&*paf)f7cC$R%%*P5(G@}|LTJ@Og+^P#`4y zQBV5#t~It;s+|t4!8F5?z%fHbK1E7bL7h&Sk$$@$XK z{@B=Y=p_?TQ_&#;BOyAI)Z2O=UaGCn^&x!S-PdBY%j&0e07rne<<*#`ByeWrf{Zh} zuLld4K4&UQiuTn$1%E0Rzfj*<@mbPLjP;#?^$@qkUDjWIY^G5 zB+H#f;I#jIuEOvl;_4+^+<$?#RYNNzs_^)6VUEQ@ zy&6yagKEj6`ilTXMk&nSWO~n^9-UA1Y^xEi=M3}NZ{eyr%MMypNs$C!;0BluMhYe} zX=VDqb4h_^roU_Skx^BM*q!%rQ6R4NS0EDI63#Rk%G;$)2)jwQxW-%Ca47tgAh{`b z;7Deg!QFnjlp-8ABq!qxF;8GTu=Spa-N8I?4KcWp(t2S_`~UpBBOUEj(Ldw>fAXzw z5M3|?DpD2FHymXDFm6g`HTzQF&A9b@$oX(`rGU(&+7oMQrr%^-C&gp-Xo$lhl?p9T zJew93gGddzl)wK{dFnB50)d~WtM|RE=HekLlFCUd>{tD6Jv#W?@i_qJ$VpJUOqe4<*MSeMFLSlvH zEA{*dnQsmbu$TB7Y&(tS*W()wlJGaQaUgtMp#&sq zMk+3^-8*OnO-^lIBdBow@Q_qMwe#;(ioeZYPP@Bp?DcK;;D_17@RqPYqK9rM$}dO= zoX>)JqNZ#3S!*sNqqmP&5h#NFLg-QL&7H_>zQMMS82b@pI3giw;#b*bP)x#*QB(f1 z?p@EqEid34x;6d)sPtrFS02KU8!Xpuhrm}S{eKj$L@lr&lQqqpCSn_PY~QP(KeCP@ z=kq98(#fE<@F!1L!nJtjdH!qk=ka5Qy#N^Nqd*NOhG#cac|1rVetyF{w^u>EloS7b zkc2YI;!be5tLl!Q%~Drictm}7`|i+cYsk;~N@6k5%mF$G{U~f>EWG+hZguY6{!pOZ z)Z^E&C3H@r1B>6J4^!M3Q?DuO>o<++X4Eejl>XkxsF0awmS9j8 zMx0j3v;V1ftv1SZt<{o3q^+ujIEt!Rw6!JHKfPGFmJg^TPP*kkbg8ovyz{uNf#Eyv z#kp6`Uz<~@17A$aYyrNfubN!c1(~H}-hu7+|fzdDfjYFj2**8RQ zX;-{L*{>y(+H%bj(ux!;si>^(3#Z818{O=;zCw+iEq~>`8+G{zWwuA*ci1l#9D?!V z(+L96aUjmQD`~_Zau|`w2#L%eJzkgWu3M|GHY)=E-k&Wgl&jLq zq%uPxm@5aaso77!6QD9yg*+RHNrf+Kb4=L?JY-i{H{w3_!0%jG$x5aVs>WrpQci5t z90+)#UH3h;FCvSr$w81&yqlxMib!ohCL}aU)u+N?DY!wqowtQt z!u~Aw2L)yWMuZ`Si0Or1bbo(g`yVb!79pr~%uC+26I0dd0ttD>Fp$_(MAPcB+OOl8 zf$mw_bDXA`qp>qa@%X|i>`d9$a24ONJckf9$T|88HK3uBc6X_Ga`gvbA)Cm zgJr)7C{LClHD>%a9*bw-3(Vz|9?H&{*bXLRN4$4OayG4vjlLZ{p9z1*hDa0z3d6~m z-J9zThOR+Jvb2nd%o^lO8W*t?*j^?~(>1s^W5BeNeF5cO%MyK3YaRr1Jha^X0S*Tu z13*AoFNaeFKm-Z`aSjMo{LbgtRobn7NJM;pAnbuO3cOkX?0B97pT*}D#$qzL4YX!@ zL8Mu4xh^}sP-OC1_`nN+p2!bawcj5m(fNx=gh}@yU)$JtU(a{qay(74-a;Z%5V${) zj-^tr$_8^MzxW>*QZO8oe&4-evDM*df7yINWLgK!PK!aO4RUsBW(EaF{t%A^iONtg z)Hr_dH|J!oudmlwEHQBTJYEF(*1)>VGPVsjiMcA}{fDR^7K^~Xd0DE~GhC@No*k_P z@-$X6v|(Oh&Q}`o`~mMT9=$>yB#__1(8pvn5;ySc)+jdPhl{m8yH_Az@a2|L1;z)t zQjv^A8f)o_AUY)naW3)E9S#Sj$Q7U4O}}>YqMQ#Fv(a$QLL@vEqi#TZ`x7eepZ&39 zBqqbOhg4f<=Rp8ri1qi|r#%Zokj1vN>iXSBBp2-2r5+Lz(lcMdM>{}f3})0DJ`yMU zN23hM&Lq?AGNF%=@$WNlKs4#D$3!|8WMR2uLQ+)yVdc<%?Z<6C^T0G2$5jg$xzd|q zmMtdyEr=evK+ES+@F9i8tEOt{(WBN!HL}551_kst!}I-=qDxvNX^XN%Mzvl_!Urj~ zL|8}OVFkE~JY@+Pj%@HcTi!k1z%{>^YTQ zY^|~~2C5OC893y1X9<02Y4^b1wz%N7Hh~1jJ@GIyvZPy{$^})2(^>E9iLXn=xE{dTEB6Fe} zi5M{}3Gxg(Tiy~5>?H@s_1-^3SFe^J7$jblo-qOx(s8t;l@Sq6_?HU|Y0oYm}(`jNd znG|HewfJ|V-KEz3-aInp?d_Sx{qZ6a5S``&kWONd6A-VG!fBTmv6RB+<=%?edc~+w z2l)jWQDm-2HkLt$TT(HK;D_o%G!DyG0R0;encLafNhSe6Z$kjZT=)l%_x5I|N6HTu z20&v+9y;Lzeion0epzj@qCFF_wO(sN0MrGEf;~$W8l*nzh(vtaaS^N`5_3R6jU-4- zmrPfJakUr~q#2BW7X%zL#@-clVmtRoONJ?=AFB@+vdu1mi4w=}Og&hVg-rnDnUKkR zJa&JKU>Cf<+{Z6BSgt6NiU9?wNVnU=5q}u+5AX4lr33q8@f?}Pv}59RGc5UZvMqjq zc=Cy0P!RwupKr7;wP=*j9VLW3{|VT%xO-+Nzxy6waG(idUCgjtZ$SZSA}mXljdOjU z>(W>#34S>D1E`+~CyRf8dvqEcWfsW~pYW|x(Esb;g!gGgHIYQaSBq_}9D&czzvR;A zOTGgR{}WB?`SW7jq|I(C_j}=F!M^u%rUs4#nk=M)G4$RYLoB14oNLl{3nUVoEw6~I zcZxB-RTHV$M(5RjK2tL0esGwhxfYU{(wf0e2CDca5cXavK*FW`)B_kSUFN|^c| zx%IAhPf%2H=J{sJG*> z994*Jq#4h&i#s@8vPkwrc2eoQP)3~kB37OmY!tm?|8PUG-f$yZQt!3|!5vOjS;f|9 zv|2Z(yoSw_*4t`ak{+I}=H{{wD*H-^dnr;3Q9=tY=HG3UNwl(iGvq>VCwTf9&7AKL ztGRwGf}gHgMpZ8(&OSDhmmL4`qKw4Ti?k;-PUqRNRjj=+4i997Or?Vo{B$R?x_wU& z%Z)vi!@fvc++S?s|I=JZ>Wgsld3?(0aA75iEQZt=JB+*$W;k2gW(KzS?+}8K0s+gR z$kZm#g5FJNl82X}%elKQtKmo?+ov$g9sV%fG(tpT=+8;If6pvvTs*pu#P=xuD43#d6*UxX@jD z(KI~=SA!XcI|Bq#NX2{(nxY7KaRIMGVgZSc_`V?kmp~}O=J)O(69w1>bg(~OP}fQn zNb&i-wFf833}THAMicD`p`oEABNTyC)yBT(s1%*~d`X-qNu3=KO2aAw=Osuv8&mPu zl(%!*y#R}RQUkDKkwJ&vk&R8}i$_bvH38#0&bCx}yq4-bNXhcqf9u6TzuIGe z`X#kn$3|#+l{4gRp}M`(=dHM9Y)nkq@HG3hae6nOkLA=qfljt~l763gpEDQ;rS=@A z9@mRt>)ldme9?2cgaL0_U@?weD5<-C6iuZOYT(c* zTO(_6-Xpxhv&GI}4|es3Llxbo6<(GzGN7@JrzYH*8L) z2O0`loiI`m6Do?ExV&y}PyW$NnVC~RMpE6H3z6s$p`qaZGvKn zUsiVs6US5Nzs)z&5#gyu4{%70dnT`~I7FyE0!(NAh?ru;RLHh=cAwoAV)sWArE#Yr z2ikJ2BVj-^dgm1&hNmg)T+lV!@t^qhu;y_^MzCJ!XTJ_9Id&zso_7B9%jQr&nLxD;Rj9)z?wws&zyJ`ANf+1q&Qh2KVF4a*PqhuM zma_%0!xD{sN?(-!c(2bfFF8v5YL8B>$KDEnw-<;5$#T~V*By-5%w%Ef)g$-fJ`F}-ti3_x z6&rT!xrVAb#N%=bM^T%#g_5JVo*1J3OvZR4ui+_2_jj(BFXwegib6;$i>Q4X%M+XT*+rOV0qOkZt5ldN6TRIDH&o4sK|>oTWu>E z@X0~R{oRe!K~&^wAW3S+d~R5cp*V6|!q_({Mr-Sf66N;xh<9$!pW>3>K`fEeyp_Hf zCV3sRg|!?xx6)?aN6iJPTs5`qR%V#74c+(R?eSJTnTXS#17=cWNSJAxK7i{tk~kb+ z1xPvsYiJmIfE^>^6DhJbOn{a_LIo?WS{2;}c4!BgngfWa-T9teAq0?TH7nWwSc2D) z7Gj#AIwZ=Z#>@k$EG)O!d38yYzf@;YS5d>ZzAMSdk)tQaJ5I;P8O2HoF~KGN?3e@$ zY*O|Q`NT;f*edb@)T(8=rhH+sW&gA8{#+`npOsuVk&)Mx9M()UV2;A)Qf#|dV7#M6n=OkWqrvH0ZjX9}&qy4DN=!)&hE@0u+VzEN}U-NO4JX5;oCJiUlG)^fI2 zu_ZkoooYeoto`Gvl}@kwWUsB#NnM>7!g{F9j7qtwkqpj)Y{uNB5 zPm&g#SB--qKT9oEkvK!wGzj} zW1(By3ng68rz+$SPhxDyVHd+%QwMON_d$#fQK_u&!(4(CWb1=cMhB1>gpG96mWb?nwe5>Z>rf!ML&rm3VZWm4?dyX}m?WedxY{t()y z8ad;LDp~62rdx|Vi$wMNt8!CpQSMr3&d05kp^O@aWkJ_!ZCzS$1a&2aE8vm+M_xFp9 zA4+}T64?_04G&pZjnCk+m`3W*IvBRDEbWU>Ruv2A2A{n%`qKDvevLkM>veTRO8Yc} zIK>DhOrY5C>woTEbR+^A6VY!Ci1b=zIb=B9E#8S*o^Sh!tkO~?Ps#MbEEOaR!)axbWLr6fA`Y({d!LA>p$gMjEjF{MzH2#Fo~I}o+O^D zPI!SYejWJp#R!x5nn9x&VVcHJ_N6u}b}bDQh1f-29*y5qIKD5cE_b<|`PX{)BsB3E znfX2W94ZuKvrvtNqERLx)t(48aoZo>)p{aG@w(Fg?{ok6_!WTyEfiwZhE70$P$3?# zMwDWNG-_C=q+S7w(J=8@0#!)Jk4|JeiGocu6n<9OG}gLsgQ!`j&!P5=92|>lYeRm1 zha(9iln*2t^|)HDsJG4#Ooe zM-O$}NC-cNB}y(Plf{cYCYTtPwi+EccX%2< z{km_rC8}OIX5_M-I`p~fJBaJKzIt(9!J3xV+dsq^THVL+T z5@11J4F8SeC`l(y=|0I<BmjU`q?fL8{=o z|91qZe8>z{MOf1ZKH<%7vHr`(rg~tlpe4iMa6DFc7k~d6*Sgu;s047;C%mRXFd{e zMtTbujqM~DNgAtDy0~NH*Gs1NfHsSwok-rhxq7^*4VIr=T}qrFxYOqhFYbD%l!=40 z$3_Z&I8bCmx6=Z^-l7Dy%mPjFtxNdR+{#j?4sX6`m8$C-gX=sAS*J>KHIoJJt7EPe zk<{}Di==M=C*(ydp@%y<*=N>Wo!RJ zhRUze)Kr)8PFzKz@KSoomDP47vOxQ~EoQ_?o;^F})9l$LtxBb(ZlT&n%Tpqp*xC6J zfxU>i1M&Y`F#bqF_Tn?Szn=1D@H>2VpPkvC^kG-rB@!JhWy}@91PFI1DW}w&#zBnQ zE#Je?sr>+|xnG6sNLYMaXuO9v&>Xzl4U7&9Ie&Z3GYCXok;FNm z-u%5#rc!9Zg}~)_97CoX8dAtbMU4up;aY^Tn3YfyQa6&#8MH!d5bn*+_D&yE zb&Yd^0ocYE)vDdej*@ybK-H}lFXvw(D)vMc_s>Q7%+9cVobnv)dxn|`WtBL${2<4f z!56isyAe^%{51Q};xkLgo;It0%8>yo4l^$-6!-Beb!j|a4{3CBp7BNW!kwB2(~ZJk z*zl`;P@6ey_-9v@cNQ$fH9W};+)e}IXk$CPjtXorowA+TCOGF zH9ts!OQ-Y0i6$FT1wP4oz_ooK}Omd$@|(E*m*KFZa5q4Lg)JN|JllQAVFF# zZPOfh#$uEPHGm?Uxt%9ABMiG>16e_Q#7`Mtu?{X0gBBAXA75bQJaIgmUr*C9&H`m% zq`(kJ65{j$ci@)~&ZLG&zSxTo0f=-Xtk?kb*IOXWDURWMB#wNpZVbp(!uE$o8U%tF z_SHdVK-DayP&(PqfER^iwav+5MV!$nQu4J-tGTK}Za|0}H3?O825kE6ohq+Dd|v*V z&rGf^O(plUDTDN*ykVp<5Othp!BZ&+S-lyTynd`!r5y?+CrKsKf&MdcSIXuaH1jcN>!TffY zhC@wREs)Q(qUMJ3&RcEYa=TmSVq*JG6p=_=1T1-irPXl^gQ3vyu02n}$rQXjhKe<{ zsm##6_NJYGl>9ds^uF^r%sX$_eb@&4cto3>0}$eOPQ^f$UCDb)(Uc<9G5 zZ)sgHhdn;#ihTc4Hd6FFTSJo7X@f)-4OzRNuzJmjm&;0=7V*(xJ{<6W}Z zAZ&%hympasJt4FBdjWEI1^b&c&|_hyZYS*hh z!_jcTBg9UCVJAUdb>vIn&`_~&UQv3xMfy8*{2I>~%Q$wc_6Ym8%tdfT>Kx9uX4x!t zGK;j&o!+cDX*HGwjsNw;P!m`E9i72`+Ms&&`xAX>rh%doYqg>SWuZb2e zwN90tGRSPdXN8tO>J=aUy+5Lx1BY@mw3ocg7_;Tpp(C4><4|~kg6))CotfMrbsXA6 zhU0aM4j9tykV&gE-v{sKQv%0RF2p@C$04v)y+Wb2d`743m)EB8-o0W*QPffwRP6pk3MWeLbQ+{Wi0SC_f<%rc)EkuVl>9b=AJmXz?-q!**8nWs3cenJ5? zdFa?>yWRf&qQv-G^9{mpga>=nBDYBu>z~63#D+aMyp51zpw4qpK8Vd;q^LAGlZgfR z{o<_dFLrL5LqqPwDxoDij|)}z_^@eUR49F0H^wpQGB-^`QW(=Y;Eas%b&Ws3?>9fl zyr7AgjU-$HeIFZP!g@{>TZSfuEuhTB1`v-Jp*s+UgSQ$@{8FhIiv(iQb$_6#v zDV97znr2>g*yMHd3F>V=N=vxSu^6<0@Hy(`0K{aVSU#H!M|$Vmoe*Y6!c*u4tQX4f zXBJ2X?G|GCc(bHhc(7QHA|DB{%!K>lv}nYMS+%1W-!2Uv4s79!AZnsT1|y?13+ z+TUn>Q}*n8lZzVb$ua>@qY#@noni7=xApYA48hz02j6MbNef;7ZIZQhe)+SZcIiJn z7|Z)(yC2LOl1;_*+h#e`F|}T*d8pj)*Xc@2(mby?SV+BP@6U?YboM5DqO>23a2!DO z_YdKZGeHu?Ji$F6>scyNC=lP~bU-PfnplT$9gMUA9W9hQ zdjM(Yfk*pWw(p-svO=LZTEv@4S4YA_gHhX4EWb(6`do+h2JnKlU*;kRB%uAlAgg262AA!Opgat;D{1$>JJ z4UfEdO9s1tbnOSLe4+*F8F*31rIh_KGVr(bMIIkqJwF)EldHuuT(4&&`Yq^G3c2Bu zX(+E(JH0U&vbjRz63gS_;Bi6i-?sQ5> zRYwApf&lTwb+-fFXM)ZUy6RYt_;sH~v5CU0<|^IZMU3!+H%Fpwx0dk7ag1~IdVJwx z?i{gr%@Rii-z4orsozpS1k@i_c?H{U|1KV)Bm?Giqjey|7gr_SbCP~W~*{)i@n z&8C;;zW&JH`gVpXi~ct!I6BL}0w*#MOvvkb2SJp{PpX$i_q!V&ThHVlckCaLT}4zH z)KQ9TDt(^oXE=PGyBDoGcDF81M`yuZk?Z^97pS*pQ@<>Z3uQ_nEg%1*2jU$HAq5c~(=%Z=^D$nCEDWW;fw_jaJ36bMt#EIW2 z$VmDyZ&1lrS{+PMu5?Kav6!V4?2WEn(Z@1X{`-7@7NomeMzp9Fc;SIao+roKVfkpM zU~xE5PwcO*>nDWtPN{YPeCjldr)~kG4>d=p4x@CVHZPevsfwC!w1N{;qMi*@2EP!1 zVNr5{rtY;($hngB&1XdPFCig?!mud*gZnwB`79`T`;#`Z{|{B)7+zPmh1;-UW81cE z+h*gWv2EK<8ryc`G-{H@Y;2o%^_=fJ_ugm!%a5IB&o$SaW4z9LheI8`Wgt{0ybiCL{!nMume^&ok5o}H=SA;}a{m-6w`(PS1%!bW<9BNKZ>kEvUq z`hMpfnEk~Z`UJp7ag-PqFZhj&RS}@l2IxQ+gC(N$vqL_Q;vgOHE;I0g&l^me5`afL z+{GQhK&OkrK}&0@gsEaFj~)S=)O6C)&x`)&xqJaK$=kiCHxbEY7?ffgIGL0(_MZH|aHQNbf8Mf97o6VvYjyXwUQbK%4dHtYFyd?6s-#yBRG5aQyU0N%gFpEaC z35Dr?wqm5i{tS8@Ot4!PbJ!9j29->X5S3+Ah|9deerI^jz*v!-Sgl(k9MzT(O3q2N zr6Ydr3a90wDj~VVp1i-w1NZ{923vCE++DZZf|E?QqvC1_7boR%c@ZS)9|s?rPG8${ z{_X0a&YVKTQ7Uv}7tgg6%M=YCQN{u_9f}QPxzH zU+u2|o0mavfAa2Rbxd1pUBIWa2UjCFK*_kvZ{GGOqhDN;SW2Y`mA;dW7VGC%V1xdP zje!#ZsaCb05z2=K6`(q}s-)|P>`(r%Bw61CfhE;xt{v{52fR${Tked>Wc0I#nlOD- za+6x0#o0p09EhtU~f7W5{|q?KYanyP{ZTq*w-74|0p2W= zK#qgKz)PyvY#q~J+0VkFDznD;ZQ(Ej%4u4#;3|OJ6d^uRbpX1Mu1CRftDvjzaXrI+ ze_P~;w^iKu#Eb?6MX&&r>oPpmQqJ$R(Sr7bmp|{Ac)QjBO;32A#zH=-)6Lm9#!7{q zL3i?)SElRn_vR;!C1PVfDgx(ttS}e z!ffFyB9;o?UZbfs8{k6avkIH1b2zbMWcHKl)tbfqU{DQ`gN^;4DI$`dG<#>$M;-#x zFz;UP@sd?fw(ci2do5~IJFS9BM$_rS{B*YX|J`bTcbp(}`t7XMsH*qttJvnCsW{;p zVcnn2B+cfRvavUQzZd+Rkw-RLCa!cGc*Oi);5+EHj20)$jivvtA>pE(iipWVOiZ>% zBMHzK6Ct@RL?A&agZFrLY~3y9$B~IHf4$qLPQ(kr7z3tjsi@%%<}}M)HUZA%>QY&% zo$XF7yibZVc=E%yY?u3dx!}wI;<@#82`p z8HzuDYtFNKo!Y~ltf-UPWk%4pUmIS;NI)`a&2!33he)R-aih{0V5yyO%pmJx87Qb1 z(jeq6AnPU+Q=7I>fG)33Hk5WHki6ubWmZ|Ixch#TME-CjSMHMkewxmD$UrKS0P{Ay z96@{a=RsywBOza!VYlR_6nV$|)sQW&va*x;v_u+AjjQOxc~aE!od#kP(r-43}I7W)EgDuIOhAA33oc|$+-B;Z!swgo_w z+bWg?d4hz1c$Ip}<<=i!KNO*p1}$zeXPElG3!E;*e%gL+Q-=g==^`aTBt|5pnem#^ z_;WWvGkVAL<@S8{k$%(#Y6?QFYNi<$_wuL^h4K$VLfB-dHu_wGbLp-CszP!sbs#A& zhh4^)sL=jB7KbnBE1xNO>M0jB^Cm{hz$kT-!O8IB_Vx0#X>y8wwZs)^mdjB@%LmSu zd3KM{?Dl+}PK!MIdbb07Ypvdb+lOOD!*bFWG8(m%$xf*oG z1-a=PUY!pxXP}T7D;F5hP~It@e7@5P2~|A7HeXW%@;Mf!Z}!(;47#&NSU`m$`%XAQ zFO+~`jwITjA>i;N93(L$K^BU|B=RLVF}WC%DcktUx&f1z9D)Re0ENr%hquT5Wk>_* zvx*de<UX^uG8$g*jzQkVYXgsh zG9X8!Ejp3+!;!#loi-|lf?*3ooG_W>Qfx3eo6n0Kpj1I}C}^xX^aR^&{P=p8Oe%#8 z#!3KSDvAgvDagcA<`uVCd+e>%+L3xE>QV(Pb_v_P-FK8q1qBC}4j}pp89z6BeF|ep zPG-2W9`aw}XBuKgm3E3`R}2e<=ON|dnY`o+)d#HZyC9m{$2@;$lDh9_w=0cNnjOyY z@tCw|&IU4fr`2jZ{^}GivzBt1)T^W_}yL3z_vL?Q-Ni-BR3$ndG6!} z0Gal37C>0=EGM4yIvn0V6uh)P#d<5e|Ukn+&gGHdLtvK5gLdF zhudvBqXIva``)2R-6R@~I$?mMO$XpLg^6 zK&#>L(y^yd#B6NwH>t_7Ia+mY$J&q24~vq>d}zqaq-jnqR`W1eEN0+*c#ITE1)@R# z^4Nw`S$FPIX*AVBKmA5*$Pb*1M~bB8C@FP9hS?ljhA4hJwhE zNSYPP8=h^e*K{@0fLLSHgE#`Dv0TqS+b7RonSRtt1>#_)-zgs4iFvI#tYf;f7Jsn2 zXd_xy43YyZiF7W5VV<|g4Wy#lS-lt~b7Ex-xg1KCIhC#%-VmQEOSN9^Jnkj~bgF2f zuHXohjC;}LQ>uD2vf_g1o08q50WV6;g6Q%ZK}**LRw;AGx`yDw$eXGqsMS7<)%=W zK*gcDyq}O^G3b-4Z#$`g;f^?ouv?1nMGB3^mxJlNMfUC6BUo*OoLHf`wC^@QbSX0g zcp?G%%_)|$_1C}GIy-o*K~F>y@z_#%W$WIb^FJK43xNHg>8#C)4q$U;8k-5kE&sVO zH<;#b2%T8J^c&5i1B*Nui&TDc3Mb(~9(=oDl>ZK|GW&3P*NI(10X|%Utfq7r3yjo4 zGtWX`jg!xZ(=PIMuO{y3*ET$j0B0YNjiN*LnVEWXoyMKmY|h{#SC+~9%2?N&6)0k& zyozToo(UwZJcAdLsQbBc>oVO&-h#n<8UJ7LIBvDZKa;6CW=f($qELk=Lqipy??@Ky zw8KO`@E15TXene;z{{DR;wOf|aC7kJW<##n#HU(q;k|Qma;|Q#V1-uFdlY&qA@n0? zd2by}9@rD$eZ1qfXO0#>QX10Io_>LC2)y)Ug>y+cPS@uZ^3!xyp5 z@i~>2^2Vw|{W721kBoC7o|JZ1`gqv#(UjMW;VPNla>|t;CRhE1^C7^rJUJ|~_4=n9%7;-TF~3_vf%%X@ubBKE+VLKMyz)gAhaFFj$(9%EHxYN}t846U zrqA@^AdF0$X`0(re_(r-dlhX2S)Io_Z*==M2XMn{QHvPe_Eu&bJl>2sqEWA#BFU+m=b@S^!P9 z-si;?j90(+BfR+~c6=Z|h$dPPQ^X%`cT~9v2vvaO8PDP20Jz=3(kaw`#*!!?eMIAD znY`9*gIsGci3L*&zDJ;voejVO`Ree-_Z?-c|3rVF!W6Rkn1LliWMws?%=?__kKf;Jm zPn;BA_KCeZ!H`Mii4WQxu6SLmwCJToq-%;qkG4;5^@s7*q{1XIR_0#EzLK$XU1KDs zb-hJ^r~!|VijKQn7CrMTE_$I~7P;fJ!}gHGBsrZ>5mf}&DemUuJD<-+LD5suJ zr?8YVR%l4vA`>AnKcNI}&EJ$d%J)xacljLQ!0f-RE}B)V%-=2il3CaBL^$5`vWkhf z*Jtv|48S%qwWDM5&2O~6fYwD%g?zd(Yg|C)MIbRm0~d!$6YSQ!amvrrFwpPy?Iu;Z z{gzy33`CJVlhd<+Mhiko_)C5VG<`odHuMwwcE1hxLj_}ikKVWdY5=n&&;;`BSNW~Q#b>ya1PBy#wDK#)Mq$4eYez*jPv@Q#UoB3I{rWgL&wp2)w`S>X8AQ1R0o zsQc@fLCwGD4W{SbuT;6Zx*l%!_NsrR^aB-);PPQ|eDikT*+(Gly>Oz9ehZ?EnQTI8 zjx>W~-Z{sHKH?O#Daw#!4jmM$BbtUVbPTrJA^FLq#NF(b=?KM_72#=>2361cEgFEV zq%=#ED1?^@JHE3-I4&ERChfD^A%A`*D(Z&KII&HtX5zu^wr$~!F_!4KOG9`;MwUSA z_QL;_{Dnv?#R@gjUl_6sNZw#N5}vK!G;F$Hk%VXCG~o4+HRK0v3QYthlP;|6Q%9OM zY36beWDww7v{+M4Y&hmtIoO;(xw|n>=eGGI{{crJ=rotR^2YWF)ttR(bV3PWq9oW! zMgq#8KO1}loKb!iG((1knv>Fz=u;s8hcD`qXGRqz4=cb>%n%@VTP#d166YjVC{mK@ z=&TCP(*W5)$+BhuCuOAvFPKAv=&CgvD1D&{XuNi#M31In&Z}nkM#2cpM zNQ@II6hV4B9!ulokxMzRc1T=0;4<$l1aIO)$h4f48;TzzkV#B4ox|zZeh2CZSLpi% zjwc=^nc8T+;R13A;TUYTTRA`7_sc(Ev&Ayzh##GfAq7h39HdmJ?~I=Y{f^ zo$a;@lf?`!6oCN$(29u(`w;O4R4DutN}=x$e&5$N=SIK#Q!F4WbzHREAiRw%nGjLR zy^>5iS#mhP)E?8MOyo)3SL5*ej~<^F`@NrNif!=E-tJI#&6ni6LuJMw*B%Hul<52B(C?WD5rlR2zn(!Y>qNsEr}IyvRAAJgE#zW4S3 z=_~3KVwS$o{SpqPqhgxSWbIUX%_#SFIdsfv&x1#5KHg^FfiMAR)~?^>(h?xY(Wq4^ zB_)-D#M=J~1&xpcfaUtjEcQoY6eX0;<^;kI>v`e4+R)JvA8(w07=b`+fB~&8I5p_4 zbF6N{t+0Bu-mz-xnBCfX&v9qle*hZ)&^{5Q{sN61ZC}Y5fL7jBxL#f;kafZN%4vfA7i|g17xa&q$rsF6{QJWq1OXqa1fWd>vTZgA zT{lM%F6z}taSMX}`@267DK%gUhEOeA?Z9@e z=G!u_E}JO`-(_`(r?VqRrOzU`b>^hJYXG12zemS@0SMpWC=~Mf!2Q?;D4;CXKu`W| zxF5lSz{J_e+#F-KG7ivkXf>D!0R;2Q^Yu*Dl)_*X9Xs0EG*JRX1q}NOqo)VxHbD?r9I2>tpa|$(6PJWS{qwIqH2jru~dys zt{3vmn)q9ZY6FAzZQ0?qn{@&kS7udbdk6G2bK&p3w=9H)$@#s?D)XNS_<7(`GETlv zyA_k>x|e{eS=9Uh`wc*LU_E0G{n;q?jrw+TFYm91H@}S-&m^lo?qBKYXR?YJJL9aV zuX0Q(c>PK$V679*nYEa0|3WF#apPs)^i&CL4C|OWtW)7Op~{Gfc8Huo^%mHp+NA% zTWy97wL)m1~0Mhre zdhH#UI=LLUb6fmyL?+N{*lQK38sX&xLI+;8lmnZ7?cYWd$Xc<;Y%tfTlK~Mjp?~~h zLbvvk7TY}UOX~b@y9Wo>!9;(le^bT(z*(1a^>%+if{@<-ajErI)J)2@(fb6oIK3&n zpMAu(Zq-^9n6O^bcUIYX5iDLT7v*NWCxD~aF2r?wh_(*_2 zd71elKE8=yfy{(h&;-us%i)b;i;b3IL;WQ!^?o6Dm^rQcML^sqq(Z)|Hqz52I&$*;yXI zSZZ+Qz;>yk8=1iG7LAW{_~m5s`7G0dT}i3Z!!%~_H+M9QiKSMlsam5~o6{M8s=N+O zt<_9-z}OSEOBr3n%v)Amel{Uz#3)$=I$tL5h{CR4RhvbiC|RYp$E4kHbxm5*t9Jwg z)H1dlwb9eW9Vcm(qF2m0r3;L7_w94=BJ&VjrAlcmZ$AxWmmTmsp!A@YR#plC;_P>s zBg2LJ!2U$02#b*TC<_%l)Wm)#(>!+hE&q6`V9j^L3e0#?p?S@GNH+ORJd7^tJlc_usRMb zz7DLSmxCTcC8JVnrc7MQoQlS#@U^i-li5+9SP?AUM7KVwMkVamgw~pQuL0og&G`ZB zMJ&JJCE)?=vTNM`yllaC;FRi>$Ua)lR~i4$o%kQ!wiUQA1e5gD(5>(l!$4#9nxFh2 zMYlP6pmu+vs+P%@Gftt7wK(TPgoao+xOP%W?Zo6Go3|W(v6bD1kA=O?{PZFsG5J#- z8nyZeOOiw}GH5C*h)R6aYe9zLJRu)~w10`Z0se@D)=J#B{pf|BtpB~?|3}P6#D#ji zsKvv@&d_8548|a&LpQ0a(E<`J{WBE%DDY1kPvBHEx|1I8F3TIg5kS* zk4duEV<2J~$m-rg;LgU)`SbeYz*mu(LtyK9kA||R z{HLda);5*RC)llB3k$9++6+r;qv6PZm!%FIL=AH?CqbtIs zRf&=buM}v2vZp+>|E9B4{mU`vkm#9`AL2%rJ?fQc;m;!3yOjmeAIctq+9`;g_(%Y5 zWULwo`S0raLV&0&6dZdJi)Y}fSzP}A50S782?}k{A`}h_5cbNpbv(B{Y;?a9mN~#I z+);vc^3(8{diJ_+XZCVeyDq`mG1!?*=Rxdt*nYHvy)ScuB!EdC?_LyHb>R zUEg}#4~jtQkt1*kW+#gyoq7f`e>M;Yb#rm~T!OY#FGYQ4dCC7MI(J;!>71@J`s3=9 z_NwF+nwMH;5^$8q*>g`MPbH+9TqeLW@i8I&!Q_7lWzgFO4a(l(H>cCAU|Nh|>8a(C zWJXS6t@Jh!2Jk&IvBoC<<&*kt5_hF zME38m9*Wya+^%OUrp+E6#Q&Ub@ezV$MB{74Y;gH@Yg(T7&ov}e!~A8vy{i?A`63OE4WGHH^&YnRhrOux% znTuyRaFXd}R$mS_UI+B#u#-K@*+lxE8XI9-YS*muVNePo?d|`$())zLY3tF|RO;u; zgafDleO~`PIE4PQ_JEc==6Jpm$FR|Jiaf~EqP)xNOysb~Ymf4pDubL)pzCfD=6(N3 z=bN?YCuEOihnX)n`W>)j)EKEg(*)i9Tdq4M%7x^5$5uP#fiJ6HhxJf{4}$qwfYAy!T>9?;LUqca zNNlFcUR(i}QQoyKXNiH`fzG(41{;q3XuU`W*v}-6yONMM$26&jZ}-JO*cC4V9 z0%1M4$(~1x@aNYn?K)SJ0}tIwK&Ubx#-wSR-@g0jISLbj_8LP!(|i>nLaq9*{Nwd-P9&2`3z;dW$&30F8TMs6G`yYbYueUpJ$&$Hb zu&`6%YHSRmIa5P?JQu!ssbCl-=lKD5Urv|)LAGNk`Wwl(iQI~dq)u|#uE-}G1M`TD zT8MgH^EG8%-gD~&={AmIO&m4fP!Pskjd?H?hGua|uFW1#0-r2+4#k7(z45I<8OZqm z?H5q+QSByOt~^B^bhtDT@mSn3tYbQes1Zx3XiO$hV1P4!{Kb_;iP8Y1dJ00k4;QpK zi=!{gjUSQ{$PWFh>fck0WYR8@MAF)5ccQRbsIs(;WL);$9)yk<%HpuQ1RM?++a)$s z9|iwfY)GckVks9%1_+115CLtjFFU`>v1(ge+oR5R%!ra z&re=nUe!|}eL{o)!`J=!mdeJ)2Gl%2Ae-%X+iazeJm4$?I7O(bWt^J3r%Ab!L9wOA z2YpKT-VSTtnvO~~8S$yONSO=POeB|>%Y>^2Voq}Z`oz@cxqYi{8gfWNB7;qw*J!7jO6cn6UD&=F3=||ndDJs8G|!n`v0A) zpdbySgyRZ3K`VF0YYHyp;&)IET0~o0TZAGkmVf~#&jU)I*JF6p)V$RBC!T;3NW?-k z{_6Lrl#25&)ba0mFTRxq%=z1a5$9t&d50XF$wVq_hU2anxr2NradRHi8ZZn)2j}PN z9s%ZlzW5rKdp8td^MF<_6wp@pPfdLR@MM<5RYMNME8`JXi=9YQC|Ru*h|kmdbC3^* zGhm{zp(fBNgOniJC9+uYM}7cWwsm-z^euY@;es>3NrHZCkUM027bRnMPLbuWP7n$_ zcf&6hmKb_IG-Oq1w@e=ZVZwj~8JkY+$r=CmF#GS}-W%GNWUc^kZc&RQZC|W0B4-SG zynp0;eo$nzdpGD|FVekS-ebY%_YL-LzpZJ(Qh0vP5sY+|kaowohkGaAdmWatP7LeM)al}e${ zIJ^DxBT~$2tDtNG(ox(yM$c^Hw8d_NAA*Jea*@OI+fnqLi z)HnKrQl$&^bXfNHiiq}i`#=56sFIR%DLoQFx@uf zd&IJZe6mQ5ve+jTal?-VwiQT?YVD9*J})a5>eogy3gCth*Hq7Fbs$*d?Xe631d9mL zU8u7|4IjlKm-Lk6gTQoRPo)-USN{xr7TG>Xnlsl$MR)v*9Bg3(v^ne;1A%VLht2>C zBKV?~6P#+K$4ad#`nD+;9YrGN*;wul=YrVy8qg#{26MMkG zJsKD+O=i-MiV?sTOpY%SsYNC`QW5ihexJvnS*-oBMh0uL8hGRs&!J(f6-%NE3A<0@ zAAE(PDH~bAw>zDrfm~Se&U0|UU|_ggRPX+J%k&Hk;@4N)Lc_v7PZ{)tKaHasujb-m z3fRCkm|w|Ryzrc)cZ4Ei?ETDD0n(G-ELBQ{I#?~0+60Mq=y`qK;VhNwS6c`StJZ!2 zr+N_94JtkKOYtf|?g2(Orr_JdGX4Q5X0QY8!J579sV(!%jpif@xx8(zlOqtXIdc?M zOCFfj)+vj__C$u@`&FCY7{l8_e-VDq#Z)7lOR5FRRwDq{*K9C>=8vRk{=1Tf*dUHs zc5@~00Bju_42_bBk1AR%8af;IRV)&6rlAWCcw>PBP>_+NFCx|V3=&bFL?ZUJIm-Rk zjs%g;iWLJ#*8(dVX~4MEkZczQlhxJTG;Ue3X}r_HJ({=-Nf*{lx8(e+td=9EZz zCm6NYbH01eYNvdU457EC9JT^mn)OBi9mDgBgZ>tJ*HC)+zY1-+dfN%Qf4CI$t(j+oQC zAIdBx(>XJQa5MmKz~DZ`mk`L+;>|J3xsv&nb3UJlZVCoV7y8GzPh@(tNhyyLV*BuMHK1PQ+jN+y$@; zlk+5uZkMAJJ}?tcF`gHVVB|aDM3O^YmVbz^i<1kNFpnfI5NF?e*5Sy;><&X>%Pbt=eQsC?u7QmBtjF z7>7U_aq7RNa({Y8ON2^uEJwRgIKz=rzpSjy7Odoz1zu%DUcB6xEIMuW7!Vlr z1@1+Wg6PzWe*+ATCR9vaWFkuC^8`pFmsuaF6Lq*~b17=+bQ)NnonP{3KMJd%BZ_|gwcTb?nl1YwK41za#8;%z56^@>YbUDt`vUM0%O@Q6{LXN-+T!4E z$4CCB+$Iv0Ot?v{6hv{*!o5G};pe|Kbh?P(TkleZiXWHBp0HPyrlC0_Z&!RF7PHAG zvVw;CdZr~mMK%3ipD4P{mKUw_$yE;D70Rn$w^y#rG~GQ(Rb*kYI7BS-565fpsD-T3 zyOf6<-tplEnJ`}=6)FB=m{m5i4!sG&wb2OipN)KT&Kypu*KvE>ds+s=XDw0xVbk}9{GN_=u0 z{osCxSI-u0XgOKdB6q%y!>m?ohBSs1LGwAC!A_}+G?BHmzuk2JR5*xlUiV7l14Hu= zGz-zY*aqXsU2?-N)cw# zfC?UE*QEhq&>7Cm-MqMQ`Z!-ZdB1OOOXM9A(_8*TrFv}=KqaL>O285$rXUuRy59Rq zGQCT$03CHZ$bghZ^7#u``|=37lw&0NZT%$)hPRV2{W)neCp96_xGXZppB8!K$zU07 zq=aFoJv43%R0rt@PBJC#q?A%WVWLmU;e*Pl(v`!Ldy2$n0-cYc!mB;zrA=*sDP}U` z_Xiw20)Fp0)jdSM*irm$lgV$AkVh}HbSk646z52POphRVW09Z&piCxBALIS;iJdPt z^j=oQsqOgPu@&@t;9bxByd8pC2e|uKOni`BWwXZ;Wgd zMK?b~Lecq3hLuPC`!6lsGq$~NZTIjxIW(nD-V{w2Z}5(w5#yZkydUTb)-W&Jp3V(rOU|l&3pu z#juzh&Q0y(RkOY?_uuGl=K$+XKp!GkIf0X%MA-_cQNA7DRy?jAP~hu7;tSx@_qd6G zWZ8w|G6k|PA_!%6h=m7-_pfky2ImPGHR}T%9?|CjQK@f8Y}(G=H}+}LNO4F4zTQA9 zHbl5^IKjrlsiIT zh)h7l%rD1M;f&m`!_iEYR{$fXXr2;iXpv@F{h+2FN;6N|~nc)5M|NvYE+!^anENBI_N)aU$3+1ee1Sf!LQ z!erroCKDAdJfC-yC}-CHy1l&}VbIex%*Oif!rAQ}t8Q7ajKwjGSiGo7wLf(Sk7{Q%0f>JE!Kq}HB>Iw@Ed)~&hnap$CsP`w zzLJ1PoHh*_v$n)|ASdj9ccDf4@J$y$w$@};0E`0O)=}N1Qd}!xG7MM6b-vN&( zLTPxBmHsyO&jZ8vEe%?qzYnQ*sT}>|T|LCr+raM@5-&A8ZqLFY=(EM`$2UWiLK7EP zpoIZLLm`FojY0zp5w3VI*tCX z7eJu|-StrZ=}j!`*56 z1yN%`-NkN(k2E&Le(4a5n|j_mjgiyOM*V_n2~=$s)g62}i5jPn3H`|=YELF*>oE!$ zMbUCCh~UPN&EJJ_5R2EBr7^A8Vx^Z{ql*KLOwoKT&AWah9k}{ zz0-&x)Y;~?Q$>4^yY_H<0F8;IHSugew&f zvwl$mG@{{7^nRCIMk8T=>_i=yA#BsinNQzgoWMr4e`m)R7w4iDKaz?vLyEF0_p*h% zT2C0!>5Xbn2t+YCVIHqm7e_Vk8+qTkjkHcYJ{x~$(1OLVo*cL^cw4`sW9jM9Je27T zit_yB^3j|owoq77C4R?k|1^!Hc>ZUz*DEtyRtsI}RIxj~aZ0Dl6H6MMjtGS=VXruH zy1bV?|2poY(GBlX3Dw}SbG(=%5s@1_ULOLrUJ+dN6#j?4V4cwuYnGBG#SZl5UKQsaWgkFb93{Jsq-`6o9+ikqt#^_ z_O8_jI%khRmeDW9fuLwdg}>F7T9i=uRkWt1KNaV*^oWu4nyNZkq@Ih z-MPZr+SIn4tti93x9I%%zhE~Nuw&{4=mYcCM#N#lARp-}0+d<~cg6(t>J{vKkG#s=DfG$fNh!p@K0*Qd7)^zvKG>~iO()Fl?RAz9>B=kgfo)*D z9lR&Ths~P5c_%--c*vr1Npev6{amfUPTHpLkloF}RyqDOH_5Eu!yN07{d}})U}fXM zTWqNpZ)wF+!#5g81cFGl%8!1g2z!O)PQSdy57|bAWD>x4D~7eN!{kZ%mD`+MKY_gy zW*ubBc^#g*GAMlxhwB5o4i>$Gg&Fi@K-#dL4f(?ia;J$=WB}rjlpY`11gv_m^*M}0 zy>E)o(ibYS$#CbKl$92v20J@3H^RA`QrZ7aea6*h6gxHYFx9GgyJ;Q)3t#A*n6gJ(w-#0z60 zGnT^OIIe_l#dxcXsv=He2O;vq=s_yAYu-XShXx)XK@o7QZMnZ+;sVj_MiXw0Q}ajH z>b1SHtWaKP+XEQiXD%5GP>4PzM6T<;*NyKEJ|!0IqDE(P&z(6l^gI^mbWoDPF={8* zs3Tcawo2Y|vAvY$`7$FNJ1NUE{d9v6e?m&jve?Ydq{`IMYMi#{`{$G2X0`RJg^apy zcKLZkP`PINIqM|TuH~jQp!?;apff!h0qd%sJKkTv)KA&Ozz?Ip;cEaY1z)A-xh-yVG#F`YxN-V+ie@uY;~cnB>cu-#r|EgMUJ z*b)11ukSxo`zM|_%)q5zSzx5x0oo2GlU>FxDt=Mu;Lu3R+jp=RBy@Cg|6>;Fx8nBHo)%bHL`Q0^nyxe0Dev~mlM73yZ-3y9F1j5y)% z%|MwQ(D+0nq2_4SSC3K9&Nh!of%w>_Bnl)$C)wK~b2CE4^r9E#DoKTwt-ARi#Bvyf z&U%WR_bK6hR=te4X*X>@EkVTdPHy;*IV?j*DUC*&m z7Z^PQclBK--E^6tw{m|dnYwU6X?CA!?tL(=w^rODJ*ZtTebukNd2%lBA_#iZKoM;T z#dKThGj}6QCub43jcFyxX&-hGT%!4@N2I2Jymt*U<-%IihQWt=VQzgpVkYj4F@0&tATi z?{JP1J0#{d5DGuQvFTkXJMH(hm*%uleZ5_HIq-h5?~V@|0;YdfiEbA%?8nTl;~MB+ z`8fnhysyFd2?hpAmNzGSa8UGgtq~UNb1#F^VfCe}O;E?(OlulX67woFFSGkZ*^dD- z!x^|C#raMHWOmD(%x34=Z|g@tBsDQNh5;SgQbEN|lvZwX1hZ6l@L@V;KIpX5$JQg+Rjsbu_R`5!|D82G+?zp6}loUs55u~B3X9=Z0R z5qqDHD-R3^_<0LK#C^&pqPi%^LC%qG%}yko3PQ3skSoQ9H?6IIgS88eg2WP4`( z|M>_`VH+A2IpO(J9W>^3@&SI&YC?IVnzR+y=Mn_OoRpa0v{Xv{gTH6<^?kgV?r13L z%5FYRGCyseAz$U@@5=aiRZ8C0esRb98X7AqoBWWk1?N5}CbO>Xa$Djg*IOiHE~sP% z$O8?Er-Yx@Mxjw-1iUpN^ssM~HgsL~ZkqI?4t7Zvtp6BiT4IQ6hjOAd=UiE?7I+i- zZnR;XxIyH9ozt|5g75SF?lt_lY=p);ZO}q9xU8rxIIVW`@coHQYbT4kAtL8E0ME-X zraZg|RUnxGBU%kah|+}>DN7jiS6d|fc<-kFDm~pv$;^rE#bGMHPQkh!LK!g+`$tr} zfM3|jMVrRcX*Sy#&7fK}(f+*~XXR463yJzG*JlZn{sPaOP#Av~cwbS(n_4p1I-4Ih zyvx>~gya&uPgpXRG)`oQYsP zWM@dPioKqr1=i7`_WKpqJ||OafTR>xp+jbCHyR_o>vc*WQw3$-VSiT-BKK_7Zv5uQ z@Fo(-F)6&5`&Os)lRlRRMWeM{Dus{!oZ9!pfm%APw&;4HTD#&I8w)SUdSxSeiFr?r z@8mLoS(;3G~$>Vy{lL@)VD=+HMq~F!Y2s%2o-NXXM*5JTKvh?p zEzs^py~DPkr6I_3E*USDU5slKms2ENpVQgN{=EDS2D6*Hw)eF8zaL0ISzN-t5|8#%_!5`L41uXa9e&9sC7wi1lOV}&PSigdDYZ>L zB4d?2_3HC4mwSqEz_&y@k#Yi)fun&8D@Kc#bB{8z0$aG6wm}rNREk2oe{7=8!2IYA z&BSoK;0W^V^N?nG?5cUniR6L!9vy#_ktie8%sP+GCvO5J?nocv0HTptqT#@+oD{sz zQHLX%S;t2XC%4p%8^wDg=7xrTKMqPvjO_K?psB_*RzF)?OCHV8M^)CGLL&zN~j*(QjT65N>Wqrr^QbS94eonfgJp5DZF0 zoKSg4S8?IF{(v~aw+0A@nbPY>jmq=0$cs#iJ?7r`hQEBP5m;ZgXqxxEZIve2`5$?F zt$OeKn$c65F@FEJiXGNsCxuc0OWu_4XX9v1jz~C|t;*`;F#;`v(TFy)_A6Vx3VRHn` zvw;LTj-QLt)KlyKQ$YQ9Aw{BvWCfFFc&yuodPT9ye)9m1%Wq0U1rIkaf#B!a^E?S` ztI_zDNF0%icwOz(CuTwjg&c?w3M<4ZQXM?OTFZt`!=(Y#x9{UtDnU#iWg%M*J9ZpeAn zn;PYz?;A~@4$zV4P=23o;ZgN^e1egd*PSB5OZAnwz%indi9r7^mrWcDDc`^zF>2%C zWB~eL1-$*wul&I7TWu!W)rx&VH05UYQl{0w4WS7NPN+xq`fX3)9^QZg*p?#-HLK5v}Jn8|JZJDeOJl+Dt(@X}G>rWhQW zu{zaeJn2*g&AC}a@wlq!Rl&XqT&!SFF>@(togA#Ck6$xuzz}csM#F-R0SHT&tuf%U z>?pU#HEt?5AGF`TvPvX&U4txy#%?3s)KZw!((W zYay=|MXaVB!8)m!8S$xKqnzVTNr-MrCV7UIe!+}-hKE*!Wk>H`-R=BsPEJLI${7p| zhQ70eog7h&2$*l;!;m`Ak4h3nCGAsOBjFo=E0LLe3zm_$#d9o>;SL&CWbT4#5NNj= z8+C-TjO;8fofcifcf(@wzVi$o-@i3Upv-;?mwyLP%B88Dft8Eyxf}icYCK8^hENy@ipR-VV#+U>~u9ck;|#x0?g-1l{Ka)WR?p z5hn~DI07(;8vPZSMjll_Oel9i^p@vS2t-3q?cFIAC=SSjt}YpIb|pO8h0V3LcV95t z_lXl+$%Femo%^p7!PL>y#cJhUGje*qUeE}1zCcz_4i@%p3@H1h0A!UXE$tYcKzz(R zP@3bTLO#8ly3^}A!(})eu}Pe3D&!5HIyGU^-36np=}*mIDw)UBXXVx23m5H76@0}s zF6|v&9rg$5_QfVCU;dGko^sd6*fk#PZ_VFy)*+GU?OI2t+0@gJ|EbFUyE^;NT^O80 zn56;~+pwq_IKZ4KhI?P3^6?8tApk*73eZeJEGOcf;YfgkS}I~p)w7Nsh>WG$$jPan z9nQ3!5_-fLTu;6fjElD)&SqNen zswulDGkvX0R=6-G;*-W&Nu)Z(wJkWJx0k$5rF(b{^1#)3?eWX=*DDRzX=hQdQ|g#q zh`-b+Y_e*PDpqSDNApU9`yo1X^lQ6(>Eh#!(0Ic=o@_+4vn9WcQ7IZ_VNO2HL`s!* z2E9opk&4ademf0@keAY*hh7WDTCJ?z1RZ~KmxWfrn)2F^kdWJV;7pOjcF%MTVg?7{ zfRW#L2Gi)T?Zu26G5&e-Z{~dbe$xz4$*7}DY@))-CL!?bdKojYiLBl*1cxeUP!d0Q z7{6z=_0)|PhkV>HImyyJ#iOLJc9>*&jDIv(r6?Baw>x{D6ohA=7Iv8g&K3GT$Zy2J zL?*!Crk|cw)rxestY8)yX4L%mK<5A6F&UB6aab(IYRrp6!}ewr@T^oBwP#g%*)ey9 zB&2oa#-#_Q2bHr?v#ByfvVueEs40=KATGz}J^oNaEy=->7!)p1!|z_UJxe8HaRK5Z z?>?m)CdiCWSxsU!lZ_P<`ahrjz8g^G3R?wU@4^R1nw!ou9~W*1i1@IUS;kXo31wf9 zeFS(XfdTLjX*nr`(a&Ej-W{>vDlE(RRK6PM=Unti_l5q20X|x;!l*}x7v(Qz)x=VVrKavKHLf7Z&nsrnzvXKl zm6*dQXsaUH;)Q{Zk)|MLL3eSQQTL3B>*w&^s_K;rQl-yx0=(gx@u&zgbxGw&@Y) z;Od)eDe^bA7|ZG`9=!*d*O*kA;z*1=$R4ld`xhl{aX)~)zxfCQ6opmX1Lv0VY`1m6 zWAZ-Q;No1*OMHKLU+NRF1H=U>6V8QR_iz?@FzR!_^K*T6B(au0Y?oM2vr_lb5y#bJ zb0Wx$rb86Ybf#CV8%!~fiSKk7b!u?3#3dwlGc0qR&L4l%3U!tMlj`i(nQUi_O`y$?PrqAlQVg7~B zB1`B*M6sZS{}b~Bqi@Ddqeh|&|L-C6e}4{ow=uq)7L%5dm!glrG*T$6lFE@rKi@D; z2B0=R3S^X%dnz>Gz71={_QxW!syu<|zmpFNmA6Up(^@=X1IYH7kM2__%2fd-Ihygp zaultMg62}H%aO1YZE9hO1uxgq zL~)+L7b%gx>mmOTmC9;9+>{Zz1}r^(kJ4uj1IWxPl$>{ZLobhFx&a^y%fec*?L1<48s4RYIpQCDhmm0}EWSHcYj@1Q5MfN5QxZ(!^NLp& zYuddwv0a{{qv6aqJ@i^2*;bgt1M>3=z)c$BE`Ao~HOz(@f*0|Jp0Xn-oMtGJvt)vI z2B0zsn(L!vy<;eyB!fnD_)t<&QJ|x}OvaCqVO^JgWuM_hls z*+{n6=8aoB2)-=>QLg1Wja0dwdw`40_JvDd9?BNmwZhmcqh7&G4(meSB@o$0qIbJL z61P9~eOujcpU1xAlnS&}E#d$6Ty)GdnZ;>?ZQr&F)9k)|p6mVf@pOBTq}0I}@IgsM zKy-IAfU-YA9N>Bc%HhKVMUuIcKK!bkIQ2$oAOb-^hF(LvZMh@NdM${cp~SRi3iE_h zHpqDbP9cj+Vxz^56(j@M9#7DkU2V3v?Z@(=;^366kJ%(;XJ`L;27&G(BS!@67bqLo zb_53{JqDfb?FK$G^>rXOoL1mMa^xkS=S@C)F9>vA8_uYm;8D`-Lo$k+=vr*`0$Ol> zdiJVH1-#!%ffvH3o< zTdg*yiPCDsMhzNH)lwrY| zW%{Vg@Qtn!oQQI4e?!smgU&eR@>{_2=RP%)fjB}%!8ywaQ{vF|J*@yV=Y?VO)!0&# z!z;0Lk`?+U^;Sxb=kK(eD%8z%g7EuCxPMd;x_EO)g$z#dA3Jkh< zb)8#C-HM+`%`*=IvyE{K@&2WkytB!?(x28Al~v3dSB-h6;meG`CgwQ@A>yF1qHr3Z z_Yphl0&K0o@#YLa~V&z@>hr6CIqn}J`rzdnW#yasMU+v8>9(a6ZQ4is6y0-S!&BDW#9K+5B-@Bo9n4D zl2~3lb?k?tlJErhBsK6^@mW9@O#{Amr#s`>vfHFp1IE|qTdgycL7})Nh0M`g0|EGW zS*|y{L-zwVoCR8R=jZGB?F4ggK4_nWKSzs{#%%}-nfk_6v)gP0x%nOR9e^LCH(1|Y z6`-Vq_So_&s|+F02I+em|Du1j1$_BKm!4s~e>`pPOqRfWcX^}H>-87d@;WB;E7uJV z3)>w)5pta{GX;s&o)1ga8OFiUTVU8mX%oxwzUI}s&G1v1oGwHn!U@KOWzUraK}DTc z&f+{d9MeJGQ!}^S;45ZvDFkgTKE-_BO1A;>Xo8jw09#SXpbXHeus%x=TGmB0 z5yu(44*JcBG<{dZe*A$dYT+ovHL;Y+=L()kTGiUSc4_!Y1ZFjR6P7gRQ#O7zc5T`% zfJntWLBgsQym$p87ePI8a&k0O;bZG#P5;*iONOrrzeJicb}su>xYlh?1j*=cF=N~Q zF;_EPfw3MfGZmf%qty9qz$cw_-b+4P9F}s^mq@F{9aVkZT5zg>@6bgs0eg+^?$STKz_>WWQ_QgxDsA0A3n&$KMyJ31keYqMJ zW`#dETuaG7CX=mF1XZ3RJREj!)}Ns+f2|Ir4T^ZxL}Q;3j4(zzK~Z|?S)2fqYF1Id z;%5v2Y~!I*v5Fg^j0jiOiEY0FO#50QIyVr><#_2smDAdiPSQb;NI!hwyUiE`^wmH2Ycurj z4-c&VoWnGx^cco(%R3ockU2YKz_>wT;f%YKwg~d@1~{Z}lq-)0#WcoeB$t3sWJdco zLUa9}U=PEOD3$xq4l6AROdDA$-HMQwnWfLn{GRNZOqo&4f`p-O9bNgt%MkvU>mKDc-&*YTYtt*IBhB~wwhZXJ9Ix$HYyn)&MkV_w7j6?m=-26B+pRWPfn^zI z{Djb}A1@m+kp_Gg%0j*`r^e!vBgS7>gtFmU&FwNv30Xb=6jh_q-z8sP&ueo8UT=Wc zx2{s*g4r2fYvri)-)F3ik3{qTE$K+XO|AQTGFP*ikl=_3VjmEZ@cas-aX@mC0Uy)+ zOY_i_rNrZ6Bvbr4sm{khNj{AkpMp8^w>QX!X=;38WI6rXGH9n9+dpY|Sau^S!O9K0 zi0Qv7YJGWp5*E+X5*-w;QiFchKL|!Ce4y|Q2noIBpCy5Sp3%fLkXL{SBJNH)?eg)x zJ_-Rh>g7hORv?&25Xi8L4lH;FMkieNXfmTnxZ&&LIspFuFns5-bsIU@jG@f3Os5Cr zdGvf*mZ#qR`kcKCC5)$VyJ8gJ#$+Dj1wmq7*C3Rp?;O!c7c7AEjmx#PefQkiJ_UzF z!1<>e)Z( z$k1~ay0)+63a4KwxX`!#i0eUafdW2APBGLIBUV5FZ_h3Ow8p;J{Lm8T)n(Wvq&;)7 z)|j&&n9l&d4yqH%<9Jv0{T>jP+>V+B4YsP8?U9;nRul!;LEBt@(^&OCr?$20PEZCx zgPaK_yJ+1dn>~>9t089wj>_z?2vyHkFvJ${$4OfsRlQohz%&8uOEQ`;?EBVf?JKMI zC>;OOAUk)aBWCxOFIHBo{bPlH7FUn_X|1a*ZQim^4gEd^-!`!ArropV2gv4?1RRP1O4vpafQvb zSmdr&x?EzLg=jQnS~~v2i9V%L*qC zp34*?2q;^jr%5AwS%87L#zr&MY-+#T1igCWW!K{uSl0jolqS31me<{e5*-1jmnMqB zZnNjiJDh;UqQkLHy#mn0tIiJylj0`x$NO1(@@B22UJPdEu~g$`7D=JbDQeACHv^Y%SNQ1Ep&Sk}O^nw3BrtOhyKa4)XX zTyi0ZN0UU=nE2DWRq3i|L8cH52wlLmx!LKTwvl@Tx3u!w+SxJoE63OJs)#dw2URWE z3e@Jr=oFN2=d|YKTt62_GZa{&j_;y>ot-;RV_+K(tnA;}J|qOm$0x2RHwuoO?63#t zzu*}87Sv?5);RtRdJ-CmNli2K9vge42-MM>tkw?;JOc5sn9_@_4n`{m({>H9WMum3 z5Yqy&NQMp_5>Hpm2jG%!-4 zqO&A_fAwMn_TeJL!jGa;1f?XZUC^oeZTMNABTom4$E{q=kN=r1qY$LqC-)%nAnfL{@xQ^a3%kF?~= zYF5bC3hP35t}Pd8)Ji+CutZu%FFs*zGHOSWrjLq_Dicv3zkVAnkn*0o8MJ#dE`1J! zKZe*UWlo2)KgULGx*JhD-cm&~<*8x51m!8-y2E+*3du5VxhGP--D)*DT74N3Y_{qN zZ$zFs}Cw-4*#UtySc7Jx;jTKVzJGOS9zPSDX zk5z8sH>&T+2G}pi@iZ0?vEzRMFfw%5wARam!q$=wfMh?Dy2yaJNy2X?+x5h$#I))RV zcC|VXji^?F-H_*-R9}j`;44cBfPD=LYLtISFV_Z-ZGgtS9<8o`9!v{{MnpUFUJY*f z20G_L6h4R_LNL$oF~igx-MHwvaI<;E@GZ|@|MX{Iv_NL9n&8*FOS8orfCcD{iukX| zI!S3Fh1tk3C!E)HNx*0h%?rl_HH&V&sYJ?@w*a`qW7OTO z7)k}_*I~0DTWqsT572mxB=7?M7uvfyAB{P=i>7{S+7;Q!NZKjL2A0-wQ|s^qUswsh zJn49UJB*;$99yLvMXN%&AXqjrK}L8Zt8ON@w0{xYh!>!L#(Q7irFd^W8E2{FsGBxt zv*J_%yzc3AYggWtJ_(j;Uxo(08dV4-)YI$ku72T zf)fr~0C1V{?4Fb<$!2l~cu)^Z)b9X1(jPs_aEXF>=9?K~W{UP#NHUlKG`N(MFR&pa zONAEPk8#+}H0A4K357~4mr4Xs<-00V+3pSA^o?O&2rx3Jnv@O=g_4R+9u_h9-{82@ z0DihN%?sN{E%74%_+2}%ju5IJ$pWsoQX)0v1f5bY1v>37 z8KUZ8m9R!wiPBdyq3i8m5AzR$CU>CXq)|OGBeP2Y@#H1{sgYkyJ~udP9B+@At4`-2 z3&?LDAtPU;tH`_{yof|+Fs^n|`S-TUnuq>;w7sMSt%Kk#Fp5P;dtwdM-HJHTrx#Jq z)(gr!H&i3Is-#vw)xr4wU;XyDOhag(qZ20RnI5V7`D)Ig48_UfbPucD?M%AfY=_KN z>WndcFfuYiUl&Du3zeU)C@ZUKjBB|Ha$TwvrZq}6%Ni{&^lV__tjo{?xd90XP?Cz2 z?n}T0{v_Q`7V&~pZ?T#a&FD-Flip#VUI^P1MsFa5Lsf;Vo*kjUc_l5bU=FJmIg1qS zOFAOuRrrP9uTzSFfsymlLsJ$c=(Y#(UNk23VTis--l)==A8$UK3@ zQ0n;J9tk6vG1B5`=3_-wbMCacY_@wh!ThvYGT$ZX(EHKys@(B*)tU1HUN^5M5R9O< z_AySb1#@E>0K*pjvRC#XYeAu)o3U)xuXX6@2TzCN{GJ%25D^*aY|{h7Suv1J!J=&O z*bO(rNlgyt-8p_<+gqa_7Ox`j0oN{LKNFfAyYCVdRK$@V0D5S7n&%F_A!XYj@jK4= zc?k}EczCG)z%xHtY3~i1l)IEmN|Hvv{;Hr#vhS!N)O=^WaAsYo)oq8bvG*>?q@fIP znQIv0X1eB_$})(Nt5kR6`yMcW&1e+-XQP#rmkwWx(~e3|gfNMTLE0wS?b~O6B9@$r z?BtSI*r}F`KGkimmlid#4ht6)#7genEh~u)T;9q;O z!gBs^C2{oj=SqSvQ2HmPVIsIQjKV)hdMJbz(b@kcmxJlk6_5StL}zsv0N>PQmmQ9P zw_azYEDCe_mXgOiZ?a`->>l&wQ}Wk6D*C*nyOQ!+c~h_ z2_g_UY8eirkezC2yx8+ZQuoBHJ^0mdsgAFj$`rnh73%=@_R4t!O#2CWkf&gQ)dp8r zA%6sjl!OBt?~`@TqphR`nxl)>%R(OfW21vX`5m#0Qi|dvk$!sxli;Hk@p$-$&K&>(H(h1~rU&4x zZY0w4q44UUm;u>|C1pa!*h2UyM0WRFrti38{j+C<5 zk?Jbc_oIh{aEi6@tw5EPJMXL=!L@Wy7o|y3GJTx+*7I`o?Jzu9UNJcRUaF!t&PJy@ zN6)VVaRmw!@T*-iwb+XjCpH0OR#oNnw*gAndR+-<_u(|0Z`Q*w0>l(&I(S|(n*?U$ zyNMeouaMV1F|E~_gCbXx=+Be(LoU=_3j}aP)4+ZG+dHV*m1ovn=7iKhCL6-3Uz_bN z|LExL!ErZvJyM|p*o}x+QF^B{{>VOFfBb@w49Mnz4EYrhDxP8W(@VqUz1uw|Fub>d z17U0V%0hp;gR!Ig;O2a!Yd6m?@>=i71=G@=X%hl@_ds-ip#NM zpifRh7v?YWl5MrHrwgu~78q2tb+y1OWt{A<%=~9tdA$*TKr*h67-IABxxk`1bN=ajz4L=nC8I6uN1E#AT9ZiM*1mT4w26uHInsB&AeG?0+U|#6=|8B8 zmX;WAfEO8OZHj-j{qE|S&Ys^NzBeOy6u?K4Q_x} znE+$o@$>+C``A%EB@k8pM;*yq^t%Y3Re4ur}aP9^5FqPp0i9gX8obAXz1Uq03=QZ9cH(6Po3Or*W z{fKIS?AW8orFw8MCwEi?DBjf=zq|G#=@;GZG*i7StCWaGoQBT-1exW`a0anyJ&}U$=nhkyk_+I)ojQgQz7n%2lQ}cto+S)$R^pPP_pk4 zb9)J{w&t2SuNuj)A^cBw!TVp`MVJ&MBGYoE27PN-5+_cTBU$5$%Ri?Hr0?w&`ORP{ z4)@OT>(gl@3QLuS!E4)J(Y3?!>W8HWj=b-UD$f@0=I^(_>l4S3e{^{wxiqJErzb#n zqb6%FMz|J1?`<*9^Jf2_+kq%sXv(b6oljT&T|zkd69YN3EkA5f7rP1`+$!Z2zgD-N zwh4aoa@tgpK`{|~H(M^JdV@*1BZY)VQBI@75%HAzMo4SxrtO)I9uAJ3wrRGl=p8iZ#{N0R#n21 z&n0>}Eh=mXSsgDqE-aMop;t665~c-`r!H@eb}yyU)YNL1ru<=vRf9Z!F|nlZ6t@#; zX5h_pGh7rsg3ZhL-*?Pq*Wa7s1)$EM6>QKA8rL?WhfW$RMF=Z7B3kv83<*nEJvf_G z4NOI@5Uir1I5$-^ac1Da_w?)NkKc;WONTQO2`qhuetScM;o|9D3s>~qp1XuXKr{>! z1QIGP*;_(Ba{mCRDNuXJ6yzR@HP4(BfGNNI!K0NwwE&fUG=k|6l(vW*7ht~4x~c%O zPuW~8WROIakRmV3xB_+WWxn#D$Y~i?RDpi^xXPK#Vtd@%%(-cvfw3@uB*5h9XgP;M z*{peHAKnBD?{}Sa(2VLqryUf1u-97`v#Q8u15m90efNXMPE_d$ zDOc1_ML)=HhONf>EQP%;TK@VH7oys=s4wiumBa4%A)g*{g~YgHx^by&!bySM`&DL1 zm>c+9FCiQc#;efXtcb&)oj;tX2;7gpywTwCmp?MsopwK@%5G{?-cJ)|6)|HQH;@p* zIN9q@c{$Y`cFF3X3`vXT|AQcia-x_1N=j4dm&rzhAC_>Qp#@shw%w_={Ae#Jlh1&7 z<#&U=XI^a7eB++_(>>%xoM(hM?nbv38{TmbQn|FSj<2v^dgf$>8~NQVt>z8u^`TQJ z+A4ySGUpaHa~USIK3CKv8Y~Nzr}Rw5QMOIL`XSHKhbB@@-=+!aoZq#!6*RnFGo0_W zg98gY6G&{vcXq|*q=e^GDa{V~FR{ui-4AZ!L{f(l34>~Tav}?g1XW6U@>mHQ2eE{| zw*10k&Tt(pZ3g@!3=O(}axQtaJWQp%(UewJ;R)eYh7TG9rkah!?QRhFj{Jzp6n=_& zD`#%7S*bP(Z)5jw0d6q+#YUMZAdoSE1Vat`gr@VPif9z~#4B_TC*Rs=eIT~gV_v*k8xcI-Cu>ZJ7rKW0>ANzq(~ zE{kmPy;S8CU0Y20;@gHwWfL?#$}8!PEBslgjG;L`2oLet*2i6ZT&yi`-1Jzdk zovq!I$&OBu-Pr#gq~%I$to8W${8+xMayIV=Y0G!EQ&Ub~;l%#s!{8gzLe-c^f%AVL za3tTUW(RLUh10rQaL-jo5I)V}XBQN@sn;vj9_J%AK!2rbr8=$86EryPbJ_z$AC(CP z1EB`^bIL*Lu{?DB-iP?CdK|Q&OKd>SvcIFBMr?v7&lUn1sNpyh)?b&Zw(qsTI!;lL zdV=E^+v~oDR|jUI`fPo(jl3Q0zR7cTzzJo+e-j}cb_-r$VTOsmqW%mH2qFdl#QJ=Kjdsb2&OP@sP||>{tuo zUR9E6mA66}fOo;%N);{`-IXH0&GpcE)A>5b^I!}1_NE)9Ek!G=`@QjH?Z!C#4RgRX zH2q`&DzEP#sdx@E`FD9VwZy?>oo3*nliF;H=0A)a-uw*n0d>+j6zXWDw^$uepFZc`@ zbX1w&`59xUHwb7|;wI7qWY`gt>OB(B7ttwQ%HU#Q)_+oW*!yT4XP#cWt@R*du!Hf%uluAJRu;%U}PC058p;vI-|Xp+^pJ=C}EQ)qbjml;|1~mf)`)4 z$UFx|&v+AgA^YQ5hd6|?o1QxeKCWX3`7~Jv|1*kJf+P&2WbUI;C^%_N$`28;gcJy+ z`jZTUgwOpHKPKT$;U_phQ_M_Y1bP=rfE#353;&zjJ^@Luh%g=nvrSpdTQv+C5MDhD z#~0?{T;*c^3`s+>80O>eFF=iWG6Al1DU!LgL%2Z|IK_@g%SOQnvTLzT957z9jSq?pG&GifAAPM z_^)(bGc7(-g2}QZ?G#qof*iIfK~v!L>W(YmCRI^JM=?sfO-=i--S?v9q}@wesLB_9 zPzFNqm$$xW>V#b83_!a?%j?&@<_f6J z*bOluHrbt*NWWR4c;^a0-nx8qj}??eA?AtpgMBO#`S)7cp`CG22>6V#s~KTu<_Tt< z7y3D6&l$hMkN=8;5%aMcKfNbt<-`k5>o|j5~ zw#a%9W$_mldWHYc7N$14YW)&3q!x5o6^VSfQgIZDPr=}vQeo8d*ugti3VEIL8>u?u zw@5;Ch0b;GTbmB&TBwZ{YsAz-lZ~>yfz{aFvCN>j@@}OogH#gi>&Sqqay5 zeYtE6^K5qIj7hZL*E8}FMHHG+38sFy%u+CLa>>2Kl;)FZIDzc)@k)|e)WY~AH#uQZ z7f%>{YQ8U(c!-KkKSuo}OSQ;G0JxDHwB(DboprKHOk)jYV=_Pzlm2;RoLxS;URdCp zuS-Rtvcu0QtTV~XVZ8sn{N(vFaBkOtyd5K*f_o1>@($N1ZJ}R!G;u*x5~rUV0-=Tk z&Jq=%*$y9|J~~gnBd!*}2;~S!S8W3PIhJz?qgYeE}*dL1QE%Kplz zA{IMhh3KX)momyRN9u^IooHV+h_`E*!cFSf_i zIgN}20hq5@hyDWn1?PwDcXWtXLtu_ufdocEVnAIZ!;M@$9wmd$)Q2wW2f;Ig&VgAk z3p)p|{E=Hf{_nDc*l|ZT{rnPRL*3A5;Y=Q@g-lPR~ROX8Ym|abdW=oQtS?h~cPsFNL zs(og_u&eydtMn~)6M27d$QU*UjoARLiPx2YBb33}%kJ95fTK&r{%ZRd9Gw(;c|G5# z{jN?Z^ol!I1$xZKM%;d}G2aF{BaOx%hRmU`e4DCq&uSH1B71`1N3CQHL0N-1_6^V% zSOT)i7?;&FRL=!}sq!rKF|}?~z~q)5yi9Y4u7GAcE{N>~o#bMkCBqXA9V{hU6{6fkRg=+Ka}CMqhe&3*yc5lY zPx~K}hxGEBWx*rA?`_|8zfX~!-sD7X(+p{d`+(l^|G6S_VMbF6*SfI%Z98Ei=U#f4 zq`+bWmqCJbzTf*TWjgUZ2P;))R09abg63|AAk0>|SSX8IS8Aab(F{iW&jf^O4n)AH zy^RhR%V%?=ng3O7T4NVMbtr8gi6hoJyw|0iet$bDio+aTsx=bAO39__gc2Xq^aCNE z*%E*|6%J)dmXyFh_G#<1U%m#4D|)k>cuh4Ix((a{ad!H%;O;B+5{vcjyup#mGNL(Wp07oD(}yhmE=V@XJ`;ha_3;Uu5juO%HSS^B|KE(+!ZGtnrmgeY`nPXcPq?)Rc&#;}0?pP7 zFiuWRXF8`HGqy(BNGGh-E60tT8PRt>lFr$V@%3U(c6sNI83QxPPK%ahUi)}xOmSw! zc!Fe{RT^67%)KwNWFyS#8}B&GHNI5xxuJJ={DxoGFwybSkIAJm%p=cA!!#JKlG&C! z#o3|YS=w=BR@k$Y8cZskck?jVO?lQXu^lEE>>pL?1&Nh!+f(0ePoG&89g{EpY-ah! zEv-e~O6VTvgcO~DJX1q%=vz`t$DR1EIL8zW;J67SE;uufAiC3|x6R4Ng)jSJw#KG?8>~0u@iFI_2;2rVxWgM@;A(LZ0&aI>cO`f^x-zx zg?Sq-iuDW)H~~DiwRomHN4&BZ9}+n0K!%bZ5eb%_{2x=(z|y9y01a(F;jWG zom5_J4HF`+@Ho3@aqUEXcbB4(-$M#~bP*&O+9n0$qDHMbvKog^%)ZoHq5t4 zt#*VIGTXH^d}H#KbzJb*D2A4=G>`W(6Cdl*TbykKz~<*yyv&u?`xk_cbf_CzJwxi8b8>Xl#J_#gx~`5C znYEqcw-|eJiU*-AF-;Uyyb#W#GsnZ|+%0Q+EG2}~Kr6dqMM2|OkEz@Ox#Lc5UF6rGqhs``?8 zh(Kr*EkBnEDC5lFK&Yq*(EBDMiqbqPz+k)RddrhJ{ckUPu{Uf0VoooMAGprdiTO}D zWb!XH=O+%e6?es?%=;b{cE(ikD`?P^je&F{77Z4IJrie@Yyz?wALjiofGI<;N~PlHOiA$F`Li@A=Zd<=0GLHM`mOr=1|AVTkJrdVP^&O&OGZ zO?dagLW;yIA_R4J+P8}Z`S3cdrlUQ-)5DgJe&i7QB0@d?ihjq1LZFS7{~9EZGkex% zZNzp=Ql)E2PWFQm2@-i0PtW7^<|AKx@;P*)D5KcF6uG7aI=cnFpL<&R@PCPaf6!|% zp36JAeVzD;Q`A*fQUZU28~G*hpwAVkN~~0B@%6Nw>XN4EFH=N$g7FW?Qpq2})4lwG zrLQYA;d&Pun9I|=>pE}Ubvq5FfpTuSO&oB-`X6Bs;x)G~5M|rxF~zO-`5p*=LCKd~ zt;HtU%z;MY*;nOm~X>9i9M*+q$wWO0Tg`X5=J|8A80Y_Uo7WWFQ{ zLR?Ocgw6=?F|vRzGcl-BrCekBBWKbnhphCDFPPksL6GoIPVXjwlTfu@Dig=#_AiSb|E!L?4amfV4SZjGm~-Hw@P6!*2%XdHw;y z`2I=rLZNEO6CM1qiuD@%XN3Ce!CnFi=_loWPqA`?*?}Gzo&LL~IQ*Mhs&YYqWW=|` z*~rnRu_+PdMRanvTy$d&5x4>f-O`JcV)<&P!n0)gj|F!(sHNk1-9IMIe{qr>(mo*bOtqZs*PPUQCWa%FZ%|bod4M{>w{hj1ea{A`Vs{%TGMm>bcu!kmI7uYk+I5vrt^0#&>Z|Z zj4f0hT>NSDK!aA%Vkp`5>ZzrF6lh+}e&-|m6TZcMyR>j_AXUZ+N6hz-y`TmgG z1fDF=XjMeAZ`)!jAz?z{mNes2r#1Vs*7050`=o$)8aty_w6gGf%}?QwGkBh+7UF7W zCDP2ka^)I8v?Kry-vH?`u<|cv47PIeq;K%U-M7FZ(4f3KsY4=>t={E19ul`i0^(ma zp+M}yxtf!A&%1s$qS$l#99ui-j*Vc+nSwzb^Jh7*9ORH&)t5INZCYm{e;U;!CERuAZ)qtOXCO*xGJKNrdNfQrh`+eHawz7Tpl-+o6XW#ODoC8xTXx+M1B>%Zum)Hcv!&;qPO4VcC0pQze4n*n2ghp zHY*YS*c^FLpk_)ulS+e}I21x74^qEKjc^p9Nd4}rGdG3_7odkCD7!j%cTn=h-}@#``HC~&kG@G z!ErC+ar^m^EA%3mL2-LORb%G9%PRa5|@|`x-MR6c%`X$`_RSdsD719_9EV%zaE4Kf=-4sMt z1>V6%E1yq;m64qq)D19!OZ>g+7S{JNG1=W#6Ku@6cg>=oUR(mnu0lqo8i?bO^kiV_ zPIN&0i_luLSaLO<3Q?sheI~6EJGz6@mPU&b>>E0pipE*3IuCvoa?-<5JV_Q7_~+Hb zso$}gL5IGCTV~r&P9z#{K}^HYnO(fl@;5OL%(m~JPn%JFm2L^7lV?o>=#|rCpQ3~fC*qwou&PqB^faYSd zA6iswv4EEK2dw9%O5GhU_Z}dxxCBdKlGq7OUe9w>(*Fqg|NTGsuX_;LA8?rUqS{Lo zN&h&Q7@%dURxzJFz60o~RJP)9BpZtTkkOoc{SFZ8*$jMahCsu&66=5>ucF(rqNwKf zrukoFePvix-PSg2HcCi$cb9ahbazTfhk&$nD%}mz-5}j5-5t{1jWplVC(b$VckyF$ zEjDYdIp>(8<{0;lgR{Y^K2+{VM;q{J?Gy?ph~_Y`Qj(4%|9;)P7^7;yBI$BSo%vd> zGY^COvkJGj>gAYd{_PJrv&tk9Vh-=umoulbpQ=U1$)^HD3Vi`uZG&fzDmg(i@SEnk zc44Z^`W4EZQ`Au6Ob3N|5x=N984&Y8E@Ua_qsU3wl`*7PHy9nG1R@k7HUSy(9n>hj z;UmLR*NaQ3)MZ_$tr9#HUJS*eC#^Cke8p97pF#7+_s80y9LG=OACd{uJt+v-X{X2gI zO?2FiLp)Ui{F2IPA->{;lG#HKn+H~d@W`8rLdS3@k{GPFw2(NO zBsOn0rMcF?CkpTv5*xv?s>R0dN{?PX^vc&*sX;eS(o@sPlxfmQQxWyWWkeeEG5fmp zw0|_XU}kIjCY(R|EfeN|TMEQkrdI`HmB1vbIxtzdoC$ltVM)v5aAg623c(x1Ux#m+ zRc8&Tm8mKy;LCKhTj3jp<2Y?KRDKGy3hUnJcG~W0oUhv_5)H{15Z7RnIR2^yfdxhN z+weSSTU%23`9${p@($&642NPuf149sBC*hW8`Uzs*X}OXeaF9C#G@L% zzg2#V@EPPcw&EhwNxPvGKS=8Em{_?^T#6dRBnL6V2FYr@J!$+1(~;~U1P7}K7pz)= z3Cij!u8UpmXU>}g<(d*=5?=>xrHPwvSddo?#0h08oi#ThL?NHTtdYCJ(<->Mz(NT= z^t#^WO2wX?G@t(N%N=b2dUCOI#O@A~>;8c<`cMDuU%%bTLg8_I>;NhVOA>%Cn1|Ap zY}M%Yj7mWx5fn6eXKnSN!}!RqxuH$Fvs?n$2P9&)4oIrfU!@@51Jc4XgRhvv7MA}MPTcyBdhVn0S$CH1TdtN`=u3g^ zSfG7>01z`qob25#$%2JfTT1W7k5>+vpEq4pQ+C}OmQD5+_T@cTKY({eZ!v-ChWZWP zP$A&iPRn|9tnoJYG&G1t?N!mh0QRG)OW6GyLN3dv)M$`}L0<$x5|2~y<@{O)1mDcM zxEaqX9wzhzZquE6D@VIBWFiS;{?#psN1ghk}>MG5H9@CV4Q8yNsJU$+k*i!EY- zUDv@q?$ZvzJp+>82!+;}Xo4GYBPg_ZERwx73kvp(f)=Fb3C_jR)b6;3oA$u!pT9moCG)pTd9lMaCN+T{@bI0Ke#{5 zwkGa6yVA^GM)NM)ON3!VvK)o_qaPP2*)@Rjk$!hl+u-h9?lc2ckXaWMJ9XXUe`OW_ zEC?zBy80Z;`T4m`+stR~Y{2{XM*-}oZ>TubbxBXQa*?WNh@cX~zJ;^w>L=Vj`MfN( zWXHJh7{x16B}gwxzI5M<59;(hG(sPei9IEw^>xY+BeX{D!`F${#>MhzXVRXedD4Q; z`cY|@v!<$(cx<@jsnUBc1idAy6A*U@w7dm9`3YV4#xdBc3e4+hexo!Xx0jMq$e1P5 zF`;nK_>Q7ZP|OHCA2J(I|HfF`nOiQtc)oLQ)P8xMQmtuN=MYT@5|2Nqov0Dhp-L)) zOY(M|6%r8v0o(#7>d$u%1ozHE^afoo#h7O$O7Ip#l*E@;%DHLiX!ml4T>2x3B`=Yc zKv!cvSZ}b#p_ExN*(X~P)g@ODKFg8&Xh}J`%0JT_Tv~hTTV^jKah4CN>s$H&csT2$ zvm<9u-zY3yl$B#9r7HBaI@;?uLqyU6KfOzh#hMMbL6WV~ZJYEB(S7>Cv332jX~#t9 zR#U1C?%yzM#uh#wm5hX=^N^}dejDCfwl%nr?@n@qx9g4vG;u}P5Z>aG0%Qnu@f}zW zoH^=cgJ-;iOpWVq8qxYwr@LF+Rw$^LjFe~lnvLd!UMVaq3l*{-u7Shkv4@OXqTV+L zfn$QM09;GVQ=?fQ=6i2<30-unA5_#P*>MgS2>D+n#EU)x3PZR(zg)RY9xDEQvmrCj zvOPtUvo}j1R?f-tS=~k4 zIV34nLJ0eQ%2vSHLCyZ5=dZSYi9bFv-_Keq0itUGOvd+x-Q8rapy#{E>ev%vw2g-|9h}W1(a2iUM0m2?w|+j!yJYs_PJe#9RLGlFpnCM_ zvJ}s_RO592TmSR~ye91pMFsU3Kl=_Do%ek`Hg~e1V4?_dRxkR#&FsE7cl%M&Tea{# zf{WkTz@@&l7>X`(VWzr)LoXfj4$$W&C0 zSUGztbkg2gaQ|rnd`X(ym5}zUl4bGI#ll(&UFOG zQdK%VaIjf^DpJ7+Q+yihMJQCwA|)Lat#v+O!xM+XQiOth=BTlVGJ*4gOx=i8Vb%69 z70-vWWIK48Q#;E6+P|nKR*1%Gy;5cbsRab7!XJeakdy$N&f)ZD_E(OcJ*ywiQ@>NQIOmkUb z?$~o}huaDGtxJFCK|NA`9KWS4)vA@OlHliUvCx0zSAQ-+()>wZ&qNK;>Fl4^=5RJM0D@W$mjiXJ8U>S4H-L)h zFdJe_*WGzDv?%ucDQurwzwR4YBYETKnkW=2dl#=Fb6aiX+^gMp)T8QwA7_(D5{Df{NlPMK;kP0KrM!zdmg$r$cJh=O*FV=?(XhrIvfFT zr6j(4GQOulol(!9npK|=cb+c%FK7SFEmhXhH-t0|4Ke(KB zTn!j~@KHkgl18zQ<5<)T;g41Q^Rpb9YK1Cds>`v8<$R3=8USPH3!Kq6_80$nD;|23 z$BMv-OTB`dsl|`=6fOCZqn(ry`)TzxS^JoUOZp`{SL!a5J@sB_-EFzTBSylNM4K`m9N5$v78>h*PI@8(dT|3SYY&ai-v@&kW4<{qYSBM;=fh;$TnXY-mlf} zj+g!7Ef&yNi?^=7d*B^&*qB!W`VavwLx&v0M3#^zhl0D6bA5BaB(Rx73$W%dTw!{71 zYZ5kcu%~8da!m&mUvtfx=us z6A7?I(ROSkAXrVKuyJR+9J0lgXlj90ZhbS2Hi}|3>kR4)gPe~ZOF^u_#tnw;UiqOf zgSoZ|*@_InAX?~q?eHB2x#&T64$Zxebl9=mJPFKD&7`WwK^{=y5qReFdUlSvKo~TT z)A!=hoRO=eN>2aX-b`S>H4eF(r2{QlHg^kWmV(FDm~nQ_8?uaxj~Wuj+L^g1cweK# z9ow%9_4M$|g>L+Ef_Hfm%W5M_r$X#BQc%L93pURW!0<5o5rWZh^nEBKSGrW}`%M1C zZ=LY}|A@VZDnLc6a%uPP#8@L*n@z1_(4oUDw8|ebb&yN3{_SDC6hfvXtj;w-CcJR> zX{oeh5q8JA=!cfO)OD~DRH(FZwTCTB(8G`>T_RNk6Gvg3BV3VtUdo8}5u?Vq2T&6s0Hg`vO?v*o&n zKXn*6a0zV9Ph|Cv@UGYoXs=@RRDV2v$DE-vTeSY4Ox9m{EyY}Rp?q`4U}}8+1RnvY z)t*CsH!?1+`Go?!r4@)&(VN)~3+Ix{*w|R+Ut@QJNLHzsa|a)5SL%#-pS3SJBV@+& z>6qF@s+4pOKad~&7)mq*u!rFsE$D^QaAzGjF_x=snY=Otv3z}f2UlruoXg5B_MOu= zV$2t7iVW{D5}%X2w#t2%P7cX^J{0_fcU_S2`QGP~^*P&2FgKr)jIu6__IfdM?31Qu z0a&PY;5>jVGjgJQc@=;j*^Z~thb8i6hY!3t{n6>!tR#M5&psfilUg!k<3p72(ZBuH zWToAVNiH%Pg{d#<3IN?FpZ*@#V3U1}W z6~5JsR7~Fq;XpXZP%r%`g-oUHeK8V=7@6ODNjxyRcC~4E8F5tx6MM;B76TJ(HdsJ! zx=Ee_4gJQqST??jiwrlX>UO7p8Vo5cgdD^GL$A*j{>g=zhAJKJ1UrHdq6)94vR?wqj;8rYSwG~VkjorF^sGn z7g})boPyUbX6s76jZ}57^?R>nll?ya6Pp!2G?ArN?BPI`&ze+Sgbi?~>0<^P8LN>r$|26nQ`I;8d!V zG2%|YCwmQU3`xfc~)5wu$>aDV^$ ztYavcaS$(<4aQFzT=}*4l>yJ<;2RFx?!$f@uLPshLWHjO)H&MAWWw>%p8uo?1|*!l zq7miG1(E}K>7ds>aAHzp%-Uv?Pugcxu+vO=~8(W+Q158{gU+Eu8I3P|oW z!+ez9Y0AZV>WB2a0oB{S&-qbJ8Ka*~9@oKy^6-Y>9U9g%3akGRHHrxF-j7gHwpn+R zz45GktEK6(F5h!LS(6x&gZau=;pz30uYMp2J_-SxXW2c$1c&Y>{Y=D5%H$-#Q2l&} ziD8mZAhJ~Im2?&>or`#c5Y090IS}f~5FHggUh}lnZGuT+yV><;? z!_mbgI^egMPSA4gN|3XEF{L|HD@Y@cBBZ!vidi9!?^)2%^zlMl7{4G+SHFX5aw6-A z_8w_sD4aDbQ`O%?BDYbZ%!h&k?e*>F>@D3~n+yHI%y-I{PmOLn;1h~oXfQn;m4n;u zl1(U(j8A9$#w*qRP?z&+25xeEMIYrPP)P{4{ughnH7TWQTl+wGh zIO4*>oxM9B^2r{4=53i_jS=)qJ$Y!9>#d507-qr|%}^k(G!VJiu4bC*dk!sP2hXqr zo0%k27#yQaduC2`{A)FV;UZLBd(b zf)a>RQ)Xi@#>c~V4*TO1WYqa^vQeftW4V(T>)0^!vFM3R-|WJI`+T)X?;j_*1;B|P5p^BaOtTw!X?LfZ9%dyx+F zFVqBV3SsEXVap$^qe;(%28HR^vCx#XQ7OOH=_>K`i>ef};lw9om3KFaCJ&ZQxPD3J zbIlE5mVYKC8J%LzSIQ4RRT%P0k*3gMt=V0pIjUyZLSSa2=#zi=!c$u=<&xAf>33oC zL^;W6eLy`j(8=GPDZIH;!oJTDWTX8pSV@wmcX(z-P9u3#pmYE>8*__HlJn^XH(a22 zIZ2%%HK)clL!kElidhf8L(q_*-F;tz|%jCLh?FHE5n zE8&bE(q4rpSmkANxvk~OyV}><6H$8llNs$y1u8Fu`N0meEI3Cc2biOT6|+lKebh@& zav98Y1@I~l`D(IH0g0|@yNKGAVloK@>~y;&W_;e!${(DO7}iR;FUDWTThR&Xj{7h^ z>Tw@%+D9A{rg3>G@&|Sx8qP184UKV4-wkmpeO>!t82`Ej9qmP7g;in-^!+N!FoPM zvuDbDMswV5w-WbV;Pc~Y)o4hn(!4{Qd49(}kxb_kuTQo+A1*W)M*Wn{so0#zA>Kg zXS=m&3tRivhoDBXY=jQ-XA^Ag$~lw6IdU`A|G%5B30zESGyqsD>Ic`6l zTX>%GYu*D-bmhlof%*B*;9lCiPD|RgH~su_gylN5{cSuy-GjaoE5DA^$t>sYv%xf# z#W!w#Ud?$>Tl9(`CNG)(XkdkJ~g!WD%CcZZ!>I-h=_Zv zX01MSPo_QHF2MgpQ!SYi#i-D~WaW1kcI(?}Ioc(6{q4lzfDJCne@soqu4y=KKW3;! zk;RR@xMr0{oZ++yk$9gjNcsAzduQKZt+qMnVB|?Ad>f3TCphR&67VlR9TT;9;<;9J zTkgHSvZ#I)P#v^M9L1zBFlDSjz!@u?FFhbi1A<)$Xxr_#U~@b`rPa;iX>3T*Hx%7B znAFNe;j+8R+)u&hwjYn9QIR###ZAtsNTsECx4@F06)BBXM`E`-N|3_m`kmnv29`ve zV4ZOQANr5)xee3Nf-SlMtax$qbCY8oPx~0<0gXxlyu;0H_N`Kxc(DzlRYIF|sh4^bXO(HsKqXhhq-|-ix$DdOgr^E}h7q4{|g6JPO`pwKpQB1FIKnzmHoR0gC z1K^lLC$M(ec8OOpIepjkDz*1>m8=EZ0ZYp`x}b8 zJP2*7CZ9+k7-lr2EN?L2gxNOxrQMt%GufriOU>({_BDCYS+<&);u4ChRyR&H)N$i_ zSsol6`CM*{urDnp&6LYg!c5ll*1tjoTnve#t(zM;TAh8j>M9OBaQ(vmH4YZU4AAXK z$H(1B0muo4_Vd_yR$BqgS^Yz7Maol^0<%~WyG(ip^{iuL>=|29u}h0YPrs5F!h855 z6!~4&Jvf%?>$F;J7@8XZurhA<=WlSJFT`>h<+^$DN2gc23xY}mh7_vJdj1a+Ien3G zbCQ%d0Cl!3&eWDXf#AnM8FA#G3Yc#-Q`oJpmz4aU&pKX7q+L)@8>J++v(>Xl^aYQG zk8GU>q0FwTM1X>kb0X{ujMM*Y(jH~-8Wt+$rMPb$Ik{&qeeZ^%MUwM7WFgo#5`9W< z+Xo_&w@Bdpa}*3NRU+P8t3sl*54zsTp2;GI$e`7{ikPz<$SI4mb(oA4n2;+T<#NAk znO8w(Nd^`RcXO}Oaz_rmYx9Kjg&*oflaX1=x?ejNxp`B5&1%F>&z0Y`E#YzLm91N( z)gv$0ZR{6dF565fGk+#EUgc=HtZhO69w#PDGX4*ntXqKC;@~eVX;v^O^-*9@zDqLJUmPDQvs&u z4~NhtY61MdMHN+=r9Jr(MgBM3)!T|Q<6JXJdv=7puAn^GXg_x4vX?PpY&6*$r&V*- z&%jJ)4~BNc;S`Sd4{PHk%^;5VR&yoJAV4JaL4KwQ3fNB{KCQ* zB)Dik1)#`kJ|=5bk#TI2^q7Ba<7MIe<0u%?fZ$Cd)Sd-i-?h{x5PYbsZoC${nV46cd54D6tBNHbD~Ns29!J z@q7$8{rCi|_JE03#ta||3tw*~$>QmKC#9ra;{lb0!Lf|HIY4Xw)QIX0QeQ2%p!h=L z(e5>SWwlJMyvz2A^rn}cZXJOrfAxyM_VD!ycFL?k^#bne3@O5wqHrK6l5?xc3=P{Tw&GI#FL~VF(mOdr%gb^0Idoa zQmm(zQ|&i>U!h;7PO=PN5%5e0`*y;RbE@u6`hWfvvF8Dlq{)#`=W)uuW-D|U*>{2a zT`&2VSczxs=o6H_z8&xeG5vbTVA!q04cAy|yvW9nPj(pny=`gCNL^*v55ql5G3-=B zs$sXOdLB}f*(1$PdKo3(?*#klZ#Q}%+w)+=O_*#-%cjh3Wpz4=+jLXMS>H{|Jlw2r z)2Y|rJ55pENg$r6%PqN7do48lj)vW@d}wvXqQ{2RiU~|L7}vpWli?_5QZf({>GfFP z99;fNGCAA@6_iz0Oj{*#%IwDWhz@qYgf*-b`F{V8X?35_UjK4aP(C4~re{X7o}_64*81?5D&WotCs2f5cG3yas@t+Wa0%JPUxS` zcVFW2Egsa>yHwTA`U<6t;%z5v@2}R(uLD(yf>9|aXY8FJz_^??vaT0fRU_y&4)--y zl1Tbd$8~U0Frae?->l`f%)>;cMfH@oAG#EAH#T&pUnvBjvJYaiHWJKNn;}^*H?fP% zwH=F>+q#2T+JHE>M;APpz+k2Qv$NG(DMwvb&LqZ87L4rlULsF|I8%>6u$}=dY-|7* z#`IGgZCu?VvB5g%Af2+TU6(lq2n=Rr;MUJ(HS`Yo))TM~vd z2e+FoyEM;zoM++MZ(Pn%$QCPl$lnT78zbYs5*-L_HGV~tgtZQo*A&%fr?2QAg6(cn zDL55haJifGNWNgVnEmxmHP<03;B8ukYHQmhoS37dsLN`N4Rog&T~M82?69a)!jY@0 zA_a0GQ!H=&yOk(21ES0ukasb0fsVJjdL!F>r85q@?b1}6R>0*aolNNH-S8M1D@I&? zCkpH3%8>l9|?>$UZHFovdj5(1h#I8!n>nO?3BH#PmMf%RMKjLWAh zMR@T>N`+%OI&aPB!Fa}Z1!L(XNjvY*rWekGSQHupeXK3yq+f-8<<}OCMA6jsl1W75PUguh zT~x87WY41Mm{DJ%g8$M0GcX;cCqtu9vJS&3-Nn(Lt}k3w8a>6)3W9hL5r!(scX^=; zO&(T?E!XPH`X$%C%m|czpC!1Dap&5~s{%k`wKFKAoFdFr$cjLzKkz=q4oD`ACVu#ib@X33ntA*6GznDn5ZvdB2KKTW+%c?cC8|Oy9Xxl+XRX2Svw-e`QwCySfp&!vR{^ zeP?WG8Yf&Bgtu#PxF+`7|3!*;i^Lpr&D6x6Mkweenf}UJL&b#6*zm9=`$N&B2|BR> zkpTr<6PwfdDDP<@v83n2O>NrYOtocgDy}r8GK>%U7oSSeCdtmOICck2G#cC@#A96d z26x5sBkp*MmS}W#j?0^id>8v2O0Z|wOS^W|D{eSHOb0Y&RkF>bU6C(v6Ic7D_D`4( zA*YkMufmV#lJzYG?T5b%ltTN$5LX%unp-O6h*B%p01(|Zo)69{NUL?XJ#mS$J;>&I zB_Ij~e8VqwK=-auleu>Lk=wH91+qy+-9*xs_bD+?~>@-=hx!+dX=rc zL^YD@E)ItoB}H0)HU3COKGpr@op`H2n9*EpCxy^VVnmX1|?_)D;Kw6jW_`qJeV zZzQ%|vyg*&{%+1q4H01`AUO8x!mBUi+1B^l^=xK?Z*d=Wtx_6|@$M*O@ogR|X$?>X z%`QHveIZtp(!b^W(hOmK>?b=5dTjock?S$C(&`xtB#un1Dwg&xQ~6xn5U@7^I8UH4 zAY4dq{QXzTPqI=U(==qu^m~KxLAR-RX&~13IW#to5fq;AAU~li;_>e$GCa;l*x@*= zy=)z}p}XTv@uAdKqkM5>w!(ucbWC~DScXzYmh?En9gxTkeXIM={4E)gP>vh@kZxCR z$roGFy#SB9P}u(!o6WZw0@y)*{+~2zlcF^yryrJON27(-{Il=O&xw{kY7mP&h2gM% zyqix#He};i!AOoJMh--Q;J&xXLbdz+<=n^uXc=JAHUCoVwEs&Vi`E{U+^CiE_+708 z*zUGBfWvr38^QXzQ<%iFJCO?PYu>ic>zm@K9OG=gnmIgw{P4!jF0HM1c0IHw+$zx= z{h|Nc%MhVj_EPuOD)pyd5Uh4_W9fVW!ONY!2Z{Mk$hnoc>^4u~_V7M1m(dtWCy{uQ zYP#xG+PX{IA*B!qU>REY0 zB9+l}gM<1lKm@dsIF?dp7ULG%)J}F^s}fMktceT~{X*pnIc71)RpQFmYc)}qShWA@ zCf1T%Txq}eS*f+fV~=s!*l@mB%cN;fYzNq{<~x)M(c;O+rz_`F@z0ssg(T`s83k`I z#$s4i(->h8>k4zd+8i6tOEZ*=*3gYwnF(SqSt95x`h*NtYN8{Um6G#*TQyp+cqCz& zo;{oG%1^e6-6Qy?y-xmvw`!6=km3&`q~ZuLr5W4aon0+B+!rqUa5ZeySLY_PnoVX3 z`%|kGtJ<1@P_SpXLDsp!!0li_72y!W$6*(nj&~?#J>AihV;O>E#|0PnwV_ODJddP) z{lniF>O+3E*)2<}xJRYF4Gr8OtAPy9UA!&<)~g^N(;UN#bN-NA}O1nw*(L3>nOB( z%qSF@H0!OWu;&m+GMKYH-Cur`9t_aw9p;8ncb<1g9}6T`WVIZsXLptKx|L|P>S#Sxo1@`geSx_#(#mmwe=Y8p z*$$*8R5Teu$c}qMV}iNRB{#~T_8^HXu~ixGl;8Qwi79onwHw!Kk?Gpg&m3jmtEy%h zz8pKlQvNi=XWZK!1(~D_A8-*TYk;!}O0@I%P_uDAEhD*K_{WQmgyzk=OB?|4?dCOC zgT}9u6~jd6LnokKhgyo|#w8^-cpX2k!oV&s+Tvxi+IEieApP0hxE&5Vp3KFI$NMIC za^-33k|`dxowClFATT;;*ul)3`|+DR;j)fJ#Kzsl^|gwHd2HQ2k0kWU_x4w=QEgLH zZxr)yngoC>=k#MqdK_KFwFK44(=Rf2+A_1{SLG-N95%lOC9fv9nfS4|c`-p4AptEt z9mAU!8uvisG7YPQzP`TOS;t4Xg#ra4T&}mGQv|+YA?V22eO2i@^{h*{2nXXchjY_w z0EIvfJXR@Fne*|Y*pCpc<=C(v9kq9^MiM+Zl8PDe%%FPnYlZ>Cu!bB*Wk~vzsSnqa^qj$9wdm|o@ z32z%cPXFaqsgepuOI;JbL&Ipw*ZuAwY@}=sqn#u0aaRyb4d)o^LaL9ae-|5n_MBMm zDW`?Q&9t3ZdUm8$BGdQ`-R?klcj%3^yCzgfJZ~in{flt%SHgs zIgZ!m#GG*Zx+!v=sc`O4r~EHRlfPg(6s zhHbYTu+pF|1$ZpK4<`SdPXbSXVa6pWl+FOIAyb0ZqjSvh6EJ0y(j>F~`3^A*bvTFh z3Eih++QZs^umJu(-TeEbg%C7a;gbBG;`d!U4oM*F(FMACME9@HVoUx61jyhGPS8C? zPE_{!19#NSe_laonwYo;ppT$#1^!cr9Hj$^heVPLHiZrA??|E^##{v5#v%$6<*y5W zW(>%lIDmWNo=2GD2!Z>rAs|Bt7uNzYp~dCSi0ydlds^T{Y(qMLCIJfokw~>zm4;To z?J?DvY7TgG2Ojb7bfZ%(a+WPb_Mh+mGb0@`$iR-HSd)zZZT#s$x9e1b&xV)|IC999 z5}EefgT>}!>HIYS5`%OKTahQ)z@L#I=fKohFC|#cmP#=)GBWd&zoGnVdVkNd9T6mR zUgX0sO?B#jE{ekVrt!K=5_vynEed$v$BBnwqhuZCM*o@diD04GQmvWLDIm0x*nK-$ zPn?N7Uu%WM&COl33BWC&ss1ygT%c@b+&0gt2vMqNt~u}1lO)e1d+m1N_;@AK#56Z&t#isPjKsQ3Q9o{a)&9$F4i z39*4{!~y&TaUkAfiwCl^z+zH?BqH#$o}V64G4)H-8A!zCf`I4zy*9{Td{|)2F1gJV z4jBL54c1q$)$Pl|C18{HX3KOw%u4;2g#9Z{5n(<+Lf7M$@yS0+B7{y1VLfquI2X8p z2D}F%0j_BpI^2KB@ZX}m)(?pCLBET_4&%S`3<&}frydqetKKiI=HYGVBt`#@?%%;n zhzbQMNwiq8nEgpj0@sN{kbUa*GQ6MfCRZ}qd5rs`66>O+|NJ!@-Zz#?VKQGX)%x>q{k6LuGFLl`Te!+g!n{+f+jvYR+|+4GZ8*0z9XreXc2(w7JrRI zh##Fl`Cn81?|1@*I%Y^rX=48~QeSF`wdT{dP}L0J-6_qJ@&U#vQ%`(i< za&sb34kiN-TjauHF^|pgVkq1P zFxEB7^jfu#BY}8#0@!Xdgs|;SKg*?n-O^vXm-{SH*f6Oh9?frMqImC)J=1L(7J6FW-Py)_7e4!%j zLxFU^Pylj+*Ave=m*XBXgHBzTcHKuQ2JM!;lq7Bk z%JmMJXP|cT>(bK6a`S$yfW|blIx{nDCjIsn8aPo8Pd>nhp6n*Swkf8I>n$sGXqm1)K_T*=1W3!ZR>8x@vObN#%;*v-r^W@ z3KiH;`Hy?gS5pdg7l0H6N`>r54#%EfSrb2fvli?a!mU zhz^A0v@8+C$YemqI_m4EX&QYIg0j~h3iT&nz!*9WpGdYxQWM>-_Jjd5PogQaAXA@T zYaz5Wb{x9tB=D|yDgicpl2k9K!23qV z)w|s2K(&sLBzYtP@oW|5C;2I2%c_gZn63xs5q%S$4%|H{2HerrAr!*B46$+>Y1S#=7^3q&j&*fS)AV` zG{6F{T_gJtvEY*ebBfH1tl93>YE25zd*s_~_A1?9?OU7Ju}=ULyN@5|W5XAq6-N@EpJ3U9vyMXyRcn zl^PE~2NFM*uUxYIGMuu3+-nK^%fqRlcC96bS_NUVeh1e#nkV4pX#g=H&o$p7RJ36D z#|Zr~ZOAUjnr$B3CjC*quK?BUf=NM#0ycyM0iAp~fC(r9GzvkLfw&SYwCEzo;3G*| zxE8QF=WxELr#o*nba0svzB-%ZSDXbE|1gzL40%;=Wqxq7o8ir|ZDiD&6*K{G{3%W4 z%k2Y^X%&hLkP-UZDE|EcI4A%DQz%f1kCJ0FXaG#tnkJ0T8oPK_VC0XMg+~G_6c!!8 z?xC1JXw6fu=zD2Xgh+(wFE4C10dJ>?NtWzwc2zVSbLon!Q5tLQF{G})jz-QipN^o2KABUy2k%JOpjAhfl z8K}SP4X8}rU+xYY56Vzpz@YahC*KeWmN5pn$N0ZSngom&-d%*@9$X-ac>D9cRnzD5 zY=i^=ak;pDGnsYB`+!67KLvMx&9@l}wR$P``YizVQ)InV=Lir>)y@KFSSkRGy*bcG zGtuM>_MlbC53>m4a~+=Wl#7o6986zLUmqnMbTl{4KxDzHjoyCp6&}zRd$TMC_sFE3 zXu;+qBsAiR=*}1B6zm_{H!rVS#SJ}+eEZMKy!wDmoj zrFtK%2fi@59-JD;W#=`ChL&F{$xQ11?1!S`Om6 z5jtXJxbknWSG6#zN^d~6N6VuNp^BzIqhe}aqe0)6wPhOok^et zN)>TzN8b=zD8SdAd{M=)iQKaXWL9Jw03|vXml*bcg>n_SKanZJVxT}l=gBo0Zd1r~ zGFM8q?xR+*vKYv)$9D! z-$45!o=!vdt|7*k@@QuyRc)=P;X9?4#F1EsA&OexTpRBIs>*n4;MO;CvO9rBDM+X$ z<#D?SV{dD|Z4u!PL|+31PR4W6vAF#K>rO7Ww$DZ8W=kKgc(ekE#gAXO26S5H8fWao z|7Ykz??pNm79Q0ExVX3&85Cwofj2|^>Z7s&Hg>%V2*%~KH?(IH&JGY&d8OEqUxrwR znp_U(HH+uE$z3W4)0iZkEo8D792oAqG^}X9RpW1? z_s@s#=O7>TnDO1uFuwHMuTah|FLPK-1`Ek7CUcp&?D4S&XX5F7Wf#{7!b^CSve~xM zSjZa7zKM@vGDSkc$58;G6b__D{#p7Zp~J?Sj9zd*yPWey>pc@cfq>9^jh4D2iXN3oj81JH1>{=*#3a#Qw~l-#awe?TNawrLAT zP|C^^j>>P{!A_6*|ctv3~tzRm%L3zMN>wY7BMh={YmuD47_M?GWN)j`%oGZ(~22v%K*0pk2JDJ zS~>!OI6AeB6RCS@0CqUN;iTUGH}1cu{v!cwP1kD^;)HYo(UA(rIC?vWgx)Ks*9N113btySk4rfOr!`*@?Se?L`loj-va?(FmPvP~i`qTSYw6$Q?ELi8tN(o|2N zAd$qKkEsr6g!+q*eiK!zcxNg5!MC9dcrhRs6w&eHaO?X6GW1vBuvg_eKN2n=x2|l| zInu_4!PKW^0WE!%t+zkG6ziKDsiT5x4kEMot(#)$uxWb}7Xa6Co*Lh44uD2fRP2vv ze{P1U`M3}xG`ioP(SN#BKjsK<8~e09UdRCb1nWy_AJHTAvP7U4TU@Ir2g8cX0T)i8 z{pFcA>olkzAZ4^BO+B2esMrB#<95Ezmrs)hR8bb-_^SX@RR|C){mz&MIT93c5W_S7 z%J8}metv$i?c(pNh8Tz@3mn{R^f6_C(Uzl>Fh)lH(GEOSG)3G!RVtQJ35fRMDQ#MCzGClfqve`6LicpwEJ-KCQD3-Bmg}0x=FA=$1(ScWoEoWJf@d zj`(@NM;`etH~^0NKH$%J9Xf;`z;^IM$aX2D^Wo&_766`I*OTk#&(zAO+BxHhKOj3> zKE=_hg#ZzgI6x$=K~5`s2;^c0ASH56kQjp|fP9i-mdKZnm#;XGH8eCP^G_QccGZo5 zAVa6oKuA}V9H{v~vA{gG&a}hR)vliqa0L<%e_qGucg-L5hpvFFlhJ_Cp#R6&TSryd zb=|{KQUV7-rG!IwcXxM(q;x7E-JQ}%cXtaY4bmwMN{1jwcld4ezTfA0et&*roM8Zi zbDe$dYp=EDnsY92sPy2#j>^u)MqI$5c=wn@e%EZv#@bG)Z|>RpWOI+-vpnnHC2~h^j>6~FpW677v-deA95QUpBbZt7p@A@Vk$`v# zRQ9xvk@k3V5(?4Q6dbg`4^(eH$bB2$`J&(D-BozJ(w%fMr#E_ic)!+a(d?5!HKAFgEjZZH=z`HIwUeUyY>b%gif{# z^*KPCp~N1dI0XQtpR#!yw@V%e$`iTbq*E_4gTUByvEm9lFg8x*ObcWU*FzeimVfu8iA!j+KXS zoT^mK=PmKU>s3EJvbD)8*DPWJL^e_WGeXuq#+J~-by8o9J@(KbPTYDaagsoxo+%rW zsYJFv@Hh1O4+OHm+@6)q4(n%DGC@f_2mut=Lb<^w_-;}F`JDDU1(;FdM^dDwC%7!* z0BI?>?qNq#GC7#VhRFdHB~cpDkmuF0ax96sO=`psRxU2B_lS;{U>em2h?FHrl;45+ z4!C%ppTqwCFzy^!!sU;K%TBhxND|Gs3Bb7A#l|!r| z(|YE#J5}?H^exs*)J-CZILcreC*!I&?w8{4rIX2wZ&_vhU=gTtcxl1^W*C;;V6jTUyP1F3C{Wka$Hs5Mxy>KbMvsi;H&|>Z<_** z=Hpi%ZE`@-Rl-u<2+U^+q1u!R=}PNU08W4uqg28(5oS95h4l0hVQ%RK+)s;lR4mrp zPeytF)QM4%9Y9Dry=-5;s_v8a(k-JZo%eQ$^0+{V@uQH8xw#XZ-PV@0gY=r@#%&io z7ym_Zy`XR}4iYYz@Hp8PTpQ%-a~*li*spAoDFjadZLbl*Dri=nSfggvv-Z1=&x23l1!`@1S}YEwM+TqoNck`^Bo%5ukrWJcx}+#$Qoh$VGv7@ zK8j;|sA3wUI~E$OcR)jl<2APOtgy{!3Tq!nGdKuny0BvBFsG36b!RK}o=GFit6Ff2 z056S768`|HNfwWDo368gIPDRfZ2IwRVK{LzU_jhgZ}*+2paNwLRe&?+J4!C{-EOux zk=H3EyY0f%^A$wDKqf)sL(Zxd?X_a zd;cFJapV!H-O0?x38?Uw%X!lOglra&)%iff_v5*GO>c7s*Wuu)e&L1=bcbL}j^~Iz^NZkF z$q!S85AI?Gu#XXbEFJ_Rl*VBzqPl6Uj+F-{X=(__D5Ik-v0Kj+cc{2>91Z*Zc*$Xt zY)b&CM>;G(fUhLfOd9yp(eVp~`o8dan0Z)2eJ?<7(DqG@0v9CYZ$04;pK^~g!XdDu zyJ1#nKCAzY)GXjLOwqCDJ`i>nR`^=vahupx5Ap6*07mi+O}u-0bASAp+(I=G8N5JIskAP|cs0@RR1@=6L z9`kvU7~%xG4#_eB@Sh#GqgZ^vFtEa}1cB!Uc@pn!Ix{}G94L&xy;=<+Qsb@+c~0cN zW&uNtoRtJk0HC7O57f>ap5qwUv1uK*UV#a8M+rl+m})Qz zMj57nDZ1JO6u;rvLBU&`%bud43+S~M;HjNz_wiXIhpq{Q=f0_j%R#jr{qfWy&#F@w z3g*hFSno`g#FJPG-|sqk{l2@XcVSF>Egs-&15b_e6g!{PUvxDE<_b|)$h}SO?H#B= z6T&F^H^J_t5p-_aQomep2K`s|XLMRhXfR!Pu({aq5mri!aEiGMR^8 zjy*xod;EM07A7{LLq0`o=n8aSRQ;-}6~`$vl_~YSygz76ZKGbpl z)*c;0kZQ8yy0~17%s{K>Ek79@&J2TlGaAJ0gH_TfM1|LySf#tuqj+?iGk;S%V5jC0 zYzl;iDTBkPc^n!p#=fy17oEvhP?uCGe(8Ff(6FDY^h?lFu1@1NdXVivIE~BS_1#bj zs%G(Q{*_v`exD|~)6Ejxwb2nC&C(D2>+SZskLNJAtw$$>c_rQ#v8U&q;4$NoV1$;V|km)?>ZR;ZJjzDZeWBVhYorc>JAfryc_wFcvk{P)YQc74ZD7^!Lz;>t-s8PH zS`#;2DEBg>kd6y{3#?AA>|5Q>uxmm&SI3(I2C%_-nC~|y>WgTRFJkC`;TKGWB%G|) zX@d_tA}1&~$F7Bt|A8VSTN%#(Nq*XMNE=mmGLzSg%7;5GzaExKOzTWRAA!ymf~_ST z!w*rR`_RtpiBNVZ($h*r?qUQo0?%5%!1q=Y)?)1#L;`Bxt)F6>9D$QUJq3Lw@Ch4{ z!6u849`-;q=x~(LMp{e8P{f4nFEprL)C1_y$Vv)i1_^C9zj(!0td>jMFGE+N&EfsB z-zoxpt>`cWgAa*~MOefiyVYScoCdBY3eG82SM%8|Or1}j&ot;PU?G_z=|8bRQ?v;2 z??KeYa6!{KYwKegXaSW0y!mn-Kxr&`RQ@$a33j5jwf> z$Bg#@y1SY);yI&547vpeFRBVR@twy5BsFR|{GyXeG8iOR<6^%TOU%D6yq+Dg`F4iU zuqznGpx<8b$+e%%_MJ@D!He;Ytl5Q`tJ)espN?O^NRyd;^U5cSZ`GGqXOt-v*@5CnA*puw^8SIbVS@7f*Qo z<_JdqYf(!(oo96|)e-4RI$aMv4s14pqQ2DVOMLqRDJ`T&Du09S>u0b~l$O|r zVNm0j^_0S7et}|B?;!e6&V6x2F8`T=bLKD((D+g7q52B#5n}O62u$I+_Cvm@H66l+ ziQrh6!m~8)pt22)cCa`Vj%+Kbr*4nM7ROK4wtkB0h9q}I%%mMck+19vYBHMJ%C$)L zowE{|d*6AFccB#5<1W{yGmKg~q*MB$8e{6q7%?r-&+q-u@CP)EzYl$dnhHya2&v$2 z0tm0#l$leWZdW9^QdD$mY1*$cn(BTWZ+gr(7D+;o=_evH%5t^D#Qu9z07EvI`e91x zAt8-}me|5BTMkMWzDeD4&`5%vkytKvC#aYxT^#&}74SDJ*CgpkHTP?kWa`dUpAf06 zhWEuWVF@-EkAJb7Q4v@?7QrfoZ&B0vj_}wQl}?VIi`5ZtC5P&3hcRV^)2(H*bBMg1 zH?eG@$_6|O)sumw?^%WCcCrP>+l3l%sqWfK7Eeit+*=pVNv5LQCTgYt6aSgB0|Q!uP#g7m|?8a14jYnDfL5@G8g(t zD(kSGC?^OpD~?B|IrcQNUnepj7j{P|8yUqQYW$;U3P;L}So$x{mYO|jnfh51eE+Ad zGD71bI@Kv$p60=n$)sc?Ucs}HCPSE7$guS4k*K*?`E0-7Jk#3b>a*l-IL={W_I`E` zTE{`0&b`HiKZ>;zZiNvTN_mT z%GcQfcC@>E={-gahtgJH=L@WIn&|$s;fOdz7KaOWIYsn06hmE+8$Ar(=^yARIHQ{G z_AaR%JP!2iu-oz#2=6Z}Jo^UIMzR*BtH8h+@d^#fwv(G8c}&tCDvc}(@wh|b>N0yr zr-FCX@e?(ZFZQfLb$nE))l#r~(BWZ|?j$n9V5wGCl^s5ZVABCydChHnqH-V0(u73`H4X>#MF#<1#b{_$e%(L z>yV8-VJF%!xsb>CX5sD#b($s6W>UFtKh2`fqv@qD&dC1$qJ$}7>?nI!Sm;lQ&g-sM zX&lXxzNE>?_!tSTQ8?_1`wc7;MBk8wx=0|HzJQ@|8ZCIQWVs$f!DtZFew11))lCkg zE9(0$*g)CCUvEry8SaLeee`@Y?homtBNnqmRwm}DM1`xQe)O;&B=ihP=+$XR*v5zX zfNu_kg)6kP@~XkT#dY|hc-XA=>mxny5h;x%Fuqb?5*3H^;t%getoR4CN6w&@b$#BJ-0h49QE2Wh^<&BSb*-s!LteygZ)9qC1V+q zT7`98zSU@z9wSIK-!|05r;;RTYIMWlg2dWM=X<;n%m>;ebvagtP4n*=7tia(kDkIZ zK396IG8H|BSg^8T|U9FYdId{T;M-4^Nc5M{q3c^?Tsnp%uq7Man+pHPVB70u6LJ#v};!nTrmH6UR|;dvKG zcR{4mk(Ppl+!e4x=Qkxv zN6KgOnkS-Zn#kG{WP=nA0jOCZJ8Q-_;UHTD z@j#zEoFAIHENk3DpMH#RiRLS${JnQ{)o^q7aj`R!T#(aiAi;9SCs}48T0Bq0h`U11R<-ngORvW zc_meRV|6sGH)5IZ?S^}S7n-e&MX(4dzDJ~+N*WF4dD5UG_is|&pX(z6GV#ZR#?$+h zoYcu#RV(=B)RznUvzd;%Z4gNKpF0Ghg}9#YrKE<$p4MmKASuGPOx$A`DWDO7{u)Zf zS4>igVp$;zzZg{6cZXyE8>=nTtg7r+dU=UVR-TE~zOsrFDBJK2D)4NPr}ce%2{8Q(9xgn z3AlIR9JUJyLf@=}Jt|g9NA7c&7eEXA)nOUnJ3_!SboRsAe&&SrgS5_nbr}2(AxQVz zL^H7B^gbc)n&tHo9OG}Q>O$QcNTa>l;}nlK#H6nd&Crw>DLD9(TVVXwM^0gp2q3vo zD>Wqw3K6|a-a;a*kmt^!IK#^q0du`eVeA{amjwdxx0*wzp|7^$qnm?XtiVx z3w%-HNSmW`b69=Q9fwae?UcfLzZYv~9hKUyAM~nxVZ4F#i_%}xGnw>`sWo|<^Bf-F zej38_%a9n&CSY&RWq);EbQ*FoeOvuc#>J~UiKb( z#AH=*PVcbLVaKA>o@XrV7dxbRv#l1X6C^HO^Z#D7cceDnd~TIN%l&pTx{RaLnZI`| zZ;9Zv#3cULyEBR#Pj)1!OIc&8`j_alj zK;JhVQPl5sTtXC39H1;fY#t_1P!Me=K9GDdz>k1+6UJp0Oj$2f)9#ujY>b;vHK(}8 z$dor{Tsgk5b@Oxhh8F22!YjNh8sS_M5??hMjSMrI-V~7?&}W|$`VtUC7hp)VA1W$d zB;UZP4I(6Zh&c53TPWK5X79V}l58m+9JE19Km7dXx6C3!0#+)>JugV67Ex~vt@dRg z-a4PvZm8JfUV~=4l8FHrX<|dM5%HWp7j!YGRn*3CjeY5+U&|S1LXx+B8j6GO=K|iL za%?^neH9h!0r7bTLGnun1%2h95}4OV{>+pRb6gnqVrNov+K+5TK&qw^bo@&MK)0i0 z>%9chHJj-mHr7!Q1Ba(!)VNTPq5NS8N-Y}vH{kUv1JFC-n2{6~)7%FZ&sVt~_j+Fc zi9AVFfG-vUoY87&ysbX^+75^38(FBHEsJ*$>1XQ;m|j%CvB~MTxkUMbC(N-HLB+f-kQeFRwj(~r2lE^tJ~I;sVyr(*ZD=#$ zH=7QLByha6j<1cN7BqAAOtJObqG~IHqMhjHPp2RgaAu| zN-N=}^Q_wOnWuqtp`-2F(fQP^3*)D4`z04I&eXi(m)4Q+iXe~-qK~`c7lZ=2Xp@hX z>!ODyd)~BXqi4OkQGfr0sNzOZC3b7pdpUZcj&b_e$nN;piDf(;t@t1Z)0&EIEo4r( z5vvcH;^Pz?Z@E+uEc~~2hZBF->A~(V@MMJ0=oXz>%AV0A7Jec9qzp^M zs2&Ve)-p)N)@U^Oh)Rwr0DJpV@N&;*H>Htpb$f;IfH~THBa@ZXZEH+|;npKUg@rkl z2_`+$5&Y)-9}U+Dn^~=)noU4`g(_Et@On17f>57@sppCzKf@`JNu&wq z^8c8Pj&ypl>{EtxriFhEM~p}^Mg{#g&e-1qWOJCIWd`0?U$)}EE-t>pjE2r+&m(so zExu`Qh>eA!3l}~RWj8KPL0gqF`7EFx*1og=u)qeR$zkE?4Y3?vl6ykplbaq3OtP$E zKv9vnD-gm3*kHnWnvgouDHPI+kqi@rg>Yu83=9f{Kjtbzg2sJ=^5xS$)S3+BR;nX7 z6G4663&(1dYY77cQq2T^s~V7yVYdJ#jxxmd(z?TI+^K^Q9(srvTQ(s5Ij4JMEi;i? zRbn+-;s-{XRE&)8#M{ooK2ek<8N6||nAd$y`)fT{^UZii6V zyN#aDd+Q0%bwMeol{NtAPJ06a#o!khsap#9)H(m4)n)`EWdEldP0owH4Nven$u+|s=cy( zWSz;)yt6hE_@rL!`_wgT90JF0+i?wI zxa7iBAW8OE$;+=8^ui8XFp2Lk=OcEx`gKyc_Q+Ki64X{(A&oNlg&4UQT!VbM^VYAi zXX$We5_c0Ag$J-G^A*sn=RP&RyZb<2ffeuWDeTpD8#(CMPRhexP$_R!Qo1uVGmkX( z%Xk~odwzCIW}&*)A5WfVg?McL0XJDZ8iywEke34EzJ5SC%v}4`%`b?G7;&@;T_Af{5G|X3>$dZt9TT0 zwYs__kpzAw#bM5uSXsC#H6NHF%F0mH>GXvP0_KQpr@sazo|n?ZL~D{5x}8SSxm4D$ zAPOERCO3KZcuIf-W?2@GbU_td3rJ*GL|`~>UnOuudFFhb{E7-)Gw;K7!e{r zHoLWPmk`gXf-XSW5xmB#&-dfbDdeJ7iV7Y_{4Y+k!~hEjbrb}#n8}ihlA(QPZfnN4ubNc7V1SpH#cm3>Jjm(0`N?AB9AS8FB&c_91mEvH92 zafE1r8bO14#xGj|5OOpG$m7YRUt32I`MMJ>v=G4;#gd5{!~cL8cuB z8Up_dh0!%>MuweDb3k)7`o`A-_k-^{G+Cj{VDjO1Y(hSaAs#3+p2PNa3Q;kzDD=NzT4}yG~jaH z)IRB?DDvS^w|j@2Eq_=;xbpKS+T$o}=FgGR3&!RQ#Vwvd8fUIJ(4}GGN(s5;OHR+2 zJAHYvL5!91t32pER3@`U@-45Yn;>;ojwj<0OBe1<#6>LXtl%oxbmzK|!K;pYhxK(# zBAiD(RFw3^635KLd*XYTNFGIVjd6cDdH>O`ZC|@T_^3eo-pK)51N>{pY+tSFwyiS1EY7_3}%RsjPjNzlN#R3>4_ah%VjA~ zJm09A5r_)E&&T*v{}N#OZ5%pT#CTjB;5x)%!*@xpT#w*?9K@zpnfrRgzuLq2EkhR+ zZ#Q}N)_;I}AG1F3EQ5lCnGwl5mF~pZ_D0=D^QwT9{Oa2{; z+DKj*vaC$*De)9h3g67ye_oN~vyd8Io`L|u)DAmBzTWySQ8h_M%GNjvdh8Adi}F%D z1q!j&Y8I;!W}8@|47L)*>FWCkA*FHmATlGg8O?zlEOYgEldxO;X|-uyUhCnJk?sgr zqM6i)_OwaoBLl>!qg0gA+a*%U>8m>tH=DD#P#jo=wl)HbrHEyGK9aLz;+P99n)B_5 zq$hr!V^5F0kG5N5lPAX?BQS@1ZTALJpTGE~rj;yqW~7PT!md8$-V)eB2+Lh+$7_BF z>pxvhPcTi$D{srmNue(;LTq?XM5@++{kMv9fsA+Bzf;O>s$emLYe!N>EBWjZc(Wq*Kx_T8W)a?n>>2M zJOYa#%V=gO6iM^-@j||*A1l#{@i#42dCL%oS26kH?*h!yNNk(#pL6jX91+B$mfY(sBQSvYJ5^9f)wrD;F#ODZzM6P!xSGlvYLV6GYYdq>~7Sor}f zUXtR<+Kj62wQZNp?h*1;#!@Q|Da|{3EpNB-RHNo-zMjttZq|c9$+lVSVcEGa{Dt0r%fd? zzFlh#hMJAqxc~NDeEo*{DZxzyC(b#M)P$sN-wkbYn6ieFdd*n+{8JS&HrUAYzb6mS z5s4+v3OlU8sr=!O{KKyU(ln8uA1@UhZ`1JLXq%iC_sqxcxx@Xadv=L+X*3K)f)Z!v zTFq9RP^~{Q*GS8KYdT)-458fSPnkM>eH_G%cWm~xmlQ^uFHWUe5)b8EPWHK?2KAYI z&%&E;P#7#;eK~$#DTMj;?%50&%Wf}bQoPg1Fy$>bx;?uIa@k<2&c}W!y(7QbWv<=T zDgEREyQT$dc zrDXd~7&2Uxr$tkDCAgJJY5h30`jAs(yfAF}W1+2MaLBPO-WSon`Cq#8clc~vaF^}5 z*+VTv{#UCmYx2JQTLYFDOU7>{VdCB2EOFWhOJ#<+MU$`dfAG7|w5l|JVS}7PCEsCE z%6N`*{-W_>a~;#*=kQ%Mg{6{j5bRN=|L1qKcx!JsNBwW`P_bU0vJ1t_0v1R|4P>sy zI0Qui&L9%Wrq1O+KT-0K;2(|8!@|GSg%`1oOhsnw(@PoVHX%D{?c5@B|f|!hlbx*B4t};d!Hpr^yB>9Kz=!^J5CM zS>~(lk$iN=qHr;%?Y3`MpXxpD)*qpm_$NNwN{A3^R3VCSEKQQ+^cn2Tska!B%a}F4 zys{a>i&B>bYg?}2#qtHpPx}9=lRi4VFt}&v$FiNWTZA()a}vIL7np~ zDIc5VqOVY{SVA7h5|l>>@+$Bu{=Pk}U8%`Bk=B#e3@2SSUW@m}^>#Pj-_`QBoLjt5OaqkKWu8Preo(DM|k&L4fc(;0Z$^ z2AEX(EnKUR|569`i5h}Vb|5KT&Fm?!^V)KCs&op}P-NxOr%&E(-SKp#6YlKkOSD4~ zetn6;?QH&E8SMofei;dAneQiZ;t1NC8z(a~Wy<}F z*#Iwm7W{6Vw+hcSGy{lKn6d{wGj9e4HWXngY@?Wt+%r0zk147?zL&osFOOuN8v_Ti z%6ykwVhK;^$Y%_~uQ^!T#Xo;&4-WHs^wyU~pw8MYd=g1;gCxaBDrS~;$Vvqyh;@)7 z$$hVCWzuYayB|!$>Mf^VtAUw?)OEVtEIVbn@#NWb>p{|)?MScZr2o>J8By_fRr5yG z^1Rp-Cthurkt*#-D-SiKPJ>&LmF6dD7rcpPTymKeQLi=w!=FDthY6NS9n)K>XNQ&7 zxNUu9FYPqhOs=Fy5>DHyTFS3iweP${DEo0Z;CRZO)@0Cx$8r%dYo{z?KryZrmDQR* z8Y+NMt8ru4>iPZpHF8g_GmP)Y4(vX=bJ|oEOOfMMq3p~(RSxQPt()$(Q{wo-^Ix!2 zkB%`JU=;*1H}o5s`L(&iTq$FQUj8Hm!$JuYZjhG@pgdl;$xk+u&>7^Scve$-y-v4$ zWh&Fnf9KB`_+32GzQzi>(4u0T?elHd)06AQ0fGt|uRI>-J#@;}&%3iUHB{+rw4OT&(up3+5WO95XUvEsBB^ zIIXHm)%fx3qjKLMX%{?K)SS7`BZ^4uvbA?j+z z0&m3a2zLs!!Cbf6$xqaGB}QY+rHqi=82yS}6`*LcUH5PK&gIB7ePb5L()Z@D!bu*- zdTb(oQ0@CzUmD8RaPGB%pe>YrO`ws8Pa#8cMD6a~Wy>d91|~NjMgw%6CTG+$j`FIl z*#I!lcFdCThX2lc!piC8@NeNI^nG+xKF2^2IE#U=fs~&&L5*r~RAW zB;&li_@{n(Cc*}1q}ObKZdUlpVYLfERsVlFbRdBd@)TXUbu+_$^7?niywbCxcraT% zZ?!vQ5lm!XG%LNafB8!PsXtI-hC~xi-20%PuSnl_$80ZBP485y5I$v%L|ts6!Dx%=QkJ}39ryJux? z)u?sZatm6?I9~4l0bP7Xca2pywJC2Xewwa&ei+V*@cx}+z}2w&LNpIkQcI=CGpss% zXS_Dd=!3a*R_Z`km8EW@hKwpUiZ1uk1WUMB5|$ENj^d3It6gp4HzMQZw@3btLfIP3WqWlX z=svt%^zMO~;`W`R;0sUn{&u-I9?O{0OKIU`q^3qI$xh=@)s;8MuRs4ig#BlOqXZ1*Jth8D`zyo8GvQQMsU)Q5O3 zss+T&nsiuOmns(G9mJu^>-cdCwcBkfM zIg=!bTure@9mjU`MWD1E5?_~ce{O1`$~{rv*VWUTyIo$MDz}MkDQsb0&*C6o9ao`y zdJnWv$aulo1`?YRd6Y8`nUhNCbaV+nn z4m+9_6m{apg$5Gtn#iQ*SU@c#O}@e-H)#7o{vwW2QNeUDxj_NwQ;pNRUP-t2O?a&$9s>!u)oq4{ z%j8wWHnr%dCvQvzSSAJ#o@jIhux-w(W?$z4~ zE(09U9=+Bii$l6}S3R7>}7jPMn*;)IPQTc?2ZLdRujW~ri?9& z{S2EH`h!R*f#Ug|3if6lrxG?u8igS+&y-A`;=JTkXbNonL?Ps^K6C3Bj z4Bm@-GqbvzCC4#pZHYLQ^HQ!-V%kCLZ%Svy8k)8hN?BRIS(0{G$oTj)nYwj@rr6M? zV?4DQzsN4kb4hEJEPXFwe(F7$fhVV#rT$)3=0vUoa;Dp*c+Pj&0jEH}v)takw^;P6 zi|r{C=07hgA$Wy!E@I$L5+6@_)~E1^|MsxkjCpnm5PBIw|G>eWKhGZKuJbWE!H=oP zSxWhLI@>77z8%pK&-;T%@Lw|R&Q#EX=2nC8OH`n%b14UdZj!wbrl#PSHZn6)6I(+A z4|wQSd2IO*aCc`*ige;oGID4fGOyJ|RMf$c1SU9QwW8xS`PhOTwPiNz&+gR)#T|~$ zb#{E@C5U5ET~-yMPDEj|#^!Pp2>el7F7Oc1vt17P3TNWS)`pmN+gPT08ERGCebY9w=%oYqeK39tRfa~Xr zDG~An_q8bkTZVA@1ei8H1YEdGK(1iMx-9JrFZF*fC>8P^VB2qvWxXK}&~9~a$cqk* ziJF<(Ayey!ioC%mcNpT|rN@I{Y1Cy4R7|_Wb9AvRb*_oRnq-kWZddmRqNEd z+@!F<+P2rK8~zOhOSPaV+nK3Id+_!UP0G#7GX=Vn*B1m{rfc}eNBI{l37f(G z(uTXImbC|u3LUfR04Fi*^W_6yol`s?SUg2-`nN!wl^v0-Fa6T>Zfo*0Z-wK=3IQp= zWTZ0z8q~!pYjN3^3iGOUW-@o$Qf)m-M<8!kJ=IwbdBYUxQ-^`YrwfM~;ko*%f|^X(d=e8I zKn*_lOjDQG<(qv7AgUA1?=eKgKSGZAzn9PoRN>#3;4)(%7ZE5yl7L1) zn^`@H{uPDGvR7jtDKL4X2mTKBdp;NO80BPgv-+C^l3$g5QH2#(R#rv7zWD(SQyec@ z-f`Y3NHPnhw>rl)st0RjhP7-9FY;POHYfO^v{C0xhC;jY`U|_HnD3Hg8^gr0#Q}H> z_0{1VIjL_f8}obAW2fr!$SZ8vEBx%mY;l^UV1FSOhuB#l$XkVK*7k1j*Xe&n-`7w+ zZIT*BM@DAMS*4LF=`Ie>Gyk~zN)Y&47+g&7PVp-pe0-eF6mF;YwiBV&^U47boTCym zynz5*qxZVbd|EF{;?H)7`3Zl2cVQ3~5fT4^o;{xG{hw0`I*S|_6eJC@+KPit@MpYr zWwQhcDXHUK%e@2aFhLrxOXV$?rk27{;&QNb{N;r~Kk%_4*pz5t(i!}~KtGbk=4i7n z(g}qS5i#BcKS{{zi{jyl43x?8JPtGd?v!KH9qjMghF~<_*>EtggE28s#QZ|0RM+(v z(}sVy>}ZWbL+zByEu;N;v&yY3EZGXZUp0<&gl);>_SuC-F5x?P#L^Is*Vntt*b_|g z1aBTCoP6}fmXNRFb=oC!o%nk=97lBkgZsvVw^l-AND!nhe(R_2sXLUVsED? zizC95@^5hU(v|$V@#SI@qy?VCW{Ikm zaF5=#aq;G$oe?tMS_72!ZmN-{e?K2=`lFzUNA12g0uS%JK@Q^@F`CTWZ9fQXeFlJl zZeME~_Md&e@z}4d@{>%Y(%JD4qq!RjnNinoTC(w)#k7M~dQyGY-nOtIVTqMKaa1+z zebSI90_R;^vu5ZN?BDI+3%>_X6}e#fHs$Z`P=y7Z_Tg$DaGc_Pw1@lmP1yVZ89`h9 zwUQmkp0zcioAPCo7!rZHpC>Wn^9tgQyQWJD>+g21d)J0VLw#NUy^M&Zblq7Mn%>IVgjLgeVPIGFEv1-q~MR{ll#9z`5!0 zv!Zd!o7DC3pH#^YRyG^N3J0Ju7y^f_>AJ-BTx^OkHIRbQz4|BzSPR6<-ZvGh6Slk` zhp_UpKCl$X$d)~)-&~8(*(q!2c}}~f7Dan6zA~onGju@vVd%hzA;}4!v&ojAi`ozo-3a+_t5@qPZXFpwPU3BR6!HEontb8v!SoZx~{81{z+BAzg1mZ zfpCh&{nP?jCT1;`MrCm^xHg-yySz%qzY7*xZu2r7PG*i0)6-_(yF6N-xvO^ERjqO0zs9>w0R+9n_H)vdP!d_sf(|1cs%@&H4!HF~0{-5E;#ZcqO zEli8d;D@aYoA{_j95aiSHemKgl7V-MI`gl8pHWXrkQ!t31DCdn-)}CKJgO2H^mvvR zdmdj(WQ&HNvsiv5<9@s1`^+o{h{NK+{HRcV0uifHcH_*rO_P=U&F$JOu{j(ZzyiMy-aYTJh$zJdr3oYJ?PXh9aT>7@Of z?9X9=L~U7{=s+A@QN?=-YEymoil{k zvu7b;GwOdsDHt!1ePO)|#wSQ__7V9cAQE{h)!uaDBe!^8t|FFE0$JP#prG1Tt#bHX zU-|lI_x+;d?|eQuWcWvZ>i8c`Eebx{;-c7#7Q*Y|Y7{FGPaa>j#;fj}+@KuZ{<+#d zc<-Bi&WErvOCLD<17v0u@GtaCjAq^Rlr=x6MfUwcZl%Q(!i1JY662En5|^1~_`>#u|h zVLio$LzLg$`nD|}jD_usMmuBYylV=~+%jhFY=gRr+x0L%hCJNV+t5dARi?9$XzUap z%YUvWMiX8klaKoF-g7nR#YXKA!%)p+*W~E*B10dIx%idH%H75Ci$F!Db6}u@==GI6 z5WjkH&p@MpE5oC}c{==jM3=%3R@`t+?INdZ>Gt)<(_K$fzt^$x8Fza(S>*RNxp{-& zfE}#at3pkeIjGVM-hT))ex4ME;2;_Twl8(x!+{b(OFwU3AO`WDgF+B^{WzCgyQQ(c4q7kZFBF8Ut*csRO47U}9>4kVs3^)I2>u&H=*cki zf#<4ObiYi7zM#<{UE@s?vm>meVtQPkzV~d25-2*ry4Ztt5!8S7G3?K}_zD3-GIDx) z`tBitm$W=QJl);|qS4BNO};jN0tGe{7T9CGJ$3Hzh51^h$@q|FKZ0LTw|Si-DK4%Z z&@R=arc`dw?yaDw*Jc)fyF7c6{?Q)XBNRW6;AqEP8t=(D+n%(nfv8r*{j{b%1V0#K z%Av4H`=~haaO_x*U(J0rzp7BdosdS34osQ|;cPBu$C zWM840*I&wSasV%^)@Ggs8J@8)y~P0px7H>FORv}8`f5E#deiyPev-hnQyxwQD)z9C zGTet4cJ$yB`d<(-E3CjspF}-+tkag-K3sAbib&jS(D%{>$&6<>^^0ZfygzP!5N3!osENM)+}t-z6mMl9C8O-z1{)k#&onfm(#P~yuaFid%IoeZBwrdX;dUpe1F{EV(P=4 zxE;>wC)%eVl_Z%Jf4@s_)d+?!s|BOKv|8S190DtK{Sd;zymRU9;c^$$%QW z7F`e2kIy6>z_6qFl5kVFNFiO_bWo^c)LKmB%Dp1Q$4}e2H(b(guu{L;N_)fd?x+Bx zNcQ9xoaz3D4BT@NzTx5gqzy)6&D^6&0|UPU!-lP7+wnScMO+q>P_IS;9_O!5@2;aV zp+%!Ty!-3n{q;miGLv@EW{~JIwGt8#+-y6bC=*(5Eny}X=k5rF}5H6s0)oi3JR{NNrSaA<$v zZu8ws$l%7bf&4#e6Rz}uPnvmqqP9q!J zk5t#((Na`cI1uH9XgXBssH>QH#h6*__b~7?h4W43RF%Q9&GBy+q&z>nYjS$|x;^2Q z&4?$i7>9%_{2d;?7mp5Lmf%_t{eKZsDd&o%DxArx9`t$M>fI!l}smWj9 z2ua|w7Aq$;yU7ae~vs<&GX zU9rLIPxtdg;|5B#h!3SdDuh%4rd&9Tg(6Sq}@HtsPf|J5*9K7NaK=~6O zRsakU^v^e~FGn_X9^yS{AqAK26j(EGP4$}^b4yTuKwlPev$~mNFuEj6C;v}Q_xD+X zQ7}B;o1clsI9s86o6_L;^Q*8;rDm1>hv`PkNs399hxGPc`+OJ^a^_xc1jExeyM9uc zDMmcSoc@d=?5-?iwa10@z{T!dEvTUt5Wl1HwNjp)2EP##3+(CX(K5n3tX!IcH4~3` zK2mP=%Te@E4ta0XOWJ6G>tfIIdGlisZH7P}>3hNk#Zx3**ig<2!d(9i>&9;m5wkBX z=c;oOn=o>?AFML0aRZR+9pMkJ>_^yVwE`L%zdNVFA3u^6>c#Qeh?U%^Xj~e6E7<$v zMdS<`UOzb=ZEnL-k2nb_Yr^W^^z?7Z0SXa#*c%L@4+WrjuWIMCdAn%RbJT?q-%>3U z!JPU+&K3PBk_2r3yr1iF|Ee&lpAeZ6i29wr^34vL4^RmALQuu4MxC*~`8wS74_iON zZmU^_#eBz~R00dcqweR|Gx@$JICsF9jU_ZUmdA>#+~p0f_p(=;@{02RoL?&;@b2&S zEE=pD!?7{i4*iGqYkNu(55Ee{IGLms#)7h3NCDzo#H0^4mR}@1aFL{To$wD468eJk z9b|@lmn#7Zr;9(Z<9ygfDa4g2>2!(z{fH0c771+PG_Uat{+s@HXyodjE`3sR6#<3` zN_ZE@S%Thwe%7yr6r$Ai151&Q7#SHEoyU|dbJ*t2U#rf+w2y<~Kk&fA1yw(7x*DY2 zT%X9x_|#}IL2~u$^TD6U_g{g-8Wx5$lB8__BwKq^d5W2C5;7JYntzMJf3XH^Y}gF8 zn{zMD?;BI!fr^y7!ZGMiMfDdLg#P&*AgyXtXl-t{*4#-J*N`fLYx=hy`MZw7A}jCv zh?2rT_8_7@r-R6q6+JB4zb{ussA1rQ;QeKHiRQ(!XWb-^=6^2o4^##TjS7#`pVix* z`mUbZnfVt6_#1^+_#YrlP|@#CmC@k&{?GS75}WAz^TKHMUAhE{=d%}BeVq%D}gi8f)CD!|Jh{!CKZ3bxP+C>w98NX z;crI$-w5~r{Tt~iEVe|zhDa^`|Bv6}2P?e-=zzx{=DzY$R8aT;a&rZ{PdgNDpn9v@ zI06#*LB{smIMe1mY$-Xp1ds^!1LuLwqAc$?z|@uU^lZrkRkDVZh={*2fBTD=roDz) z{dmeuSCR9B<*enA)vJKO4qzQ;0t#*xfD(5)x(W1poO=E^niHacJnw&RzW6`z@}KSG zkkkRDHW35U)kIL*Xg_qaaQR%Tg{Xqq-z@PB#Wz~dD)0cf1UPLc0vfWkn3&jyK3AHz zKgNl#07`&h8xAlbP!~%9YOg6U9-1MBSWgrJeN8{mxYH)ms2{7TXWA`)aw_u#CLuH2 zKc~wmA0D&J%;jZ8j<+j9+O;NOi)N|T-^#UFcjoJgfOE!>ZF9>U@MLvw2E|^TSLt(l zoqlj~$M3J#@)!ck6&4V4%jV8z4H)0!u@CM-qHo-y-Nm|J3M&98AjZJZIr_gImp`A< zlN^j6g2!bt^d*;Y26o1P`%ebqWkLjF+uTnY(89G0)1TG%sQ8l*8Fs=_>$fz`_NDm) z=iZ_xcx?So#dzQSfL?re$(pLvTU4XB}2mx3zsrIyPN`n+`=lO1ewByE~-28$=rE zZfWW6F6r*>PRVcKbIy6s`+om$aiOr+nrp5(?>WZ!-2*sC(Ls6v{ya0vA$h=q`~m34 z*~VS4!zK$5t!}uU(VzfQL8E{0>9>G-fiJfw%Xx~0@)*R#AAxvWEFhpp%t!4GQH1lEu@+0?@!^skXjV7qqnJOJ$6R5xg0x|&WJhcLbi2)0BX1r?s7@!VxP z^0;W+9L|o4;~^m-Rl)QDzCnX6w=3^c*sSA$x7B^QHI=p=P~XMY<;@qN3UQ{Z-QO_N zYHfRxAiC`|dC9_@_9uk(_4RXsxu!f9#CcNRh0z0?T7@OT0-SBM37dbA2zXtMiz+V; z|9QFFLR{OOCO#K=6MYOpjzuG@D!}Pib>$(Mxzg0B6r|Llrel@nqOqFe9{bJ z|Nq%tDWeOxY})}*e|0#4D7%`yJ=0k!wK4-l=H`7+23Gpd6#^~;g=st*l^T zI}G9D>rAcJ7*P#PIk!k`OpGCraJ<>EVNZc!__~tD4-ruJi!s2VAI+a3^cM(Z*}}pl z+B-S5XrLMaoD5FkW${KhXSgu`@0bIgK=27591;OwHZu#RAYs$~&`V(>1dIiZumwBu ztOJJt|HQ!xgT9i@H5SCt+TjwQQ;*%UlA;i@I_UCA z&Rf`Fgv99Qgi3l59cXeoll=eJEH6HY zbI_{WAzd-WN(di_PL5c?jU-Xq^LjcyxPX%%JKfuufG1}B@zncesJai-)(Ti=isE-G zUiC6)t+JHmd=m^+%>{fki`$#30dZ*uhz~KKe|2h6VBZHWjp(_ZX%(FseerB>V5iB! zeuu5?1Jcp!M}7u08PFo)#j=#FyS?6av&4wJoBs}iJRCSw#4AyKnoRM^loI2(0)AV3 zzS5{PR}Ro@HNU^#{Qzx%2q3cH$1;E=WVUGbv4h7ZNcL`oZ8dR3SqoTjnt&YQ%FVl# zM3InQ+q0+=g@Oo2t}>>|gf7tLr7s+@4f&*ihf;TjFfZ_Sy$_)S5NoaXH;2FyYffa( z<9#IFw5Ap+i@b-~iR+^SnA(*-AnXc!(9l%D^n%WHrjozkuLJK+aP9fOu7XuABLzhJV*f?v6hu&`1L5B2TYNfCx3VN zEQCseBZlkqG#ER7;LTpj9OM9Id^71U`xmcy&o!UwnQ9&ZovGgLe%6p zzGv`R=Rklq78uTjP=jx^z-F?E8jX1fa{h&)AIsRyC9Dtb?heQd=w?aWvEDF9?&fpx z281ph@ea@mZdCodDH4}SI6T7m9^i%$1$ekjV%5O3EjKw20kOQ&`Z&-im>D?XtkO;b zt}+tH{?zccx360u;OwfdU!sLKBK=Zczkw*xE@-KSS1*Vc2tq(V??U6nx_aj{%65t>$rjB?9-2$Lee#a*L;?}EX=U$c(){F*vPgDwqF4s!w-?%H;FxHx6~)> zE-BeEfZH|@@C;Jj2JF|&dS0}ujKgapctQDk^DW-ClG4jLH}xHWJ^By8I79=Qq+YsS z6dj|B1-TOd+&@I)9cM=Kd4Vz+lHX0a{`Mg|i-?f#EAaNU{pumK-YG9Bn(}@h-Wth6 z?UH0A#v+Zqrd7MGdt}=CzEw4FA}_BgqH-txc$R*A`szEPWwjR#-guq06;Q-^O+1Uf zMRU0`KzMKDnd1ey?|wP*=}%$7r&1~&68@C|(z8F)92^UL1{T=NWGQQn8$hTiD$->1 z_gJCyy+LkS#Iw7F?ftN%)8(+H>$vcQkhjNn^`8q(lbN9DgRFD!gDgh57AD;x76d^F zT2QdH_2g>IKYY> zvQ|J8*RSw2{m2J3o6w%BGTBqDh3v2aUHBp2`&7uuh5V5}n;c#+@A~01FG1TJK><_< zR__E~@t64Z2bEj^^Ro)37+77FF!sQ2Hv&J$fJD~Ozvn9Tu1$Ztk75|K0(~N}6Mzt` z{P~JuUGN0~6LtYY-<% zgn&;#eWc|%5CgB96TlM23kEW%Q$4(6)mG0xKZRIz(1xc=9?ZqD!C~ymw;`#t~n1Zyv^u_THtQYvQ4@1?sHECyK7{2 zYmR8-V1G1O1vS9Z)N)l-gqa}db0E*6+%l&V5g=?)K_ce-5zp8~#e<3)ii=gd7vBE5 z$V@B~?ybDZfHEza^vpm6u@d3$Fg1s3QTCE)r+^not&g0Z^K8g=knoM0!>wt02RlmX z!KQ_TQf4-KoZc}sZuw+?NlpC#cT1J+yy0lu&oRl;?{IKKRIYyI)c&fk&ob@a#PWRA zd&uEQ?x@r=d!y*-5+S1s+Hvq5Y_eUKhie&k&8GA9?|O;0qti)9;=gAh7&1u7(Lny{ zfx##eV$w*)knqI&CV(J&-!ZW_o>N*_Y0SHF47Cd+?wGJe*2B#{u(Hm4Fg_&OC`vMp zpc!^*QiE$}OvBd>KC2Bl3-(&%UX5ZX0$kc=^gxs(Q37Fpvl(o#>$p%Q#r#X1NEJ*Z zVVy%5#0js;N-o48i0&Q&9U*?+;Y2>~i<;4qcjcnDhqM3P&cIR{^g4_#yn^n%pQ8($ zpvz4UIGbO!hg-K33%mr;?Hn@t3rGmF3oz-rJpoa~559y@g%yCKp!#=sPhA;5m{U12 zhMeWkDpvR>uFW>q9Y|OtZ*4qD+%~-Y_P|GAHRIS?hTxZ%!M6VZ_xJ*!t~b9l^t>2}+r{@h$_H)(#rYv-a@HZ6C}&ym)X zVOb%q(s4DXnkKSU%1`YV6{fO&X7lIj;j~on0SJkd_`~g$ zM7=eWAp@)(WOe=B3f(tZLg}CB8w_KgZokv#s(wTzzPr$LZ?uDdso;kjTu~ei_ewVP z7lC>c2$7%K=;qY{J?N;xzm7iq#C#6Xf*yL5jgrV$O$fNaZQF)8x^QUcRzV)Yj!GIh zMaouXOMAB@x;&rRw1u&_|q1nD)_eJ2xu;s9gIN*SWS_$esBE_!7*JCTLP1!uR zDj#hn8WI6ADMmtamVKWVkbMW>Bj?h!F7saIxkcHD)|mZp^KZL2anid@+c?pbtq+1t zJporo{^hf+o+o&{k>BvwcwV6Sqg$LCk^ofw`p%=QHzg>wyiSlSwd{SkQW}6h9z@RS z28#*i2G`}Gcc_%AQ|RnDlN;Qj8nG#4coN1R-=@^vmOtUm-VeJrw}?u)Ku`I5&7(N- z;R%-j(Skc@$X(8Rtsm*Ra&;d#|j9|?@ORcLlT z_wJ=;3dhl@lA{}OI1C~NWYcW?KAV2;IFRBK!Z!dldN7j5F$UeGmUaF_$C2ypR%PDS zT0Pb-2Hk-~$4^G~)mN4qzj-72j-<`M(Upt~W=K|pha>~zpYk|6Hd+mpj3gcV+aT#p zk#pIV&Zao(+@DId+RFkAVzGprGT?SPLEQWzMqgqY)-g zn-*{G=|BUf#oZHPVZ1j6XMDlIC5+vofepQotPg*rpN3Kk=~2O?X!rdsQa<4K39qXgzvgt^mL_>?-|Qx@3KXhTe{SqyHP z9PK?P!C_gKbQ2>37UBYKV*AXXBzOhe#J^#e4w3c{$~{~me4XKs9*u6M**s1CG1FHr zO{U)r&|{gKU~O@B2D&CcCMG|dP<}9~9p#W?eKAzdFq2^|cA!0xcuAu@vwNd9iM~4N zLM<>RtSQ^wTrHz_TiN)Q#!0{+r)vy{tlvnPk&B3Arm2uN)QxWyjUTwusHzN>mUC*D%b}Xx_0IfQ(#ynLf<8BcilpEnWp=lm zF#6vEp_0o`=1~POJUAkE+3D`AXT!zG+mjz2qE$*VFaaf)rW+*-6k zV_IO%??=B`xei3WJqsI_^0#r1^x_pDEvz7jKL%R04zFdIyX+cs+GSgLjEY{A5wMu6 zidTSS9HWA)1xYDgLOYpey}sIQq?Y)@cu=$#UbV(-+LEsY`5dBIN%jPhpwh&!ky!jO zBPx9qeyM2Xwa;$`w6VPQW|Z{XPeKR#yeN42a4iLsY&%c)#gExgPzRPd{59xQSMrNL zV2W*UyoVKEK7=+bhky3_RZ3v851ls1s8&VaR^Bmuc#tq#@y^S%N6wRP6N#r(!B}^Z zWsghDKG*nHr$t<`{aD4g^rFK=djc@IK)$!?C zeig@uDE#7vAnU_HpiPZt`6S8HMW~zg)SZp9Y5s8k75G6e#3YWG5~^=&i~HOC@7c<( z9gkBAYu6FAMn$h_bQ=Q~s|=aQO(e80T!&7F1-G2d!{O_Fiz-Ms{lQhn1C-&`PU@S` z2AO%K(wqVxMlq6A+tXYZTbEkXLomaTj~P68*8VVOkdz&J2^R!*oc&=u8e!9NHc=JL zX62gXJvfB(?2xDeB)wgYbotOQ*~;uL!Q*+@V?ILsnOcy^7VQ(VK*rHqCgvZ1i%-BI z@ZbuRZu};nq_mTyIo}Z811k=m0BQq~YNo@J6-FXLMk_r~*ujA_r%SGpu~=?^OF@X# zx97wyiJx#4?~jcGG~rpD^yaiFIfojK)k2W3de;#4e;<84t9hYtFox&C<4%L#W!Z%k zG{k?AZG!{nlQ)Y3p+q|iH|}P-=q32{DA%v`aFV=hBcZJG+{xp_A(@m(m|Q=!T7Fy> zjd(wv2gfBM>^5zLzP~uAZg5Hml&VGs$!iP*8;(`nTZ0>DrGle_`f-=QN%;sG(k<*B zB0MHPVRpGYWW+Ie6V!V;^xi+we%S|7{xCmfOARn=Q%&ig@&a7( z)cv-tun&VQvJ1c73!5|`!n0U4%TXTe+2CT&Q(A;|Y}^NaZANq_VmWK%wr3HFIN|Wq zlw(rlVbt@(HW?%T*2!LeysGnYjJ}xOwpZXAmC>C7_R<<)i$2pz)E0^&c#q zDeb!QA)R8r8Ra*-!rsqj6!`?j$hND^KPMwQ-VN)`H;7P29)`HF6`lD9$PPJh%O#;q zANsggI|QT76z6?yjNo04-4k@0OC4?bp{0$xk5<-8fQbkV?~-o&LeSOXl1G`wH{*2F zg`{7%Ogu>+R$m}vI#FJ6kIaWG?7EboMeM!wRTb5{F&%GiKbx01tcBAcNX@}5crp*)gi-3Mq9f?XZm+BVa&^B`pN?l6gPT|~eH8ui$ zc;~i9Qj90m_eNE+6vPhgV?QC`tZfjK;+S0 z%NZLvJa~)X$qE^|O=pT7$~bb@RHv6`v*+M9AxIzN0}pp0ZTvAp5LlN`qe4GWa_rQR zA!K34y`26@lt`qy_sYZoR0DXGn<*20?Ss8?2lDI@o~BeV@`+l*j#xHTx^1jCJWVtQ zbB6h5i<_GqP6trUe0ufT+>Q*mvkyO>dsXYK(j3c4^Qkcg(jw;<%}@O;()znm?Q!#= z@OQ(rzA|XOG#s4iA@8bHn?@U$H$G|JJPam0%z8C@;_v=G;YK`F36SMWMC_IlPSrz} zUvn*>HZP-GeF}sKl=E)DuoP{_RIRbi37fHu?@f2V)3c}$ZgGpBGv3%Iv44V3w#>-NP4$g2csp>V$qjZkGHm2X;EsK*f+E~Fl-SRV+d>4n$4DUr` zNDpMZCWSQgn?*g7tQJ(Mw+aM-dn&S?`|lp-O-jGs*;lyTk=mjLs2V&w$QTEY{8^Eh z-&T^Uvgk~~P46vJRxF5KZw*ZN$;qUhF?TyNmNg;u=3pF+3%ofQo8J+OPg=NKxyWO0 zX{9ZLEQIH-mZ9X#7|%!z;}7Sd9OR3JOkFzT^JH+<$H2p6H9H!g;LyHfKt%1!5ANBG zSqA3%i_+;)`n~I5HbGDz zZxrtb#=TJ>L}fY+`MfvE@PvAsiJF;`%T|vAedSGw0sb@Lt!Qb3cgy`0+})Ah;*0yYgGl?)ev)lh|8{1+YUk1 zyjw7J+B+wqHU|DV-)S-2?g~wff@?fmB0YFrU}M;6^;P{knj7who(usy+Vn6jf!YZg zUOgE&`o*5%j^KG4h#S$x=Sx*=)Rcbn>1>U~I71t4)X1PLJ+!r&zOLLvp%4g@;!av?nds;I8qfQ0zdGX7->4q8^z<@7ja-aOrL%iE z`wXYA50Jq1^Ruu*|N1V+{_ZzD0@8%DZ<^aLJt zFEPh2)5;P-WR~oU4@7stnIYtCy3qchkmqH$!_pZyr+aInOz-v{_+KCz+YxlC3rM2& z!1c$quejXfa3KYt%Jo9T84&S0OJWkgi*O}L7nG4Lk(E3Z2=% z=KgtC=;^C5TQ_V^O&^OhOGsl-^dXP+42h56T~!^SV>UhTux<)}<24=>6%Q9t;OP{s znyfvUmAIU5;MkW4&IRd4KCdlowg#@VyGwWzuGis|p}|6gt-A{RM9?|WaUs~<;tt(y zU;3W!=_1+&mfl?Hv)|sg@AN`W5C_*G1Z>|RsPZDfyoZ$h+KXi?`AwLMFGM1wcwXYA zgGJ(9N6qcB;bu?*1s82NeuYK8^uAB2as`^g+;J^GH$iwuF%3ORX91%NL$YIc7Bj1K zL4#M$%anU@yM<+2C>T_!n@D_QF0ABoZFuw9>r9}g&x)>G!7dCR68$jo#C&G`+NjQe zHkrV`fJP)<&PnLr)Ix;N;LzHAqhgi?}_?l^9y6HwQkO`iOB698=TLl~H#U z%!16wb1csI3uW|u_XIIVKa3!kK5}a6)F^>Yx&?AcyT-el7&q>u&p&5i6L>@T4^Eg? z^6*stuKSq?d=9?4kR(i+rm>8Yp&7av0hH2pSL2clljb2uZktwB&JB;D@ zegs_ol@{R+AXG*qy~G&nX7+Jna=TC3*(V3W`V=9OXS4ycRNaD`+h+7=dPwxnK*pKb zIi>U~D2OEHWKxzP!~h|JLGr0@D9sh)Np>ax%EtL^ClX(^NI!(6g6Oc)Ru zPr~7?hV_H>Z`{1qS&}_p>}I>e{TFq3`$Wocmo$K-tecS|Ue&TGUwb^u6vFfEyyxs( ztS|jZ-xPHD@{=9DnXx+}&=g)qZ>fBba3SdSlCg;)NsSwHa-2oL6&Ki#d`_eXX~XMJ zf_zKFm3Msm9>z&#XXq&<_LjOiZJp)5-iyB52Nq~>kezrR83hTtV}yW^duL=vT3b$q z15}u+q4(b*u@{roXTXTHlS0T0qI*8LNp*QJemX6KBfTL8bOvWZcsrQWQ0YW}XZycrV9|41A?DL(3GhujePD>c?hpzWkag<6|ChzkGT+b^BVdR^r z%~yA=hd=`)!yC@Huqxm&K?Y|Q7c#*QziBo74sA85d{Zg;^q332Rq|k*MYlIP=wT(z zFb!2(7G)H#NEvX2VUXqVPZ1Mt~Y$c%eG+FM#C5fLn=6pI65q*Y({&& z#VOVK-Lh^XMEcg?mbSZ*ch2D&!bME9W>e`cQMN*9{=OY&c+#7S0o=p6{BW{X+Gcn3 zz6rcfQ(dyXE(`|TO}FF`14u)tggPe_R~@+8yOYl3jxO2-u$_zOof|f31da{QV}*sI zF`Soqp02js=Wp;T+@dv6gLwGyge`SkIA2C_f~U0FhFQton05~6ENWF~HD*2xMqC~B zw(`s_PHn;mv3B~;PD1!^257#P^Y}vXL1gTQw9NrkCl<-<8105T2nQ$_lEvu-{;mBW zv{QhmjN&^(=L^%r6oJrQJ`u9}Yz}5U$G+!A7vKaU?y;{C_uNtYSf6m8Bz3F&{skv? zIs$86mxvj;QCVkY3hw>rCeMb7V})?AO> zxT@y{)1O~A)Ou@!HNR1nD_{OuFXLYNCoCxjVatJQe({CehySgdOJs6k%lt9@Muh$s zo=-DmR^$K_1pbVW7+|nRq+d!3YvGx;4{fd0jVCgP(p?;=a>SWz3dA@6NUgQ8SN>VX zNY8*l{Ok+64|x*J{&aff5>+O~pmmjhB{>~wDr-;9YjnepFRipSinXsalO=`A#W(73M+OU_<~butQ=h zjru^sok8oF1ts3PBv4wTFmoN;Iwo22blvw`IlOK=8AJsPWg#ck>ZM)3J z@>g@BY!LLA@Ar_&y351E!%&tG<(Rvc^;Z zXB1s9GbwQ_x7GRslZpDdK6ei)%)?P)nsrR*uO$5Lg$@GC=lNjb%FvP7cgR4(6$nyQ zC~4g`HHlC|>lOMNYrIJa-(CQe zunh6hd_&|4l`~((+rhsH1>Z{J1xUCbsZ_l?O*FS=1BRV&7V|cxg+4z#Wb#ig9oYw- zp|x#uwuhF3`!HYVW|Ow3KPHD!_yo`Es3U{sY=#YNPTwdKeg52Q&i+FA;ZdshfoE(q zV1;ePw5V=n{ZFW8Mt(4Y%|hY(o9FtIO^(+J9vBWtmv5v47#L4?`e!(Tu(pP9uZ5H_ zyuP(x7ZJ4=Sv22r2}PeF6X%Fg2dWk(QHUdXaU5l}p=b8}MNRt35%5mQnJ-M;dL69^ zExVz+LmY0Q8_N+9C|k+$Ggv41rq4VcwOV4MhWF&d+3zObdG{aJhTW{BFV-v#IMBbh ztTVB6rVDm#GFjA40qG4c+!}moLAL?HT|lSRqCm5e>-bXTuKRo#>y2nKER9sC7)vbH z)vw)r`iUshtIlRgoi^d$zUhH$_MvOnp>Z}Q?tQ6{Y@OMJkID1t%NB_gIfVb7X=D{b zxeB~mFGCuRw$(4G{d0+t){+&Ox%*8s0)_*hU-p-49m-3xOg(caC>+8DHXYzHo?=hN zbK&U3olN5*A#dFqi?tJiEadz#!qGXS`yAK`JZCe_-j;icH&3jyC`RGiz1&H&mL3fW zW8OM0>!011hUO*Wbz_Y{Hyn#xPEwK*z(Z|&x{NH5kU@0Xn`7KBS3n70Pu{eL9K{<> zxY_Q#?zZ<3Tih|HaJ+h{;5@Oh^txYhX9_uUqL*D7En~g+g?pQlE;kDGU;^vpQIuq@ z_f-jth4u+_RRWO6V-}F3v;5rdUviH{Tb`J@o*NE+ zh9JGxNP!Gtq6`Oc1zGJwvsi=o zB}a-@pt($e399{Un1kTGbDKIVY2q*GzrVk`lCVsVyQ^3hf8n2_Q#L?+UR97m$T#l< zV_kXPsJWxN>hv_x*3#rlbGB&C7wY3xY7_bglL~!mDu|m8b~a36gRQ74e^#hMf-bf6 zz3hM^&Yg=4n>dqYn$Lb;RHwp;vSMA?`BLFjTBz)$l!e;)_GbM_^m_Octls2D-E3{L z?2<8#HQR56O}}Q}xesqx!dObm)oPRo(!maP=aTp^yh%NSfI^~l&yFhKg}YLMAziJIfAiT_T^T(hIQ`Q z!D?1I$UM8CRw_kZ!~Q;f*n)M}p8iiK(%2bSVtoQ=adoE9{~N8P;M7sUI{k2sr>4Pq zE2B}UN2U>nsj(uN+wAP<4}gn}0wS+83Hz7&$hQ~Y2{NDE)8b(Ok-+ZBeLkGHYm)Eg zL>d<4+B)6~$x-j`(y(S5*&AO;n9kVMX(_52tik+Hai08Dz91rO))zV?X3f7NoDGPp zBBnsnFH%uT{!0IbCKBQB1$F~yr+6b^$&#UVYUYB_97eKpT6N&~l?_=FzspAuj^5yB zvccUyyybtYilf?K1g7kd+ZsClEXGTYM(pDP)m&AB?U>skh=|Ou88T1|SfqjJQB}KW z#Uszr+=r9!VLez{;foZ0cju!1!}!-)`WZ8kWkm>vjg0x{yxx>*qyS@gr_e??hUa)RMtq)gTk4;Y5y9m@yypIioX~lnlv(TJK+^2 z_T$m*hi+~c&CVRWTdsxh-Q5L;^1Vy5)j!%YTugV8OGT5}M?tKu1-G9n8wr~v0(Am@ z;u&CWQdwMtzZA9~o>aYYl$;oCE2E7f=yJG!aJ`qEsoqsho2=hip1oxOm0yF%v{N4D3fd>|1YWms-jmoi-YE(pIS1{R1@4~;=Ib|ITASOiO|I_)#)2Qv{J8L5N}%5zYt&-7 zSTCS>kT7r5yCv%9ZtKmV(wi;8Imx|vEbhw8PW~pTG73p6W`@*~^UUw)BCc(pv;`y& z-jo^;4^N#j$*u4rPAxBJEx57eL`bCvDw1|3qWb=0wSeUSwd>`I?SOd1i*SeUJ2oa; zSj_u)j)>(yW*_b5)Re46?zo(gatP9|BI})*O3VSsQ3e0YA+DNLTp8wWjAIVNkfl=M z_I#O>Iq*DkCoLbA9gBA(m3>UO1#d+VQXC4do(sIq4+aTKE zc{-|v*E?9L8;&nN1i#UqXVl5C2&k>seI@w5S z)KV4O1;5GOI~YmX7D;2(j2c;W{p0?Cc+t|;`kx#82TOp#0g`C2GuQeSe?t$8Fp`um z-9^oE263dm%FrliJ}#Bt#KkL5&-9YAY~P}HVGmeaP0fYBnSV@6Xsas+uW}x7BEWF^ zzMnqy%%bZ6-)m4t3U0%28r=M+^c`%C08}DttZ)&&>Xd&jz&4KUWOkEkHRU!3UL? zr@uG^8cdX=dDpDY&=G(r9KJ#N;Oh`eX)91`;}WsqXi^|8-|Aq7#)4Hc^89;fby4Nl z3C<0mUH=y2|LZF_3b;U&t>V7g*TL~gfQcG!{w^Ke_dT8k(tCIN^mr(lLE>K@{y$go zjH!E(_t*w&3Hk2}`_I4q=Nmp^0Od&TYj@@Ni{Aei`12o<1MK@q1)O|e${{uW{Y?M= z@@Vp?KETjmhtVb-sOKvh6N>-7OJ6YMS>4d>I?%Th&enRK<$s2u-}Mzhsx_Y;EWCZMCDNbf z1c1W-eQ$oLKE(_RK!Zc@DPxo9|L`*G60gLN)p8^I^<#^5TU=LPBNUVx2CDBP!T_A4(8Su~xuLq{ zR(rm}I%Cr5|Nc?*#3sw6so67mCpoOAhpkwdi`*36r>j^^+a7G`a`cbs#jX>e^nm{v zRJ#y9Rn+NNlj*Rx?D9AtHK}0yK$lIImAGf1 zd3mKlAL=WN`xdBNZazfnMhwNG(Pu2xY^c<97#GGMBqR)3?w>Q3%tK?IMBA?h&Of9u z5ITnc1*rZ*tjdBFIj5 zps+qw8R#*M{M2F~?PK zNgv0r&BB88iz4D*L&JmdbcagZK!?=}RR9F=h|P-l`SWKrU^004n~P#0&c9j!UQh z!)ftrUEaDqlk7u!%CQw-N4Egn%)S8KnKJZm14a5G!0kaDXxT#=X=XVN;O0arrvGad zkp;uQQaOrKv4G1LZpibF2o+$iu?=v6H$~=8-*%N6E@`kZFgB*w*~f9LN4J&yKhbP` z)u>t|#;&0&r*pA-0vt*%UNH!O00KbLk4e=*O_~U)?DirIgqOh29hZ9?G2l6%nw(Ex zeHt{%gWq|nrn{f8zXD8sUS&FMD-$U|*W%3zWap3%+RbxrEf<6D{ZxQEfyR*FL(B=f z0&D{)omX57xUR+oUoC*Dl1~5EJ%E0|{Dsm1M}*IT+;C-OZg15)35w+Dg=lnIn-u{R zyR$RZn^Z4@%D<}@z-Uj*>I~eK*HNSRkoZO`(<}=CpTYjoM)-tq|RFMM?yO7b9&Yy(97qS&@M9Pql@4e ze2&*}q7>O{^fQz6wdsf1Oi9u-6|&fygCE~A8>x?w|0)GYUp{mZMwi)Fs}hyB+IQy? z@9SaKun{6Pkw1cAgpIZ9I;8i{*1K?!$RjH>YSbOK_h(mt{OrLZn|%_DUr_tWv4-KW z!L7PLVT%I1)Fsf2UOoMyin$}J3B;n}ctRN&;i8uP{lfcO8c}>(%Dr#%(}az9i1STZ zU|(r(w-en--C>s3;wRRyziVhaJwg~U_riGDD^*f4{O{eQ-x>;dHre0@hVJoLDw#om zHM?vQ=kn&k!~^Ppr~QBy)n5P<31&l-zXqVf)rf0vo}F6``CYwd%CUrxW$WKMz|a;4 z?{ZG!ikAn&a$cj%Z!?-g*(%0VuCA$ka)DOF(O3%dN^s4kiuK)ocIOMuler=3&Z5= z4$DPDFPXkGB^;pC@O*!mw!tNcmG&4OWYCZ-j+&<1pvIVOpYndx^LH}oop-a*5Kh&> z>?vRiaewj4_Vs06(}9Uh@3q*o|(z`XK-*iP&L` zhb=Q`*GdmEpTf)j58SR7hTkG0Y8TD{+ez_eFRZE0|nFu1z8M9>_ z73#42!#KUBSN+jG3g52b04!Db>Tk-&%UkbhyPT~4CD(kL!8QO|)_*i#RjM#us-bfB zQUvg*uD0gsWIpg$$BQaB0De) zFABeEATJRx)94sLwce>&%)kA+L;LDdLD1K~FK?cRe!|J#1NPorpzV0aisQ|w=xcBC zgjZsSB!U!m1?V>JQ9@^f$^;FU-;?Hk6`eS@VH|f#F1rSg6%q17gSoYgv*|E8>x9)l z1sCSyu}zC&iF#LI?%{6aq%^Nu7Q+D*uHVStvGAsZI87Oj!EU#};{EvVy#{ctiTYpw zaIrJ{2eais-QNY0@OZP|yY^ki4buw!-A|IdfPGn|^=d1`iQJ47&kNvm??6+~)3e|vZ3jczF)B6GhzPGRK(O;#*1+X)U2O?tI-D7zv zt?rDZq%A14nMu4#J3fAL2uNm9(!s*RkwpgN@0g%>%9?@WKm*7-S&0>5jQF~O&G~=i zDO5OM!qk!k1zA20++t;W_aS2SVgF4GAmIR|=kp7|f!a*=0Ni$w9OM;dWcrzHi`F+W z5zlNqJJ1m|B*%Aczyav>ak_e{D7^XoBf2EntBpX2Vu`X~?N`l1zIECIb|;$-3#f1{ zE)nOGrTy!QKT1)Zre4vzu73|{eDFYvqT$2%2m+SS&Y!c@s!@N}ComO)<#MAEV8%jw zxjX9og*i5MS68cpA7W!KlizTnFVXUL zy(h2@y3d|+LPLS)=`)0_u^efcAmOgi$x zN`78m!xeqE(Q@5%)EH8?RQG(N=abD^`wOehfCbbd(3m1uQSJ{}*)Q?}j^Z3MTGliK zl-N7w7f@332^La}PX;JNLONzbF3V255X4S|O@S~#qdWv=w2BCc_wEWED9Y_5HGBCM zF%X}6Kt%-q%h-n2(?^SeHR1K)T!cdC*N&udvMm-YRvLZZW?29(((>I9^uJC#U``ld z6e$3SkuXUjd?mVN^mXCO^q^8&E%0Xi?(P{_Emj$93_m1d;JI6aezi?=IG7r!2uIQe zg&;#HX_248Kpto}*54a01qy0ApOX0Q{Th={I0CgY>2 z>733#Ym^7rXa7Qu)=i+B7BHHd_HzZ$zcQ_+x1}^1jbR>K`<^sv*#QQGxMJ;b?R^To zaoqJDdO!#SA2T1hB_ibRvk|mRVRjkhJPnjh%v{rOp)H z3_F>UCc3cFa#k&R5B_j%@<8ccM$(qX{_4k6#OK|o_zGn!V8)9>Fx_J+{jR3WEbhn0 zCZ=?cp!#BJ81VM9t8xsYXn*UJAq^4wM-yp^?^v@Y$6~1gO0wm0HG&+DEnbB->^PXT z8aEVT$6}~_hP%?)49P_5AO5$U!k}gEs56mMRxFuTyO z3rh{>Bt;K=WaG(}m~Hq1)$nCa)vkyZ>rYV?d!m*HwO*8IDS4+WvZV%*pL+Lh-&HMIxw!zlB_n&YL!;G=(b z?!ppbT%#{)epde?94wK_VV1$;q^|${DFLf+4fMOQ;Bjss8U6pplD5cv0SAuXwodLJ z`jJU=J{jUUz3qL2VM7WsZ&DfdbO1}2qhe3NqkAn|;*5SkzP5xr^1)O%dY==Ci5tt+)ZPc9)s@rZF>IWclwzBC5}rpFS>D>Be!XYZwV z%Zh(Nj3%@D&3hOYn)iZ3Ly4gwRAp_E_U%j}FPg7|RJKSJU9F8C($E?=y)GE2U~POngjROnf)MkYDV!8jLn(e5#Lp?{*%zDpFpykETf5HK9S z^!}8~d3*RT)!I)46^Miz51hOJdtgmcKwLH0WAK(u!{@yEWMG?2MWzhqzhUqNq#TF( zYv;d;a!x0#Ux5O&Ryf=#)H=_xU^eE^A2|ohu0k!d@|!V6&ZZ&E;UCDizkIh0i;ObY z%aWIFBYbXhEUzw98|42|qsX3@y|+(BYNF`-8AnGfLby0s<6E};ez#g7NI?~qSR%$| z_yHIuNU#lQ$uIK4JvELi&E{p)IK%;ZjhlgdDH=Pq?+133E{Un)h_O+4*Yh7!X?vz5 zs#D$k(pNGvE5u^+R29*wzKAD>ob3%@R6gWV>J-U}-Q;0S!yT8rrB+v^?Zb%)Y&(jr zRRSR;?nLmlBj&tX(KZ8``vM@#nhtU6{t1X~LHg$AlH+r`IS{9QEBHsIGQhm5uU8`# z;9W|V;(uv19w8`>yfM4_v%HTGyBgCasC< z+h}rzZlYQa(@e1~%b{gmq);(SKA&pES+{LCl}W-&vzial%(DOEtYf?tn^WAG&1r!V zX~p=l=V^@0>L1zc@1I|Oj$UoK)?@mks%X3BebB5QvuhscQh1my#OUnYO6=to9s`bTyJdZlP=2UfW3I3Gs*2 z?UVAQ&FNUZ0l*Tr%bHHIsnyr4b)f!rYqM*}DQH{3peug>TD zxoR_oK07b^;b*-F%aum8gPB%7byf>N1Oy+Y{<$=~ZhH|c-l0=+vHXBeORTpTp>;3F z7Cf@ZA#+%LW}@TD4~zPc@ncLidX$S@zV+$oeS>(<$m;W*l-0@fvUyIyjvnaByDNBb z=?!mxNJrOJVPDW7VJu~TCk3xNNB8l~oA0;->7MS}eSw$DC$|aVXTw3q%T2R7$v+B? zefaDJT81|yM204E;ju+Vd!Sl=S>|3@%E>vMd?sI1K8?k2(@|3Ne5j^03{|L5K#ShH zQ>4+!jS9$@$znr6LwiqN`2W~?%b+~gb!#^v1Pux91b=Y|?(XjH?(QDk-95OwySuv+ z+=IKG&YXMg_3f(j2db!o>Z1GY=awnEamP% zw7JfS42Bs3{kLB#PYFzV2nk|-L||c&T0>D8YeeB$IzHFoUcLB`AqwoMsOLiLTpZ>` zco5^Me@RAck=F8AnMSe6^qTR^uNslw(11L{1b9=0{HoLS1k!rgtc303Wyxy^JRnpX zsG-RKNHAibNA`cW2!E?}UQm_Wtr>4kGO>7~%6a#Q9+1TmS&=|_gs3uJP2!FEX1zuv z4&T3=8zwNi_}i1vP%J6tq_TOzY-)TlOrb(Wc6(l(j^xkzJcZ)e3vVDN6Va?00=xZC zk#5cQIX4wAQfB4=xrS#sObgK3L%NRw!M>EVrTWjM<5q*u&et7{91@UROOso-Zla}O zh8xn{BaF&UHu0loTi2BZDuM+P?=x2{x60@FbcPH&A(&q7r~-cQZWlalb)^+rxyQ?_ z#+o$_5{vDcUKc)K<6{y+rgdMt@Nz{Qz*{PiVAks#s z9S!v^5ZcO7GYL(YC_O583Lu6eC-^tTAs!J#2Npq^l}R;zTNJKOmTCtyMnd<1L}~l| zj0~G_b>5GGR<&@)yy3}g3v+btN|p+$uKh%x2RfJ2{ca2|bOA^)Nv{^TFrL(z|c?yFL*kU0+iLePmvjP@ig)+b>VJ$ zOae*TrfG&16h6efniBSSQQk<@aPUn(K!|XXNv0{ll=&qlwK`SC)VryUvH&Aq zgOZ$)w;??^=9tZ;NZuw@^1(JKVRX?z^PkL>Hac0#xmF!L(e^K4rNPAfnj!BHh<6vkQ(b-bMm+R zy&26CDA8)Xb*Q7L4Y=AHf!6vVK^%0yf7b4vC$={-^EN|~2SkDA!Rb|2mi_!@d_7e)33?mX#`P4KG^p|NjX0py*ezl%v21PV3wEkX` z>~SEkWj9~@m0kZB4ywtx`{Quru8do#w>Oe$&dvv>^Tau!UE>0MwAA4z-#n(&@vu+P z{F-=nylbb1x8TKjjn#=F1SIF29KsaLKF@L-0iyU2OiO!?WBlPo=a24fOEymD zi@R6nS{W$uCB@9ZQm;ym`UV0=b*ZYTxkNGjK{8FldnaSZ*U>-SerCeR&dWhU=<&(r z>0ZJwdmWY`hfooWIuVJD*Bm3H+A;B?hsqrbwe0c$wRlwQJmf7anUV-ofuLxAolAG# zljN2xun5&nV3#+nbkh_*Bn!>Y4>c>7ot9yr%NB9i_9k51tPfrOrJ9;LfdS#0&D zU~-@Dvyi^z=5B?cHr@FREO`7Gw>@rl%^)HnF<+akzFKHKA96?9NURMpHXOL8FW(h8 z-1>CCW(=Ks?fo_^<~FAo$2{NuE0XfvJYXU=tO}1uL$l#UxmYPbRbBU{tJ@E(8Y%GT zCG$(QEQMl`Nl1e^bJ?WK7p=Uij81@cJ2V1jdUNC_kn;!9LM@bcur z5=a)4k67p56X5V2!sF#J&&0iNpc&PseFfp~ZFscOpO2?0Pn;S#Po}$D%Uoz)urZaX zz(zWc^pWaco?-Qpo_@%ur!fK+ew-4i45H(qzl{xhZbY!u2`t+zByA3jzN}HO=$z*x z-`vsj%8Ag8k&?xAR2xwdQ++Jtw;bkW#^6O3pIcb~dlw?kjq!xBLQ=&vu=Wdd63SD^ z^{2m?*{f4$5|~+Ro9B7GY+IJ>>ix>X;F4 z#8+`MY{MYN2P>_PFL=va;Mx0bk@6KaNl!u|oHsn_c)m2(`~9uo(2ee2R_%X?Rv&qP zi6Cq)Q~(lN+C6rKg`lu8@>?%3C) zq@?KWwah2ins60JzaeKyC5Ou5MiM6+@~%O(`54%Fx7pBs@N~NaHQpi|V@GPL^#j!N zB5Yg+X6L)n#fl>Phv8l-&D-MAp*s26mMj9H$;Yfw2XKa@v=%myOkreJ(OjWa9_C(h z{xzz1u0la2oCoo$dEfG>I_Co7>BQu~@j@-b1dTxS*Y7_>7M*REFF_u_s7phmK>qMr zX9na0phpNS!(&70@B@s=W0)qW2QG++Nhn6G{695@1iP*+ObKR^pdqD+cy;%+M-wn) zewShr2<-W~dYB9w0A8{CVXaxXL}r_ZBHH|XepQskksVPsW_tH&)K)YEAwSyXGG3CM zmiGJixq|Yf_UN1duRX(`Ied6`Rzwv+h1vF&BJhQ4f0Mb%X_qN=?Zr4>^&nOd}zr5`Tz^@Jk>gm6#TpnC2m7wUe`-p^Jvj<)wzj*KFT62@Cyf?4c5W=S zRTn=9%qVse(6mPqk@vV3EL4IfL0&nIVIA#mr3TX6R?9z=o^FM;>}NAb*#mreG;D~d z;Z$?^hQ-AR6^hmVboZyig`v{+Dr*kGn(Fe=@xE_kr&5gx=q+WwYFBAW%=z*Ut7c41qPoQ7$$4E#3Yn%3*7&JbU#76WQE5uT zM;nC^PV-PESV}}pjfFr>qlb2;>4aXzyKZD|q^0L^MbG8=+-!g$lq*w>A>d$!OC^*a z*7{p9?dsh$C_24o>QhsVPGlqUhCe+&V`;Zu}}9B+q0pGOQr%5%wG@-Nb8$LU*4 zwW02)j|(sET8UIiRTr1etxiM9a{tCGNz{B5j>PrLC3)-LUjF@ycipWC%MQ)^d@XVr zc0WgQRH>?#SP>7QiN3%qld!qj^Zx7J#N_e3Ides6$Ii~qeB$6*z4tdZjt!}Vy`yP7 znc-e&*~Q+A-bfXg-!cgEC2Bk5f;u*|Qi7k%XY30=gaIP0zkU!h*!~!>6gE%CU!Z4+ zjAcN0m&*WN@S_YY{mC*+76cEXpOqtn)6(+5BZztq7M4|-VoF~+PA+XkpoH}++xYc3 zzStsRAw^J?qV80dW5M%+#~4|*-thPtMdd!j`qh*B{pqhIxfuO6TCKl|s`+}Fpe|c! zDz3@eiWB+D{?cD)bA2r6*wm(M=y1-A?g?S+O}K+etn+Nyd%x6Rn^3{dRj8Si>7qLX zwY0Rd^OO%;GG2M2j9F*8+6<}X;t6i?N7PGwsNrC;Jekw5?rX3ALlfWkY72+oRiUuW zHHDjFk60o#4Z^P9S^{{)rby*X?fbr}%lQ-_vbsefubvs1iWK-8>h`(HHOaJyCI*%$ z6+7g1LnYp1*5=~QMBdC%b zU05ckxHTRZO=8fm-)o9FH}8jBQ6g3T$h5E!n!M|h+pLP$PhnVk7AMtED;6(0J*ZwM zmq&{0{yfi&LOb%TJ(eOkoP|AIF0MRRo?!nFSdZo1Cy&D}AI_nKU+`X_KNHpqZDaI& ztIh;NJMxoDuT*{*!wWg;;xwP9FJ-kS1hJh(v5r?nk6a@q9N)GOx>#60IIlWC{Aym5 z%1qotj6-t<8Bqd+P_4aA3nv<17UGI3KfxvaB0je)AlH-w3+7K~t{5jX zvf{TU0iS{Mi)Vmg<+XL!#}@r8c1{9Gu%fz@m6#s*lgEuF5G2D_%Mwar21y}IFEHa? z+QwKce#By%YZELkXi|rurc~brHxhukJrNNEieSC75LgF~W$#{AKH#Y~5>9{Hu&*oI*^*YFdic*U+p;P~C2nAqR8K?qj;R~Rg@F&_Z} zb6+3VujXmEkK=8nN{dd{Yf6CXVsXD~g4^b?NA>U903^+LU9_1%K~_?~Q!eZ(tw~GL z=pF@wVX47Mw~)(T9qlYJKDH@z>E927`q7IKGFh#we;AeMLZA+5odIw0;Ur1FdPfD> zYXvuu5t7fAjRj*rzG*CQ!&|gb55b%MdjYb3{7#tMmFu3H^p^M5iPSlgn1#{42^b`r zI5tFar2H5el4qbG;z#%X8Hh6gKu83^n7lDYL??K0WM0+i^)Q8kK^Py&i7zBR=oqi~ z-{Rok8ygVXbu?Q@3oQEm27$mMnIiqfya{;`l)=P-j;NGyq_5SIS6}boxzq4&TI@!_PD@ZoA+GsgMOpW-e;d*KMyXe>gYAofiKyr}2f-TMIybUFVvmC`1@m=0>?7I$jq;pBi8^B#w zm#1%Ma(jNVgmM3!9^b0>IgE!$^SNXJHJG5j(B05}j#heLUY}RwOW4PN2f@;4!Xw-Ubco4T9dePAChcd3uAx zujJf@CPUo_B6ckBb*cVlbi(*jLs)t@?>E;?P^v4Mmr9_oV5N<__&YfD8f~8QKZNW5 zb^$!_q+3und~;;-1?Xitz})9>wXu>{lNW6R$WFUCoF@DoTITzmyYuz)I-H!OHRNY9 zx)_wS)Z3#+Y^B#G2xq@@xi39$CW|c*VigWAbI=4j3q?kdk=Sw=8{Vq5vgP%vxdn$y z4WHgt9={cfaCeuPYLkM^&j)z%#^JDd0CS92^FeOpgKK)lq{k5Y!O7$+GKltDOs-_M zkJ^%HAG1m@9x++S=0+S#=RF1@T%?`dPWH>;dBi5VRvRxKmFcHS)xQbI#-^f}EBo-X zFchida@>$dwlR}5vfb+DFA zj;ZiYPP++8AZE0sFdu~=H+FN=(q}~A0+$mj0G9UB92+(+5J@jje{jiT2!rE3H_FRM#5^#VhRNG`C%f%6WGUC%$ zNlDq<6vUie57$yo3~rAL=P$I{zAQm*s|y}qnE1H<^ra`3rf@Tg%KY-G>f5I5G{q?8 zLS=H)0M%-5p^;`fm(!2Y%btqhsMa9<*7u%#`@(sd`4a}7uscm1iD8!;Du#!zk$+Z0 z!VaW*RtKdKniFbdrwgLRZ;J_^ZT25@`(~cotacpoo4vGa-hac3;DwXva;zxlyR@Bw zSOnj0*l9KdgX{{b8i(<+%ZJz7RTa?`oTGYioq>=*3;t@sS$L@tX~6A`gZLk zx=cMo32$yX9A^W41U_#x?n+gBoZpa|@(X|sYBc#t5-Hug*x zV;Tw~(erd&Wa!(7!2JIlHymo<9v&W36`JfEK$vip69H?u*U5xs_{)Xom}-2*5B)28 z&f1rE2VTL5p7prSL$+4j z<6hBOfp6p)Y*e`9Si0vgY1CY)x7{9Nwb<6I7OSpD#m$GU;b1(W5)fbvw**!>A2+q`h1gx%@D+w`y${q9X0XA_fEyeyq@7(M7 zA!N1?xp}2Q5sQJS$Dx1a{Bot0f4+Lsc=AIK%#g)zgzgr*b#hI{O3R6yO2<9nW_uu3 zKi|Ya&mC|IMcI)HGC2`6muWY}!7$q;RcdvE7k7&;HPN7FlF8nSPTv%xBU~zFs7(2c zljBh_fh9T>*nkudIn6`4&5R@z3K2-1zl0BIGN&L8YjpCD%)(By*wdjai@=!)SePOe zGSpQ|^1~teDS_k|!ZprL9+R_81(7r^qJ)Pc;5oKVpzLdfbGO`{9(mc;n9J4jRu`SX zDm4ct-e3JYDm!u&QI77O_F!E~Cy`WW&*@>>V|+Wk*MEleLTvgiW(gD2>fT#EJ?I|J z7NELx?B@k)UOWoB>>cg1v{(l%2w0{VWH9YBO1QXxpbSB8tgamtwr&spASOnvWCPVV zK)n6XFGIPE>uY@vNx1C<<)&22h$na}Tw7hwQ|Q)ULn>Txu7o^8zyz1XPnt=yo*s+EAtr4-X`@|G%$9F%&SAk%Ylh)7fhcdBt;bmBt(QwHEs@ z1y|W3xnjD0%{sY*YPxvbrvZ#pX7Bf0uLP_2T4-EC3l$b(o{_AQ$OD$6*Kd~=jhQai z+mJeRaer{^me1E;RW&$<$=cSAKf zAau-oDCCe-cs~aC9CtsnF8@M<_=&66|H-GxpD4Wp(XSLg-Y0!XmS$Aprouupj_{5S zvQ+%&5KEC6B4h#HmIe+X{zpM1VKF~h8WTwjEisJ~s^@?lyr90m-Ds3}prZ>IU-(#e zHXKs$Cat8Hpd>Saf~X`WdOU=&STl~f0Cg7;EtPR%PVCt3507lcRaTanh=|4niq}At z-k^xlEY#CTRf%bBrSg6RL71M#hWOkH*Ro@w)~RUe54snh3R)rD;dO{6iK@iF>KmBsgB&DEo) ztjnz*f;SWImoyLamU+je4+}&&b)6Lvr!UUn>6Yaec7(A~aYyb*2CMY#g;uJ|UA?_> z{REs|T!FFaDLJBo_I=S5FXK%N$;+u-u~rQJgCvBTQY<|^1Y}OdIA!G;Q{i*j&^KCi zIpsLSGUEAIxTpm}EIib=36`W~0U4~+Qwr%wJDa>1XZ?ro2|xd7s(DO#HUUw$gK?@K z=ALC)@WsW&P^&Jq83F==50ESU8K5Ez0E$%@Ztl)^4);hhr_&``n-`V=3xFredWRuk zGmULdP+t~AqX_7dFo_yD^PF_E@Tl+D}^Rr_J zuU&)m+YX>9XT?c;LiGLlsh`s$KgP8MtxXFmIK2Ru&uqdD#S%dhj{3J$PySDrhh`PB z`$s$i(OD5DGhGXR7rCmlg5a5~HpT124T%Hyy)~8NZHC_Y+R4|Yb_miFJ#;%go z=F$9QCWlyMd^HwMF|IsIuGh15n$4daZWpgI@cA;K^}vVwF6z_A6J@!8D1njJre29n zGo=)bqvam{b2CL9J*UA2DwA6QWgM~*NL)g``IP~wnwgVm^5hH-Xj#m_;#qs4#0$rU zpN##->vmV)CC>7DhGVy50x^1heM2DR+u@1>Mv)#}nHdnhP^XLL=b&k!$(jVe!(v%u zWScrFv$(5lK5@Eb$=)Og=)HMZQbxy%RQe2grk?#280L!yR7X-fZRa>l1%jntZns)4-XGusb zhU4^ju(>!9k@)wOwK+|oV{MI2L4}Xsn{YEdQT7mdw!ItfI%`bf{I*xx*<0HCyK8AH zH^IGwuy}7IwEv`CiLNtp1O@`)gorQR-^_L8)&R!l(Cibp9^zN6?6KRo>5DpMVG#+$ zZMiWWL#yz#`0(K{IzvL*&$Rg6E+wI4=@y!{%;czrV0yMMHDoQ!cKq-$xdrhR0Mw8JG0TqY5oIw!L9K8eUitV1XiI+^8>bm?2hMQ+}>|K3LEy9z?P`0u4Z5X zSLtW%2KUBM3Wx2;6|BzJ|6~D3`w^=<8LwKL|L!Eae;9+D%z9H+{PXfkg1vOvdiH}P zQqPgJwY#?7WD$eHi#-@dOA#Io%TLq$B^>TImCPW+OgyZ&_4==4vpLhEhLt#I&7{x` z#r_PfPkA32i*LAKiRK+hiP;DdNIvgK2CyQ;f%1;)a{R>x7Ld&sSC9*2i&>B|!$;;0 z$r08eD@o$8Jh4j>Y6U+-(u1#w`MWEMvn=KP(*0~KXPPEcLnlKyeKY(f{!x;%oMMyO z6yJOx5C6f4fsYUIkTVm?U6?&Rm}wwCO}6MrtgqN!sHPH3!z|=jEO;8xvDu&osDYx9 zz$)ACFaZpQB4A??L-5z|0vL~9QUQ~L?p9C05};({^%SK6q==&ZTJERSgATj8yk({U zfO&He0MT5ZQUhzDelNhBfW5Z9e$=}R5HY_h7#snXQ^{L{M(0vueY#~*t0?y>%_ zYelogffwMhUAv2A*OjW(mk|6?6$O@n**ugPFn{OB7hO<)8FicKut{K3Ew18zY-9$4 zUGa3zwI^>#mMc3Kox(N`OR@=@!>glMgh5=XOChSpsxFM_q!a{ne9Sz(fq{L|XFM3I zqJ%5Ek<}P{r14<(G3heHl#D4NX$*oJDl0OGXcY8KvaFj%6r$S*A135^?PdxU4QM^RhF<77yan`=s+4P zI&Ks{0BwwI8}4yKvmPv9=`6p*io$8zdv+rcz7ZBNkj4G_Q;PG6ocTss*h@ecj8v+N zu&T>EX|9NnWKyor&`REh<~-yaZLCj-Kw#DBC_7ec{Pn@pPoDa*ki@#inLspKC7Uo> zVAnXg9nRzER)a85&qpq&w(C#<0HTEmh{Y>xq|D9b)qTzNmL$8;DiaJDkCcN7O%5i# zxvLH|RYPRbZi*P8PUw2FLX}rX!jPh>Y4TmHG~s8)^VLSVJoQM!yEy zv!^4rcdH4d>c7gzLf2EhKoa?urgc%wkd;Qvog&6tKI$m z#L?*-_M7c68q{?iy4Zh5fIOK{3|4DPzsA3%E#}_pQ^~FeL7`Q1AZ(sXjbkz@MsZ*z z#X`u&J3fasYh#ub$mZTGg+e44mPJdXY@e&CXP2a*c<9N)e^2qpk|k>r7S)^yo~m}L z;z5zu7no`Pvq~mpQ+Sd4HIHG{g%R6Pv`A%g5zITQ(+_LwOkiyZ?^p|ll69#_bAhFa zGX6wy5gNMsl10}nAih;dRIXI zJn!rRj*ZJCw@Uk=c*0>Y7T0pEcEg{roS9@1gN9MG2?OzPx{y)oi)n!;Y4inc!}6>K z9jaqSOX&A!Gx=B7z_`>TDh?u%PPIE&=#TU;IJQ?yR77)^e3surKZ=QI(~q!tGl%M( z#kK-ryLn1Zd7E|k)%7U|dZI_JoIlVf=c{ucCOrO-iKdu;(fsXRbfEWfr_Z2?O%0ET z0W~v)C~6>{lqzwf3@$v*Hf?6feMMactd8`7HMO@@W8vNapQ^dfAq~0%k={C`=%4$s zOwdK7VP#}x6$vbM_7?K`zSmX_vGTn2Qi~BXU$eaf_mcrn(B6DSUk z5Td)TF$TC|rvaNB>>KlMK{>f-hJy`-7GegPX01AVG3-UBfBa5jOsk0di{o0UaI&T7 zQZQl)MjN!dU^!0+SbCtw+b!T7PN>OORDan$_9zEuvfB!f@f41UzyFRgbt_rApWg~a zhb!5Vs?pBL~5z(@*-#LN-HctsIOv+B3 z(U~$u=S2_fid9DgAatCs2bdg*YVQdY$};6@j8$fS2SwIT+;VlEQV)G6Gt5o_wY9bK ziXPVCBc)E{-r(W*)Odc%N0a%`Nv7!FTAV8R(18DI#Pl~1Mt{vGN z4x?L`()~r*2W&0tA1a>gr+-@mw!n&^>y1`t8fuNE4Oo7w~Fn1n3#o+wY$&J8(0p5&3z!&jZU0v*sFUvJ0f)nAvK2D$4+=>10 z>jORrYB!(@`2BCn%F3GbUsL3j${iVvPwzW@4F^N&su`90Bp>bWina_PAmwb>rtc?_ zl_C(8ovw_qF-lQ;= zPxFr3&s1Nl_b}?9Yhd9!piNHZG(}FWJN-2Q!(y*txl`;tZl&2-;v^qCtA85=zRu@2 zs3zZ2P#!94k5K&O_gPZ*d@j z+rtju)IpZcE2{6_RJu{GkCi7UEBVL<7jqL^F2sxrIQnuB+s{=Z%2Ub{SS5<0u$bdS zvPaII_M3z&NhriNiHw4O;^_qk#RKQrFJ!_h%T=Zy(1i%O5U{H|X zjzM5RfG%JNu(7q3#aLLDd<8l(xmPpp{Ys%iK^0nKW?&uVoh*;ql)+#s2h z=)K1pI2<+wXASS5&NcgOf=u=Ejdn6|Lzus8#M{k|6w6vvjM~wH~{cQw63aY#}fL)wiE@raXZ;|jeD5*e2s?QPQj$T`~uCADk5)CMifP zEU!`f>mgY5(uU|>$Mf2zra!bc8{J?>3LO7dnn(tbIQNm}?E0gz)M4O~plB$$i=xu5 zKDptgRG!OyqqT-&HM1(&BXo00?WMIZFuE)bKTl<6Tf82BK-2O@lNbIvK>w=c6Q(W{ zOa@}1LEs%8z}Vi|IV%R2EFlOYdDEJ(x=3AbbAvvu$y#=yPPN6NVnswsN;e2m%w>PS zk8^W*o|CyYLURL&EvMEW`Ogl1)muj-pH1!-@O`VXYGxZad2^Z5nKPZkmcGaEkDx#! zml%L^{oc#O-D{7fUvjrr6V)ftWzZeBa6y7H^Gg4#ZcRgrv9CCdcJ8B?+c$IB<{tenf8YyTnES7-$hB3A~%mTc|vE6?m%Y)lP2y=JdSZAW>A)5@iXT1)&TEpZ@~X6mjBGaJ?SzldJUg zXX4l2laW355|l5NjkAi0_#|FvKMpMX;{7BTTnxrZ%Q{%i_LsrPaXTkpk{ZJAxdSeo zj`P}j-q8z~+PbVx%Myntns6%JulL78EezOrliH8M6G-QjHm!P*Mgpj~f(qeXFyr?9OTOI->M%w~Y762k_dG zPr`Pn&I9KgWhNvBm0=|%VV4%MM{O)8_Yyk*^vWa~wb^ZP0ts5Hsddc`e?>zIhu6{d z70<(L=N*|u+U+s7GKRB?Tc!*rCHul1oNQZ7D>TH}6}T2iSaxcI-w)nMIvv{qSEL&f zuxh<6{mvrrIe?Ra4D-7kn!eUi$TZFUl;h;``ft~4`oJ4AKjtj+s4W_&Ze#u53THcT z03_xUF^*pBWj?j!-vzUy*6#+#ALiRonz-fcPVy;-SvU`Y6=#Kv;?tGQmJe7#q^r}O>^}~RjZ|t~8py9_lat&_ zm|_rgORRcMtuN>7KRFCmYTg7H8{&?s*1}0qALZS}#gm3E4qiVwO)&H!;WyZxf7V3* zK%)FDKasJ}23p&*GeKl#P{CVU`uPJPBv*OOs(qG)6!lrr`mdCgq(Wc*pDfNqtEoLP z+qVTW8nVppgllc^qR`_a_!8$hVsz3IH-YCU-#Jsg4w{--H{DcVu*YUMtun+$ris7> z^6*L5&?l(xpnlYLe|Gy_jWNqZ!{p$bB*;-B$009O1xiHmIVC$R`;#a1_rCfd27GAE zt%YUBDkZAa?yQj4HPV7=9kwrUP?DnyIo#UH9->k@v<-A*ny8r|0+sRt835LT9=06x zPA9;pB4U_BiKb?igM!*sgGmX(Y~Yv|M8U{6v$~3PcZb|{)Il3Ex>F0lQoohi?Qt>c z_avRDd@hz&yK>=xlr$}=HztTztUP`4zCBh{)NFTitlw)WbKAp(0#LIGjuP-@6~__~ z+|Q@A5aeR>MISO%B-w4Z1sIKAU2?-ABu|1R z&=zK zrLo9E0qUYUsa~2^-zk4;aZo~S=5IWW|fiC)H=29cm z`@U(E*B9bVxSN*pyugOx9U+gBlji);iXJvs;I{Wo2b zQUm<`f9eO)We=Judg^;H>@=HJ1Yy(h{8mv_MR&T|6`iL-ic5)@$C3!YT1%N)2o@~I zDfLmYO=0c(>7-#FWDJ%%EHq9@Mb&+>pcie&8P{oni821Hq@)xov3~&}QDuH9bz6zl zI2*pc$*51c{5dNkL^Z-g*?UE~toPN_&PQ+l(*gNe)K_nQI6D!F^EZeEKppu5cIjUs@o(x~U z{$pprV}D1(Xh!~bS(#;5)M;5;A@f7FYB_{tz2-717?^T!mjodRzx{}n6Bi!TAF|=t zxCqu4YoXlwLL65b#Ayss>4u|o*acTD+UlReUjj}ElH9LhKu!G2xM#9R!rSeyld&uD zR&sN9308|OpaPIYcPSnWa#rp(6405(Fqn6j<}#F zTIO2wBzYVpi+ZzpIa}@&Y<+#-u!K~JshW{^&G}_bcYrAkv2Fq*=_f{RLR9AU`gnby z7!!B5Yna}h6oHamhCM#aGW`vULdu@t-Hz>E_k=MvdT`9*^lLFjB|beZ@WIDw?LQgR znxB{sJ_6#7$ny)8-tp8stWu~7Px9*ZYtkwiDQuS$GLcA32aa`>-snWfZ3XRX+XjaJ zXt09*)s#kag1tNrXHDjSkA2UYQ5$9Ee}pLXngLuK3%(l43LfMY_IR>HI~Q+hCPJap zVkj229`A}SY4N>=u_XaPpe~`w1g>NaUz|T>HoJCo9OS9;`);9+Qh9K$=Q**eFkYPB zVLHtsZAy&->*5(4s>J$frj-OXiR64S3OxJ3eQNxE(%U8^k$ROSl~TDaI4ga3zft1F zG>mk{)1!~sK!g@Sv-v^p16_Pk;L^^_7a>y{N_(aOB8W#`jLCy)fE5ow2oSev{4tQ( zjvrjWlK-_YQAl{5pU_SKS&!j-F#$f;RiB9JZ>bfJ*L6Gyz*!HPFg+c&fIy=h5oTQ6 zEbLWdu3yERjC#^xtHWnA>1~A`k5^)Q$&YQ2Wah`RN`Cu>YIlxGGFRWa$NaGd2X=L? zQ`NbV+_2^25)uL|Q}vVxt#1csNjy0@Id8uedpcF)vOAT@Mby|Si5KKE&Mk~T)WUig z=`(wI)?4rId{Z}4b_J!RobEN{EF-LXygsa$R-(LC!CzLjYjcUch`@2i;s%Ys0_06zxr0xScGj)7R zkn_h^XVDRKMT6T=0-<08)apB^0<7r+X+;~?PbH_OH^7F;ii2B{J`CF3cqOELO~IdN z7;E(D`*+j{ypTT*E&onIp9|NVDwIgcsp&Ttz@m6#ftL4@B&1l*&xoK;qDL4Q5d;as z_Aulm)}HShs9DI5e@@@Ad;?hVs;Tza5=v8Mf0{lHVvkQG^H7P*ZdcTV%E>R8z0&gz z4S?sOO7XA{tO8SrV)X2`$&frSFfbQo_ovIzMdsIv_(st-7n>$yP9>X?`$1 zj@_o{6P3jWlD!cN?4-L{Y3^|iD#L%5$38(kKX(kT-!qahKTrk~UffqprZE9Q zN?JT|Ajw_Fm_f#ddIrJPmG4D@)a_5q3n%f7gNaB8!6D-P>s@$D$%V7fXg!FVhL)lm za;6u#FWlbeu)a}(h0UaaUC!2Kpe zI~W#$pA{m+r88#!0id-lO}|zI>TK)Eb8~a4rN}8L>sfNv(9Z44q?`ne36$+kv)G+0 zx;^TeFQ2~8)!EmVzdd3v@LebkOk7zZa!gwE zScB4rb_yp^n(wSJ@u&m5?=9xn@+2ewcF(>%6;Nx0%6xCyX{?F%6(qymbU`12uD8x% zUNpr{yWy(}%ET9BovX|y;p#5w7Coh5!=?Pl;^>_Q9-fCdAC~h0YYkk5RtKDQDFaa) zYWFfNp+pQy@oI7t!rv~BA6z0lV!E{%t!3WsXS3>)mWKX*ggJ2Li$F3sWkqIk4NL^nolGW7R;9?g!kt#J5>i!T&jeMEdfqL zQxi-6#tRUeRSh_10ei5_JpCnu(HJ_)bBrRmMLJ44G~%5=zQnNjYis;bb%`mePgW1_mTO~$i zfMQ{plYw3Y(x-O7IZZCAFrLb&s7Im{SVN`Vfqlw1M6?e0(WZdTkCEA`(oo5G4?M2> z?Ck6qdjfuPm+W0+GyD&>9UeKk*zF_`;lo{_r%zX0RIZwl+=~=9zEa=ha1?8|yr{AE zi0tm}K7S8np)2g)J>8y^;*v?|)nKu;4qbaN{GClUlvYrXgrw5y2NK|8g#FD9i&>I@ zu$NGL(;dr3cwoEqOK1rH7FUf8@`54!ufe zE#<(9OVf>y{wb=h6jnp~21M)0RQ3W%G;-|?5A_4r2a6-XEH-=PNZT0{!b;KpZ((hS z@$rsMhuP#0JtqmJ+s$D%mo`0arN%H;hoa}^A4O5&T>~q^y_pam1qb8_&5ObQQ8e4A z4p_5+-|`QwU~ze=!a+_F4b6m8EmDFHg8jYoTz*RuIelW@+L6K{4s@98eYs|jH|SRl z$P~1Hv|z|pFt&8QxSJWK$32tUDZrDiLM^En88GT+i`XBqu&98#*C}>54fx59Eah^l z&SZ!X346DcSF0`j?r@c8`VPH6NK2srFOF@$4{^!B2_g@UHyH}e1sbZM2Mww9U zaLTwC07TJQ;O*rJz3AMY{GCix z(>Gg#z-q&mi%)jnzE%be8;>W$8!-|YTN}qJ(GSGi8ra2)YS7ToRIL>9`azJF`P_Ya zSheo#pUD@mpS@TyuO!<}M8Y-|Q|j1A|CmYNO@Ag)LB}K^P;<$+&j=WzgkyRof{%^k z4p?!yJXCJG4@_U_s>k}MOU+WofVrR)h&SbCE>_u=QW+#npC;r&=Or@XiCQ7ai|IpK(u1v- z)ndD{aJ(vuc^FEym`hJzZoe$oeT>_bvMdK$Ha0bcf-kV%73Rzdqfio$Y6U>qPr_hB z&nMwQ#HLV-myi}v5fzw_QFS~SW+F3)C4|teAdQjo_fXyRLAanYPW!`JZq~FtmjIv4 zsyYgCjG7NhH%jkHW}+SeF?yQF5>s zW9es&ncmPwp#wP%g;Si;^<(Jpix9k1CWoz4o(&!GqsGNVL8~kc#HH}`Sgn?|zHyzW z^t^|go6*f72Lf=E%K@e zJ$;~^-n@!}jX6da0roO3LljDqV?8jnfAkMNLA*b$VJ^p!#vg>_bq6T+1%$Af)qg*L z4EEVxcLb{^wFpw$F@)N0sh>EXJ!HSo=*Q!MQ){>TZsCUatiywjW+K|1>#)W({z~vn zvcnz9G8B- zt{qr=8l9w75;KF2yPAFDUHS2GtYl-`2pcu~7or_XWBstl-@klA0Jx+fFLIkOkkp?R z_CiPkfTRn7J4Yyma*fY%8}IPeo!orN%mA5aFGODE_oM^PXe3`(&ls{aQxU1jKPqt< z3xprk4fJuqGVpKD`UPPMabH9(UC+hVKn(c7Un!K~*NYY z4its|6{mOc6I=i}o#^Sy`Mq&f`8JGtzC2b?H(muv-CICdDCYm#n`E5e;q~fHHOy6u zfh&4}1ZN3BB%y$Tf|9A&KYbgA_G77S`=3F_-%IAe1gG=<>Mom{vaOS?n|;yglFcHK zFLEFwx9~^4KJ_DYincHW*UsR!0((u>D!ldH4{q~ zgx&YIw@)YDEB+LV6sk;;0Rh!EzK>`-f={j9~6?IkpRqf85-4uC~g(5P{xpGKYdss#1KLd`8 z9`vF5M+fSkzFVDr=FEURv+iyTqdmHgnqN!usQ=LW+XYK^OBbDej~`qE#%1%(jy)T= z>_*osTKTvy5%59cGvP?a|9kgw!0EW)LN8MReh8QInFeiUxrF3@uO0Xo1Nw6ha3FU_ z|A$DfP{fy!{QQ4bn`_NT4Gj%Z7NX+&lrsLL(p>{95Ln*JUznAdIbIFW7z?$eKV_nj z<56>ICH!`~g}d01RR?UrWh&2{sm!il_#wYdOBUL`2HI3LLdJD`HtjcDe>ap&8NPd; zQMP4ark_qrOymVa3wj*J2KNyT`MFijm?^rDD$Lr6$lkCaIXd?47rK)w=C4-=<~eNR z;4rt<==tmf4gqmIQbYJ}Z~VV*yLe)7Jw3fDK+NYyoTQ{TrxO$PYpQb+mQ9YKaVyK> zH}sj6RWl>mmHx*h>Jr-W^0F@j`?w{QH@JE66%delGRN>Xc6M|svwyG_zl_KMx0?>^ z@?H-v(fi~{(XR&i|6}W|qpIrKeqlPKL!?o0r!x>LG4q`Q<3rID8I?gr_S?vU>8 zJd@|XpZ7iA8Q)lA_{YWpd#}CboY(cMi!zXHOt3=T5R{?6t!e(LiWnp4k_#P16 zm!Abq;hsDoSrDe7UoV|i;8@sz)Ud{59#4pbQmsI?I`iq2wdmaIu9?-9m|pw61H6ml z2{fMTBe)_(4`(m2AH8!W$@e2Aa{MEYY5XoYz+piCWiC~@VLE?9197V8_T(=qyNBX9 z$h1<8*cG<_B-Q9SXLgL((?lzm2BQ~y?5^UL@4f~!AQcuW7_u9om2qJesaUd zP#qC^iboA$r0N3?&Wq=d_vct_gC zGj>+GAt_XNiY~d`@x<}AVDGvE&xL1;5v23+N&rij*dC^^jHhk0w}a?VWGXMQlf|@H z4XsLr-K~Kq*E8MF-3HQYVZFU@xsHwEsw^yu>{lIV$sGCTF_& zz+*9aOL!c+-o-zb%XdY@?OW3J94JR6?M41OKRulU@b8&hDw=7oGTWo+YJ(vmp&!jo zi0bR(=okiLoWMT+O;FgAP}tvwAjM<%!Tg^a?psBLB3lTu+JqW7aU_vh23A2h4>H)> zr~mdnFQ&V$A==gM0Gg(Avic)~cpd5-#!IdAe{FSNM0{hq7J;l`!A=nf488>fh}h%} zR*(v}PffvA2_*S>m$iLu%FdoVIGkDj`t2L+iyfJQuC4oFS2q)p;>#MjY)sqDN4`eq zz3{d=D-i=l%;jXxNbFcsyJ&=Ipkxf`?~BTn=}}7`QGO+RG&3}WO*d20lOlS~;&qlc zFAw*bGR9Q;7Wp`mAfoDN8{3}iWVmDJ($NJO?}An*%LnC4 zrIw#eV&NoNpJtr~RrNcD+;*0qxxR{iB@5}B`=&brU8Jxeu#7XxH^Da8c)sT_xQBv3 zDeT&trmbFg;Guk3>K|#%^EQMTosJXchNDU>{7YHFNGgs&_3CO|nj|&U+>eZHSwfo3 zA{zb)R8G@R;b+h3Yc>?25>``%uR%&`_&X6+s35j>AxG1AlK{|7fP`? znN;hp(cM#{GR21`kOY(82m&T+_&n)>+akrte0LF6z0RI*i!rTiWbR>qbfDyU{WN9_ z$O%>Ip8p7GH8`snm+97-w-h#shpK*{6b=vx`1^TEJZ^64ap|3H(FsZfHMXxw(oCva zItP^P+mt(#WEt9d#B4pMylhnvFaQ@*XaE}kfrWKoUNCo!WRjtg9I2^L>o1t}QSWwf zv{L)}Zu9)~fzH;{Lz>n>d=;1%X76Xp8pS?b%=Pl>*wWi5iiun@T=W~!VwJ#05sTG% zw=n0gKr~O5wRI3y+Z*58A-s^bv=56wPObuP8b#8xmK4KcG_(=4FF%3_BgqM6i8I<$ z@yJuD-QBs1C10e^HfaNda_fpod{BVEys_Is3XYO$%j_uu3e>3sf;Uz3#p$!%R{nD` zy)!d!f>4P%tY46SR+CQUejNahHa&a++_?%_ve4Cs<4S5&JpO_jf~zNKZ538my>L<` z8da1)&7W74d@&;EdA`14H~P-Isx4O84HWj$W?d;6}u}HQzG1g z^UE29ckpXl7+U50348$;p!ZC@6rkvE5=27GC)^G9d}FO^N?xD=Cq-A z!P$&v+spxrbQ%VZw}zOPDhtV{aiC47|_Ae3T+0x-35Hg(x52+_KNX^#Wj5PY>%>;+MMz2Eb+yy3|>)zt7j%+MZCqV*j)~lFDK} zP99FcapbqHg-ey4ottknF|K%iz>i{%XWh4yI-J3{p5Ku+O?mmmRbw%!+?zL={H+>IV@`p;KQ-gn!j7>PW@PY$3+qe$}pCHES**Y^?I1rwuD5+TTLSo%_nn z&qw9bO-ItZ{EfquXMobRJM>lxEX`9TD)JFCZ^%*8CLpMQTwY#=EAi2+!VYMv@g+}X z@fCfQgA7S|sB?6uj-xoaw507u>cDDCDSpX7NsF28!;HPYyb}=2{FmjTV(e;$A+^YE zSUR-za{4m`?UP%GYPiK4k=pJzkj`^|!bONY0VfO+qytqcKL2y_`5AnLc#fK`d+}%1 zFYS`Vc>U+~&{uwd5A-GJ?)E>*rSfW#>DP4#J;cLKS*GMAg(5_XWq407ZQUSSWi)V5 z+Wki6lQcx{kx^J=h{8f}-$kvLJAaUhK&b*^>K*b?lyk|#TT)g`Y2s4dR0IyUE(<5gbmGwh1}X)MxnizFDjEO}&_I0>-lhE*XID783HcuswM^*5xdt_=i{7jBR8 z-y<_) zX|{T9HjVzCQ{nS3w$~+^C`UHLxFw0!;wiQ%X4BI z`}sLtQ@5GuV%jn^T!s`J)$rkj+*;3eKMuu3MfJfNwcs5tsqKSf^7jLvUJ$rJnU*u9 zoL+a;9l>?BI?w{nk54f#cf@ZzP!J3vsQ|*io7-DFdh6M8{d~NR7Q5VbEp{5JMdVE|lpC1bn;Rn?eFpLs;|a20Fp?fYZ}nJc;*P zqlp2z*^cxjJpxNMOAX&XkscQ+7p7R7xIWf6Y~Akcn8lu-K+q{NX*U#CjyW8Rf&{hA z{61tPH1XBL&nKkUisJC%kBlVl0(ty#ui~cTK7HL8{#>^z%d)Gb{YrpQ`}$3KSL*$q zE)ea4;z6V&BIberYSz%=IYHN32p~?x?!(=;A1Sxzn&g^qL(f&B8(zaf6(elU@YCfx zu&PEz;jzKJOtO%b$<{%G-15HhLBtxM7z>wL%QhbACh>bsr)ne>dN%a(f1qa~*4prs zGXL3N2_RL&z(9((3!*yBt{6qCB?DK9%K!0qyhXrffD+qi)c8?J?l7c4M_0rPUsqA9 znoZ4N#Novs6=GNxn#L9VYjJw6AJNHjijf)gvHT1S^whV}6bFX~=HA|-!l7rL1C91Q zW;jKlC-%3Etn`g@e19C-Bx@=5>qbFu?# zBs;fWyKf4rRLlPsX|eJ!wDO82z%f_Y3;yWp@p07K&~y)Q;$~-OQ{mHPO2wEb=)*`$ zODo^-qbUvoi#w6i-lQA#dypQF##y zgJPS$^(T_saFJTshyp_)%CJzxT+VWwmhpel8Db)+VjN=%ADf=SF{k}$WBbhEL&E_0;7a?+ej{ruo z+b&hSO00X-id9p%V!|$n8FSh z87f3 z!>wL-^nayCW27fvT-P4~BV6l?83bU}V ztXlQ`_m7H(wHIqtwLb@tOp;IU1dvi5f?u-QM*2NIKDY5t?Q@L)mo9oA3ZyK5H9&1H zLBOG?jm+kM-vW)GVC8s%f0#O9JUR&pnyQaUEtt0BUo~m@!E}UhvPeyiuCN4*)fLkC zuSfk`lpr9$#sIt;;HQ2mU^UCEt=;DRc+x{)yE8D4`aD`!T|F84?|C4Pu?iA1=4<8Q zV@A#+AbfDN>al$_*)2d@d+|`bpQba^6vZ{l2=aDr&Ze|eRE!Z zH$Ym9JgwU1?Nx2PFr6X$-?t$e^}-}qB3tO|>&tI%ZpIxxI|qmX#OUQ1iY5D=5*?nT z>l0U&IAq)WfKMAsr#pZlp}XwADOK*gj)wbq1*T_AHAxq1;L!X7Vaea2qpRJGyU2u1 zg>H;^S2Pl`;{D$ZH;fRFb z&q816u>S1*-7`Kfj6%7PAt&zpPsVkI%5e&I4ms1?DCu(PqyR%A-9 zipJ6a>hd34`K8n9!C?OIK`aI?!ioC5^(2gRqQ#YR@5rZ5p9DQUQ&d$7YXxkUeP3-3 zW({J=?M+WToz|`f{SVSB9}Q;Hzh~+%`reR$`|=#JBoy{hxgRZZr3m;C3keA!prVRN zN=p716@tTt8Q_NEuvujG)dOnpL|(T_P>{deM6(wt&Oay!o>r|i94yo~!x^lSr3mVp z8^oX8`ZCnOjZd>Ap*UTQvsA0F>&BEOx?T-Ym0EK*9{Klk7$ZTx6C0eqWIUS+HK^`; z$D{zwipb`1Wo5Nkk1G3R8HM?!MXQ-|8RXC~Ti?VIOO`~ga4yxurQ`Q+7$RcZAgnyOwVe>3ze+Xu^VMc3s>^!|w-7#r zS?iuU6M-`FRbnX66s6vu=l-*)ygV7Npdq{DayxN_?&v38)_pFMPh{9O(=EtrXQWjr z%nnv~C+hH367_$$g5dD*-ypU=7#L@=K%sGRea)nle|rKwMa=!( z*ybg+PJyJQtWR)cmH#0?!S(*prQ;*z!X#e$FNb5(lg)>+a>G$ZWY=|L`Wt7KWg-qu zqBgr-QaDti@TL3f&VhkfNC`|m4gq)iqkb)WoC2p$=Vi_L^UUU4HhbcerW`QKsLIxf z^43c=&>x;E@irIv%H8(mb_6zzr*!r=dKm~T zmcx%i5wM*OR9?tgVd|9UYN!WLa8&sJ4+8l#Vzv zGtgcoOwSeXr678F#)C1?yUj45b*2Nc462K@Pn%~5fQvnnh-VG>3fws2asGEj>iM<< zK($?;(fj%Fn$)Gj#lb;jp*E0(Vt=y0kh!f=@y2M&^rP!f^nSchXmQlF?&U}1_*R3% z>re!(Hcyo17TN+s*+|($7F(PiA6CRL)6w4i%r1SIuT)qui{5jKqBqx*_Uam%@3<(E z5PJGw(m9Yltn<0kU*}0{db6H8SZTCC0=D5}b7XfgN6>B$8Y*JXwLod6)#*Nq$t;5B z`5~#((aAg8tY&ep7ns(u#cr&N`aJ79*`}y&{OMLyN04o%G z3;7CkO?mU_Tt2E8xnNOrfaa#4k-(3m-2IUoKZ^}8jl48Qsmfjo0`{&{t%x1KDBhOw zxz0wE4;D}E-Qn<=3WEf6oYM(J)hb?KboaMBbFapoVy{tkx zhQ!^5q+RwO+W*~S%>RH%lhDgE_d zPE(Gkn@n7emx*4$eUMY`cv-3R9>H<OTP$iI=dZfjB`SD8o8G%vTsrs zuK;n;ZgVCb&MMKjwRTWkJ3lc+uzR%Y-OB#yn|Yp!VNdMnBtKRv;d#t(&%BuRZHP){ z)(UYZ9ooS;>CGt<#t(x2xYW3xRx||#7K28VMIYwko~QoWQcvydGogqbAB`5SH}EC> zGcDCwOfU&nnWKFPt&f=pm~N5iF2GIz+YFbGp&Qu_gK|IeNg-G6x}><>_whSlX5 zjO&j`ESf#K5blG=OHCYL+EJMrH1AvqiK-2Mu+3;Id3HV|>;Im>;~3?Yl|nIFhvlw^ zsLkwmSn3P2dl`QdmtGv1pE>mt&JGhyKx7r_r*-yNbq; zYW3UpT_LUP({C0jxBK+)zCVk_8d;PdcQlKBOV%fX^_m}EI$kfz#u@&z^Yof* z{$W*D~q)L6(|kbf%B{!3`kUo&-*3rtG##0*4?B;ulm86X#1m7DPw7) z1Rg=ozT%#I_{d^77Da{i{XUu*-b&4t&+)vh&GA%h5r5MZN$y998jBnAAeCQ*Twz;9 zvsqb`;oTSm>d*U)40aAqq92X!_QfoR7|*4pBMI+N(+-$@#DofSOa!aXcM7|qm3U{kY z@Mh_KOhV$=zJZSI9h4JzfUfm6>^dmCgFZ_+KVRpqYq0aVO+u=>Ket1-t*nXZz0%)Y zb40GPwre}fd3TK1$^}7wV}cgm>|NC>`Xpc!g*3Bu^^<1*+2>p&oHg)>_%(}rr&{8} z@}QP-twHyza3UTYZ*RPfL?D!c4HC4l2raFOjm1u-YbiZ@k{#aj4wVnjNz4E+o|1)J zNyHZEsP$|$vr>WiZt0Hb_C!sTQ}V@u^{oZ_vrBYe5P$?~$VjP9ihb*0*6; zBs4sgmAvZaWjmlc`lwl4R)mPVVcK7gmNw|DM$M+7#kI29FU>@E)`-KNlYe479mO&| zb(J(Mu@ABaP4}s)obqOlFU#;sbWMv;`wp50Zt+GemvVHy;bUY|YT)})BHZQHgZ><3 zI^SI8eXHF9+_&MuY(?!C8*bn>z?&}9MI(_I+PSHm3N|+%;^5*!xnUbPT1>~0AJ3SG zmLIpGu$XihRZkis7qD8S!WD4Bv`{JY`@V{9JlCHs*#+-~K!&I|)Q#)3_cu#?NIU-~ z%VowEqA>xhzL-uTahA!@57pDl7mBi}dOv$DaGbS9YBcXp{g~HmtzmNLCf9Qq(^Mji zsJY7B+|a0s*qxlIw9@)Pf@^vfRRq>*RbZvn<5f_%8B<8I*`z#(!iNnHOrS4tMbfEt zeM~yK9G9h=)seewPa1qjINK)FE0-o8WGVwekp4W{n>~D9>{}!H7)sq9kC-^3%NYe~ z(^u4cdA?&1_GPA>G|-$M?piQBpvg^EBKLR1!V`$@3Aw(I!=Vu)2X6k!X8*pxesbLQ z{0kH#xF4)=Z-gtrXlGFE!Gj@>e2Spi#@<63>;R~|9c z=@>5@OBQ9*-O%0JES@`iagw9xZtX{-JT7A@jcV@#$nDtF(wO+}TXusI9>?`a{x4bd zGu%}ES!&Rqk}6u&wkZjP6)Ft6?Ld%HR$|drS@YQ|un?e4grgde%ki*MIPFRAt`04+ zb zKh~fvE}g_L16fiGRIoF5&DoVR0(09M$%|HON>R^FYOIO-i*C|y%gvKqSJz=1>@hZZg1z&ivqoC6oAFy z0hys6KQc2^YMB8>S#sK~`tDOLLdl|pFGJ<5$clIa@h~p4p0D))m_#fJW;0kDdwsuW zZzr*!lFimYv#TW&c+GJ&pVWJkeP6FnBRSI!oT+5jbdsa;mV*CY?b&`_REp?W2@Q{( zSrLPO6|H_!5X-#)f)zkhVmu6yi8=d2zcTK5XqIcb{U;4mlr{^DxO2oWyt1GF?TmyX*WR{f^4!t{Bd z48iGPw5a;&k{riSv_sccglpzA-3NQ1E&m4AjZT~`yk4vrl;uor)UfV-X-~dZ7AmcB zf!`OE!mLl~Kc~uN6z&8q-@=>gjb1U#wpk|6e<*!=O%+KfNyUfadLxkiy?K^p;z%?G zo!G=S-_T~J7tb<7q)q?E+ju^V@=FAX!158SNssArWBmU0Xroi*{tpLVILGiYLc1R} z8Np*?W6l}WL4{g1&befm=u;VHxwPXEn$Z7Tb$)O=nj}~*6uCK7G-@R}XaqBlCYJMn zhAo8=v&M4#A}A%mR-$|I9ipHgQ`)3y~%>wS{7aJC>C2@OS*mNnfK`S57k7}Kh>UG_yD0? zn(B$vpoPTif&@D$vTcQ8ruW`dw{1Tztvx@fP`L<+B;;Kj9*e?vp?Ss0KVO$EQOy2x zE!yC(N(sBm8^wPuvxvBJw&3#M+RD;4W@P#bLIe8QkPS@Eqk6p!urK)uELJxPlm@K<3A63#l;`fsM`Q7@jM#ZsGf(V~)8!rAX!1eOQ8nCDnXazJ zIP030jYAf&Eiks;ZV?z3TKK5N;M^GWbEAaLn~T2rk_>l4P(A9KiF?}ZqBnxX=5#QN z0a*19YWf5I#+)8Py~{O9p-A8UvbEN%lb%@po~*U(Gl4}3H>pC3UidxMZf4W;OCveT z&}8sS9C_8Q%1-*QC3f%Bny*d{!BR1M#=qD1EcW&d^gwt~F{}dhoLudgbtH+V9xW}s zHDtCii;E)Lt>mH$`w!!SNhjm34cADLzcALtGrg`y%${7Oc;|D7Oh96>2wbyenC+fT z1)3OPXYgs(VPg(~HOL7$*!yDmH~K5Bo|p~WRQ?J&iS*B~KfJd?Q+Mi?Z)YqruC%Z9 zJDWG1d$@l@OWOifpX=dI$Zx;-zBu&W{fzU% zYuz}7+iO6pB&sR|j=SzKI34G~7Y{41&`1_5D5?X^p{-*`VnRO0V3UA!bKAirW1US~ zB_Gz%7bLWW`r(iC%{{LDesdJg3BkYRn66L5Xoo+6@ckQA znrmmNO{bdF;Xvc}1~^JDYc%rfgE=!D6a{|M`Yq zz9~B?_7{2Cd&}t|M&~tMA6wy~5o-)a#E^jmnjl3A$-=~+b;|O5u7UWojgKqH3#B!F zjCV~}M?F69&(K};i6KWX@lHsR@y&dg$TBIMW4vC?yk^*EZ|Duw@{ly4>%!nPo%SMC z1eki_FMVcnoAtZkCQClQ0SuU;lVeW$-SDVu?P0(NVy{&#X!}z{+6UhTFnCCp{Y}+n z1)Nyb<>pwY`M(S3pJnvVzgjZTK%=b=q9ZB^A0Mw*4rkGbA|W_rG@%3G%xD@xfe!1B z>(t;j`rB#?UG3c(_sYfJ+6K1)cNrnzWJl8QAVegqO zCd7K+C*C|;yorg^N2FCPPCP}ND;8}UH~r_~$H{6q4Bfl^zu$=&ijf@33-=^orR(~R z!Q1#MR#D2Sh`rrN8>Fc=Sqm!c-KYCJRVaDLgfJ9JSgtzH2*&-qJWy`G->B#%hK{+z zbNp0U%yehnqA+=n{GR#CmWwk(f+C+*TH0I$ICjO8v-(JI)Y=~JLFJ(G02nd28AVyDk$!1>Ty{$ll9dsBaPl#tlFV8vK_0)RL~%bK=CHpy z&`@bJ-}Ww^Yec%9oMf7}3S}iizF#9yLfirKskFJMu)%G_Dpf>{SAfpqx>;Ky9kZNl zAb1_>M%pI_omIDkxuahLSN-qxB^3^UzA!dFtKmv>A)&~CoJZA4`gb&e?--cx++@DZ zAm3N&$pHH_!h>rngxIF+sv`w|M_A%#mEqUfEjcTp|9j1NEd$iE^Ydb(I-Y}m3j5uh z>ZXi=;$>I9YFG99s@C(7hxcSw?zGyCfCLfvr0i~EHcg~Q|B zvREfm2|>(R{4fK905O> zl$MUCt2#|l#&CQH0;Np3)0)~uv=5n-G99!2T^j8S6YZH_vB@`4I&;-+$@4T1H_Bg` zx%YP=ovK>z=;h&R_p#vXQRDdd_#`(=JYbhjUe~gJBD%#WrkuG< ze&0NyFNUaRm79X|dGfn9bXFkc#Z#bJI|gpcyMP^8TT2wHg<2HwP1NlAmVW6DeJzs4 z>t^M|Yez)_Db}NG_<#*}OvQK74*gQpa*yngy?ZAF869rheb4}KY?55*B!4j0ba
eXgHXi2yo5dej$;AHYPEP_ldTz*v(fGp); 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%0A67s(~WQuWoHcJ4 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

v3WD(!sWNw%!X#)0bD z95)XAcx?zCBdtQ4K(rzl6f|o=jP6*sL=mHA(X*WR?u!ST!^fl4 z$s&rp?Lu|3$DzASU`FK!u(;7Z={0Ku8+?Kq+WE#o&SEA>KxZBjC68-E?>Q2^ z9sibMvVYRdOteP(#D0B0{-Ol0zf&=XSoH6sk5tIkQz&QKM2(mthtpU+HobGoIhto|*F( z_O+eXy#}zUf-fC;_5UMEG>h$|Vsjbi?v`D1$SI^wpV49)C{ww9Qz}rZtSoMEn;?aQ z#de~_Ph{0tLL0unqDHqkr<9qqTQw(zufaA z8ad$~)|}fwZ{EJ4?gRT!*R~zC{@q@=(Q1^F$;stQBzpexGx3$mLo_HTJYofa;B1ZO#Y9CVb^>4p0mB+^#0TG%$OHMzF z#^L7`e59BXqB0#@5V2`8X4NNI48~+s$e#!A-n^ng?Hf_u7VRl%N(V!2JL5*+r}g9k z!wVkc9ChRy0uSE(qIb+wUVi+Re!P7}wR6}}6n;7I^4Ui!lZszDd}Fs0ubJsg&g$AM z&@g=%DH_Fp^NVa^Mx>aD*-eE9YXh?{UpsDR_o?UfC1O;nz~pL-#O$AxA6t{KR`;_H zZzzeafh_lJJmEbr+!CYV{lu&JD+Iy{0x8+l3!i{Wkuv28pWl_{U3&d)6KvL!U3`AG zp=u5N|F+z;&-e-LtRfLj>zN)ad`%HC94mayDS!h&(D1`ZV9yXbWRwtx`b6a6f50iSx@zW;> zX88GY=VdL=^&;&HYm-9Wyn8E1#LYXlisLF3Dv2$=>Qt{q9^XBvWKn~{M6T>P*^K`y zCF1)&L=t_nEts%F8+74{rIgMgoftzoCP*;{-y{|jpfIP`3p8D28Z<`h)ifwu6l5zP z$W!(S2_iNU2i5@w5WPu%L4HXFV)Wj_`$o8lg2DKu4`yr0JyI|ZCq%l68!aMb{rXY_ zX(?JPnIL5_kj%+rlLwo@JJ|fBb03LP#Wm0gAZ@-!i$b42{NljHk(sFZNn3WhkW(oK zdi0%rjq)dxT|`R!^*ycI^_m{O^JEK=cog;PJIc+ZE6jbBggyk$9N8?s zMg*@Xo8DgH09SLz51}DbmV~~+hw>4nix-*ReR@f;nAMD%3cmq^M2KWVu^3zCJn5^a zw~x_>Us(&=J~FwmF>{WT5$VE(*OY+${zkEnPwpQ*DL(J#kM)Z#oPR|Bd+>o`G07g; z;|n=vFa+X~?W?VM1Qao99v79W5Kssx1QY@a0fm4?;-Q9Qc zT5Z+t{)7EU72G?_Jkx!;`}8?_`L$g_NqjD^VT_3|Oz;UP3BfZMs#S} zrRyF;kA}v5gkkcJuK-=5iic(r{%k6*g13;;W*~M#jFOb24w{aYjYOa$-!5=8Xnr4X zX#d;djF-o@Ty81DUQ|=mU}#CjY+aQe@hf&+fm$|VrapFx=iy??{r)M8*-cNB9@dDa z*2r^0q&T=w9krlOX-o5k#ed=^o?eqz%WFRRSKZ2#_QC-MOT19UgFusg62F>F#Apoa z*)~em+Q%>Hq8M?8Y`=V1w^|zTria5oDpOPah-7EVt&>fv7lqqGY^B7YJ{ol&t#CpA zZBrUMa2_Y0*SO{RZ}j(xCDLS8GUzYaWF<;5-YGsET1#rpbeMEnCcT5IMjtLEflX^P z-wr6EHpiD5w;OtlA0(5)$4&{9Me{=yy5i3k6mH+GMWu5{`P)LH1mg=t^RaETau{57 zh7*~QdI-c_GO_ss3exXOVh~}!ADGDJ75(2HkMJij$Pnv|PQJNPrNC;P79&=0NQ7ww z?{laoa+!oAD~+l=*O%^oL92Bi2L+i#9;s7AI}w!Cza0MI{Nz5%E|qVZtAjB98QHba zl)EWdsB}oOod%fenQuw=c@Oo9{V7v$<}3@j;skuG*{^LbOl669P7?=|_s zof!+dUgV?wBV=SE>e-~wMGcRh<(My)OJBmT>@SKs#BcZ6$>UHO37;f0IgRTwwP{}~ z>96eeZ_Cbv$!J0Ewm#7Frs?s^gbnIvTFYzI+eko#_1oiP)n?Ln3 z5%MA}>L%yEk^1Tr!UQX9(tNx@Eoz{VMf<?Nn8#E%#IEqF|)GC-TR;~INqza2mahvuTSG7r0++SnmCXNc2ESTw8X{ z*HSB=N#bHT-0do{*euOc1sR|U>EWuu76vvuZcqP`VkwncNm1=kBFIyE?qAD-emGY6 zG6Ib}1x{3@eA)qPjj!MAAVfZBwo&f5h}8%Pde!kPDh-PgVuZehOF#AWq%^KQ_7?YS zlqJ0(OQTI(ZV*jSqWSoKBqsDnNS5$3quSPZ6G)Ht4rBKG8dj^J;x{xMHT3v}`c$Mm z=RGu(wV)WUIim#&^V#qA8D@;{COqG(S*8CobT4aQ2R%XiskodpMS<}IFAWZQ5q<#8 zR|SE-fofK9kKQSzgg47H|kN=RQ<#N|Ar};^`0x_)-(hD@8@bCz#6Hd~bXs>@MwqRUBE%UO|}hITD$vHRxJZ z;(LLIo8vw;EglUuRN@SJtZ5HeG|J>*p2#m_$5Kk8lr=u&!&ooqY~!QFoneqW6kI9; zMPs2Clm0v#)YD!Z>6MNDx}rp|qD@mrjLe!^%kMnNa;Nfhb)sK{G8FkTxz?xRzF zc}hI!=qd58eD?*F*U^*YimWK3CcpE*t~R@bx>c^5tD!q?FDXx5Ls>p7LsWh}YvO#c z>5Gij2U%=e)d!>M@=HbZ-Hz^YRb@0xm5#Y+;!~@P-@fB&pLELk+}4{e*~I{J%1^<5 zk)l#()Kb@?N%Z<=>m2PAT|bWD306HvE$|uZ!VU2P3or)?$!XA4hK9xdhWKr!>{7iH zEVW%R=2c~WtQ9d3bvY2FQ#+r3R;{W<@1L|R{>9~;9dp4|z?PhTpj~9>akjWR9$8`s zvRUS)r=yIex0Lp(I0%bCpsFn7up6-7X@Hhthk zQEA5RH>&dA@p89}^i>VYsodV9n~GmsX>dcaY+Jdk?aW}<^asSb^iC&NFXK>yYhJX* z-iyaZFcV;`EuR2hG;7`}FXhJWad188$2DiG_xejV@z7@m`c(#| z$nNQjvGC?atyilNs?zw_1f3hre4pQU-&=$0j|TQ+t`%+kyZBxLWHM;k_KXm5PDQ}E z^_7-RPGDYCR%*?--eTFjt8XBVsgS1q`Rfko1YNa2#cA9dj#T#-#ev)cu1j17P}K+< zyHAM{tnRDSRj}h~Q+4tn_Ze=Y0~+oZ`+DOKXDAtN<$WCw5I2hiVzCB;p2cA2*{soq z^HK+4h7VoIH8`@rGgh@qI<2i(V3qc)iF4l~$lwUmYRaxuGLyr{VAFMfZkk2o55y@Q zrO6waidj{@u558D;^Afv`LYepsd&0f@2vz>|(P;haSH>D4!`gb1;#=%H^bNv$7~$k1muv zfJjgTCG`9lPPX`)*YoW$J6nCk)z}5yxDeJk{o|;t! zufa~fC?d6xZlM}hKl=o;3d1J=BUt^Yy$C@}^cmTW zyx7Hhhb1tOC=63VL=$jFTNI~&xUZu!qI-pAY0p^XG3xN>w#!=NE*=~-%! z!>hFC!!zHUW3_bIbV;s8b+s266YUMMy_2Z~BVxefo~*T!viykf6P>(nc}+kPKb zrIT-oG%49dlCqF&bG+T0Cma4VDDO&ev_2LJ@_G~U9|{p$DcdOgmXzVhlnm2EG*#$Z z4>h&o@q^Avpfs2|ptBfRTk<81@r)&p#dI`Yz7UHxD;1x)u(0|LI-=2$P+FCC6cxo* zE^|JnscMmoQAoJWpT2ZjKj!o=XWg8$Xa|ILj8c1$W2sGaf(afK=31*$s$2E?1i34z z)nXo!&&Pe1oqmUe*E~`FFQ|H2BaGbOI2~^1fS8Mw{#_k&X^WgBeilPER|^5AjLw~6 zCGz`%-QLJMIa&2>A;ZgAt|WQ|U#oM~fb~wNox`X-i|)d7jE!%odpn`=Bn0nf(~dQz z$VTM`L(G`wAx@d83}{cu$LxhM5E9o7I2tJBk!hnkOxE!F5^k(6&)!whL^c`6!#&t$ z(KzD7quylV6PJHv9w=Q)P5NnB4Ue=U#{F^R2^U4k09~iEx3&7NMfI`;Nfejy3( zR_l;DXtJ5(BIY!NO`9=W)aBM<>Uufv4y(*|x=~EALwr>g`EM%QBQ3ECq)eibuxoWX_X8PhW5=`qSk`eWSBnLL+tOYK-hze6 z!~JarZk^~9E#?lwN95^03!jrG06w=?w6zfVYNaR8@(f)ekFqz_Zcmx-A~w# z+c+?Lac9PDc2hc(LJJY(aSLp?O`9K8)UN^={;eF_UWJ-DW8 zNyYEXi7g(k(2C6dWZz!xn0q=|b6AJtjE1~C*hsyFjONxRra}&VQvZrA6!_AZkH0ki zQt>wQachthMpGv8;O9MS{oqbOtImmKIvlqwp=UtRTwhZqJ`Q0yL;J^Gt`TqY>F=`@ z-Zd=7H=XY&1>a7)ZjNS3GN5TdQY_}XLJ*F*8Y)LsBd|BSvmU`w6H^O)DXyS1lmb5JwwkS=~;?w5Os8o zgqT(+CEzclKb(>KK)@2nvtVnTB}ZyOU%*ev$jzG3aR5U}B4dZ6QYCi(s~+({XcWH) zjDthzH(779LeX|#&&_K^Z&5&IenU=6@x*MrHK}`zZ}5SugOiKPGL(SFjodp45(%9B z_3K_5ndK&Hv6d1LDZPo~*czJJFp1J>dw?o}$?A(N7{l)SQkIsBy`W!1c{N*|*|?d| z>>gdV42tpJQk^b**QXId)xKyVZ41EwY`IabRAP)f-%=f2L^pHW>`fKQRs;r zj)g-h(zYC00kzBVCYO@i=(a!Z5q4Z{xVUU*u1CfsKUjz7yB10=7rY7TjpN^>2+SyL zp`Dje3=;}i{Wfwq8tZJ?0PL~RjD-Fy_;3Yd%Fo(K7s9dU{HVC8Wc&AQ$9p?%3bS2% z)cz~4x`}B9cbzSmG#Wpd8F7{iRlS4)j&JRW4PztHhURflPa+;ku#bR*~+c3z~U4)`2CGm5H)fq^pX_>d+5j9cPq=k|ECvy0w zcE8}UCLACNz)Bj;h6kcZRt*A3X}Y{+reE;vv4_%moHyXp*aWgDu^7qZGoAXl6q&e? z&9it^wTY9ow9B_Qxdv zNA`l$YK1az^ju;jYj#Viqk5BqBQoe|hnUew=E-uzLvMlKlyV2qY>+)I&xe}ei?Anp&N9UuQ4Ys=9+K3e8xM`g+S9eP%B1HYX(Aw_@D3zU z3S`{^AwzRzS2E#6ONo4Pp7KC=uAxN4Il(Y$d(G1b6AZtoZ}y!UzeQt+l|0hFv$UgUar)3m4tx^GeWwuH6EqU#SpC?oT{Rj7vsG!_ zT5wz69^1WMoRg^CNRN#jP!$d%&Rtjs9FYiIPv+(DU?l0KqDURz=A$8v=zl|^&TqY- z5q(G^B9W^0m!a{QFk|)j-1|LAkp0bUM5Leb3yC6slnYijhj*hQ9+K8%H*Wn5 zvfYF3JSPedyFii+6W>ZTR;EpLCml>E3N|w{s$m<6XpuR@>$(K@_-s24k?CIBudeF( zd`i=!Uk=fQF@x|N1bqzS>;Ls7RQxM{v2t}%fhC&Ui+O%5h;E?<4pHfmf3FMrd9?WB z(fj!|{+-WVJ+68@IupTZNn&q9_Q&vpuf@5vKhc!;)Af)@gW7*~#QYsXeqJ--_ED|I z!2L1$0{^rWX}kJewLuB03V)Q_2i+n!-?l?gyIyB3fz)z7tRFHT8C-7Us>6J;+j5Of z8RH0y0Pi?MT6JEOExDY#{x0$5qr`OO_k3lUAYHu^U*P?Gi*YI>SUCfW@uP6OdXbO^ znX+n%)Zaqmj(N7et=XO%$%}=*?DDdC!I7hP2#uQLWbXEyrO6_iQBn-^&o5<&;hYL#YlP7$} zG@w-3C`q@eNZ|K=6h*`G2__qyP+H(ezm*by=^TTB61W+$+30gQ^-X@LqE9~XgS-EORv|0T##)IlUG4N2oNCrt6&5N{ z5=k<%Kxn%hN-1d~Q648?h~dT*iPN8t5gWv(%#%bTE2}p8^OMui&VaYR^*(@n$)Mq) zwcCQ=#2jcJImAAdfwzCF7n}YBKb2A&2H7`d@wFPc>LeZ+FmSh!w~F#ZFL%f z&P@Hyk=IEOy(%TqOR22QT$~kqg^gMZnT=Zxt*%p^kEK?gT$h=!7kcrt^WfK_*b9NF zuo(1GkEUmSR)s(#o9C;a-;?+Swhm?);yWdkC zruSGDOzIX>YSbdODZ~D}@Wpq9}&m5ar&!37hrfob6Hy9Hsr3x%1v= zQ4i!R#LM;dSQ5@I+32Mquqm%XH~)=e{<1>xgdqZdDJ_a^Aysyz!?58}Gdz^Et1nyb ztnd{iIPllox~bS1>GbJn5X?v^p-F*oeZf3^t%+6N!csbV0=M$YNQyk(JALhQ+OucX zC~o#OZ*Q`HnfJ@Hnnfi06{&{YjSr9f=9ja_@w9rdI(Td$L24lakT%SH!&$iA;Mx-~VU1F8ndvDdzs}_B0 zYah~5gH)zHUHsLcj_5CayC?fFb^e>_2E=d5A0YXKdTw@*%Kl26v`S^dG5_%8fynYU zNG#|*;ijE*ke+zp>b0LPUchh2j8=C@Fh;l8Ma3E!vfBOz>`p3RR3CtD62$t78XP#k68m9Q=q{$9#x!S>R^Ld+#z{GEr;N`Je>V*g5 zf~~O20giYjj7Wh04sawREU)^nW?qm8c}(ezvyRGljCH3A44XigbFSq;ObXC{nZpb{VVMhTFTf9T;2v1_cxI zp~QGJ^6U9R@4vV;$|$nK35yh0^SK> zxLd`!eLXVPm&TU0vG#&G?ZL)P`YIUex*R*HoRm@3$=;WK8Qa-A9 zm^7&LeMKWZY5)ksO2>U54M1xVq+R*#_-h?lvi^0p#0;PFcfSLMM4 zps9v4<_!20J8`NG*~2q*s=_E7W$UL!%Xu?c+hw;jx5^x0qHKbKfjhdX3`DPV$x~WA z-WcEzs#mYjhfR0D$k*pg7hz<{9iTG86+ZzdofIXyxXx(o+jH9=SW2Ut$;g+Nqs4V7 zmwi8tQsuL68T)0H1Rk#wg%lv0JNf8e$w#qig>qK*5;KDj`N;_45iRW2--8A10w!N8 z)VY*E5+5|I28*&8yu~mb9xh=6NEfm^55IC#&O#$!kCSDl-)-yrd_!)_M0vW;`bRi0 z4c+m(@J(NAu}9{%LUV9BoXo>W zyeN|XuTdKDD=CUu*i>J5G+gb0f?h~uz1!BVAFJ^q_!Z8AH8&f>f+iUrJ=o8m{A`(O zXiL?x`pP4Oh*k3u^|QqdM;jd=kDBZ@lGn(5!T_Y?3e8~&^hvW0uQz{K{JD-EV$@C8 zLW>Q!tf*m9MRdsJk}0Df3_qgbufYDI-9mZ%SfO%MOGw zdEE>iE+5~bFBWvY#UD;3<+`dIe{X_^d4EQh!i4fK zHp%JGX3b?kjhyE2kCg$nsRO`t<(m>I0+Z6i~-&Iw&@LC_>Pd=rephHqY_T-uU zwj_e=V`62O>tBA7PC#ESf%P_(y6mEmvf@jp9npBM$eT3i=bFvD-|@5Nf|;?Ht&W66 zqa4v*9_HfTB349)`SC*c*5)N3qo(RfEu1UezYX#scpOx#G@xmw8D~u zVsgB={**6(GOUo(68dL6m><9jO9X4}7!DI226$?2ZNg*3Auy;1wBo?z~-6Q6% z=YS&xiT3vf$nv?rqII}>QGrX;qKoNT@4LUTNZil|y{iJQPkl~;;YunqCpq}FtnIL{ z6(6-+*x*1@If2>G$ZN~ld1e|4=VM&d(b0>c z2tNn>kkLe~O-qbq*V*TW?RB{HZo@bDy@Su!-KBS1v@e~@)oz!WIC7%3kt1}P=_U~v z!B7#RXU(haz=^orqUbc0|2(4`3n_km^z#`PViM|wZu-R10Xc9XxRHJIzV#=x%=hhC ze2C3@zECcc9j6Ft4=g`8aB?_nMKI&!rCg;1iC(iVC|8pfN+@JNmQVqx3k^4t8#v*; z>|)04yvI#78xZv%Hy1F-Eez1}()zvh{^&G&OQr2!@OXC*_R*?W0%Hd})}4RWuE&#k z5OP`E$q|_J#|4$r|3#qi7r^sp6o~?SSr-mvf9-wZ3lo1YL699pNMS}PNTbVd&P-4* z#%`_^-(4h}DRT;RBE{u?b;hLASDa;|$6Fli7;r;T+N`p~>dD7-EtMnVmMffrnV70} zg(*`t&54Z1u>6cm%y{-bu=~4(Sh7x_Y%h)52R_{d1Vu?Ko)_$SbgQ=I{sk<36ANSa zY=Hq9ZN4;N$lq_@LYZw8Kj7*$i` zuAAr=`?-1n+b#P19P|B9W@|{LqsSDt`Ni3njfUcAqdi)*fjYY_{EV9k2PM<@pec+T zA6a$##Zd|LbS~xAPK7~Qwla+yPyXSdpmM|v#SuH7(u5Zd zm-GF_>nNhdC8%Y)J#B@54?4y{G z{N%e1w|UysqqQ0xndC6x8x^|j^U18kZM}dG*vu2L1IA_GBGt89f8dTR_X1?oMJuck z1_Sx16sfNv;?vbkS}v;wJN5Lc9*%y2{~Zr(L@l&>=6CJ1YKB`|z?Us*lcP?H&6qTJXc`9TBa&)8O|Bjd-qck!=m3&XlzI-`#$BTZSSk?e$o>H>n{rx z8nHS$I;G!hjc#9`oSD`BGA)RIm!26s?r!e#Zj6%qo{@@MAxzAO@@VPw;r3zk9RgZ> zWvd0zXY>2aNA6^pOd5&!mAV2$3367!H!`i0#NM$^=Nj?KHIw&QlCa6Y~O5+ z1`Q~iobP-CQj8nD(>dcLRuzNM30YfXZ2nBOT}<8~G;zlL#k893Y@EWTV2bElU|3h2 zR=pR0y8a~8Qm8L$QIV1O`1%Q8Nop>)?0>4t>I#-qEkKB#^Pg$Wq$9MOx!e|FC`QJ5 z=H0kgDVDWNdJDlS-x71MYmJs^QV0`0Y z5icy_KKi=19}$`fTBu~INd0Nmc(T&XPZ&nQ1pkplLJtcLa@+AeUe3#7PpV9xnf5=c zha=zG#i2WT52SM0Th;}4e7awQQ9{Cvvcw{i8M{r>#Z zh2pr~!@3&|#;#@q_s;we?k=&pAt@1++gByRu9r#b>WOH56v+7tV%G6F0poJ523o)c z^P>P*y+Q?NOHTxrCeZk$fj$G7L`)$V1hhqB3ee>R7E2xnfmubEHEXe|1@V>#G!6U>m6)J9=fmPdOT-^~1b7CY3zC zlgsTq(vOdQh#m|c-UtX7mEM)J4}uOshHPBIQVOJc33`&uQl(O{2WV2bm7sgLApL1g zvd{M7rc0A`(PR4;)3bh1nQ!`CKSnGpaGVQgyh90BoR_H;{2b!h1WD5Dvq_ikG{s-o zGH_oLNSxjlvu8>@(WxTP85)(+FTFRN9^ewcts_vr#;3Dr)MFOh9?e*b+3R$co`r^H zO(&N-?mn52rYXEEf1zQrF2SJHy>BXx`6=$WLq!bf$nEtS*563^n@B3o&QmIZlp;E# zO_jW-a5-=cp$gTaQ<(iXS0hFJ8K(^rzft3sfLTu;lS_YJY%1H^cUoh+aepoWnYZVZ z^9Aqv{o#ryB);Z92Ic0}d>%-SS-T8M!#b$(_gI-TA}B4sk`m@f>vQTlFr-Ysd`T2j zFd)YzGuf+nU#o2IPuCxiMR^w_s6MJfAigiHz2V9I>g*k~M;2XsjMs(q4=vW^JmwL# z;u+ukDO_CV@nR^9@%R&-RRuNP=VBix0AsGn_^3-re_)z_bPjbAmf2F)omRE`1;4q& za|A3&Pi4x9e(0Ma?{d2pILyY=o0l8fOVF~zH$8SecVdx@Ltw+rI$3yV{9_z%p5KX+ z%V{^RZOb=Pz|Yt7^^s{Toh4KmSb96Zg1z_zvR;taLH1O3x!xTD*>CWJA+9olY?iKL zgJ|q@cCh3ku;0iO>N8Y7q5jwcG`aUXGBu)N=KMcUo4x*E|M`76%|41!z)8@YcVxOQ zFmfAeX!nuI@Q!JkeZZhlf8(@643h{mTEuzPL4?F!cQM5hI*yRQRF_(&BYS@U6)g)3 zj&!#6W6{Q|IK0kp#zkhZi}MF~-|RtV%XL@#e&Gd~g#Xvs-@5cl-l8Q^8T(Xd2HYDS zX+k_d-d=5QpAviAb2@E#;{a-k61gkR`Y^R5x_95vi}ZP%Y9v3hU*R0C#%#uO(ajvy zAPoxuJ~d&qmzpfSo|*G3{q`MBlq)G7k=iM zLoXw)4)IN0ANlA#tKRRRn8ZfJEs;pacqyJ1f|+X1#JG30RD)_ zu3RaOa+B=CIWC9R){|Cq>hd0UL3u4D~*0rX5l^0BtOcXUf$m%P-zI4rZ*_xBlWsG7_4&f0~m!&2xeZg z+mY_N{6JHGJ#tI6JDh09#ug=H?@2TG0_22HRHZWBWyZcQQ8hAO49%qGzf$QjG8T`X|8|L79A-diu&8l!mDtMubmTNz*ZGyMDP`K!SJ9TkULc zkhU7M8vH2;==dH2nA7EWmIjyKn{$gJn?{9l9!)-%_!$DVJCYd&28LFrnX$okC8g1B zO`3?`J6E&bOzC=eUF$XylRp1^tqlQkx=2PsCKXo?|HD5njOGii>R$^h_v#OGmr5iI z@GVq-ECnKjRE_7B%mmM8-UfRDaCdv`k1ohr`W)8|DETr*v8efK-Aq6xp==C)Il(X* z|L)SDUJB_J!ei%NJu~uXJd!Fz?9Ewk^<+r=ak1U`4A@5HjBki^g6m5AtKVc$5eANo zsFW6YLSa9JpRu8kHhaRGIu>(u8||LUkl zMBs02bveo>fH4__8R|CM%Tv><9jZ@S!1q}A6=wZ7L>9ky+>pG7!u86vVQ@!U5J6Uo z^6DxLhC}Ql)5_;Znb?0HoNBqTvQTq00|RmN^Yg5u&uf^toAsa_g`VO(?^E<~I^nJ5 zQXJC7GUYJ|GU^;w9XnNDi-bUJf2!|Spl8g{Dlc?Muu`8G;$|ghS}}*|`V;IgSJL{smq8giPBssO?=zi7mYrDboE^YE8GYrRg( z{p7NhQuTfOd)XFOyzIEWXyvL6BBGRBAT`xS%U>3uoY0Y?Uq(cKQP4&F$RReqyIwqb zyh6WldHllX^omcRkdlTuL73m+4OYfw{SF;5M0w-kY>qi5sNL|8TXwqRLI6{2Q_hCy zS5c2yNmT{~Z!;jLC*6R1M{3Dz&rPH%&Pb!ZlGeLG9cBXicg4_nAC3dEzU0S;g7iie zvE1GEuvS0HjEhft?s87OL!kI;e(Z2E9gLcWVZQET2;`IV>!V}+4wMqR#U$}^m!H5| zvtyuM2Xp1fB~b~#9}=`fu+zu8k5CXG0igYu(a_Mq)=K$&cOo%9K2Ayxti8G%PLjAy zp#CWx&2dvKir89`7`L9eZgJAE{Q|y)=^s6^|Csg?X&%e<^Bj!mh_;6tlE2eW;-wM0 zCQI(auhN?4hm6=}u;8KB_7zkhpVxg{S=ZG14v(^Bj2Ypw=}UP>Ivxt?Monhd+~6;*2U}q{w0@3qr>og783J}Ku-@b>xirho#=67V8<&$1 z(;!n1dr~A{C5h1!Dp-Trmb(qz3^pewzLt-uX>$(V$F&xxoP-i7X#(h`!p}?7!^KOx zw*p$6zQOZ=4JcO`FceDq7U{2eIAsCbaI~OW5$Fa~Xcco37%$Umk;-+mQdQXn>gn!+ zs}s1jVY-Amvk8es^1_JA^W=la6d=%Ko%7kN-0{+n(kTbP>F9c;?{J|;zdzH9_qSwv zqge$kEP1TRA2*kY7?AN8ye&1;Vyy8PC4K3ipIchEk^?RH-LPhd%DMd-Ep}vEA4*mh zy|?X_CFio_^Jx8;^3S10%LB#FRm+h(XBDaF)3=2r%K-m}s%tk*WRNp#DpesQ6|s(J z#x@aYtyH&*qo==eLyu>x)GonSR;S5g6=_#$AgR`$G8G)qx^zk-WZ}|59^k+IC<{BVRckw zaBA_AKxl_*LMxjtD#1~V+z2SbFVo#1c@;>8Sek7tMt8;G7O!Bj zRJ7mP7BsoWa;Q?Q|Ca1fZZwN@?U=1~hbzd1fRWPgV_9m(ZPW^y-{l@P!jAiajB zRIK}7GjWB%-cFi~c7w&)c|mF7PS>#AolFTwp2pPnKnc#wi&%W*u`DZQvX;u$Q#}-< zdD~krxPJCmO$_*ZEVKW)$i-6Sx8EGY?4-vh+YMJ)lR!?ON6M6!V~c;)sa6snkQ9tO z?lA*1xku-20gDcr6kTgEEWdo=GCBocVpXeB4M-UykT<6MR_v&fVs*q;ky7kP#-sB5 zYn>r#5=+#|-^lNFGRDaF&qq4Lvk>mH7Q20O+TfK67M!y-tM%{6a{!+E4l{2V8O-l? zs`k|W?tjXyfE_5Kayz5J*XjH zgS#6dKMKYXvqtB`GrMCjFE~YNcW~)`rPEiUMWbM^)-q}1oKH{JnG6XpRC}}?%`giu z$)}Nt`|JM+LA1O(o)cG$(OS%Tlg1^)k7l0jAqwx-U?=i+xqz#1LM53*BORuL;{->x z6Ubke3!N%?fM$^dL5{(vWkH2>ccrd>fd)~fo^tI62Ej*ls^URIp0BmbTe6s*$bfH!YByBmy7C+0v_&}YE;ljgBtaDv7-WVZL$%X0Kfz+)5<1Cps^ zYJ$;VjHx5Wq*43FC0vndFGF}oR=?Bx(9e*T5i$)Y$t>AO+>gg0XX*IWb%8O+($i4n zoI^77fT09Rw7af)B2$#WVrQ@Zo}}%%5bNE)@m1$AzOolag8|wc=OD#<-l~ac3ztJPhJLsG3=(PPp9`& zp9uHsfr!fN?1ve4W%L$Cevv|3EIy$5YE}}RCyRA zl>xX99;_Y~f5R(;@;-|~hx9LaI2r|77lRFi%;p6ge`le|Xm(<8^|Em7P8o+I8v1`w zRlbs4MiW`QaB`T?zlvy)@J?>~L4n~yXw#~e=0fcWu1F;=PQ~lqQ1d0m0|h!s_$M70 zSq{f5hpk>HqGbairUBp<7I2k^{-8m86D;f-zE*Fh1 zTeqkMG`&9fm58^>^-_4pi+)l3QfJzNn|=OStkr%n19SBFu*ZUfBMb4HT;T_RKn0}|KS)Hmv79I*`z^ua(6Aq;D+geJNP>L5?@T&VVH(cLW ze|f&|tsJ1v4Wbcju$ns@!@Ky&g|3r2dz&K>A}&|v z`6`=l`r+ZBWV3vrjBwjPDPd?d9tT>$si26Wv|_cR36T{ZGc55T+Ux1|6QkpH-z+e1 zjl+?|K5S4ak!Lj?_)J75mqd=UN2e9yGs|<`$XYWp=L|xQQx#4V{zQ3$B~Mi3OocqP zgdWQIZA64ZukVl4 zai;7?9d56LPUi7q@KkSyF)Vd*S@eQWIFv47y&iARuJvgpW52W>3FXqr!TO_#GPf^b z-pP^xkrD*($7uDIoaFO_}Y(n$(=vn`fSPl6BopS*hdBr$(uWi>0A!*ZE4e?(cqj9( zxExBPYWjZqH=Ydh<`$<&I(eE1_e{X+e)Kf3MTvy}6IdEoJ;~29OTw6mEFP+T+iwav z(0-XIItkvdkMZL<4?NUg^IKmULxOOcDk>^Ewd-HzH($=zcpR%yejp!wu13E#4hs1l z85y~Bua*x6wlTkhRuHvxb9q70%B!j!ESM(T{bvVn%^=!h1JX_%n2VUJ?gH~i)ecWr zZs+|drPg<1t*Eplei@_)Y?6F_E}hdZ7a!qjg|8o70I7Ex_yafwyFW?9v_9XlIt{&2 z=(SV+ToPl%K2v|5W!v1a{#oGU3AFfG7vJF@NyOgN=lqgep=a4pa;*(6H+y>S^(lCO zVxWtP;TD`#@8g}Q;`*4-Zj4Q_LY-d0-QC?I9C{@s5a;QUV75||W$_u=LZUkY;_Oi? zD^T<~Ewja$$>Z8Ye}ze7PzN_#|Lf4{QhgOJg2eZx*&xY@be0meGkgKxRU;nriR^}Q zME04+MQG+tm>C%4udnl z`J9+UzkL{a|0-7Rem0QVJ1T~I<@ee!BCQ~O(Ng~Zh+mZ=pX~RxtYQ5}6DZ}Zbc+P3 zga5j;!{&nvznSj{%(>01K{!gGM8~of(1)CyUl%LS zb^x@Fd4RHdgJ|LR0~(*v;FFN?17J>=L?Qwm>8y+c4Qb#5b|SOqCa8JMv#Z>+lT=u82FX|WxDxbPgFeyeer!yhm4yOu0rX!eFJvkj{z_oYdfu)TC z1iHX-)iPlKE!~a7=5+uC)Fcpo`bVO%81#ZBsa2c)y;c^YpJG-FBOtm4FTuXxLRNd3 zjb%{CrWtxxh?1bp!v374Q_2r|LpdZ({<`kWlRRx#b(*Q0*Rl|33O zFhT4DWb`P~tVvNA8k;q!pZFjh&Wz<^%q^Pvx-;;rss2R)X7C^9!6T^c)czjriHYc2 zP&s~kfTGy;-fK@FO#cYvEBod&8L#y1;S^NyPyz+Iw7i40CQ#xqBKH$XMIBGTe=~Z_ z68cH`xL0ZffP{AQ~RddDvC_VOU%K+arN~6 z=4C-pj++W(ITT1((HQ)6G)h@&%&IcwqI`gu3MItgzd#-~WxY@x{z3Ox`22ily~$Rs z1>Xd_xgPz(PI!2^sRW!KhsfZJ=Kp;^(mz*xGnPs`5LXbmjQ?g0{ufQ<|M(H*9_5kD zJ1T^4aW3qiKp*gs{*T}Jr$q4|JLCRwqJpReB;lRM+W)mV{{Q+|Alsk{@J^?A830xkkZqp6%ISg=%#*r}8t9XIXY`$~)Ycz=c$jl&|o zD*JG@a!|uG5QZ8E6xR}fep)dA^p$}+;#F+}blD$?WqCYX268!4j!&jmBCV^f&7)Gt zM!8>Uw3V647eg041VTg^@Ll44+a(G)vYDUjc7RFT6p#++x7CBf1G!MyX<6z#M(B>u6PWDQ)Thytto; zKM5BBJYtuVdHUrx_nI!P$1FCWqm66{q)rzAA`$tR4J8Cq%Kwsdb93XrRs|2gdjR?b zusHw+DCp7i8bB4Sw#%%Zw}*t27q9A%C>1L_kJn4_5- z3}ab58ideC_wR2nz!lR@N$iiNmjMlNq2(Ma9TJpfR9J0=`8)zSHvZslq8I@9bo~=M zbpg71+(3Re9m|;8U?Bt&5QSVu(mxt@Bo;$4a64Yw5LMHdjG=)Jp44prHui36M@I)| z2xe~rg-oCJWGsMjI&s-`89`4!f{^_~pmfr+Nzrgs)!-{r$d^i7|nd9RbKiR_HcD3hIwW z2CHSCh+v23-6+4{6FX!VW0(6ycJsc`K-7^oi+_gs`7-=0lB)6l9JSxz{v7t}ioi3b z(X2DsE;3(jcC0Ej)gjNd?wu`DnE@IFu)E{>es4u=t!87m(y8CF-0)|4exT+M3xP)f zj+~0_dl&cg(N(}K&E@^oqZ}CPmws1Bp;e2x>>2qW5eW(N=oN-P(WUt}ZvbFP_yIIZ z>G}CNbENQ!H{);MwnkhP$)+d#e(z&LqmahX>hk65!G&YCnx)Qb2a{p9=;%F`t9}ym zCw`Ysru_m;B*Jnz12$^Wf(4r;e$JI9|EEw$1qwEo6ZvT_-xB0n`E}rtr z(3!E@_l2S6e;cTCJyEYWjSF)GfLugfyCmw~522ztQ>O)^wT&SIXWxkoHfvnA9?{|7`bEXw-l_wtw;cgLx$+H5~KUh@j3J zV1ak&8$NgypY{J@@2jHXY?n0?oZvx&y99T44bXUy;1Dd(NC-|h?iSo31a}CU;1Vpj zd*kljjZNp@`*F) z)f1W2PX<4ZItj9#PP{b0hr`F&L{lLjo|o54n`cgls;gcXe;l55F;Xt_yc~93IJ>zK z?&9r!hF$INM0)=C5o81Jq7cWSl5h}^tf$`)>2n(luA2DT7e`e+GI8b6Q&1XbgPK3| zPa8g(7E)5>K}K>k9&eS(+M~F-lS)XX<2lQAjG|dr@1bBuipSFB0uLpz;*YPOLep zIGm`CM?O|bvoU;aTR)mBY5K7ThlT#rbcqF-jwvN2C7;7Q7u87qGYS^zol;X0t|Zv^ z6WnlW+Ql3BQXqh^n<^7C1j1#6)K>v4o^?1Kja@7$Rh4VxK?f@T9f`+}g7(FXh`Q*X zJQ%*&%UrSE#}Ts5o?`cyUYq|$Oxz!5hJSd7|2SGPUV6h zny(@laPWlNB_~_v2Z3RYSY85`XLo46TJKL5RK4iFlq-ueAB3CeXi=aX6vPilduP z5SFIS5_a9e&D_JUm)th=bG3>`kx_>21jK1wt*3TUG4(OL6P~(2Bj+;jM#B3^3I0*D z7AQ&G=D%#%=G|~d-T7j%cezZrvTPl0QyA+lNq~F#_h0kj*Wwc0!@Je^F9ge+mYP6f z%u?W|2Nq{!UC+!``#FwE(#%4PT$QuAU%t@KL-BNBX*jf#2L1 zfJ+K+r^(G;MS&>Eh6`T=%1(YE`zHxd&J1s_p%r&OnuoVP#^Cu!jidy}G2W?mdv#rJ zWuB_bjTzTkgp>r?|AM=h?%PUoe}>`p4%O$+FXphT$nKhsSKC@DI1qq&I7Zduy1!}P z+!X>cby?{=9x{TQ=7?Z@{M5)#-*NXa0$ukuHfZaDQFzFYWWQnqOzv!DHMs6t zOz+y(L;{g^8mLKiO#kgYaf|Rey%7U_*k@5wke(!6s9?7czu)4hx?(lKrG`x$={^Sg z5dOSE@b&(Y*1P3RI1j6+pKA_^JciQ_Xt%Nz0Y7ZUs;X&EO7;DyZRrQzR)|ucX~w0_ zj3KchIj8917Jjs8tx)4G*!;9S1 zv(z~L==}VAP0hPAMZcPFUEbJWX>O+q?%E>%kTLhywga>EALy-iRvVDPya zMTD7=kR-g={2jis8~rek;XFl@ zE8Ua}5J3^GFW8j>dDFw$88_@@I;)9ujSpi09_34%ozVW{&gWP8vS1ouOwAwO@QFX zgP=bzqnyM{qeMCNbA$0iyRTPmxY=`V;0uI!e!EF}X$y0_6mCm}sZSfB5prx*xRvA> zau6gzE0)iB)N!Dt545f>n+lZSB4~jW=3Pk=Aa9H3_z#KtTxOc@JHQ}rDmIuDt$D0| ziCKJ{Jo-+!e06j}B=QS6#|D(g+91?dY(ljpp-SDa?x~GxU&IF@8znLVaC=0{&?QtklHc4C`VI%#%Z9wD zkScbu5}LGhOo@PYcx%|O`3~xL{6GjNB~m;NkIpMfTq|ncg7qx(iU1J%z|%ie-QRqx zn-QV8-&`CC4ju}Azw>YH0ikcPn7pz81ngZ?Po8ya_~E3)_{#<8w=gDM4+GC9Tj16g zh?Wd(Zt~b0m!^z#BMZbeui$YeKoeiylvXld7DAB@Zoruh#a$+o-Z(hTPq^w*nWb~E z;6zqNKGM^oe7#H`fc9JE6Pl79c@Q%ScL;F`wF?cJS{ailu>fL=x7P# zpmll4@6CVg|Dp1Sw}U3sF+jdHEEUGL+BZT2`5_Lt8F5N zR{TAPc z#LcNDa~&yE;-MQR2OBU-E_q*bTFbYOLc@cY-Py1+G^h@TzckC^g!(W_u6Jyw38c`O$8~Pv8Kq^gs z?PB}SVjH6UE7xvL6Ztn4oX)w)-Sly~dL20l(D|YJ1b%xNgE;ZP8zk4i%#t7=?8sn2Wx&er=|r^Z5F5{0a8QoZth9x56h;fCKn(A5&p$@JL3o$$-30;>y zEcV%{ZHhvmYVNx&@OhjEyw*x!#jaDN&FoZgxo~v4tx{S*Ci({cQ^8A9mV>uA*DpBp zeJ{ms<}I1bKFN%dQ{8#-NSnNpHIbXH-dKOV=v8uf!9c~?Dqxp!YdKR$XxVFeXh+V$xxh1$Y*xj zm~Wnw*h<68@FQQ@84yrRle6vqem+#o6>CW4-1%}JpEQcLUPbtAtmNcxPcc8+?$1UT z-33yn7J4Mht=1)z4A|9fr9y*{Sof_^V{g30C|l8uXYE{=4!m*Bk%g4`NWo{RlH7I5 z$<#D5D%*kY9Sgqbifv7J`*o#L;T*^CcGEt(uC4ahcJ#NrU|ZjB@Wx!#S0g6y?ozF_ zMagvI5@Ee1hdRIt%lhsTmgv20{6)cWzJZv#;r!PKXShTHq^NP{zo2}+GRui-JWxFy zGNx>GJkgK*F+TackWSZc`=II0r=1QTR9Ot)Tm=MMGt2o>YA@vNeo@tH4gQVe#<)r@ zsD9>vo6-JM!pj8c#6Xb6FJl0cv}-&N`BExYO>{0hwj3wC3n1uxO0NM_x8+VFDng+_ zr`m0IXupPJ#Y@2GJ*Bj&D(0aP4X>EusE23+pM}qR@u$#*Hu~yu{mu${QS;7QF~7(0 zX-+NLC>a=xLEX#hmFAl8>Lb_NCLH?2{9#;A+?Vv-M?_*=9|JXniyMms0{2nsjk*Mw zarG6EHkcnpW|g;CaP{es#PBhDrsTLjsScwpQzPY(3$E{>_u}meSbT0=8D%jH2ZDuD zXn5F_+pxj2ad>tYeI{jaubf8G^6L+ z8pu%UwhPXG;KzHaO?7Lm%dXsabRN+IERJKi7PNkMKyc!Vt%OdFrqWj^UmJ#6S}&OjX6&}rm@%F z{mAAY&3=)X1)>9&{!_Td|0;eY!haY2&=;9O<}1<|k{zP(V~rpAm^C;!^};ux{gQ1R z9n{?DAvrhWMGtnB%h}wZ^?VgOu*4GiF*Q4XcX%$%c+$lZ3iR>LqYa$*iul6MbSTuZ z(fbj5$GOIEG1cZgjhQmo=(WU;eG{hGFRn>c7MnVZWjb-9M>RbRtzT z(hpj?on(sF+=brWkypGTl(QNiaK{yPSLQ|M46`BClj z(%>IFY~S-f7>K~cwX@~&Bt0G0RCI@{D>L8zBVXs5TE4^d=^~ZsdEWY>(cDExq?Jyp z$VkU?V?EW_my%4~b2iJXYbZ`Aoz0aribl#C_fKd24r-ssF>a^;oS|E)> zTol}$#=W8;%{-mA=pSXue6sEGrqp@L%(eGzEjYh*o!w;_6m`GQQBmA?8q#p+W?$dQ{Fk{JRBAGno{N{_v zZmQk1e_QT8`q*u)^viZ4FnK{9(4Q(Kar%s#71g}g&#U+O)cdt$pz45q^_LKXK0&)| z=k-pu4|6=s5X%PS-^648W#e)F0$*7okSN=Aa@4PO;#za7ZsF2nr3Be;z;D^E-5=@W zAj_iVC|IY>NmLVgr=|k>o(CUqseo9DgN(h7C4X~bsetbVxa62ig;a8lvVM!?b0*KW z@lm%?|6*t7lF7?|3Y%q5Wn#}%{v*QbXM7HI%iHMkO;zRV+&tu?NDXwcW9jxu=hR61 zYnP#a?XpsVRx+S7gT}v-8n2080M9+5*)72kr52*!-5d@N7$~AKA}4A>j7t*1STrja z3;i9pLBM=t_XP&@jhg;_C->W@#$XQ;vT%9nNBy5e{Tx4SCbv&=-P5H+IKcDfVedVD zO=Sx_nBNmzV&G;(SeLAz=0Zoi-wCJ-pUld!jW)ZvrWb75EXy1Mn_yzj1TjwK%(4+L zyek^l{!pI&jR$buWs<%0BR9?rXqR)Kjp7oWmO~?bj5%3VM_1qLiMfugN!6w&&r`fS z&6sPojwQ|9N_(YGWH)+aU9nc1iS{zdczOD&G&OS$?OJBCsM8G}9RMa;4@C$;+Kmb~ zB^h^II(U6c%#xZ|`A8i*B}lP<-k+49 zc&kq8_qw-Poy;U6bMuHcdQ`<#!||F46H|ad_?2XE^EjH!{RHnrq)N+oSfx#7OMCUE zHtEkJf5~kY^@XqUd^FruW8d?la-hRDjEINx@KIAg^r?77%7vZE8RHvmyfW~SCDqc} z={t4rNv&8OuaOsis_-eK2RwG3@CXz>$^vuldQ1RNC6$xk?hGxf$Qh>V7du0Aa1I{? z{I?5^@()%_k|K3)=QFwM5;NLuOAAY*dMs+eG3~~OIa{{TEyt&mc}l2t?D4Qn+WttK z|Gn9`t>Wsw#K^baYkHS|oHcs!;pZKq_T3rd6bk6FFC^(Z<9){JO*b zS%FMv=bP^WF3FUHkaBFB_tC`cvyj$mA#i{5&^z^KRma0NXXWa�POUC}JeNEngjq zfB)`BicE}tN*{;c$R^SOoxkXC11H?7^9D?*Yb=n)$EQ!6m+&aLRjFX(VV@m4?tXJx z2M~6vki@_o1%}CGgi1~eBCHPpj-L|=P)0;!1sl+P%_xPjLq?d5*EWyCW_uzA&$@M! zv9M6NYiviAmtG#f>)vlVvKiEn=$~AwXC$BsIX^9RZt#Pd%*|f4EVer!-D1`b71@Fo zuCb)+IIv`1U|9yO=o3jA^#%8xWS{!(vdwE7Jq>E|1}EEwxZ^eHehLW5W~`?WgJQJ! zf(GIQhvJAhGt!dKvzo^vkl!>FL|xgP%qh`j%%{5CM>f;hh?el5*Qa!pYaLbZe~Fu%iao|$Ee~Tsu`Cvd`-2G{0(ZFM1lHUvB1Jr>^C^=Fi0c;?lLcvsAbWpeigF!ucBj=>VoLfIHcxk%ZL-@EIh+uyWKq%f``)O{_w19(1@ ziHnhK&+RmBy!C>Ky@deQ8(gIBHGH}ynQG;_b0F}L91Ur`J@wUIvVW}`<#%P3mo2#` zjiXFPIlr-8Kw-}*Kn&kR+=_&Z@JEIkDgTd*$Rs+F05<~KJL<7c=!ViA!e-5qV+#Z0 zB-sXdo7FU(aq!m*lpTGfy5+F>(h%rYILeo9bS53HgMKPMU!D}4{If0`Fc*4%mFI6( zU21yrDt1f>ZKNFv>U8;^>=7}CiSvkH!n1!-N`n`Y)TK7I~m(Jtw zXy43r8rI^ep5>guaX!m*!d`s~_YFXr3hnI=La^{w}*$^|cO)CJKF1;@OW z0^?X$5&z}28!?gAP~9P*Tb(o!oWj@N@ycS<1!_3mN>v!xMbxOf%3by?rnWg`J!Lqs z5}Yw8(bm5+jUC?6ZJ_lf`Kk3N-O1^DD#bnx0Rq+Uu+u>n`C2l34uw65Ke!`Wf>U}6 zV^mkgBNV}hhL8^~a#S?rWYDL1u?M0{fiGdA%QTq@v>o>+ElwNd4cxwW>tQykEf)$# z8>qEmEKjJn_baDhVXXR(zfpVWByN9>RSsOzQJ$lSq^DGf@mjFiJ(q#xQ7^S!NI zoL>BWAdBexX+g`cjPAWY7A+--heo?1P_mQ0d3ENxNnZ1{UXr4ul;aGwBb2GD5k54g z#zV1WR4|DvS4ir{x*fs>%QNG^(pSNa!Xw6qAukQ`r2gO^_&J}arjQ2k4M|jw(ypcj zhd$m2x&GS15e(UUr(gG&{5Wme*?Yg6EyC4hv~t*c)aDp&Y7WqLlYL48i_==pGWHQT zDy6zx1wvVe0Qio`QsxXDTk)KTQy|2FbE11<&Upu2*2QTUTrir+nRNtd>6 z+2ryJTvjx?o%%q0%Cd^iMQcOk-CH&(PSY;T`ZIrIUf2p4GWE^BEqx%LB>KGOiT>|I za|4$PU)BygAk~&`i8*^C8-7etA-C1pGiEXV@Lo{oBzH}o7fT@J{6 zhw&82xof8Y`1s6fpv@+90VZ|uMPgkGdM~59GUH?8$P&8M#nq@sJMTR|uQ2}7L+-q_ zoxAp`gY0L-=a1dX5eubR7x#UF?cC@2!F1JU-_9IpMca6}ffJ=%TVxW&Y5*@@USu+^ z{Ak9kk*-6#uQ*StN}}8W`ZtOs$?9-}44(Q+e>nFD-pvU77&*nd&J&_K^GB^m&is9{Qp#FU>Dt=Be zf5dVL{t`(VCd;8~&Se&s6%v&;?);h>S*^AU{u0~#*+`NiBO@EYp87!9%ibqL;ftj~ z4>ztpDw3K!qr;C^ul@@28~#hnFK;;vWbPAJ{)p7(4`8!pSg&%h+bU~c(Mju&5qNLtgpKM)lc^f{=9 z7VG!@RUeqR$X5RwO_xg=_Yq@Ew)%!FYl5+7eZ)jU0Tx@(xYl}ed`EP5aa1F6%bo40 z+1u~s>`6&^<-j~+|Ilde!sMd_^PzwhAHVX7vE7Q>k!d39WQKOse-0GdaM%l1gaj{+{@vcjM1&u;A~(2>R{?MyDaYDfac?OeUu-^mbCV8ey=qC^mpBENqjW zz%7pP^sT4aK}G`>DD0Xr*qYtl#Hv_8xay87qaf?y*D=s3Q&rieo{}+e4GZu$fPeHiir=Jt*v1?U z37CrC1Eeqz%;88P%^4f6Upu7n$jv|+KBSzR`eJ||+e1i_~$OAtFqa)2Cz7*gemec)VI)-cy2u3+!H93#`()AuqJ`?v< zlbh69{o&V$0a^G%Au?(k$uA7NdF@AETy)Io|s3oRLPqvVuLJgelB8`7nKO-p8rVWT92RpcWj6Eo=`;Me`~SA@ ze|fsUg8I)d=$yn0|C5@6?L|-WfB*O&|5~m92TJ8t0ZNkp@HGGN+kZSXB^GX)ssHoD z|4Y{Y650RA@&6&1e;LvLSkM1?ME~QY{g3th|FRx4AX5JG(``q&-{YZac^}>6X+)>r z(`D{~li$6eI%FMag0x3=6|YVExQ^pjV(V1?ZDe`$8S;GZSMGmAkZGMO0h{Z1Y9P$5 za;gm2=;_A0>z91OYaQ&?eCj~@1(Tj@dX6#|hlJMWlk}vTrh@v;w|74+6X?yvH4-?4 zU2VJAJA2i-H6(XDKc2E~j--Zleo;2|RJ}JEsUBfdSr|U7oSAk{_MD>e?f!MO;#P4v z6|0%fl;tdQU8)W$6Dlh=eLR@CuJUL*5bS^g;LEQ~+hON%enz14DANiKpM^g}{S6FA zX{wAfEvwg62WLGv)v>}mX$Ka>E%PP6zh9EO^upUK#UA(7O(}fOx@O)nW$UzEW}jA= zTxQJapi+F%_)JD%j&uN@7LvHiJ17!tvuikRT+;o^ESK}{ zW<*!dV-He09<1K>wVi@a54^^FOxzB%Q;&B$2U_<5PG#`)k@J1-^TTd=HC*H~zd6C@ ze4|De38@wCt6saG4lA3gZdN=X2fVpZ)ozdES%Mj1w0d&j{{7L(7iAi(**KVT( ztXT4~6b9FjNgG_;)v=OKcL$4e?e1<@6N<%a@OP3d9|Pai5t>8b3DeOW z>ypjeSGafZBr)~i=-A26=Q>odm8PNE*ki>FS$N?haXI0BKn2UA0g{^rRg7dK-$mZS1!5<5e^o4L{0LW3mgr~#nt*8I<<<72}2<*XXXBcoaf)QxjHL4|zQCuxaX-xT$sBwc%BGfuh%T@SYdj6gs4* zz}fd#W#p3AUsCF_7-quIBZ`*)N#H%&?_s_diMd(b1IKW)JlOM!MiZnxD^V1GJJ*9M zaTX9m*~pce`*c-|zqoY`e@Fx{MOC#k^^X%m&G*T_)xzv7xb(-?fxOli<6#nfkH)(q zbAugEN;^{d3OFEeHSFAMLO}luf1)lSjw>3O+XE>82^F z4!Fo#O2Op>I<_}u#Xd!>zn(CJz-G0t6~OXvCNz;zuXTga)mXbj`Y@oA;?%R>i1VsJ z-FE~3FusH2Y+KQ~m}RIAPy>c`;RFR{F-64KwXRK?KCbc_K>QJIGs9q6t_&KZy(qf`z`RZ~ zyxPfAODBc_u&1E4G5VHG={n5KB3dsxgpDHk3?1{aiUdr>#+?nqjJFFO16(wg)u3nUs{5;~~mrTO*1d`1DZ9RiXJ!=f*2+L$T_uy|i2kSLxY3j9M@gYS zew^8~RdR}T<)HhnW0=mbX@eqvp?B?}cq+K*?@I7ENryGkAra`cUnEcIuO@~4)hzxL zmlLdBqsc1n4FrTU-&D5P1L6=g_IvL5>f$x*jgoi>Mvx6vp_NJwFHrDYU z*N>J~(k*uhOcLi2>BS3^$oV>*6;L~?WE~Yx-T|!)&rYkVrVN-HRv+N}GBNkz<4F(* zDgW*CTi8k2p^??;J)3CaC*DuQ3*8)k5>x4;NsvQMy_Ut9vU|w$6XDzYaXU5Fi~~3w zYb>JRh_UkPmK}Cms^(TURKKVN1uDAbStSEB@P*#%HFpzw7ydr)%8wO!3vC$8`_+le zG0tk_Ns1Fd;Xa=S+f$Ux7-r2n`BF^AxxpVj$aoW(AM_RdY%1|QKmY?}3D{)(IrI8- zVGQgp5$lLh|Ap;FY*%6b@-ZHiF9&G+kJCgP`vcc-=evsK zRVAABH&5%|rMl}x)g5}y@i|G4wafha^8^%i_ZZA1MiY}>ANAL1RPl)KaL2v7_WNVF z`nhIht4bpB&FhBkqUe+QDK)^Tii^*QYp$U~F86U{~Dy%r<*<>fJ_N;sQ^&V-zy@}7W1DUC} zBG>o+_f^$I0mtFvs`4|sHt@5hvz57}NNmc}nBL?T_Hp*1o&##?VW3Qg(_C?_YuI6u z3S%AYN9OeGdVRWZ`r{t1EHUENH7lJi=4`Ft&g!TWmpC7td5u?PZ&8f*9Bf3FWY#<9 ztL*%ATaFtIHAT=I;Ykd2ZkoupGE)F8Meds&GrDJr~$(#FuR`rh!y$>EJ<$Ins- zCWT*$aVR@Oo7)kcrCCe3doY&Wku_&#im)|Xi$j!BwY{%_oHyR?1KO9F1zOm}gRqGz zrm^oJ3p#4v62Ii2y4Vt)K0nUc%&I5f!e*rtB$&VR8i?EvFk!L3$N0 zylxj4ieR(Q&w<>eRe%q^bugBUJEM)wh{kyxC$m5D+O(6!V3Owpx%NFnYZdPutOBFG zP9dpGrWpD0ztk=Pd#1fHUpcn#JlX15X!3$?)p#h6PyUnk#C?Utq9D(;u(%y3?azG{ zkLQBX63zqZ&15H3-zA$|kQVO4!B~Hn&y>FIEicAyRijB9Mh9pYmBg6ug>79lPP^~5 zXC}Bu_8UWmmlDaB7=E)+c`!Zpsdw4^tyH^Bc-!{ zC#KPw%E8CRktzM4zK)uzdxP22gw`v&`>o6ybRL&|K5bR)) zHyCW#f9J^gc9JVn@U-SNA~qN*+yoq^&T`V0;H>9-9*MJ*cx=~CP3rGAg{=z2YU@fi z)kX~Z&h^e+QJBK2gsrb1i+Cm_(pv0f0h==IAxgW3}{oS;QV*-HUV6~ynvHIk? zla6B#h{)wSi%)L5YFfKxc^srea3=NC>F)Zm@(JL=UQRV3xwljwQ`9=$j|#QR>}T#6 zNY!=(KV<9HgZzu#jXymGwMfd-P-!mS<>tkbur7xG z0h8ROA)YA;B{#4~d-VG)dH3I!cib8~jbzM)T^)LxJe;;arrqE;()KAVF2I2&hA_WG zSDG6gF&lRy-?<&&<+-BwRa4PK0&_Dy!6_fli*Dj} zXA8l{qNoqe@YcUIJ1lznkP&eX!V5?^F|3E`>8r!l%ASItGK2+{xPE|Bp$X1dpCtig z9?W(}9rqJcyVP4A1&T|31?6wDcEy;Wh^R-ZBP!DYL&{loO5j@VA$jf}(r-PE&ZY-Z zo{hpT`V%pJMRQm9oL*;o*JTcAuhxzgy9WT}kGLZ%f}Bcxjw&+7wM-aSYeZZYob2(F_E1ySr1W@ zi8UE664FcBG`u5=7A&X~0Eo03wf?!`L{A%xdU*6l#2&D_0j>X_uVFM1FD(`Uw;#`4 z_Be6v$qMN2xJwD)ciy6>JUG9ML%;dqx1C>*tsVC%F<;1-yx_ol| zou6&K09n4<^ZZbK{?39mH<0AVpuj@8PbVVf*Cj;YylJEqC0Es0nv{@33+%zXJo!e4 zi9_<&Ai$AlJJq}IgFd0Xyb88oQJ*@M0O^2Q;JUk(PPb*H zJ;Er<5=-Btb{K_4HQZTa$RMkz<7X8}bT<3eWv;OO?hyqdSU8@$+~4AW&w}hIk4gWS zz!R4OPuRwCab@Z-&al@!gaI-yo$q9KR2*|lW9i`fe73#&2#-cak=;%Ft2prfqAcvE zl4?eu_n_Tq31|}4#&omHueVO1D$D4Sv3}6bo5}r5C(G%nG-;6nr>I|IjX_bK#C_T$ z0nubbyo~|;9c8{^D)-?yqK9oxCe|aHpY986WO|o7_(rwCFkX5RWbWO^`FRsGWbkfbN{HFObo8wL-REKZ5swIlJ182k25SI3x!hx6Eib*lKh zO^FV2FlWGN-9a>0A;@6=io$Ta<9N_F|JP(9bWH8tHZ{0SrsJa{Ve%E-x^iYUzF6p_ z4S5B=ScyXttTy0hctiXii@KL`Y}j3i?2*@Habv+3eH-36sp#GIc5$c5=FFUV5wVSM zx{Kwp#c=_};)@r4Asr(8BkHnSSdmR~Re4;-V;lyrK=E$Tu#RkjG_F+7=&re2gGmc< zWQZ&U*Ic<8x*qN2UJqhfj>@bdXy;nu@fU{PbEUeZfcajqir@NmSA;tv#Kei!y8Dk} z_G;IXT2O)Wl_-~9M@jYLPbb;5wu|KIEU^u|xU@2L7^DhLaRJIE!si!`V;>Whv;_5)1WyeRiDo@Qc znJ&gW7(bz5J_aT@y)Ey)0VbjaBsZGc;^AP{wDY4k;LQd^nR>E3Rxt&VY#=kSlbA*7 z;PjSzquQr^@hhkG>WYzMY?46QEckJDrK+EMwi>sgDSl(On-t;9g^xQNN5ovufCuX2 z{A_@xt=91^#Z>$rP2o*Y?*sF5H%Y+jDByt>WB~u^m>D{)-&cSl`v)NmBWvDYiv&G3 zi8GC*ou+~o1dE^w>Ti7!2@R-sbcr%#hGLDiyJ_I;y$Njxwy9GwP&7c>12wy;3kY^z zM{i(@U#5=@Lmc#=9kDm2$GP$%K%77?dP;5!v?M$GA^htia9^vglO(|M&H2smpX!F3 z=~VR*h0xjCTE+k}FCgtuMf;#98zxB<^#<|N6*3GfN`A~|x_`3WRY4oPxU9VUYtk$9 z%l%HK#CLZ@0kdwgBjS!>%`=6KT#}}w&~DgB)78Y&zTrD6&G{-DNb6O0|2qt6r0wD- z{{FOCfFmc^_bpIy3{F{HqLfc+K+_awa-r5t7+Nj-03$D!4Q+$)E8&Of2ut`>Aq&$cppgBzim@xanwlyrtUjB*RM;`1VGz*Yqqn)dZ<=2=OucLPKDY z1EjgXS#^$1ey^dIjn`h!iC=U&9|@5N9-m09jnI2Z{1ARiw>k;t)8TqcnbRn3LPLQ4 z<(wF5fr(Gyxfbx#__J$c_)X#G*LvB#RNRi&G{N7_cn%Q7_FL*r&n_M_zrg!%fZ&T( zN6^a2+ySW}p-rig?D}Gk@ecw4w1-fU?fm7xY)f4Yz8FcWSR0&j0(jDN643etp~@&F`K8EXxiMv}B7^SgZOG8TOv^lL~V&m$j@> z1^sh7z`LsihJGl#Ud-hlsWDMpY`W`P-B_wAqM#~obYB}T!W5CvAj7WG=EtGRrCi80 zzNbzY<^%d_d8W%Si=2;H0^30au=hbj1xlGXTgz~COwhJa-)`uNY$Z#lM_Szm_C=XR zpu{-$;%7^(&jZrKV6PMm(1K_%K8PH)!bSCp5?rj6{YvbJr!tE@xT(3;^>FZhx2XR0 zBu6fihD3#X&AY^RAGVNhZRNZW5Ql;~rRlMF04MNa(TqDh+X%|1v#{Mpsg?2eqdn=# z>DQJ!m)43|1bpHR^JVt_(3>OV{6gU5>6&Ng;4L>&a}Iq)AypEt6(ZHso=VQV_>>?C zp}Is?8t@r3+mb7%)N^}oV15WmhTk_!K4KHHZtXSkm+Cn>X~+lpR5WpiT#rcvYC=8Y-{n&m8hFt`qd8BVJL77E z@ogm{6)NccwPJR%h9T8^a-b?dWQm9xY*K-t@Q5&iq0n%5jqzntig{>$^Igk?b@_~F z@vVWS0n4Z{uwnUHL%Ctcr$s6BfRxBY0NwO zb?%}~TdeY7Y$H}224zk^Jo_>TNi?O3j$zLLDEH@D#B+r?O>)tjf=bIrL$9_cYa7%h z_{X&Seyt&zV0d%{h!;>boHJ}y1Dd=0Vqk#+y*iYh^60y^erV;?0+#RNhH-M}nKwi~ z^yjP@M<_my`yG1U7EAvnJc|KT4~dcuc9WZ##f{Lxro;9Nl#ZPP*10n;JD*!IOXHM4 zq6%jP|D6zvMTec1-5Ix6(e9@aZe(J{=x*o!z4@)0#o*<$%cfLT&szyG1-*_F?bu1M z@BI=)A~ix-=fOYKc&6X>obc&O5sddv!#bWg`t@iv&EuVv-&N~pLkIDrz4Y^t7Bs(u48*C55P54!_<{UU)d?P;+ZOzCiQy9pP6EOXHGn^WLxHp6(|O*W zn`Qm2L+c8m`$kvCHo+YhW9Oa2aY%+^)MD+AnKxr09AENgPoIi>@FM}npF^^>;_U|a z_{I5G7ajfFo9NUDEx!TU2TjUg5$W>-se^CovW~X4q+DAEOmHk+@kg{#ZQ#_QYf@k9 z)~y655LB-|FCb}rslO!uf^;gHJL5;H6$W%@&c`t0b1r|%NKoD6c-=>^1{Cd2^Cy`I z0xUPw>WR>(Nm3YJB5r96>jQta7obg-kpyrmyAw_R?$4j`pH&}o-Xu7!I4E}r(zpyg z{%v}Ua+0^|0 zXq9>WJ`u1dajb-AvPDZgVSj3au5OkYnvBkPx-uS$!XXjnY;y9{`dhnN=hxdo~>#*$!MQ> zPM*!C*soG0<3AVmIr+J(^QGvee%EbR*k7W04AR#}w2Bz$ckL>esu5Y^^^5snDm5&+ z5_EyVSpw<~#Vy`Dw#kjHI`#he0Qo)>zPvNPB?2|(#8jGpWSIItLykDx}R9%$1eWD;{ zyggr`vBzOTVP{>0s%!1VCXNSNxavU3+{4Elt~~pv5g1T2RUV!wCyyQqUm}`>UTtC+ zts$^5zz|wX?_PQ`-7$urFXDSpNS$eY=gr<%{aNjk9?^cum*@1Gf`?Xg@ar8e*m90y zVVdp3EXhPtT)Uge4_#a3;_4;4dvCUD#r(q02f>~G@`k1tf!HEPYNE$UK_{)3qk}cg zcFZ4}@;E=$2j51wZq%&|UVZw2mwenhAS@0z7JjxqE8+bE-6Xo%;Lf)tMe}Sj7NaEW z)-bnO^c@^|#&?I834XS^?uzz>%fA*n5LCaAZbf5%mx=r$nhKK*qseFG(1b7$Cz@I% zE$Zv*ypoHT+HVv5bvnG>LcklBO>ICpAGqoRX6is=QO)NvzCzIM=~N_B;DR05NQ&Oi zM8)YjiiOxi1b+VQ0`20m3Jc&q-X);8^G7a_CZOR#a`hjdRxjJ{iS{#6deOk$!`6I+ zrg{ixki&?oaY67BPf6v-SNAqC z2}xu92)usDZK0kwqhDbp9ROZBC;Bt8#ZTpxpC#YqFGsUjEG{DDUrxVNEgY!Fzgj$8 z2=S;!Q@H3w2pSQCabM=!nH4}%TelckpI`}`>QnjxIHM9cg_nr?Je0L8w*4({r;Y%d zd+)10CzpbErbss1R&7+tL=;({EC;gU>Fm7Th|DDq^U7XS{-)lauFYe1K>LACAAo@= z9xd2Z%9*Kr$y0u8AMcX>$H-b%Qx%^H_`~t;OfpPF7jUd(4wBdsI5g? z+=+w}oaENi^8BV|3#m|da?M=QG1)VTvtNZ=`@&k^RY{Q+Uc$tnq%Bl*ss|YhD_YWJn zx@-+mj+j5@pB0aEp!l@Yss4f&ZByGa4xGI^`uMBjSBS2^D_ANVOcm6Xd}&PboEdM! zO-DxVPVz#hi4G5##BkUe?WALjf2p*n)zq?boM1-ahlYw5O)FNniMfyB5@MrBF7sjt zNrJI9U(GOd9$8*$5V(N}M#H?=cJ?B~EPxrcfpF3MGX7CBf}*tpuZd z?P%r&P1ypw$bVSAi0NwWoQ~ZVfW6sZ1~7&+Sc<%#LXd{+g37X4DM@@q8MPPAC;3M6 z3{dhJj!~dXN9w^HUrF?WUEGa)@_t`*55X53+EREP`;7Us*K5!zg7;NSf60)Ukeb;# z)_wb?ZePo-n;`3QvyYQbb)>KLi-NEcqds{Z&kSLq^FuFf->%+iJLC|A=h`RcY7FtR z#)G0T5oJerI0V<}E4ILS)|=A$Lr%8Tb8=qJ*RP=G7PfDu-O)}VVSRet_%%OYG}yUf zkMyLiD-ZEn|2o8-``TW8UJvZCsQA2}v`PXpv&~5x`@(}xsau?}*3s+t9kYh*;!*E3 ziqw#03Is2L(35Ou3!gVsgMf?C8}-0y@`HxPZD z@vhTsF0Pl^cS&1@x4j8nye(8Nu~FG@xo$aP4r55AFT=p)77E^oVA3U@F}ERf#WC9# zbcOZSraycGV$!@Y;Ddsf`#clF^4zFLBsb0$i5^x}d+`*AA`egjO`=+b@S{FR;$Y_pS1W9Bvr_-bAOi zI#q#v!%_8uDcn0)zsqpcsgLpd!hY=xjej8~tWx(PO1>%EpqRY!QHQTtzny>~p@Z}k7&p-Sy)jiM=vs@i+6s@5#ps@h_f7*$*By;q4{Ta8*VYQz?M zD`Lb}o7fTDZ=dh?ci)fuuixMDkmSnyoa?&Ic|Bi;@L!=ITPu0WNPZ{ML}}q$Qo}6l z9U!Yq4-2xqOQ=(rzHPTUFI69~r>jmn-b6j}VkP zF#4)&jfeNfS=P!-Xwq>Sdfw$a`Ac>Qvz5TR^oc(28;MZX;(E#zN===;)GcG2=(x3q znc{)s5l1>-!o|xB@ZgsIxuL1_$;PNOMT(>Q4_*>gd$?m~pGR}mJamRrgY*k9znB9J zK?j#SMlGeRBEGl&D*Mt&mpUn4ix)DqLT6=O9PPOo*BCwRVr zutxnKFMye((hN0Y5P3=Hu#^omoX1qUd?0%Ea*$RrDK(^rGJAgW%WL`>az^^sIbrW~ z#3?=F8J;+Qso#FYDDkSA?w#1f!R!M({&v!k+S^4qC&^&=yQowv3x>zgsKqKuWe~so zwWz2w0R?Il2}@A!23ai=$Wi(a{zi1~+4Mj%3gD|DcYQ+*jru9~O3J6^S6=WFSwszc z$X=9`rye)3>Y>W1P{)-mAAWX zkqwWTPXhn?VGgA&ItNjbWiENO|GZRCHbT?)=B*^7T9P6exa0rz8jcA!ciHk?XpvO`870FOjn1vg6bHuv}bS}&`-fC+W=k_;2(ft0+Mg39nYiEi(=HKm-tgo=;Xp(et>S6Z(3t*nAfw(>4Vg_o!iOJd{ z#1nTA9KNN)nU#ZSuVoV$Q3Fw!%znnOC3RIj1cL=CGiQ*Xkg;bideq zrFZHkn~%?TqPg8>be(6+!1n09&E*eTxAvMhE?&+GB*%HvG_h8uQpb0F9;*kYt0;2c(=jZfFz&+K$`Y#Sdt(WL5gdW=6UhAV_Bot8WWex5#i|Z*%o1)IT8k zA)L@FSdS?$w9~81CGxYhej)s;IsRH`(M8Kk!dvjW)cyf!`c0=!;S}84DT1FL(~Ku9 zN_@tq^|&PPlEoFG!D$jfQ#GhO`2e!Iy)0E^G|q38M`C!j6~TX({qBq1DK;}javyVMqYcm1o^`?8<=)?;IE@5YF4L;`Jsv)S zWQqviRFJ2pPolRTQ=1x7Ko_~VP6j!AY4A5wZMtCW(%rJLo#iV_2fj)@Sxin z8gG`684NoVt%Wo^hSV>;!+tJ;+?MmjC{FxP-L;CKy#wA&>QtsS0FAv}P06O}6CwIgGmp71;LXq#zPoZPAv~g02{@5#Ad!F{1KTwUX=UTR@Et zxSO1e2)(i94P20u6X@dh{+c^zT?kD&iWQn|^sqAcAhc8%onE(b_Hu8Z)JE#3prV_a z$YKDz&LS=DQoNcBcj4kCT+KYo2pv0Y{ymW(1QWn4Fwovta=jxIQa$oIRq=)Idmjl5 z-F&Fmy=Z1lY1=3KrcVi)(_rKkwEivlOLbKRIzTf#*mZGYA@a}06XUP!=h$D9O(+Yk zv?6Adk6p9=a$kucG6u1?4vuPepIJNlXoVlIUN)ll#pMNGh={|z=uSC$+%OL-2(Ai& zFT2>-SSgpV)v@^?y72pHkYNp*{YkCOT2j@w4gWHNITn?>XPko#Egu#ooG_1Sdz2-O zc`wh^g8w=!rI+8`oP?h}=2l4;wDN4@4%^SE9L~(^Z*xKaUh(d(8nkXt<*^;c-%L^@ zB11R7a|~(pMSOla`A=7Bp!nGR5DbyzLOX9QXGq`cbDz(Y!=z>$i)=Lux-9Iv$!y9@ zVFuO%(NFC%Ye(IhiVfq{s7W@E2$kcyYWzd9W0x1M_wc)HCfMnuRaY*4BCMgE^(xe3 z2LtPU!E`|7uC!(y=7b>7(bPp)eb0&cxZmOYn>F!0w(5-tpd|Ae<*-eC?Re@ z2l1)b79^G?DKDp^G1&#G_>`1z?6b~2=Y(fSJ0kSoebz_)SAY)H1&-aiXcbe7ipIdY zG_2o)L#hlhx4D@3-={Sv5A%5Qlb{LD2#T>|a4I&T_b*Zm)ahQcj)NQy;0m%2EQn4* z32(mI7q*VuP2wzN{IOgD29V`^)tbv;e5Yg}y(6H$dc z{N}t0u0Psm+6JNLd)8JAX9N+vZyizx^!H}B(%oLK zVxS2vtO7k~np7OFOCV8eg8YFU`UaHf~_mrxab|Bi&8)u4m4MssN3nG!GE= zb$1pnO`#9wwA8%d8;BTJw1_mz6KN-U(R^HEz$eXPKu)%tXobI8Nx%liuhPw=o`Ln9 z`>B_!W_O7DP&%*=)ldjMP6y4BBr!vV7?%1McaYt6@RPsx5IO@ZN3?+rmkebu!O}%%k9M~M?;qb z|5)tuNgXT(Y$CUc8^Cj>t^9pp_BX}p-i5WB2A{Z;a(%9 z@N!f^MTJ@92lb?iATN1P?yS?(uJwYQrvJ+IaTV2^>Q%El<2r433`#fq8$evkv|-}_o{TwRKyJ3NvwO$ie9j!>xSk;-a3 z(vAG%{LSWN=dMYX>t%SW9oXfbi@+$owH^ zL-J37bA^0OIem$RnBz}9jcQU2Sf|Wy2}fWQB`$Jbh|yN9ExI~Fo3%v^tr9PG!A6f^ zMKODgv$lq-6m+;aJ2ALecJy6hmNOpJx_4UoGY43bwhF|m(SZ`QkXWTIcj%dh zMQ_T|jYMEHpv!0YjS9wVl-X;Pm*h8n2fPFmu-T{H@D+UP5v(A_5FG5hUUdsEyqY57p!^I>^1 z$hKjw?1f-tR|gGyWY!M7udk3%NNVLMg0}rRO$$S7GKxO@%a6x;DKu_4@+90j+wsah z%A;v_k51{0+G;jDKhMKEVtKM|A?WBl>>I>u^FF~-d1%3oJ8+X?B1e)rJh%_tIvl5o zFltbf-}Di&3|~-3vqmAtgMMKPtz>Kp#Wy1qn277UxQyROrY3$;n-_>Ez*{=YxqLg- z!{mF93CzPtqR@xeD5WG_Gbcpoe}k?;t%%rSm86f_c+LOQP;UX6>Ya<{H65 zO4q&S#XHG1zXm)GGyVc!sP8CHh;#h|9uo zZeMk~CGIUHQi6YBzagv8FvW?7@cag~W>9Qf z9F9k=N_36aZ+)VRLy1lGSn*op&&Mb!XzdkT!yRR;ENx`+J2T;+SH}nWxmHB<(=`gJo%bH(b{Pb zvR|GTJt71d;~Mx;lcn3V^tkNpp<(I6B%Y&`VfLNirIM3Rh@ zLg;@C$)av;;crtjg$NGd1`N`=z3<*BA)F>(z%>0PI<3PIUKFq-bqGAK{i|j}n$zL) zejJWJDOR=>Bg##q5Q69*c-0H~7U^VpFE&`_CxfpBx8YZH^C@b4cQ|T_WDmvYcP@MJ zA|SinKI;8{0Hh5o-u7Gd`diVdcFNVVo}wc>70ib3?mlKdWPEh|ufyX%=sETNZ9Ik> z^=Uk7W%8RT3EJp1D#n)86iZ?!t2bFZ?OnfYA>2wvk&-zMLtQ*5kH*wF^!Il;)6eym z^~x;%esVApT6wZHO~s_`>q9P5YVh~q7oE8%SHRjo+4~F$ROR%|a%NN8?zuV9v#vdm zl>Y-G7ZBss(Izo}x#@^>YPfo9*@Eyy+!a4ZmHbpFF9A0}F;rgvOE314%kX@y*?(Cz z14`918-~0@&)79Xd&{OJ)R0mm4>~=`6stwU!sGyZttzxOgWF1MYLQJ9pGU*Y92a_* ztC?VCA<)m9*~f~IVp(D4-G_793)*jy6%>(YcYGZvK5yk5J({ppF5cD*{Hu9*x!_M` zkfNXZH=-l>e`(1)<`!Pj28XKpnYrCh2|~`K6~3;;x^qP@^jvR1_Wym=#4{ffmj+m_ z*kSX?Ub+(+)DCuYoeJ~nv3spUp*EHF*`@?2- zxzBb-Egx1_22Q>+8e=UmsZj@bY5BCEh~C^LY%g_|H|JZ5$TE$14mSF08>5UrKY6?R zKd}A(d;9x&!<>hm7UyK)diUuiXCy{FZsf6DdQ( zlHA4Yb?^UOkN+QP`hOOwh5eQ0a)`I zH3UBUs^D|r8FApeT~Q*~9tfh6G<0v!H)~u=K)3wKlQ=8ZVFt`0;lc@gQn$d^W ze`A2t0nm%BDcW^Kirf0WheR=50vumy6hIK(uzqEOZi9~brwXe$c@Xx!(()2@vupJ~ zStAWI*yFu2ujArPfY7wAo^zi0cq5w_8%VlOZ{IT8f60EkL1&8e{ArzPPEG%nR61tc z@IMUk21%O$fTWeL(UK>HTn?ei{iKhigr4mKbYZsGZryUx<;e{9K$+nMYEtNIW4XMr zqC_19#g&L(@83X>nw1HL01#bRhh?A}h9{1=+-Qx401>6l? zbqt`F2$b7;dU3<-Dp!uh3b*&U@(sLN?7nap^f~>salQ10P8}HwAt1S(diEx#*xx56f!40zK_Ca0~wvgkS9@6|?B8ZO*MJUuQ{Tm>qKzGTE9#!db- zIg-3tdn-3=?#fL;eE(sBX{L>yIuQDOMtkQ%4B2jp|T-X^J@OoEEcSTmgvXS?&8`@?VwwPkk3vIrwwT6 zr`V;72NY)j*qFW*Cg#swzaPk*w)TC3aY$KzQ?qC8P_>R9xoqfV_dSQMv|J#Sf8)P! z<^Z5dTKRI^jb)U(@n0wxeNzhw1(!)gwAApeqbK5XOH{S6FV{B$RK3*M-@uaI8?P@F z_oLn@DxL83I4(An>;&yL>>+@K1pdeVhifkYT$Xl!LXou-5>43F04TuWPnJ+|=EpmQ3Wlr?pL%V+kT-?7D0Tj(7P%_{*?`#IdLCbKaSr#I=sSP^9wer0xt`fIw#T$YYV6aV{A{Q6 zD>)t|FVE|zOf>p6DiDI8Vp7L1V0y(I$AZ*CdlIy9Fhfza*HKPRUbPxU7S%NnR3c`C zTDSk>1DPg{wO%?CmfX9XiJO^y-`%ynCx1Bn*tQ_uxk%+Ow@=wK)wksaW}}rtNk{W0 zRwJe6lN9#JmREP1dD8)CwhTswI3KW!VsPpZ=DSl_hIFX9$@onsXs1d2VgM;Dst5j@ zv0asU5MfcmCzIv-re{|QhqHPb(YYr}3tK~1=7w=elB zrJQ72yHZ7wBNar}4b93`%Ylr#HaRJYty7(!-8~DWj$J3h^kKqH8>-6O?M0OE9G%C` zdOx#VGc+r7o#xU zDPbpXssZ)QV>7=22Lif0*;FE5r%WR1z%?4M=YDZ`QTncH1(C;C>O8zs%VqAVhnHmD ziEqZfjmEs%ug2~vs5wPsc7i%6E_hTRkzI>UGsB6HKLc;zM|Tufa6XMF2Mffz)WvK0 z!`yhaqB^~7wR|qUovIzr)3O64 zbL*BbqEr)M^k#0t?leOdq3!_}0M)AxU10{j3%b~HaBXIBeL?RgSbeoQmU;EvOb8z5 zsQu)Dw)aWTIvoIJ2M`$tdQ&1+kWmZc@!icm=vn}W?v1MYNJF;E0&N( zV-nUQtxaWz>S_i1dyWyXA(Se!_g4!5Up+18B3`xnl)5F(nvft1l-U7R>^~ehE?*Fu z9bTv{^tF(Ki}%TeAOGfqv`f(Ob4|nHQ}>3P!DfJJ_y7Xb#AC1mduT?OmU`yz*(00q zvRu{Hw-xO;fM?=4&a81pB__I9%wG0eNX2iK7jybg4p*o^QzXU`gJU+!OkZ)(7WYuP zUIB>6yJ;|2;6b+f#4o#4Hu}rLQm>Xkgu0mCCSQ0^e?`?&+HtzX$xiLzO0;wLR7>6F zMKq=Wt1Z36jUmCg>Ep}FPjKl$NxDTJ8 z>JXPgKhA-n*L|o7+tuccp0n{JMZ4v5$u;-WDgUI|;I;V1GP>r?1HDh6eXC9A-zhe4 ziPlWfd)Wqc?;~sU3w}F<)E^)JasdU;x?)eZFUQdu2pO#po_LV>=9;TFhNdd<*Y2MB z&Csi(`Gg@vBmbe)<=c)%6>p)2wr^iO|E{098*0pN4&`@ae_MnUtJ7I3wKq7GihpVa zV;cpVw5a!gmW)|ykGts3FyTrL^4TMGZ1oQfo1)HD4XwXYDi!1o9YH{c`^HAIox$wr ztLebd(*l>X2m~&uZ9J2OubNRpUQ+Tp6}#O>$wBXV56p1+slfXPvZ&s-|H3pJ*F%}H zA7B&RLlgF>Ot7x!hNUMwsViR($nqf0n<1r5bG`ED2S1HJG!Ea{-o4zvy4lPws$|{1 z#i!1i_HtWE0I*!2mkkfB5fJ37ZctujkwO2h+z``3M&XhKHl}~a7Ef&X7#Ocy8kZSFrRDeEF964czW6>MBeRzYH%t%2alTqY24%8Q3an$sArU7) z-vLlr(kn91*?gx31Khhs{EaO}PbPN`Mvkryc;j@0Kj9QP^;9G9JIB`^!I{q~8+L^0 zxV!Ry5f&F0Q1)LRTk-+jk-WchVCPXS%tyy&iCU}dgJ!K8!L{8GR)x= zQcCCo2b{B{CTa}!{it*8x+GS;23%izJeSyG&Fxt{#`xTqcm_pghBy}sxFLX}ib^Jo zt})gNkxZ`HI$C9y+Qu(5R(>om5fQ(lu}r?~OgIhM|D$SR@%g}r0L^+pKhX%Lz4Sr6 z#yu(aG&FkpPo4#=)AKnJJ=wS>NK1rzd04bLre?6ReGEB-;N+va4Q#Yn4yhO9-EW=+ zkNk?e;w2GDhy4{&O*JmAG^4hayr=^7V5+q4xVo*qKivw3$OUz-m4Qhh6lrnfUH=ui z6zu%6t?c?!t%5cR8Cq+1`GSn)^0RT5Yg;n`KMzcyEk&xkkz-!Xfd|p54djrSvf#t! z#rW~RKc1dbXsCaU_G|`x)QZ*PHzg&VL6JbuMQjLU30W3#?R zaqa=&<3F&^cT}Kp<#m&U*I|9pTP}6&43*;O4M!wy?+S0}U%PnfK6l^dXY;9BMDoj&&Ekakn#tOsBP-A$#<)a-_HMWEA@fwF zv&QuiE^&X;KNN=%sEVS!KOuPVfTOg>6PAC9_%C5-xzCr9sc&EMcPZ!ptY%pa9P(TL zjL(>ynfh5~(k=tfh~W05B!J-S#XgD&@;6$!xqXd*jYhI+xy`7%r075`0MB)Pl_Uu^=r zbd7urMiP(gPFp`eMVyOjmr=i5rb2xI*IK!q6om{E!TT$UY@g!d|IsD2 za43Ix4EBLjc3n$efDsR2_|Gqw8jwyqdvZ2nrgM{9wG3+=5n;5sHVd{-nCZI6P)WF0 zDsX3s(4>pXGeZ`$7H`Vq9$`x9*L2zRJexc}k2FZG>a4fhx#QVv7x4LS@#-vep>^jm zi7WZu`j`4%sEiwbn5bGSCW}|kRk5WZCxLVk)UWA&W;o=ePyBkv69y9cL(raym-B!~ zzRWHk%DsNHJ(mCI79+y}fnlaLcYnfl4I53dx0P0~R~~PGgOb3|=b)Hq+*80`$4V&w2=B7{DABw*&X#!6BQ%=I}ewm#l0iq zZSqOd!9V_%6l^vkXf|f-)_Xt_p=GwGK1^p%n1}$<8r1oLAfzWhzQ#wpi=<$Yy17uFW-3$nT>o` z-aN6H4O2peP)8J9{#|$M?Miz<0(fOO8XL~nk_`+?t5n0oH$&cyC>3d$MASStW52QdY^rcmANCif&BYQtOQ5Yw;^ zq5z+z#KSnt0hlO0qCPB1?^4pJApMXYuZHeR!gh}b?GqzBRrjE7CV`JZJ?^(?NjlsW zVN8dg@gtdNKEAn>VU>+X%mLfVP@uoYu*~n<$$rcN`yF?PT=4bOKk&6wyv6vvq-shz zvxILNtthl$0{$@1^493S0SDr8k-Gq&v&hmRy5Mv7+xt=NdL>1W^1<**>+_9JSv4Y! zKQ6q%Ea$HmigErQ(;MwerF7mh%d}B~{#yHC?*-~RCyar8Vi)|}&2BMqf7w4jtDmQB z`GDWM9Ln$(3dS6+w6_K%j7m&Z

<0sEtSUv@e6M&u}CpRK^{`0m=^)>Bw6@EEw2L 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 YDOL|vpE~yi-2#5(WmH}lN$LCiAApelX8-^I literal 0 HcmV?d00001 diff --git a/config.json b/config.json new file mode 100644 index 0000000..8abbdef --- /dev/null +++ b/config.json @@ -0,0 +1,31 @@ +{ + "_name_or_path": "ChatTime-1-7B-Chat", + "architectures": [ + "LlamaForCausalLM" + ], + "attention_bias": false, + "attention_dropout": 0.0, + "bos_token_id": 1, + "eos_token_id": 2, + "hidden_act": "silu", + "hidden_size": 4096, + "initializer_range": 0.02, + "intermediate_size": 11008, + "max_position_embeddings": 4096, + "mlp_bias": false, + "model_type": "llama", + "num_attention_heads": 32, + "num_hidden_layers": 32, + "num_key_value_heads": 32, + "pad_token_id": 0, + "pretraining_tp": 1, + "rms_norm_eps": 1e-05, + "rope_scaling": null, + "rope_theta": 10000.0, + "tie_word_embeddings": false, + "torch_dtype": "bfloat16", + "transformers_version": "4.41.1", + "unsloth_version": "2024.5", + "use_cache": true, + "vocab_size": 42001 +} diff --git a/generation_config.json b/generation_config.json new file mode 100644 index 0000000..066b03d --- /dev/null +++ b/generation_config.json @@ -0,0 +1,10 @@ +{ + "bos_token_id": 1, + "do_sample": true, + "eos_token_id": 2, + "max_length": 4096, + "pad_token_id": 0, + "temperature": 0.6, + "top_p": 0.9, + "transformers_version": "4.41.1" +} diff --git a/model-00001-of-00003.safetensors b/model-00001-of-00003.safetensors new file mode 100644 index 0000000..3de7ed2 --- /dev/null +++ b/model-00001-of-00003.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:edf3f715a2cb4e9575fcd6ec8aa5ffea03d609cfb611e0aafcde9333328f44c0 +size 4930735896 diff --git a/model-00002-of-00003.safetensors b/model-00002-of-00003.safetensors new file mode 100644 index 0000000..5a9b08a --- /dev/null +++ b/model-00002-of-00003.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7143de1891826121265ead8ce049fba48d74cd0240338a67f85577986c0c75cf +size 4947390888 diff --git a/model-00003-of-00003.safetensors b/model-00003-of-00003.safetensors new file mode 100644 index 0000000..3b12fe9 --- /dev/null +++ b/model-00003-of-00003.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0e745422f2e7bdbd292fe8ba9484577bcb2059e9ed31c8da5fe5eabc742e623 +size 3762594664 diff --git a/model.safetensors.index.json b/model.safetensors.index.json new file mode 100644 index 0000000..beff157 --- /dev/null +++ b/model.safetensors.index.json @@ -0,0 +1,298 @@ +{ + "metadata": { + "total_size": 13640687616 + }, + "weight_map": { + "lm_head.weight": "model-00003-of-00003.safetensors", + "model.embed_tokens.weight": "model-00001-of-00003.safetensors", + "model.layers.0.input_layernorm.weight": "model-00001-of-00003.safetensors", + "model.layers.0.mlp.down_proj.weight": "model-00001-of-00003.safetensors", + "model.layers.0.mlp.gate_proj.weight": "model-00001-of-00003.safetensors", + "model.layers.0.mlp.up_proj.weight": "model-00001-of-00003.safetensors", + "model.layers.0.post_attention_layernorm.weight": "model-00001-of-00003.safetensors", + "model.layers.0.self_attn.k_proj.weight": "model-00001-of-00003.safetensors", + "model.layers.0.self_attn.o_proj.weight": "model-00001-of-00003.safetensors", + "model.layers.0.self_attn.q_proj.weight": "model-00001-of-00003.safetensors", + "model.layers.0.self_attn.v_proj.weight": "model-00001-of-00003.safetensors", + "model.layers.1.input_layernorm.weight": "model-00001-of-00003.safetensors", + "model.layers.1.mlp.down_proj.weight": "model-00001-of-00003.safetensors", + "model.layers.1.mlp.gate_proj.weight": "model-00001-of-00003.safetensors", + "model.layers.1.mlp.up_proj.weight": "model-00001-of-00003.safetensors", + "model.layers.1.post_attention_layernorm.weight": "model-00001-of-00003.safetensors", + "model.layers.1.self_attn.k_proj.weight": "model-00001-of-00003.safetensors", + "model.layers.1.self_attn.o_proj.weight": "model-00001-of-00003.safetensors", + "model.layers.1.self_attn.q_proj.weight": "model-00001-of-00003.safetensors", + "model.layers.1.self_attn.v_proj.weight": "model-00001-of-00003.safetensors", + "model.layers.10.input_layernorm.weight": "model-00001-of-00003.safetensors", + "model.layers.10.mlp.down_proj.weight": "model-00001-of-00003.safetensors", + "model.layers.10.mlp.gate_proj.weight": "model-00001-of-00003.safetensors", + "model.layers.10.mlp.up_proj.weight": "model-00001-of-00003.safetensors", + "model.layers.10.post_attention_layernorm.weight": "model-00001-of-00003.safetensors", + "model.layers.10.self_attn.k_proj.weight": "model-00001-of-00003.safetensors", + "model.layers.10.self_attn.o_proj.weight": "model-00001-of-00003.safetensors", + "model.layers.10.self_attn.q_proj.weight": "model-00001-of-00003.safetensors", + "model.layers.10.self_attn.v_proj.weight": "model-00001-of-00003.safetensors", + "model.layers.11.input_layernorm.weight": "model-00002-of-00003.safetensors", + "model.layers.11.mlp.down_proj.weight": "model-00002-of-00003.safetensors", + "model.layers.11.mlp.gate_proj.weight": "model-00002-of-00003.safetensors", + "model.layers.11.mlp.up_proj.weight": "model-00002-of-00003.safetensors", + "model.layers.11.post_attention_layernorm.weight": "model-00002-of-00003.safetensors", + "model.layers.11.self_attn.k_proj.weight": "model-00001-of-00003.safetensors", + "model.layers.11.self_attn.o_proj.weight": "model-00001-of-00003.safetensors", + "model.layers.11.self_attn.q_proj.weight": "model-00001-of-00003.safetensors", + "model.layers.11.self_attn.v_proj.weight": "model-00001-of-00003.safetensors", + "model.layers.12.input_layernorm.weight": "model-00002-of-00003.safetensors", + "model.layers.12.mlp.down_proj.weight": "model-00002-of-00003.safetensors", + "model.layers.12.mlp.gate_proj.weight": "model-00002-of-00003.safetensors", + "model.layers.12.mlp.up_proj.weight": "model-00002-of-00003.safetensors", + "model.layers.12.post_attention_layernorm.weight": "model-00002-of-00003.safetensors", + "model.layers.12.self_attn.k_proj.weight": "model-00002-of-00003.safetensors", + "model.layers.12.self_attn.o_proj.weight": "model-00002-of-00003.safetensors", + "model.layers.12.self_attn.q_proj.weight": "model-00002-of-00003.safetensors", + "model.layers.12.self_attn.v_proj.weight": "model-00002-of-00003.safetensors", + "model.layers.13.input_layernorm.weight": "model-00002-of-00003.safetensors", + "model.layers.13.mlp.down_proj.weight": "model-00002-of-00003.safetensors", + "model.layers.13.mlp.gate_proj.weight": "model-00002-of-00003.safetensors", + "model.layers.13.mlp.up_proj.weight": "model-00002-of-00003.safetensors", + "model.layers.13.post_attention_layernorm.weight": "model-00002-of-00003.safetensors", + "model.layers.13.self_attn.k_proj.weight": "model-00002-of-00003.safetensors", + "model.layers.13.self_attn.o_proj.weight": "model-00002-of-00003.safetensors", + "model.layers.13.self_attn.q_proj.weight": "model-00002-of-00003.safetensors", + "model.layers.13.self_attn.v_proj.weight": "model-00002-of-00003.safetensors", + "model.layers.14.input_layernorm.weight": "model-00002-of-00003.safetensors", + "model.layers.14.mlp.down_proj.weight": "model-00002-of-00003.safetensors", + "model.layers.14.mlp.gate_proj.weight": "model-00002-of-00003.safetensors", + "model.layers.14.mlp.up_proj.weight": "model-00002-of-00003.safetensors", + "model.layers.14.post_attention_layernorm.weight": "model-00002-of-00003.safetensors", + "model.layers.14.self_attn.k_proj.weight": "model-00002-of-00003.safetensors", + "model.layers.14.self_attn.o_proj.weight": "model-00002-of-00003.safetensors", + "model.layers.14.self_attn.q_proj.weight": "model-00002-of-00003.safetensors", + "model.layers.14.self_attn.v_proj.weight": "model-00002-of-00003.safetensors", + "model.layers.15.input_layernorm.weight": "model-00002-of-00003.safetensors", + "model.layers.15.mlp.down_proj.weight": "model-00002-of-00003.safetensors", + "model.layers.15.mlp.gate_proj.weight": "model-00002-of-00003.safetensors", + "model.layers.15.mlp.up_proj.weight": "model-00002-of-00003.safetensors", + "model.layers.15.post_attention_layernorm.weight": "model-00002-of-00003.safetensors", + "model.layers.15.self_attn.k_proj.weight": "model-00002-of-00003.safetensors", + "model.layers.15.self_attn.o_proj.weight": "model-00002-of-00003.safetensors", + "model.layers.15.self_attn.q_proj.weight": "model-00002-of-00003.safetensors", + "model.layers.15.self_attn.v_proj.weight": "model-00002-of-00003.safetensors", + "model.layers.16.input_layernorm.weight": "model-00002-of-00003.safetensors", + "model.layers.16.mlp.down_proj.weight": "model-00002-of-00003.safetensors", + "model.layers.16.mlp.gate_proj.weight": "model-00002-of-00003.safetensors", + "model.layers.16.mlp.up_proj.weight": "model-00002-of-00003.safetensors", + "model.layers.16.post_attention_layernorm.weight": "model-00002-of-00003.safetensors", + "model.layers.16.self_attn.k_proj.weight": "model-00002-of-00003.safetensors", + "model.layers.16.self_attn.o_proj.weight": "model-00002-of-00003.safetensors", + "model.layers.16.self_attn.q_proj.weight": "model-00002-of-00003.safetensors", + "model.layers.16.self_attn.v_proj.weight": "model-00002-of-00003.safetensors", + "model.layers.17.input_layernorm.weight": "model-00002-of-00003.safetensors", + "model.layers.17.mlp.down_proj.weight": "model-00002-of-00003.safetensors", + "model.layers.17.mlp.gate_proj.weight": "model-00002-of-00003.safetensors", + "model.layers.17.mlp.up_proj.weight": "model-00002-of-00003.safetensors", + "model.layers.17.post_attention_layernorm.weight": "model-00002-of-00003.safetensors", + "model.layers.17.self_attn.k_proj.weight": "model-00002-of-00003.safetensors", + "model.layers.17.self_attn.o_proj.weight": "model-00002-of-00003.safetensors", + "model.layers.17.self_attn.q_proj.weight": "model-00002-of-00003.safetensors", + "model.layers.17.self_attn.v_proj.weight": "model-00002-of-00003.safetensors", + "model.layers.18.input_layernorm.weight": "model-00002-of-00003.safetensors", + "model.layers.18.mlp.down_proj.weight": "model-00002-of-00003.safetensors", + "model.layers.18.mlp.gate_proj.weight": "model-00002-of-00003.safetensors", + "model.layers.18.mlp.up_proj.weight": "model-00002-of-00003.safetensors", + "model.layers.18.post_attention_layernorm.weight": "model-00002-of-00003.safetensors", + "model.layers.18.self_attn.k_proj.weight": "model-00002-of-00003.safetensors", + "model.layers.18.self_attn.o_proj.weight": "model-00002-of-00003.safetensors", + "model.layers.18.self_attn.q_proj.weight": "model-00002-of-00003.safetensors", + "model.layers.18.self_attn.v_proj.weight": "model-00002-of-00003.safetensors", + "model.layers.19.input_layernorm.weight": "model-00002-of-00003.safetensors", + "model.layers.19.mlp.down_proj.weight": "model-00002-of-00003.safetensors", + "model.layers.19.mlp.gate_proj.weight": "model-00002-of-00003.safetensors", + "model.layers.19.mlp.up_proj.weight": "model-00002-of-00003.safetensors", + "model.layers.19.post_attention_layernorm.weight": "model-00002-of-00003.safetensors", + "model.layers.19.self_attn.k_proj.weight": "model-00002-of-00003.safetensors", + "model.layers.19.self_attn.o_proj.weight": "model-00002-of-00003.safetensors", + "model.layers.19.self_attn.q_proj.weight": "model-00002-of-00003.safetensors", + "model.layers.19.self_attn.v_proj.weight": "model-00002-of-00003.safetensors", + "model.layers.2.input_layernorm.weight": "model-00001-of-00003.safetensors", + "model.layers.2.mlp.down_proj.weight": "model-00001-of-00003.safetensors", + "model.layers.2.mlp.gate_proj.weight": "model-00001-of-00003.safetensors", + "model.layers.2.mlp.up_proj.weight": "model-00001-of-00003.safetensors", + "model.layers.2.post_attention_layernorm.weight": "model-00001-of-00003.safetensors", + "model.layers.2.self_attn.k_proj.weight": "model-00001-of-00003.safetensors", + "model.layers.2.self_attn.o_proj.weight": "model-00001-of-00003.safetensors", + "model.layers.2.self_attn.q_proj.weight": "model-00001-of-00003.safetensors", + "model.layers.2.self_attn.v_proj.weight": "model-00001-of-00003.safetensors", + "model.layers.20.input_layernorm.weight": "model-00002-of-00003.safetensors", + "model.layers.20.mlp.down_proj.weight": "model-00002-of-00003.safetensors", + "model.layers.20.mlp.gate_proj.weight": "model-00002-of-00003.safetensors", + "model.layers.20.mlp.up_proj.weight": "model-00002-of-00003.safetensors", + "model.layers.20.post_attention_layernorm.weight": "model-00002-of-00003.safetensors", + "model.layers.20.self_attn.k_proj.weight": "model-00002-of-00003.safetensors", + "model.layers.20.self_attn.o_proj.weight": "model-00002-of-00003.safetensors", + "model.layers.20.self_attn.q_proj.weight": "model-00002-of-00003.safetensors", + "model.layers.20.self_attn.v_proj.weight": "model-00002-of-00003.safetensors", + "model.layers.21.input_layernorm.weight": "model-00002-of-00003.safetensors", + "model.layers.21.mlp.down_proj.weight": "model-00002-of-00003.safetensors", + "model.layers.21.mlp.gate_proj.weight": "model-00002-of-00003.safetensors", + "model.layers.21.mlp.up_proj.weight": "model-00002-of-00003.safetensors", + "model.layers.21.post_attention_layernorm.weight": "model-00002-of-00003.safetensors", + "model.layers.21.self_attn.k_proj.weight": "model-00002-of-00003.safetensors", + "model.layers.21.self_attn.o_proj.weight": "model-00002-of-00003.safetensors", + "model.layers.21.self_attn.q_proj.weight": "model-00002-of-00003.safetensors", + "model.layers.21.self_attn.v_proj.weight": "model-00002-of-00003.safetensors", + "model.layers.22.input_layernorm.weight": "model-00002-of-00003.safetensors", + "model.layers.22.mlp.down_proj.weight": "model-00002-of-00003.safetensors", + "model.layers.22.mlp.gate_proj.weight": "model-00002-of-00003.safetensors", + "model.layers.22.mlp.up_proj.weight": "model-00002-of-00003.safetensors", + "model.layers.22.post_attention_layernorm.weight": "model-00002-of-00003.safetensors", + "model.layers.22.self_attn.k_proj.weight": "model-00002-of-00003.safetensors", + "model.layers.22.self_attn.o_proj.weight": "model-00002-of-00003.safetensors", + "model.layers.22.self_attn.q_proj.weight": "model-00002-of-00003.safetensors", + "model.layers.22.self_attn.v_proj.weight": "model-00002-of-00003.safetensors", + "model.layers.23.input_layernorm.weight": "model-00003-of-00003.safetensors", + "model.layers.23.mlp.down_proj.weight": "model-00003-of-00003.safetensors", + "model.layers.23.mlp.gate_proj.weight": "model-00002-of-00003.safetensors", + "model.layers.23.mlp.up_proj.weight": "model-00003-of-00003.safetensors", + "model.layers.23.post_attention_layernorm.weight": "model-00003-of-00003.safetensors", + "model.layers.23.self_attn.k_proj.weight": "model-00002-of-00003.safetensors", + "model.layers.23.self_attn.o_proj.weight": "model-00002-of-00003.safetensors", + "model.layers.23.self_attn.q_proj.weight": "model-00002-of-00003.safetensors", + "model.layers.23.self_attn.v_proj.weight": "model-00002-of-00003.safetensors", + "model.layers.24.input_layernorm.weight": "model-00003-of-00003.safetensors", + "model.layers.24.mlp.down_proj.weight": "model-00003-of-00003.safetensors", + "model.layers.24.mlp.gate_proj.weight": "model-00003-of-00003.safetensors", + "model.layers.24.mlp.up_proj.weight": "model-00003-of-00003.safetensors", + "model.layers.24.post_attention_layernorm.weight": "model-00003-of-00003.safetensors", + "model.layers.24.self_attn.k_proj.weight": "model-00003-of-00003.safetensors", + "model.layers.24.self_attn.o_proj.weight": "model-00003-of-00003.safetensors", + "model.layers.24.self_attn.q_proj.weight": "model-00003-of-00003.safetensors", + "model.layers.24.self_attn.v_proj.weight": "model-00003-of-00003.safetensors", + "model.layers.25.input_layernorm.weight": "model-00003-of-00003.safetensors", + "model.layers.25.mlp.down_proj.weight": "model-00003-of-00003.safetensors", + "model.layers.25.mlp.gate_proj.weight": "model-00003-of-00003.safetensors", + "model.layers.25.mlp.up_proj.weight": "model-00003-of-00003.safetensors", + "model.layers.25.post_attention_layernorm.weight": "model-00003-of-00003.safetensors", + "model.layers.25.self_attn.k_proj.weight": "model-00003-of-00003.safetensors", + "model.layers.25.self_attn.o_proj.weight": "model-00003-of-00003.safetensors", + "model.layers.25.self_attn.q_proj.weight": "model-00003-of-00003.safetensors", + "model.layers.25.self_attn.v_proj.weight": "model-00003-of-00003.safetensors", + "model.layers.26.input_layernorm.weight": "model-00003-of-00003.safetensors", + "model.layers.26.mlp.down_proj.weight": "model-00003-of-00003.safetensors", + "model.layers.26.mlp.gate_proj.weight": "model-00003-of-00003.safetensors", + "model.layers.26.mlp.up_proj.weight": "model-00003-of-00003.safetensors", + "model.layers.26.post_attention_layernorm.weight": "model-00003-of-00003.safetensors", + "model.layers.26.self_attn.k_proj.weight": "model-00003-of-00003.safetensors", + "model.layers.26.self_attn.o_proj.weight": "model-00003-of-00003.safetensors", + "model.layers.26.self_attn.q_proj.weight": "model-00003-of-00003.safetensors", + "model.layers.26.self_attn.v_proj.weight": "model-00003-of-00003.safetensors", + "model.layers.27.input_layernorm.weight": "model-00003-of-00003.safetensors", + "model.layers.27.mlp.down_proj.weight": "model-00003-of-00003.safetensors", + "model.layers.27.mlp.gate_proj.weight": "model-00003-of-00003.safetensors", + "model.layers.27.mlp.up_proj.weight": "model-00003-of-00003.safetensors", + "model.layers.27.post_attention_layernorm.weight": "model-00003-of-00003.safetensors", + "model.layers.27.self_attn.k_proj.weight": "model-00003-of-00003.safetensors", + "model.layers.27.self_attn.o_proj.weight": "model-00003-of-00003.safetensors", + "model.layers.27.self_attn.q_proj.weight": "model-00003-of-00003.safetensors", + "model.layers.27.self_attn.v_proj.weight": "model-00003-of-00003.safetensors", + "model.layers.28.input_layernorm.weight": "model-00003-of-00003.safetensors", + "model.layers.28.mlp.down_proj.weight": "model-00003-of-00003.safetensors", + "model.layers.28.mlp.gate_proj.weight": "model-00003-of-00003.safetensors", + "model.layers.28.mlp.up_proj.weight": "model-00003-of-00003.safetensors", + "model.layers.28.post_attention_layernorm.weight": "model-00003-of-00003.safetensors", + "model.layers.28.self_attn.k_proj.weight": "model-00003-of-00003.safetensors", + "model.layers.28.self_attn.o_proj.weight": "model-00003-of-00003.safetensors", + "model.layers.28.self_attn.q_proj.weight": "model-00003-of-00003.safetensors", + "model.layers.28.self_attn.v_proj.weight": "model-00003-of-00003.safetensors", + "model.layers.29.input_layernorm.weight": "model-00003-of-00003.safetensors", + "model.layers.29.mlp.down_proj.weight": "model-00003-of-00003.safetensors", + "model.layers.29.mlp.gate_proj.weight": "model-00003-of-00003.safetensors", + "model.layers.29.mlp.up_proj.weight": "model-00003-of-00003.safetensors", + "model.layers.29.post_attention_layernorm.weight": "model-00003-of-00003.safetensors", + "model.layers.29.self_attn.k_proj.weight": "model-00003-of-00003.safetensors", + "model.layers.29.self_attn.o_proj.weight": "model-00003-of-00003.safetensors", + "model.layers.29.self_attn.q_proj.weight": "model-00003-of-00003.safetensors", + "model.layers.29.self_attn.v_proj.weight": "model-00003-of-00003.safetensors", + "model.layers.3.input_layernorm.weight": "model-00001-of-00003.safetensors", + "model.layers.3.mlp.down_proj.weight": "model-00001-of-00003.safetensors", + "model.layers.3.mlp.gate_proj.weight": "model-00001-of-00003.safetensors", + "model.layers.3.mlp.up_proj.weight": "model-00001-of-00003.safetensors", + "model.layers.3.post_attention_layernorm.weight": "model-00001-of-00003.safetensors", + "model.layers.3.self_attn.k_proj.weight": "model-00001-of-00003.safetensors", + "model.layers.3.self_attn.o_proj.weight": "model-00001-of-00003.safetensors", + "model.layers.3.self_attn.q_proj.weight": "model-00001-of-00003.safetensors", + "model.layers.3.self_attn.v_proj.weight": "model-00001-of-00003.safetensors", + "model.layers.30.input_layernorm.weight": "model-00003-of-00003.safetensors", + "model.layers.30.mlp.down_proj.weight": "model-00003-of-00003.safetensors", + "model.layers.30.mlp.gate_proj.weight": "model-00003-of-00003.safetensors", + "model.layers.30.mlp.up_proj.weight": "model-00003-of-00003.safetensors", + "model.layers.30.post_attention_layernorm.weight": "model-00003-of-00003.safetensors", + "model.layers.30.self_attn.k_proj.weight": "model-00003-of-00003.safetensors", + "model.layers.30.self_attn.o_proj.weight": "model-00003-of-00003.safetensors", + "model.layers.30.self_attn.q_proj.weight": "model-00003-of-00003.safetensors", + "model.layers.30.self_attn.v_proj.weight": "model-00003-of-00003.safetensors", + "model.layers.31.input_layernorm.weight": "model-00003-of-00003.safetensors", + "model.layers.31.mlp.down_proj.weight": "model-00003-of-00003.safetensors", + "model.layers.31.mlp.gate_proj.weight": "model-00003-of-00003.safetensors", + "model.layers.31.mlp.up_proj.weight": "model-00003-of-00003.safetensors", + "model.layers.31.post_attention_layernorm.weight": "model-00003-of-00003.safetensors", + "model.layers.31.self_attn.k_proj.weight": "model-00003-of-00003.safetensors", + "model.layers.31.self_attn.o_proj.weight": "model-00003-of-00003.safetensors", + "model.layers.31.self_attn.q_proj.weight": "model-00003-of-00003.safetensors", + "model.layers.31.self_attn.v_proj.weight": "model-00003-of-00003.safetensors", + "model.layers.4.input_layernorm.weight": "model-00001-of-00003.safetensors", + "model.layers.4.mlp.down_proj.weight": "model-00001-of-00003.safetensors", + "model.layers.4.mlp.gate_proj.weight": "model-00001-of-00003.safetensors", + "model.layers.4.mlp.up_proj.weight": "model-00001-of-00003.safetensors", + "model.layers.4.post_attention_layernorm.weight": "model-00001-of-00003.safetensors", + "model.layers.4.self_attn.k_proj.weight": "model-00001-of-00003.safetensors", + "model.layers.4.self_attn.o_proj.weight": "model-00001-of-00003.safetensors", + "model.layers.4.self_attn.q_proj.weight": "model-00001-of-00003.safetensors", + "model.layers.4.self_attn.v_proj.weight": "model-00001-of-00003.safetensors", + "model.layers.5.input_layernorm.weight": "model-00001-of-00003.safetensors", + "model.layers.5.mlp.down_proj.weight": "model-00001-of-00003.safetensors", + "model.layers.5.mlp.gate_proj.weight": "model-00001-of-00003.safetensors", + "model.layers.5.mlp.up_proj.weight": "model-00001-of-00003.safetensors", + "model.layers.5.post_attention_layernorm.weight": "model-00001-of-00003.safetensors", + "model.layers.5.self_attn.k_proj.weight": "model-00001-of-00003.safetensors", + "model.layers.5.self_attn.o_proj.weight": "model-00001-of-00003.safetensors", + "model.layers.5.self_attn.q_proj.weight": "model-00001-of-00003.safetensors", + "model.layers.5.self_attn.v_proj.weight": "model-00001-of-00003.safetensors", + "model.layers.6.input_layernorm.weight": "model-00001-of-00003.safetensors", + "model.layers.6.mlp.down_proj.weight": "model-00001-of-00003.safetensors", + "model.layers.6.mlp.gate_proj.weight": "model-00001-of-00003.safetensors", + "model.layers.6.mlp.up_proj.weight": "model-00001-of-00003.safetensors", + "model.layers.6.post_attention_layernorm.weight": "model-00001-of-00003.safetensors", + "model.layers.6.self_attn.k_proj.weight": "model-00001-of-00003.safetensors", + "model.layers.6.self_attn.o_proj.weight": "model-00001-of-00003.safetensors", + "model.layers.6.self_attn.q_proj.weight": "model-00001-of-00003.safetensors", + "model.layers.6.self_attn.v_proj.weight": "model-00001-of-00003.safetensors", + "model.layers.7.input_layernorm.weight": "model-00001-of-00003.safetensors", + "model.layers.7.mlp.down_proj.weight": "model-00001-of-00003.safetensors", + "model.layers.7.mlp.gate_proj.weight": "model-00001-of-00003.safetensors", + "model.layers.7.mlp.up_proj.weight": "model-00001-of-00003.safetensors", + "model.layers.7.post_attention_layernorm.weight": "model-00001-of-00003.safetensors", + "model.layers.7.self_attn.k_proj.weight": "model-00001-of-00003.safetensors", + "model.layers.7.self_attn.o_proj.weight": "model-00001-of-00003.safetensors", + "model.layers.7.self_attn.q_proj.weight": "model-00001-of-00003.safetensors", + "model.layers.7.self_attn.v_proj.weight": "model-00001-of-00003.safetensors", + "model.layers.8.input_layernorm.weight": "model-00001-of-00003.safetensors", + "model.layers.8.mlp.down_proj.weight": "model-00001-of-00003.safetensors", + "model.layers.8.mlp.gate_proj.weight": "model-00001-of-00003.safetensors", + "model.layers.8.mlp.up_proj.weight": "model-00001-of-00003.safetensors", + "model.layers.8.post_attention_layernorm.weight": "model-00001-of-00003.safetensors", + "model.layers.8.self_attn.k_proj.weight": "model-00001-of-00003.safetensors", + "model.layers.8.self_attn.o_proj.weight": "model-00001-of-00003.safetensors", + "model.layers.8.self_attn.q_proj.weight": "model-00001-of-00003.safetensors", + "model.layers.8.self_attn.v_proj.weight": "model-00001-of-00003.safetensors", + "model.layers.9.input_layernorm.weight": "model-00001-of-00003.safetensors", + "model.layers.9.mlp.down_proj.weight": "model-00001-of-00003.safetensors", + "model.layers.9.mlp.gate_proj.weight": "model-00001-of-00003.safetensors", + "model.layers.9.mlp.up_proj.weight": "model-00001-of-00003.safetensors", + "model.layers.9.post_attention_layernorm.weight": "model-00001-of-00003.safetensors", + "model.layers.9.self_attn.k_proj.weight": "model-00001-of-00003.safetensors", + "model.layers.9.self_attn.o_proj.weight": "model-00001-of-00003.safetensors", + "model.layers.9.self_attn.q_proj.weight": "model-00001-of-00003.safetensors", + "model.layers.9.self_attn.v_proj.weight": "model-00001-of-00003.safetensors", + "model.norm.weight": "model-00003-of-00003.safetensors" + } +} diff --git a/special_tokens_map.json b/special_tokens_map.json new file mode 100644 index 0000000..72ecfee --- /dev/null +++ b/special_tokens_map.json @@ -0,0 +1,24 @@ +{ + "bos_token": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false + }, + "eos_token": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false + }, + "pad_token": "", + "unk_token": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false + } +} diff --git a/tokenizer.model b/tokenizer.model new file mode 100644 index 0000000..6c00c74 --- /dev/null +++ b/tokenizer.model @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e556afd44213b6bd1be2b850ebbbd98f5481437a8021afaf58ee7fb1818d347 +size 499723 diff --git a/tokenizer_config.json b/tokenizer_config.json new file mode 100644 index 0000000..b377612 --- /dev/null +++ b/tokenizer_config.json @@ -0,0 +1,80051 @@ +{ + "add_bos_token": true, + "add_eos_token": false, + "add_prefix_space": true, + "added_tokens_decoder": { + "0": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "1": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "2": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "32000": { + "content": "###-0.9999###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32001": { + "content": "###-0.9997###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32002": { + "content": "###-0.9995###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32003": { + "content": "###-0.9993###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32004": { + "content": "###-0.9991###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32005": { + "content": "###-0.9989###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32006": { + "content": "###-0.9987###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32007": { + "content": "###-0.9985###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32008": { + "content": "###-0.9983###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32009": { + "content": "###-0.9981###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32010": { + "content": "###-0.9979###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32011": { + "content": "###-0.9977###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32012": { + "content": "###-0.9975###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32013": { + "content": "###-0.9973###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32014": { + "content": "###-0.9971###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32015": { + "content": "###-0.9969###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32016": { + "content": "###-0.9967###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32017": { + "content": "###-0.9965###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32018": { + "content": "###-0.9963###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32019": { + "content": "###-0.9961###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32020": { + "content": "###-0.9959###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32021": { + "content": "###-0.9957###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32022": { + "content": "###-0.9955###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32023": { + "content": "###-0.9953###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32024": { + "content": "###-0.9951###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32025": { + "content": "###-0.9949###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32026": { + "content": "###-0.9947###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32027": { + "content": "###-0.9945###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32028": { + "content": "###-0.9943###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32029": { + "content": "###-0.9941###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32030": { + "content": "###-0.9939###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32031": { + "content": "###-0.9937###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32032": { + "content": "###-0.9935###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32033": { + "content": "###-0.9933###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32034": { + "content": "###-0.9931###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32035": { + "content": "###-0.9929###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32036": { + "content": "###-0.9927###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32037": { + "content": "###-0.9925###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32038": { + "content": "###-0.9923###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32039": { + "content": "###-0.9921###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32040": { + "content": "###-0.9919###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32041": { + "content": "###-0.9917###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32042": { + "content": "###-0.9915###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32043": { + "content": "###-0.9913###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32044": { + "content": "###-0.9911###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32045": { + "content": "###-0.9909###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32046": { + "content": "###-0.9907###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32047": { + "content": "###-0.9905###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32048": { + "content": "###-0.9903###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32049": { + "content": "###-0.9901###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32050": { + "content": "###-0.9899###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32051": { + "content": "###-0.9897###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32052": { + "content": "###-0.9895###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32053": { + "content": "###-0.9893###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32054": { + "content": "###-0.9891###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32055": { + "content": "###-0.9889###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32056": { + "content": "###-0.9887###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32057": { + "content": "###-0.9885###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32058": { + "content": "###-0.9883###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32059": { + "content": "###-0.9881###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32060": { + "content": "###-0.9879###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32061": { + "content": "###-0.9877###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32062": { + "content": "###-0.9875###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32063": { + "content": "###-0.9873###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32064": { + "content": "###-0.9871###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32065": { + "content": "###-0.9869###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32066": { + "content": "###-0.9867###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32067": { + "content": "###-0.9865###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32068": { + "content": "###-0.9863###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32069": { + "content": "###-0.9861###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32070": { + "content": "###-0.9859###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32071": { + "content": "###-0.9857###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32072": { + "content": "###-0.9855###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32073": { + "content": "###-0.9853###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32074": { + "content": "###-0.9851###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32075": { + "content": "###-0.9849###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32076": { + "content": "###-0.9847###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32077": { + "content": "###-0.9845###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32078": { + "content": "###-0.9843###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32079": { + "content": "###-0.9841###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32080": { + "content": "###-0.9839###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32081": { + "content": "###-0.9837###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32082": { + "content": "###-0.9835###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32083": { + "content": "###-0.9833###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32084": { + "content": "###-0.9831###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32085": { + "content": "###-0.9829###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32086": { + "content": "###-0.9827###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32087": { + "content": "###-0.9825###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32088": { + "content": "###-0.9823###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32089": { + "content": "###-0.9821###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32090": { + "content": "###-0.9819###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32091": { + "content": "###-0.9817###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32092": { + "content": "###-0.9815###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32093": { + "content": "###-0.9813###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32094": { + "content": "###-0.9811###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32095": { + "content": "###-0.9809###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32096": { + "content": "###-0.9807###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32097": { + "content": "###-0.9805###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32098": { + "content": "###-0.9803###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32099": { + "content": "###-0.9801###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32100": { + "content": "###-0.9799###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32101": { + "content": "###-0.9797###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32102": { + "content": "###-0.9795###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32103": { + "content": "###-0.9793###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32104": { + "content": "###-0.9791###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32105": { + "content": "###-0.9789###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32106": { + "content": "###-0.9787###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32107": { + "content": "###-0.9785###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32108": { + "content": "###-0.9783###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32109": { + "content": "###-0.9781###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32110": { + "content": "###-0.9779###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32111": { + "content": "###-0.9777###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32112": { + "content": "###-0.9775###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32113": { + "content": "###-0.9773###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32114": { + "content": "###-0.9771###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32115": { + "content": "###-0.9769###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32116": { + "content": "###-0.9767###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32117": { + "content": "###-0.9765###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32118": { + "content": "###-0.9763###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32119": { + "content": "###-0.9761###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32120": { + "content": "###-0.9759###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32121": { + "content": "###-0.9757###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32122": { + "content": "###-0.9755###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32123": { + "content": "###-0.9753###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32124": { + "content": "###-0.9751###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32125": { + "content": "###-0.9749###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32126": { + "content": "###-0.9747###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32127": { + "content": "###-0.9745###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32128": { + "content": "###-0.9743###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32129": { + "content": "###-0.9741###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32130": { + "content": "###-0.9739###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32131": { + "content": "###-0.9737###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32132": { + "content": "###-0.9735###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32133": { + "content": "###-0.9733###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32134": { + "content": "###-0.9731###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32135": { + "content": "###-0.9729###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32136": { + "content": "###-0.9727###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32137": { + "content": "###-0.9725###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32138": { + "content": "###-0.9723###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32139": { + "content": "###-0.9721###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32140": { + "content": "###-0.9719###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32141": { + "content": "###-0.9717###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32142": { + "content": "###-0.9715###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32143": { + "content": "###-0.9713###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32144": { + "content": "###-0.9711###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32145": { + "content": "###-0.9709###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32146": { + "content": "###-0.9707###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32147": { + "content": "###-0.9705###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32148": { + "content": "###-0.9703###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32149": { + "content": "###-0.9701###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32150": { + "content": "###-0.9699###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32151": { + "content": "###-0.9697###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32152": { + "content": "###-0.9695###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32153": { + "content": "###-0.9693###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32154": { + "content": "###-0.9691###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32155": { + "content": "###-0.9689###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32156": { + "content": "###-0.9687###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32157": { + "content": "###-0.9685###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32158": { + "content": "###-0.9683###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32159": { + "content": "###-0.9681###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32160": { + "content": "###-0.9679###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32161": { + "content": "###-0.9677###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32162": { + "content": "###-0.9675###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32163": { + "content": "###-0.9673###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32164": { + "content": "###-0.9671###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32165": { + "content": "###-0.9669###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32166": { + "content": "###-0.9667###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32167": { + "content": "###-0.9665###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32168": { + "content": "###-0.9663###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32169": { + "content": "###-0.9661###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32170": { + "content": "###-0.9659###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32171": { + "content": "###-0.9657###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32172": { + "content": "###-0.9655###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32173": { + "content": "###-0.9653###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32174": { + "content": "###-0.9651###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32175": { + "content": "###-0.9649###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32176": { + "content": "###-0.9647###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32177": { + "content": "###-0.9645###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32178": { + "content": "###-0.9643###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32179": { + "content": "###-0.9641###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32180": { + "content": "###-0.9639###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32181": { + "content": "###-0.9637###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32182": { + "content": "###-0.9635###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32183": { + "content": "###-0.9633###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32184": { + "content": "###-0.9631###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32185": { + "content": "###-0.9629###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32186": { + "content": "###-0.9627###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32187": { + "content": "###-0.9625###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32188": { + "content": "###-0.9623###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32189": { + "content": "###-0.9621###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32190": { + "content": "###-0.9619###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32191": { + "content": "###-0.9617###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32192": { + "content": "###-0.9615###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32193": { + "content": "###-0.9613###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32194": { + "content": "###-0.9611###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32195": { + "content": "###-0.9609###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32196": { + "content": "###-0.9607###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32197": { + "content": "###-0.9605###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32198": { + "content": "###-0.9603###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32199": { + "content": "###-0.9601###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32200": { + "content": "###-0.9599###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32201": { + "content": "###-0.9597###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32202": { + "content": "###-0.9595###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32203": { + "content": "###-0.9593###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32204": { + "content": "###-0.9591###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32205": { + "content": "###-0.9589###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32206": { + "content": "###-0.9587###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32207": { + "content": "###-0.9585###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32208": { + "content": "###-0.9583###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32209": { + "content": "###-0.9581###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32210": { + "content": "###-0.9579###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32211": { + "content": "###-0.9577###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32212": { + "content": "###-0.9575###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32213": { + "content": "###-0.9573###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32214": { + "content": "###-0.9571###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32215": { + "content": "###-0.9569###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32216": { + "content": "###-0.9567###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32217": { + "content": "###-0.9565###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32218": { + "content": "###-0.9563###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32219": { + "content": "###-0.9561###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32220": { + "content": "###-0.9559###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32221": { + "content": "###-0.9557###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32222": { + "content": "###-0.9555###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32223": { + "content": "###-0.9553###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32224": { + "content": "###-0.9551###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32225": { + "content": "###-0.9549###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32226": { + "content": "###-0.9547###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32227": { + "content": "###-0.9545###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32228": { + "content": "###-0.9543###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32229": { + "content": "###-0.9541###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32230": { + "content": "###-0.9539###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32231": { + "content": "###-0.9537###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32232": { + "content": "###-0.9535###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32233": { + "content": "###-0.9533###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32234": { + "content": "###-0.9531###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32235": { + "content": "###-0.9529###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32236": { + "content": "###-0.9527###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32237": { + "content": "###-0.9525###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32238": { + "content": "###-0.9523###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32239": { + "content": "###-0.9521###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32240": { + "content": "###-0.9519###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32241": { + "content": "###-0.9517###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32242": { + "content": "###-0.9515###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32243": { + "content": "###-0.9513###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32244": { + "content": "###-0.9511###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32245": { + "content": "###-0.9509###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32246": { + "content": "###-0.9507###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32247": { + "content": "###-0.9505###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32248": { + "content": "###-0.9503###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32249": { + "content": "###-0.9501###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32250": { + "content": "###-0.9499###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32251": { + "content": "###-0.9497###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32252": { + "content": "###-0.9495###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32253": { + "content": "###-0.9493###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32254": { + "content": "###-0.9491###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32255": { + "content": "###-0.9489###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32256": { + "content": "###-0.9487###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32257": { + "content": "###-0.9485###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32258": { + "content": "###-0.9483###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32259": { + "content": "###-0.9481###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32260": { + "content": "###-0.9479###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32261": { + "content": "###-0.9477###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32262": { + "content": "###-0.9475###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32263": { + "content": "###-0.9473###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32264": { + "content": "###-0.9471###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32265": { + "content": "###-0.9469###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32266": { + "content": "###-0.9467###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32267": { + "content": "###-0.9465###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32268": { + "content": "###-0.9463###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32269": { + "content": "###-0.9461###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32270": { + "content": "###-0.9459###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32271": { + "content": "###-0.9457###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32272": { + "content": "###-0.9455###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32273": { + "content": "###-0.9453###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32274": { + "content": "###-0.9451###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32275": { + "content": "###-0.9449###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32276": { + "content": "###-0.9447###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32277": { + "content": "###-0.9445###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32278": { + "content": "###-0.9443###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32279": { + "content": "###-0.9441###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32280": { + "content": "###-0.9439###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32281": { + "content": "###-0.9437###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32282": { + "content": "###-0.9435###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32283": { + "content": "###-0.9433###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32284": { + "content": "###-0.9431###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32285": { + "content": "###-0.9429###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32286": { + "content": "###-0.9427###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32287": { + "content": "###-0.9425###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32288": { + "content": "###-0.9423###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32289": { + "content": "###-0.9421###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32290": { + "content": "###-0.9419###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32291": { + "content": "###-0.9417###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32292": { + "content": "###-0.9415###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32293": { + "content": "###-0.9413###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32294": { + "content": "###-0.9411###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32295": { + "content": "###-0.9409###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32296": { + "content": "###-0.9407###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32297": { + "content": "###-0.9405###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32298": { + "content": "###-0.9403###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32299": { + "content": "###-0.9401###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32300": { + "content": "###-0.9399###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32301": { + "content": "###-0.9397###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32302": { + "content": "###-0.9395###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32303": { + "content": "###-0.9393###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32304": { + "content": "###-0.9391###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32305": { + "content": "###-0.9389###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32306": { + "content": "###-0.9387###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32307": { + "content": "###-0.9385###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32308": { + "content": "###-0.9383###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32309": { + "content": "###-0.9381###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32310": { + "content": "###-0.9379###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32311": { + "content": "###-0.9377###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32312": { + "content": "###-0.9375###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32313": { + "content": "###-0.9373###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32314": { + "content": "###-0.9371###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32315": { + "content": "###-0.9369###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32316": { + "content": "###-0.9367###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32317": { + "content": "###-0.9365###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32318": { + "content": "###-0.9363###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32319": { + "content": "###-0.9361###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32320": { + "content": "###-0.9359###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32321": { + "content": "###-0.9357###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32322": { + "content": "###-0.9355###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32323": { + "content": "###-0.9353###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32324": { + "content": "###-0.9351###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32325": { + "content": "###-0.9349###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32326": { + "content": "###-0.9347###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32327": { + "content": "###-0.9345###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32328": { + "content": "###-0.9343###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32329": { + "content": "###-0.9341###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32330": { + "content": "###-0.9339###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32331": { + "content": "###-0.9337###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32332": { + "content": "###-0.9335###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32333": { + "content": "###-0.9333###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32334": { + "content": "###-0.9331###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32335": { + "content": "###-0.9329###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32336": { + "content": "###-0.9327###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32337": { + "content": "###-0.9325###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32338": { + "content": "###-0.9323###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32339": { + "content": "###-0.9321###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32340": { + "content": "###-0.9319###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32341": { + "content": "###-0.9317###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32342": { + "content": "###-0.9315###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32343": { + "content": "###-0.9313###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32344": { + "content": "###-0.9311###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32345": { + "content": "###-0.9309###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32346": { + "content": "###-0.9307###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32347": { + "content": "###-0.9305###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32348": { + "content": "###-0.9303###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32349": { + "content": "###-0.9301###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32350": { + "content": "###-0.9299###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32351": { + "content": "###-0.9297###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32352": { + "content": "###-0.9295###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32353": { + "content": "###-0.9293###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32354": { + "content": "###-0.9291###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32355": { + "content": "###-0.9289###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32356": { + "content": "###-0.9287###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32357": { + "content": "###-0.9285###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32358": { + "content": "###-0.9283###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32359": { + "content": "###-0.9281###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32360": { + "content": "###-0.9279###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32361": { + "content": "###-0.9277###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32362": { + "content": "###-0.9275###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32363": { + "content": "###-0.9273###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32364": { + "content": "###-0.9271###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32365": { + "content": "###-0.9269###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32366": { + "content": "###-0.9267###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32367": { + "content": "###-0.9265###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32368": { + "content": "###-0.9263###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32369": { + "content": "###-0.9261###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32370": { + "content": "###-0.9259###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32371": { + "content": "###-0.9257###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32372": { + "content": "###-0.9255###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32373": { + "content": "###-0.9253###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32374": { + "content": "###-0.9251###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32375": { + "content": "###-0.9249###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32376": { + "content": "###-0.9247###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32377": { + "content": "###-0.9245###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32378": { + "content": "###-0.9243###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32379": { + "content": "###-0.9241###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32380": { + "content": "###-0.9239###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32381": { + "content": "###-0.9237###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32382": { + "content": "###-0.9235###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32383": { + "content": "###-0.9233###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32384": { + "content": "###-0.9231###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32385": { + "content": "###-0.9229###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32386": { + "content": "###-0.9227###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32387": { + "content": "###-0.9225###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32388": { + "content": "###-0.9223###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32389": { + "content": "###-0.9221###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32390": { + "content": "###-0.9219###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32391": { + "content": "###-0.9217###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32392": { + "content": "###-0.9215###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32393": { + "content": "###-0.9213###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32394": { + "content": "###-0.9211###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32395": { + "content": "###-0.9209###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32396": { + "content": "###-0.9207###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32397": { + "content": "###-0.9205###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32398": { + "content": "###-0.9203###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32399": { + "content": "###-0.9201###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32400": { + "content": "###-0.9199###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32401": { + "content": "###-0.9197###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32402": { + "content": "###-0.9195###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32403": { + "content": "###-0.9193###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32404": { + "content": "###-0.9191###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32405": { + "content": "###-0.9189###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32406": { + "content": "###-0.9187###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32407": { + "content": "###-0.9185###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32408": { + "content": "###-0.9183###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32409": { + "content": "###-0.9181###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32410": { + "content": "###-0.9179###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32411": { + "content": "###-0.9177###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32412": { + "content": "###-0.9175###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32413": { + "content": "###-0.9173###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32414": { + "content": "###-0.9171###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32415": { + "content": "###-0.9169###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32416": { + "content": "###-0.9167###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32417": { + "content": "###-0.9165###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32418": { + "content": "###-0.9163###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32419": { + "content": "###-0.9161###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32420": { + "content": "###-0.9159###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32421": { + "content": "###-0.9157###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32422": { + "content": "###-0.9155###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32423": { + "content": "###-0.9153###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32424": { + "content": "###-0.9151###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32425": { + "content": "###-0.9149###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32426": { + "content": "###-0.9147###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32427": { + "content": "###-0.9145###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32428": { + "content": "###-0.9143###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32429": { + "content": "###-0.9141###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32430": { + "content": "###-0.9139###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32431": { + "content": "###-0.9137###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32432": { + "content": "###-0.9135###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32433": { + "content": "###-0.9133###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32434": { + "content": "###-0.9131###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32435": { + "content": "###-0.9129###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32436": { + "content": "###-0.9127###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32437": { + "content": "###-0.9125###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32438": { + "content": "###-0.9123###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32439": { + "content": "###-0.9121###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32440": { + "content": "###-0.9119###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32441": { + "content": "###-0.9117###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32442": { + "content": "###-0.9115###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32443": { + "content": "###-0.9113###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32444": { + "content": "###-0.9111###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32445": { + "content": "###-0.9109###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32446": { + "content": "###-0.9107###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32447": { + "content": "###-0.9105###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32448": { + "content": "###-0.9103###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32449": { + "content": "###-0.9101###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32450": { + "content": "###-0.9099###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32451": { + "content": "###-0.9097###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32452": { + "content": "###-0.9095###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32453": { + "content": "###-0.9093###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32454": { + "content": "###-0.9091###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32455": { + "content": "###-0.9089###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32456": { + "content": "###-0.9087###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32457": { + "content": "###-0.9085###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32458": { + "content": "###-0.9083###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32459": { + "content": "###-0.9081###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32460": { + "content": "###-0.9079###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32461": { + "content": "###-0.9077###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32462": { + "content": "###-0.9075###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32463": { + "content": "###-0.9073###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32464": { + "content": "###-0.9071###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32465": { + "content": "###-0.9069###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32466": { + "content": "###-0.9067###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32467": { + "content": "###-0.9065###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32468": { + "content": "###-0.9063###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32469": { + "content": "###-0.9061###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32470": { + "content": "###-0.9059###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32471": { + "content": "###-0.9057###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32472": { + "content": "###-0.9055###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32473": { + "content": "###-0.9053###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32474": { + "content": "###-0.9051###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32475": { + "content": "###-0.9049###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32476": { + "content": "###-0.9047###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32477": { + "content": "###-0.9045###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32478": { + "content": "###-0.9043###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32479": { + "content": "###-0.9041###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32480": { + "content": "###-0.9039###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32481": { + "content": "###-0.9037###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32482": { + "content": "###-0.9035###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32483": { + "content": "###-0.9033###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32484": { + "content": "###-0.9031###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32485": { + "content": "###-0.9029###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32486": { + "content": "###-0.9027###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32487": { + "content": "###-0.9025###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32488": { + "content": "###-0.9023###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32489": { + "content": "###-0.9021###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32490": { + "content": "###-0.9019###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32491": { + "content": "###-0.9017###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32492": { + "content": "###-0.9015###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32493": { + "content": "###-0.9013###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32494": { + "content": "###-0.9011###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32495": { + "content": "###-0.9009###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32496": { + "content": "###-0.9007###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32497": { + "content": "###-0.9005###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32498": { + "content": "###-0.9003###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32499": { + "content": "###-0.9001###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32500": { + "content": "###-0.8999###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32501": { + "content": "###-0.8997###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32502": { + "content": "###-0.8995###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32503": { + "content": "###-0.8993###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32504": { + "content": "###-0.8991###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32505": { + "content": "###-0.8989###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32506": { + "content": "###-0.8987###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32507": { + "content": "###-0.8985###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32508": { + "content": "###-0.8983###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32509": { + "content": "###-0.8981###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32510": { + "content": "###-0.8979###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32511": { + "content": "###-0.8977###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32512": { + "content": "###-0.8975###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32513": { + "content": "###-0.8973###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32514": { + "content": "###-0.8971###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32515": { + "content": "###-0.8969###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32516": { + "content": "###-0.8967###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32517": { + "content": "###-0.8965###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32518": { + "content": "###-0.8963###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32519": { + "content": "###-0.8961###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32520": { + "content": "###-0.8959###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32521": { + "content": "###-0.8957###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32522": { + "content": "###-0.8955###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32523": { + "content": "###-0.8953###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32524": { + "content": "###-0.8951###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32525": { + "content": "###-0.8949###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32526": { + "content": "###-0.8947###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32527": { + "content": "###-0.8945###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32528": { + "content": "###-0.8943###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32529": { + "content": "###-0.8941###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32530": { + "content": "###-0.8939###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32531": { + "content": "###-0.8937###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32532": { + "content": "###-0.8935###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32533": { + "content": "###-0.8933###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32534": { + "content": "###-0.8931###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32535": { + "content": "###-0.8929###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32536": { + "content": "###-0.8927###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32537": { + "content": "###-0.8925###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32538": { + "content": "###-0.8923###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32539": { + "content": "###-0.8921###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32540": { + "content": "###-0.8919###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32541": { + "content": "###-0.8917###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32542": { + "content": "###-0.8915###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32543": { + "content": "###-0.8913###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32544": { + "content": "###-0.8911###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32545": { + "content": "###-0.8909###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32546": { + "content": "###-0.8907###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32547": { + "content": "###-0.8905###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32548": { + "content": "###-0.8903###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32549": { + "content": "###-0.8901###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32550": { + "content": "###-0.8899###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32551": { + "content": "###-0.8897###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32552": { + "content": "###-0.8895###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32553": { + "content": "###-0.8893###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32554": { + "content": "###-0.8891###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32555": { + "content": "###-0.8889###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32556": { + "content": "###-0.8887###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32557": { + "content": "###-0.8885###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32558": { + "content": "###-0.8883###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32559": { + "content": "###-0.8881###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32560": { + "content": "###-0.8879###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32561": { + "content": "###-0.8877###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32562": { + "content": "###-0.8875###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32563": { + "content": "###-0.8873###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32564": { + "content": "###-0.8871###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32565": { + "content": "###-0.8869###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32566": { + "content": "###-0.8867###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32567": { + "content": "###-0.8865###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32568": { + "content": "###-0.8863###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32569": { + "content": "###-0.8861###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32570": { + "content": "###-0.8859###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32571": { + "content": "###-0.8857###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32572": { + "content": "###-0.8855###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32573": { + "content": "###-0.8853###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32574": { + "content": "###-0.8851###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32575": { + "content": "###-0.8849###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32576": { + "content": "###-0.8847###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32577": { + "content": "###-0.8845###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32578": { + "content": "###-0.8843###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32579": { + "content": "###-0.8841###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32580": { + "content": "###-0.8839###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32581": { + "content": "###-0.8837###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32582": { + "content": "###-0.8835###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32583": { + "content": "###-0.8833###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32584": { + "content": "###-0.8831###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32585": { + "content": "###-0.8829###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32586": { + "content": "###-0.8827###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32587": { + "content": "###-0.8825###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32588": { + "content": "###-0.8823###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32589": { + "content": "###-0.8821###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32590": { + "content": "###-0.8819###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32591": { + "content": "###-0.8817###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32592": { + "content": "###-0.8815###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32593": { + "content": "###-0.8813###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32594": { + "content": "###-0.8811###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32595": { + "content": "###-0.8809###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32596": { + "content": "###-0.8807###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32597": { + "content": "###-0.8805###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32598": { + "content": "###-0.8803###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32599": { + "content": "###-0.8801###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32600": { + "content": "###-0.8799###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32601": { + "content": "###-0.8797###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32602": { + "content": "###-0.8795###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32603": { + "content": "###-0.8793###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32604": { + "content": "###-0.8791###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32605": { + "content": "###-0.8789###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32606": { + "content": "###-0.8787###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32607": { + "content": "###-0.8785###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32608": { + "content": "###-0.8783###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32609": { + "content": "###-0.8781###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32610": { + "content": "###-0.8779###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32611": { + "content": "###-0.8777###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32612": { + "content": "###-0.8775###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32613": { + "content": "###-0.8773###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32614": { + "content": "###-0.8771###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32615": { + "content": "###-0.8769###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32616": { + "content": "###-0.8767###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32617": { + "content": "###-0.8765###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32618": { + "content": "###-0.8763###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32619": { + "content": "###-0.8761###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32620": { + "content": "###-0.8759###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32621": { + "content": "###-0.8757###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32622": { + "content": "###-0.8755###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32623": { + "content": "###-0.8753###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32624": { + "content": "###-0.8751###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32625": { + "content": "###-0.8749###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32626": { + "content": "###-0.8747###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32627": { + "content": "###-0.8745###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32628": { + "content": "###-0.8743###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32629": { + "content": "###-0.8741###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32630": { + "content": "###-0.8739###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32631": { + "content": "###-0.8737###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32632": { + "content": "###-0.8735###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32633": { + "content": "###-0.8733###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32634": { + "content": "###-0.8731###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32635": { + "content": "###-0.8729###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32636": { + "content": "###-0.8727###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32637": { + "content": "###-0.8725###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32638": { + "content": "###-0.8723###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32639": { + "content": "###-0.8721###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32640": { + "content": "###-0.8719###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32641": { + "content": "###-0.8717###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32642": { + "content": "###-0.8715###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32643": { + "content": "###-0.8713###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32644": { + "content": "###-0.8711###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32645": { + "content": "###-0.8709###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32646": { + "content": "###-0.8707###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32647": { + "content": "###-0.8705###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32648": { + "content": "###-0.8703###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32649": { + "content": "###-0.8701###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32650": { + "content": "###-0.8699###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32651": { + "content": "###-0.8697###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32652": { + "content": "###-0.8695###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32653": { + "content": "###-0.8693###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32654": { + "content": "###-0.8691###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32655": { + "content": "###-0.8689###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32656": { + "content": "###-0.8687###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32657": { + "content": "###-0.8685###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32658": { + "content": "###-0.8683###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32659": { + "content": "###-0.8681###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32660": { + "content": "###-0.8679###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32661": { + "content": "###-0.8677###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32662": { + "content": "###-0.8675###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32663": { + "content": "###-0.8673###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32664": { + "content": "###-0.8671###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32665": { + "content": "###-0.8669###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32666": { + "content": "###-0.8667###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32667": { + "content": "###-0.8665###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32668": { + "content": "###-0.8663###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32669": { + "content": "###-0.8661###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32670": { + "content": "###-0.8659###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32671": { + "content": "###-0.8657###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32672": { + "content": "###-0.8655###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32673": { + "content": "###-0.8653###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32674": { + "content": "###-0.8651###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32675": { + "content": "###-0.8649###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32676": { + "content": "###-0.8647###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32677": { + "content": "###-0.8645###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32678": { + "content": "###-0.8643###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32679": { + "content": "###-0.8641###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32680": { + "content": "###-0.8639###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32681": { + "content": "###-0.8637###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32682": { + "content": "###-0.8635###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32683": { + "content": "###-0.8633###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32684": { + "content": "###-0.8631###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32685": { + "content": "###-0.8629###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32686": { + "content": "###-0.8627###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32687": { + "content": "###-0.8625###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32688": { + "content": "###-0.8623###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32689": { + "content": "###-0.8621###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32690": { + "content": "###-0.8619###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32691": { + "content": "###-0.8617###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32692": { + "content": "###-0.8615###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32693": { + "content": "###-0.8613###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32694": { + "content": "###-0.8611###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32695": { + "content": "###-0.8609###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32696": { + "content": "###-0.8607###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32697": { + "content": "###-0.8605###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32698": { + "content": "###-0.8603###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32699": { + "content": "###-0.8601###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32700": { + "content": "###-0.8599###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32701": { + "content": "###-0.8597###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32702": { + "content": "###-0.8595###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32703": { + "content": "###-0.8593###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32704": { + "content": "###-0.8591###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32705": { + "content": "###-0.8589###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32706": { + "content": "###-0.8587###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32707": { + "content": "###-0.8585###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32708": { + "content": "###-0.8583###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32709": { + "content": "###-0.8581###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32710": { + "content": "###-0.8579###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32711": { + "content": "###-0.8577###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32712": { + "content": "###-0.8575###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32713": { + "content": "###-0.8573###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32714": { + "content": "###-0.8571###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32715": { + "content": "###-0.8569###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32716": { + "content": "###-0.8567###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32717": { + "content": "###-0.8565###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32718": { + "content": "###-0.8563###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32719": { + "content": "###-0.8561###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32720": { + "content": "###-0.8559###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32721": { + "content": "###-0.8557###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32722": { + "content": "###-0.8555###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32723": { + "content": "###-0.8553###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32724": { + "content": "###-0.8551###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32725": { + "content": "###-0.8549###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32726": { + "content": "###-0.8547###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32727": { + "content": "###-0.8545###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32728": { + "content": "###-0.8543###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32729": { + "content": "###-0.8541###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32730": { + "content": "###-0.8539###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32731": { + "content": "###-0.8537###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32732": { + "content": "###-0.8535###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32733": { + "content": "###-0.8533###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32734": { + "content": "###-0.8531###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32735": { + "content": "###-0.8529###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32736": { + "content": "###-0.8527###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32737": { + "content": "###-0.8525###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32738": { + "content": "###-0.8523###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32739": { + "content": "###-0.8521###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32740": { + "content": "###-0.8519###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32741": { + "content": "###-0.8517###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32742": { + "content": "###-0.8515###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32743": { + "content": "###-0.8513###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32744": { + "content": "###-0.8511###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32745": { + "content": "###-0.8509###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32746": { + "content": "###-0.8507###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32747": { + "content": "###-0.8505###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32748": { + "content": "###-0.8503###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32749": { + "content": "###-0.8501###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32750": { + "content": "###-0.8499###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32751": { + "content": "###-0.8497###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32752": { + "content": "###-0.8495###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32753": { + "content": "###-0.8493###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32754": { + "content": "###-0.8491###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32755": { + "content": "###-0.8489###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32756": { + "content": "###-0.8487###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32757": { + "content": "###-0.8485###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32758": { + "content": "###-0.8483###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32759": { + "content": "###-0.8481###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32760": { + "content": "###-0.8479###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32761": { + "content": "###-0.8477###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32762": { + "content": "###-0.8475###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32763": { + "content": "###-0.8473###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32764": { + "content": "###-0.8471###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32765": { + "content": "###-0.8469###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32766": { + "content": "###-0.8467###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32767": { + "content": "###-0.8465###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32768": { + "content": "###-0.8463###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32769": { + "content": "###-0.8461###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32770": { + "content": "###-0.8459###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32771": { + "content": "###-0.8457###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32772": { + "content": "###-0.8455###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32773": { + "content": "###-0.8453###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32774": { + "content": "###-0.8451###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32775": { + "content": "###-0.8449###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32776": { + "content": "###-0.8447###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32777": { + "content": "###-0.8445###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32778": { + "content": "###-0.8443###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32779": { + "content": "###-0.8441###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32780": { + "content": "###-0.8439###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32781": { + "content": "###-0.8437###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32782": { + "content": "###-0.8435###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32783": { + "content": "###-0.8433###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32784": { + "content": "###-0.8431###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32785": { + "content": "###-0.8429###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32786": { + "content": "###-0.8427###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32787": { + "content": "###-0.8425###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32788": { + "content": "###-0.8423###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32789": { + "content": "###-0.8421###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32790": { + "content": "###-0.8419###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32791": { + "content": "###-0.8417###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32792": { + "content": "###-0.8415###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32793": { + "content": "###-0.8413###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32794": { + "content": "###-0.8411###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32795": { + "content": "###-0.8409###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32796": { + "content": "###-0.8407###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32797": { + "content": "###-0.8405###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32798": { + "content": "###-0.8403###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32799": { + "content": "###-0.8401###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32800": { + "content": "###-0.8399###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32801": { + "content": "###-0.8397###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32802": { + "content": "###-0.8395###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32803": { + "content": "###-0.8393###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32804": { + "content": "###-0.8391###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32805": { + "content": "###-0.8389###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32806": { + "content": "###-0.8387###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32807": { + "content": "###-0.8385###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32808": { + "content": "###-0.8383###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32809": { + "content": "###-0.8381###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32810": { + "content": "###-0.8379###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32811": { + "content": "###-0.8377###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32812": { + "content": "###-0.8375###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32813": { + "content": "###-0.8373###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32814": { + "content": "###-0.8371###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32815": { + "content": "###-0.8369###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32816": { + "content": "###-0.8367###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32817": { + "content": "###-0.8365###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32818": { + "content": "###-0.8363###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32819": { + "content": "###-0.8361###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32820": { + "content": "###-0.8359###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32821": { + "content": "###-0.8357###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32822": { + "content": "###-0.8355###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32823": { + "content": "###-0.8353###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32824": { + "content": "###-0.8351###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32825": { + "content": "###-0.8349###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32826": { + "content": "###-0.8347###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32827": { + "content": "###-0.8345###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32828": { + "content": "###-0.8343###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32829": { + "content": "###-0.8341###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32830": { + "content": "###-0.8339###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32831": { + "content": "###-0.8337###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32832": { + "content": "###-0.8335###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32833": { + "content": "###-0.8333###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32834": { + "content": "###-0.8331###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32835": { + "content": "###-0.8329###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32836": { + "content": "###-0.8327###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32837": { + "content": "###-0.8325###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32838": { + "content": "###-0.8323###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32839": { + "content": "###-0.8321###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32840": { + "content": "###-0.8319###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32841": { + "content": "###-0.8317###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32842": { + "content": "###-0.8315###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32843": { + "content": "###-0.8313###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32844": { + "content": "###-0.8311###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32845": { + "content": "###-0.8309###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32846": { + "content": "###-0.8307###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32847": { + "content": "###-0.8305###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32848": { + "content": "###-0.8303###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32849": { + "content": "###-0.8301###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32850": { + "content": "###-0.8299###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32851": { + "content": "###-0.8297###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32852": { + "content": "###-0.8295###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32853": { + "content": "###-0.8293###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32854": { + "content": "###-0.8291###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32855": { + "content": "###-0.8289###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32856": { + "content": "###-0.8287###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32857": { + "content": "###-0.8285###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32858": { + "content": "###-0.8283###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32859": { + "content": "###-0.8281###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32860": { + "content": "###-0.8279###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32861": { + "content": "###-0.8277###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32862": { + "content": "###-0.8275###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32863": { + "content": "###-0.8273###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32864": { + "content": "###-0.8271###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32865": { + "content": "###-0.8269###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32866": { + "content": "###-0.8267###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32867": { + "content": "###-0.8265###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32868": { + "content": "###-0.8263###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32869": { + "content": "###-0.8261###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32870": { + "content": "###-0.8259###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32871": { + "content": "###-0.8257###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32872": { + "content": "###-0.8255###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32873": { + "content": "###-0.8253###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32874": { + "content": "###-0.8251###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32875": { + "content": "###-0.8249###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32876": { + "content": "###-0.8247###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32877": { + "content": "###-0.8245###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32878": { + "content": "###-0.8243###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32879": { + "content": "###-0.8241###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32880": { + "content": "###-0.8239###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32881": { + "content": "###-0.8237###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32882": { + "content": "###-0.8235###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32883": { + "content": "###-0.8233###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32884": { + "content": "###-0.8231###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32885": { + "content": "###-0.8229###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32886": { + "content": "###-0.8227###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32887": { + "content": "###-0.8225###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32888": { + "content": "###-0.8223###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32889": { + "content": "###-0.8221###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32890": { + "content": "###-0.8219###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32891": { + "content": "###-0.8217###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32892": { + "content": "###-0.8215###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32893": { + "content": "###-0.8213###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32894": { + "content": "###-0.8211###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32895": { + "content": "###-0.8209###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32896": { + "content": "###-0.8207###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32897": { + "content": "###-0.8205###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32898": { + "content": "###-0.8203###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32899": { + "content": "###-0.8201###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32900": { + "content": "###-0.8199###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32901": { + "content": "###-0.8197###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32902": { + "content": "###-0.8195###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32903": { + "content": "###-0.8193###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32904": { + "content": "###-0.8191###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32905": { + "content": "###-0.8189###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32906": { + "content": "###-0.8187###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32907": { + "content": "###-0.8185###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32908": { + "content": "###-0.8183###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32909": { + "content": "###-0.8181###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32910": { + "content": "###-0.8179###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32911": { + "content": "###-0.8177###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32912": { + "content": "###-0.8175###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32913": { + "content": "###-0.8173###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32914": { + "content": "###-0.8171###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32915": { + "content": "###-0.8169###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32916": { + "content": "###-0.8167###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32917": { + "content": "###-0.8165###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32918": { + "content": "###-0.8163###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32919": { + "content": "###-0.8161###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32920": { + "content": "###-0.8159###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32921": { + "content": "###-0.8157###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32922": { + "content": "###-0.8155###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32923": { + "content": "###-0.8153###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32924": { + "content": "###-0.8151###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32925": { + "content": "###-0.8149###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32926": { + "content": "###-0.8147###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32927": { + "content": "###-0.8145###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32928": { + "content": "###-0.8143###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32929": { + "content": "###-0.8141###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32930": { + "content": "###-0.8139###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32931": { + "content": "###-0.8137###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32932": { + "content": "###-0.8135###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32933": { + "content": "###-0.8133###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32934": { + "content": "###-0.8131###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32935": { + "content": "###-0.8129###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32936": { + "content": "###-0.8127###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32937": { + "content": "###-0.8125###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32938": { + "content": "###-0.8123###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32939": { + "content": "###-0.8121###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32940": { + "content": "###-0.8119###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32941": { + "content": "###-0.8117###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32942": { + "content": "###-0.8115###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32943": { + "content": "###-0.8113###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32944": { + "content": "###-0.8111###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32945": { + "content": "###-0.8109###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32946": { + "content": "###-0.8107###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32947": { + "content": "###-0.8105###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32948": { + "content": "###-0.8103###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32949": { + "content": "###-0.8101###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32950": { + "content": "###-0.8099###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32951": { + "content": "###-0.8097###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32952": { + "content": "###-0.8095###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32953": { + "content": "###-0.8093###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32954": { + "content": "###-0.8091###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32955": { + "content": "###-0.8089###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32956": { + "content": "###-0.8087###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32957": { + "content": "###-0.8085###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32958": { + "content": "###-0.8083###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32959": { + "content": "###-0.8081###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32960": { + "content": "###-0.8079###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32961": { + "content": "###-0.8077###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32962": { + "content": "###-0.8075###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32963": { + "content": "###-0.8073###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32964": { + "content": "###-0.8071###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32965": { + "content": "###-0.8069###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32966": { + "content": "###-0.8067###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32967": { + "content": "###-0.8065###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32968": { + "content": "###-0.8063###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32969": { + "content": "###-0.8061###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32970": { + "content": "###-0.8059###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32971": { + "content": "###-0.8057###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32972": { + "content": "###-0.8055###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32973": { + "content": "###-0.8053###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32974": { + "content": "###-0.8051###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32975": { + "content": "###-0.8049###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32976": { + "content": "###-0.8047###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32977": { + "content": "###-0.8045###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32978": { + "content": "###-0.8043###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32979": { + "content": "###-0.8041###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32980": { + "content": "###-0.8039###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32981": { + "content": "###-0.8037###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32982": { + "content": "###-0.8035###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32983": { + "content": "###-0.8033###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32984": { + "content": "###-0.8031###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32985": { + "content": "###-0.8029###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32986": { + "content": "###-0.8027###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32987": { + "content": "###-0.8025###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32988": { + "content": "###-0.8023###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32989": { + "content": "###-0.8021###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32990": { + "content": "###-0.8019###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32991": { + "content": "###-0.8017###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32992": { + "content": "###-0.8015###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32993": { + "content": "###-0.8013###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32994": { + "content": "###-0.8011###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32995": { + "content": "###-0.8009###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32996": { + "content": "###-0.8007###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32997": { + "content": "###-0.8005###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32998": { + "content": "###-0.8003###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "32999": { + "content": "###-0.8001###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33000": { + "content": "###-0.7999###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33001": { + "content": "###-0.7997###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33002": { + "content": "###-0.7995###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33003": { + "content": "###-0.7993###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33004": { + "content": "###-0.7991###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33005": { + "content": "###-0.7989###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33006": { + "content": "###-0.7987###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33007": { + "content": "###-0.7985###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33008": { + "content": "###-0.7983###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33009": { + "content": "###-0.7981###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33010": { + "content": "###-0.7979###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33011": { + "content": "###-0.7977###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33012": { + "content": "###-0.7975###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33013": { + "content": "###-0.7973###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33014": { + "content": "###-0.7971###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33015": { + "content": "###-0.7969###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33016": { + "content": "###-0.7967###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33017": { + "content": "###-0.7965###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33018": { + "content": "###-0.7963###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33019": { + "content": "###-0.7961###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33020": { + "content": "###-0.7959###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33021": { + "content": "###-0.7957###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33022": { + "content": "###-0.7955###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33023": { + "content": "###-0.7953###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33024": { + "content": "###-0.7951###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33025": { + "content": "###-0.7949###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33026": { + "content": "###-0.7947###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33027": { + "content": "###-0.7945###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33028": { + "content": "###-0.7943###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33029": { + "content": "###-0.7941###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33030": { + "content": "###-0.7939###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33031": { + "content": "###-0.7937###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33032": { + "content": "###-0.7935###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33033": { + "content": "###-0.7933###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33034": { + "content": "###-0.7931###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33035": { + "content": "###-0.7929###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33036": { + "content": "###-0.7927###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33037": { + "content": "###-0.7925###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33038": { + "content": "###-0.7923###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33039": { + "content": "###-0.7921###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33040": { + "content": "###-0.7919###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33041": { + "content": "###-0.7917###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33042": { + "content": "###-0.7915###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33043": { + "content": "###-0.7913###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33044": { + "content": "###-0.7911###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33045": { + "content": "###-0.7909###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33046": { + "content": "###-0.7907###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33047": { + "content": "###-0.7905###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33048": { + "content": "###-0.7903###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33049": { + "content": "###-0.7901###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33050": { + "content": "###-0.7899###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33051": { + "content": "###-0.7897###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33052": { + "content": "###-0.7895###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33053": { + "content": "###-0.7893###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33054": { + "content": "###-0.7891###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33055": { + "content": "###-0.7889###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33056": { + "content": "###-0.7887###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33057": { + "content": "###-0.7885###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33058": { + "content": "###-0.7883###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33059": { + "content": "###-0.7881###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33060": { + "content": "###-0.7879###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33061": { + "content": "###-0.7877###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33062": { + "content": "###-0.7875###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33063": { + "content": "###-0.7873###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33064": { + "content": "###-0.7871###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33065": { + "content": "###-0.7869###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33066": { + "content": "###-0.7867###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33067": { + "content": "###-0.7865###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33068": { + "content": "###-0.7863###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33069": { + "content": "###-0.7861###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33070": { + "content": "###-0.7859###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33071": { + "content": "###-0.7857###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33072": { + "content": "###-0.7855###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33073": { + "content": "###-0.7853###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33074": { + "content": "###-0.7851###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33075": { + "content": "###-0.7849###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33076": { + "content": "###-0.7847###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33077": { + "content": "###-0.7845###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33078": { + "content": "###-0.7843###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33079": { + "content": "###-0.7841###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33080": { + "content": "###-0.7839###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33081": { + "content": "###-0.7837###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33082": { + "content": "###-0.7835###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33083": { + "content": "###-0.7833###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33084": { + "content": "###-0.7831###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33085": { + "content": "###-0.7829###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33086": { + "content": "###-0.7827###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33087": { + "content": "###-0.7825###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33088": { + "content": "###-0.7823###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33089": { + "content": "###-0.7821###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33090": { + "content": "###-0.7819###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33091": { + "content": "###-0.7817###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33092": { + "content": "###-0.7815###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33093": { + "content": "###-0.7813###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33094": { + "content": "###-0.7811###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33095": { + "content": "###-0.7809###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33096": { + "content": "###-0.7807###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33097": { + "content": "###-0.7805###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33098": { + "content": "###-0.7803###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33099": { + "content": "###-0.7801###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33100": { + "content": "###-0.7799###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33101": { + "content": "###-0.7797###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33102": { + "content": "###-0.7795###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33103": { + "content": "###-0.7793###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33104": { + "content": "###-0.7791###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33105": { + "content": "###-0.7789###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33106": { + "content": "###-0.7787###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33107": { + "content": "###-0.7785###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33108": { + "content": "###-0.7783###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33109": { + "content": "###-0.7781###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33110": { + "content": "###-0.7779###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33111": { + "content": "###-0.7777###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33112": { + "content": "###-0.7775###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33113": { + "content": "###-0.7773###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33114": { + "content": "###-0.7771###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33115": { + "content": "###-0.7769###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33116": { + "content": "###-0.7767###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33117": { + "content": "###-0.7765###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33118": { + "content": "###-0.7763###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33119": { + "content": "###-0.7761###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33120": { + "content": "###-0.7759###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33121": { + "content": "###-0.7757###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33122": { + "content": "###-0.7755###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33123": { + "content": "###-0.7753###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33124": { + "content": "###-0.7751###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33125": { + "content": "###-0.7749###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33126": { + "content": "###-0.7747###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33127": { + "content": "###-0.7745###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33128": { + "content": "###-0.7743###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33129": { + "content": "###-0.7741###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33130": { + "content": "###-0.7739###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33131": { + "content": "###-0.7737###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33132": { + "content": "###-0.7735###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33133": { + "content": "###-0.7733###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33134": { + "content": "###-0.7731###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33135": { + "content": "###-0.7729###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33136": { + "content": "###-0.7727###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33137": { + "content": "###-0.7725###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33138": { + "content": "###-0.7723###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33139": { + "content": "###-0.7721###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33140": { + "content": "###-0.7719###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33141": { + "content": "###-0.7717###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33142": { + "content": "###-0.7715###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33143": { + "content": "###-0.7713###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33144": { + "content": "###-0.7711###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33145": { + "content": "###-0.7709###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33146": { + "content": "###-0.7707###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33147": { + "content": "###-0.7705###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33148": { + "content": "###-0.7703###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33149": { + "content": "###-0.7701###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33150": { + "content": "###-0.7699###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33151": { + "content": "###-0.7697###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33152": { + "content": "###-0.7695###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33153": { + "content": "###-0.7693###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33154": { + "content": "###-0.7691###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33155": { + "content": "###-0.7689###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33156": { + "content": "###-0.7687###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33157": { + "content": "###-0.7685###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33158": { + "content": "###-0.7683###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33159": { + "content": "###-0.7681###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33160": { + "content": "###-0.7679###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33161": { + "content": "###-0.7677###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33162": { + "content": "###-0.7675###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33163": { + "content": "###-0.7673###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33164": { + "content": "###-0.7671###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33165": { + "content": "###-0.7669###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33166": { + "content": "###-0.7667###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33167": { + "content": "###-0.7665###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33168": { + "content": "###-0.7663###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33169": { + "content": "###-0.7661###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33170": { + "content": "###-0.7659###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33171": { + "content": "###-0.7657###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33172": { + "content": "###-0.7655###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33173": { + "content": "###-0.7653###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33174": { + "content": "###-0.7651###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33175": { + "content": "###-0.7649###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33176": { + "content": "###-0.7647###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33177": { + "content": "###-0.7645###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33178": { + "content": "###-0.7643###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33179": { + "content": "###-0.7641###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33180": { + "content": "###-0.7639###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33181": { + "content": "###-0.7637###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33182": { + "content": "###-0.7635###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33183": { + "content": "###-0.7633###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33184": { + "content": "###-0.7631###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33185": { + "content": "###-0.7629###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33186": { + "content": "###-0.7627###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33187": { + "content": "###-0.7625###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33188": { + "content": "###-0.7623###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33189": { + "content": "###-0.7621###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33190": { + "content": "###-0.7619###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33191": { + "content": "###-0.7617###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33192": { + "content": "###-0.7615###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33193": { + "content": "###-0.7613###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33194": { + "content": "###-0.7611###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33195": { + "content": "###-0.7609###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33196": { + "content": "###-0.7607###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33197": { + "content": "###-0.7605###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33198": { + "content": "###-0.7603###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33199": { + "content": "###-0.7601###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33200": { + "content": "###-0.7599###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33201": { + "content": "###-0.7597###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33202": { + "content": "###-0.7595###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33203": { + "content": "###-0.7593###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33204": { + "content": "###-0.7591###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33205": { + "content": "###-0.7589###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33206": { + "content": "###-0.7587###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33207": { + "content": "###-0.7585###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33208": { + "content": "###-0.7583###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33209": { + "content": "###-0.7581###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33210": { + "content": "###-0.7579###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33211": { + "content": "###-0.7577###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33212": { + "content": "###-0.7575###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33213": { + "content": "###-0.7573###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33214": { + "content": "###-0.7571###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33215": { + "content": "###-0.7569###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33216": { + "content": "###-0.7567###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33217": { + "content": "###-0.7565###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33218": { + "content": "###-0.7563###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33219": { + "content": "###-0.7561###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33220": { + "content": "###-0.7559###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33221": { + "content": "###-0.7557###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33222": { + "content": "###-0.7555###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33223": { + "content": "###-0.7553###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33224": { + "content": "###-0.7551###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33225": { + "content": "###-0.7549###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33226": { + "content": "###-0.7547###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33227": { + "content": "###-0.7545###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33228": { + "content": "###-0.7543###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33229": { + "content": "###-0.7541###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33230": { + "content": "###-0.7539###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33231": { + "content": "###-0.7537###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33232": { + "content": "###-0.7535###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33233": { + "content": "###-0.7533###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33234": { + "content": "###-0.7531###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33235": { + "content": "###-0.7529###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33236": { + "content": "###-0.7527###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33237": { + "content": "###-0.7525###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33238": { + "content": "###-0.7523###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33239": { + "content": "###-0.7521###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33240": { + "content": "###-0.7519###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33241": { + "content": "###-0.7517###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33242": { + "content": "###-0.7515###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33243": { + "content": "###-0.7513###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33244": { + "content": "###-0.7511###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33245": { + "content": "###-0.7509###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33246": { + "content": "###-0.7507###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33247": { + "content": "###-0.7505###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33248": { + "content": "###-0.7503###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33249": { + "content": "###-0.7501###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33250": { + "content": "###-0.7499###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33251": { + "content": "###-0.7497###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33252": { + "content": "###-0.7495###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33253": { + "content": "###-0.7493###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33254": { + "content": "###-0.7491###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33255": { + "content": "###-0.7489###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33256": { + "content": "###-0.7487###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33257": { + "content": "###-0.7485###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33258": { + "content": "###-0.7483###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33259": { + "content": "###-0.7481###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33260": { + "content": "###-0.7479###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33261": { + "content": "###-0.7477###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33262": { + "content": "###-0.7475###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33263": { + "content": "###-0.7473###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33264": { + "content": "###-0.7471###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33265": { + "content": "###-0.7469###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33266": { + "content": "###-0.7467###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33267": { + "content": "###-0.7465###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33268": { + "content": "###-0.7463###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33269": { + "content": "###-0.7461###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33270": { + "content": "###-0.7459###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33271": { + "content": "###-0.7457###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33272": { + "content": "###-0.7455###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33273": { + "content": "###-0.7453###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33274": { + "content": "###-0.7451###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33275": { + "content": "###-0.7449###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33276": { + "content": "###-0.7447###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33277": { + "content": "###-0.7445###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33278": { + "content": "###-0.7443###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33279": { + "content": "###-0.7441###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33280": { + "content": "###-0.7439###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33281": { + "content": "###-0.7437###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33282": { + "content": "###-0.7435###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33283": { + "content": "###-0.7433###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33284": { + "content": "###-0.7431###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33285": { + "content": "###-0.7429###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33286": { + "content": "###-0.7427###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33287": { + "content": "###-0.7425###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33288": { + "content": "###-0.7423###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33289": { + "content": "###-0.7421###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33290": { + "content": "###-0.7419###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33291": { + "content": "###-0.7417###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33292": { + "content": "###-0.7415###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33293": { + "content": "###-0.7413###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33294": { + "content": "###-0.7411###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33295": { + "content": "###-0.7409###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33296": { + "content": "###-0.7407###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33297": { + "content": "###-0.7405###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33298": { + "content": "###-0.7403###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33299": { + "content": "###-0.7401###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33300": { + "content": "###-0.7399###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33301": { + "content": "###-0.7397###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33302": { + "content": "###-0.7395###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33303": { + "content": "###-0.7393###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33304": { + "content": "###-0.7391###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33305": { + "content": "###-0.7389###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33306": { + "content": "###-0.7387###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33307": { + "content": "###-0.7385###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33308": { + "content": "###-0.7383###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33309": { + "content": "###-0.7381###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33310": { + "content": "###-0.7379###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33311": { + "content": "###-0.7377###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33312": { + "content": "###-0.7375###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33313": { + "content": "###-0.7373###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33314": { + "content": "###-0.7371###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33315": { + "content": "###-0.7369###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33316": { + "content": "###-0.7367###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33317": { + "content": "###-0.7365###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33318": { + "content": "###-0.7363###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33319": { + "content": "###-0.7361###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33320": { + "content": "###-0.7359###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33321": { + "content": "###-0.7357###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33322": { + "content": "###-0.7355###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33323": { + "content": "###-0.7353###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33324": { + "content": "###-0.7351###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33325": { + "content": "###-0.7349###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33326": { + "content": "###-0.7347###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33327": { + "content": "###-0.7345###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33328": { + "content": "###-0.7343###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33329": { + "content": "###-0.7341###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33330": { + "content": "###-0.7339###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33331": { + "content": "###-0.7337###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33332": { + "content": "###-0.7335###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33333": { + "content": "###-0.7333###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33334": { + "content": "###-0.7331###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33335": { + "content": "###-0.7329###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33336": { + "content": "###-0.7327###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33337": { + "content": "###-0.7325###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33338": { + "content": "###-0.7323###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33339": { + "content": "###-0.7321###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33340": { + "content": "###-0.7319###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33341": { + "content": "###-0.7317###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33342": { + "content": "###-0.7315###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33343": { + "content": "###-0.7313###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33344": { + "content": "###-0.7311###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33345": { + "content": "###-0.7309###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33346": { + "content": "###-0.7307###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33347": { + "content": "###-0.7305###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33348": { + "content": "###-0.7303###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33349": { + "content": "###-0.7301###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33350": { + "content": "###-0.7299###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33351": { + "content": "###-0.7297###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33352": { + "content": "###-0.7295###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33353": { + "content": "###-0.7293###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33354": { + "content": "###-0.7291###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33355": { + "content": "###-0.7289###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33356": { + "content": "###-0.7287###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33357": { + "content": "###-0.7285###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33358": { + "content": "###-0.7283###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33359": { + "content": "###-0.7281###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33360": { + "content": "###-0.7279###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33361": { + "content": "###-0.7277###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33362": { + "content": "###-0.7275###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33363": { + "content": "###-0.7273###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33364": { + "content": "###-0.7271###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33365": { + "content": "###-0.7269###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33366": { + "content": "###-0.7267###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33367": { + "content": "###-0.7265###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33368": { + "content": "###-0.7263###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33369": { + "content": "###-0.7261###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33370": { + "content": "###-0.7259###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33371": { + "content": "###-0.7257###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33372": { + "content": "###-0.7255###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33373": { + "content": "###-0.7253###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33374": { + "content": "###-0.7251###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33375": { + "content": "###-0.7249###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33376": { + "content": "###-0.7247###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33377": { + "content": "###-0.7245###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33378": { + "content": "###-0.7243###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33379": { + "content": "###-0.7241###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33380": { + "content": "###-0.7239###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33381": { + "content": "###-0.7237###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33382": { + "content": "###-0.7235###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33383": { + "content": "###-0.7233###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33384": { + "content": "###-0.7231###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33385": { + "content": "###-0.7229###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33386": { + "content": "###-0.7227###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33387": { + "content": "###-0.7225###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33388": { + "content": "###-0.7223###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33389": { + "content": "###-0.7221###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33390": { + "content": "###-0.7219###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33391": { + "content": "###-0.7217###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33392": { + "content": "###-0.7215###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33393": { + "content": "###-0.7213###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33394": { + "content": "###-0.7211###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33395": { + "content": "###-0.7209###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33396": { + "content": "###-0.7207###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33397": { + "content": "###-0.7205###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33398": { + "content": "###-0.7203###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33399": { + "content": "###-0.7201###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33400": { + "content": "###-0.7199###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33401": { + "content": "###-0.7197###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33402": { + "content": "###-0.7195###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33403": { + "content": "###-0.7193###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33404": { + "content": "###-0.7191###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33405": { + "content": "###-0.7189###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33406": { + "content": "###-0.7187###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33407": { + "content": "###-0.7185###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33408": { + "content": "###-0.7183###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33409": { + "content": "###-0.7181###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33410": { + "content": "###-0.7179###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33411": { + "content": "###-0.7177###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33412": { + "content": "###-0.7175###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33413": { + "content": "###-0.7173###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33414": { + "content": "###-0.7171###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33415": { + "content": "###-0.7169###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33416": { + "content": "###-0.7167###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33417": { + "content": "###-0.7165###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33418": { + "content": "###-0.7163###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33419": { + "content": "###-0.7161###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33420": { + "content": "###-0.7159###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33421": { + "content": "###-0.7157###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33422": { + "content": "###-0.7155###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33423": { + "content": "###-0.7153###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33424": { + "content": "###-0.7151###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33425": { + "content": "###-0.7149###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33426": { + "content": "###-0.7147###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33427": { + "content": "###-0.7145###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33428": { + "content": "###-0.7143###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33429": { + "content": "###-0.7141###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33430": { + "content": "###-0.7139###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33431": { + "content": "###-0.7137###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33432": { + "content": "###-0.7135###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33433": { + "content": "###-0.7133###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33434": { + "content": "###-0.7131###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33435": { + "content": "###-0.7129###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33436": { + "content": "###-0.7127###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33437": { + "content": "###-0.7125###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33438": { + "content": "###-0.7123###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33439": { + "content": "###-0.7121###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33440": { + "content": "###-0.7119###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33441": { + "content": "###-0.7117###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33442": { + "content": "###-0.7115###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33443": { + "content": "###-0.7113###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33444": { + "content": "###-0.7111###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33445": { + "content": "###-0.7109###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33446": { + "content": "###-0.7107###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33447": { + "content": "###-0.7105###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33448": { + "content": "###-0.7103###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33449": { + "content": "###-0.7101###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33450": { + "content": "###-0.7099###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33451": { + "content": "###-0.7097###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33452": { + "content": "###-0.7095###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33453": { + "content": "###-0.7093###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33454": { + "content": "###-0.7091###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33455": { + "content": "###-0.7089###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33456": { + "content": "###-0.7087###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33457": { + "content": "###-0.7085###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33458": { + "content": "###-0.7083###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33459": { + "content": "###-0.7081###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33460": { + "content": "###-0.7079###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33461": { + "content": "###-0.7077###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33462": { + "content": "###-0.7075###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33463": { + "content": "###-0.7073###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33464": { + "content": "###-0.7071###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33465": { + "content": "###-0.7069###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33466": { + "content": "###-0.7067###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33467": { + "content": "###-0.7065###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33468": { + "content": "###-0.7063###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33469": { + "content": "###-0.7061###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33470": { + "content": "###-0.7059###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33471": { + "content": "###-0.7057###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33472": { + "content": "###-0.7055###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33473": { + "content": "###-0.7053###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33474": { + "content": "###-0.7051###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33475": { + "content": "###-0.7049###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33476": { + "content": "###-0.7047###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33477": { + "content": "###-0.7045###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33478": { + "content": "###-0.7043###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33479": { + "content": "###-0.7041###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33480": { + "content": "###-0.7039###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33481": { + "content": "###-0.7037###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33482": { + "content": "###-0.7035###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33483": { + "content": "###-0.7033###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33484": { + "content": "###-0.7031###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33485": { + "content": "###-0.7029###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33486": { + "content": "###-0.7027###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33487": { + "content": "###-0.7025###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33488": { + "content": "###-0.7023###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33489": { + "content": "###-0.7021###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33490": { + "content": "###-0.7019###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33491": { + "content": "###-0.7017###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33492": { + "content": "###-0.7015###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33493": { + "content": "###-0.7013###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33494": { + "content": "###-0.7011###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33495": { + "content": "###-0.7009###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33496": { + "content": "###-0.7007###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33497": { + "content": "###-0.7005###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33498": { + "content": "###-0.7003###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33499": { + "content": "###-0.7001###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33500": { + "content": "###-0.6999###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33501": { + "content": "###-0.6997###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33502": { + "content": "###-0.6995###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33503": { + "content": "###-0.6993###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33504": { + "content": "###-0.6991###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33505": { + "content": "###-0.6989###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33506": { + "content": "###-0.6987###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33507": { + "content": "###-0.6985###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33508": { + "content": "###-0.6983###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33509": { + "content": "###-0.6981###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33510": { + "content": "###-0.6979###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33511": { + "content": "###-0.6977###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33512": { + "content": "###-0.6975###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33513": { + "content": "###-0.6973###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33514": { + "content": "###-0.6971###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33515": { + "content": "###-0.6969###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33516": { + "content": "###-0.6967###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33517": { + "content": "###-0.6965###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33518": { + "content": "###-0.6963###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33519": { + "content": "###-0.6961###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33520": { + "content": "###-0.6959###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33521": { + "content": "###-0.6957###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33522": { + "content": "###-0.6955###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33523": { + "content": "###-0.6953###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33524": { + "content": "###-0.6951###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33525": { + "content": "###-0.6949###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33526": { + "content": "###-0.6947###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33527": { + "content": "###-0.6945###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33528": { + "content": "###-0.6943###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33529": { + "content": "###-0.6941###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33530": { + "content": "###-0.6939###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33531": { + "content": "###-0.6937###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33532": { + "content": "###-0.6935###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33533": { + "content": "###-0.6933###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33534": { + "content": "###-0.6931###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33535": { + "content": "###-0.6929###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33536": { + "content": "###-0.6927###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33537": { + "content": "###-0.6925###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33538": { + "content": "###-0.6923###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33539": { + "content": "###-0.6921###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33540": { + "content": "###-0.6919###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33541": { + "content": "###-0.6917###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33542": { + "content": "###-0.6915###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33543": { + "content": "###-0.6913###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33544": { + "content": "###-0.6911###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33545": { + "content": "###-0.6909###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33546": { + "content": "###-0.6907###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33547": { + "content": "###-0.6905###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33548": { + "content": "###-0.6903###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33549": { + "content": "###-0.6901###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33550": { + "content": "###-0.6899###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33551": { + "content": "###-0.6897###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33552": { + "content": "###-0.6895###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33553": { + "content": "###-0.6893###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33554": { + "content": "###-0.6891###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33555": { + "content": "###-0.6889###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33556": { + "content": "###-0.6887###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33557": { + "content": "###-0.6885###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33558": { + "content": "###-0.6883###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33559": { + "content": "###-0.6881###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33560": { + "content": "###-0.6879###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33561": { + "content": "###-0.6877###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33562": { + "content": "###-0.6875###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33563": { + "content": "###-0.6873###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33564": { + "content": "###-0.6871###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33565": { + "content": "###-0.6869###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33566": { + "content": "###-0.6867###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33567": { + "content": "###-0.6865###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33568": { + "content": "###-0.6863###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33569": { + "content": "###-0.6861###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33570": { + "content": "###-0.6859###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33571": { + "content": "###-0.6857###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33572": { + "content": "###-0.6855###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33573": { + "content": "###-0.6853###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33574": { + "content": "###-0.6851###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33575": { + "content": "###-0.6849###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33576": { + "content": "###-0.6847###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33577": { + "content": "###-0.6845###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33578": { + "content": "###-0.6843###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33579": { + "content": "###-0.6841###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33580": { + "content": "###-0.6839###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33581": { + "content": "###-0.6837###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33582": { + "content": "###-0.6835###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33583": { + "content": "###-0.6833###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33584": { + "content": "###-0.6831###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33585": { + "content": "###-0.6829###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33586": { + "content": "###-0.6827###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33587": { + "content": "###-0.6825###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33588": { + "content": "###-0.6823###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33589": { + "content": "###-0.6821###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33590": { + "content": "###-0.6819###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33591": { + "content": "###-0.6817###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33592": { + "content": "###-0.6815###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33593": { + "content": "###-0.6813###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33594": { + "content": "###-0.6811###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33595": { + "content": "###-0.6809###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33596": { + "content": "###-0.6807###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33597": { + "content": "###-0.6805###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33598": { + "content": "###-0.6803###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33599": { + "content": "###-0.6801###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33600": { + "content": "###-0.6799###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33601": { + "content": "###-0.6797###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33602": { + "content": "###-0.6795###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33603": { + "content": "###-0.6793###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33604": { + "content": "###-0.6791###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33605": { + "content": "###-0.6789###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33606": { + "content": "###-0.6787###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33607": { + "content": "###-0.6785###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33608": { + "content": "###-0.6783###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33609": { + "content": "###-0.6781###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33610": { + "content": "###-0.6779###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33611": { + "content": "###-0.6777###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33612": { + "content": "###-0.6775###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33613": { + "content": "###-0.6773###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33614": { + "content": "###-0.6771###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33615": { + "content": "###-0.6769###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33616": { + "content": "###-0.6767###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33617": { + "content": "###-0.6765###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33618": { + "content": "###-0.6763###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33619": { + "content": "###-0.6761###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33620": { + "content": "###-0.6759###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33621": { + "content": "###-0.6757###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33622": { + "content": "###-0.6755###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33623": { + "content": "###-0.6753###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33624": { + "content": "###-0.6751###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33625": { + "content": "###-0.6749###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33626": { + "content": "###-0.6747###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33627": { + "content": "###-0.6745###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33628": { + "content": "###-0.6743###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33629": { + "content": "###-0.6741###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33630": { + "content": "###-0.6739###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33631": { + "content": "###-0.6737###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33632": { + "content": "###-0.6735###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33633": { + "content": "###-0.6733###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33634": { + "content": "###-0.6731###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33635": { + "content": "###-0.6729###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33636": { + "content": "###-0.6727###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33637": { + "content": "###-0.6725###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33638": { + "content": "###-0.6723###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33639": { + "content": "###-0.6721###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33640": { + "content": "###-0.6719###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33641": { + "content": "###-0.6717###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33642": { + "content": "###-0.6715###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33643": { + "content": "###-0.6713###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33644": { + "content": "###-0.6711###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33645": { + "content": "###-0.6709###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33646": { + "content": "###-0.6707###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33647": { + "content": "###-0.6705###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33648": { + "content": "###-0.6703###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33649": { + "content": "###-0.6701###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33650": { + "content": "###-0.6699###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33651": { + "content": "###-0.6697###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33652": { + "content": "###-0.6695###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33653": { + "content": "###-0.6693###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33654": { + "content": "###-0.6691###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33655": { + "content": "###-0.6689###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33656": { + "content": "###-0.6687###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33657": { + "content": "###-0.6685###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33658": { + "content": "###-0.6683###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33659": { + "content": "###-0.6681###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33660": { + "content": "###-0.6679###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33661": { + "content": "###-0.6677###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33662": { + "content": "###-0.6675###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33663": { + "content": "###-0.6673###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33664": { + "content": "###-0.6671###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33665": { + "content": "###-0.6669###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33666": { + "content": "###-0.6667###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33667": { + "content": "###-0.6665###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33668": { + "content": "###-0.6663###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33669": { + "content": "###-0.6661###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33670": { + "content": "###-0.6659###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33671": { + "content": "###-0.6657###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33672": { + "content": "###-0.6655###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33673": { + "content": "###-0.6653###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33674": { + "content": "###-0.6651###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33675": { + "content": "###-0.6649###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33676": { + "content": "###-0.6647###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33677": { + "content": "###-0.6645###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33678": { + "content": "###-0.6643###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33679": { + "content": "###-0.6641###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33680": { + "content": "###-0.6639###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33681": { + "content": "###-0.6637###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33682": { + "content": "###-0.6635###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33683": { + "content": "###-0.6633###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33684": { + "content": "###-0.6631###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33685": { + "content": "###-0.6629###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33686": { + "content": "###-0.6627###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33687": { + "content": "###-0.6625###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33688": { + "content": "###-0.6623###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33689": { + "content": "###-0.6621###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33690": { + "content": "###-0.6619###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33691": { + "content": "###-0.6617###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33692": { + "content": "###-0.6615###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33693": { + "content": "###-0.6613###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33694": { + "content": "###-0.6611###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33695": { + "content": "###-0.6609###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33696": { + "content": "###-0.6607###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33697": { + "content": "###-0.6605###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33698": { + "content": "###-0.6603###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33699": { + "content": "###-0.6601###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33700": { + "content": "###-0.6599###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33701": { + "content": "###-0.6597###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33702": { + "content": "###-0.6595###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33703": { + "content": "###-0.6593###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33704": { + "content": "###-0.6591###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33705": { + "content": "###-0.6589###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33706": { + "content": "###-0.6587###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33707": { + "content": "###-0.6585###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33708": { + "content": "###-0.6583###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33709": { + "content": "###-0.6581###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33710": { + "content": "###-0.6579###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33711": { + "content": "###-0.6577###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33712": { + "content": "###-0.6575###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33713": { + "content": "###-0.6573###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33714": { + "content": "###-0.6571###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33715": { + "content": "###-0.6569###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33716": { + "content": "###-0.6567###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33717": { + "content": "###-0.6565###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33718": { + "content": "###-0.6563###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33719": { + "content": "###-0.6561###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33720": { + "content": "###-0.6559###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33721": { + "content": "###-0.6557###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33722": { + "content": "###-0.6555###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33723": { + "content": "###-0.6553###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33724": { + "content": "###-0.6551###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33725": { + "content": "###-0.6549###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33726": { + "content": "###-0.6547###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33727": { + "content": "###-0.6545###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33728": { + "content": "###-0.6543###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33729": { + "content": "###-0.6541###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33730": { + "content": "###-0.6539###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33731": { + "content": "###-0.6537###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33732": { + "content": "###-0.6535###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33733": { + "content": "###-0.6533###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33734": { + "content": "###-0.6531###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33735": { + "content": "###-0.6529###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33736": { + "content": "###-0.6527###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33737": { + "content": "###-0.6525###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33738": { + "content": "###-0.6523###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33739": { + "content": "###-0.6521###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33740": { + "content": "###-0.6519###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33741": { + "content": "###-0.6517###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33742": { + "content": "###-0.6515###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33743": { + "content": "###-0.6513###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33744": { + "content": "###-0.6511###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33745": { + "content": "###-0.6509###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33746": { + "content": "###-0.6507###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33747": { + "content": "###-0.6505###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33748": { + "content": "###-0.6503###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33749": { + "content": "###-0.6501###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33750": { + "content": "###-0.6499###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33751": { + "content": "###-0.6497###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33752": { + "content": "###-0.6495###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33753": { + "content": "###-0.6493###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33754": { + "content": "###-0.6491###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33755": { + "content": "###-0.6489###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33756": { + "content": "###-0.6487###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33757": { + "content": "###-0.6485###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33758": { + "content": "###-0.6483###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33759": { + "content": "###-0.6481###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33760": { + "content": "###-0.6479###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33761": { + "content": "###-0.6477###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33762": { + "content": "###-0.6475###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33763": { + "content": "###-0.6473###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33764": { + "content": "###-0.6471###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33765": { + "content": "###-0.6469###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33766": { + "content": "###-0.6467###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33767": { + "content": "###-0.6465###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33768": { + "content": "###-0.6463###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33769": { + "content": "###-0.6461###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33770": { + "content": "###-0.6459###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33771": { + "content": "###-0.6457###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33772": { + "content": "###-0.6455###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33773": { + "content": "###-0.6453###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33774": { + "content": "###-0.6451###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33775": { + "content": "###-0.6449###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33776": { + "content": "###-0.6447###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33777": { + "content": "###-0.6445###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33778": { + "content": "###-0.6443###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33779": { + "content": "###-0.6441###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33780": { + "content": "###-0.6439###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33781": { + "content": "###-0.6437###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33782": { + "content": "###-0.6435###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33783": { + "content": "###-0.6433###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33784": { + "content": "###-0.6431###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33785": { + "content": "###-0.6429###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33786": { + "content": "###-0.6427###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33787": { + "content": "###-0.6425###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33788": { + "content": "###-0.6423###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33789": { + "content": "###-0.6421###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33790": { + "content": "###-0.6419###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33791": { + "content": "###-0.6417###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33792": { + "content": "###-0.6415###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33793": { + "content": "###-0.6413###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33794": { + "content": "###-0.6411###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33795": { + "content": "###-0.6409###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33796": { + "content": "###-0.6407###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33797": { + "content": "###-0.6405###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33798": { + "content": "###-0.6403###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33799": { + "content": "###-0.6401###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33800": { + "content": "###-0.6399###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33801": { + "content": "###-0.6397###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33802": { + "content": "###-0.6395###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33803": { + "content": "###-0.6393###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33804": { + "content": "###-0.6391###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33805": { + "content": "###-0.6389###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33806": { + "content": "###-0.6387###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33807": { + "content": "###-0.6385###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33808": { + "content": "###-0.6383###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33809": { + "content": "###-0.6381###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33810": { + "content": "###-0.6379###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33811": { + "content": "###-0.6377###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33812": { + "content": "###-0.6375###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33813": { + "content": "###-0.6373###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33814": { + "content": "###-0.6371###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33815": { + "content": "###-0.6369###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33816": { + "content": "###-0.6367###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33817": { + "content": "###-0.6365###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33818": { + "content": "###-0.6363###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33819": { + "content": "###-0.6361###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33820": { + "content": "###-0.6359###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33821": { + "content": "###-0.6357###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33822": { + "content": "###-0.6355###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33823": { + "content": "###-0.6353###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33824": { + "content": "###-0.6351###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33825": { + "content": "###-0.6349###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33826": { + "content": "###-0.6347###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33827": { + "content": "###-0.6345###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33828": { + "content": "###-0.6343###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33829": { + "content": "###-0.6341###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33830": { + "content": "###-0.6339###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33831": { + "content": "###-0.6337###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33832": { + "content": "###-0.6335###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33833": { + "content": "###-0.6333###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33834": { + "content": "###-0.6331###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33835": { + "content": "###-0.6329###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33836": { + "content": "###-0.6327###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33837": { + "content": "###-0.6325###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33838": { + "content": "###-0.6323###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33839": { + "content": "###-0.6321###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33840": { + "content": "###-0.6319###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33841": { + "content": "###-0.6317###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33842": { + "content": "###-0.6315###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33843": { + "content": "###-0.6313###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33844": { + "content": "###-0.6311###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33845": { + "content": "###-0.6309###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33846": { + "content": "###-0.6307###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33847": { + "content": "###-0.6305###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33848": { + "content": "###-0.6303###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33849": { + "content": "###-0.6301###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33850": { + "content": "###-0.6299###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33851": { + "content": "###-0.6297###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33852": { + "content": "###-0.6295###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33853": { + "content": "###-0.6293###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33854": { + "content": "###-0.6291###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33855": { + "content": "###-0.6289###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33856": { + "content": "###-0.6287###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33857": { + "content": "###-0.6285###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33858": { + "content": "###-0.6283###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33859": { + "content": "###-0.6281###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33860": { + "content": "###-0.6279###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33861": { + "content": "###-0.6277###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33862": { + "content": "###-0.6275###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33863": { + "content": "###-0.6273###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33864": { + "content": "###-0.6271###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33865": { + "content": "###-0.6269###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33866": { + "content": "###-0.6267###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33867": { + "content": "###-0.6265###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33868": { + "content": "###-0.6263###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33869": { + "content": "###-0.6261###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33870": { + "content": "###-0.6259###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33871": { + "content": "###-0.6257###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33872": { + "content": "###-0.6255###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33873": { + "content": "###-0.6253###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33874": { + "content": "###-0.6251###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33875": { + "content": "###-0.6249###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33876": { + "content": "###-0.6247###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33877": { + "content": "###-0.6245###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33878": { + "content": "###-0.6243###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33879": { + "content": "###-0.6241###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33880": { + "content": "###-0.6239###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33881": { + "content": "###-0.6237###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33882": { + "content": "###-0.6235###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33883": { + "content": "###-0.6233###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33884": { + "content": "###-0.6231###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33885": { + "content": "###-0.6229###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33886": { + "content": "###-0.6227###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33887": { + "content": "###-0.6225###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33888": { + "content": "###-0.6223###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33889": { + "content": "###-0.6221###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33890": { + "content": "###-0.6219###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33891": { + "content": "###-0.6217###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33892": { + "content": "###-0.6215###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33893": { + "content": "###-0.6213###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33894": { + "content": "###-0.6211###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33895": { + "content": "###-0.6209###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33896": { + "content": "###-0.6207###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33897": { + "content": "###-0.6205###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33898": { + "content": "###-0.6203###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33899": { + "content": "###-0.6201###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33900": { + "content": "###-0.6199###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33901": { + "content": "###-0.6197###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33902": { + "content": "###-0.6195###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33903": { + "content": "###-0.6193###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33904": { + "content": "###-0.6191###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33905": { + "content": "###-0.6189###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33906": { + "content": "###-0.6187###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33907": { + "content": "###-0.6185###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33908": { + "content": "###-0.6183###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33909": { + "content": "###-0.6181###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33910": { + "content": "###-0.6179###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33911": { + "content": "###-0.6177###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33912": { + "content": "###-0.6175###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33913": { + "content": "###-0.6173###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33914": { + "content": "###-0.6171###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33915": { + "content": "###-0.6169###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33916": { + "content": "###-0.6167###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33917": { + "content": "###-0.6165###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33918": { + "content": "###-0.6163###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33919": { + "content": "###-0.6161###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33920": { + "content": "###-0.6159###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33921": { + "content": "###-0.6157###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33922": { + "content": "###-0.6155###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33923": { + "content": "###-0.6153###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33924": { + "content": "###-0.6151###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33925": { + "content": "###-0.6149###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33926": { + "content": "###-0.6147###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33927": { + "content": "###-0.6145###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33928": { + "content": "###-0.6143###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33929": { + "content": "###-0.6141###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33930": { + "content": "###-0.6139###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33931": { + "content": "###-0.6137###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33932": { + "content": "###-0.6135###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33933": { + "content": "###-0.6133###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33934": { + "content": "###-0.6131###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33935": { + "content": "###-0.6129###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33936": { + "content": "###-0.6127###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33937": { + "content": "###-0.6125###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33938": { + "content": "###-0.6123###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33939": { + "content": "###-0.6121###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33940": { + "content": "###-0.6119###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33941": { + "content": "###-0.6117###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33942": { + "content": "###-0.6115###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33943": { + "content": "###-0.6113###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33944": { + "content": "###-0.6111###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33945": { + "content": "###-0.6109###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33946": { + "content": "###-0.6107###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33947": { + "content": "###-0.6105###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33948": { + "content": "###-0.6103###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33949": { + "content": "###-0.6101###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33950": { + "content": "###-0.6099###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33951": { + "content": "###-0.6097###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33952": { + "content": "###-0.6095###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33953": { + "content": "###-0.6093###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33954": { + "content": "###-0.6091###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33955": { + "content": "###-0.6089###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33956": { + "content": "###-0.6087###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33957": { + "content": "###-0.6085###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33958": { + "content": "###-0.6083###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33959": { + "content": "###-0.6081###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33960": { + "content": "###-0.6079###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33961": { + "content": "###-0.6077###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33962": { + "content": "###-0.6075###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33963": { + "content": "###-0.6073###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33964": { + "content": "###-0.6071###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33965": { + "content": "###-0.6069###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33966": { + "content": "###-0.6067###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33967": { + "content": "###-0.6065###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33968": { + "content": "###-0.6063###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33969": { + "content": "###-0.6061###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33970": { + "content": "###-0.6059###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33971": { + "content": "###-0.6057###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33972": { + "content": "###-0.6055###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33973": { + "content": "###-0.6053###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33974": { + "content": "###-0.6051###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33975": { + "content": "###-0.6049###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33976": { + "content": "###-0.6047###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33977": { + "content": "###-0.6045###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33978": { + "content": "###-0.6043###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33979": { + "content": "###-0.6041###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33980": { + "content": "###-0.6039###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33981": { + "content": "###-0.6037###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33982": { + "content": "###-0.6035###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33983": { + "content": "###-0.6033###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33984": { + "content": "###-0.6031###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33985": { + "content": "###-0.6029###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33986": { + "content": "###-0.6027###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33987": { + "content": "###-0.6025###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33988": { + "content": "###-0.6023###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33989": { + "content": "###-0.6021###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33990": { + "content": "###-0.6019###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33991": { + "content": "###-0.6017###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33992": { + "content": "###-0.6015###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33993": { + "content": "###-0.6013###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33994": { + "content": "###-0.6011###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33995": { + "content": "###-0.6009###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33996": { + "content": "###-0.6007###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33997": { + "content": "###-0.6005###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33998": { + "content": "###-0.6003###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "33999": { + "content": "###-0.6001###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34000": { + "content": "###-0.5999###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34001": { + "content": "###-0.5997###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34002": { + "content": "###-0.5995###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34003": { + "content": "###-0.5993###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34004": { + "content": "###-0.5991###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34005": { + "content": "###-0.5989###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34006": { + "content": "###-0.5987###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34007": { + "content": "###-0.5985###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34008": { + "content": "###-0.5983###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34009": { + "content": "###-0.5981###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34010": { + "content": "###-0.5979###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34011": { + "content": "###-0.5977###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34012": { + "content": "###-0.5975###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34013": { + "content": "###-0.5973###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34014": { + "content": "###-0.5971###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34015": { + "content": "###-0.5969###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34016": { + "content": "###-0.5967###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34017": { + "content": "###-0.5965###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34018": { + "content": "###-0.5963###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34019": { + "content": "###-0.5961###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34020": { + "content": "###-0.5959###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34021": { + "content": "###-0.5957###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34022": { + "content": "###-0.5955###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34023": { + "content": "###-0.5953###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34024": { + "content": "###-0.5951###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34025": { + "content": "###-0.5949###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34026": { + "content": "###-0.5947###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34027": { + "content": "###-0.5945###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34028": { + "content": "###-0.5943###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34029": { + "content": "###-0.5941###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34030": { + "content": "###-0.5939###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34031": { + "content": "###-0.5937###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34032": { + "content": "###-0.5935###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34033": { + "content": "###-0.5933###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34034": { + "content": "###-0.5931###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34035": { + "content": "###-0.5929###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34036": { + "content": "###-0.5927###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34037": { + "content": "###-0.5925###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34038": { + "content": "###-0.5923###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34039": { + "content": "###-0.5921###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34040": { + "content": "###-0.5919###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34041": { + "content": "###-0.5917###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34042": { + "content": "###-0.5915###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34043": { + "content": "###-0.5913###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34044": { + "content": "###-0.5911###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34045": { + "content": "###-0.5909###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34046": { + "content": "###-0.5907###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34047": { + "content": "###-0.5905###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34048": { + "content": "###-0.5903###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34049": { + "content": "###-0.5901###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34050": { + "content": "###-0.5899###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34051": { + "content": "###-0.5897###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34052": { + "content": "###-0.5895###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34053": { + "content": "###-0.5893###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34054": { + "content": "###-0.5891###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34055": { + "content": "###-0.5889###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34056": { + "content": "###-0.5887###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34057": { + "content": "###-0.5885###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34058": { + "content": "###-0.5883###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34059": { + "content": "###-0.5881###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34060": { + "content": "###-0.5879###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34061": { + "content": "###-0.5877###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34062": { + "content": "###-0.5875###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34063": { + "content": "###-0.5873###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34064": { + "content": "###-0.5871###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34065": { + "content": "###-0.5869###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34066": { + "content": "###-0.5867###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34067": { + "content": "###-0.5865###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34068": { + "content": "###-0.5863###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34069": { + "content": "###-0.5861###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34070": { + "content": "###-0.5859###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34071": { + "content": "###-0.5857###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34072": { + "content": "###-0.5855###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34073": { + "content": "###-0.5853###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34074": { + "content": "###-0.5851###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34075": { + "content": "###-0.5849###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34076": { + "content": "###-0.5847###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34077": { + "content": "###-0.5845###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34078": { + "content": "###-0.5843###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34079": { + "content": "###-0.5841###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34080": { + "content": "###-0.5839###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34081": { + "content": "###-0.5837###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34082": { + "content": "###-0.5835###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34083": { + "content": "###-0.5833###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34084": { + "content": "###-0.5831###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34085": { + "content": "###-0.5829###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34086": { + "content": "###-0.5827###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34087": { + "content": "###-0.5825###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34088": { + "content": "###-0.5823###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34089": { + "content": "###-0.5821###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34090": { + "content": "###-0.5819###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34091": { + "content": "###-0.5817###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34092": { + "content": "###-0.5815###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34093": { + "content": "###-0.5813###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34094": { + "content": "###-0.5811###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34095": { + "content": "###-0.5809###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34096": { + "content": "###-0.5807###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34097": { + "content": "###-0.5805###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34098": { + "content": "###-0.5803###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34099": { + "content": "###-0.5801###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34100": { + "content": "###-0.5799###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34101": { + "content": "###-0.5797###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34102": { + "content": "###-0.5795###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34103": { + "content": "###-0.5793###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34104": { + "content": "###-0.5791###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34105": { + "content": "###-0.5789###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34106": { + "content": "###-0.5787###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34107": { + "content": "###-0.5785###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34108": { + "content": "###-0.5783###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34109": { + "content": "###-0.5781###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34110": { + "content": "###-0.5779###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34111": { + "content": "###-0.5777###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34112": { + "content": "###-0.5775###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34113": { + "content": "###-0.5773###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34114": { + "content": "###-0.5771###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34115": { + "content": "###-0.5769###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34116": { + "content": "###-0.5767###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34117": { + "content": "###-0.5765###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34118": { + "content": "###-0.5763###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34119": { + "content": "###-0.5761###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34120": { + "content": "###-0.5759###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34121": { + "content": "###-0.5757###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34122": { + "content": "###-0.5755###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34123": { + "content": "###-0.5753###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34124": { + "content": "###-0.5751###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34125": { + "content": "###-0.5749###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34126": { + "content": "###-0.5747###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34127": { + "content": "###-0.5745###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34128": { + "content": "###-0.5743###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34129": { + "content": "###-0.5741###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34130": { + "content": "###-0.5739###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34131": { + "content": "###-0.5737###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34132": { + "content": "###-0.5735###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34133": { + "content": "###-0.5733###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34134": { + "content": "###-0.5731###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34135": { + "content": "###-0.5729###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34136": { + "content": "###-0.5727###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34137": { + "content": "###-0.5725###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34138": { + "content": "###-0.5723###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34139": { + "content": "###-0.5721###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34140": { + "content": "###-0.5719###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34141": { + "content": "###-0.5717###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34142": { + "content": "###-0.5715###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34143": { + "content": "###-0.5713###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34144": { + "content": "###-0.5711###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34145": { + "content": "###-0.5709###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34146": { + "content": "###-0.5707###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34147": { + "content": "###-0.5705###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34148": { + "content": "###-0.5703###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34149": { + "content": "###-0.5701###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34150": { + "content": "###-0.5699###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34151": { + "content": "###-0.5697###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34152": { + "content": "###-0.5695###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34153": { + "content": "###-0.5693###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34154": { + "content": "###-0.5691###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34155": { + "content": "###-0.5689###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34156": { + "content": "###-0.5687###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34157": { + "content": "###-0.5685###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34158": { + "content": "###-0.5683###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34159": { + "content": "###-0.5681###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34160": { + "content": "###-0.5679###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34161": { + "content": "###-0.5677###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34162": { + "content": "###-0.5675###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34163": { + "content": "###-0.5673###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34164": { + "content": "###-0.5671###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34165": { + "content": "###-0.5669###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34166": { + "content": "###-0.5667###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34167": { + "content": "###-0.5665###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34168": { + "content": "###-0.5663###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34169": { + "content": "###-0.5661###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34170": { + "content": "###-0.5659###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34171": { + "content": "###-0.5657###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34172": { + "content": "###-0.5655###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34173": { + "content": "###-0.5653###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34174": { + "content": "###-0.5651###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34175": { + "content": "###-0.5649###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34176": { + "content": "###-0.5647###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34177": { + "content": "###-0.5645###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34178": { + "content": "###-0.5643###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34179": { + "content": "###-0.5641###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34180": { + "content": "###-0.5639###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34181": { + "content": "###-0.5637###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34182": { + "content": "###-0.5635###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34183": { + "content": "###-0.5633###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34184": { + "content": "###-0.5631###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34185": { + "content": "###-0.5629###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34186": { + "content": "###-0.5627###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34187": { + "content": "###-0.5625###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34188": { + "content": "###-0.5623###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34189": { + "content": "###-0.5621###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34190": { + "content": "###-0.5619###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34191": { + "content": "###-0.5617###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34192": { + "content": "###-0.5615###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34193": { + "content": "###-0.5613###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34194": { + "content": "###-0.5611###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34195": { + "content": "###-0.5609###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34196": { + "content": "###-0.5607###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34197": { + "content": "###-0.5605###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34198": { + "content": "###-0.5603###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34199": { + "content": "###-0.5601###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34200": { + "content": "###-0.5599###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34201": { + "content": "###-0.5597###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34202": { + "content": "###-0.5595###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34203": { + "content": "###-0.5593###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34204": { + "content": "###-0.5591###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34205": { + "content": "###-0.5589###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34206": { + "content": "###-0.5587###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34207": { + "content": "###-0.5585###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34208": { + "content": "###-0.5583###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34209": { + "content": "###-0.5581###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34210": { + "content": "###-0.5579###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34211": { + "content": "###-0.5577###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34212": { + "content": "###-0.5575###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34213": { + "content": "###-0.5573###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34214": { + "content": "###-0.5571###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34215": { + "content": "###-0.5569###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34216": { + "content": "###-0.5567###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34217": { + "content": "###-0.5565###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34218": { + "content": "###-0.5563###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34219": { + "content": "###-0.5561###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34220": { + "content": "###-0.5559###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34221": { + "content": "###-0.5557###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34222": { + "content": "###-0.5555###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34223": { + "content": "###-0.5553###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34224": { + "content": "###-0.5551###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34225": { + "content": "###-0.5549###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34226": { + "content": "###-0.5547###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34227": { + "content": "###-0.5545###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34228": { + "content": "###-0.5543###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34229": { + "content": "###-0.5541###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34230": { + "content": "###-0.5539###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34231": { + "content": "###-0.5537###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34232": { + "content": "###-0.5535###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34233": { + "content": "###-0.5533###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34234": { + "content": "###-0.5531###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34235": { + "content": "###-0.5529###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34236": { + "content": "###-0.5527###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34237": { + "content": "###-0.5525###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34238": { + "content": "###-0.5523###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34239": { + "content": "###-0.5521###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34240": { + "content": "###-0.5519###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34241": { + "content": "###-0.5517###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34242": { + "content": "###-0.5515###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34243": { + "content": "###-0.5513###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34244": { + "content": "###-0.5511###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34245": { + "content": "###-0.5509###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34246": { + "content": "###-0.5507###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34247": { + "content": "###-0.5505###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34248": { + "content": "###-0.5503###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34249": { + "content": "###-0.5501###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34250": { + "content": "###-0.5499###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34251": { + "content": "###-0.5497###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34252": { + "content": "###-0.5495###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34253": { + "content": "###-0.5493###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34254": { + "content": "###-0.5491###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34255": { + "content": "###-0.5489###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34256": { + "content": "###-0.5487###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34257": { + "content": "###-0.5485###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34258": { + "content": "###-0.5483###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34259": { + "content": "###-0.5481###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34260": { + "content": "###-0.5479###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34261": { + "content": "###-0.5477###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34262": { + "content": "###-0.5475###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34263": { + "content": "###-0.5473###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34264": { + "content": "###-0.5471###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34265": { + "content": "###-0.5469###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34266": { + "content": "###-0.5467###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34267": { + "content": "###-0.5465###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34268": { + "content": "###-0.5463###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34269": { + "content": "###-0.5461###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34270": { + "content": "###-0.5459###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34271": { + "content": "###-0.5457###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34272": { + "content": "###-0.5455###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34273": { + "content": "###-0.5453###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34274": { + "content": "###-0.5451###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34275": { + "content": "###-0.5449###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34276": { + "content": "###-0.5447###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34277": { + "content": "###-0.5445###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34278": { + "content": "###-0.5443###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34279": { + "content": "###-0.5441###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34280": { + "content": "###-0.5439###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34281": { + "content": "###-0.5437###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34282": { + "content": "###-0.5435###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34283": { + "content": "###-0.5433###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34284": { + "content": "###-0.5431###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34285": { + "content": "###-0.5429###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34286": { + "content": "###-0.5427###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34287": { + "content": "###-0.5425###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34288": { + "content": "###-0.5423###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34289": { + "content": "###-0.5421###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34290": { + "content": "###-0.5419###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34291": { + "content": "###-0.5417###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34292": { + "content": "###-0.5415###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34293": { + "content": "###-0.5413###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34294": { + "content": "###-0.5411###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34295": { + "content": "###-0.5409###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34296": { + "content": "###-0.5407###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34297": { + "content": "###-0.5405###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34298": { + "content": "###-0.5403###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34299": { + "content": "###-0.5401###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34300": { + "content": "###-0.5399###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34301": { + "content": "###-0.5397###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34302": { + "content": "###-0.5395###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34303": { + "content": "###-0.5393###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34304": { + "content": "###-0.5391###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34305": { + "content": "###-0.5389###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34306": { + "content": "###-0.5387###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34307": { + "content": "###-0.5385###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34308": { + "content": "###-0.5383###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34309": { + "content": "###-0.5381###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34310": { + "content": "###-0.5379###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34311": { + "content": "###-0.5377###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34312": { + "content": "###-0.5375###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34313": { + "content": "###-0.5373###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34314": { + "content": "###-0.5371###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34315": { + "content": "###-0.5369###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34316": { + "content": "###-0.5367###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34317": { + "content": "###-0.5365###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34318": { + "content": "###-0.5363###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34319": { + "content": "###-0.5361###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34320": { + "content": "###-0.5359###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34321": { + "content": "###-0.5357###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34322": { + "content": "###-0.5355###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34323": { + "content": "###-0.5353###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34324": { + "content": "###-0.5351###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34325": { + "content": "###-0.5349###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34326": { + "content": "###-0.5347###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34327": { + "content": "###-0.5345###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34328": { + "content": "###-0.5343###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34329": { + "content": "###-0.5341###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34330": { + "content": "###-0.5339###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34331": { + "content": "###-0.5337###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34332": { + "content": "###-0.5335###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34333": { + "content": "###-0.5333###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34334": { + "content": "###-0.5331###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34335": { + "content": "###-0.5329###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34336": { + "content": "###-0.5327###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34337": { + "content": "###-0.5325###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34338": { + "content": "###-0.5323###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34339": { + "content": "###-0.5321###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34340": { + "content": "###-0.5319###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34341": { + "content": "###-0.5317###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34342": { + "content": "###-0.5315###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34343": { + "content": "###-0.5313###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34344": { + "content": "###-0.5311###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34345": { + "content": "###-0.5309###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34346": { + "content": "###-0.5307###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34347": { + "content": "###-0.5305###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34348": { + "content": "###-0.5303###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34349": { + "content": "###-0.5301###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34350": { + "content": "###-0.5299###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34351": { + "content": "###-0.5297###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34352": { + "content": "###-0.5295###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34353": { + "content": "###-0.5293###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34354": { + "content": "###-0.5291###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34355": { + "content": "###-0.5289###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34356": { + "content": "###-0.5287###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34357": { + "content": "###-0.5285###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34358": { + "content": "###-0.5283###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34359": { + "content": "###-0.5281###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34360": { + "content": "###-0.5279###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34361": { + "content": "###-0.5277###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34362": { + "content": "###-0.5275###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34363": { + "content": "###-0.5273###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34364": { + "content": "###-0.5271###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34365": { + "content": "###-0.5269###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34366": { + "content": "###-0.5267###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34367": { + "content": "###-0.5265###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34368": { + "content": "###-0.5263###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34369": { + "content": "###-0.5261###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34370": { + "content": "###-0.5259###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34371": { + "content": "###-0.5257###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34372": { + "content": "###-0.5255###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34373": { + "content": "###-0.5253###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34374": { + "content": "###-0.5251###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34375": { + "content": "###-0.5249###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34376": { + "content": "###-0.5247###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34377": { + "content": "###-0.5245###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34378": { + "content": "###-0.5243###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34379": { + "content": "###-0.5241###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34380": { + "content": "###-0.5239###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34381": { + "content": "###-0.5237###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34382": { + "content": "###-0.5235###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34383": { + "content": "###-0.5233###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34384": { + "content": "###-0.5231###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34385": { + "content": "###-0.5229###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34386": { + "content": "###-0.5227###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34387": { + "content": "###-0.5225###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34388": { + "content": "###-0.5223###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34389": { + "content": "###-0.5221###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34390": { + "content": "###-0.5219###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34391": { + "content": "###-0.5217###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34392": { + "content": "###-0.5215###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34393": { + "content": "###-0.5213###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34394": { + "content": "###-0.5211###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34395": { + "content": "###-0.5209###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34396": { + "content": "###-0.5207###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34397": { + "content": "###-0.5205###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34398": { + "content": "###-0.5203###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34399": { + "content": "###-0.5201###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34400": { + "content": "###-0.5199###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34401": { + "content": "###-0.5197###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34402": { + "content": "###-0.5195###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34403": { + "content": "###-0.5193###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34404": { + "content": "###-0.5191###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34405": { + "content": "###-0.5189###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34406": { + "content": "###-0.5187###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34407": { + "content": "###-0.5185###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34408": { + "content": "###-0.5183###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34409": { + "content": "###-0.5181###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34410": { + "content": "###-0.5179###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34411": { + "content": "###-0.5177###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34412": { + "content": "###-0.5175###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34413": { + "content": "###-0.5173###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34414": { + "content": "###-0.5171###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34415": { + "content": "###-0.5169###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34416": { + "content": "###-0.5167###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34417": { + "content": "###-0.5165###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34418": { + "content": "###-0.5163###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34419": { + "content": "###-0.5161###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34420": { + "content": "###-0.5159###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34421": { + "content": "###-0.5157###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34422": { + "content": "###-0.5155###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34423": { + "content": "###-0.5153###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34424": { + "content": "###-0.5151###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34425": { + "content": "###-0.5149###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34426": { + "content": "###-0.5147###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34427": { + "content": "###-0.5145###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34428": { + "content": "###-0.5143###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34429": { + "content": "###-0.5141###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34430": { + "content": "###-0.5139###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34431": { + "content": "###-0.5137###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34432": { + "content": "###-0.5135###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34433": { + "content": "###-0.5133###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34434": { + "content": "###-0.5131###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34435": { + "content": "###-0.5129###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34436": { + "content": "###-0.5127###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34437": { + "content": "###-0.5125###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34438": { + "content": "###-0.5123###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34439": { + "content": "###-0.5121###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34440": { + "content": "###-0.5119###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34441": { + "content": "###-0.5117###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34442": { + "content": "###-0.5115###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34443": { + "content": "###-0.5113###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34444": { + "content": "###-0.5111###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34445": { + "content": "###-0.5109###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34446": { + "content": "###-0.5107###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34447": { + "content": "###-0.5105###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34448": { + "content": "###-0.5103###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34449": { + "content": "###-0.5101###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34450": { + "content": "###-0.5099###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34451": { + "content": "###-0.5097###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34452": { + "content": "###-0.5095###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34453": { + "content": "###-0.5093###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34454": { + "content": "###-0.5091###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34455": { + "content": "###-0.5089###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34456": { + "content": "###-0.5087###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34457": { + "content": "###-0.5085###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34458": { + "content": "###-0.5083###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34459": { + "content": "###-0.5081###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34460": { + "content": "###-0.5079###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34461": { + "content": "###-0.5077###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34462": { + "content": "###-0.5075###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34463": { + "content": "###-0.5073###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34464": { + "content": "###-0.5071###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34465": { + "content": "###-0.5069###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34466": { + "content": "###-0.5067###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34467": { + "content": "###-0.5065###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34468": { + "content": "###-0.5063###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34469": { + "content": "###-0.5061###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34470": { + "content": "###-0.5059###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34471": { + "content": "###-0.5057###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34472": { + "content": "###-0.5055###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34473": { + "content": "###-0.5053###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34474": { + "content": "###-0.5051###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34475": { + "content": "###-0.5049###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34476": { + "content": "###-0.5047###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34477": { + "content": "###-0.5045###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34478": { + "content": "###-0.5043###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34479": { + "content": "###-0.5041###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34480": { + "content": "###-0.5039###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34481": { + "content": "###-0.5037###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34482": { + "content": "###-0.5035###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34483": { + "content": "###-0.5033###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34484": { + "content": "###-0.5031###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34485": { + "content": "###-0.5029###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34486": { + "content": "###-0.5027###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34487": { + "content": "###-0.5025###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34488": { + "content": "###-0.5023###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34489": { + "content": "###-0.5021###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34490": { + "content": "###-0.5019###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34491": { + "content": "###-0.5017###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34492": { + "content": "###-0.5015###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34493": { + "content": "###-0.5013###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34494": { + "content": "###-0.5011###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34495": { + "content": "###-0.5009###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34496": { + "content": "###-0.5007###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34497": { + "content": "###-0.5005###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34498": { + "content": "###-0.5003###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34499": { + "content": "###-0.5001###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34500": { + "content": "###-0.4999###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34501": { + "content": "###-0.4997###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34502": { + "content": "###-0.4995###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34503": { + "content": "###-0.4993###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34504": { + "content": "###-0.4991###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34505": { + "content": "###-0.4989###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34506": { + "content": "###-0.4987###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34507": { + "content": "###-0.4985###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34508": { + "content": "###-0.4983###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34509": { + "content": "###-0.4981###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34510": { + "content": "###-0.4979###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34511": { + "content": "###-0.4977###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34512": { + "content": "###-0.4975###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34513": { + "content": "###-0.4973###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34514": { + "content": "###-0.4971###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34515": { + "content": "###-0.4969###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34516": { + "content": "###-0.4967###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34517": { + "content": "###-0.4965###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34518": { + "content": "###-0.4963###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34519": { + "content": "###-0.4961###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34520": { + "content": "###-0.4959###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34521": { + "content": "###-0.4957###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34522": { + "content": "###-0.4955###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34523": { + "content": "###-0.4953###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34524": { + "content": "###-0.4951###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34525": { + "content": "###-0.4949###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34526": { + "content": "###-0.4947###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34527": { + "content": "###-0.4945###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34528": { + "content": "###-0.4943###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34529": { + "content": "###-0.4941###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34530": { + "content": "###-0.4939###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34531": { + "content": "###-0.4937###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34532": { + "content": "###-0.4935###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34533": { + "content": "###-0.4933###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34534": { + "content": "###-0.4931###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34535": { + "content": "###-0.4929###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34536": { + "content": "###-0.4927###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34537": { + "content": "###-0.4925###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34538": { + "content": "###-0.4923###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34539": { + "content": "###-0.4921###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34540": { + "content": "###-0.4919###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34541": { + "content": "###-0.4917###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34542": { + "content": "###-0.4915###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34543": { + "content": "###-0.4913###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34544": { + "content": "###-0.4911###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34545": { + "content": "###-0.4909###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34546": { + "content": "###-0.4907###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34547": { + "content": "###-0.4905###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34548": { + "content": "###-0.4903###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34549": { + "content": "###-0.4901###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34550": { + "content": "###-0.4899###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34551": { + "content": "###-0.4897###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34552": { + "content": "###-0.4895###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34553": { + "content": "###-0.4893###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34554": { + "content": "###-0.4891###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34555": { + "content": "###-0.4889###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34556": { + "content": "###-0.4887###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34557": { + "content": "###-0.4885###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34558": { + "content": "###-0.4883###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34559": { + "content": "###-0.4881###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34560": { + "content": "###-0.4879###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34561": { + "content": "###-0.4877###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34562": { + "content": "###-0.4875###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34563": { + "content": "###-0.4873###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34564": { + "content": "###-0.4871###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34565": { + "content": "###-0.4869###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34566": { + "content": "###-0.4867###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34567": { + "content": "###-0.4865###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34568": { + "content": "###-0.4863###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34569": { + "content": "###-0.4861###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34570": { + "content": "###-0.4859###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34571": { + "content": "###-0.4857###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34572": { + "content": "###-0.4855###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34573": { + "content": "###-0.4853###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34574": { + "content": "###-0.4851###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34575": { + "content": "###-0.4849###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34576": { + "content": "###-0.4847###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34577": { + "content": "###-0.4845###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34578": { + "content": "###-0.4843###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34579": { + "content": "###-0.4841###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34580": { + "content": "###-0.4839###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34581": { + "content": "###-0.4837###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34582": { + "content": "###-0.4835###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34583": { + "content": "###-0.4833###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34584": { + "content": "###-0.4831###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34585": { + "content": "###-0.4829###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34586": { + "content": "###-0.4827###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34587": { + "content": "###-0.4825###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34588": { + "content": "###-0.4823###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34589": { + "content": "###-0.4821###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34590": { + "content": "###-0.4819###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34591": { + "content": "###-0.4817###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34592": { + "content": "###-0.4815###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34593": { + "content": "###-0.4813###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34594": { + "content": "###-0.4811###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34595": { + "content": "###-0.4809###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34596": { + "content": "###-0.4807###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34597": { + "content": "###-0.4805###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34598": { + "content": "###-0.4803###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34599": { + "content": "###-0.4801###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34600": { + "content": "###-0.4799###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34601": { + "content": "###-0.4797###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34602": { + "content": "###-0.4795###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34603": { + "content": "###-0.4793###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34604": { + "content": "###-0.4791###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34605": { + "content": "###-0.4789###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34606": { + "content": "###-0.4787###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34607": { + "content": "###-0.4785###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34608": { + "content": "###-0.4783###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34609": { + "content": "###-0.4781###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34610": { + "content": "###-0.4779###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34611": { + "content": "###-0.4777###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34612": { + "content": "###-0.4775###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34613": { + "content": "###-0.4773###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34614": { + "content": "###-0.4771###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34615": { + "content": "###-0.4769###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34616": { + "content": "###-0.4767###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34617": { + "content": "###-0.4765###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34618": { + "content": "###-0.4763###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34619": { + "content": "###-0.4761###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34620": { + "content": "###-0.4759###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34621": { + "content": "###-0.4757###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34622": { + "content": "###-0.4755###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34623": { + "content": "###-0.4753###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34624": { + "content": "###-0.4751###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34625": { + "content": "###-0.4749###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34626": { + "content": "###-0.4747###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34627": { + "content": "###-0.4745###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34628": { + "content": "###-0.4743###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34629": { + "content": "###-0.4741###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34630": { + "content": "###-0.4739###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34631": { + "content": "###-0.4737###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34632": { + "content": "###-0.4735###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34633": { + "content": "###-0.4733###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34634": { + "content": "###-0.4731###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34635": { + "content": "###-0.4729###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34636": { + "content": "###-0.4727###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34637": { + "content": "###-0.4725###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34638": { + "content": "###-0.4723###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34639": { + "content": "###-0.4721###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34640": { + "content": "###-0.4719###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34641": { + "content": "###-0.4717###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34642": { + "content": "###-0.4715###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34643": { + "content": "###-0.4713###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34644": { + "content": "###-0.4711###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34645": { + "content": "###-0.4709###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34646": { + "content": "###-0.4707###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34647": { + "content": "###-0.4705###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34648": { + "content": "###-0.4703###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34649": { + "content": "###-0.4701###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34650": { + "content": "###-0.4699###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34651": { + "content": "###-0.4697###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34652": { + "content": "###-0.4695###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34653": { + "content": "###-0.4693###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34654": { + "content": "###-0.4691###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34655": { + "content": "###-0.4689###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34656": { + "content": "###-0.4687###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34657": { + "content": "###-0.4685###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34658": { + "content": "###-0.4683###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34659": { + "content": "###-0.4681###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34660": { + "content": "###-0.4679###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34661": { + "content": "###-0.4677###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34662": { + "content": "###-0.4675###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34663": { + "content": "###-0.4673###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34664": { + "content": "###-0.4671###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34665": { + "content": "###-0.4669###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34666": { + "content": "###-0.4667###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34667": { + "content": "###-0.4665###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34668": { + "content": "###-0.4663###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34669": { + "content": "###-0.4661###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34670": { + "content": "###-0.4659###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34671": { + "content": "###-0.4657###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34672": { + "content": "###-0.4655###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34673": { + "content": "###-0.4653###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34674": { + "content": "###-0.4651###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34675": { + "content": "###-0.4649###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34676": { + "content": "###-0.4647###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34677": { + "content": "###-0.4645###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34678": { + "content": "###-0.4643###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34679": { + "content": "###-0.4641###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34680": { + "content": "###-0.4639###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34681": { + "content": "###-0.4637###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34682": { + "content": "###-0.4635###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34683": { + "content": "###-0.4633###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34684": { + "content": "###-0.4631###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34685": { + "content": "###-0.4629###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34686": { + "content": "###-0.4627###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34687": { + "content": "###-0.4625###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34688": { + "content": "###-0.4623###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34689": { + "content": "###-0.4621###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34690": { + "content": "###-0.4619###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34691": { + "content": "###-0.4617###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34692": { + "content": "###-0.4615###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34693": { + "content": "###-0.4613###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34694": { + "content": "###-0.4611###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34695": { + "content": "###-0.4609###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34696": { + "content": "###-0.4607###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34697": { + "content": "###-0.4605###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34698": { + "content": "###-0.4603###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34699": { + "content": "###-0.4601###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34700": { + "content": "###-0.4599###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34701": { + "content": "###-0.4597###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34702": { + "content": "###-0.4595###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34703": { + "content": "###-0.4593###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34704": { + "content": "###-0.4591###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34705": { + "content": "###-0.4589###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34706": { + "content": "###-0.4587###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34707": { + "content": "###-0.4585###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34708": { + "content": "###-0.4583###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34709": { + "content": "###-0.4581###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34710": { + "content": "###-0.4579###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34711": { + "content": "###-0.4577###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34712": { + "content": "###-0.4575###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34713": { + "content": "###-0.4573###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34714": { + "content": "###-0.4571###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34715": { + "content": "###-0.4569###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34716": { + "content": "###-0.4567###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34717": { + "content": "###-0.4565###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34718": { + "content": "###-0.4563###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34719": { + "content": "###-0.4561###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34720": { + "content": "###-0.4559###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34721": { + "content": "###-0.4557###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34722": { + "content": "###-0.4555###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34723": { + "content": "###-0.4553###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34724": { + "content": "###-0.4551###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34725": { + "content": "###-0.4549###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34726": { + "content": "###-0.4547###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34727": { + "content": "###-0.4545###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34728": { + "content": "###-0.4543###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34729": { + "content": "###-0.4541###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34730": { + "content": "###-0.4539###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34731": { + "content": "###-0.4537###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34732": { + "content": "###-0.4535###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34733": { + "content": "###-0.4533###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34734": { + "content": "###-0.4531###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34735": { + "content": "###-0.4529###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34736": { + "content": "###-0.4527###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34737": { + "content": "###-0.4525###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34738": { + "content": "###-0.4523###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34739": { + "content": "###-0.4521###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34740": { + "content": "###-0.4519###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34741": { + "content": "###-0.4517###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34742": { + "content": "###-0.4515###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34743": { + "content": "###-0.4513###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34744": { + "content": "###-0.4511###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34745": { + "content": "###-0.4509###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34746": { + "content": "###-0.4507###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34747": { + "content": "###-0.4505###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34748": { + "content": "###-0.4503###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34749": { + "content": "###-0.4501###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34750": { + "content": "###-0.4499###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34751": { + "content": "###-0.4497###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34752": { + "content": "###-0.4495###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34753": { + "content": "###-0.4493###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34754": { + "content": "###-0.4491###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34755": { + "content": "###-0.4489###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34756": { + "content": "###-0.4487###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34757": { + "content": "###-0.4485###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34758": { + "content": "###-0.4483###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34759": { + "content": "###-0.4481###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34760": { + "content": "###-0.4479###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34761": { + "content": "###-0.4477###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34762": { + "content": "###-0.4475###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34763": { + "content": "###-0.4473###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34764": { + "content": "###-0.4471###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34765": { + "content": "###-0.4469###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34766": { + "content": "###-0.4467###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34767": { + "content": "###-0.4465###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34768": { + "content": "###-0.4463###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34769": { + "content": "###-0.4461###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34770": { + "content": "###-0.4459###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34771": { + "content": "###-0.4457###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34772": { + "content": "###-0.4455###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34773": { + "content": "###-0.4453###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34774": { + "content": "###-0.4451###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34775": { + "content": "###-0.4449###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34776": { + "content": "###-0.4447###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34777": { + "content": "###-0.4445###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34778": { + "content": "###-0.4443###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34779": { + "content": "###-0.4441###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34780": { + "content": "###-0.4439###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34781": { + "content": "###-0.4437###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34782": { + "content": "###-0.4435###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34783": { + "content": "###-0.4433###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34784": { + "content": "###-0.4431###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34785": { + "content": "###-0.4429###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34786": { + "content": "###-0.4427###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34787": { + "content": "###-0.4425###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34788": { + "content": "###-0.4423###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34789": { + "content": "###-0.4421###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34790": { + "content": "###-0.4419###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34791": { + "content": "###-0.4417###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34792": { + "content": "###-0.4415###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34793": { + "content": "###-0.4413###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34794": { + "content": "###-0.4411###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34795": { + "content": "###-0.4409###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34796": { + "content": "###-0.4407###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34797": { + "content": "###-0.4405###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34798": { + "content": "###-0.4403###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34799": { + "content": "###-0.4401###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34800": { + "content": "###-0.4399###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34801": { + "content": "###-0.4397###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34802": { + "content": "###-0.4395###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34803": { + "content": "###-0.4393###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34804": { + "content": "###-0.4391###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34805": { + "content": "###-0.4389###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34806": { + "content": "###-0.4387###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34807": { + "content": "###-0.4385###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34808": { + "content": "###-0.4383###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34809": { + "content": "###-0.4381###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34810": { + "content": "###-0.4379###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34811": { + "content": "###-0.4377###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34812": { + "content": "###-0.4375###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34813": { + "content": "###-0.4373###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34814": { + "content": "###-0.4371###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34815": { + "content": "###-0.4369###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34816": { + "content": "###-0.4367###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34817": { + "content": "###-0.4365###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34818": { + "content": "###-0.4363###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34819": { + "content": "###-0.4361###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34820": { + "content": "###-0.4359###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34821": { + "content": "###-0.4357###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34822": { + "content": "###-0.4355###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34823": { + "content": "###-0.4353###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34824": { + "content": "###-0.4351###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34825": { + "content": "###-0.4349###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34826": { + "content": "###-0.4347###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34827": { + "content": "###-0.4345###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34828": { + "content": "###-0.4343###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34829": { + "content": "###-0.4341###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34830": { + "content": "###-0.4339###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34831": { + "content": "###-0.4337###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34832": { + "content": "###-0.4335###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34833": { + "content": "###-0.4333###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34834": { + "content": "###-0.4331###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34835": { + "content": "###-0.4329###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34836": { + "content": "###-0.4327###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34837": { + "content": "###-0.4325###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34838": { + "content": "###-0.4323###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34839": { + "content": "###-0.4321###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34840": { + "content": "###-0.4319###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34841": { + "content": "###-0.4317###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34842": { + "content": "###-0.4315###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34843": { + "content": "###-0.4313###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34844": { + "content": "###-0.4311###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34845": { + "content": "###-0.4309###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34846": { + "content": "###-0.4307###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34847": { + "content": "###-0.4305###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34848": { + "content": "###-0.4303###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34849": { + "content": "###-0.4301###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34850": { + "content": "###-0.4299###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34851": { + "content": "###-0.4297###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34852": { + "content": "###-0.4295###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34853": { + "content": "###-0.4293###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34854": { + "content": "###-0.4291###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34855": { + "content": "###-0.4289###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34856": { + "content": "###-0.4287###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34857": { + "content": "###-0.4285###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34858": { + "content": "###-0.4283###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34859": { + "content": "###-0.4281###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34860": { + "content": "###-0.4279###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34861": { + "content": "###-0.4277###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34862": { + "content": "###-0.4275###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34863": { + "content": "###-0.4273###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34864": { + "content": "###-0.4271###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34865": { + "content": "###-0.4269###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34866": { + "content": "###-0.4267###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34867": { + "content": "###-0.4265###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34868": { + "content": "###-0.4263###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34869": { + "content": "###-0.4261###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34870": { + "content": "###-0.4259###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34871": { + "content": "###-0.4257###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34872": { + "content": "###-0.4255###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34873": { + "content": "###-0.4253###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34874": { + "content": "###-0.4251###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34875": { + "content": "###-0.4249###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34876": { + "content": "###-0.4247###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34877": { + "content": "###-0.4245###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34878": { + "content": "###-0.4243###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34879": { + "content": "###-0.4241###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34880": { + "content": "###-0.4239###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34881": { + "content": "###-0.4237###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34882": { + "content": "###-0.4235###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34883": { + "content": "###-0.4233###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34884": { + "content": "###-0.4231###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34885": { + "content": "###-0.4229###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34886": { + "content": "###-0.4227###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34887": { + "content": "###-0.4225###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34888": { + "content": "###-0.4223###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34889": { + "content": "###-0.4221###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34890": { + "content": "###-0.4219###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34891": { + "content": "###-0.4217###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34892": { + "content": "###-0.4215###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34893": { + "content": "###-0.4213###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34894": { + "content": "###-0.4211###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34895": { + "content": "###-0.4209###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34896": { + "content": "###-0.4207###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34897": { + "content": "###-0.4205###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34898": { + "content": "###-0.4203###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34899": { + "content": "###-0.4201###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34900": { + "content": "###-0.4199###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34901": { + "content": "###-0.4197###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34902": { + "content": "###-0.4195###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34903": { + "content": "###-0.4193###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34904": { + "content": "###-0.4191###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34905": { + "content": "###-0.4189###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34906": { + "content": "###-0.4187###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34907": { + "content": "###-0.4185###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34908": { + "content": "###-0.4183###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34909": { + "content": "###-0.4181###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34910": { + "content": "###-0.4179###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34911": { + "content": "###-0.4177###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34912": { + "content": "###-0.4175###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34913": { + "content": "###-0.4173###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34914": { + "content": "###-0.4171###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34915": { + "content": "###-0.4169###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34916": { + "content": "###-0.4167###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34917": { + "content": "###-0.4165###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34918": { + "content": "###-0.4163###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34919": { + "content": "###-0.4161###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34920": { + "content": "###-0.4159###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34921": { + "content": "###-0.4157###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34922": { + "content": "###-0.4155###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34923": { + "content": "###-0.4153###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34924": { + "content": "###-0.4151###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34925": { + "content": "###-0.4149###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34926": { + "content": "###-0.4147###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34927": { + "content": "###-0.4145###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34928": { + "content": "###-0.4143###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34929": { + "content": "###-0.4141###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34930": { + "content": "###-0.4139###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34931": { + "content": "###-0.4137###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34932": { + "content": "###-0.4135###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34933": { + "content": "###-0.4133###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34934": { + "content": "###-0.4131###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34935": { + "content": "###-0.4129###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34936": { + "content": "###-0.4127###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34937": { + "content": "###-0.4125###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34938": { + "content": "###-0.4123###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34939": { + "content": "###-0.4121###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34940": { + "content": "###-0.4119###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34941": { + "content": "###-0.4117###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34942": { + "content": "###-0.4115###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34943": { + "content": "###-0.4113###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34944": { + "content": "###-0.4111###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34945": { + "content": "###-0.4109###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34946": { + "content": "###-0.4107###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34947": { + "content": "###-0.4105###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34948": { + "content": "###-0.4103###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34949": { + "content": "###-0.4101###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34950": { + "content": "###-0.4099###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34951": { + "content": "###-0.4097###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34952": { + "content": "###-0.4095###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34953": { + "content": "###-0.4093###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34954": { + "content": "###-0.4091###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34955": { + "content": "###-0.4089###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34956": { + "content": "###-0.4087###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34957": { + "content": "###-0.4085###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34958": { + "content": "###-0.4083###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34959": { + "content": "###-0.4081###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34960": { + "content": "###-0.4079###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34961": { + "content": "###-0.4077###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34962": { + "content": "###-0.4075###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34963": { + "content": "###-0.4073###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34964": { + "content": "###-0.4071###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34965": { + "content": "###-0.4069###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34966": { + "content": "###-0.4067###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34967": { + "content": "###-0.4065###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34968": { + "content": "###-0.4063###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34969": { + "content": "###-0.4061###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34970": { + "content": "###-0.4059###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34971": { + "content": "###-0.4057###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34972": { + "content": "###-0.4055###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34973": { + "content": "###-0.4053###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34974": { + "content": "###-0.4051###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34975": { + "content": "###-0.4049###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34976": { + "content": "###-0.4047###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34977": { + "content": "###-0.4045###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34978": { + "content": "###-0.4043###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34979": { + "content": "###-0.4041###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34980": { + "content": "###-0.4039###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34981": { + "content": "###-0.4037###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34982": { + "content": "###-0.4035###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34983": { + "content": "###-0.4033###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34984": { + "content": "###-0.4031###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34985": { + "content": "###-0.4029###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34986": { + "content": "###-0.4027###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34987": { + "content": "###-0.4025###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34988": { + "content": "###-0.4023###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34989": { + "content": "###-0.4021###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34990": { + "content": "###-0.4019###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34991": { + "content": "###-0.4017###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34992": { + "content": "###-0.4015###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34993": { + "content": "###-0.4013###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34994": { + "content": "###-0.4011###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34995": { + "content": "###-0.4009###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34996": { + "content": "###-0.4007###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34997": { + "content": "###-0.4005###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34998": { + "content": "###-0.4003###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "34999": { + "content": "###-0.4001###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35000": { + "content": "###-0.3999###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35001": { + "content": "###-0.3997###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35002": { + "content": "###-0.3995###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35003": { + "content": "###-0.3993###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35004": { + "content": "###-0.3991###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35005": { + "content": "###-0.3989###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35006": { + "content": "###-0.3987###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35007": { + "content": "###-0.3985###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35008": { + "content": "###-0.3983###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35009": { + "content": "###-0.3981###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35010": { + "content": "###-0.3979###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35011": { + "content": "###-0.3977###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35012": { + "content": "###-0.3975###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35013": { + "content": "###-0.3973###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35014": { + "content": "###-0.3971###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35015": { + "content": "###-0.3969###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35016": { + "content": "###-0.3967###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35017": { + "content": "###-0.3965###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35018": { + "content": "###-0.3963###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35019": { + "content": "###-0.3961###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35020": { + "content": "###-0.3959###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35021": { + "content": "###-0.3957###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35022": { + "content": "###-0.3955###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35023": { + "content": "###-0.3953###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35024": { + "content": "###-0.3951###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35025": { + "content": "###-0.3949###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35026": { + "content": "###-0.3947###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35027": { + "content": "###-0.3945###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35028": { + "content": "###-0.3943###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35029": { + "content": "###-0.3941###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35030": { + "content": "###-0.3939###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35031": { + "content": "###-0.3937###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35032": { + "content": "###-0.3935###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35033": { + "content": "###-0.3933###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35034": { + "content": "###-0.3931###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35035": { + "content": "###-0.3929###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35036": { + "content": "###-0.3927###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35037": { + "content": "###-0.3925###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35038": { + "content": "###-0.3923###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35039": { + "content": "###-0.3921###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35040": { + "content": "###-0.3919###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35041": { + "content": "###-0.3917###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35042": { + "content": "###-0.3915###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35043": { + "content": "###-0.3913###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35044": { + "content": "###-0.3911###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35045": { + "content": "###-0.3909###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35046": { + "content": "###-0.3907###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35047": { + "content": "###-0.3905###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35048": { + "content": "###-0.3903###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35049": { + "content": "###-0.3901###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35050": { + "content": "###-0.3899###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35051": { + "content": "###-0.3897###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35052": { + "content": "###-0.3895###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35053": { + "content": "###-0.3893###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35054": { + "content": "###-0.3891###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35055": { + "content": "###-0.3889###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35056": { + "content": "###-0.3887###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35057": { + "content": "###-0.3885###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35058": { + "content": "###-0.3883###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35059": { + "content": "###-0.3881###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35060": { + "content": "###-0.3879###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35061": { + "content": "###-0.3877###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35062": { + "content": "###-0.3875###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35063": { + "content": "###-0.3873###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35064": { + "content": "###-0.3871###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35065": { + "content": "###-0.3869###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35066": { + "content": "###-0.3867###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35067": { + "content": "###-0.3865###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35068": { + "content": "###-0.3863###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35069": { + "content": "###-0.3861###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35070": { + "content": "###-0.3859###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35071": { + "content": "###-0.3857###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35072": { + "content": "###-0.3855###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35073": { + "content": "###-0.3853###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35074": { + "content": "###-0.3851###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35075": { + "content": "###-0.3849###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35076": { + "content": "###-0.3847###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35077": { + "content": "###-0.3845###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35078": { + "content": "###-0.3843###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35079": { + "content": "###-0.3841###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35080": { + "content": "###-0.3839###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35081": { + "content": "###-0.3837###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35082": { + "content": "###-0.3835###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35083": { + "content": "###-0.3833###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35084": { + "content": "###-0.3831###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35085": { + "content": "###-0.3829###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35086": { + "content": "###-0.3827###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35087": { + "content": "###-0.3825###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35088": { + "content": "###-0.3823###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35089": { + "content": "###-0.3821###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35090": { + "content": "###-0.3819###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35091": { + "content": "###-0.3817###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35092": { + "content": "###-0.3815###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35093": { + "content": "###-0.3813###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35094": { + "content": "###-0.3811###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35095": { + "content": "###-0.3809###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35096": { + "content": "###-0.3807###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35097": { + "content": "###-0.3805###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35098": { + "content": "###-0.3803###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35099": { + "content": "###-0.3801###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35100": { + "content": "###-0.3799###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35101": { + "content": "###-0.3797###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35102": { + "content": "###-0.3795###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35103": { + "content": "###-0.3793###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35104": { + "content": "###-0.3791###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35105": { + "content": "###-0.3789###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35106": { + "content": "###-0.3787###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35107": { + "content": "###-0.3785###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35108": { + "content": "###-0.3783###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35109": { + "content": "###-0.3781###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35110": { + "content": "###-0.3779###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35111": { + "content": "###-0.3777###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35112": { + "content": "###-0.3775###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35113": { + "content": "###-0.3773###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35114": { + "content": "###-0.3771###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35115": { + "content": "###-0.3769###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35116": { + "content": "###-0.3767###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35117": { + "content": "###-0.3765###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35118": { + "content": "###-0.3763###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35119": { + "content": "###-0.3761###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35120": { + "content": "###-0.3759###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35121": { + "content": "###-0.3757###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35122": { + "content": "###-0.3755###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35123": { + "content": "###-0.3753###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35124": { + "content": "###-0.3751###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35125": { + "content": "###-0.3749###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35126": { + "content": "###-0.3747###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35127": { + "content": "###-0.3745###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35128": { + "content": "###-0.3743###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35129": { + "content": "###-0.3741###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35130": { + "content": "###-0.3739###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35131": { + "content": "###-0.3737###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35132": { + "content": "###-0.3735###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35133": { + "content": "###-0.3733###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35134": { + "content": "###-0.3731###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35135": { + "content": "###-0.3729###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35136": { + "content": "###-0.3727###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35137": { + "content": "###-0.3725###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35138": { + "content": "###-0.3723###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35139": { + "content": "###-0.3721###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35140": { + "content": "###-0.3719###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35141": { + "content": "###-0.3717###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35142": { + "content": "###-0.3715###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35143": { + "content": "###-0.3713###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35144": { + "content": "###-0.3711###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35145": { + "content": "###-0.3709###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35146": { + "content": "###-0.3707###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35147": { + "content": "###-0.3705###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35148": { + "content": "###-0.3703###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35149": { + "content": "###-0.3701###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35150": { + "content": "###-0.3699###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35151": { + "content": "###-0.3697###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35152": { + "content": "###-0.3695###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35153": { + "content": "###-0.3693###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35154": { + "content": "###-0.3691###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35155": { + "content": "###-0.3689###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35156": { + "content": "###-0.3687###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35157": { + "content": "###-0.3685###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35158": { + "content": "###-0.3683###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35159": { + "content": "###-0.3681###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35160": { + "content": "###-0.3679###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35161": { + "content": "###-0.3677###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35162": { + "content": "###-0.3675###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35163": { + "content": "###-0.3673###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35164": { + "content": "###-0.3671###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35165": { + "content": "###-0.3669###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35166": { + "content": "###-0.3667###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35167": { + "content": "###-0.3665###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35168": { + "content": "###-0.3663###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35169": { + "content": "###-0.3661###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35170": { + "content": "###-0.3659###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35171": { + "content": "###-0.3657###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35172": { + "content": "###-0.3655###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35173": { + "content": "###-0.3653###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35174": { + "content": "###-0.3651###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35175": { + "content": "###-0.3649###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35176": { + "content": "###-0.3647###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35177": { + "content": "###-0.3645###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35178": { + "content": "###-0.3643###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35179": { + "content": "###-0.3641###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35180": { + "content": "###-0.3639###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35181": { + "content": "###-0.3637###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35182": { + "content": "###-0.3635###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35183": { + "content": "###-0.3633###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35184": { + "content": "###-0.3631###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35185": { + "content": "###-0.3629###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35186": { + "content": "###-0.3627###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35187": { + "content": "###-0.3625###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35188": { + "content": "###-0.3623###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35189": { + "content": "###-0.3621###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35190": { + "content": "###-0.3619###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35191": { + "content": "###-0.3617###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35192": { + "content": "###-0.3615###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35193": { + "content": "###-0.3613###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35194": { + "content": "###-0.3611###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35195": { + "content": "###-0.3609###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35196": { + "content": "###-0.3607###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35197": { + "content": "###-0.3605###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35198": { + "content": "###-0.3603###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35199": { + "content": "###-0.3601###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35200": { + "content": "###-0.3599###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35201": { + "content": "###-0.3597###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35202": { + "content": "###-0.3595###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35203": { + "content": "###-0.3593###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35204": { + "content": "###-0.3591###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35205": { + "content": "###-0.3589###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35206": { + "content": "###-0.3587###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35207": { + "content": "###-0.3585###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35208": { + "content": "###-0.3583###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35209": { + "content": "###-0.3581###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35210": { + "content": "###-0.3579###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35211": { + "content": "###-0.3577###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35212": { + "content": "###-0.3575###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35213": { + "content": "###-0.3573###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35214": { + "content": "###-0.3571###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35215": { + "content": "###-0.3569###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35216": { + "content": "###-0.3567###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35217": { + "content": "###-0.3565###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35218": { + "content": "###-0.3563###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35219": { + "content": "###-0.3561###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35220": { + "content": "###-0.3559###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35221": { + "content": "###-0.3557###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35222": { + "content": "###-0.3555###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35223": { + "content": "###-0.3553###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35224": { + "content": "###-0.3551###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35225": { + "content": "###-0.3549###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35226": { + "content": "###-0.3547###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35227": { + "content": "###-0.3545###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35228": { + "content": "###-0.3543###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35229": { + "content": "###-0.3541###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35230": { + "content": "###-0.3539###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35231": { + "content": "###-0.3537###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35232": { + "content": "###-0.3535###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35233": { + "content": "###-0.3533###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35234": { + "content": "###-0.3531###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35235": { + "content": "###-0.3529###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35236": { + "content": "###-0.3527###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35237": { + "content": "###-0.3525###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35238": { + "content": "###-0.3523###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35239": { + "content": "###-0.3521###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35240": { + "content": "###-0.3519###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35241": { + "content": "###-0.3517###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35242": { + "content": "###-0.3515###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35243": { + "content": "###-0.3513###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35244": { + "content": "###-0.3511###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35245": { + "content": "###-0.3509###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35246": { + "content": "###-0.3507###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35247": { + "content": "###-0.3505###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35248": { + "content": "###-0.3503###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35249": { + "content": "###-0.3501###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35250": { + "content": "###-0.3499###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35251": { + "content": "###-0.3497###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35252": { + "content": "###-0.3495###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35253": { + "content": "###-0.3493###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35254": { + "content": "###-0.3491###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35255": { + "content": "###-0.3489###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35256": { + "content": "###-0.3487###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35257": { + "content": "###-0.3485###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35258": { + "content": "###-0.3483###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35259": { + "content": "###-0.3481###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35260": { + "content": "###-0.3479###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35261": { + "content": "###-0.3477###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35262": { + "content": "###-0.3475###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35263": { + "content": "###-0.3473###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35264": { + "content": "###-0.3471###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35265": { + "content": "###-0.3469###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35266": { + "content": "###-0.3467###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35267": { + "content": "###-0.3465###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35268": { + "content": "###-0.3463###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35269": { + "content": "###-0.3461###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35270": { + "content": "###-0.3459###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35271": { + "content": "###-0.3457###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35272": { + "content": "###-0.3455###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35273": { + "content": "###-0.3453###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35274": { + "content": "###-0.3451###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35275": { + "content": "###-0.3449###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35276": { + "content": "###-0.3447###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35277": { + "content": "###-0.3445###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35278": { + "content": "###-0.3443###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35279": { + "content": "###-0.3441###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35280": { + "content": "###-0.3439###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35281": { + "content": "###-0.3437###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35282": { + "content": "###-0.3435###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35283": { + "content": "###-0.3433###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35284": { + "content": "###-0.3431###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35285": { + "content": "###-0.3429###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35286": { + "content": "###-0.3427###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35287": { + "content": "###-0.3425###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35288": { + "content": "###-0.3423###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35289": { + "content": "###-0.3421###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35290": { + "content": "###-0.3419###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35291": { + "content": "###-0.3417###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35292": { + "content": "###-0.3415###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35293": { + "content": "###-0.3413###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35294": { + "content": "###-0.3411###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35295": { + "content": "###-0.3409###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35296": { + "content": "###-0.3407###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35297": { + "content": "###-0.3405###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35298": { + "content": "###-0.3403###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35299": { + "content": "###-0.3401###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35300": { + "content": "###-0.3399###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35301": { + "content": "###-0.3397###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35302": { + "content": "###-0.3395###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35303": { + "content": "###-0.3393###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35304": { + "content": "###-0.3391###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35305": { + "content": "###-0.3389###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35306": { + "content": "###-0.3387###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35307": { + "content": "###-0.3385###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35308": { + "content": "###-0.3383###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35309": { + "content": "###-0.3381###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35310": { + "content": "###-0.3379###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35311": { + "content": "###-0.3377###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35312": { + "content": "###-0.3375###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35313": { + "content": "###-0.3373###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35314": { + "content": "###-0.3371###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35315": { + "content": "###-0.3369###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35316": { + "content": "###-0.3367###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35317": { + "content": "###-0.3365###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35318": { + "content": "###-0.3363###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35319": { + "content": "###-0.3361###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35320": { + "content": "###-0.3359###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35321": { + "content": "###-0.3357###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35322": { + "content": "###-0.3355###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35323": { + "content": "###-0.3353###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35324": { + "content": "###-0.3351###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35325": { + "content": "###-0.3349###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35326": { + "content": "###-0.3347###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35327": { + "content": "###-0.3345###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35328": { + "content": "###-0.3343###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35329": { + "content": "###-0.3341###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35330": { + "content": "###-0.3339###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35331": { + "content": "###-0.3337###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35332": { + "content": "###-0.3335###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35333": { + "content": "###-0.3333###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35334": { + "content": "###-0.3331###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35335": { + "content": "###-0.3329###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35336": { + "content": "###-0.3327###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35337": { + "content": "###-0.3325###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35338": { + "content": "###-0.3323###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35339": { + "content": "###-0.3321###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35340": { + "content": "###-0.3319###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35341": { + "content": "###-0.3317###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35342": { + "content": "###-0.3315###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35343": { + "content": "###-0.3313###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35344": { + "content": "###-0.3311###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35345": { + "content": "###-0.3309###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35346": { + "content": "###-0.3307###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35347": { + "content": "###-0.3305###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35348": { + "content": "###-0.3303###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35349": { + "content": "###-0.3301###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35350": { + "content": "###-0.3299###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35351": { + "content": "###-0.3297###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35352": { + "content": "###-0.3295###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35353": { + "content": "###-0.3293###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35354": { + "content": "###-0.3291###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35355": { + "content": "###-0.3289###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35356": { + "content": "###-0.3287###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35357": { + "content": "###-0.3285###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35358": { + "content": "###-0.3283###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35359": { + "content": "###-0.3281###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35360": { + "content": "###-0.3279###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35361": { + "content": "###-0.3277###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35362": { + "content": "###-0.3275###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35363": { + "content": "###-0.3273###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35364": { + "content": "###-0.3271###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35365": { + "content": "###-0.3269###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35366": { + "content": "###-0.3267###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35367": { + "content": "###-0.3265###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35368": { + "content": "###-0.3263###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35369": { + "content": "###-0.3261###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35370": { + "content": "###-0.3259###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35371": { + "content": "###-0.3257###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35372": { + "content": "###-0.3255###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35373": { + "content": "###-0.3253###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35374": { + "content": "###-0.3251###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35375": { + "content": "###-0.3249###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35376": { + "content": "###-0.3247###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35377": { + "content": "###-0.3245###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35378": { + "content": "###-0.3243###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35379": { + "content": "###-0.3241###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35380": { + "content": "###-0.3239###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35381": { + "content": "###-0.3237###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35382": { + "content": "###-0.3235###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35383": { + "content": "###-0.3233###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35384": { + "content": "###-0.3231###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35385": { + "content": "###-0.3229###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35386": { + "content": "###-0.3227###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35387": { + "content": "###-0.3225###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35388": { + "content": "###-0.3223###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35389": { + "content": "###-0.3221###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35390": { + "content": "###-0.3219###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35391": { + "content": "###-0.3217###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35392": { + "content": "###-0.3215###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35393": { + "content": "###-0.3213###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35394": { + "content": "###-0.3211###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35395": { + "content": "###-0.3209###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35396": { + "content": "###-0.3207###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35397": { + "content": "###-0.3205###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35398": { + "content": "###-0.3203###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35399": { + "content": "###-0.3201###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35400": { + "content": "###-0.3199###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35401": { + "content": "###-0.3197###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35402": { + "content": "###-0.3195###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35403": { + "content": "###-0.3193###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35404": { + "content": "###-0.3191###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35405": { + "content": "###-0.3189###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35406": { + "content": "###-0.3187###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35407": { + "content": "###-0.3185###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35408": { + "content": "###-0.3183###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35409": { + "content": "###-0.3181###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35410": { + "content": "###-0.3179###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35411": { + "content": "###-0.3177###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35412": { + "content": "###-0.3175###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35413": { + "content": "###-0.3173###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35414": { + "content": "###-0.3171###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35415": { + "content": "###-0.3169###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35416": { + "content": "###-0.3167###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35417": { + "content": "###-0.3165###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35418": { + "content": "###-0.3163###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35419": { + "content": "###-0.3161###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35420": { + "content": "###-0.3159###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35421": { + "content": "###-0.3157###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35422": { + "content": "###-0.3155###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35423": { + "content": "###-0.3153###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35424": { + "content": "###-0.3151###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35425": { + "content": "###-0.3149###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35426": { + "content": "###-0.3147###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35427": { + "content": "###-0.3145###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35428": { + "content": "###-0.3143###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35429": { + "content": "###-0.3141###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35430": { + "content": "###-0.3139###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35431": { + "content": "###-0.3137###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35432": { + "content": "###-0.3135###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35433": { + "content": "###-0.3133###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35434": { + "content": "###-0.3131###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35435": { + "content": "###-0.3129###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35436": { + "content": "###-0.3127###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35437": { + "content": "###-0.3125###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35438": { + "content": "###-0.3123###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35439": { + "content": "###-0.3121###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35440": { + "content": "###-0.3119###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35441": { + "content": "###-0.3117###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35442": { + "content": "###-0.3115###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35443": { + "content": "###-0.3113###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35444": { + "content": "###-0.3111###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35445": { + "content": "###-0.3109###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35446": { + "content": "###-0.3107###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35447": { + "content": "###-0.3105###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35448": { + "content": "###-0.3103###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35449": { + "content": "###-0.3101###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35450": { + "content": "###-0.3099###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35451": { + "content": "###-0.3097###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35452": { + "content": "###-0.3095###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35453": { + "content": "###-0.3093###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35454": { + "content": "###-0.3091###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35455": { + "content": "###-0.3089###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35456": { + "content": "###-0.3087###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35457": { + "content": "###-0.3085###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35458": { + "content": "###-0.3083###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35459": { + "content": "###-0.3081###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35460": { + "content": "###-0.3079###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35461": { + "content": "###-0.3077###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35462": { + "content": "###-0.3075###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35463": { + "content": "###-0.3073###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35464": { + "content": "###-0.3071###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35465": { + "content": "###-0.3069###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35466": { + "content": "###-0.3067###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35467": { + "content": "###-0.3065###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35468": { + "content": "###-0.3063###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35469": { + "content": "###-0.3061###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35470": { + "content": "###-0.3059###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35471": { + "content": "###-0.3057###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35472": { + "content": "###-0.3055###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35473": { + "content": "###-0.3053###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35474": { + "content": "###-0.3051###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35475": { + "content": "###-0.3049###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35476": { + "content": "###-0.3047###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35477": { + "content": "###-0.3045###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35478": { + "content": "###-0.3043###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35479": { + "content": "###-0.3041###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35480": { + "content": "###-0.3039###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35481": { + "content": "###-0.3037###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35482": { + "content": "###-0.3035###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35483": { + "content": "###-0.3033###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35484": { + "content": "###-0.3031###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35485": { + "content": "###-0.3029###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35486": { + "content": "###-0.3027###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35487": { + "content": "###-0.3025###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35488": { + "content": "###-0.3023###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35489": { + "content": "###-0.3021###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35490": { + "content": "###-0.3019###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35491": { + "content": "###-0.3017###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35492": { + "content": "###-0.3015###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35493": { + "content": "###-0.3013###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35494": { + "content": "###-0.3011###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35495": { + "content": "###-0.3009###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35496": { + "content": "###-0.3007###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35497": { + "content": "###-0.3005###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35498": { + "content": "###-0.3003###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35499": { + "content": "###-0.3001###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35500": { + "content": "###-0.2999###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35501": { + "content": "###-0.2997###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35502": { + "content": "###-0.2995###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35503": { + "content": "###-0.2993###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35504": { + "content": "###-0.2991###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35505": { + "content": "###-0.2989###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35506": { + "content": "###-0.2987###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35507": { + "content": "###-0.2985###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35508": { + "content": "###-0.2983###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35509": { + "content": "###-0.2981###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35510": { + "content": "###-0.2979###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35511": { + "content": "###-0.2977###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35512": { + "content": "###-0.2975###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35513": { + "content": "###-0.2973###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35514": { + "content": "###-0.2971###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35515": { + "content": "###-0.2969###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35516": { + "content": "###-0.2967###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35517": { + "content": "###-0.2965###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35518": { + "content": "###-0.2963###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35519": { + "content": "###-0.2961###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35520": { + "content": "###-0.2959###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35521": { + "content": "###-0.2957###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35522": { + "content": "###-0.2955###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35523": { + "content": "###-0.2953###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35524": { + "content": "###-0.2951###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35525": { + "content": "###-0.2949###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35526": { + "content": "###-0.2947###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35527": { + "content": "###-0.2945###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35528": { + "content": "###-0.2943###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35529": { + "content": "###-0.2941###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35530": { + "content": "###-0.2939###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35531": { + "content": "###-0.2937###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35532": { + "content": "###-0.2935###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35533": { + "content": "###-0.2933###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35534": { + "content": "###-0.2931###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35535": { + "content": "###-0.2929###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35536": { + "content": "###-0.2927###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35537": { + "content": "###-0.2925###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35538": { + "content": "###-0.2923###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35539": { + "content": "###-0.2921###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35540": { + "content": "###-0.2919###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35541": { + "content": "###-0.2917###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35542": { + "content": "###-0.2915###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35543": { + "content": "###-0.2913###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35544": { + "content": "###-0.2911###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35545": { + "content": "###-0.2909###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35546": { + "content": "###-0.2907###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35547": { + "content": "###-0.2905###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35548": { + "content": "###-0.2903###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35549": { + "content": "###-0.2901###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35550": { + "content": "###-0.2899###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35551": { + "content": "###-0.2897###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35552": { + "content": "###-0.2895###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35553": { + "content": "###-0.2893###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35554": { + "content": "###-0.2891###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35555": { + "content": "###-0.2889###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35556": { + "content": "###-0.2887###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35557": { + "content": "###-0.2885###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35558": { + "content": "###-0.2883###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35559": { + "content": "###-0.2881###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35560": { + "content": "###-0.2879###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35561": { + "content": "###-0.2877###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35562": { + "content": "###-0.2875###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35563": { + "content": "###-0.2873###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35564": { + "content": "###-0.2871###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35565": { + "content": "###-0.2869###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35566": { + "content": "###-0.2867###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35567": { + "content": "###-0.2865###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35568": { + "content": "###-0.2863###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35569": { + "content": "###-0.2861###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35570": { + "content": "###-0.2859###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35571": { + "content": "###-0.2857###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35572": { + "content": "###-0.2855###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35573": { + "content": "###-0.2853###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35574": { + "content": "###-0.2851###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35575": { + "content": "###-0.2849###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35576": { + "content": "###-0.2847###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35577": { + "content": "###-0.2845###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35578": { + "content": "###-0.2843###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35579": { + "content": "###-0.2841###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35580": { + "content": "###-0.2839###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35581": { + "content": "###-0.2837###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35582": { + "content": "###-0.2835###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35583": { + "content": "###-0.2833###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35584": { + "content": "###-0.2831###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35585": { + "content": "###-0.2829###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35586": { + "content": "###-0.2827###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35587": { + "content": "###-0.2825###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35588": { + "content": "###-0.2823###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35589": { + "content": "###-0.2821###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35590": { + "content": "###-0.2819###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35591": { + "content": "###-0.2817###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35592": { + "content": "###-0.2815###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35593": { + "content": "###-0.2813###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35594": { + "content": "###-0.2811###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35595": { + "content": "###-0.2809###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35596": { + "content": "###-0.2807###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35597": { + "content": "###-0.2805###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35598": { + "content": "###-0.2803###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35599": { + "content": "###-0.2801###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35600": { + "content": "###-0.2799###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35601": { + "content": "###-0.2797###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35602": { + "content": "###-0.2795###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35603": { + "content": "###-0.2793###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35604": { + "content": "###-0.2791###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35605": { + "content": "###-0.2789###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35606": { + "content": "###-0.2787###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35607": { + "content": "###-0.2785###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35608": { + "content": "###-0.2783###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35609": { + "content": "###-0.2781###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35610": { + "content": "###-0.2779###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35611": { + "content": "###-0.2777###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35612": { + "content": "###-0.2775###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35613": { + "content": "###-0.2773###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35614": { + "content": "###-0.2771###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35615": { + "content": "###-0.2769###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35616": { + "content": "###-0.2767###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35617": { + "content": "###-0.2765###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35618": { + "content": "###-0.2763###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35619": { + "content": "###-0.2761###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35620": { + "content": "###-0.2759###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35621": { + "content": "###-0.2757###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35622": { + "content": "###-0.2755###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35623": { + "content": "###-0.2753###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35624": { + "content": "###-0.2751###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35625": { + "content": "###-0.2749###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35626": { + "content": "###-0.2747###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35627": { + "content": "###-0.2745###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35628": { + "content": "###-0.2743###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35629": { + "content": "###-0.2741###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35630": { + "content": "###-0.2739###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35631": { + "content": "###-0.2737###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35632": { + "content": "###-0.2735###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35633": { + "content": "###-0.2733###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35634": { + "content": "###-0.2731###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35635": { + "content": "###-0.2729###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35636": { + "content": "###-0.2727###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35637": { + "content": "###-0.2725###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35638": { + "content": "###-0.2723###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35639": { + "content": "###-0.2721###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35640": { + "content": "###-0.2719###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35641": { + "content": "###-0.2717###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35642": { + "content": "###-0.2715###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35643": { + "content": "###-0.2713###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35644": { + "content": "###-0.2711###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35645": { + "content": "###-0.2709###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35646": { + "content": "###-0.2707###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35647": { + "content": "###-0.2705###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35648": { + "content": "###-0.2703###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35649": { + "content": "###-0.2701###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35650": { + "content": "###-0.2699###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35651": { + "content": "###-0.2697###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35652": { + "content": "###-0.2695###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35653": { + "content": "###-0.2693###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35654": { + "content": "###-0.2691###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35655": { + "content": "###-0.2689###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35656": { + "content": "###-0.2687###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35657": { + "content": "###-0.2685###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35658": { + "content": "###-0.2683###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35659": { + "content": "###-0.2681###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35660": { + "content": "###-0.2679###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35661": { + "content": "###-0.2677###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35662": { + "content": "###-0.2675###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35663": { + "content": "###-0.2673###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35664": { + "content": "###-0.2671###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35665": { + "content": "###-0.2669###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35666": { + "content": "###-0.2667###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35667": { + "content": "###-0.2665###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35668": { + "content": "###-0.2663###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35669": { + "content": "###-0.2661###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35670": { + "content": "###-0.2659###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35671": { + "content": "###-0.2657###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35672": { + "content": "###-0.2655###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35673": { + "content": "###-0.2653###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35674": { + "content": "###-0.2651###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35675": { + "content": "###-0.2649###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35676": { + "content": "###-0.2647###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35677": { + "content": "###-0.2645###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35678": { + "content": "###-0.2643###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35679": { + "content": "###-0.2641###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35680": { + "content": "###-0.2639###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35681": { + "content": "###-0.2637###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35682": { + "content": "###-0.2635###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35683": { + "content": "###-0.2633###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35684": { + "content": "###-0.2631###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35685": { + "content": "###-0.2629###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35686": { + "content": "###-0.2627###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35687": { + "content": "###-0.2625###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35688": { + "content": "###-0.2623###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35689": { + "content": "###-0.2621###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35690": { + "content": "###-0.2619###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35691": { + "content": "###-0.2617###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35692": { + "content": "###-0.2615###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35693": { + "content": "###-0.2613###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35694": { + "content": "###-0.2611###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35695": { + "content": "###-0.2609###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35696": { + "content": "###-0.2607###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35697": { + "content": "###-0.2605###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35698": { + "content": "###-0.2603###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35699": { + "content": "###-0.2601###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35700": { + "content": "###-0.2599###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35701": { + "content": "###-0.2597###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35702": { + "content": "###-0.2595###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35703": { + "content": "###-0.2593###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35704": { + "content": "###-0.2591###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35705": { + "content": "###-0.2589###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35706": { + "content": "###-0.2587###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35707": { + "content": "###-0.2585###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35708": { + "content": "###-0.2583###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35709": { + "content": "###-0.2581###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35710": { + "content": "###-0.2579###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35711": { + "content": "###-0.2577###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35712": { + "content": "###-0.2575###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35713": { + "content": "###-0.2573###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35714": { + "content": "###-0.2571###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35715": { + "content": "###-0.2569###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35716": { + "content": "###-0.2567###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35717": { + "content": "###-0.2565###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35718": { + "content": "###-0.2563###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35719": { + "content": "###-0.2561###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35720": { + "content": "###-0.2559###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35721": { + "content": "###-0.2557###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35722": { + "content": "###-0.2555###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35723": { + "content": "###-0.2553###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35724": { + "content": "###-0.2551###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35725": { + "content": "###-0.2549###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35726": { + "content": "###-0.2547###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35727": { + "content": "###-0.2545###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35728": { + "content": "###-0.2543###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35729": { + "content": "###-0.2541###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35730": { + "content": "###-0.2539###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35731": { + "content": "###-0.2537###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35732": { + "content": "###-0.2535###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35733": { + "content": "###-0.2533###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35734": { + "content": "###-0.2531###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35735": { + "content": "###-0.2529###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35736": { + "content": "###-0.2527###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35737": { + "content": "###-0.2525###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35738": { + "content": "###-0.2523###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35739": { + "content": "###-0.2521###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35740": { + "content": "###-0.2519###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35741": { + "content": "###-0.2517###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35742": { + "content": "###-0.2515###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35743": { + "content": "###-0.2513###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35744": { + "content": "###-0.2511###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35745": { + "content": "###-0.2509###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35746": { + "content": "###-0.2507###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35747": { + "content": "###-0.2505###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35748": { + "content": "###-0.2503###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35749": { + "content": "###-0.2501###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35750": { + "content": "###-0.2499###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35751": { + "content": "###-0.2497###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35752": { + "content": "###-0.2495###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35753": { + "content": "###-0.2493###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35754": { + "content": "###-0.2491###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35755": { + "content": "###-0.2489###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35756": { + "content": "###-0.2487###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35757": { + "content": "###-0.2485###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35758": { + "content": "###-0.2483###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35759": { + "content": "###-0.2481###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35760": { + "content": "###-0.2479###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35761": { + "content": "###-0.2477###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35762": { + "content": "###-0.2475###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35763": { + "content": "###-0.2473###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35764": { + "content": "###-0.2471###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35765": { + "content": "###-0.2469###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35766": { + "content": "###-0.2467###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35767": { + "content": "###-0.2465###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35768": { + "content": "###-0.2463###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35769": { + "content": "###-0.2461###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35770": { + "content": "###-0.2459###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35771": { + "content": "###-0.2457###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35772": { + "content": "###-0.2455###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35773": { + "content": "###-0.2453###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35774": { + "content": "###-0.2451###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35775": { + "content": "###-0.2449###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35776": { + "content": "###-0.2447###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35777": { + "content": "###-0.2445###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35778": { + "content": "###-0.2443###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35779": { + "content": "###-0.2441###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35780": { + "content": "###-0.2439###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35781": { + "content": "###-0.2437###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35782": { + "content": "###-0.2435###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35783": { + "content": "###-0.2433###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35784": { + "content": "###-0.2431###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35785": { + "content": "###-0.2429###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35786": { + "content": "###-0.2427###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35787": { + "content": "###-0.2425###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35788": { + "content": "###-0.2423###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35789": { + "content": "###-0.2421###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35790": { + "content": "###-0.2419###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35791": { + "content": "###-0.2417###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35792": { + "content": "###-0.2415###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35793": { + "content": "###-0.2413###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35794": { + "content": "###-0.2411###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35795": { + "content": "###-0.2409###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35796": { + "content": "###-0.2407###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35797": { + "content": "###-0.2405###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35798": { + "content": "###-0.2403###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35799": { + "content": "###-0.2401###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35800": { + "content": "###-0.2399###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35801": { + "content": "###-0.2397###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35802": { + "content": "###-0.2395###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35803": { + "content": "###-0.2393###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35804": { + "content": "###-0.2391###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35805": { + "content": "###-0.2389###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35806": { + "content": "###-0.2387###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35807": { + "content": "###-0.2385###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35808": { + "content": "###-0.2383###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35809": { + "content": "###-0.2381###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35810": { + "content": "###-0.2379###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35811": { + "content": "###-0.2377###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35812": { + "content": "###-0.2375###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35813": { + "content": "###-0.2373###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35814": { + "content": "###-0.2371###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35815": { + "content": "###-0.2369###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35816": { + "content": "###-0.2367###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35817": { + "content": "###-0.2365###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35818": { + "content": "###-0.2363###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35819": { + "content": "###-0.2361###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35820": { + "content": "###-0.2359###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35821": { + "content": "###-0.2357###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35822": { + "content": "###-0.2355###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35823": { + "content": "###-0.2353###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35824": { + "content": "###-0.2351###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35825": { + "content": "###-0.2349###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35826": { + "content": "###-0.2347###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35827": { + "content": "###-0.2345###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35828": { + "content": "###-0.2343###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35829": { + "content": "###-0.2341###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35830": { + "content": "###-0.2339###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35831": { + "content": "###-0.2337###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35832": { + "content": "###-0.2335###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35833": { + "content": "###-0.2333###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35834": { + "content": "###-0.2331###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35835": { + "content": "###-0.2329###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35836": { + "content": "###-0.2327###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35837": { + "content": "###-0.2325###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35838": { + "content": "###-0.2323###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35839": { + "content": "###-0.2321###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35840": { + "content": "###-0.2319###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35841": { + "content": "###-0.2317###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35842": { + "content": "###-0.2315###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35843": { + "content": "###-0.2313###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35844": { + "content": "###-0.2311###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35845": { + "content": "###-0.2309###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35846": { + "content": "###-0.2307###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35847": { + "content": "###-0.2305###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35848": { + "content": "###-0.2303###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35849": { + "content": "###-0.2301###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35850": { + "content": "###-0.2299###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35851": { + "content": "###-0.2297###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35852": { + "content": "###-0.2295###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35853": { + "content": "###-0.2293###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35854": { + "content": "###-0.2291###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35855": { + "content": "###-0.2289###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35856": { + "content": "###-0.2287###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35857": { + "content": "###-0.2285###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35858": { + "content": "###-0.2283###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35859": { + "content": "###-0.2281###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35860": { + "content": "###-0.2279###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35861": { + "content": "###-0.2277###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35862": { + "content": "###-0.2275###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35863": { + "content": "###-0.2273###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35864": { + "content": "###-0.2271###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35865": { + "content": "###-0.2269###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35866": { + "content": "###-0.2267###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35867": { + "content": "###-0.2265###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35868": { + "content": "###-0.2263###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35869": { + "content": "###-0.2261###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35870": { + "content": "###-0.2259###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35871": { + "content": "###-0.2257###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35872": { + "content": "###-0.2255###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35873": { + "content": "###-0.2253###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35874": { + "content": "###-0.2251###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35875": { + "content": "###-0.2249###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35876": { + "content": "###-0.2247###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35877": { + "content": "###-0.2245###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35878": { + "content": "###-0.2243###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35879": { + "content": "###-0.2241###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35880": { + "content": "###-0.2239###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35881": { + "content": "###-0.2237###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35882": { + "content": "###-0.2235###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35883": { + "content": "###-0.2233###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35884": { + "content": "###-0.2231###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35885": { + "content": "###-0.2229###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35886": { + "content": "###-0.2227###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35887": { + "content": "###-0.2225###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35888": { + "content": "###-0.2223###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35889": { + "content": "###-0.2221###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35890": { + "content": "###-0.2219###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35891": { + "content": "###-0.2217###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35892": { + "content": "###-0.2215###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35893": { + "content": "###-0.2213###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35894": { + "content": "###-0.2211###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35895": { + "content": "###-0.2209###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35896": { + "content": "###-0.2207###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35897": { + "content": "###-0.2205###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35898": { + "content": "###-0.2203###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35899": { + "content": "###-0.2201###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35900": { + "content": "###-0.2199###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35901": { + "content": "###-0.2197###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35902": { + "content": "###-0.2195###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35903": { + "content": "###-0.2193###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35904": { + "content": "###-0.2191###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35905": { + "content": "###-0.2189###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35906": { + "content": "###-0.2187###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35907": { + "content": "###-0.2185###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35908": { + "content": "###-0.2183###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35909": { + "content": "###-0.2181###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35910": { + "content": "###-0.2179###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35911": { + "content": "###-0.2177###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35912": { + "content": "###-0.2175###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35913": { + "content": "###-0.2173###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35914": { + "content": "###-0.2171###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35915": { + "content": "###-0.2169###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35916": { + "content": "###-0.2167###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35917": { + "content": "###-0.2165###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35918": { + "content": "###-0.2163###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35919": { + "content": "###-0.2161###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35920": { + "content": "###-0.2159###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35921": { + "content": "###-0.2157###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35922": { + "content": "###-0.2155###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35923": { + "content": "###-0.2153###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35924": { + "content": "###-0.2151###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35925": { + "content": "###-0.2149###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35926": { + "content": "###-0.2147###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35927": { + "content": "###-0.2145###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35928": { + "content": "###-0.2143###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35929": { + "content": "###-0.2141###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35930": { + "content": "###-0.2139###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35931": { + "content": "###-0.2137###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35932": { + "content": "###-0.2135###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35933": { + "content": "###-0.2133###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35934": { + "content": "###-0.2131###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35935": { + "content": "###-0.2129###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35936": { + "content": "###-0.2127###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35937": { + "content": "###-0.2125###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35938": { + "content": "###-0.2123###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35939": { + "content": "###-0.2121###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35940": { + "content": "###-0.2119###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35941": { + "content": "###-0.2117###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35942": { + "content": "###-0.2115###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35943": { + "content": "###-0.2113###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35944": { + "content": "###-0.2111###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35945": { + "content": "###-0.2109###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35946": { + "content": "###-0.2107###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35947": { + "content": "###-0.2105###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35948": { + "content": "###-0.2103###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35949": { + "content": "###-0.2101###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35950": { + "content": "###-0.2099###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35951": { + "content": "###-0.2097###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35952": { + "content": "###-0.2095###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35953": { + "content": "###-0.2093###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35954": { + "content": "###-0.2091###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35955": { + "content": "###-0.2089###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35956": { + "content": "###-0.2087###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35957": { + "content": "###-0.2085###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35958": { + "content": "###-0.2083###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35959": { + "content": "###-0.2081###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35960": { + "content": "###-0.2079###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35961": { + "content": "###-0.2077###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35962": { + "content": "###-0.2075###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35963": { + "content": "###-0.2073###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35964": { + "content": "###-0.2071###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35965": { + "content": "###-0.2069###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35966": { + "content": "###-0.2067###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35967": { + "content": "###-0.2065###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35968": { + "content": "###-0.2063###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35969": { + "content": "###-0.2061###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35970": { + "content": "###-0.2059###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35971": { + "content": "###-0.2057###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35972": { + "content": "###-0.2055###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35973": { + "content": "###-0.2053###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35974": { + "content": "###-0.2051###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35975": { + "content": "###-0.2049###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35976": { + "content": "###-0.2047###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35977": { + "content": "###-0.2045###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35978": { + "content": "###-0.2043###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35979": { + "content": "###-0.2041###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35980": { + "content": "###-0.2039###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35981": { + "content": "###-0.2037###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35982": { + "content": "###-0.2035###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35983": { + "content": "###-0.2033###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35984": { + "content": "###-0.2031###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35985": { + "content": "###-0.2029###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35986": { + "content": "###-0.2027###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35987": { + "content": "###-0.2025###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35988": { + "content": "###-0.2023###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35989": { + "content": "###-0.2021###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35990": { + "content": "###-0.2019###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35991": { + "content": "###-0.2017###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35992": { + "content": "###-0.2015###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35993": { + "content": "###-0.2013###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35994": { + "content": "###-0.2011###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35995": { + "content": "###-0.2009###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35996": { + "content": "###-0.2007###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35997": { + "content": "###-0.2005###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35998": { + "content": "###-0.2003###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "35999": { + "content": "###-0.2001###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36000": { + "content": "###-0.1999###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36001": { + "content": "###-0.1997###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36002": { + "content": "###-0.1995###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36003": { + "content": "###-0.1993###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36004": { + "content": "###-0.1991###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36005": { + "content": "###-0.1989###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36006": { + "content": "###-0.1987###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36007": { + "content": "###-0.1985###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36008": { + "content": "###-0.1983###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36009": { + "content": "###-0.1981###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36010": { + "content": "###-0.1979###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36011": { + "content": "###-0.1977###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36012": { + "content": "###-0.1975###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36013": { + "content": "###-0.1973###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36014": { + "content": "###-0.1971###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36015": { + "content": "###-0.1969###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36016": { + "content": "###-0.1967###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36017": { + "content": "###-0.1965###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36018": { + "content": "###-0.1963###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36019": { + "content": "###-0.1961###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36020": { + "content": "###-0.1959###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36021": { + "content": "###-0.1957###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36022": { + "content": "###-0.1955###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36023": { + "content": "###-0.1953###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36024": { + "content": "###-0.1951###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36025": { + "content": "###-0.1949###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36026": { + "content": "###-0.1947###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36027": { + "content": "###-0.1945###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36028": { + "content": "###-0.1943###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36029": { + "content": "###-0.1941###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36030": { + "content": "###-0.1939###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36031": { + "content": "###-0.1937###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36032": { + "content": "###-0.1935###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36033": { + "content": "###-0.1933###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36034": { + "content": "###-0.1931###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36035": { + "content": "###-0.1929###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36036": { + "content": "###-0.1927###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36037": { + "content": "###-0.1925###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36038": { + "content": "###-0.1923###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36039": { + "content": "###-0.1921###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36040": { + "content": "###-0.1919###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36041": { + "content": "###-0.1917###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36042": { + "content": "###-0.1915###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36043": { + "content": "###-0.1913###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36044": { + "content": "###-0.1911###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36045": { + "content": "###-0.1909###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36046": { + "content": "###-0.1907###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36047": { + "content": "###-0.1905###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36048": { + "content": "###-0.1903###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36049": { + "content": "###-0.1901###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36050": { + "content": "###-0.1899###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36051": { + "content": "###-0.1897###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36052": { + "content": "###-0.1895###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36053": { + "content": "###-0.1893###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36054": { + "content": "###-0.1891###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36055": { + "content": "###-0.1889###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36056": { + "content": "###-0.1887###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36057": { + "content": "###-0.1885###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36058": { + "content": "###-0.1883###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36059": { + "content": "###-0.1881###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36060": { + "content": "###-0.1879###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36061": { + "content": "###-0.1877###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36062": { + "content": "###-0.1875###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36063": { + "content": "###-0.1873###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36064": { + "content": "###-0.1871###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36065": { + "content": "###-0.1869###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36066": { + "content": "###-0.1867###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36067": { + "content": "###-0.1865###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36068": { + "content": "###-0.1863###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36069": { + "content": "###-0.1861###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36070": { + "content": "###-0.1859###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36071": { + "content": "###-0.1857###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36072": { + "content": "###-0.1855###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36073": { + "content": "###-0.1853###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36074": { + "content": "###-0.1851###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36075": { + "content": "###-0.1849###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36076": { + "content": "###-0.1847###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36077": { + "content": "###-0.1845###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36078": { + "content": "###-0.1843###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36079": { + "content": "###-0.1841###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36080": { + "content": "###-0.1839###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36081": { + "content": "###-0.1837###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36082": { + "content": "###-0.1835###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36083": { + "content": "###-0.1833###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36084": { + "content": "###-0.1831###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36085": { + "content": "###-0.1829###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36086": { + "content": "###-0.1827###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36087": { + "content": "###-0.1825###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36088": { + "content": "###-0.1823###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36089": { + "content": "###-0.1821###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36090": { + "content": "###-0.1819###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36091": { + "content": "###-0.1817###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36092": { + "content": "###-0.1815###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36093": { + "content": "###-0.1813###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36094": { + "content": "###-0.1811###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36095": { + "content": "###-0.1809###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36096": { + "content": "###-0.1807###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36097": { + "content": "###-0.1805###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36098": { + "content": "###-0.1803###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36099": { + "content": "###-0.1801###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36100": { + "content": "###-0.1799###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36101": { + "content": "###-0.1797###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36102": { + "content": "###-0.1795###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36103": { + "content": "###-0.1793###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36104": { + "content": "###-0.1791###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36105": { + "content": "###-0.1789###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36106": { + "content": "###-0.1787###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36107": { + "content": "###-0.1785###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36108": { + "content": "###-0.1783###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36109": { + "content": "###-0.1781###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36110": { + "content": "###-0.1779###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36111": { + "content": "###-0.1777###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36112": { + "content": "###-0.1775###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36113": { + "content": "###-0.1773###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36114": { + "content": "###-0.1771###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36115": { + "content": "###-0.1769###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36116": { + "content": "###-0.1767###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36117": { + "content": "###-0.1765###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36118": { + "content": "###-0.1763###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36119": { + "content": "###-0.1761###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36120": { + "content": "###-0.1759###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36121": { + "content": "###-0.1757###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36122": { + "content": "###-0.1755###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36123": { + "content": "###-0.1753###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36124": { + "content": "###-0.1751###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36125": { + "content": "###-0.1749###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36126": { + "content": "###-0.1747###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36127": { + "content": "###-0.1745###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36128": { + "content": "###-0.1743###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36129": { + "content": "###-0.1741###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36130": { + "content": "###-0.1739###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36131": { + "content": "###-0.1737###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36132": { + "content": "###-0.1735###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36133": { + "content": "###-0.1733###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36134": { + "content": "###-0.1731###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36135": { + "content": "###-0.1729###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36136": { + "content": "###-0.1727###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36137": { + "content": "###-0.1725###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36138": { + "content": "###-0.1723###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36139": { + "content": "###-0.1721###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36140": { + "content": "###-0.1719###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36141": { + "content": "###-0.1717###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36142": { + "content": "###-0.1715###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36143": { + "content": "###-0.1713###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36144": { + "content": "###-0.1711###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36145": { + "content": "###-0.1709###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36146": { + "content": "###-0.1707###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36147": { + "content": "###-0.1705###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36148": { + "content": "###-0.1703###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36149": { + "content": "###-0.1701###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36150": { + "content": "###-0.1699###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36151": { + "content": "###-0.1697###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36152": { + "content": "###-0.1695###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36153": { + "content": "###-0.1693###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36154": { + "content": "###-0.1691###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36155": { + "content": "###-0.1689###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36156": { + "content": "###-0.1687###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36157": { + "content": "###-0.1685###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36158": { + "content": "###-0.1683###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36159": { + "content": "###-0.1681###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36160": { + "content": "###-0.1679###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36161": { + "content": "###-0.1677###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36162": { + "content": "###-0.1675###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36163": { + "content": "###-0.1673###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36164": { + "content": "###-0.1671###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36165": { + "content": "###-0.1669###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36166": { + "content": "###-0.1667###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36167": { + "content": "###-0.1665###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36168": { + "content": "###-0.1663###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36169": { + "content": "###-0.1661###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36170": { + "content": "###-0.1659###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36171": { + "content": "###-0.1657###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36172": { + "content": "###-0.1655###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36173": { + "content": "###-0.1653###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36174": { + "content": "###-0.1651###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36175": { + "content": "###-0.1649###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36176": { + "content": "###-0.1647###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36177": { + "content": "###-0.1645###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36178": { + "content": "###-0.1643###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36179": { + "content": "###-0.1641###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36180": { + "content": "###-0.1639###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36181": { + "content": "###-0.1637###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36182": { + "content": "###-0.1635###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36183": { + "content": "###-0.1633###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36184": { + "content": "###-0.1631###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36185": { + "content": "###-0.1629###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36186": { + "content": "###-0.1627###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36187": { + "content": "###-0.1625###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36188": { + "content": "###-0.1623###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36189": { + "content": "###-0.1621###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36190": { + "content": "###-0.1619###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36191": { + "content": "###-0.1617###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36192": { + "content": "###-0.1615###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36193": { + "content": "###-0.1613###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36194": { + "content": "###-0.1611###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36195": { + "content": "###-0.1609###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36196": { + "content": "###-0.1607###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36197": { + "content": "###-0.1605###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36198": { + "content": "###-0.1603###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36199": { + "content": "###-0.1601###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36200": { + "content": "###-0.1599###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36201": { + "content": "###-0.1597###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36202": { + "content": "###-0.1595###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36203": { + "content": "###-0.1593###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36204": { + "content": "###-0.1591###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36205": { + "content": "###-0.1589###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36206": { + "content": "###-0.1587###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36207": { + "content": "###-0.1585###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36208": { + "content": "###-0.1583###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36209": { + "content": "###-0.1581###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36210": { + "content": "###-0.1579###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36211": { + "content": "###-0.1577###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36212": { + "content": "###-0.1575###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36213": { + "content": "###-0.1573###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36214": { + "content": "###-0.1571###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36215": { + "content": "###-0.1569###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36216": { + "content": "###-0.1567###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36217": { + "content": "###-0.1565###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36218": { + "content": "###-0.1563###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36219": { + "content": "###-0.1561###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36220": { + "content": "###-0.1559###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36221": { + "content": "###-0.1557###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36222": { + "content": "###-0.1555###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36223": { + "content": "###-0.1553###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36224": { + "content": "###-0.1551###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36225": { + "content": "###-0.1549###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36226": { + "content": "###-0.1547###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36227": { + "content": "###-0.1545###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36228": { + "content": "###-0.1543###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36229": { + "content": "###-0.1541###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36230": { + "content": "###-0.1539###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36231": { + "content": "###-0.1537###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36232": { + "content": "###-0.1535###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36233": { + "content": "###-0.1533###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36234": { + "content": "###-0.1531###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36235": { + "content": "###-0.1529###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36236": { + "content": "###-0.1527###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36237": { + "content": "###-0.1525###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36238": { + "content": "###-0.1523###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36239": { + "content": "###-0.1521###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36240": { + "content": "###-0.1519###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36241": { + "content": "###-0.1517###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36242": { + "content": "###-0.1515###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36243": { + "content": "###-0.1513###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36244": { + "content": "###-0.1511###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36245": { + "content": "###-0.1509###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36246": { + "content": "###-0.1507###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36247": { + "content": "###-0.1505###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36248": { + "content": "###-0.1503###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36249": { + "content": "###-0.1501###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36250": { + "content": "###-0.1499###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36251": { + "content": "###-0.1497###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36252": { + "content": "###-0.1495###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36253": { + "content": "###-0.1493###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36254": { + "content": "###-0.1491###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36255": { + "content": "###-0.1489###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36256": { + "content": "###-0.1487###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36257": { + "content": "###-0.1485###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36258": { + "content": "###-0.1483###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36259": { + "content": "###-0.1481###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36260": { + "content": "###-0.1479###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36261": { + "content": "###-0.1477###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36262": { + "content": "###-0.1475###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36263": { + "content": "###-0.1473###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36264": { + "content": "###-0.1471###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36265": { + "content": "###-0.1469###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36266": { + "content": "###-0.1467###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36267": { + "content": "###-0.1465###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36268": { + "content": "###-0.1463###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36269": { + "content": "###-0.1461###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36270": { + "content": "###-0.1459###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36271": { + "content": "###-0.1457###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36272": { + "content": "###-0.1455###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36273": { + "content": "###-0.1453###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36274": { + "content": "###-0.1451###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36275": { + "content": "###-0.1449###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36276": { + "content": "###-0.1447###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36277": { + "content": "###-0.1445###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36278": { + "content": "###-0.1443###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36279": { + "content": "###-0.1441###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36280": { + "content": "###-0.1439###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36281": { + "content": "###-0.1437###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36282": { + "content": "###-0.1435###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36283": { + "content": "###-0.1433###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36284": { + "content": "###-0.1431###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36285": { + "content": "###-0.1429###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36286": { + "content": "###-0.1427###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36287": { + "content": "###-0.1425###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36288": { + "content": "###-0.1423###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36289": { + "content": "###-0.1421###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36290": { + "content": "###-0.1419###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36291": { + "content": "###-0.1417###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36292": { + "content": "###-0.1415###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36293": { + "content": "###-0.1413###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36294": { + "content": "###-0.1411###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36295": { + "content": "###-0.1409###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36296": { + "content": "###-0.1407###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36297": { + "content": "###-0.1405###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36298": { + "content": "###-0.1403###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36299": { + "content": "###-0.1401###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36300": { + "content": "###-0.1399###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36301": { + "content": "###-0.1397###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36302": { + "content": "###-0.1395###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36303": { + "content": "###-0.1393###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36304": { + "content": "###-0.1391###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36305": { + "content": "###-0.1389###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36306": { + "content": "###-0.1387###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36307": { + "content": "###-0.1385###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36308": { + "content": "###-0.1383###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36309": { + "content": "###-0.1381###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36310": { + "content": "###-0.1379###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36311": { + "content": "###-0.1377###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36312": { + "content": "###-0.1375###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36313": { + "content": "###-0.1373###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36314": { + "content": "###-0.1371###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36315": { + "content": "###-0.1369###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36316": { + "content": "###-0.1367###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36317": { + "content": "###-0.1365###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36318": { + "content": "###-0.1363###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36319": { + "content": "###-0.1361###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36320": { + "content": "###-0.1359###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36321": { + "content": "###-0.1357###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36322": { + "content": "###-0.1355###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36323": { + "content": "###-0.1353###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36324": { + "content": "###-0.1351###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36325": { + "content": "###-0.1349###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36326": { + "content": "###-0.1347###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36327": { + "content": "###-0.1345###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36328": { + "content": "###-0.1343###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36329": { + "content": "###-0.1341###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36330": { + "content": "###-0.1339###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36331": { + "content": "###-0.1337###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36332": { + "content": "###-0.1335###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36333": { + "content": "###-0.1333###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36334": { + "content": "###-0.1331###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36335": { + "content": "###-0.1329###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36336": { + "content": "###-0.1327###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36337": { + "content": "###-0.1325###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36338": { + "content": "###-0.1323###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36339": { + "content": "###-0.1321###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36340": { + "content": "###-0.1319###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36341": { + "content": "###-0.1317###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36342": { + "content": "###-0.1315###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36343": { + "content": "###-0.1313###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36344": { + "content": "###-0.1311###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36345": { + "content": "###-0.1309###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36346": { + "content": "###-0.1307###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36347": { + "content": "###-0.1305###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36348": { + "content": "###-0.1303###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36349": { + "content": "###-0.1301###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36350": { + "content": "###-0.1299###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36351": { + "content": "###-0.1297###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36352": { + "content": "###-0.1295###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36353": { + "content": "###-0.1293###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36354": { + "content": "###-0.1291###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36355": { + "content": "###-0.1289###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36356": { + "content": "###-0.1287###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36357": { + "content": "###-0.1285###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36358": { + "content": "###-0.1283###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36359": { + "content": "###-0.1281###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36360": { + "content": "###-0.1279###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36361": { + "content": "###-0.1277###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36362": { + "content": "###-0.1275###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36363": { + "content": "###-0.1273###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36364": { + "content": "###-0.1271###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36365": { + "content": "###-0.1269###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36366": { + "content": "###-0.1267###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36367": { + "content": "###-0.1265###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36368": { + "content": "###-0.1263###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36369": { + "content": "###-0.1261###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36370": { + "content": "###-0.1259###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36371": { + "content": "###-0.1257###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36372": { + "content": "###-0.1255###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36373": { + "content": "###-0.1253###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36374": { + "content": "###-0.1251###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36375": { + "content": "###-0.1249###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36376": { + "content": "###-0.1247###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36377": { + "content": "###-0.1245###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36378": { + "content": "###-0.1243###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36379": { + "content": "###-0.1241###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36380": { + "content": "###-0.1239###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36381": { + "content": "###-0.1237###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36382": { + "content": "###-0.1235###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36383": { + "content": "###-0.1233###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36384": { + "content": "###-0.1231###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36385": { + "content": "###-0.1229###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36386": { + "content": "###-0.1227###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36387": { + "content": "###-0.1225###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36388": { + "content": "###-0.1223###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36389": { + "content": "###-0.1221###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36390": { + "content": "###-0.1219###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36391": { + "content": "###-0.1217###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36392": { + "content": "###-0.1215###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36393": { + "content": "###-0.1213###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36394": { + "content": "###-0.1211###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36395": { + "content": "###-0.1209###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36396": { + "content": "###-0.1207###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36397": { + "content": "###-0.1205###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36398": { + "content": "###-0.1203###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36399": { + "content": "###-0.1201###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36400": { + "content": "###-0.1199###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36401": { + "content": "###-0.1197###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36402": { + "content": "###-0.1195###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36403": { + "content": "###-0.1193###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36404": { + "content": "###-0.1191###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36405": { + "content": "###-0.1189###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36406": { + "content": "###-0.1187###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36407": { + "content": "###-0.1185###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36408": { + "content": "###-0.1183###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36409": { + "content": "###-0.1181###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36410": { + "content": "###-0.1179###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36411": { + "content": "###-0.1177###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36412": { + "content": "###-0.1175###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36413": { + "content": "###-0.1173###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36414": { + "content": "###-0.1171###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36415": { + "content": "###-0.1169###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36416": { + "content": "###-0.1167###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36417": { + "content": "###-0.1165###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36418": { + "content": "###-0.1163###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36419": { + "content": "###-0.1161###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36420": { + "content": "###-0.1159###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36421": { + "content": "###-0.1157###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36422": { + "content": "###-0.1155###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36423": { + "content": "###-0.1153###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36424": { + "content": "###-0.1151###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36425": { + "content": "###-0.1149###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36426": { + "content": "###-0.1147###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36427": { + "content": "###-0.1145###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36428": { + "content": "###-0.1143###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36429": { + "content": "###-0.1141###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36430": { + "content": "###-0.1139###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36431": { + "content": "###-0.1137###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36432": { + "content": "###-0.1135###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36433": { + "content": "###-0.1133###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36434": { + "content": "###-0.1131###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36435": { + "content": "###-0.1129###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36436": { + "content": "###-0.1127###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36437": { + "content": "###-0.1125###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36438": { + "content": "###-0.1123###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36439": { + "content": "###-0.1121###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36440": { + "content": "###-0.1119###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36441": { + "content": "###-0.1117###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36442": { + "content": "###-0.1115###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36443": { + "content": "###-0.1113###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36444": { + "content": "###-0.1111###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36445": { + "content": "###-0.1109###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36446": { + "content": "###-0.1107###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36447": { + "content": "###-0.1105###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36448": { + "content": "###-0.1103###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36449": { + "content": "###-0.1101###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36450": { + "content": "###-0.1099###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36451": { + "content": "###-0.1097###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36452": { + "content": "###-0.1095###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36453": { + "content": "###-0.1093###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36454": { + "content": "###-0.1091###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36455": { + "content": "###-0.1089###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36456": { + "content": "###-0.1087###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36457": { + "content": "###-0.1085###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36458": { + "content": "###-0.1083###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36459": { + "content": "###-0.1081###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36460": { + "content": "###-0.1079###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36461": { + "content": "###-0.1077###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36462": { + "content": "###-0.1075###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36463": { + "content": "###-0.1073###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36464": { + "content": "###-0.1071###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36465": { + "content": "###-0.1069###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36466": { + "content": "###-0.1067###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36467": { + "content": "###-0.1065###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36468": { + "content": "###-0.1063###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36469": { + "content": "###-0.1061###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36470": { + "content": "###-0.1059###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36471": { + "content": "###-0.1057###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36472": { + "content": "###-0.1055###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36473": { + "content": "###-0.1053###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36474": { + "content": "###-0.1051###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36475": { + "content": "###-0.1049###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36476": { + "content": "###-0.1047###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36477": { + "content": "###-0.1045###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36478": { + "content": "###-0.1043###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36479": { + "content": "###-0.1041###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36480": { + "content": "###-0.1039###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36481": { + "content": "###-0.1037###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36482": { + "content": "###-0.1035###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36483": { + "content": "###-0.1033###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36484": { + "content": "###-0.1031###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36485": { + "content": "###-0.1029###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36486": { + "content": "###-0.1027###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36487": { + "content": "###-0.1025###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36488": { + "content": "###-0.1023###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36489": { + "content": "###-0.1021###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36490": { + "content": "###-0.1019###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36491": { + "content": "###-0.1017###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36492": { + "content": "###-0.1015###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36493": { + "content": "###-0.1013###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36494": { + "content": "###-0.1011###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36495": { + "content": "###-0.1009###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36496": { + "content": "###-0.1007###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36497": { + "content": "###-0.1005###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36498": { + "content": "###-0.1003###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36499": { + "content": "###-0.1001###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36500": { + "content": "###-0.0999###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36501": { + "content": "###-0.0997###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36502": { + "content": "###-0.0995###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36503": { + "content": "###-0.0993###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36504": { + "content": "###-0.0991###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36505": { + "content": "###-0.0989###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36506": { + "content": "###-0.0987###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36507": { + "content": "###-0.0985###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36508": { + "content": "###-0.0983###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36509": { + "content": "###-0.0981###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36510": { + "content": "###-0.0979###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36511": { + "content": "###-0.0977###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36512": { + "content": "###-0.0975###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36513": { + "content": "###-0.0973###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36514": { + "content": "###-0.0971###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36515": { + "content": "###-0.0969###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36516": { + "content": "###-0.0967###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36517": { + "content": "###-0.0965###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36518": { + "content": "###-0.0963###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36519": { + "content": "###-0.0961###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36520": { + "content": "###-0.0959###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36521": { + "content": "###-0.0957###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36522": { + "content": "###-0.0955###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36523": { + "content": "###-0.0953###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36524": { + "content": "###-0.0951###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36525": { + "content": "###-0.0949###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36526": { + "content": "###-0.0947###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36527": { + "content": "###-0.0945###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36528": { + "content": "###-0.0943###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36529": { + "content": "###-0.0941###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36530": { + "content": "###-0.0939###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36531": { + "content": "###-0.0937###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36532": { + "content": "###-0.0935###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36533": { + "content": "###-0.0933###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36534": { + "content": "###-0.0931###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36535": { + "content": "###-0.0929###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36536": { + "content": "###-0.0927###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36537": { + "content": "###-0.0925###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36538": { + "content": "###-0.0923###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36539": { + "content": "###-0.0921###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36540": { + "content": "###-0.0919###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36541": { + "content": "###-0.0917###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36542": { + "content": "###-0.0915###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36543": { + "content": "###-0.0913###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36544": { + "content": "###-0.0911###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36545": { + "content": "###-0.0909###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36546": { + "content": "###-0.0907###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36547": { + "content": "###-0.0905###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36548": { + "content": "###-0.0903###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36549": { + "content": "###-0.0901###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36550": { + "content": "###-0.0899###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36551": { + "content": "###-0.0897###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36552": { + "content": "###-0.0895###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36553": { + "content": "###-0.0893###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36554": { + "content": "###-0.0891###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36555": { + "content": "###-0.0889###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36556": { + "content": "###-0.0887###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36557": { + "content": "###-0.0885###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36558": { + "content": "###-0.0883###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36559": { + "content": "###-0.0881###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36560": { + "content": "###-0.0879###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36561": { + "content": "###-0.0877###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36562": { + "content": "###-0.0875###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36563": { + "content": "###-0.0873###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36564": { + "content": "###-0.0871###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36565": { + "content": "###-0.0869###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36566": { + "content": "###-0.0867###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36567": { + "content": "###-0.0865###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36568": { + "content": "###-0.0863###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36569": { + "content": "###-0.0861###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36570": { + "content": "###-0.0859###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36571": { + "content": "###-0.0857###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36572": { + "content": "###-0.0855###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36573": { + "content": "###-0.0853###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36574": { + "content": "###-0.0851###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36575": { + "content": "###-0.0849###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36576": { + "content": "###-0.0847###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36577": { + "content": "###-0.0845###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36578": { + "content": "###-0.0843###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36579": { + "content": "###-0.0841###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36580": { + "content": "###-0.0839###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36581": { + "content": "###-0.0837###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36582": { + "content": "###-0.0835###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36583": { + "content": "###-0.0833###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36584": { + "content": "###-0.0831###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36585": { + "content": "###-0.0829###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36586": { + "content": "###-0.0827###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36587": { + "content": "###-0.0825###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36588": { + "content": "###-0.0823###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36589": { + "content": "###-0.0821###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36590": { + "content": "###-0.0819###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36591": { + "content": "###-0.0817###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36592": { + "content": "###-0.0815###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36593": { + "content": "###-0.0813###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36594": { + "content": "###-0.0811###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36595": { + "content": "###-0.0809###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36596": { + "content": "###-0.0807###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36597": { + "content": "###-0.0805###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36598": { + "content": "###-0.0803###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36599": { + "content": "###-0.0801###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36600": { + "content": "###-0.0799###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36601": { + "content": "###-0.0797###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36602": { + "content": "###-0.0795###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36603": { + "content": "###-0.0793###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36604": { + "content": "###-0.0791###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36605": { + "content": "###-0.0789###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36606": { + "content": "###-0.0787###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36607": { + "content": "###-0.0785###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36608": { + "content": "###-0.0783###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36609": { + "content": "###-0.0781###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36610": { + "content": "###-0.0779###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36611": { + "content": "###-0.0777###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36612": { + "content": "###-0.0775###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36613": { + "content": "###-0.0773###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36614": { + "content": "###-0.0771###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36615": { + "content": "###-0.0769###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36616": { + "content": "###-0.0767###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36617": { + "content": "###-0.0765###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36618": { + "content": "###-0.0763###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36619": { + "content": "###-0.0761###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36620": { + "content": "###-0.0759###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36621": { + "content": "###-0.0757###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36622": { + "content": "###-0.0755###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36623": { + "content": "###-0.0753###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36624": { + "content": "###-0.0751###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36625": { + "content": "###-0.0749###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36626": { + "content": "###-0.0747###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36627": { + "content": "###-0.0745###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36628": { + "content": "###-0.0743###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36629": { + "content": "###-0.0741###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36630": { + "content": "###-0.0739###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36631": { + "content": "###-0.0737###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36632": { + "content": "###-0.0735###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36633": { + "content": "###-0.0733###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36634": { + "content": "###-0.0731###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36635": { + "content": "###-0.0729###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36636": { + "content": "###-0.0727###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36637": { + "content": "###-0.0725###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36638": { + "content": "###-0.0723###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36639": { + "content": "###-0.0721###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36640": { + "content": "###-0.0719###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36641": { + "content": "###-0.0717###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36642": { + "content": "###-0.0715###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36643": { + "content": "###-0.0713###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36644": { + "content": "###-0.0711###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36645": { + "content": "###-0.0709###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36646": { + "content": "###-0.0707###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36647": { + "content": "###-0.0705###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36648": { + "content": "###-0.0703###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36649": { + "content": "###-0.0701###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36650": { + "content": "###-0.0699###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36651": { + "content": "###-0.0697###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36652": { + "content": "###-0.0695###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36653": { + "content": "###-0.0693###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36654": { + "content": "###-0.0691###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36655": { + "content": "###-0.0689###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36656": { + "content": "###-0.0687###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36657": { + "content": "###-0.0685###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36658": { + "content": "###-0.0683###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36659": { + "content": "###-0.0681###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36660": { + "content": "###-0.0679###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36661": { + "content": "###-0.0677###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36662": { + "content": "###-0.0675###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36663": { + "content": "###-0.0673###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36664": { + "content": "###-0.0671###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36665": { + "content": "###-0.0669###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36666": { + "content": "###-0.0667###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36667": { + "content": "###-0.0665###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36668": { + "content": "###-0.0663###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36669": { + "content": "###-0.0661###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36670": { + "content": "###-0.0659###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36671": { + "content": "###-0.0657###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36672": { + "content": "###-0.0655###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36673": { + "content": "###-0.0653###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36674": { + "content": "###-0.0651###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36675": { + "content": "###-0.0649###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36676": { + "content": "###-0.0647###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36677": { + "content": "###-0.0645###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36678": { + "content": "###-0.0643###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36679": { + "content": "###-0.0641###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36680": { + "content": "###-0.0639###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36681": { + "content": "###-0.0637###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36682": { + "content": "###-0.0635###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36683": { + "content": "###-0.0633###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36684": { + "content": "###-0.0631###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36685": { + "content": "###-0.0629###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36686": { + "content": "###-0.0627###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36687": { + "content": "###-0.0625###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36688": { + "content": "###-0.0623###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36689": { + "content": "###-0.0621###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36690": { + "content": "###-0.0619###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36691": { + "content": "###-0.0617###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36692": { + "content": "###-0.0615###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36693": { + "content": "###-0.0613###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36694": { + "content": "###-0.0611###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36695": { + "content": "###-0.0609###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36696": { + "content": "###-0.0607###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36697": { + "content": "###-0.0605###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36698": { + "content": "###-0.0603###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36699": { + "content": "###-0.0601###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36700": { + "content": "###-0.0599###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36701": { + "content": "###-0.0597###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36702": { + "content": "###-0.0595###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36703": { + "content": "###-0.0593###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36704": { + "content": "###-0.0591###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36705": { + "content": "###-0.0589###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36706": { + "content": "###-0.0587###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36707": { + "content": "###-0.0585###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36708": { + "content": "###-0.0583###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36709": { + "content": "###-0.0581###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36710": { + "content": "###-0.0579###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36711": { + "content": "###-0.0577###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36712": { + "content": "###-0.0575###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36713": { + "content": "###-0.0573###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36714": { + "content": "###-0.0571###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36715": { + "content": "###-0.0569###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36716": { + "content": "###-0.0567###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36717": { + "content": "###-0.0565###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36718": { + "content": "###-0.0563###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36719": { + "content": "###-0.0561###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36720": { + "content": "###-0.0559###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36721": { + "content": "###-0.0557###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36722": { + "content": "###-0.0555###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36723": { + "content": "###-0.0553###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36724": { + "content": "###-0.0551###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36725": { + "content": "###-0.0549###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36726": { + "content": "###-0.0547###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36727": { + "content": "###-0.0545###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36728": { + "content": "###-0.0543###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36729": { + "content": "###-0.0541###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36730": { + "content": "###-0.0539###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36731": { + "content": "###-0.0537###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36732": { + "content": "###-0.0535###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36733": { + "content": "###-0.0533###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36734": { + "content": "###-0.0531###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36735": { + "content": "###-0.0529###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36736": { + "content": "###-0.0527###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36737": { + "content": "###-0.0525###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36738": { + "content": "###-0.0523###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36739": { + "content": "###-0.0521###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36740": { + "content": "###-0.0519###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36741": { + "content": "###-0.0517###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36742": { + "content": "###-0.0515###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36743": { + "content": "###-0.0513###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36744": { + "content": "###-0.0511###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36745": { + "content": "###-0.0509###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36746": { + "content": "###-0.0507###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36747": { + "content": "###-0.0505###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36748": { + "content": "###-0.0503###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36749": { + "content": "###-0.0501###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36750": { + "content": "###-0.0499###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36751": { + "content": "###-0.0497###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36752": { + "content": "###-0.0495###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36753": { + "content": "###-0.0493###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36754": { + "content": "###-0.0491###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36755": { + "content": "###-0.0489###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36756": { + "content": "###-0.0487###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36757": { + "content": "###-0.0485###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36758": { + "content": "###-0.0483###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36759": { + "content": "###-0.0481###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36760": { + "content": "###-0.0479###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36761": { + "content": "###-0.0477###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36762": { + "content": "###-0.0475###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36763": { + "content": "###-0.0473###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36764": { + "content": "###-0.0471###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36765": { + "content": "###-0.0469###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36766": { + "content": "###-0.0467###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36767": { + "content": "###-0.0465###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36768": { + "content": "###-0.0463###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36769": { + "content": "###-0.0461###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36770": { + "content": "###-0.0459###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36771": { + "content": "###-0.0457###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36772": { + "content": "###-0.0455###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36773": { + "content": "###-0.0453###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36774": { + "content": "###-0.0451###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36775": { + "content": "###-0.0449###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36776": { + "content": "###-0.0447###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36777": { + "content": "###-0.0445###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36778": { + "content": "###-0.0443###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36779": { + "content": "###-0.0441###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36780": { + "content": "###-0.0439###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36781": { + "content": "###-0.0437###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36782": { + "content": "###-0.0435###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36783": { + "content": "###-0.0433###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36784": { + "content": "###-0.0431###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36785": { + "content": "###-0.0429###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36786": { + "content": "###-0.0427###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36787": { + "content": "###-0.0425###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36788": { + "content": "###-0.0423###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36789": { + "content": "###-0.0421###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36790": { + "content": "###-0.0419###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36791": { + "content": "###-0.0417###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36792": { + "content": "###-0.0415###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36793": { + "content": "###-0.0413###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36794": { + "content": "###-0.0411###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36795": { + "content": "###-0.0409###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36796": { + "content": "###-0.0407###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36797": { + "content": "###-0.0405###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36798": { + "content": "###-0.0403###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36799": { + "content": "###-0.0401###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36800": { + "content": "###-0.0399###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36801": { + "content": "###-0.0397###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36802": { + "content": "###-0.0395###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36803": { + "content": "###-0.0393###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36804": { + "content": "###-0.0391###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36805": { + "content": "###-0.0389###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36806": { + "content": "###-0.0387###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36807": { + "content": "###-0.0385###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36808": { + "content": "###-0.0383###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36809": { + "content": "###-0.0381###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36810": { + "content": "###-0.0379###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36811": { + "content": "###-0.0377###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36812": { + "content": "###-0.0375###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36813": { + "content": "###-0.0373###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36814": { + "content": "###-0.0371###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36815": { + "content": "###-0.0369###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36816": { + "content": "###-0.0367###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36817": { + "content": "###-0.0365###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36818": { + "content": "###-0.0363###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36819": { + "content": "###-0.0361###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36820": { + "content": "###-0.0359###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36821": { + "content": "###-0.0357###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36822": { + "content": "###-0.0355###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36823": { + "content": "###-0.0353###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36824": { + "content": "###-0.0351###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36825": { + "content": "###-0.0349###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36826": { + "content": "###-0.0347###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36827": { + "content": "###-0.0345###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36828": { + "content": "###-0.0343###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36829": { + "content": "###-0.0341###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36830": { + "content": "###-0.0339###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36831": { + "content": "###-0.0337###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36832": { + "content": "###-0.0335###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36833": { + "content": "###-0.0333###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36834": { + "content": "###-0.0331###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36835": { + "content": "###-0.0329###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36836": { + "content": "###-0.0327###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36837": { + "content": "###-0.0325###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36838": { + "content": "###-0.0323###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36839": { + "content": "###-0.0321###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36840": { + "content": "###-0.0319###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36841": { + "content": "###-0.0317###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36842": { + "content": "###-0.0315###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36843": { + "content": "###-0.0313###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36844": { + "content": "###-0.0311###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36845": { + "content": "###-0.0309###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36846": { + "content": "###-0.0307###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36847": { + "content": "###-0.0305###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36848": { + "content": "###-0.0303###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36849": { + "content": "###-0.0301###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36850": { + "content": "###-0.0299###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36851": { + "content": "###-0.0297###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36852": { + "content": "###-0.0295###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36853": { + "content": "###-0.0293###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36854": { + "content": "###-0.0291###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36855": { + "content": "###-0.0289###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36856": { + "content": "###-0.0287###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36857": { + "content": "###-0.0285###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36858": { + "content": "###-0.0283###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36859": { + "content": "###-0.0281###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36860": { + "content": "###-0.0279###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36861": { + "content": "###-0.0277###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36862": { + "content": "###-0.0275###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36863": { + "content": "###-0.0273###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36864": { + "content": "###-0.0271###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36865": { + "content": "###-0.0269###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36866": { + "content": "###-0.0267###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36867": { + "content": "###-0.0265###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36868": { + "content": "###-0.0263###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36869": { + "content": "###-0.0261###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36870": { + "content": "###-0.0259###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36871": { + "content": "###-0.0257###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36872": { + "content": "###-0.0255###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36873": { + "content": "###-0.0253###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36874": { + "content": "###-0.0251###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36875": { + "content": "###-0.0249###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36876": { + "content": "###-0.0247###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36877": { + "content": "###-0.0245###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36878": { + "content": "###-0.0243###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36879": { + "content": "###-0.0241###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36880": { + "content": "###-0.0239###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36881": { + "content": "###-0.0237###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36882": { + "content": "###-0.0235###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36883": { + "content": "###-0.0233###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36884": { + "content": "###-0.0231###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36885": { + "content": "###-0.0229###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36886": { + "content": "###-0.0227###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36887": { + "content": "###-0.0225###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36888": { + "content": "###-0.0223###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36889": { + "content": "###-0.0221###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36890": { + "content": "###-0.0219###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36891": { + "content": "###-0.0217###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36892": { + "content": "###-0.0215###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36893": { + "content": "###-0.0213###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36894": { + "content": "###-0.0211###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36895": { + "content": "###-0.0209###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36896": { + "content": "###-0.0207###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36897": { + "content": "###-0.0205###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36898": { + "content": "###-0.0203###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36899": { + "content": "###-0.0201###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36900": { + "content": "###-0.0199###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36901": { + "content": "###-0.0197###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36902": { + "content": "###-0.0195###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36903": { + "content": "###-0.0193###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36904": { + "content": "###-0.0191###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36905": { + "content": "###-0.0189###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36906": { + "content": "###-0.0187###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36907": { + "content": "###-0.0185###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36908": { + "content": "###-0.0183###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36909": { + "content": "###-0.0181###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36910": { + "content": "###-0.0179###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36911": { + "content": "###-0.0177###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36912": { + "content": "###-0.0175###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36913": { + "content": "###-0.0173###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36914": { + "content": "###-0.0171###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36915": { + "content": "###-0.0169###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36916": { + "content": "###-0.0167###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36917": { + "content": "###-0.0165###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36918": { + "content": "###-0.0163###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36919": { + "content": "###-0.0161###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36920": { + "content": "###-0.0159###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36921": { + "content": "###-0.0157###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36922": { + "content": "###-0.0155###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36923": { + "content": "###-0.0153###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36924": { + "content": "###-0.0151###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36925": { + "content": "###-0.0149###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36926": { + "content": "###-0.0147###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36927": { + "content": "###-0.0145###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36928": { + "content": "###-0.0143###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36929": { + "content": "###-0.0141###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36930": { + "content": "###-0.0139###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36931": { + "content": "###-0.0137###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36932": { + "content": "###-0.0135###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36933": { + "content": "###-0.0133###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36934": { + "content": "###-0.0131###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36935": { + "content": "###-0.0129###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36936": { + "content": "###-0.0127###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36937": { + "content": "###-0.0125###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36938": { + "content": "###-0.0123###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36939": { + "content": "###-0.0121###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36940": { + "content": "###-0.0119###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36941": { + "content": "###-0.0117###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36942": { + "content": "###-0.0115###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36943": { + "content": "###-0.0113###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36944": { + "content": "###-0.0111###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36945": { + "content": "###-0.0109###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36946": { + "content": "###-0.0107###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36947": { + "content": "###-0.0105###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36948": { + "content": "###-0.0103###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36949": { + "content": "###-0.0101###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36950": { + "content": "###-0.0099###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36951": { + "content": "###-0.0097###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36952": { + "content": "###-0.0095###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36953": { + "content": "###-0.0093###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36954": { + "content": "###-0.0091###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36955": { + "content": "###-0.0089###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36956": { + "content": "###-0.0087###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36957": { + "content": "###-0.0085###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36958": { + "content": "###-0.0083###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36959": { + "content": "###-0.0081###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36960": { + "content": "###-0.0079###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36961": { + "content": "###-0.0077###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36962": { + "content": "###-0.0075###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36963": { + "content": "###-0.0073###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36964": { + "content": "###-0.0071###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36965": { + "content": "###-0.0069###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36966": { + "content": "###-0.0067###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36967": { + "content": "###-0.0065###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36968": { + "content": "###-0.0063###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36969": { + "content": "###-0.0061###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36970": { + "content": "###-0.0059###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36971": { + "content": "###-0.0057###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36972": { + "content": "###-0.0055###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36973": { + "content": "###-0.0053###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36974": { + "content": "###-0.0051###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36975": { + "content": "###-0.0049###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36976": { + "content": "###-0.0047###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36977": { + "content": "###-0.0045###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36978": { + "content": "###-0.0043###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36979": { + "content": "###-0.0041###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36980": { + "content": "###-0.0039###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36981": { + "content": "###-0.0037###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36982": { + "content": "###-0.0035###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36983": { + "content": "###-0.0033###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36984": { + "content": "###-0.0031###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36985": { + "content": "###-0.0029###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36986": { + "content": "###-0.0027###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36987": { + "content": "###-0.0025###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36988": { + "content": "###-0.0023###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36989": { + "content": "###-0.0021###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36990": { + "content": "###-0.0019###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36991": { + "content": "###-0.0017###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36992": { + "content": "###-0.0015###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36993": { + "content": "###-0.0013###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36994": { + "content": "###-0.0011###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36995": { + "content": "###-0.0009###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36996": { + "content": "###-0.0007###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36997": { + "content": "###-0.0005###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36998": { + "content": "###-0.0003###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "36999": { + "content": "###-0.0001###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37000": { + "content": "###0.0001###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37001": { + "content": "###0.0003###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37002": { + "content": "###0.0005###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37003": { + "content": "###0.0007###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37004": { + "content": "###0.0009###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37005": { + "content": "###0.0011###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37006": { + "content": "###0.0013###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37007": { + "content": "###0.0015###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37008": { + "content": "###0.0017###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37009": { + "content": "###0.0019###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37010": { + "content": "###0.0021###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37011": { + "content": "###0.0023###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37012": { + "content": "###0.0025###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37013": { + "content": "###0.0027###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37014": { + "content": "###0.0029###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37015": { + "content": "###0.0031###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37016": { + "content": "###0.0033###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37017": { + "content": "###0.0035###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37018": { + "content": "###0.0037###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37019": { + "content": "###0.0039###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37020": { + "content": "###0.0041###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37021": { + "content": "###0.0043###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37022": { + "content": "###0.0045###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37023": { + "content": "###0.0047###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37024": { + "content": "###0.0049###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37025": { + "content": "###0.0051###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37026": { + "content": "###0.0053###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37027": { + "content": "###0.0055###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37028": { + "content": "###0.0057###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37029": { + "content": "###0.0059###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37030": { + "content": "###0.0061###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37031": { + "content": "###0.0063###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37032": { + "content": "###0.0065###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37033": { + "content": "###0.0067###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37034": { + "content": "###0.0069###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37035": { + "content": "###0.0071###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37036": { + "content": "###0.0073###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37037": { + "content": "###0.0075###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37038": { + "content": "###0.0077###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37039": { + "content": "###0.0079###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37040": { + "content": "###0.0081###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37041": { + "content": "###0.0083###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37042": { + "content": "###0.0085###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37043": { + "content": "###0.0087###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37044": { + "content": "###0.0089###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37045": { + "content": "###0.0091###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37046": { + "content": "###0.0093###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37047": { + "content": "###0.0095###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37048": { + "content": "###0.0097###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37049": { + "content": "###0.0099###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37050": { + "content": "###0.0101###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37051": { + "content": "###0.0103###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37052": { + "content": "###0.0105###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37053": { + "content": "###0.0107###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37054": { + "content": "###0.0109###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37055": { + "content": "###0.0111###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37056": { + "content": "###0.0113###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37057": { + "content": "###0.0115###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37058": { + "content": "###0.0117###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37059": { + "content": "###0.0119###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37060": { + "content": "###0.0121###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37061": { + "content": "###0.0123###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37062": { + "content": "###0.0125###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37063": { + "content": "###0.0127###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37064": { + "content": "###0.0129###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37065": { + "content": "###0.0131###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37066": { + "content": "###0.0133###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37067": { + "content": "###0.0135###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37068": { + "content": "###0.0137###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37069": { + "content": "###0.0139###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37070": { + "content": "###0.0141###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37071": { + "content": "###0.0143###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37072": { + "content": "###0.0145###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37073": { + "content": "###0.0147###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37074": { + "content": "###0.0149###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37075": { + "content": "###0.0151###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37076": { + "content": "###0.0153###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37077": { + "content": "###0.0155###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37078": { + "content": "###0.0157###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37079": { + "content": "###0.0159###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37080": { + "content": "###0.0161###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37081": { + "content": "###0.0163###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37082": { + "content": "###0.0165###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37083": { + "content": "###0.0167###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37084": { + "content": "###0.0169###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37085": { + "content": "###0.0171###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37086": { + "content": "###0.0173###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37087": { + "content": "###0.0175###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37088": { + "content": "###0.0177###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37089": { + "content": "###0.0179###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37090": { + "content": "###0.0181###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37091": { + "content": "###0.0183###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37092": { + "content": "###0.0185###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37093": { + "content": "###0.0187###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37094": { + "content": "###0.0189###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37095": { + "content": "###0.0191###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37096": { + "content": "###0.0193###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37097": { + "content": "###0.0195###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37098": { + "content": "###0.0197###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37099": { + "content": "###0.0199###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37100": { + "content": "###0.0201###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37101": { + "content": "###0.0203###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37102": { + "content": "###0.0205###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37103": { + "content": "###0.0207###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37104": { + "content": "###0.0209###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37105": { + "content": "###0.0211###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37106": { + "content": "###0.0213###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37107": { + "content": "###0.0215###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37108": { + "content": "###0.0217###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37109": { + "content": "###0.0219###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37110": { + "content": "###0.0221###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37111": { + "content": "###0.0223###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37112": { + "content": "###0.0225###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37113": { + "content": "###0.0227###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37114": { + "content": "###0.0229###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37115": { + "content": "###0.0231###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37116": { + "content": "###0.0233###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37117": { + "content": "###0.0235###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37118": { + "content": "###0.0237###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37119": { + "content": "###0.0239###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37120": { + "content": "###0.0241###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37121": { + "content": "###0.0243###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37122": { + "content": "###0.0245###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37123": { + "content": "###0.0247###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37124": { + "content": "###0.0249###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37125": { + "content": "###0.0251###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37126": { + "content": "###0.0253###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37127": { + "content": "###0.0255###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37128": { + "content": "###0.0257###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37129": { + "content": "###0.0259###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37130": { + "content": "###0.0261###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37131": { + "content": "###0.0263###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37132": { + "content": "###0.0265###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37133": { + "content": "###0.0267###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37134": { + "content": "###0.0269###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37135": { + "content": "###0.0271###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37136": { + "content": "###0.0273###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37137": { + "content": "###0.0275###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37138": { + "content": "###0.0277###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37139": { + "content": "###0.0279###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37140": { + "content": "###0.0281###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37141": { + "content": "###0.0283###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37142": { + "content": "###0.0285###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37143": { + "content": "###0.0287###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37144": { + "content": "###0.0289###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37145": { + "content": "###0.0291###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37146": { + "content": "###0.0293###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37147": { + "content": "###0.0295###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37148": { + "content": "###0.0297###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37149": { + "content": "###0.0299###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37150": { + "content": "###0.0301###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37151": { + "content": "###0.0303###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37152": { + "content": "###0.0305###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37153": { + "content": "###0.0307###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37154": { + "content": "###0.0309###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37155": { + "content": "###0.0311###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37156": { + "content": "###0.0313###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37157": { + "content": "###0.0315###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37158": { + "content": "###0.0317###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37159": { + "content": "###0.0319###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37160": { + "content": "###0.0321###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37161": { + "content": "###0.0323###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37162": { + "content": "###0.0325###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37163": { + "content": "###0.0327###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37164": { + "content": "###0.0329###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37165": { + "content": "###0.0331###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37166": { + "content": "###0.0333###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37167": { + "content": "###0.0335###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37168": { + "content": "###0.0337###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37169": { + "content": "###0.0339###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37170": { + "content": "###0.0341###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37171": { + "content": "###0.0343###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37172": { + "content": "###0.0345###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37173": { + "content": "###0.0347###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37174": { + "content": "###0.0349###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37175": { + "content": "###0.0351###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37176": { + "content": "###0.0353###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37177": { + "content": "###0.0355###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37178": { + "content": "###0.0357###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37179": { + "content": "###0.0359###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37180": { + "content": "###0.0361###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37181": { + "content": "###0.0363###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37182": { + "content": "###0.0365###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37183": { + "content": "###0.0367###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37184": { + "content": "###0.0369###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37185": { + "content": "###0.0371###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37186": { + "content": "###0.0373###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37187": { + "content": "###0.0375###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37188": { + "content": "###0.0377###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37189": { + "content": "###0.0379###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37190": { + "content": "###0.0381###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37191": { + "content": "###0.0383###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37192": { + "content": "###0.0385###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37193": { + "content": "###0.0387###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37194": { + "content": "###0.0389###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37195": { + "content": "###0.0391###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37196": { + "content": "###0.0393###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37197": { + "content": "###0.0395###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37198": { + "content": "###0.0397###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37199": { + "content": "###0.0399###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37200": { + "content": "###0.0401###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37201": { + "content": "###0.0403###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37202": { + "content": "###0.0405###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37203": { + "content": "###0.0407###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37204": { + "content": "###0.0409###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37205": { + "content": "###0.0411###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37206": { + "content": "###0.0413###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37207": { + "content": "###0.0415###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37208": { + "content": "###0.0417###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37209": { + "content": "###0.0419###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37210": { + "content": "###0.0421###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37211": { + "content": "###0.0423###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37212": { + "content": "###0.0425###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37213": { + "content": "###0.0427###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37214": { + "content": "###0.0429###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37215": { + "content": "###0.0431###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37216": { + "content": "###0.0433###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37217": { + "content": "###0.0435###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37218": { + "content": "###0.0437###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37219": { + "content": "###0.0439###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37220": { + "content": "###0.0441###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37221": { + "content": "###0.0443###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37222": { + "content": "###0.0445###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37223": { + "content": "###0.0447###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37224": { + "content": "###0.0449###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37225": { + "content": "###0.0451###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37226": { + "content": "###0.0453###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37227": { + "content": "###0.0455###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37228": { + "content": "###0.0457###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37229": { + "content": "###0.0459###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37230": { + "content": "###0.0461###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37231": { + "content": "###0.0463###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37232": { + "content": "###0.0465###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37233": { + "content": "###0.0467###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37234": { + "content": "###0.0469###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37235": { + "content": "###0.0471###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37236": { + "content": "###0.0473###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37237": { + "content": "###0.0475###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37238": { + "content": "###0.0477###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37239": { + "content": "###0.0479###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37240": { + "content": "###0.0481###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37241": { + "content": "###0.0483###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37242": { + "content": "###0.0485###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37243": { + "content": "###0.0487###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37244": { + "content": "###0.0489###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37245": { + "content": "###0.0491###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37246": { + "content": "###0.0493###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37247": { + "content": "###0.0495###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37248": { + "content": "###0.0497###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37249": { + "content": "###0.0499###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37250": { + "content": "###0.0501###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37251": { + "content": "###0.0503###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37252": { + "content": "###0.0505###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37253": { + "content": "###0.0507###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37254": { + "content": "###0.0509###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37255": { + "content": "###0.0511###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37256": { + "content": "###0.0513###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37257": { + "content": "###0.0515###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37258": { + "content": "###0.0517###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37259": { + "content": "###0.0519###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37260": { + "content": "###0.0521###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37261": { + "content": "###0.0523###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37262": { + "content": "###0.0525###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37263": { + "content": "###0.0527###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37264": { + "content": "###0.0529###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37265": { + "content": "###0.0531###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37266": { + "content": "###0.0533###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37267": { + "content": "###0.0535###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37268": { + "content": "###0.0537###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37269": { + "content": "###0.0539###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37270": { + "content": "###0.0541###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37271": { + "content": "###0.0543###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37272": { + "content": "###0.0545###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37273": { + "content": "###0.0547###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37274": { + "content": "###0.0549###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37275": { + "content": "###0.0551###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37276": { + "content": "###0.0553###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37277": { + "content": "###0.0555###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37278": { + "content": "###0.0557###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37279": { + "content": "###0.0559###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37280": { + "content": "###0.0561###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37281": { + "content": "###0.0563###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37282": { + "content": "###0.0565###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37283": { + "content": "###0.0567###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37284": { + "content": "###0.0569###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37285": { + "content": "###0.0571###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37286": { + "content": "###0.0573###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37287": { + "content": "###0.0575###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37288": { + "content": "###0.0577###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37289": { + "content": "###0.0579###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37290": { + "content": "###0.0581###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37291": { + "content": "###0.0583###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37292": { + "content": "###0.0585###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37293": { + "content": "###0.0587###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37294": { + "content": "###0.0589###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37295": { + "content": "###0.0591###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37296": { + "content": "###0.0593###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37297": { + "content": "###0.0595###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37298": { + "content": "###0.0597###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37299": { + "content": "###0.0599###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37300": { + "content": "###0.0601###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37301": { + "content": "###0.0603###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37302": { + "content": "###0.0605###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37303": { + "content": "###0.0607###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37304": { + "content": "###0.0609###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37305": { + "content": "###0.0611###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37306": { + "content": "###0.0613###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37307": { + "content": "###0.0615###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37308": { + "content": "###0.0617###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37309": { + "content": "###0.0619###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37310": { + "content": "###0.0621###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37311": { + "content": "###0.0623###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37312": { + "content": "###0.0625###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37313": { + "content": "###0.0627###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37314": { + "content": "###0.0629###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37315": { + "content": "###0.0631###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37316": { + "content": "###0.0633###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37317": { + "content": "###0.0635###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37318": { + "content": "###0.0637###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37319": { + "content": "###0.0639###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37320": { + "content": "###0.0641###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37321": { + "content": "###0.0643###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37322": { + "content": "###0.0645###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37323": { + "content": "###0.0647###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37324": { + "content": "###0.0649###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37325": { + "content": "###0.0651###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37326": { + "content": "###0.0653###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37327": { + "content": "###0.0655###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37328": { + "content": "###0.0657###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37329": { + "content": "###0.0659###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37330": { + "content": "###0.0661###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37331": { + "content": "###0.0663###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37332": { + "content": "###0.0665###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37333": { + "content": "###0.0667###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37334": { + "content": "###0.0669###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37335": { + "content": "###0.0671###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37336": { + "content": "###0.0673###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37337": { + "content": "###0.0675###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37338": { + "content": "###0.0677###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37339": { + "content": "###0.0679###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37340": { + "content": "###0.0681###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37341": { + "content": "###0.0683###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37342": { + "content": "###0.0685###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37343": { + "content": "###0.0687###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37344": { + "content": "###0.0689###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37345": { + "content": "###0.0691###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37346": { + "content": "###0.0693###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37347": { + "content": "###0.0695###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37348": { + "content": "###0.0697###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37349": { + "content": "###0.0699###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37350": { + "content": "###0.0701###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37351": { + "content": "###0.0703###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37352": { + "content": "###0.0705###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37353": { + "content": "###0.0707###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37354": { + "content": "###0.0709###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37355": { + "content": "###0.0711###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37356": { + "content": "###0.0713###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37357": { + "content": "###0.0715###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37358": { + "content": "###0.0717###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37359": { + "content": "###0.0719###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37360": { + "content": "###0.0721###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37361": { + "content": "###0.0723###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37362": { + "content": "###0.0725###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37363": { + "content": "###0.0727###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37364": { + "content": "###0.0729###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37365": { + "content": "###0.0731###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37366": { + "content": "###0.0733###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37367": { + "content": "###0.0735###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37368": { + "content": "###0.0737###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37369": { + "content": "###0.0739###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37370": { + "content": "###0.0741###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37371": { + "content": "###0.0743###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37372": { + "content": "###0.0745###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37373": { + "content": "###0.0747###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37374": { + "content": "###0.0749###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37375": { + "content": "###0.0751###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37376": { + "content": "###0.0753###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37377": { + "content": "###0.0755###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37378": { + "content": "###0.0757###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37379": { + "content": "###0.0759###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37380": { + "content": "###0.0761###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37381": { + "content": "###0.0763###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37382": { + "content": "###0.0765###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37383": { + "content": "###0.0767###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37384": { + "content": "###0.0769###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37385": { + "content": "###0.0771###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37386": { + "content": "###0.0773###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37387": { + "content": "###0.0775###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37388": { + "content": "###0.0777###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37389": { + "content": "###0.0779###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37390": { + "content": "###0.0781###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37391": { + "content": "###0.0783###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37392": { + "content": "###0.0785###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37393": { + "content": "###0.0787###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37394": { + "content": "###0.0789###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37395": { + "content": "###0.0791###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37396": { + "content": "###0.0793###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37397": { + "content": "###0.0795###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37398": { + "content": "###0.0797###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37399": { + "content": "###0.0799###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37400": { + "content": "###0.0801###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37401": { + "content": "###0.0803###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37402": { + "content": "###0.0805###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37403": { + "content": "###0.0807###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37404": { + "content": "###0.0809###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37405": { + "content": "###0.0811###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37406": { + "content": "###0.0813###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37407": { + "content": "###0.0815###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37408": { + "content": "###0.0817###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37409": { + "content": "###0.0819###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37410": { + "content": "###0.0821###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37411": { + "content": "###0.0823###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37412": { + "content": "###0.0825###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37413": { + "content": "###0.0827###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37414": { + "content": "###0.0829###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37415": { + "content": "###0.0831###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37416": { + "content": "###0.0833###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37417": { + "content": "###0.0835###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37418": { + "content": "###0.0837###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37419": { + "content": "###0.0839###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37420": { + "content": "###0.0841###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37421": { + "content": "###0.0843###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37422": { + "content": "###0.0845###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37423": { + "content": "###0.0847###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37424": { + "content": "###0.0849###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37425": { + "content": "###0.0851###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37426": { + "content": "###0.0853###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37427": { + "content": "###0.0855###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37428": { + "content": "###0.0857###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37429": { + "content": "###0.0859###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37430": { + "content": "###0.0861###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37431": { + "content": "###0.0863###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37432": { + "content": "###0.0865###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37433": { + "content": "###0.0867###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37434": { + "content": "###0.0869###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37435": { + "content": "###0.0871###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37436": { + "content": "###0.0873###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37437": { + "content": "###0.0875###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37438": { + "content": "###0.0877###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37439": { + "content": "###0.0879###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37440": { + "content": "###0.0881###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37441": { + "content": "###0.0883###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37442": { + "content": "###0.0885###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37443": { + "content": "###0.0887###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37444": { + "content": "###0.0889###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37445": { + "content": "###0.0891###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37446": { + "content": "###0.0893###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37447": { + "content": "###0.0895###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37448": { + "content": "###0.0897###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37449": { + "content": "###0.0899###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37450": { + "content": "###0.0901###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37451": { + "content": "###0.0903###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37452": { + "content": "###0.0905###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37453": { + "content": "###0.0907###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37454": { + "content": "###0.0909###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37455": { + "content": "###0.0911###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37456": { + "content": "###0.0913###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37457": { + "content": "###0.0915###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37458": { + "content": "###0.0917###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37459": { + "content": "###0.0919###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37460": { + "content": "###0.0921###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37461": { + "content": "###0.0923###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37462": { + "content": "###0.0925###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37463": { + "content": "###0.0927###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37464": { + "content": "###0.0929###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37465": { + "content": "###0.0931###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37466": { + "content": "###0.0933###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37467": { + "content": "###0.0935###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37468": { + "content": "###0.0937###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37469": { + "content": "###0.0939###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37470": { + "content": "###0.0941###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37471": { + "content": "###0.0943###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37472": { + "content": "###0.0945###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37473": { + "content": "###0.0947###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37474": { + "content": "###0.0949###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37475": { + "content": "###0.0951###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37476": { + "content": "###0.0953###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37477": { + "content": "###0.0955###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37478": { + "content": "###0.0957###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37479": { + "content": "###0.0959###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37480": { + "content": "###0.0961###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37481": { + "content": "###0.0963###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37482": { + "content": "###0.0965###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37483": { + "content": "###0.0967###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37484": { + "content": "###0.0969###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37485": { + "content": "###0.0971###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37486": { + "content": "###0.0973###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37487": { + "content": "###0.0975###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37488": { + "content": "###0.0977###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37489": { + "content": "###0.0979###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37490": { + "content": "###0.0981###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37491": { + "content": "###0.0983###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37492": { + "content": "###0.0985###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37493": { + "content": "###0.0987###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37494": { + "content": "###0.0989###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37495": { + "content": "###0.0991###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37496": { + "content": "###0.0993###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37497": { + "content": "###0.0995###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37498": { + "content": "###0.0997###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37499": { + "content": "###0.0999###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37500": { + "content": "###0.1001###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37501": { + "content": "###0.1003###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37502": { + "content": "###0.1005###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37503": { + "content": "###0.1007###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37504": { + "content": "###0.1009###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37505": { + "content": "###0.1011###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37506": { + "content": "###0.1013###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37507": { + "content": "###0.1015###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37508": { + "content": "###0.1017###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37509": { + "content": "###0.1019###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37510": { + "content": "###0.1021###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37511": { + "content": "###0.1023###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37512": { + "content": "###0.1025###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37513": { + "content": "###0.1027###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37514": { + "content": "###0.1029###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37515": { + "content": "###0.1031###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37516": { + "content": "###0.1033###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37517": { + "content": "###0.1035###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37518": { + "content": "###0.1037###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37519": { + "content": "###0.1039###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37520": { + "content": "###0.1041###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37521": { + "content": "###0.1043###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37522": { + "content": "###0.1045###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37523": { + "content": "###0.1047###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37524": { + "content": "###0.1049###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37525": { + "content": "###0.1051###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37526": { + "content": "###0.1053###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37527": { + "content": "###0.1055###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37528": { + "content": "###0.1057###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37529": { + "content": "###0.1059###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37530": { + "content": "###0.1061###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37531": { + "content": "###0.1063###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37532": { + "content": "###0.1065###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37533": { + "content": "###0.1067###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37534": { + "content": "###0.1069###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37535": { + "content": "###0.1071###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37536": { + "content": "###0.1073###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37537": { + "content": "###0.1075###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37538": { + "content": "###0.1077###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37539": { + "content": "###0.1079###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37540": { + "content": "###0.1081###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37541": { + "content": "###0.1083###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37542": { + "content": "###0.1085###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37543": { + "content": "###0.1087###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37544": { + "content": "###0.1089###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37545": { + "content": "###0.1091###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37546": { + "content": "###0.1093###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37547": { + "content": "###0.1095###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37548": { + "content": "###0.1097###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37549": { + "content": "###0.1099###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37550": { + "content": "###0.1101###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37551": { + "content": "###0.1103###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37552": { + "content": "###0.1105###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37553": { + "content": "###0.1107###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37554": { + "content": "###0.1109###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37555": { + "content": "###0.1111###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37556": { + "content": "###0.1113###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37557": { + "content": "###0.1115###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37558": { + "content": "###0.1117###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37559": { + "content": "###0.1119###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37560": { + "content": "###0.1121###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37561": { + "content": "###0.1123###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37562": { + "content": "###0.1125###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37563": { + "content": "###0.1127###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37564": { + "content": "###0.1129###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37565": { + "content": "###0.1131###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37566": { + "content": "###0.1133###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37567": { + "content": "###0.1135###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37568": { + "content": "###0.1137###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37569": { + "content": "###0.1139###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37570": { + "content": "###0.1141###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37571": { + "content": "###0.1143###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37572": { + "content": "###0.1145###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37573": { + "content": "###0.1147###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37574": { + "content": "###0.1149###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37575": { + "content": "###0.1151###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37576": { + "content": "###0.1153###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37577": { + "content": "###0.1155###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37578": { + "content": "###0.1157###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37579": { + "content": "###0.1159###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37580": { + "content": "###0.1161###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37581": { + "content": "###0.1163###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37582": { + "content": "###0.1165###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37583": { + "content": "###0.1167###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37584": { + "content": "###0.1169###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37585": { + "content": "###0.1171###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37586": { + "content": "###0.1173###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37587": { + "content": "###0.1175###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37588": { + "content": "###0.1177###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37589": { + "content": "###0.1179###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37590": { + "content": "###0.1181###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37591": { + "content": "###0.1183###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37592": { + "content": "###0.1185###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37593": { + "content": "###0.1187###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37594": { + "content": "###0.1189###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37595": { + "content": "###0.1191###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37596": { + "content": "###0.1193###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37597": { + "content": "###0.1195###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37598": { + "content": "###0.1197###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37599": { + "content": "###0.1199###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37600": { + "content": "###0.1201###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37601": { + "content": "###0.1203###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37602": { + "content": "###0.1205###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37603": { + "content": "###0.1207###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37604": { + "content": "###0.1209###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37605": { + "content": "###0.1211###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37606": { + "content": "###0.1213###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37607": { + "content": "###0.1215###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37608": { + "content": "###0.1217###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37609": { + "content": "###0.1219###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37610": { + "content": "###0.1221###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37611": { + "content": "###0.1223###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37612": { + "content": "###0.1225###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37613": { + "content": "###0.1227###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37614": { + "content": "###0.1229###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37615": { + "content": "###0.1231###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37616": { + "content": "###0.1233###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37617": { + "content": "###0.1235###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37618": { + "content": "###0.1237###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37619": { + "content": "###0.1239###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37620": { + "content": "###0.1241###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37621": { + "content": "###0.1243###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37622": { + "content": "###0.1245###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37623": { + "content": "###0.1247###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37624": { + "content": "###0.1249###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37625": { + "content": "###0.1251###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37626": { + "content": "###0.1253###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37627": { + "content": "###0.1255###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37628": { + "content": "###0.1257###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37629": { + "content": "###0.1259###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37630": { + "content": "###0.1261###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37631": { + "content": "###0.1263###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37632": { + "content": "###0.1265###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37633": { + "content": "###0.1267###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37634": { + "content": "###0.1269###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37635": { + "content": "###0.1271###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37636": { + "content": "###0.1273###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37637": { + "content": "###0.1275###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37638": { + "content": "###0.1277###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37639": { + "content": "###0.1279###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37640": { + "content": "###0.1281###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37641": { + "content": "###0.1283###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37642": { + "content": "###0.1285###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37643": { + "content": "###0.1287###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37644": { + "content": "###0.1289###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37645": { + "content": "###0.1291###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37646": { + "content": "###0.1293###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37647": { + "content": "###0.1295###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37648": { + "content": "###0.1297###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37649": { + "content": "###0.1299###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37650": { + "content": "###0.1301###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37651": { + "content": "###0.1303###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37652": { + "content": "###0.1305###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37653": { + "content": "###0.1307###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37654": { + "content": "###0.1309###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37655": { + "content": "###0.1311###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37656": { + "content": "###0.1313###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37657": { + "content": "###0.1315###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37658": { + "content": "###0.1317###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37659": { + "content": "###0.1319###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37660": { + "content": "###0.1321###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37661": { + "content": "###0.1323###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37662": { + "content": "###0.1325###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37663": { + "content": "###0.1327###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37664": { + "content": "###0.1329###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37665": { + "content": "###0.1331###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37666": { + "content": "###0.1333###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37667": { + "content": "###0.1335###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37668": { + "content": "###0.1337###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37669": { + "content": "###0.1339###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37670": { + "content": "###0.1341###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37671": { + "content": "###0.1343###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37672": { + "content": "###0.1345###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37673": { + "content": "###0.1347###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37674": { + "content": "###0.1349###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37675": { + "content": "###0.1351###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37676": { + "content": "###0.1353###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37677": { + "content": "###0.1355###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37678": { + "content": "###0.1357###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37679": { + "content": "###0.1359###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37680": { + "content": "###0.1361###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37681": { + "content": "###0.1363###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37682": { + "content": "###0.1365###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37683": { + "content": "###0.1367###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37684": { + "content": "###0.1369###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37685": { + "content": "###0.1371###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37686": { + "content": "###0.1373###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37687": { + "content": "###0.1375###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37688": { + "content": "###0.1377###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37689": { + "content": "###0.1379###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37690": { + "content": "###0.1381###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37691": { + "content": "###0.1383###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37692": { + "content": "###0.1385###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37693": { + "content": "###0.1387###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37694": { + "content": "###0.1389###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37695": { + "content": "###0.1391###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37696": { + "content": "###0.1393###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37697": { + "content": "###0.1395###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37698": { + "content": "###0.1397###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37699": { + "content": "###0.1399###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37700": { + "content": "###0.1401###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37701": { + "content": "###0.1403###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37702": { + "content": "###0.1405###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37703": { + "content": "###0.1407###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37704": { + "content": "###0.1409###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37705": { + "content": "###0.1411###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37706": { + "content": "###0.1413###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37707": { + "content": "###0.1415###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37708": { + "content": "###0.1417###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37709": { + "content": "###0.1419###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37710": { + "content": "###0.1421###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37711": { + "content": "###0.1423###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37712": { + "content": "###0.1425###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37713": { + "content": "###0.1427###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37714": { + "content": "###0.1429###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37715": { + "content": "###0.1431###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37716": { + "content": "###0.1433###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37717": { + "content": "###0.1435###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37718": { + "content": "###0.1437###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37719": { + "content": "###0.1439###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37720": { + "content": "###0.1441###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37721": { + "content": "###0.1443###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37722": { + "content": "###0.1445###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37723": { + "content": "###0.1447###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37724": { + "content": "###0.1449###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37725": { + "content": "###0.1451###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37726": { + "content": "###0.1453###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37727": { + "content": "###0.1455###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37728": { + "content": "###0.1457###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37729": { + "content": "###0.1459###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37730": { + "content": "###0.1461###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37731": { + "content": "###0.1463###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37732": { + "content": "###0.1465###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37733": { + "content": "###0.1467###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37734": { + "content": "###0.1469###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37735": { + "content": "###0.1471###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37736": { + "content": "###0.1473###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37737": { + "content": "###0.1475###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37738": { + "content": "###0.1477###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37739": { + "content": "###0.1479###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37740": { + "content": "###0.1481###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37741": { + "content": "###0.1483###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37742": { + "content": "###0.1485###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37743": { + "content": "###0.1487###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37744": { + "content": "###0.1489###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37745": { + "content": "###0.1491###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37746": { + "content": "###0.1493###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37747": { + "content": "###0.1495###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37748": { + "content": "###0.1497###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37749": { + "content": "###0.1499###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37750": { + "content": "###0.1501###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37751": { + "content": "###0.1503###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37752": { + "content": "###0.1505###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37753": { + "content": "###0.1507###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37754": { + "content": "###0.1509###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37755": { + "content": "###0.1511###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37756": { + "content": "###0.1513###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37757": { + "content": "###0.1515###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37758": { + "content": "###0.1517###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37759": { + "content": "###0.1519###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37760": { + "content": "###0.1521###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37761": { + "content": "###0.1523###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37762": { + "content": "###0.1525###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37763": { + "content": "###0.1527###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37764": { + "content": "###0.1529###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37765": { + "content": "###0.1531###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37766": { + "content": "###0.1533###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37767": { + "content": "###0.1535###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37768": { + "content": "###0.1537###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37769": { + "content": "###0.1539###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37770": { + "content": "###0.1541###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37771": { + "content": "###0.1543###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37772": { + "content": "###0.1545###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37773": { + "content": "###0.1547###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37774": { + "content": "###0.1549###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37775": { + "content": "###0.1551###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37776": { + "content": "###0.1553###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37777": { + "content": "###0.1555###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37778": { + "content": "###0.1557###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37779": { + "content": "###0.1559###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37780": { + "content": "###0.1561###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37781": { + "content": "###0.1563###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37782": { + "content": "###0.1565###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37783": { + "content": "###0.1567###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37784": { + "content": "###0.1569###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37785": { + "content": "###0.1571###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37786": { + "content": "###0.1573###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37787": { + "content": "###0.1575###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37788": { + "content": "###0.1577###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37789": { + "content": "###0.1579###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37790": { + "content": "###0.1581###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37791": { + "content": "###0.1583###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37792": { + "content": "###0.1585###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37793": { + "content": "###0.1587###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37794": { + "content": "###0.1589###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37795": { + "content": "###0.1591###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37796": { + "content": "###0.1593###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37797": { + "content": "###0.1595###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37798": { + "content": "###0.1597###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37799": { + "content": "###0.1599###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37800": { + "content": "###0.1601###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37801": { + "content": "###0.1603###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37802": { + "content": "###0.1605###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37803": { + "content": "###0.1607###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37804": { + "content": "###0.1609###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37805": { + "content": "###0.1611###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37806": { + "content": "###0.1613###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37807": { + "content": "###0.1615###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37808": { + "content": "###0.1617###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37809": { + "content": "###0.1619###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37810": { + "content": "###0.1621###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37811": { + "content": "###0.1623###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37812": { + "content": "###0.1625###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37813": { + "content": "###0.1627###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37814": { + "content": "###0.1629###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37815": { + "content": "###0.1631###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37816": { + "content": "###0.1633###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37817": { + "content": "###0.1635###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37818": { + "content": "###0.1637###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37819": { + "content": "###0.1639###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37820": { + "content": "###0.1641###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37821": { + "content": "###0.1643###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37822": { + "content": "###0.1645###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37823": { + "content": "###0.1647###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37824": { + "content": "###0.1649###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37825": { + "content": "###0.1651###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37826": { + "content": "###0.1653###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37827": { + "content": "###0.1655###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37828": { + "content": "###0.1657###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37829": { + "content": "###0.1659###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37830": { + "content": "###0.1661###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37831": { + "content": "###0.1663###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37832": { + "content": "###0.1665###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37833": { + "content": "###0.1667###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37834": { + "content": "###0.1669###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37835": { + "content": "###0.1671###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37836": { + "content": "###0.1673###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37837": { + "content": "###0.1675###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37838": { + "content": "###0.1677###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37839": { + "content": "###0.1679###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37840": { + "content": "###0.1681###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37841": { + "content": "###0.1683###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37842": { + "content": "###0.1685###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37843": { + "content": "###0.1687###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37844": { + "content": "###0.1689###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37845": { + "content": "###0.1691###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37846": { + "content": "###0.1693###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37847": { + "content": "###0.1695###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37848": { + "content": "###0.1697###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37849": { + "content": "###0.1699###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37850": { + "content": "###0.1701###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37851": { + "content": "###0.1703###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37852": { + "content": "###0.1705###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37853": { + "content": "###0.1707###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37854": { + "content": "###0.1709###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37855": { + "content": "###0.1711###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37856": { + "content": "###0.1713###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37857": { + "content": "###0.1715###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37858": { + "content": "###0.1717###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37859": { + "content": "###0.1719###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37860": { + "content": "###0.1721###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37861": { + "content": "###0.1723###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37862": { + "content": "###0.1725###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37863": { + "content": "###0.1727###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37864": { + "content": "###0.1729###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37865": { + "content": "###0.1731###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37866": { + "content": "###0.1733###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37867": { + "content": "###0.1735###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37868": { + "content": "###0.1737###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37869": { + "content": "###0.1739###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37870": { + "content": "###0.1741###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37871": { + "content": "###0.1743###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37872": { + "content": "###0.1745###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37873": { + "content": "###0.1747###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37874": { + "content": "###0.1749###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37875": { + "content": "###0.1751###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37876": { + "content": "###0.1753###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37877": { + "content": "###0.1755###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37878": { + "content": "###0.1757###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37879": { + "content": "###0.1759###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37880": { + "content": "###0.1761###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37881": { + "content": "###0.1763###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37882": { + "content": "###0.1765###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37883": { + "content": "###0.1767###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37884": { + "content": "###0.1769###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37885": { + "content": "###0.1771###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37886": { + "content": "###0.1773###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37887": { + "content": "###0.1775###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37888": { + "content": "###0.1777###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37889": { + "content": "###0.1779###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37890": { + "content": "###0.1781###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37891": { + "content": "###0.1783###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37892": { + "content": "###0.1785###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37893": { + "content": "###0.1787###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37894": { + "content": "###0.1789###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37895": { + "content": "###0.1791###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37896": { + "content": "###0.1793###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37897": { + "content": "###0.1795###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37898": { + "content": "###0.1797###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37899": { + "content": "###0.1799###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37900": { + "content": "###0.1801###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37901": { + "content": "###0.1803###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37902": { + "content": "###0.1805###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37903": { + "content": "###0.1807###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37904": { + "content": "###0.1809###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37905": { + "content": "###0.1811###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37906": { + "content": "###0.1813###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37907": { + "content": "###0.1815###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37908": { + "content": "###0.1817###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37909": { + "content": "###0.1819###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37910": { + "content": "###0.1821###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37911": { + "content": "###0.1823###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37912": { + "content": "###0.1825###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37913": { + "content": "###0.1827###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37914": { + "content": "###0.1829###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37915": { + "content": "###0.1831###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37916": { + "content": "###0.1833###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37917": { + "content": "###0.1835###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37918": { + "content": "###0.1837###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37919": { + "content": "###0.1839###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37920": { + "content": "###0.1841###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37921": { + "content": "###0.1843###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37922": { + "content": "###0.1845###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37923": { + "content": "###0.1847###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37924": { + "content": "###0.1849###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37925": { + "content": "###0.1851###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37926": { + "content": "###0.1853###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37927": { + "content": "###0.1855###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37928": { + "content": "###0.1857###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37929": { + "content": "###0.1859###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37930": { + "content": "###0.1861###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37931": { + "content": "###0.1863###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37932": { + "content": "###0.1865###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37933": { + "content": "###0.1867###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37934": { + "content": "###0.1869###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37935": { + "content": "###0.1871###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37936": { + "content": "###0.1873###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37937": { + "content": "###0.1875###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37938": { + "content": "###0.1877###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37939": { + "content": "###0.1879###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37940": { + "content": "###0.1881###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37941": { + "content": "###0.1883###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37942": { + "content": "###0.1885###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37943": { + "content": "###0.1887###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37944": { + "content": "###0.1889###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37945": { + "content": "###0.1891###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37946": { + "content": "###0.1893###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37947": { + "content": "###0.1895###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37948": { + "content": "###0.1897###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37949": { + "content": "###0.1899###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37950": { + "content": "###0.1901###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37951": { + "content": "###0.1903###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37952": { + "content": "###0.1905###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37953": { + "content": "###0.1907###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37954": { + "content": "###0.1909###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37955": { + "content": "###0.1911###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37956": { + "content": "###0.1913###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37957": { + "content": "###0.1915###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37958": { + "content": "###0.1917###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37959": { + "content": "###0.1919###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37960": { + "content": "###0.1921###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37961": { + "content": "###0.1923###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37962": { + "content": "###0.1925###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37963": { + "content": "###0.1927###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37964": { + "content": "###0.1929###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37965": { + "content": "###0.1931###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37966": { + "content": "###0.1933###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37967": { + "content": "###0.1935###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37968": { + "content": "###0.1937###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37969": { + "content": "###0.1939###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37970": { + "content": "###0.1941###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37971": { + "content": "###0.1943###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37972": { + "content": "###0.1945###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37973": { + "content": "###0.1947###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37974": { + "content": "###0.1949###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37975": { + "content": "###0.1951###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37976": { + "content": "###0.1953###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37977": { + "content": "###0.1955###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37978": { + "content": "###0.1957###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37979": { + "content": "###0.1959###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37980": { + "content": "###0.1961###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37981": { + "content": "###0.1963###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37982": { + "content": "###0.1965###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37983": { + "content": "###0.1967###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37984": { + "content": "###0.1969###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37985": { + "content": "###0.1971###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37986": { + "content": "###0.1973###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37987": { + "content": "###0.1975###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37988": { + "content": "###0.1977###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37989": { + "content": "###0.1979###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37990": { + "content": "###0.1981###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37991": { + "content": "###0.1983###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37992": { + "content": "###0.1985###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37993": { + "content": "###0.1987###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37994": { + "content": "###0.1989###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37995": { + "content": "###0.1991###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37996": { + "content": "###0.1993###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37997": { + "content": "###0.1995###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37998": { + "content": "###0.1997###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "37999": { + "content": "###0.1999###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38000": { + "content": "###0.2001###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38001": { + "content": "###0.2003###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38002": { + "content": "###0.2005###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38003": { + "content": "###0.2007###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38004": { + "content": "###0.2009###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38005": { + "content": "###0.2011###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38006": { + "content": "###0.2013###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38007": { + "content": "###0.2015###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38008": { + "content": "###0.2017###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38009": { + "content": "###0.2019###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38010": { + "content": "###0.2021###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38011": { + "content": "###0.2023###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38012": { + "content": "###0.2025###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38013": { + "content": "###0.2027###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38014": { + "content": "###0.2029###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38015": { + "content": "###0.2031###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38016": { + "content": "###0.2033###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38017": { + "content": "###0.2035###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38018": { + "content": "###0.2037###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38019": { + "content": "###0.2039###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38020": { + "content": "###0.2041###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38021": { + "content": "###0.2043###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38022": { + "content": "###0.2045###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38023": { + "content": "###0.2047###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38024": { + "content": "###0.2049###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38025": { + "content": "###0.2051###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38026": { + "content": "###0.2053###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38027": { + "content": "###0.2055###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38028": { + "content": "###0.2057###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38029": { + "content": "###0.2059###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38030": { + "content": "###0.2061###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38031": { + "content": "###0.2063###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38032": { + "content": "###0.2065###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38033": { + "content": "###0.2067###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38034": { + "content": "###0.2069###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38035": { + "content": "###0.2071###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38036": { + "content": "###0.2073###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38037": { + "content": "###0.2075###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38038": { + "content": "###0.2077###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38039": { + "content": "###0.2079###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38040": { + "content": "###0.2081###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38041": { + "content": "###0.2083###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38042": { + "content": "###0.2085###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38043": { + "content": "###0.2087###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38044": { + "content": "###0.2089###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38045": { + "content": "###0.2091###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38046": { + "content": "###0.2093###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38047": { + "content": "###0.2095###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38048": { + "content": "###0.2097###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38049": { + "content": "###0.2099###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38050": { + "content": "###0.2101###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38051": { + "content": "###0.2103###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38052": { + "content": "###0.2105###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38053": { + "content": "###0.2107###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38054": { + "content": "###0.2109###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38055": { + "content": "###0.2111###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38056": { + "content": "###0.2113###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38057": { + "content": "###0.2115###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38058": { + "content": "###0.2117###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38059": { + "content": "###0.2119###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38060": { + "content": "###0.2121###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38061": { + "content": "###0.2123###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38062": { + "content": "###0.2125###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38063": { + "content": "###0.2127###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38064": { + "content": "###0.2129###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38065": { + "content": "###0.2131###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38066": { + "content": "###0.2133###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38067": { + "content": "###0.2135###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38068": { + "content": "###0.2137###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38069": { + "content": "###0.2139###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38070": { + "content": "###0.2141###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38071": { + "content": "###0.2143###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38072": { + "content": "###0.2145###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38073": { + "content": "###0.2147###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38074": { + "content": "###0.2149###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38075": { + "content": "###0.2151###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38076": { + "content": "###0.2153###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38077": { + "content": "###0.2155###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38078": { + "content": "###0.2157###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38079": { + "content": "###0.2159###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38080": { + "content": "###0.2161###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38081": { + "content": "###0.2163###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38082": { + "content": "###0.2165###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38083": { + "content": "###0.2167###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38084": { + "content": "###0.2169###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38085": { + "content": "###0.2171###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38086": { + "content": "###0.2173###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38087": { + "content": "###0.2175###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38088": { + "content": "###0.2177###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38089": { + "content": "###0.2179###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38090": { + "content": "###0.2181###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38091": { + "content": "###0.2183###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38092": { + "content": "###0.2185###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38093": { + "content": "###0.2187###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38094": { + "content": "###0.2189###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38095": { + "content": "###0.2191###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38096": { + "content": "###0.2193###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38097": { + "content": "###0.2195###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38098": { + "content": "###0.2197###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38099": { + "content": "###0.2199###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38100": { + "content": "###0.2201###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38101": { + "content": "###0.2203###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38102": { + "content": "###0.2205###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38103": { + "content": "###0.2207###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38104": { + "content": "###0.2209###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38105": { + "content": "###0.2211###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38106": { + "content": "###0.2213###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38107": { + "content": "###0.2215###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38108": { + "content": "###0.2217###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38109": { + "content": "###0.2219###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38110": { + "content": "###0.2221###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38111": { + "content": "###0.2223###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38112": { + "content": "###0.2225###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38113": { + "content": "###0.2227###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38114": { + "content": "###0.2229###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38115": { + "content": "###0.2231###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38116": { + "content": "###0.2233###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38117": { + "content": "###0.2235###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38118": { + "content": "###0.2237###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38119": { + "content": "###0.2239###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38120": { + "content": "###0.2241###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38121": { + "content": "###0.2243###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38122": { + "content": "###0.2245###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38123": { + "content": "###0.2247###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38124": { + "content": "###0.2249###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38125": { + "content": "###0.2251###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38126": { + "content": "###0.2253###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38127": { + "content": "###0.2255###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38128": { + "content": "###0.2257###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38129": { + "content": "###0.2259###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38130": { + "content": "###0.2261###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38131": { + "content": "###0.2263###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38132": { + "content": "###0.2265###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38133": { + "content": "###0.2267###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38134": { + "content": "###0.2269###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38135": { + "content": "###0.2271###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38136": { + "content": "###0.2273###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38137": { + "content": "###0.2275###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38138": { + "content": "###0.2277###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38139": { + "content": "###0.2279###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38140": { + "content": "###0.2281###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38141": { + "content": "###0.2283###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38142": { + "content": "###0.2285###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38143": { + "content": "###0.2287###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38144": { + "content": "###0.2289###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38145": { + "content": "###0.2291###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38146": { + "content": "###0.2293###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38147": { + "content": "###0.2295###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38148": { + "content": "###0.2297###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38149": { + "content": "###0.2299###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38150": { + "content": "###0.2301###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38151": { + "content": "###0.2303###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38152": { + "content": "###0.2305###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38153": { + "content": "###0.2307###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38154": { + "content": "###0.2309###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38155": { + "content": "###0.2311###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38156": { + "content": "###0.2313###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38157": { + "content": "###0.2315###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38158": { + "content": "###0.2317###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38159": { + "content": "###0.2319###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38160": { + "content": "###0.2321###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38161": { + "content": "###0.2323###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38162": { + "content": "###0.2325###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38163": { + "content": "###0.2327###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38164": { + "content": "###0.2329###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38165": { + "content": "###0.2331###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38166": { + "content": "###0.2333###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38167": { + "content": "###0.2335###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38168": { + "content": "###0.2337###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38169": { + "content": "###0.2339###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38170": { + "content": "###0.2341###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38171": { + "content": "###0.2343###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38172": { + "content": "###0.2345###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38173": { + "content": "###0.2347###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38174": { + "content": "###0.2349###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38175": { + "content": "###0.2351###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38176": { + "content": "###0.2353###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38177": { + "content": "###0.2355###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38178": { + "content": "###0.2357###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38179": { + "content": "###0.2359###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38180": { + "content": "###0.2361###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38181": { + "content": "###0.2363###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38182": { + "content": "###0.2365###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38183": { + "content": "###0.2367###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38184": { + "content": "###0.2369###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38185": { + "content": "###0.2371###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38186": { + "content": "###0.2373###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38187": { + "content": "###0.2375###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38188": { + "content": "###0.2377###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38189": { + "content": "###0.2379###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38190": { + "content": "###0.2381###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38191": { + "content": "###0.2383###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38192": { + "content": "###0.2385###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38193": { + "content": "###0.2387###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38194": { + "content": "###0.2389###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38195": { + "content": "###0.2391###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38196": { + "content": "###0.2393###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38197": { + "content": "###0.2395###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38198": { + "content": "###0.2397###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38199": { + "content": "###0.2399###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38200": { + "content": "###0.2401###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38201": { + "content": "###0.2403###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38202": { + "content": "###0.2405###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38203": { + "content": "###0.2407###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38204": { + "content": "###0.2409###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38205": { + "content": "###0.2411###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38206": { + "content": "###0.2413###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38207": { + "content": "###0.2415###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38208": { + "content": "###0.2417###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38209": { + "content": "###0.2419###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38210": { + "content": "###0.2421###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38211": { + "content": "###0.2423###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38212": { + "content": "###0.2425###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38213": { + "content": "###0.2427###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38214": { + "content": "###0.2429###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38215": { + "content": "###0.2431###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38216": { + "content": "###0.2433###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38217": { + "content": "###0.2435###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38218": { + "content": "###0.2437###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38219": { + "content": "###0.2439###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38220": { + "content": "###0.2441###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38221": { + "content": "###0.2443###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38222": { + "content": "###0.2445###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38223": { + "content": "###0.2447###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38224": { + "content": "###0.2449###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38225": { + "content": "###0.2451###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38226": { + "content": "###0.2453###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38227": { + "content": "###0.2455###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38228": { + "content": "###0.2457###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38229": { + "content": "###0.2459###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38230": { + "content": "###0.2461###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38231": { + "content": "###0.2463###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38232": { + "content": "###0.2465###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38233": { + "content": "###0.2467###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38234": { + "content": "###0.2469###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38235": { + "content": "###0.2471###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38236": { + "content": "###0.2473###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38237": { + "content": "###0.2475###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38238": { + "content": "###0.2477###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38239": { + "content": "###0.2479###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38240": { + "content": "###0.2481###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38241": { + "content": "###0.2483###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38242": { + "content": "###0.2485###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38243": { + "content": "###0.2487###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38244": { + "content": "###0.2489###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38245": { + "content": "###0.2491###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38246": { + "content": "###0.2493###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38247": { + "content": "###0.2495###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38248": { + "content": "###0.2497###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38249": { + "content": "###0.2499###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38250": { + "content": "###0.2501###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38251": { + "content": "###0.2503###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38252": { + "content": "###0.2505###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38253": { + "content": "###0.2507###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38254": { + "content": "###0.2509###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38255": { + "content": "###0.2511###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38256": { + "content": "###0.2513###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38257": { + "content": "###0.2515###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38258": { + "content": "###0.2517###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38259": { + "content": "###0.2519###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38260": { + "content": "###0.2521###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38261": { + "content": "###0.2523###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38262": { + "content": "###0.2525###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38263": { + "content": "###0.2527###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38264": { + "content": "###0.2529###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38265": { + "content": "###0.2531###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38266": { + "content": "###0.2533###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38267": { + "content": "###0.2535###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38268": { + "content": "###0.2537###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38269": { + "content": "###0.2539###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38270": { + "content": "###0.2541###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38271": { + "content": "###0.2543###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38272": { + "content": "###0.2545###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38273": { + "content": "###0.2547###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38274": { + "content": "###0.2549###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38275": { + "content": "###0.2551###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38276": { + "content": "###0.2553###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38277": { + "content": "###0.2555###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38278": { + "content": "###0.2557###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38279": { + "content": "###0.2559###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38280": { + "content": "###0.2561###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38281": { + "content": "###0.2563###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38282": { + "content": "###0.2565###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38283": { + "content": "###0.2567###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38284": { + "content": "###0.2569###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38285": { + "content": "###0.2571###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38286": { + "content": "###0.2573###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38287": { + "content": "###0.2575###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38288": { + "content": "###0.2577###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38289": { + "content": "###0.2579###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38290": { + "content": "###0.2581###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38291": { + "content": "###0.2583###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38292": { + "content": "###0.2585###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38293": { + "content": "###0.2587###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38294": { + "content": "###0.2589###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38295": { + "content": "###0.2591###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38296": { + "content": "###0.2593###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38297": { + "content": "###0.2595###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38298": { + "content": "###0.2597###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38299": { + "content": "###0.2599###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38300": { + "content": "###0.2601###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38301": { + "content": "###0.2603###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38302": { + "content": "###0.2605###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38303": { + "content": "###0.2607###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38304": { + "content": "###0.2609###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38305": { + "content": "###0.2611###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38306": { + "content": "###0.2613###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38307": { + "content": "###0.2615###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38308": { + "content": "###0.2617###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38309": { + "content": "###0.2619###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38310": { + "content": "###0.2621###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38311": { + "content": "###0.2623###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38312": { + "content": "###0.2625###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38313": { + "content": "###0.2627###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38314": { + "content": "###0.2629###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38315": { + "content": "###0.2631###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38316": { + "content": "###0.2633###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38317": { + "content": "###0.2635###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38318": { + "content": "###0.2637###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38319": { + "content": "###0.2639###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38320": { + "content": "###0.2641###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38321": { + "content": "###0.2643###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38322": { + "content": "###0.2645###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38323": { + "content": "###0.2647###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38324": { + "content": "###0.2649###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38325": { + "content": "###0.2651###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38326": { + "content": "###0.2653###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38327": { + "content": "###0.2655###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38328": { + "content": "###0.2657###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38329": { + "content": "###0.2659###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38330": { + "content": "###0.2661###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38331": { + "content": "###0.2663###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38332": { + "content": "###0.2665###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38333": { + "content": "###0.2667###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38334": { + "content": "###0.2669###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38335": { + "content": "###0.2671###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38336": { + "content": "###0.2673###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38337": { + "content": "###0.2675###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38338": { + "content": "###0.2677###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38339": { + "content": "###0.2679###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38340": { + "content": "###0.2681###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38341": { + "content": "###0.2683###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38342": { + "content": "###0.2685###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38343": { + "content": "###0.2687###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38344": { + "content": "###0.2689###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38345": { + "content": "###0.2691###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38346": { + "content": "###0.2693###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38347": { + "content": "###0.2695###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38348": { + "content": "###0.2697###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38349": { + "content": "###0.2699###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38350": { + "content": "###0.2701###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38351": { + "content": "###0.2703###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38352": { + "content": "###0.2705###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38353": { + "content": "###0.2707###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38354": { + "content": "###0.2709###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38355": { + "content": "###0.2711###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38356": { + "content": "###0.2713###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38357": { + "content": "###0.2715###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38358": { + "content": "###0.2717###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38359": { + "content": "###0.2719###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38360": { + "content": "###0.2721###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38361": { + "content": "###0.2723###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38362": { + "content": "###0.2725###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38363": { + "content": "###0.2727###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38364": { + "content": "###0.2729###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38365": { + "content": "###0.2731###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38366": { + "content": "###0.2733###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38367": { + "content": "###0.2735###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38368": { + "content": "###0.2737###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38369": { + "content": "###0.2739###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38370": { + "content": "###0.2741###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38371": { + "content": "###0.2743###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38372": { + "content": "###0.2745###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38373": { + "content": "###0.2747###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38374": { + "content": "###0.2749###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38375": { + "content": "###0.2751###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38376": { + "content": "###0.2753###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38377": { + "content": "###0.2755###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38378": { + "content": "###0.2757###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38379": { + "content": "###0.2759###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38380": { + "content": "###0.2761###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38381": { + "content": "###0.2763###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38382": { + "content": "###0.2765###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38383": { + "content": "###0.2767###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38384": { + "content": "###0.2769###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38385": { + "content": "###0.2771###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38386": { + "content": "###0.2773###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38387": { + "content": "###0.2775###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38388": { + "content": "###0.2777###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38389": { + "content": "###0.2779###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38390": { + "content": "###0.2781###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38391": { + "content": "###0.2783###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38392": { + "content": "###0.2785###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38393": { + "content": "###0.2787###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38394": { + "content": "###0.2789###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38395": { + "content": "###0.2791###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38396": { + "content": "###0.2793###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38397": { + "content": "###0.2795###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38398": { + "content": "###0.2797###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38399": { + "content": "###0.2799###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38400": { + "content": "###0.2801###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38401": { + "content": "###0.2803###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38402": { + "content": "###0.2805###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38403": { + "content": "###0.2807###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38404": { + "content": "###0.2809###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38405": { + "content": "###0.2811###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38406": { + "content": "###0.2813###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38407": { + "content": "###0.2815###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38408": { + "content": "###0.2817###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38409": { + "content": "###0.2819###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38410": { + "content": "###0.2821###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38411": { + "content": "###0.2823###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38412": { + "content": "###0.2825###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38413": { + "content": "###0.2827###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38414": { + "content": "###0.2829###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38415": { + "content": "###0.2831###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38416": { + "content": "###0.2833###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38417": { + "content": "###0.2835###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38418": { + "content": "###0.2837###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38419": { + "content": "###0.2839###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38420": { + "content": "###0.2841###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38421": { + "content": "###0.2843###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38422": { + "content": "###0.2845###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38423": { + "content": "###0.2847###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38424": { + "content": "###0.2849###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38425": { + "content": "###0.2851###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38426": { + "content": "###0.2853###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38427": { + "content": "###0.2855###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38428": { + "content": "###0.2857###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38429": { + "content": "###0.2859###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38430": { + "content": "###0.2861###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38431": { + "content": "###0.2863###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38432": { + "content": "###0.2865###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38433": { + "content": "###0.2867###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38434": { + "content": "###0.2869###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38435": { + "content": "###0.2871###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38436": { + "content": "###0.2873###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38437": { + "content": "###0.2875###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38438": { + "content": "###0.2877###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38439": { + "content": "###0.2879###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38440": { + "content": "###0.2881###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38441": { + "content": "###0.2883###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38442": { + "content": "###0.2885###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38443": { + "content": "###0.2887###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38444": { + "content": "###0.2889###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38445": { + "content": "###0.2891###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38446": { + "content": "###0.2893###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38447": { + "content": "###0.2895###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38448": { + "content": "###0.2897###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38449": { + "content": "###0.2899###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38450": { + "content": "###0.2901###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38451": { + "content": "###0.2903###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38452": { + "content": "###0.2905###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38453": { + "content": "###0.2907###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38454": { + "content": "###0.2909###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38455": { + "content": "###0.2911###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38456": { + "content": "###0.2913###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38457": { + "content": "###0.2915###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38458": { + "content": "###0.2917###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38459": { + "content": "###0.2919###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38460": { + "content": "###0.2921###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38461": { + "content": "###0.2923###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38462": { + "content": "###0.2925###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38463": { + "content": "###0.2927###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38464": { + "content": "###0.2929###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38465": { + "content": "###0.2931###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38466": { + "content": "###0.2933###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38467": { + "content": "###0.2935###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38468": { + "content": "###0.2937###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38469": { + "content": "###0.2939###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38470": { + "content": "###0.2941###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38471": { + "content": "###0.2943###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38472": { + "content": "###0.2945###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38473": { + "content": "###0.2947###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38474": { + "content": "###0.2949###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38475": { + "content": "###0.2951###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38476": { + "content": "###0.2953###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38477": { + "content": "###0.2955###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38478": { + "content": "###0.2957###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38479": { + "content": "###0.2959###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38480": { + "content": "###0.2961###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38481": { + "content": "###0.2963###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38482": { + "content": "###0.2965###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38483": { + "content": "###0.2967###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38484": { + "content": "###0.2969###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38485": { + "content": "###0.2971###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38486": { + "content": "###0.2973###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38487": { + "content": "###0.2975###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38488": { + "content": "###0.2977###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38489": { + "content": "###0.2979###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38490": { + "content": "###0.2981###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38491": { + "content": "###0.2983###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38492": { + "content": "###0.2985###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38493": { + "content": "###0.2987###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38494": { + "content": "###0.2989###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38495": { + "content": "###0.2991###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38496": { + "content": "###0.2993###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38497": { + "content": "###0.2995###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38498": { + "content": "###0.2997###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38499": { + "content": "###0.2999###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38500": { + "content": "###0.3001###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38501": { + "content": "###0.3003###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38502": { + "content": "###0.3005###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38503": { + "content": "###0.3007###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38504": { + "content": "###0.3009###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38505": { + "content": "###0.3011###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38506": { + "content": "###0.3013###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38507": { + "content": "###0.3015###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38508": { + "content": "###0.3017###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38509": { + "content": "###0.3019###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38510": { + "content": "###0.3021###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38511": { + "content": "###0.3023###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38512": { + "content": "###0.3025###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38513": { + "content": "###0.3027###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38514": { + "content": "###0.3029###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38515": { + "content": "###0.3031###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38516": { + "content": "###0.3033###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38517": { + "content": "###0.3035###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38518": { + "content": "###0.3037###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38519": { + "content": "###0.3039###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38520": { + "content": "###0.3041###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38521": { + "content": "###0.3043###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38522": { + "content": "###0.3045###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38523": { + "content": "###0.3047###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38524": { + "content": "###0.3049###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38525": { + "content": "###0.3051###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38526": { + "content": "###0.3053###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38527": { + "content": "###0.3055###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38528": { + "content": "###0.3057###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38529": { + "content": "###0.3059###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38530": { + "content": "###0.3061###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38531": { + "content": "###0.3063###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38532": { + "content": "###0.3065###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38533": { + "content": "###0.3067###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38534": { + "content": "###0.3069###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38535": { + "content": "###0.3071###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38536": { + "content": "###0.3073###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38537": { + "content": "###0.3075###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38538": { + "content": "###0.3077###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38539": { + "content": "###0.3079###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38540": { + "content": "###0.3081###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38541": { + "content": "###0.3083###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38542": { + "content": "###0.3085###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38543": { + "content": "###0.3087###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38544": { + "content": "###0.3089###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38545": { + "content": "###0.3091###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38546": { + "content": "###0.3093###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38547": { + "content": "###0.3095###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38548": { + "content": "###0.3097###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38549": { + "content": "###0.3099###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38550": { + "content": "###0.3101###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38551": { + "content": "###0.3103###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38552": { + "content": "###0.3105###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38553": { + "content": "###0.3107###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38554": { + "content": "###0.3109###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38555": { + "content": "###0.3111###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38556": { + "content": "###0.3113###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38557": { + "content": "###0.3115###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38558": { + "content": "###0.3117###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38559": { + "content": "###0.3119###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38560": { + "content": "###0.3121###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38561": { + "content": "###0.3123###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38562": { + "content": "###0.3125###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38563": { + "content": "###0.3127###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38564": { + "content": "###0.3129###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38565": { + "content": "###0.3131###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38566": { + "content": "###0.3133###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38567": { + "content": "###0.3135###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38568": { + "content": "###0.3137###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38569": { + "content": "###0.3139###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38570": { + "content": "###0.3141###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38571": { + "content": "###0.3143###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38572": { + "content": "###0.3145###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38573": { + "content": "###0.3147###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38574": { + "content": "###0.3149###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38575": { + "content": "###0.3151###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38576": { + "content": "###0.3153###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38577": { + "content": "###0.3155###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38578": { + "content": "###0.3157###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38579": { + "content": "###0.3159###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38580": { + "content": "###0.3161###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38581": { + "content": "###0.3163###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38582": { + "content": "###0.3165###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38583": { + "content": "###0.3167###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38584": { + "content": "###0.3169###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38585": { + "content": "###0.3171###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38586": { + "content": "###0.3173###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38587": { + "content": "###0.3175###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38588": { + "content": "###0.3177###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38589": { + "content": "###0.3179###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38590": { + "content": "###0.3181###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38591": { + "content": "###0.3183###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38592": { + "content": "###0.3185###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38593": { + "content": "###0.3187###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38594": { + "content": "###0.3189###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38595": { + "content": "###0.3191###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38596": { + "content": "###0.3193###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38597": { + "content": "###0.3195###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38598": { + "content": "###0.3197###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38599": { + "content": "###0.3199###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38600": { + "content": "###0.3201###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38601": { + "content": "###0.3203###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38602": { + "content": "###0.3205###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38603": { + "content": "###0.3207###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38604": { + "content": "###0.3209###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38605": { + "content": "###0.3211###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38606": { + "content": "###0.3213###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38607": { + "content": "###0.3215###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38608": { + "content": "###0.3217###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38609": { + "content": "###0.3219###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38610": { + "content": "###0.3221###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38611": { + "content": "###0.3223###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38612": { + "content": "###0.3225###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38613": { + "content": "###0.3227###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38614": { + "content": "###0.3229###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38615": { + "content": "###0.3231###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38616": { + "content": "###0.3233###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38617": { + "content": "###0.3235###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38618": { + "content": "###0.3237###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38619": { + "content": "###0.3239###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38620": { + "content": "###0.3241###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38621": { + "content": "###0.3243###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38622": { + "content": "###0.3245###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38623": { + "content": "###0.3247###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38624": { + "content": "###0.3249###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38625": { + "content": "###0.3251###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38626": { + "content": "###0.3253###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38627": { + "content": "###0.3255###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38628": { + "content": "###0.3257###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38629": { + "content": "###0.3259###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38630": { + "content": "###0.3261###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38631": { + "content": "###0.3263###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38632": { + "content": "###0.3265###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38633": { + "content": "###0.3267###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38634": { + "content": "###0.3269###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38635": { + "content": "###0.3271###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38636": { + "content": "###0.3273###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38637": { + "content": "###0.3275###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38638": { + "content": "###0.3277###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38639": { + "content": "###0.3279###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38640": { + "content": "###0.3281###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38641": { + "content": "###0.3283###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38642": { + "content": "###0.3285###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38643": { + "content": "###0.3287###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38644": { + "content": "###0.3289###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38645": { + "content": "###0.3291###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38646": { + "content": "###0.3293###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38647": { + "content": "###0.3295###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38648": { + "content": "###0.3297###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38649": { + "content": "###0.3299###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38650": { + "content": "###0.3301###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38651": { + "content": "###0.3303###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38652": { + "content": "###0.3305###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38653": { + "content": "###0.3307###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38654": { + "content": "###0.3309###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38655": { + "content": "###0.3311###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38656": { + "content": "###0.3313###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38657": { + "content": "###0.3315###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38658": { + "content": "###0.3317###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38659": { + "content": "###0.3319###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38660": { + "content": "###0.3321###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38661": { + "content": "###0.3323###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38662": { + "content": "###0.3325###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38663": { + "content": "###0.3327###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38664": { + "content": "###0.3329###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38665": { + "content": "###0.3331###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38666": { + "content": "###0.3333###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38667": { + "content": "###0.3335###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38668": { + "content": "###0.3337###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38669": { + "content": "###0.3339###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38670": { + "content": "###0.3341###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38671": { + "content": "###0.3343###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38672": { + "content": "###0.3345###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38673": { + "content": "###0.3347###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38674": { + "content": "###0.3349###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38675": { + "content": "###0.3351###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38676": { + "content": "###0.3353###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38677": { + "content": "###0.3355###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38678": { + "content": "###0.3357###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38679": { + "content": "###0.3359###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38680": { + "content": "###0.3361###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38681": { + "content": "###0.3363###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38682": { + "content": "###0.3365###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38683": { + "content": "###0.3367###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38684": { + "content": "###0.3369###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38685": { + "content": "###0.3371###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38686": { + "content": "###0.3373###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38687": { + "content": "###0.3375###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38688": { + "content": "###0.3377###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38689": { + "content": "###0.3379###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38690": { + "content": "###0.3381###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38691": { + "content": "###0.3383###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38692": { + "content": "###0.3385###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38693": { + "content": "###0.3387###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38694": { + "content": "###0.3389###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38695": { + "content": "###0.3391###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38696": { + "content": "###0.3393###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38697": { + "content": "###0.3395###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38698": { + "content": "###0.3397###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38699": { + "content": "###0.3399###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38700": { + "content": "###0.3401###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38701": { + "content": "###0.3403###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38702": { + "content": "###0.3405###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38703": { + "content": "###0.3407###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38704": { + "content": "###0.3409###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38705": { + "content": "###0.3411###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38706": { + "content": "###0.3413###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38707": { + "content": "###0.3415###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38708": { + "content": "###0.3417###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38709": { + "content": "###0.3419###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38710": { + "content": "###0.3421###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38711": { + "content": "###0.3423###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38712": { + "content": "###0.3425###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38713": { + "content": "###0.3427###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38714": { + "content": "###0.3429###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38715": { + "content": "###0.3431###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38716": { + "content": "###0.3433###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38717": { + "content": "###0.3435###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38718": { + "content": "###0.3437###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38719": { + "content": "###0.3439###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38720": { + "content": "###0.3441###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38721": { + "content": "###0.3443###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38722": { + "content": "###0.3445###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38723": { + "content": "###0.3447###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38724": { + "content": "###0.3449###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38725": { + "content": "###0.3451###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38726": { + "content": "###0.3453###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38727": { + "content": "###0.3455###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38728": { + "content": "###0.3457###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38729": { + "content": "###0.3459###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38730": { + "content": "###0.3461###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38731": { + "content": "###0.3463###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38732": { + "content": "###0.3465###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38733": { + "content": "###0.3467###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38734": { + "content": "###0.3469###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38735": { + "content": "###0.3471###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38736": { + "content": "###0.3473###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38737": { + "content": "###0.3475###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38738": { + "content": "###0.3477###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38739": { + "content": "###0.3479###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38740": { + "content": "###0.3481###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38741": { + "content": "###0.3483###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38742": { + "content": "###0.3485###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38743": { + "content": "###0.3487###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38744": { + "content": "###0.3489###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38745": { + "content": "###0.3491###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38746": { + "content": "###0.3493###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38747": { + "content": "###0.3495###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38748": { + "content": "###0.3497###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38749": { + "content": "###0.3499###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38750": { + "content": "###0.3501###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38751": { + "content": "###0.3503###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38752": { + "content": "###0.3505###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38753": { + "content": "###0.3507###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38754": { + "content": "###0.3509###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38755": { + "content": "###0.3511###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38756": { + "content": "###0.3513###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38757": { + "content": "###0.3515###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38758": { + "content": "###0.3517###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38759": { + "content": "###0.3519###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38760": { + "content": "###0.3521###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38761": { + "content": "###0.3523###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38762": { + "content": "###0.3525###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38763": { + "content": "###0.3527###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38764": { + "content": "###0.3529###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38765": { + "content": "###0.3531###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38766": { + "content": "###0.3533###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38767": { + "content": "###0.3535###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38768": { + "content": "###0.3537###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38769": { + "content": "###0.3539###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38770": { + "content": "###0.3541###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38771": { + "content": "###0.3543###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38772": { + "content": "###0.3545###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38773": { + "content": "###0.3547###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38774": { + "content": "###0.3549###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38775": { + "content": "###0.3551###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38776": { + "content": "###0.3553###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38777": { + "content": "###0.3555###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38778": { + "content": "###0.3557###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38779": { + "content": "###0.3559###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38780": { + "content": "###0.3561###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38781": { + "content": "###0.3563###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38782": { + "content": "###0.3565###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38783": { + "content": "###0.3567###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38784": { + "content": "###0.3569###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38785": { + "content": "###0.3571###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38786": { + "content": "###0.3573###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38787": { + "content": "###0.3575###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38788": { + "content": "###0.3577###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38789": { + "content": "###0.3579###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38790": { + "content": "###0.3581###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38791": { + "content": "###0.3583###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38792": { + "content": "###0.3585###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38793": { + "content": "###0.3587###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38794": { + "content": "###0.3589###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38795": { + "content": "###0.3591###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38796": { + "content": "###0.3593###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38797": { + "content": "###0.3595###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38798": { + "content": "###0.3597###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38799": { + "content": "###0.3599###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38800": { + "content": "###0.3601###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38801": { + "content": "###0.3603###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38802": { + "content": "###0.3605###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38803": { + "content": "###0.3607###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38804": { + "content": "###0.3609###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38805": { + "content": "###0.3611###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38806": { + "content": "###0.3613###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38807": { + "content": "###0.3615###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38808": { + "content": "###0.3617###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38809": { + "content": "###0.3619###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38810": { + "content": "###0.3621###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38811": { + "content": "###0.3623###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38812": { + "content": "###0.3625###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38813": { + "content": "###0.3627###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38814": { + "content": "###0.3629###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38815": { + "content": "###0.3631###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38816": { + "content": "###0.3633###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38817": { + "content": "###0.3635###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38818": { + "content": "###0.3637###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38819": { + "content": "###0.3639###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38820": { + "content": "###0.3641###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38821": { + "content": "###0.3643###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38822": { + "content": "###0.3645###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38823": { + "content": "###0.3647###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38824": { + "content": "###0.3649###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38825": { + "content": "###0.3651###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38826": { + "content": "###0.3653###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38827": { + "content": "###0.3655###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38828": { + "content": "###0.3657###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38829": { + "content": "###0.3659###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38830": { + "content": "###0.3661###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38831": { + "content": "###0.3663###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38832": { + "content": "###0.3665###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38833": { + "content": "###0.3667###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38834": { + "content": "###0.3669###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38835": { + "content": "###0.3671###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38836": { + "content": "###0.3673###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38837": { + "content": "###0.3675###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38838": { + "content": "###0.3677###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38839": { + "content": "###0.3679###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38840": { + "content": "###0.3681###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38841": { + "content": "###0.3683###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38842": { + "content": "###0.3685###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38843": { + "content": "###0.3687###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38844": { + "content": "###0.3689###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38845": { + "content": "###0.3691###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38846": { + "content": "###0.3693###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38847": { + "content": "###0.3695###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38848": { + "content": "###0.3697###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38849": { + "content": "###0.3699###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38850": { + "content": "###0.3701###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38851": { + "content": "###0.3703###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38852": { + "content": "###0.3705###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38853": { + "content": "###0.3707###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38854": { + "content": "###0.3709###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38855": { + "content": "###0.3711###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38856": { + "content": "###0.3713###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38857": { + "content": "###0.3715###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38858": { + "content": "###0.3717###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38859": { + "content": "###0.3719###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38860": { + "content": "###0.3721###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38861": { + "content": "###0.3723###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38862": { + "content": "###0.3725###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38863": { + "content": "###0.3727###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38864": { + "content": "###0.3729###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38865": { + "content": "###0.3731###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38866": { + "content": "###0.3733###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38867": { + "content": "###0.3735###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38868": { + "content": "###0.3737###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38869": { + "content": "###0.3739###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38870": { + "content": "###0.3741###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38871": { + "content": "###0.3743###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38872": { + "content": "###0.3745###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38873": { + "content": "###0.3747###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38874": { + "content": "###0.3749###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38875": { + "content": "###0.3751###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38876": { + "content": "###0.3753###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38877": { + "content": "###0.3755###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38878": { + "content": "###0.3757###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38879": { + "content": "###0.3759###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38880": { + "content": "###0.3761###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38881": { + "content": "###0.3763###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38882": { + "content": "###0.3765###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38883": { + "content": "###0.3767###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38884": { + "content": "###0.3769###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38885": { + "content": "###0.3771###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38886": { + "content": "###0.3773###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38887": { + "content": "###0.3775###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38888": { + "content": "###0.3777###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38889": { + "content": "###0.3779###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38890": { + "content": "###0.3781###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38891": { + "content": "###0.3783###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38892": { + "content": "###0.3785###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38893": { + "content": "###0.3787###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38894": { + "content": "###0.3789###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38895": { + "content": "###0.3791###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38896": { + "content": "###0.3793###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38897": { + "content": "###0.3795###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38898": { + "content": "###0.3797###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38899": { + "content": "###0.3799###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38900": { + "content": "###0.3801###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38901": { + "content": "###0.3803###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38902": { + "content": "###0.3805###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38903": { + "content": "###0.3807###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38904": { + "content": "###0.3809###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38905": { + "content": "###0.3811###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38906": { + "content": "###0.3813###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38907": { + "content": "###0.3815###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38908": { + "content": "###0.3817###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38909": { + "content": "###0.3819###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38910": { + "content": "###0.3821###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38911": { + "content": "###0.3823###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38912": { + "content": "###0.3825###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38913": { + "content": "###0.3827###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38914": { + "content": "###0.3829###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38915": { + "content": "###0.3831###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38916": { + "content": "###0.3833###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38917": { + "content": "###0.3835###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38918": { + "content": "###0.3837###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38919": { + "content": "###0.3839###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38920": { + "content": "###0.3841###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38921": { + "content": "###0.3843###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38922": { + "content": "###0.3845###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38923": { + "content": "###0.3847###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38924": { + "content": "###0.3849###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38925": { + "content": "###0.3851###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38926": { + "content": "###0.3853###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38927": { + "content": "###0.3855###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38928": { + "content": "###0.3857###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38929": { + "content": "###0.3859###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38930": { + "content": "###0.3861###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38931": { + "content": "###0.3863###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38932": { + "content": "###0.3865###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38933": { + "content": "###0.3867###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38934": { + "content": "###0.3869###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38935": { + "content": "###0.3871###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38936": { + "content": "###0.3873###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38937": { + "content": "###0.3875###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38938": { + "content": "###0.3877###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38939": { + "content": "###0.3879###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38940": { + "content": "###0.3881###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38941": { + "content": "###0.3883###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38942": { + "content": "###0.3885###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38943": { + "content": "###0.3887###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38944": { + "content": "###0.3889###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38945": { + "content": "###0.3891###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38946": { + "content": "###0.3893###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38947": { + "content": "###0.3895###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38948": { + "content": "###0.3897###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38949": { + "content": "###0.3899###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38950": { + "content": "###0.3901###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38951": { + "content": "###0.3903###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38952": { + "content": "###0.3905###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38953": { + "content": "###0.3907###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38954": { + "content": "###0.3909###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38955": { + "content": "###0.3911###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38956": { + "content": "###0.3913###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38957": { + "content": "###0.3915###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38958": { + "content": "###0.3917###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38959": { + "content": "###0.3919###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38960": { + "content": "###0.3921###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38961": { + "content": "###0.3923###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38962": { + "content": "###0.3925###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38963": { + "content": "###0.3927###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38964": { + "content": "###0.3929###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38965": { + "content": "###0.3931###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38966": { + "content": "###0.3933###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38967": { + "content": "###0.3935###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38968": { + "content": "###0.3937###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38969": { + "content": "###0.3939###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38970": { + "content": "###0.3941###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38971": { + "content": "###0.3943###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38972": { + "content": "###0.3945###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38973": { + "content": "###0.3947###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38974": { + "content": "###0.3949###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38975": { + "content": "###0.3951###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38976": { + "content": "###0.3953###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38977": { + "content": "###0.3955###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38978": { + "content": "###0.3957###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38979": { + "content": "###0.3959###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38980": { + "content": "###0.3961###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38981": { + "content": "###0.3963###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38982": { + "content": "###0.3965###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38983": { + "content": "###0.3967###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38984": { + "content": "###0.3969###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38985": { + "content": "###0.3971###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38986": { + "content": "###0.3973###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38987": { + "content": "###0.3975###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38988": { + "content": "###0.3977###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38989": { + "content": "###0.3979###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38990": { + "content": "###0.3981###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38991": { + "content": "###0.3983###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38992": { + "content": "###0.3985###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38993": { + "content": "###0.3987###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38994": { + "content": "###0.3989###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38995": { + "content": "###0.3991###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38996": { + "content": "###0.3993###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38997": { + "content": "###0.3995###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38998": { + "content": "###0.3997###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "38999": { + "content": "###0.3999###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39000": { + "content": "###0.4001###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39001": { + "content": "###0.4003###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39002": { + "content": "###0.4005###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39003": { + "content": "###0.4007###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39004": { + "content": "###0.4009###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39005": { + "content": "###0.4011###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39006": { + "content": "###0.4013###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39007": { + "content": "###0.4015###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39008": { + "content": "###0.4017###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39009": { + "content": "###0.4019###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39010": { + "content": "###0.4021###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39011": { + "content": "###0.4023###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39012": { + "content": "###0.4025###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39013": { + "content": "###0.4027###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39014": { + "content": "###0.4029###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39015": { + "content": "###0.4031###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39016": { + "content": "###0.4033###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39017": { + "content": "###0.4035###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39018": { + "content": "###0.4037###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39019": { + "content": "###0.4039###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39020": { + "content": "###0.4041###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39021": { + "content": "###0.4043###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39022": { + "content": "###0.4045###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39023": { + "content": "###0.4047###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39024": { + "content": "###0.4049###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39025": { + "content": "###0.4051###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39026": { + "content": "###0.4053###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39027": { + "content": "###0.4055###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39028": { + "content": "###0.4057###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39029": { + "content": "###0.4059###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39030": { + "content": "###0.4061###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39031": { + "content": "###0.4063###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39032": { + "content": "###0.4065###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39033": { + "content": "###0.4067###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39034": { + "content": "###0.4069###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39035": { + "content": "###0.4071###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39036": { + "content": "###0.4073###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39037": { + "content": "###0.4075###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39038": { + "content": "###0.4077###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39039": { + "content": "###0.4079###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39040": { + "content": "###0.4081###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39041": { + "content": "###0.4083###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39042": { + "content": "###0.4085###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39043": { + "content": "###0.4087###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39044": { + "content": "###0.4089###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39045": { + "content": "###0.4091###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39046": { + "content": "###0.4093###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39047": { + "content": "###0.4095###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39048": { + "content": "###0.4097###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39049": { + "content": "###0.4099###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39050": { + "content": "###0.4101###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39051": { + "content": "###0.4103###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39052": { + "content": "###0.4105###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39053": { + "content": "###0.4107###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39054": { + "content": "###0.4109###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39055": { + "content": "###0.4111###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39056": { + "content": "###0.4113###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39057": { + "content": "###0.4115###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39058": { + "content": "###0.4117###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39059": { + "content": "###0.4119###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39060": { + "content": "###0.4121###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39061": { + "content": "###0.4123###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39062": { + "content": "###0.4125###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39063": { + "content": "###0.4127###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39064": { + "content": "###0.4129###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39065": { + "content": "###0.4131###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39066": { + "content": "###0.4133###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39067": { + "content": "###0.4135###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39068": { + "content": "###0.4137###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39069": { + "content": "###0.4139###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39070": { + "content": "###0.4141###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39071": { + "content": "###0.4143###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39072": { + "content": "###0.4145###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39073": { + "content": "###0.4147###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39074": { + "content": "###0.4149###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39075": { + "content": "###0.4151###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39076": { + "content": "###0.4153###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39077": { + "content": "###0.4155###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39078": { + "content": "###0.4157###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39079": { + "content": "###0.4159###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39080": { + "content": "###0.4161###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39081": { + "content": "###0.4163###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39082": { + "content": "###0.4165###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39083": { + "content": "###0.4167###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39084": { + "content": "###0.4169###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39085": { + "content": "###0.4171###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39086": { + "content": "###0.4173###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39087": { + "content": "###0.4175###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39088": { + "content": "###0.4177###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39089": { + "content": "###0.4179###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39090": { + "content": "###0.4181###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39091": { + "content": "###0.4183###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39092": { + "content": "###0.4185###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39093": { + "content": "###0.4187###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39094": { + "content": "###0.4189###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39095": { + "content": "###0.4191###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39096": { + "content": "###0.4193###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39097": { + "content": "###0.4195###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39098": { + "content": "###0.4197###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39099": { + "content": "###0.4199###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39100": { + "content": "###0.4201###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39101": { + "content": "###0.4203###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39102": { + "content": "###0.4205###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39103": { + "content": "###0.4207###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39104": { + "content": "###0.4209###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39105": { + "content": "###0.4211###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39106": { + "content": "###0.4213###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39107": { + "content": "###0.4215###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39108": { + "content": "###0.4217###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39109": { + "content": "###0.4219###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39110": { + "content": "###0.4221###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39111": { + "content": "###0.4223###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39112": { + "content": "###0.4225###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39113": { + "content": "###0.4227###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39114": { + "content": "###0.4229###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39115": { + "content": "###0.4231###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39116": { + "content": "###0.4233###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39117": { + "content": "###0.4235###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39118": { + "content": "###0.4237###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39119": { + "content": "###0.4239###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39120": { + "content": "###0.4241###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39121": { + "content": "###0.4243###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39122": { + "content": "###0.4245###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39123": { + "content": "###0.4247###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39124": { + "content": "###0.4249###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39125": { + "content": "###0.4251###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39126": { + "content": "###0.4253###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39127": { + "content": "###0.4255###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39128": { + "content": "###0.4257###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39129": { + "content": "###0.4259###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39130": { + "content": "###0.4261###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39131": { + "content": "###0.4263###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39132": { + "content": "###0.4265###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39133": { + "content": "###0.4267###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39134": { + "content": "###0.4269###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39135": { + "content": "###0.4271###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39136": { + "content": "###0.4273###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39137": { + "content": "###0.4275###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39138": { + "content": "###0.4277###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39139": { + "content": "###0.4279###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39140": { + "content": "###0.4281###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39141": { + "content": "###0.4283###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39142": { + "content": "###0.4285###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39143": { + "content": "###0.4287###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39144": { + "content": "###0.4289###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39145": { + "content": "###0.4291###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39146": { + "content": "###0.4293###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39147": { + "content": "###0.4295###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39148": { + "content": "###0.4297###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39149": { + "content": "###0.4299###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39150": { + "content": "###0.4301###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39151": { + "content": "###0.4303###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39152": { + "content": "###0.4305###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39153": { + "content": "###0.4307###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39154": { + "content": "###0.4309###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39155": { + "content": "###0.4311###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39156": { + "content": "###0.4313###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39157": { + "content": "###0.4315###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39158": { + "content": "###0.4317###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39159": { + "content": "###0.4319###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39160": { + "content": "###0.4321###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39161": { + "content": "###0.4323###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39162": { + "content": "###0.4325###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39163": { + "content": "###0.4327###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39164": { + "content": "###0.4329###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39165": { + "content": "###0.4331###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39166": { + "content": "###0.4333###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39167": { + "content": "###0.4335###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39168": { + "content": "###0.4337###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39169": { + "content": "###0.4339###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39170": { + "content": "###0.4341###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39171": { + "content": "###0.4343###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39172": { + "content": "###0.4345###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39173": { + "content": "###0.4347###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39174": { + "content": "###0.4349###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39175": { + "content": "###0.4351###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39176": { + "content": "###0.4353###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39177": { + "content": "###0.4355###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39178": { + "content": "###0.4357###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39179": { + "content": "###0.4359###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39180": { + "content": "###0.4361###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39181": { + "content": "###0.4363###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39182": { + "content": "###0.4365###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39183": { + "content": "###0.4367###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39184": { + "content": "###0.4369###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39185": { + "content": "###0.4371###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39186": { + "content": "###0.4373###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39187": { + "content": "###0.4375###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39188": { + "content": "###0.4377###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39189": { + "content": "###0.4379###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39190": { + "content": "###0.4381###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39191": { + "content": "###0.4383###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39192": { + "content": "###0.4385###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39193": { + "content": "###0.4387###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39194": { + "content": "###0.4389###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39195": { + "content": "###0.4391###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39196": { + "content": "###0.4393###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39197": { + "content": "###0.4395###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39198": { + "content": "###0.4397###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39199": { + "content": "###0.4399###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39200": { + "content": "###0.4401###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39201": { + "content": "###0.4403###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39202": { + "content": "###0.4405###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39203": { + "content": "###0.4407###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39204": { + "content": "###0.4409###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39205": { + "content": "###0.4411###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39206": { + "content": "###0.4413###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39207": { + "content": "###0.4415###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39208": { + "content": "###0.4417###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39209": { + "content": "###0.4419###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39210": { + "content": "###0.4421###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39211": { + "content": "###0.4423###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39212": { + "content": "###0.4425###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39213": { + "content": "###0.4427###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39214": { + "content": "###0.4429###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39215": { + "content": "###0.4431###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39216": { + "content": "###0.4433###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39217": { + "content": "###0.4435###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39218": { + "content": "###0.4437###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39219": { + "content": "###0.4439###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39220": { + "content": "###0.4441###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39221": { + "content": "###0.4443###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39222": { + "content": "###0.4445###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39223": { + "content": "###0.4447###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39224": { + "content": "###0.4449###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39225": { + "content": "###0.4451###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39226": { + "content": "###0.4453###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39227": { + "content": "###0.4455###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39228": { + "content": "###0.4457###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39229": { + "content": "###0.4459###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39230": { + "content": "###0.4461###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39231": { + "content": "###0.4463###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39232": { + "content": "###0.4465###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39233": { + "content": "###0.4467###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39234": { + "content": "###0.4469###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39235": { + "content": "###0.4471###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39236": { + "content": "###0.4473###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39237": { + "content": "###0.4475###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39238": { + "content": "###0.4477###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39239": { + "content": "###0.4479###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39240": { + "content": "###0.4481###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39241": { + "content": "###0.4483###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39242": { + "content": "###0.4485###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39243": { + "content": "###0.4487###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39244": { + "content": "###0.4489###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39245": { + "content": "###0.4491###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39246": { + "content": "###0.4493###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39247": { + "content": "###0.4495###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39248": { + "content": "###0.4497###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39249": { + "content": "###0.4499###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39250": { + "content": "###0.4501###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39251": { + "content": "###0.4503###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39252": { + "content": "###0.4505###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39253": { + "content": "###0.4507###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39254": { + "content": "###0.4509###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39255": { + "content": "###0.4511###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39256": { + "content": "###0.4513###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39257": { + "content": "###0.4515###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39258": { + "content": "###0.4517###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39259": { + "content": "###0.4519###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39260": { + "content": "###0.4521###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39261": { + "content": "###0.4523###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39262": { + "content": "###0.4525###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39263": { + "content": "###0.4527###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39264": { + "content": "###0.4529###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39265": { + "content": "###0.4531###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39266": { + "content": "###0.4533###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39267": { + "content": "###0.4535###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39268": { + "content": "###0.4537###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39269": { + "content": "###0.4539###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39270": { + "content": "###0.4541###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39271": { + "content": "###0.4543###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39272": { + "content": "###0.4545###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39273": { + "content": "###0.4547###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39274": { + "content": "###0.4549###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39275": { + "content": "###0.4551###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39276": { + "content": "###0.4553###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39277": { + "content": "###0.4555###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39278": { + "content": "###0.4557###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39279": { + "content": "###0.4559###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39280": { + "content": "###0.4561###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39281": { + "content": "###0.4563###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39282": { + "content": "###0.4565###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39283": { + "content": "###0.4567###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39284": { + "content": "###0.4569###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39285": { + "content": "###0.4571###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39286": { + "content": "###0.4573###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39287": { + "content": "###0.4575###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39288": { + "content": "###0.4577###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39289": { + "content": "###0.4579###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39290": { + "content": "###0.4581###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39291": { + "content": "###0.4583###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39292": { + "content": "###0.4585###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39293": { + "content": "###0.4587###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39294": { + "content": "###0.4589###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39295": { + "content": "###0.4591###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39296": { + "content": "###0.4593###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39297": { + "content": "###0.4595###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39298": { + "content": "###0.4597###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39299": { + "content": "###0.4599###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39300": { + "content": "###0.4601###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39301": { + "content": "###0.4603###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39302": { + "content": "###0.4605###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39303": { + "content": "###0.4607###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39304": { + "content": "###0.4609###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39305": { + "content": "###0.4611###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39306": { + "content": "###0.4613###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39307": { + "content": "###0.4615###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39308": { + "content": "###0.4617###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39309": { + "content": "###0.4619###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39310": { + "content": "###0.4621###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39311": { + "content": "###0.4623###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39312": { + "content": "###0.4625###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39313": { + "content": "###0.4627###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39314": { + "content": "###0.4629###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39315": { + "content": "###0.4631###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39316": { + "content": "###0.4633###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39317": { + "content": "###0.4635###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39318": { + "content": "###0.4637###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39319": { + "content": "###0.4639###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39320": { + "content": "###0.4641###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39321": { + "content": "###0.4643###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39322": { + "content": "###0.4645###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39323": { + "content": "###0.4647###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39324": { + "content": "###0.4649###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39325": { + "content": "###0.4651###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39326": { + "content": "###0.4653###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39327": { + "content": "###0.4655###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39328": { + "content": "###0.4657###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39329": { + "content": "###0.4659###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39330": { + "content": "###0.4661###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39331": { + "content": "###0.4663###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39332": { + "content": "###0.4665###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39333": { + "content": "###0.4667###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39334": { + "content": "###0.4669###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39335": { + "content": "###0.4671###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39336": { + "content": "###0.4673###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39337": { + "content": "###0.4675###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39338": { + "content": "###0.4677###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39339": { + "content": "###0.4679###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39340": { + "content": "###0.4681###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39341": { + "content": "###0.4683###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39342": { + "content": "###0.4685###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39343": { + "content": "###0.4687###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39344": { + "content": "###0.4689###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39345": { + "content": "###0.4691###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39346": { + "content": "###0.4693###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39347": { + "content": "###0.4695###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39348": { + "content": "###0.4697###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39349": { + "content": "###0.4699###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39350": { + "content": "###0.4701###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39351": { + "content": "###0.4703###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39352": { + "content": "###0.4705###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39353": { + "content": "###0.4707###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39354": { + "content": "###0.4709###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39355": { + "content": "###0.4711###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39356": { + "content": "###0.4713###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39357": { + "content": "###0.4715###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39358": { + "content": "###0.4717###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39359": { + "content": "###0.4719###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39360": { + "content": "###0.4721###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39361": { + "content": "###0.4723###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39362": { + "content": "###0.4725###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39363": { + "content": "###0.4727###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39364": { + "content": "###0.4729###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39365": { + "content": "###0.4731###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39366": { + "content": "###0.4733###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39367": { + "content": "###0.4735###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39368": { + "content": "###0.4737###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39369": { + "content": "###0.4739###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39370": { + "content": "###0.4741###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39371": { + "content": "###0.4743###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39372": { + "content": "###0.4745###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39373": { + "content": "###0.4747###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39374": { + "content": "###0.4749###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39375": { + "content": "###0.4751###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39376": { + "content": "###0.4753###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39377": { + "content": "###0.4755###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39378": { + "content": "###0.4757###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39379": { + "content": "###0.4759###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39380": { + "content": "###0.4761###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39381": { + "content": "###0.4763###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39382": { + "content": "###0.4765###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39383": { + "content": "###0.4767###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39384": { + "content": "###0.4769###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39385": { + "content": "###0.4771###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39386": { + "content": "###0.4773###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39387": { + "content": "###0.4775###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39388": { + "content": "###0.4777###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39389": { + "content": "###0.4779###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39390": { + "content": "###0.4781###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39391": { + "content": "###0.4783###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39392": { + "content": "###0.4785###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39393": { + "content": "###0.4787###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39394": { + "content": "###0.4789###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39395": { + "content": "###0.4791###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39396": { + "content": "###0.4793###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39397": { + "content": "###0.4795###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39398": { + "content": "###0.4797###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39399": { + "content": "###0.4799###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39400": { + "content": "###0.4801###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39401": { + "content": "###0.4803###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39402": { + "content": "###0.4805###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39403": { + "content": "###0.4807###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39404": { + "content": "###0.4809###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39405": { + "content": "###0.4811###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39406": { + "content": "###0.4813###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39407": { + "content": "###0.4815###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39408": { + "content": "###0.4817###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39409": { + "content": "###0.4819###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39410": { + "content": "###0.4821###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39411": { + "content": "###0.4823###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39412": { + "content": "###0.4825###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39413": { + "content": "###0.4827###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39414": { + "content": "###0.4829###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39415": { + "content": "###0.4831###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39416": { + "content": "###0.4833###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39417": { + "content": "###0.4835###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39418": { + "content": "###0.4837###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39419": { + "content": "###0.4839###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39420": { + "content": "###0.4841###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39421": { + "content": "###0.4843###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39422": { + "content": "###0.4845###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39423": { + "content": "###0.4847###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39424": { + "content": "###0.4849###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39425": { + "content": "###0.4851###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39426": { + "content": "###0.4853###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39427": { + "content": "###0.4855###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39428": { + "content": "###0.4857###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39429": { + "content": "###0.4859###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39430": { + "content": "###0.4861###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39431": { + "content": "###0.4863###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39432": { + "content": "###0.4865###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39433": { + "content": "###0.4867###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39434": { + "content": "###0.4869###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39435": { + "content": "###0.4871###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39436": { + "content": "###0.4873###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39437": { + "content": "###0.4875###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39438": { + "content": "###0.4877###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39439": { + "content": "###0.4879###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39440": { + "content": "###0.4881###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39441": { + "content": "###0.4883###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39442": { + "content": "###0.4885###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39443": { + "content": "###0.4887###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39444": { + "content": "###0.4889###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39445": { + "content": "###0.4891###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39446": { + "content": "###0.4893###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39447": { + "content": "###0.4895###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39448": { + "content": "###0.4897###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39449": { + "content": "###0.4899###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39450": { + "content": "###0.4901###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39451": { + "content": "###0.4903###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39452": { + "content": "###0.4905###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39453": { + "content": "###0.4907###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39454": { + "content": "###0.4909###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39455": { + "content": "###0.4911###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39456": { + "content": "###0.4913###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39457": { + "content": "###0.4915###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39458": { + "content": "###0.4917###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39459": { + "content": "###0.4919###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39460": { + "content": "###0.4921###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39461": { + "content": "###0.4923###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39462": { + "content": "###0.4925###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39463": { + "content": "###0.4927###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39464": { + "content": "###0.4929###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39465": { + "content": "###0.4931###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39466": { + "content": "###0.4933###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39467": { + "content": "###0.4935###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39468": { + "content": "###0.4937###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39469": { + "content": "###0.4939###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39470": { + "content": "###0.4941###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39471": { + "content": "###0.4943###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39472": { + "content": "###0.4945###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39473": { + "content": "###0.4947###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39474": { + "content": "###0.4949###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39475": { + "content": "###0.4951###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39476": { + "content": "###0.4953###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39477": { + "content": "###0.4955###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39478": { + "content": "###0.4957###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39479": { + "content": "###0.4959###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39480": { + "content": "###0.4961###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39481": { + "content": "###0.4963###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39482": { + "content": "###0.4965###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39483": { + "content": "###0.4967###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39484": { + "content": "###0.4969###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39485": { + "content": "###0.4971###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39486": { + "content": "###0.4973###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39487": { + "content": "###0.4975###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39488": { + "content": "###0.4977###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39489": { + "content": "###0.4979###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39490": { + "content": "###0.4981###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39491": { + "content": "###0.4983###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39492": { + "content": "###0.4985###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39493": { + "content": "###0.4987###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39494": { + "content": "###0.4989###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39495": { + "content": "###0.4991###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39496": { + "content": "###0.4993###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39497": { + "content": "###0.4995###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39498": { + "content": "###0.4997###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39499": { + "content": "###0.4999###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39500": { + "content": "###0.5001###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39501": { + "content": "###0.5003###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39502": { + "content": "###0.5005###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39503": { + "content": "###0.5007###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39504": { + "content": "###0.5009###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39505": { + "content": "###0.5011###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39506": { + "content": "###0.5013###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39507": { + "content": "###0.5015###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39508": { + "content": "###0.5017###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39509": { + "content": "###0.5019###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39510": { + "content": "###0.5021###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39511": { + "content": "###0.5023###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39512": { + "content": "###0.5025###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39513": { + "content": "###0.5027###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39514": { + "content": "###0.5029###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39515": { + "content": "###0.5031###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39516": { + "content": "###0.5033###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39517": { + "content": "###0.5035###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39518": { + "content": "###0.5037###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39519": { + "content": "###0.5039###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39520": { + "content": "###0.5041###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39521": { + "content": "###0.5043###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39522": { + "content": "###0.5045###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39523": { + "content": "###0.5047###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39524": { + "content": "###0.5049###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39525": { + "content": "###0.5051###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39526": { + "content": "###0.5053###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39527": { + "content": "###0.5055###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39528": { + "content": "###0.5057###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39529": { + "content": "###0.5059###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39530": { + "content": "###0.5061###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39531": { + "content": "###0.5063###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39532": { + "content": "###0.5065###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39533": { + "content": "###0.5067###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39534": { + "content": "###0.5069###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39535": { + "content": "###0.5071###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39536": { + "content": "###0.5073###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39537": { + "content": "###0.5075###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39538": { + "content": "###0.5077###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39539": { + "content": "###0.5079###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39540": { + "content": "###0.5081###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39541": { + "content": "###0.5083###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39542": { + "content": "###0.5085###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39543": { + "content": "###0.5087###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39544": { + "content": "###0.5089###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39545": { + "content": "###0.5091###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39546": { + "content": "###0.5093###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39547": { + "content": "###0.5095###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39548": { + "content": "###0.5097###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39549": { + "content": "###0.5099###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39550": { + "content": "###0.5101###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39551": { + "content": "###0.5103###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39552": { + "content": "###0.5105###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39553": { + "content": "###0.5107###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39554": { + "content": "###0.5109###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39555": { + "content": "###0.5111###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39556": { + "content": "###0.5113###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39557": { + "content": "###0.5115###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39558": { + "content": "###0.5117###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39559": { + "content": "###0.5119###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39560": { + "content": "###0.5121###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39561": { + "content": "###0.5123###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39562": { + "content": "###0.5125###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39563": { + "content": "###0.5127###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39564": { + "content": "###0.5129###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39565": { + "content": "###0.5131###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39566": { + "content": "###0.5133###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39567": { + "content": "###0.5135###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39568": { + "content": "###0.5137###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39569": { + "content": "###0.5139###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39570": { + "content": "###0.5141###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39571": { + "content": "###0.5143###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39572": { + "content": "###0.5145###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39573": { + "content": "###0.5147###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39574": { + "content": "###0.5149###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39575": { + "content": "###0.5151###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39576": { + "content": "###0.5153###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39577": { + "content": "###0.5155###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39578": { + "content": "###0.5157###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39579": { + "content": "###0.5159###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39580": { + "content": "###0.5161###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39581": { + "content": "###0.5163###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39582": { + "content": "###0.5165###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39583": { + "content": "###0.5167###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39584": { + "content": "###0.5169###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39585": { + "content": "###0.5171###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39586": { + "content": "###0.5173###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39587": { + "content": "###0.5175###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39588": { + "content": "###0.5177###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39589": { + "content": "###0.5179###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39590": { + "content": "###0.5181###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39591": { + "content": "###0.5183###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39592": { + "content": "###0.5185###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39593": { + "content": "###0.5187###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39594": { + "content": "###0.5189###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39595": { + "content": "###0.5191###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39596": { + "content": "###0.5193###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39597": { + "content": "###0.5195###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39598": { + "content": "###0.5197###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39599": { + "content": "###0.5199###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39600": { + "content": "###0.5201###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39601": { + "content": "###0.5203###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39602": { + "content": "###0.5205###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39603": { + "content": "###0.5207###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39604": { + "content": "###0.5209###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39605": { + "content": "###0.5211###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39606": { + "content": "###0.5213###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39607": { + "content": "###0.5215###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39608": { + "content": "###0.5217###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39609": { + "content": "###0.5219###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39610": { + "content": "###0.5221###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39611": { + "content": "###0.5223###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39612": { + "content": "###0.5225###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39613": { + "content": "###0.5227###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39614": { + "content": "###0.5229###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39615": { + "content": "###0.5231###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39616": { + "content": "###0.5233###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39617": { + "content": "###0.5235###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39618": { + "content": "###0.5237###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39619": { + "content": "###0.5239###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39620": { + "content": "###0.5241###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39621": { + "content": "###0.5243###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39622": { + "content": "###0.5245###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39623": { + "content": "###0.5247###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39624": { + "content": "###0.5249###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39625": { + "content": "###0.5251###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39626": { + "content": "###0.5253###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39627": { + "content": "###0.5255###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39628": { + "content": "###0.5257###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39629": { + "content": "###0.5259###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39630": { + "content": "###0.5261###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39631": { + "content": "###0.5263###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39632": { + "content": "###0.5265###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39633": { + "content": "###0.5267###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39634": { + "content": "###0.5269###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39635": { + "content": "###0.5271###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39636": { + "content": "###0.5273###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39637": { + "content": "###0.5275###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39638": { + "content": "###0.5277###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39639": { + "content": "###0.5279###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39640": { + "content": "###0.5281###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39641": { + "content": "###0.5283###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39642": { + "content": "###0.5285###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39643": { + "content": "###0.5287###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39644": { + "content": "###0.5289###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39645": { + "content": "###0.5291###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39646": { + "content": "###0.5293###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39647": { + "content": "###0.5295###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39648": { + "content": "###0.5297###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39649": { + "content": "###0.5299###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39650": { + "content": "###0.5301###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39651": { + "content": "###0.5303###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39652": { + "content": "###0.5305###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39653": { + "content": "###0.5307###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39654": { + "content": "###0.5309###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39655": { + "content": "###0.5311###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39656": { + "content": "###0.5313###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39657": { + "content": "###0.5315###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39658": { + "content": "###0.5317###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39659": { + "content": "###0.5319###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39660": { + "content": "###0.5321###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39661": { + "content": "###0.5323###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39662": { + "content": "###0.5325###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39663": { + "content": "###0.5327###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39664": { + "content": "###0.5329###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39665": { + "content": "###0.5331###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39666": { + "content": "###0.5333###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39667": { + "content": "###0.5335###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39668": { + "content": "###0.5337###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39669": { + "content": "###0.5339###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39670": { + "content": "###0.5341###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39671": { + "content": "###0.5343###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39672": { + "content": "###0.5345###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39673": { + "content": "###0.5347###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39674": { + "content": "###0.5349###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39675": { + "content": "###0.5351###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39676": { + "content": "###0.5353###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39677": { + "content": "###0.5355###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39678": { + "content": "###0.5357###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39679": { + "content": "###0.5359###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39680": { + "content": "###0.5361###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39681": { + "content": "###0.5363###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39682": { + "content": "###0.5365###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39683": { + "content": "###0.5367###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39684": { + "content": "###0.5369###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39685": { + "content": "###0.5371###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39686": { + "content": "###0.5373###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39687": { + "content": "###0.5375###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39688": { + "content": "###0.5377###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39689": { + "content": "###0.5379###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39690": { + "content": "###0.5381###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39691": { + "content": "###0.5383###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39692": { + "content": "###0.5385###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39693": { + "content": "###0.5387###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39694": { + "content": "###0.5389###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39695": { + "content": "###0.5391###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39696": { + "content": "###0.5393###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39697": { + "content": "###0.5395###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39698": { + "content": "###0.5397###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39699": { + "content": "###0.5399###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39700": { + "content": "###0.5401###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39701": { + "content": "###0.5403###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39702": { + "content": "###0.5405###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39703": { + "content": "###0.5407###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39704": { + "content": "###0.5409###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39705": { + "content": "###0.5411###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39706": { + "content": "###0.5413###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39707": { + "content": "###0.5415###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39708": { + "content": "###0.5417###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39709": { + "content": "###0.5419###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39710": { + "content": "###0.5421###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39711": { + "content": "###0.5423###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39712": { + "content": "###0.5425###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39713": { + "content": "###0.5427###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39714": { + "content": "###0.5429###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39715": { + "content": "###0.5431###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39716": { + "content": "###0.5433###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39717": { + "content": "###0.5435###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39718": { + "content": "###0.5437###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39719": { + "content": "###0.5439###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39720": { + "content": "###0.5441###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39721": { + "content": "###0.5443###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39722": { + "content": "###0.5445###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39723": { + "content": "###0.5447###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39724": { + "content": "###0.5449###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39725": { + "content": "###0.5451###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39726": { + "content": "###0.5453###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39727": { + "content": "###0.5455###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39728": { + "content": "###0.5457###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39729": { + "content": "###0.5459###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39730": { + "content": "###0.5461###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39731": { + "content": "###0.5463###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39732": { + "content": "###0.5465###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39733": { + "content": "###0.5467###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39734": { + "content": "###0.5469###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39735": { + "content": "###0.5471###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39736": { + "content": "###0.5473###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39737": { + "content": "###0.5475###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39738": { + "content": "###0.5477###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39739": { + "content": "###0.5479###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39740": { + "content": "###0.5481###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39741": { + "content": "###0.5483###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39742": { + "content": "###0.5485###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39743": { + "content": "###0.5487###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39744": { + "content": "###0.5489###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39745": { + "content": "###0.5491###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39746": { + "content": "###0.5493###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39747": { + "content": "###0.5495###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39748": { + "content": "###0.5497###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39749": { + "content": "###0.5499###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39750": { + "content": "###0.5501###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39751": { + "content": "###0.5503###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39752": { + "content": "###0.5505###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39753": { + "content": "###0.5507###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39754": { + "content": "###0.5509###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39755": { + "content": "###0.5511###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39756": { + "content": "###0.5513###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39757": { + "content": "###0.5515###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39758": { + "content": "###0.5517###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39759": { + "content": "###0.5519###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39760": { + "content": "###0.5521###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39761": { + "content": "###0.5523###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39762": { + "content": "###0.5525###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39763": { + "content": "###0.5527###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39764": { + "content": "###0.5529###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39765": { + "content": "###0.5531###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39766": { + "content": "###0.5533###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39767": { + "content": "###0.5535###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39768": { + "content": "###0.5537###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39769": { + "content": "###0.5539###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39770": { + "content": "###0.5541###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39771": { + "content": "###0.5543###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39772": { + "content": "###0.5545###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39773": { + "content": "###0.5547###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39774": { + "content": "###0.5549###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39775": { + "content": "###0.5551###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39776": { + "content": "###0.5553###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39777": { + "content": "###0.5555###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39778": { + "content": "###0.5557###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39779": { + "content": "###0.5559###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39780": { + "content": "###0.5561###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39781": { + "content": "###0.5563###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39782": { + "content": "###0.5565###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39783": { + "content": "###0.5567###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39784": { + "content": "###0.5569###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39785": { + "content": "###0.5571###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39786": { + "content": "###0.5573###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39787": { + "content": "###0.5575###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39788": { + "content": "###0.5577###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39789": { + "content": "###0.5579###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39790": { + "content": "###0.5581###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39791": { + "content": "###0.5583###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39792": { + "content": "###0.5585###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39793": { + "content": "###0.5587###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39794": { + "content": "###0.5589###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39795": { + "content": "###0.5591###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39796": { + "content": "###0.5593###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39797": { + "content": "###0.5595###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39798": { + "content": "###0.5597###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39799": { + "content": "###0.5599###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39800": { + "content": "###0.5601###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39801": { + "content": "###0.5603###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39802": { + "content": "###0.5605###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39803": { + "content": "###0.5607###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39804": { + "content": "###0.5609###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39805": { + "content": "###0.5611###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39806": { + "content": "###0.5613###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39807": { + "content": "###0.5615###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39808": { + "content": "###0.5617###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39809": { + "content": "###0.5619###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39810": { + "content": "###0.5621###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39811": { + "content": "###0.5623###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39812": { + "content": "###0.5625###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39813": { + "content": "###0.5627###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39814": { + "content": "###0.5629###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39815": { + "content": "###0.5631###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39816": { + "content": "###0.5633###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39817": { + "content": "###0.5635###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39818": { + "content": "###0.5637###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39819": { + "content": "###0.5639###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39820": { + "content": "###0.5641###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39821": { + "content": "###0.5643###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39822": { + "content": "###0.5645###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39823": { + "content": "###0.5647###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39824": { + "content": "###0.5649###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39825": { + "content": "###0.5651###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39826": { + "content": "###0.5653###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39827": { + "content": "###0.5655###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39828": { + "content": "###0.5657###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39829": { + "content": "###0.5659###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39830": { + "content": "###0.5661###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39831": { + "content": "###0.5663###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39832": { + "content": "###0.5665###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39833": { + "content": "###0.5667###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39834": { + "content": "###0.5669###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39835": { + "content": "###0.5671###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39836": { + "content": "###0.5673###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39837": { + "content": "###0.5675###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39838": { + "content": "###0.5677###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39839": { + "content": "###0.5679###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39840": { + "content": "###0.5681###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39841": { + "content": "###0.5683###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39842": { + "content": "###0.5685###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39843": { + "content": "###0.5687###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39844": { + "content": "###0.5689###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39845": { + "content": "###0.5691###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39846": { + "content": "###0.5693###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39847": { + "content": "###0.5695###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39848": { + "content": "###0.5697###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39849": { + "content": "###0.5699###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39850": { + "content": "###0.5701###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39851": { + "content": "###0.5703###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39852": { + "content": "###0.5705###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39853": { + "content": "###0.5707###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39854": { + "content": "###0.5709###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39855": { + "content": "###0.5711###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39856": { + "content": "###0.5713###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39857": { + "content": "###0.5715###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39858": { + "content": "###0.5717###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39859": { + "content": "###0.5719###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39860": { + "content": "###0.5721###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39861": { + "content": "###0.5723###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39862": { + "content": "###0.5725###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39863": { + "content": "###0.5727###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39864": { + "content": "###0.5729###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39865": { + "content": "###0.5731###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39866": { + "content": "###0.5733###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39867": { + "content": "###0.5735###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39868": { + "content": "###0.5737###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39869": { + "content": "###0.5739###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39870": { + "content": "###0.5741###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39871": { + "content": "###0.5743###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39872": { + "content": "###0.5745###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39873": { + "content": "###0.5747###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39874": { + "content": "###0.5749###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39875": { + "content": "###0.5751###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39876": { + "content": "###0.5753###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39877": { + "content": "###0.5755###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39878": { + "content": "###0.5757###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39879": { + "content": "###0.5759###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39880": { + "content": "###0.5761###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39881": { + "content": "###0.5763###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39882": { + "content": "###0.5765###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39883": { + "content": "###0.5767###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39884": { + "content": "###0.5769###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39885": { + "content": "###0.5771###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39886": { + "content": "###0.5773###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39887": { + "content": "###0.5775###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39888": { + "content": "###0.5777###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39889": { + "content": "###0.5779###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39890": { + "content": "###0.5781###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39891": { + "content": "###0.5783###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39892": { + "content": "###0.5785###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39893": { + "content": "###0.5787###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39894": { + "content": "###0.5789###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39895": { + "content": "###0.5791###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39896": { + "content": "###0.5793###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39897": { + "content": "###0.5795###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39898": { + "content": "###0.5797###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39899": { + "content": "###0.5799###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39900": { + "content": "###0.5801###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39901": { + "content": "###0.5803###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39902": { + "content": "###0.5805###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39903": { + "content": "###0.5807###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39904": { + "content": "###0.5809###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39905": { + "content": "###0.5811###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39906": { + "content": "###0.5813###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39907": { + "content": "###0.5815###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39908": { + "content": "###0.5817###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39909": { + "content": "###0.5819###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39910": { + "content": "###0.5821###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39911": { + "content": "###0.5823###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39912": { + "content": "###0.5825###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39913": { + "content": "###0.5827###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39914": { + "content": "###0.5829###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39915": { + "content": "###0.5831###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39916": { + "content": "###0.5833###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39917": { + "content": "###0.5835###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39918": { + "content": "###0.5837###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39919": { + "content": "###0.5839###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39920": { + "content": "###0.5841###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39921": { + "content": "###0.5843###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39922": { + "content": "###0.5845###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39923": { + "content": "###0.5847###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39924": { + "content": "###0.5849###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39925": { + "content": "###0.5851###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39926": { + "content": "###0.5853###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39927": { + "content": "###0.5855###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39928": { + "content": "###0.5857###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39929": { + "content": "###0.5859###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39930": { + "content": "###0.5861###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39931": { + "content": "###0.5863###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39932": { + "content": "###0.5865###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39933": { + "content": "###0.5867###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39934": { + "content": "###0.5869###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39935": { + "content": "###0.5871###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39936": { + "content": "###0.5873###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39937": { + "content": "###0.5875###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39938": { + "content": "###0.5877###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39939": { + "content": "###0.5879###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39940": { + "content": "###0.5881###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39941": { + "content": "###0.5883###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39942": { + "content": "###0.5885###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39943": { + "content": "###0.5887###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39944": { + "content": "###0.5889###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39945": { + "content": "###0.5891###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39946": { + "content": "###0.5893###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39947": { + "content": "###0.5895###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39948": { + "content": "###0.5897###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39949": { + "content": "###0.5899###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39950": { + "content": "###0.5901###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39951": { + "content": "###0.5903###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39952": { + "content": "###0.5905###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39953": { + "content": "###0.5907###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39954": { + "content": "###0.5909###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39955": { + "content": "###0.5911###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39956": { + "content": "###0.5913###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39957": { + "content": "###0.5915###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39958": { + "content": "###0.5917###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39959": { + "content": "###0.5919###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39960": { + "content": "###0.5921###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39961": { + "content": "###0.5923###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39962": { + "content": "###0.5925###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39963": { + "content": "###0.5927###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39964": { + "content": "###0.5929###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39965": { + "content": "###0.5931###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39966": { + "content": "###0.5933###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39967": { + "content": "###0.5935###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39968": { + "content": "###0.5937###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39969": { + "content": "###0.5939###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39970": { + "content": "###0.5941###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39971": { + "content": "###0.5943###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39972": { + "content": "###0.5945###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39973": { + "content": "###0.5947###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39974": { + "content": "###0.5949###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39975": { + "content": "###0.5951###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39976": { + "content": "###0.5953###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39977": { + "content": "###0.5955###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39978": { + "content": "###0.5957###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39979": { + "content": "###0.5959###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39980": { + "content": "###0.5961###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39981": { + "content": "###0.5963###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39982": { + "content": "###0.5965###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39983": { + "content": "###0.5967###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39984": { + "content": "###0.5969###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39985": { + "content": "###0.5971###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39986": { + "content": "###0.5973###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39987": { + "content": "###0.5975###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39988": { + "content": "###0.5977###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39989": { + "content": "###0.5979###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39990": { + "content": "###0.5981###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39991": { + "content": "###0.5983###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39992": { + "content": "###0.5985###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39993": { + "content": "###0.5987###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39994": { + "content": "###0.5989###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39995": { + "content": "###0.5991###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39996": { + "content": "###0.5993###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39997": { + "content": "###0.5995###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39998": { + "content": "###0.5997###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "39999": { + "content": "###0.5999###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40000": { + "content": "###0.6001###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40001": { + "content": "###0.6003###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40002": { + "content": "###0.6005###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40003": { + "content": "###0.6007###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40004": { + "content": "###0.6009###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40005": { + "content": "###0.6011###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40006": { + "content": "###0.6013###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40007": { + "content": "###0.6015###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40008": { + "content": "###0.6017###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40009": { + "content": "###0.6019###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40010": { + "content": "###0.6021###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40011": { + "content": "###0.6023###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40012": { + "content": "###0.6025###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40013": { + "content": "###0.6027###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40014": { + "content": "###0.6029###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40015": { + "content": "###0.6031###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40016": { + "content": "###0.6033###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40017": { + "content": "###0.6035###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40018": { + "content": "###0.6037###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40019": { + "content": "###0.6039###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40020": { + "content": "###0.6041###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40021": { + "content": "###0.6043###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40022": { + "content": "###0.6045###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40023": { + "content": "###0.6047###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40024": { + "content": "###0.6049###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40025": { + "content": "###0.6051###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40026": { + "content": "###0.6053###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40027": { + "content": "###0.6055###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40028": { + "content": "###0.6057###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40029": { + "content": "###0.6059###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40030": { + "content": "###0.6061###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40031": { + "content": "###0.6063###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40032": { + "content": "###0.6065###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40033": { + "content": "###0.6067###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40034": { + "content": "###0.6069###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40035": { + "content": "###0.6071###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40036": { + "content": "###0.6073###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40037": { + "content": "###0.6075###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40038": { + "content": "###0.6077###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40039": { + "content": "###0.6079###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40040": { + "content": "###0.6081###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40041": { + "content": "###0.6083###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40042": { + "content": "###0.6085###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40043": { + "content": "###0.6087###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40044": { + "content": "###0.6089###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40045": { + "content": "###0.6091###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40046": { + "content": "###0.6093###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40047": { + "content": "###0.6095###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40048": { + "content": "###0.6097###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40049": { + "content": "###0.6099###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40050": { + "content": "###0.6101###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40051": { + "content": "###0.6103###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40052": { + "content": "###0.6105###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40053": { + "content": "###0.6107###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40054": { + "content": "###0.6109###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40055": { + "content": "###0.6111###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40056": { + "content": "###0.6113###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40057": { + "content": "###0.6115###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40058": { + "content": "###0.6117###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40059": { + "content": "###0.6119###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40060": { + "content": "###0.6121###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40061": { + "content": "###0.6123###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40062": { + "content": "###0.6125###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40063": { + "content": "###0.6127###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40064": { + "content": "###0.6129###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40065": { + "content": "###0.6131###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40066": { + "content": "###0.6133###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40067": { + "content": "###0.6135###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40068": { + "content": "###0.6137###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40069": { + "content": "###0.6139###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40070": { + "content": "###0.6141###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40071": { + "content": "###0.6143###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40072": { + "content": "###0.6145###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40073": { + "content": "###0.6147###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40074": { + "content": "###0.6149###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40075": { + "content": "###0.6151###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40076": { + "content": "###0.6153###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40077": { + "content": "###0.6155###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40078": { + "content": "###0.6157###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40079": { + "content": "###0.6159###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40080": { + "content": "###0.6161###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40081": { + "content": "###0.6163###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40082": { + "content": "###0.6165###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40083": { + "content": "###0.6167###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40084": { + "content": "###0.6169###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40085": { + "content": "###0.6171###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40086": { + "content": "###0.6173###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40087": { + "content": "###0.6175###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40088": { + "content": "###0.6177###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40089": { + "content": "###0.6179###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40090": { + "content": "###0.6181###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40091": { + "content": "###0.6183###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40092": { + "content": "###0.6185###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40093": { + "content": "###0.6187###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40094": { + "content": "###0.6189###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40095": { + "content": "###0.6191###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40096": { + "content": "###0.6193###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40097": { + "content": "###0.6195###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40098": { + "content": "###0.6197###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40099": { + "content": "###0.6199###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40100": { + "content": "###0.6201###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40101": { + "content": "###0.6203###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40102": { + "content": "###0.6205###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40103": { + "content": "###0.6207###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40104": { + "content": "###0.6209###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40105": { + "content": "###0.6211###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40106": { + "content": "###0.6213###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40107": { + "content": "###0.6215###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40108": { + "content": "###0.6217###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40109": { + "content": "###0.6219###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40110": { + "content": "###0.6221###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40111": { + "content": "###0.6223###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40112": { + "content": "###0.6225###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40113": { + "content": "###0.6227###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40114": { + "content": "###0.6229###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40115": { + "content": "###0.6231###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40116": { + "content": "###0.6233###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40117": { + "content": "###0.6235###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40118": { + "content": "###0.6237###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40119": { + "content": "###0.6239###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40120": { + "content": "###0.6241###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40121": { + "content": "###0.6243###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40122": { + "content": "###0.6245###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40123": { + "content": "###0.6247###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40124": { + "content": "###0.6249###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40125": { + "content": "###0.6251###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40126": { + "content": "###0.6253###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40127": { + "content": "###0.6255###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40128": { + "content": "###0.6257###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40129": { + "content": "###0.6259###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40130": { + "content": "###0.6261###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40131": { + "content": "###0.6263###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40132": { + "content": "###0.6265###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40133": { + "content": "###0.6267###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40134": { + "content": "###0.6269###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40135": { + "content": "###0.6271###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40136": { + "content": "###0.6273###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40137": { + "content": "###0.6275###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40138": { + "content": "###0.6277###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40139": { + "content": "###0.6279###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40140": { + "content": "###0.6281###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40141": { + "content": "###0.6283###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40142": { + "content": "###0.6285###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40143": { + "content": "###0.6287###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40144": { + "content": "###0.6289###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40145": { + "content": "###0.6291###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40146": { + "content": "###0.6293###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40147": { + "content": "###0.6295###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40148": { + "content": "###0.6297###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40149": { + "content": "###0.6299###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40150": { + "content": "###0.6301###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40151": { + "content": "###0.6303###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40152": { + "content": "###0.6305###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40153": { + "content": "###0.6307###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40154": { + "content": "###0.6309###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40155": { + "content": "###0.6311###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40156": { + "content": "###0.6313###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40157": { + "content": "###0.6315###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40158": { + "content": "###0.6317###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40159": { + "content": "###0.6319###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40160": { + "content": "###0.6321###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40161": { + "content": "###0.6323###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40162": { + "content": "###0.6325###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40163": { + "content": "###0.6327###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40164": { + "content": "###0.6329###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40165": { + "content": "###0.6331###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40166": { + "content": "###0.6333###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40167": { + "content": "###0.6335###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40168": { + "content": "###0.6337###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40169": { + "content": "###0.6339###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40170": { + "content": "###0.6341###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40171": { + "content": "###0.6343###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40172": { + "content": "###0.6345###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40173": { + "content": "###0.6347###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40174": { + "content": "###0.6349###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40175": { + "content": "###0.6351###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40176": { + "content": "###0.6353###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40177": { + "content": "###0.6355###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40178": { + "content": "###0.6357###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40179": { + "content": "###0.6359###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40180": { + "content": "###0.6361###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40181": { + "content": "###0.6363###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40182": { + "content": "###0.6365###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40183": { + "content": "###0.6367###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40184": { + "content": "###0.6369###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40185": { + "content": "###0.6371###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40186": { + "content": "###0.6373###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40187": { + "content": "###0.6375###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40188": { + "content": "###0.6377###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40189": { + "content": "###0.6379###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40190": { + "content": "###0.6381###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40191": { + "content": "###0.6383###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40192": { + "content": "###0.6385###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40193": { + "content": "###0.6387###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40194": { + "content": "###0.6389###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40195": { + "content": "###0.6391###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40196": { + "content": "###0.6393###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40197": { + "content": "###0.6395###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40198": { + "content": "###0.6397###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40199": { + "content": "###0.6399###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40200": { + "content": "###0.6401###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40201": { + "content": "###0.6403###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40202": { + "content": "###0.6405###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40203": { + "content": "###0.6407###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40204": { + "content": "###0.6409###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40205": { + "content": "###0.6411###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40206": { + "content": "###0.6413###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40207": { + "content": "###0.6415###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40208": { + "content": "###0.6417###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40209": { + "content": "###0.6419###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40210": { + "content": "###0.6421###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40211": { + "content": "###0.6423###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40212": { + "content": "###0.6425###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40213": { + "content": "###0.6427###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40214": { + "content": "###0.6429###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40215": { + "content": "###0.6431###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40216": { + "content": "###0.6433###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40217": { + "content": "###0.6435###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40218": { + "content": "###0.6437###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40219": { + "content": "###0.6439###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40220": { + "content": "###0.6441###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40221": { + "content": "###0.6443###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40222": { + "content": "###0.6445###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40223": { + "content": "###0.6447###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40224": { + "content": "###0.6449###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40225": { + "content": "###0.6451###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40226": { + "content": "###0.6453###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40227": { + "content": "###0.6455###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40228": { + "content": "###0.6457###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40229": { + "content": "###0.6459###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40230": { + "content": "###0.6461###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40231": { + "content": "###0.6463###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40232": { + "content": "###0.6465###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40233": { + "content": "###0.6467###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40234": { + "content": "###0.6469###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40235": { + "content": "###0.6471###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40236": { + "content": "###0.6473###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40237": { + "content": "###0.6475###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40238": { + "content": "###0.6477###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40239": { + "content": "###0.6479###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40240": { + "content": "###0.6481###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40241": { + "content": "###0.6483###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40242": { + "content": "###0.6485###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40243": { + "content": "###0.6487###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40244": { + "content": "###0.6489###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40245": { + "content": "###0.6491###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40246": { + "content": "###0.6493###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40247": { + "content": "###0.6495###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40248": { + "content": "###0.6497###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40249": { + "content": "###0.6499###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40250": { + "content": "###0.6501###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40251": { + "content": "###0.6503###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40252": { + "content": "###0.6505###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40253": { + "content": "###0.6507###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40254": { + "content": "###0.6509###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40255": { + "content": "###0.6511###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40256": { + "content": "###0.6513###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40257": { + "content": "###0.6515###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40258": { + "content": "###0.6517###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40259": { + "content": "###0.6519###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40260": { + "content": "###0.6521###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40261": { + "content": "###0.6523###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40262": { + "content": "###0.6525###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40263": { + "content": "###0.6527###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40264": { + "content": "###0.6529###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40265": { + "content": "###0.6531###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40266": { + "content": "###0.6533###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40267": { + "content": "###0.6535###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40268": { + "content": "###0.6537###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40269": { + "content": "###0.6539###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40270": { + "content": "###0.6541###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40271": { + "content": "###0.6543###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40272": { + "content": "###0.6545###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40273": { + "content": "###0.6547###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40274": { + "content": "###0.6549###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40275": { + "content": "###0.6551###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40276": { + "content": "###0.6553###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40277": { + "content": "###0.6555###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40278": { + "content": "###0.6557###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40279": { + "content": "###0.6559###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40280": { + "content": "###0.6561###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40281": { + "content": "###0.6563###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40282": { + "content": "###0.6565###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40283": { + "content": "###0.6567###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40284": { + "content": "###0.6569###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40285": { + "content": "###0.6571###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40286": { + "content": "###0.6573###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40287": { + "content": "###0.6575###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40288": { + "content": "###0.6577###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40289": { + "content": "###0.6579###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40290": { + "content": "###0.6581###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40291": { + "content": "###0.6583###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40292": { + "content": "###0.6585###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40293": { + "content": "###0.6587###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40294": { + "content": "###0.6589###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40295": { + "content": "###0.6591###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40296": { + "content": "###0.6593###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40297": { + "content": "###0.6595###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40298": { + "content": "###0.6597###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40299": { + "content": "###0.6599###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40300": { + "content": "###0.6601###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40301": { + "content": "###0.6603###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40302": { + "content": "###0.6605###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40303": { + "content": "###0.6607###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40304": { + "content": "###0.6609###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40305": { + "content": "###0.6611###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40306": { + "content": "###0.6613###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40307": { + "content": "###0.6615###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40308": { + "content": "###0.6617###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40309": { + "content": "###0.6619###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40310": { + "content": "###0.6621###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40311": { + "content": "###0.6623###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40312": { + "content": "###0.6625###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40313": { + "content": "###0.6627###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40314": { + "content": "###0.6629###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40315": { + "content": "###0.6631###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40316": { + "content": "###0.6633###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40317": { + "content": "###0.6635###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40318": { + "content": "###0.6637###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40319": { + "content": "###0.6639###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40320": { + "content": "###0.6641###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40321": { + "content": "###0.6643###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40322": { + "content": "###0.6645###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40323": { + "content": "###0.6647###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40324": { + "content": "###0.6649###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40325": { + "content": "###0.6651###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40326": { + "content": "###0.6653###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40327": { + "content": "###0.6655###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40328": { + "content": "###0.6657###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40329": { + "content": "###0.6659###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40330": { + "content": "###0.6661###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40331": { + "content": "###0.6663###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40332": { + "content": "###0.6665###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40333": { + "content": "###0.6667###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40334": { + "content": "###0.6669###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40335": { + "content": "###0.6671###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40336": { + "content": "###0.6673###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40337": { + "content": "###0.6675###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40338": { + "content": "###0.6677###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40339": { + "content": "###0.6679###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40340": { + "content": "###0.6681###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40341": { + "content": "###0.6683###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40342": { + "content": "###0.6685###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40343": { + "content": "###0.6687###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40344": { + "content": "###0.6689###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40345": { + "content": "###0.6691###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40346": { + "content": "###0.6693###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40347": { + "content": "###0.6695###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40348": { + "content": "###0.6697###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40349": { + "content": "###0.6699###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40350": { + "content": "###0.6701###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40351": { + "content": "###0.6703###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40352": { + "content": "###0.6705###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40353": { + "content": "###0.6707###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40354": { + "content": "###0.6709###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40355": { + "content": "###0.6711###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40356": { + "content": "###0.6713###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40357": { + "content": "###0.6715###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40358": { + "content": "###0.6717###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40359": { + "content": "###0.6719###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40360": { + "content": "###0.6721###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40361": { + "content": "###0.6723###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40362": { + "content": "###0.6725###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40363": { + "content": "###0.6727###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40364": { + "content": "###0.6729###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40365": { + "content": "###0.6731###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40366": { + "content": "###0.6733###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40367": { + "content": "###0.6735###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40368": { + "content": "###0.6737###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40369": { + "content": "###0.6739###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40370": { + "content": "###0.6741###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40371": { + "content": "###0.6743###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40372": { + "content": "###0.6745###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40373": { + "content": "###0.6747###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40374": { + "content": "###0.6749###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40375": { + "content": "###0.6751###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40376": { + "content": "###0.6753###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40377": { + "content": "###0.6755###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40378": { + "content": "###0.6757###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40379": { + "content": "###0.6759###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40380": { + "content": "###0.6761###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40381": { + "content": "###0.6763###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40382": { + "content": "###0.6765###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40383": { + "content": "###0.6767###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40384": { + "content": "###0.6769###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40385": { + "content": "###0.6771###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40386": { + "content": "###0.6773###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40387": { + "content": "###0.6775###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40388": { + "content": "###0.6777###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40389": { + "content": "###0.6779###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40390": { + "content": "###0.6781###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40391": { + "content": "###0.6783###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40392": { + "content": "###0.6785###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40393": { + "content": "###0.6787###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40394": { + "content": "###0.6789###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40395": { + "content": "###0.6791###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40396": { + "content": "###0.6793###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40397": { + "content": "###0.6795###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40398": { + "content": "###0.6797###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40399": { + "content": "###0.6799###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40400": { + "content": "###0.6801###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40401": { + "content": "###0.6803###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40402": { + "content": "###0.6805###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40403": { + "content": "###0.6807###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40404": { + "content": "###0.6809###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40405": { + "content": "###0.6811###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40406": { + "content": "###0.6813###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40407": { + "content": "###0.6815###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40408": { + "content": "###0.6817###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40409": { + "content": "###0.6819###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40410": { + "content": "###0.6821###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40411": { + "content": "###0.6823###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40412": { + "content": "###0.6825###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40413": { + "content": "###0.6827###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40414": { + "content": "###0.6829###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40415": { + "content": "###0.6831###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40416": { + "content": "###0.6833###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40417": { + "content": "###0.6835###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40418": { + "content": "###0.6837###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40419": { + "content": "###0.6839###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40420": { + "content": "###0.6841###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40421": { + "content": "###0.6843###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40422": { + "content": "###0.6845###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40423": { + "content": "###0.6847###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40424": { + "content": "###0.6849###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40425": { + "content": "###0.6851###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40426": { + "content": "###0.6853###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40427": { + "content": "###0.6855###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40428": { + "content": "###0.6857###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40429": { + "content": "###0.6859###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40430": { + "content": "###0.6861###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40431": { + "content": "###0.6863###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40432": { + "content": "###0.6865###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40433": { + "content": "###0.6867###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40434": { + "content": "###0.6869###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40435": { + "content": "###0.6871###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40436": { + "content": "###0.6873###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40437": { + "content": "###0.6875###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40438": { + "content": "###0.6877###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40439": { + "content": "###0.6879###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40440": { + "content": "###0.6881###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40441": { + "content": "###0.6883###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40442": { + "content": "###0.6885###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40443": { + "content": "###0.6887###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40444": { + "content": "###0.6889###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40445": { + "content": "###0.6891###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40446": { + "content": "###0.6893###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40447": { + "content": "###0.6895###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40448": { + "content": "###0.6897###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40449": { + "content": "###0.6899###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40450": { + "content": "###0.6901###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40451": { + "content": "###0.6903###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40452": { + "content": "###0.6905###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40453": { + "content": "###0.6907###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40454": { + "content": "###0.6909###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40455": { + "content": "###0.6911###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40456": { + "content": "###0.6913###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40457": { + "content": "###0.6915###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40458": { + "content": "###0.6917###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40459": { + "content": "###0.6919###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40460": { + "content": "###0.6921###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40461": { + "content": "###0.6923###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40462": { + "content": "###0.6925###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40463": { + "content": "###0.6927###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40464": { + "content": "###0.6929###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40465": { + "content": "###0.6931###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40466": { + "content": "###0.6933###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40467": { + "content": "###0.6935###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40468": { + "content": "###0.6937###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40469": { + "content": "###0.6939###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40470": { + "content": "###0.6941###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40471": { + "content": "###0.6943###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40472": { + "content": "###0.6945###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40473": { + "content": "###0.6947###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40474": { + "content": "###0.6949###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40475": { + "content": "###0.6951###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40476": { + "content": "###0.6953###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40477": { + "content": "###0.6955###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40478": { + "content": "###0.6957###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40479": { + "content": "###0.6959###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40480": { + "content": "###0.6961###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40481": { + "content": "###0.6963###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40482": { + "content": "###0.6965###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40483": { + "content": "###0.6967###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40484": { + "content": "###0.6969###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40485": { + "content": "###0.6971###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40486": { + "content": "###0.6973###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40487": { + "content": "###0.6975###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40488": { + "content": "###0.6977###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40489": { + "content": "###0.6979###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40490": { + "content": "###0.6981###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40491": { + "content": "###0.6983###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40492": { + "content": "###0.6985###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40493": { + "content": "###0.6987###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40494": { + "content": "###0.6989###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40495": { + "content": "###0.6991###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40496": { + "content": "###0.6993###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40497": { + "content": "###0.6995###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40498": { + "content": "###0.6997###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40499": { + "content": "###0.6999###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40500": { + "content": "###0.7001###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40501": { + "content": "###0.7003###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40502": { + "content": "###0.7005###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40503": { + "content": "###0.7007###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40504": { + "content": "###0.7009###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40505": { + "content": "###0.7011###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40506": { + "content": "###0.7013###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40507": { + "content": "###0.7015###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40508": { + "content": "###0.7017###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40509": { + "content": "###0.7019###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40510": { + "content": "###0.7021###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40511": { + "content": "###0.7023###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40512": { + "content": "###0.7025###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40513": { + "content": "###0.7027###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40514": { + "content": "###0.7029###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40515": { + "content": "###0.7031###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40516": { + "content": "###0.7033###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40517": { + "content": "###0.7035###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40518": { + "content": "###0.7037###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40519": { + "content": "###0.7039###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40520": { + "content": "###0.7041###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40521": { + "content": "###0.7043###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40522": { + "content": "###0.7045###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40523": { + "content": "###0.7047###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40524": { + "content": "###0.7049###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40525": { + "content": "###0.7051###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40526": { + "content": "###0.7053###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40527": { + "content": "###0.7055###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40528": { + "content": "###0.7057###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40529": { + "content": "###0.7059###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40530": { + "content": "###0.7061###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40531": { + "content": "###0.7063###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40532": { + "content": "###0.7065###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40533": { + "content": "###0.7067###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40534": { + "content": "###0.7069###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40535": { + "content": "###0.7071###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40536": { + "content": "###0.7073###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40537": { + "content": "###0.7075###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40538": { + "content": "###0.7077###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40539": { + "content": "###0.7079###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40540": { + "content": "###0.7081###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40541": { + "content": "###0.7083###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40542": { + "content": "###0.7085###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40543": { + "content": "###0.7087###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40544": { + "content": "###0.7089###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40545": { + "content": "###0.7091###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40546": { + "content": "###0.7093###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40547": { + "content": "###0.7095###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40548": { + "content": "###0.7097###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40549": { + "content": "###0.7099###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40550": { + "content": "###0.7101###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40551": { + "content": "###0.7103###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40552": { + "content": "###0.7105###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40553": { + "content": "###0.7107###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40554": { + "content": "###0.7109###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40555": { + "content": "###0.7111###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40556": { + "content": "###0.7113###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40557": { + "content": "###0.7115###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40558": { + "content": "###0.7117###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40559": { + "content": "###0.7119###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40560": { + "content": "###0.7121###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40561": { + "content": "###0.7123###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40562": { + "content": "###0.7125###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40563": { + "content": "###0.7127###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40564": { + "content": "###0.7129###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40565": { + "content": "###0.7131###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40566": { + "content": "###0.7133###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40567": { + "content": "###0.7135###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40568": { + "content": "###0.7137###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40569": { + "content": "###0.7139###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40570": { + "content": "###0.7141###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40571": { + "content": "###0.7143###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40572": { + "content": "###0.7145###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40573": { + "content": "###0.7147###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40574": { + "content": "###0.7149###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40575": { + "content": "###0.7151###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40576": { + "content": "###0.7153###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40577": { + "content": "###0.7155###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40578": { + "content": "###0.7157###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40579": { + "content": "###0.7159###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40580": { + "content": "###0.7161###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40581": { + "content": "###0.7163###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40582": { + "content": "###0.7165###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40583": { + "content": "###0.7167###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40584": { + "content": "###0.7169###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40585": { + "content": "###0.7171###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40586": { + "content": "###0.7173###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40587": { + "content": "###0.7175###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40588": { + "content": "###0.7177###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40589": { + "content": "###0.7179###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40590": { + "content": "###0.7181###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40591": { + "content": "###0.7183###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40592": { + "content": "###0.7185###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40593": { + "content": "###0.7187###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40594": { + "content": "###0.7189###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40595": { + "content": "###0.7191###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40596": { + "content": "###0.7193###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40597": { + "content": "###0.7195###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40598": { + "content": "###0.7197###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40599": { + "content": "###0.7199###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40600": { + "content": "###0.7201###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40601": { + "content": "###0.7203###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40602": { + "content": "###0.7205###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40603": { + "content": "###0.7207###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40604": { + "content": "###0.7209###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40605": { + "content": "###0.7211###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40606": { + "content": "###0.7213###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40607": { + "content": "###0.7215###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40608": { + "content": "###0.7217###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40609": { + "content": "###0.7219###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40610": { + "content": "###0.7221###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40611": { + "content": "###0.7223###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40612": { + "content": "###0.7225###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40613": { + "content": "###0.7227###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40614": { + "content": "###0.7229###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40615": { + "content": "###0.7231###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40616": { + "content": "###0.7233###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40617": { + "content": "###0.7235###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40618": { + "content": "###0.7237###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40619": { + "content": "###0.7239###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40620": { + "content": "###0.7241###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40621": { + "content": "###0.7243###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40622": { + "content": "###0.7245###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40623": { + "content": "###0.7247###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40624": { + "content": "###0.7249###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40625": { + "content": "###0.7251###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40626": { + "content": "###0.7253###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40627": { + "content": "###0.7255###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40628": { + "content": "###0.7257###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40629": { + "content": "###0.7259###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40630": { + "content": "###0.7261###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40631": { + "content": "###0.7263###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40632": { + "content": "###0.7265###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40633": { + "content": "###0.7267###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40634": { + "content": "###0.7269###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40635": { + "content": "###0.7271###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40636": { + "content": "###0.7273###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40637": { + "content": "###0.7275###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40638": { + "content": "###0.7277###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40639": { + "content": "###0.7279###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40640": { + "content": "###0.7281###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40641": { + "content": "###0.7283###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40642": { + "content": "###0.7285###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40643": { + "content": "###0.7287###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40644": { + "content": "###0.7289###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40645": { + "content": "###0.7291###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40646": { + "content": "###0.7293###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40647": { + "content": "###0.7295###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40648": { + "content": "###0.7297###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40649": { + "content": "###0.7299###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40650": { + "content": "###0.7301###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40651": { + "content": "###0.7303###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40652": { + "content": "###0.7305###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40653": { + "content": "###0.7307###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40654": { + "content": "###0.7309###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40655": { + "content": "###0.7311###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40656": { + "content": "###0.7313###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40657": { + "content": "###0.7315###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40658": { + "content": "###0.7317###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40659": { + "content": "###0.7319###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40660": { + "content": "###0.7321###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40661": { + "content": "###0.7323###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40662": { + "content": "###0.7325###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40663": { + "content": "###0.7327###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40664": { + "content": "###0.7329###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40665": { + "content": "###0.7331###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40666": { + "content": "###0.7333###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40667": { + "content": "###0.7335###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40668": { + "content": "###0.7337###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40669": { + "content": "###0.7339###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40670": { + "content": "###0.7341###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40671": { + "content": "###0.7343###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40672": { + "content": "###0.7345###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40673": { + "content": "###0.7347###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40674": { + "content": "###0.7349###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40675": { + "content": "###0.7351###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40676": { + "content": "###0.7353###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40677": { + "content": "###0.7355###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40678": { + "content": "###0.7357###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40679": { + "content": "###0.7359###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40680": { + "content": "###0.7361###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40681": { + "content": "###0.7363###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40682": { + "content": "###0.7365###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40683": { + "content": "###0.7367###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40684": { + "content": "###0.7369###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40685": { + "content": "###0.7371###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40686": { + "content": "###0.7373###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40687": { + "content": "###0.7375###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40688": { + "content": "###0.7377###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40689": { + "content": "###0.7379###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40690": { + "content": "###0.7381###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40691": { + "content": "###0.7383###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40692": { + "content": "###0.7385###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40693": { + "content": "###0.7387###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40694": { + "content": "###0.7389###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40695": { + "content": "###0.7391###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40696": { + "content": "###0.7393###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40697": { + "content": "###0.7395###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40698": { + "content": "###0.7397###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40699": { + "content": "###0.7399###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40700": { + "content": "###0.7401###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40701": { + "content": "###0.7403###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40702": { + "content": "###0.7405###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40703": { + "content": "###0.7407###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40704": { + "content": "###0.7409###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40705": { + "content": "###0.7411###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40706": { + "content": "###0.7413###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40707": { + "content": "###0.7415###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40708": { + "content": "###0.7417###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40709": { + "content": "###0.7419###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40710": { + "content": "###0.7421###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40711": { + "content": "###0.7423###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40712": { + "content": "###0.7425###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40713": { + "content": "###0.7427###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40714": { + "content": "###0.7429###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40715": { + "content": "###0.7431###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40716": { + "content": "###0.7433###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40717": { + "content": "###0.7435###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40718": { + "content": "###0.7437###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40719": { + "content": "###0.7439###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40720": { + "content": "###0.7441###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40721": { + "content": "###0.7443###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40722": { + "content": "###0.7445###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40723": { + "content": "###0.7447###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40724": { + "content": "###0.7449###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40725": { + "content": "###0.7451###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40726": { + "content": "###0.7453###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40727": { + "content": "###0.7455###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40728": { + "content": "###0.7457###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40729": { + "content": "###0.7459###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40730": { + "content": "###0.7461###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40731": { + "content": "###0.7463###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40732": { + "content": "###0.7465###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40733": { + "content": "###0.7467###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40734": { + "content": "###0.7469###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40735": { + "content": "###0.7471###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40736": { + "content": "###0.7473###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40737": { + "content": "###0.7475###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40738": { + "content": "###0.7477###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40739": { + "content": "###0.7479###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40740": { + "content": "###0.7481###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40741": { + "content": "###0.7483###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40742": { + "content": "###0.7485###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40743": { + "content": "###0.7487###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40744": { + "content": "###0.7489###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40745": { + "content": "###0.7491###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40746": { + "content": "###0.7493###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40747": { + "content": "###0.7495###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40748": { + "content": "###0.7497###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40749": { + "content": "###0.7499###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40750": { + "content": "###0.7501###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40751": { + "content": "###0.7503###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40752": { + "content": "###0.7505###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40753": { + "content": "###0.7507###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40754": { + "content": "###0.7509###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40755": { + "content": "###0.7511###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40756": { + "content": "###0.7513###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40757": { + "content": "###0.7515###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40758": { + "content": "###0.7517###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40759": { + "content": "###0.7519###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40760": { + "content": "###0.7521###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40761": { + "content": "###0.7523###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40762": { + "content": "###0.7525###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40763": { + "content": "###0.7527###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40764": { + "content": "###0.7529###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40765": { + "content": "###0.7531###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40766": { + "content": "###0.7533###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40767": { + "content": "###0.7535###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40768": { + "content": "###0.7537###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40769": { + "content": "###0.7539###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40770": { + "content": "###0.7541###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40771": { + "content": "###0.7543###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40772": { + "content": "###0.7545###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40773": { + "content": "###0.7547###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40774": { + "content": "###0.7549###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40775": { + "content": "###0.7551###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40776": { + "content": "###0.7553###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40777": { + "content": "###0.7555###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40778": { + "content": "###0.7557###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40779": { + "content": "###0.7559###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40780": { + "content": "###0.7561###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40781": { + "content": "###0.7563###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40782": { + "content": "###0.7565###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40783": { + "content": "###0.7567###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40784": { + "content": "###0.7569###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40785": { + "content": "###0.7571###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40786": { + "content": "###0.7573###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40787": { + "content": "###0.7575###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40788": { + "content": "###0.7577###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40789": { + "content": "###0.7579###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40790": { + "content": "###0.7581###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40791": { + "content": "###0.7583###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40792": { + "content": "###0.7585###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40793": { + "content": "###0.7587###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40794": { + "content": "###0.7589###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40795": { + "content": "###0.7591###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40796": { + "content": "###0.7593###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40797": { + "content": "###0.7595###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40798": { + "content": "###0.7597###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40799": { + "content": "###0.7599###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40800": { + "content": "###0.7601###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40801": { + "content": "###0.7603###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40802": { + "content": "###0.7605###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40803": { + "content": "###0.7607###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40804": { + "content": "###0.7609###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40805": { + "content": "###0.7611###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40806": { + "content": "###0.7613###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40807": { + "content": "###0.7615###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40808": { + "content": "###0.7617###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40809": { + "content": "###0.7619###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40810": { + "content": "###0.7621###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40811": { + "content": "###0.7623###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40812": { + "content": "###0.7625###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40813": { + "content": "###0.7627###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40814": { + "content": "###0.7629###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40815": { + "content": "###0.7631###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40816": { + "content": "###0.7633###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40817": { + "content": "###0.7635###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40818": { + "content": "###0.7637###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40819": { + "content": "###0.7639###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40820": { + "content": "###0.7641###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40821": { + "content": "###0.7643###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40822": { + "content": "###0.7645###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40823": { + "content": "###0.7647###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40824": { + "content": "###0.7649###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40825": { + "content": "###0.7651###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40826": { + "content": "###0.7653###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40827": { + "content": "###0.7655###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40828": { + "content": "###0.7657###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40829": { + "content": "###0.7659###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40830": { + "content": "###0.7661###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40831": { + "content": "###0.7663###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40832": { + "content": "###0.7665###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40833": { + "content": "###0.7667###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40834": { + "content": "###0.7669###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40835": { + "content": "###0.7671###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40836": { + "content": "###0.7673###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40837": { + "content": "###0.7675###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40838": { + "content": "###0.7677###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40839": { + "content": "###0.7679###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40840": { + "content": "###0.7681###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40841": { + "content": "###0.7683###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40842": { + "content": "###0.7685###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40843": { + "content": "###0.7687###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40844": { + "content": "###0.7689###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40845": { + "content": "###0.7691###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40846": { + "content": "###0.7693###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40847": { + "content": "###0.7695###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40848": { + "content": "###0.7697###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40849": { + "content": "###0.7699###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40850": { + "content": "###0.7701###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40851": { + "content": "###0.7703###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40852": { + "content": "###0.7705###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40853": { + "content": "###0.7707###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40854": { + "content": "###0.7709###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40855": { + "content": "###0.7711###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40856": { + "content": "###0.7713###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40857": { + "content": "###0.7715###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40858": { + "content": "###0.7717###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40859": { + "content": "###0.7719###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40860": { + "content": "###0.7721###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40861": { + "content": "###0.7723###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40862": { + "content": "###0.7725###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40863": { + "content": "###0.7727###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40864": { + "content": "###0.7729###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40865": { + "content": "###0.7731###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40866": { + "content": "###0.7733###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40867": { + "content": "###0.7735###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40868": { + "content": "###0.7737###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40869": { + "content": "###0.7739###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40870": { + "content": "###0.7741###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40871": { + "content": "###0.7743###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40872": { + "content": "###0.7745###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40873": { + "content": "###0.7747###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40874": { + "content": "###0.7749###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40875": { + "content": "###0.7751###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40876": { + "content": "###0.7753###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40877": { + "content": "###0.7755###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40878": { + "content": "###0.7757###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40879": { + "content": "###0.7759###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40880": { + "content": "###0.7761###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40881": { + "content": "###0.7763###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40882": { + "content": "###0.7765###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40883": { + "content": "###0.7767###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40884": { + "content": "###0.7769###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40885": { + "content": "###0.7771###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40886": { + "content": "###0.7773###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40887": { + "content": "###0.7775###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40888": { + "content": "###0.7777###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40889": { + "content": "###0.7779###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40890": { + "content": "###0.7781###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40891": { + "content": "###0.7783###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40892": { + "content": "###0.7785###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40893": { + "content": "###0.7787###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40894": { + "content": "###0.7789###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40895": { + "content": "###0.7791###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40896": { + "content": "###0.7793###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40897": { + "content": "###0.7795###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40898": { + "content": "###0.7797###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40899": { + "content": "###0.7799###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40900": { + "content": "###0.7801###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40901": { + "content": "###0.7803###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40902": { + "content": "###0.7805###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40903": { + "content": "###0.7807###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40904": { + "content": "###0.7809###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40905": { + "content": "###0.7811###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40906": { + "content": "###0.7813###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40907": { + "content": "###0.7815###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40908": { + "content": "###0.7817###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40909": { + "content": "###0.7819###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40910": { + "content": "###0.7821###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40911": { + "content": "###0.7823###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40912": { + "content": "###0.7825###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40913": { + "content": "###0.7827###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40914": { + "content": "###0.7829###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40915": { + "content": "###0.7831###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40916": { + "content": "###0.7833###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40917": { + "content": "###0.7835###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40918": { + "content": "###0.7837###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40919": { + "content": "###0.7839###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40920": { + "content": "###0.7841###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40921": { + "content": "###0.7843###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40922": { + "content": "###0.7845###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40923": { + "content": "###0.7847###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40924": { + "content": "###0.7849###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40925": { + "content": "###0.7851###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40926": { + "content": "###0.7853###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40927": { + "content": "###0.7855###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40928": { + "content": "###0.7857###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40929": { + "content": "###0.7859###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40930": { + "content": "###0.7861###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40931": { + "content": "###0.7863###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40932": { + "content": "###0.7865###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40933": { + "content": "###0.7867###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40934": { + "content": "###0.7869###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40935": { + "content": "###0.7871###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40936": { + "content": "###0.7873###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40937": { + "content": "###0.7875###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40938": { + "content": "###0.7877###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40939": { + "content": "###0.7879###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40940": { + "content": "###0.7881###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40941": { + "content": "###0.7883###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40942": { + "content": "###0.7885###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40943": { + "content": "###0.7887###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40944": { + "content": "###0.7889###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40945": { + "content": "###0.7891###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40946": { + "content": "###0.7893###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40947": { + "content": "###0.7895###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40948": { + "content": "###0.7897###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40949": { + "content": "###0.7899###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40950": { + "content": "###0.7901###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40951": { + "content": "###0.7903###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40952": { + "content": "###0.7905###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40953": { + "content": "###0.7907###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40954": { + "content": "###0.7909###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40955": { + "content": "###0.7911###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40956": { + "content": "###0.7913###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40957": { + "content": "###0.7915###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40958": { + "content": "###0.7917###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40959": { + "content": "###0.7919###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40960": { + "content": "###0.7921###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40961": { + "content": "###0.7923###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40962": { + "content": "###0.7925###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40963": { + "content": "###0.7927###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40964": { + "content": "###0.7929###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40965": { + "content": "###0.7931###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40966": { + "content": "###0.7933###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40967": { + "content": "###0.7935###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40968": { + "content": "###0.7937###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40969": { + "content": "###0.7939###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40970": { + "content": "###0.7941###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40971": { + "content": "###0.7943###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40972": { + "content": "###0.7945###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40973": { + "content": "###0.7947###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40974": { + "content": "###0.7949###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40975": { + "content": "###0.7951###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40976": { + "content": "###0.7953###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40977": { + "content": "###0.7955###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40978": { + "content": "###0.7957###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40979": { + "content": "###0.7959###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40980": { + "content": "###0.7961###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40981": { + "content": "###0.7963###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40982": { + "content": "###0.7965###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40983": { + "content": "###0.7967###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40984": { + "content": "###0.7969###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40985": { + "content": "###0.7971###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40986": { + "content": "###0.7973###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40987": { + "content": "###0.7975###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40988": { + "content": "###0.7977###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40989": { + "content": "###0.7979###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40990": { + "content": "###0.7981###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40991": { + "content": "###0.7983###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40992": { + "content": "###0.7985###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40993": { + "content": "###0.7987###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40994": { + "content": "###0.7989###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40995": { + "content": "###0.7991###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40996": { + "content": "###0.7993###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40997": { + "content": "###0.7995###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40998": { + "content": "###0.7997###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "40999": { + "content": "###0.7999###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41000": { + "content": "###0.8001###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41001": { + "content": "###0.8003###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41002": { + "content": "###0.8005###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41003": { + "content": "###0.8007###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41004": { + "content": "###0.8009###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41005": { + "content": "###0.8011###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41006": { + "content": "###0.8013###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41007": { + "content": "###0.8015###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41008": { + "content": "###0.8017###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41009": { + "content": "###0.8019###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41010": { + "content": "###0.8021###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41011": { + "content": "###0.8023###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41012": { + "content": "###0.8025###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41013": { + "content": "###0.8027###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41014": { + "content": "###0.8029###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41015": { + "content": "###0.8031###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41016": { + "content": "###0.8033###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41017": { + "content": "###0.8035###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41018": { + "content": "###0.8037###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41019": { + "content": "###0.8039###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41020": { + "content": "###0.8041###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41021": { + "content": "###0.8043###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41022": { + "content": "###0.8045###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41023": { + "content": "###0.8047###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41024": { + "content": "###0.8049###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41025": { + "content": "###0.8051###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41026": { + "content": "###0.8053###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41027": { + "content": "###0.8055###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41028": { + "content": "###0.8057###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41029": { + "content": "###0.8059###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41030": { + "content": "###0.8061###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41031": { + "content": "###0.8063###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41032": { + "content": "###0.8065###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41033": { + "content": "###0.8067###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41034": { + "content": "###0.8069###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41035": { + "content": "###0.8071###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41036": { + "content": "###0.8073###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41037": { + "content": "###0.8075###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41038": { + "content": "###0.8077###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41039": { + "content": "###0.8079###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41040": { + "content": "###0.8081###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41041": { + "content": "###0.8083###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41042": { + "content": "###0.8085###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41043": { + "content": "###0.8087###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41044": { + "content": "###0.8089###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41045": { + "content": "###0.8091###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41046": { + "content": "###0.8093###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41047": { + "content": "###0.8095###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41048": { + "content": "###0.8097###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41049": { + "content": "###0.8099###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41050": { + "content": "###0.8101###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41051": { + "content": "###0.8103###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41052": { + "content": "###0.8105###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41053": { + "content": "###0.8107###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41054": { + "content": "###0.8109###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41055": { + "content": "###0.8111###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41056": { + "content": "###0.8113###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41057": { + "content": "###0.8115###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41058": { + "content": "###0.8117###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41059": { + "content": "###0.8119###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41060": { + "content": "###0.8121###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41061": { + "content": "###0.8123###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41062": { + "content": "###0.8125###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41063": { + "content": "###0.8127###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41064": { + "content": "###0.8129###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41065": { + "content": "###0.8131###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41066": { + "content": "###0.8133###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41067": { + "content": "###0.8135###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41068": { + "content": "###0.8137###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41069": { + "content": "###0.8139###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41070": { + "content": "###0.8141###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41071": { + "content": "###0.8143###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41072": { + "content": "###0.8145###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41073": { + "content": "###0.8147###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41074": { + "content": "###0.8149###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41075": { + "content": "###0.8151###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41076": { + "content": "###0.8153###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41077": { + "content": "###0.8155###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41078": { + "content": "###0.8157###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41079": { + "content": "###0.8159###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41080": { + "content": "###0.8161###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41081": { + "content": "###0.8163###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41082": { + "content": "###0.8165###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41083": { + "content": "###0.8167###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41084": { + "content": "###0.8169###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41085": { + "content": "###0.8171###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41086": { + "content": "###0.8173###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41087": { + "content": "###0.8175###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41088": { + "content": "###0.8177###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41089": { + "content": "###0.8179###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41090": { + "content": "###0.8181###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41091": { + "content": "###0.8183###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41092": { + "content": "###0.8185###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41093": { + "content": "###0.8187###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41094": { + "content": "###0.8189###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41095": { + "content": "###0.8191###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41096": { + "content": "###0.8193###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41097": { + "content": "###0.8195###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41098": { + "content": "###0.8197###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41099": { + "content": "###0.8199###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41100": { + "content": "###0.8201###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41101": { + "content": "###0.8203###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41102": { + "content": "###0.8205###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41103": { + "content": "###0.8207###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41104": { + "content": "###0.8209###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41105": { + "content": "###0.8211###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41106": { + "content": "###0.8213###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41107": { + "content": "###0.8215###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41108": { + "content": "###0.8217###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41109": { + "content": "###0.8219###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41110": { + "content": "###0.8221###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41111": { + "content": "###0.8223###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41112": { + "content": "###0.8225###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41113": { + "content": "###0.8227###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41114": { + "content": "###0.8229###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41115": { + "content": "###0.8231###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41116": { + "content": "###0.8233###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41117": { + "content": "###0.8235###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41118": { + "content": "###0.8237###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41119": { + "content": "###0.8239###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41120": { + "content": "###0.8241###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41121": { + "content": "###0.8243###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41122": { + "content": "###0.8245###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41123": { + "content": "###0.8247###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41124": { + "content": "###0.8249###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41125": { + "content": "###0.8251###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41126": { + "content": "###0.8253###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41127": { + "content": "###0.8255###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41128": { + "content": "###0.8257###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41129": { + "content": "###0.8259###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41130": { + "content": "###0.8261###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41131": { + "content": "###0.8263###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41132": { + "content": "###0.8265###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41133": { + "content": "###0.8267###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41134": { + "content": "###0.8269###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41135": { + "content": "###0.8271###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41136": { + "content": "###0.8273###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41137": { + "content": "###0.8275###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41138": { + "content": "###0.8277###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41139": { + "content": "###0.8279###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41140": { + "content": "###0.8281###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41141": { + "content": "###0.8283###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41142": { + "content": "###0.8285###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41143": { + "content": "###0.8287###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41144": { + "content": "###0.8289###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41145": { + "content": "###0.8291###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41146": { + "content": "###0.8293###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41147": { + "content": "###0.8295###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41148": { + "content": "###0.8297###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41149": { + "content": "###0.8299###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41150": { + "content": "###0.8301###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41151": { + "content": "###0.8303###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41152": { + "content": "###0.8305###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41153": { + "content": "###0.8307###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41154": { + "content": "###0.8309###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41155": { + "content": "###0.8311###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41156": { + "content": "###0.8313###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41157": { + "content": "###0.8315###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41158": { + "content": "###0.8317###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41159": { + "content": "###0.8319###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41160": { + "content": "###0.8321###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41161": { + "content": "###0.8323###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41162": { + "content": "###0.8325###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41163": { + "content": "###0.8327###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41164": { + "content": "###0.8329###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41165": { + "content": "###0.8331###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41166": { + "content": "###0.8333###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41167": { + "content": "###0.8335###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41168": { + "content": "###0.8337###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41169": { + "content": "###0.8339###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41170": { + "content": "###0.8341###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41171": { + "content": "###0.8343###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41172": { + "content": "###0.8345###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41173": { + "content": "###0.8347###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41174": { + "content": "###0.8349###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41175": { + "content": "###0.8351###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41176": { + "content": "###0.8353###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41177": { + "content": "###0.8355###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41178": { + "content": "###0.8357###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41179": { + "content": "###0.8359###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41180": { + "content": "###0.8361###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41181": { + "content": "###0.8363###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41182": { + "content": "###0.8365###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41183": { + "content": "###0.8367###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41184": { + "content": "###0.8369###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41185": { + "content": "###0.8371###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41186": { + "content": "###0.8373###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41187": { + "content": "###0.8375###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41188": { + "content": "###0.8377###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41189": { + "content": "###0.8379###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41190": { + "content": "###0.8381###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41191": { + "content": "###0.8383###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41192": { + "content": "###0.8385###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41193": { + "content": "###0.8387###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41194": { + "content": "###0.8389###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41195": { + "content": "###0.8391###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41196": { + "content": "###0.8393###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41197": { + "content": "###0.8395###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41198": { + "content": "###0.8397###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41199": { + "content": "###0.8399###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41200": { + "content": "###0.8401###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41201": { + "content": "###0.8403###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41202": { + "content": "###0.8405###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41203": { + "content": "###0.8407###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41204": { + "content": "###0.8409###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41205": { + "content": "###0.8411###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41206": { + "content": "###0.8413###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41207": { + "content": "###0.8415###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41208": { + "content": "###0.8417###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41209": { + "content": "###0.8419###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41210": { + "content": "###0.8421###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41211": { + "content": "###0.8423###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41212": { + "content": "###0.8425###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41213": { + "content": "###0.8427###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41214": { + "content": "###0.8429###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41215": { + "content": "###0.8431###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41216": { + "content": "###0.8433###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41217": { + "content": "###0.8435###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41218": { + "content": "###0.8437###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41219": { + "content": "###0.8439###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41220": { + "content": "###0.8441###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41221": { + "content": "###0.8443###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41222": { + "content": "###0.8445###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41223": { + "content": "###0.8447###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41224": { + "content": "###0.8449###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41225": { + "content": "###0.8451###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41226": { + "content": "###0.8453###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41227": { + "content": "###0.8455###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41228": { + "content": "###0.8457###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41229": { + "content": "###0.8459###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41230": { + "content": "###0.8461###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41231": { + "content": "###0.8463###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41232": { + "content": "###0.8465###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41233": { + "content": "###0.8467###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41234": { + "content": "###0.8469###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41235": { + "content": "###0.8471###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41236": { + "content": "###0.8473###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41237": { + "content": "###0.8475###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41238": { + "content": "###0.8477###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41239": { + "content": "###0.8479###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41240": { + "content": "###0.8481###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41241": { + "content": "###0.8483###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41242": { + "content": "###0.8485###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41243": { + "content": "###0.8487###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41244": { + "content": "###0.8489###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41245": { + "content": "###0.8491###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41246": { + "content": "###0.8493###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41247": { + "content": "###0.8495###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41248": { + "content": "###0.8497###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41249": { + "content": "###0.8499###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41250": { + "content": "###0.8501###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41251": { + "content": "###0.8503###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41252": { + "content": "###0.8505###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41253": { + "content": "###0.8507###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41254": { + "content": "###0.8509###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41255": { + "content": "###0.8511###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41256": { + "content": "###0.8513###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41257": { + "content": "###0.8515###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41258": { + "content": "###0.8517###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41259": { + "content": "###0.8519###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41260": { + "content": "###0.8521###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41261": { + "content": "###0.8523###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41262": { + "content": "###0.8525###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41263": { + "content": "###0.8527###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41264": { + "content": "###0.8529###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41265": { + "content": "###0.8531###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41266": { + "content": "###0.8533###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41267": { + "content": "###0.8535###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41268": { + "content": "###0.8537###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41269": { + "content": "###0.8539###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41270": { + "content": "###0.8541###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41271": { + "content": "###0.8543###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41272": { + "content": "###0.8545###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41273": { + "content": "###0.8547###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41274": { + "content": "###0.8549###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41275": { + "content": "###0.8551###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41276": { + "content": "###0.8553###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41277": { + "content": "###0.8555###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41278": { + "content": "###0.8557###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41279": { + "content": "###0.8559###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41280": { + "content": "###0.8561###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41281": { + "content": "###0.8563###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41282": { + "content": "###0.8565###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41283": { + "content": "###0.8567###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41284": { + "content": "###0.8569###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41285": { + "content": "###0.8571###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41286": { + "content": "###0.8573###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41287": { + "content": "###0.8575###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41288": { + "content": "###0.8577###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41289": { + "content": "###0.8579###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41290": { + "content": "###0.8581###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41291": { + "content": "###0.8583###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41292": { + "content": "###0.8585###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41293": { + "content": "###0.8587###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41294": { + "content": "###0.8589###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41295": { + "content": "###0.8591###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41296": { + "content": "###0.8593###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41297": { + "content": "###0.8595###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41298": { + "content": "###0.8597###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41299": { + "content": "###0.8599###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41300": { + "content": "###0.8601###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41301": { + "content": "###0.8603###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41302": { + "content": "###0.8605###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41303": { + "content": "###0.8607###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41304": { + "content": "###0.8609###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41305": { + "content": "###0.8611###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41306": { + "content": "###0.8613###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41307": { + "content": "###0.8615###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41308": { + "content": "###0.8617###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41309": { + "content": "###0.8619###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41310": { + "content": "###0.8621###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41311": { + "content": "###0.8623###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41312": { + "content": "###0.8625###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41313": { + "content": "###0.8627###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41314": { + "content": "###0.8629###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41315": { + "content": "###0.8631###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41316": { + "content": "###0.8633###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41317": { + "content": "###0.8635###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41318": { + "content": "###0.8637###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41319": { + "content": "###0.8639###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41320": { + "content": "###0.8641###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41321": { + "content": "###0.8643###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41322": { + "content": "###0.8645###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41323": { + "content": "###0.8647###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41324": { + "content": "###0.8649###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41325": { + "content": "###0.8651###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41326": { + "content": "###0.8653###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41327": { + "content": "###0.8655###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41328": { + "content": "###0.8657###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41329": { + "content": "###0.8659###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41330": { + "content": "###0.8661###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41331": { + "content": "###0.8663###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41332": { + "content": "###0.8665###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41333": { + "content": "###0.8667###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41334": { + "content": "###0.8669###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41335": { + "content": "###0.8671###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41336": { + "content": "###0.8673###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41337": { + "content": "###0.8675###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41338": { + "content": "###0.8677###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41339": { + "content": "###0.8679###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41340": { + "content": "###0.8681###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41341": { + "content": "###0.8683###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41342": { + "content": "###0.8685###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41343": { + "content": "###0.8687###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41344": { + "content": "###0.8689###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41345": { + "content": "###0.8691###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41346": { + "content": "###0.8693###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41347": { + "content": "###0.8695###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41348": { + "content": "###0.8697###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41349": { + "content": "###0.8699###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41350": { + "content": "###0.8701###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41351": { + "content": "###0.8703###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41352": { + "content": "###0.8705###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41353": { + "content": "###0.8707###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41354": { + "content": "###0.8709###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41355": { + "content": "###0.8711###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41356": { + "content": "###0.8713###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41357": { + "content": "###0.8715###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41358": { + "content": "###0.8717###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41359": { + "content": "###0.8719###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41360": { + "content": "###0.8721###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41361": { + "content": "###0.8723###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41362": { + "content": "###0.8725###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41363": { + "content": "###0.8727###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41364": { + "content": "###0.8729###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41365": { + "content": "###0.8731###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41366": { + "content": "###0.8733###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41367": { + "content": "###0.8735###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41368": { + "content": "###0.8737###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41369": { + "content": "###0.8739###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41370": { + "content": "###0.8741###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41371": { + "content": "###0.8743###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41372": { + "content": "###0.8745###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41373": { + "content": "###0.8747###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41374": { + "content": "###0.8749###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41375": { + "content": "###0.8751###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41376": { + "content": "###0.8753###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41377": { + "content": "###0.8755###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41378": { + "content": "###0.8757###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41379": { + "content": "###0.8759###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41380": { + "content": "###0.8761###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41381": { + "content": "###0.8763###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41382": { + "content": "###0.8765###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41383": { + "content": "###0.8767###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41384": { + "content": "###0.8769###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41385": { + "content": "###0.8771###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41386": { + "content": "###0.8773###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41387": { + "content": "###0.8775###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41388": { + "content": "###0.8777###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41389": { + "content": "###0.8779###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41390": { + "content": "###0.8781###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41391": { + "content": "###0.8783###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41392": { + "content": "###0.8785###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41393": { + "content": "###0.8787###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41394": { + "content": "###0.8789###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41395": { + "content": "###0.8791###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41396": { + "content": "###0.8793###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41397": { + "content": "###0.8795###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41398": { + "content": "###0.8797###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41399": { + "content": "###0.8799###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41400": { + "content": "###0.8801###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41401": { + "content": "###0.8803###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41402": { + "content": "###0.8805###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41403": { + "content": "###0.8807###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41404": { + "content": "###0.8809###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41405": { + "content": "###0.8811###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41406": { + "content": "###0.8813###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41407": { + "content": "###0.8815###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41408": { + "content": "###0.8817###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41409": { + "content": "###0.8819###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41410": { + "content": "###0.8821###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41411": { + "content": "###0.8823###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41412": { + "content": "###0.8825###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41413": { + "content": "###0.8827###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41414": { + "content": "###0.8829###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41415": { + "content": "###0.8831###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41416": { + "content": "###0.8833###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41417": { + "content": "###0.8835###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41418": { + "content": "###0.8837###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41419": { + "content": "###0.8839###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41420": { + "content": "###0.8841###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41421": { + "content": "###0.8843###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41422": { + "content": "###0.8845###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41423": { + "content": "###0.8847###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41424": { + "content": "###0.8849###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41425": { + "content": "###0.8851###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41426": { + "content": "###0.8853###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41427": { + "content": "###0.8855###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41428": { + "content": "###0.8857###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41429": { + "content": "###0.8859###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41430": { + "content": "###0.8861###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41431": { + "content": "###0.8863###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41432": { + "content": "###0.8865###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41433": { + "content": "###0.8867###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41434": { + "content": "###0.8869###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41435": { + "content": "###0.8871###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41436": { + "content": "###0.8873###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41437": { + "content": "###0.8875###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41438": { + "content": "###0.8877###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41439": { + "content": "###0.8879###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41440": { + "content": "###0.8881###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41441": { + "content": "###0.8883###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41442": { + "content": "###0.8885###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41443": { + "content": "###0.8887###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41444": { + "content": "###0.8889###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41445": { + "content": "###0.8891###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41446": { + "content": "###0.8893###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41447": { + "content": "###0.8895###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41448": { + "content": "###0.8897###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41449": { + "content": "###0.8899###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41450": { + "content": "###0.8901###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41451": { + "content": "###0.8903###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41452": { + "content": "###0.8905###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41453": { + "content": "###0.8907###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41454": { + "content": "###0.8909###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41455": { + "content": "###0.8911###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41456": { + "content": "###0.8913###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41457": { + "content": "###0.8915###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41458": { + "content": "###0.8917###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41459": { + "content": "###0.8919###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41460": { + "content": "###0.8921###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41461": { + "content": "###0.8923###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41462": { + "content": "###0.8925###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41463": { + "content": "###0.8927###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41464": { + "content": "###0.8929###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41465": { + "content": "###0.8931###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41466": { + "content": "###0.8933###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41467": { + "content": "###0.8935###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41468": { + "content": "###0.8937###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41469": { + "content": "###0.8939###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41470": { + "content": "###0.8941###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41471": { + "content": "###0.8943###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41472": { + "content": "###0.8945###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41473": { + "content": "###0.8947###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41474": { + "content": "###0.8949###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41475": { + "content": "###0.8951###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41476": { + "content": "###0.8953###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41477": { + "content": "###0.8955###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41478": { + "content": "###0.8957###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41479": { + "content": "###0.8959###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41480": { + "content": "###0.8961###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41481": { + "content": "###0.8963###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41482": { + "content": "###0.8965###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41483": { + "content": "###0.8967###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41484": { + "content": "###0.8969###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41485": { + "content": "###0.8971###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41486": { + "content": "###0.8973###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41487": { + "content": "###0.8975###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41488": { + "content": "###0.8977###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41489": { + "content": "###0.8979###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41490": { + "content": "###0.8981###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41491": { + "content": "###0.8983###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41492": { + "content": "###0.8985###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41493": { + "content": "###0.8987###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41494": { + "content": "###0.8989###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41495": { + "content": "###0.8991###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41496": { + "content": "###0.8993###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41497": { + "content": "###0.8995###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41498": { + "content": "###0.8997###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41499": { + "content": "###0.8999###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41500": { + "content": "###0.9001###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41501": { + "content": "###0.9003###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41502": { + "content": "###0.9005###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41503": { + "content": "###0.9007###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41504": { + "content": "###0.9009###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41505": { + "content": "###0.9011###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41506": { + "content": "###0.9013###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41507": { + "content": "###0.9015###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41508": { + "content": "###0.9017###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41509": { + "content": "###0.9019###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41510": { + "content": "###0.9021###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41511": { + "content": "###0.9023###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41512": { + "content": "###0.9025###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41513": { + "content": "###0.9027###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41514": { + "content": "###0.9029###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41515": { + "content": "###0.9031###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41516": { + "content": "###0.9033###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41517": { + "content": "###0.9035###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41518": { + "content": "###0.9037###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41519": { + "content": "###0.9039###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41520": { + "content": "###0.9041###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41521": { + "content": "###0.9043###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41522": { + "content": "###0.9045###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41523": { + "content": "###0.9047###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41524": { + "content": "###0.9049###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41525": { + "content": "###0.9051###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41526": { + "content": "###0.9053###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41527": { + "content": "###0.9055###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41528": { + "content": "###0.9057###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41529": { + "content": "###0.9059###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41530": { + "content": "###0.9061###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41531": { + "content": "###0.9063###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41532": { + "content": "###0.9065###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41533": { + "content": "###0.9067###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41534": { + "content": "###0.9069###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41535": { + "content": "###0.9071###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41536": { + "content": "###0.9073###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41537": { + "content": "###0.9075###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41538": { + "content": "###0.9077###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41539": { + "content": "###0.9079###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41540": { + "content": "###0.9081###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41541": { + "content": "###0.9083###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41542": { + "content": "###0.9085###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41543": { + "content": "###0.9087###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41544": { + "content": "###0.9089###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41545": { + "content": "###0.9091###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41546": { + "content": "###0.9093###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41547": { + "content": "###0.9095###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41548": { + "content": "###0.9097###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41549": { + "content": "###0.9099###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41550": { + "content": "###0.9101###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41551": { + "content": "###0.9103###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41552": { + "content": "###0.9105###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41553": { + "content": "###0.9107###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41554": { + "content": "###0.9109###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41555": { + "content": "###0.9111###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41556": { + "content": "###0.9113###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41557": { + "content": "###0.9115###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41558": { + "content": "###0.9117###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41559": { + "content": "###0.9119###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41560": { + "content": "###0.9121###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41561": { + "content": "###0.9123###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41562": { + "content": "###0.9125###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41563": { + "content": "###0.9127###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41564": { + "content": "###0.9129###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41565": { + "content": "###0.9131###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41566": { + "content": "###0.9133###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41567": { + "content": "###0.9135###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41568": { + "content": "###0.9137###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41569": { + "content": "###0.9139###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41570": { + "content": "###0.9141###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41571": { + "content": "###0.9143###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41572": { + "content": "###0.9145###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41573": { + "content": "###0.9147###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41574": { + "content": "###0.9149###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41575": { + "content": "###0.9151###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41576": { + "content": "###0.9153###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41577": { + "content": "###0.9155###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41578": { + "content": "###0.9157###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41579": { + "content": "###0.9159###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41580": { + "content": "###0.9161###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41581": { + "content": "###0.9163###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41582": { + "content": "###0.9165###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41583": { + "content": "###0.9167###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41584": { + "content": "###0.9169###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41585": { + "content": "###0.9171###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41586": { + "content": "###0.9173###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41587": { + "content": "###0.9175###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41588": { + "content": "###0.9177###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41589": { + "content": "###0.9179###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41590": { + "content": "###0.9181###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41591": { + "content": "###0.9183###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41592": { + "content": "###0.9185###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41593": { + "content": "###0.9187###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41594": { + "content": "###0.9189###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41595": { + "content": "###0.9191###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41596": { + "content": "###0.9193###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41597": { + "content": "###0.9195###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41598": { + "content": "###0.9197###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41599": { + "content": "###0.9199###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41600": { + "content": "###0.9201###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41601": { + "content": "###0.9203###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41602": { + "content": "###0.9205###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41603": { + "content": "###0.9207###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41604": { + "content": "###0.9209###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41605": { + "content": "###0.9211###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41606": { + "content": "###0.9213###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41607": { + "content": "###0.9215###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41608": { + "content": "###0.9217###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41609": { + "content": "###0.9219###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41610": { + "content": "###0.9221###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41611": { + "content": "###0.9223###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41612": { + "content": "###0.9225###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41613": { + "content": "###0.9227###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41614": { + "content": "###0.9229###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41615": { + "content": "###0.9231###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41616": { + "content": "###0.9233###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41617": { + "content": "###0.9235###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41618": { + "content": "###0.9237###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41619": { + "content": "###0.9239###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41620": { + "content": "###0.9241###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41621": { + "content": "###0.9243###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41622": { + "content": "###0.9245###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41623": { + "content": "###0.9247###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41624": { + "content": "###0.9249###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41625": { + "content": "###0.9251###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41626": { + "content": "###0.9253###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41627": { + "content": "###0.9255###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41628": { + "content": "###0.9257###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41629": { + "content": "###0.9259###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41630": { + "content": "###0.9261###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41631": { + "content": "###0.9263###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41632": { + "content": "###0.9265###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41633": { + "content": "###0.9267###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41634": { + "content": "###0.9269###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41635": { + "content": "###0.9271###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41636": { + "content": "###0.9273###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41637": { + "content": "###0.9275###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41638": { + "content": "###0.9277###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41639": { + "content": "###0.9279###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41640": { + "content": "###0.9281###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41641": { + "content": "###0.9283###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41642": { + "content": "###0.9285###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41643": { + "content": "###0.9287###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41644": { + "content": "###0.9289###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41645": { + "content": "###0.9291###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41646": { + "content": "###0.9293###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41647": { + "content": "###0.9295###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41648": { + "content": "###0.9297###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41649": { + "content": "###0.9299###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41650": { + "content": "###0.9301###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41651": { + "content": "###0.9303###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41652": { + "content": "###0.9305###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41653": { + "content": "###0.9307###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41654": { + "content": "###0.9309###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41655": { + "content": "###0.9311###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41656": { + "content": "###0.9313###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41657": { + "content": "###0.9315###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41658": { + "content": "###0.9317###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41659": { + "content": "###0.9319###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41660": { + "content": "###0.9321###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41661": { + "content": "###0.9323###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41662": { + "content": "###0.9325###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41663": { + "content": "###0.9327###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41664": { + "content": "###0.9329###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41665": { + "content": "###0.9331###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41666": { + "content": "###0.9333###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41667": { + "content": "###0.9335###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41668": { + "content": "###0.9337###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41669": { + "content": "###0.9339###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41670": { + "content": "###0.9341###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41671": { + "content": "###0.9343###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41672": { + "content": "###0.9345###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41673": { + "content": "###0.9347###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41674": { + "content": "###0.9349###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41675": { + "content": "###0.9351###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41676": { + "content": "###0.9353###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41677": { + "content": "###0.9355###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41678": { + "content": "###0.9357###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41679": { + "content": "###0.9359###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41680": { + "content": "###0.9361###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41681": { + "content": "###0.9363###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41682": { + "content": "###0.9365###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41683": { + "content": "###0.9367###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41684": { + "content": "###0.9369###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41685": { + "content": "###0.9371###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41686": { + "content": "###0.9373###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41687": { + "content": "###0.9375###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41688": { + "content": "###0.9377###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41689": { + "content": "###0.9379###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41690": { + "content": "###0.9381###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41691": { + "content": "###0.9383###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41692": { + "content": "###0.9385###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41693": { + "content": "###0.9387###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41694": { + "content": "###0.9389###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41695": { + "content": "###0.9391###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41696": { + "content": "###0.9393###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41697": { + "content": "###0.9395###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41698": { + "content": "###0.9397###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41699": { + "content": "###0.9399###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41700": { + "content": "###0.9401###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41701": { + "content": "###0.9403###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41702": { + "content": "###0.9405###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41703": { + "content": "###0.9407###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41704": { + "content": "###0.9409###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41705": { + "content": "###0.9411###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41706": { + "content": "###0.9413###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41707": { + "content": "###0.9415###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41708": { + "content": "###0.9417###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41709": { + "content": "###0.9419###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41710": { + "content": "###0.9421###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41711": { + "content": "###0.9423###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41712": { + "content": "###0.9425###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41713": { + "content": "###0.9427###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41714": { + "content": "###0.9429###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41715": { + "content": "###0.9431###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41716": { + "content": "###0.9433###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41717": { + "content": "###0.9435###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41718": { + "content": "###0.9437###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41719": { + "content": "###0.9439###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41720": { + "content": "###0.9441###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41721": { + "content": "###0.9443###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41722": { + "content": "###0.9445###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41723": { + "content": "###0.9447###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41724": { + "content": "###0.9449###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41725": { + "content": "###0.9451###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41726": { + "content": "###0.9453###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41727": { + "content": "###0.9455###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41728": { + "content": "###0.9457###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41729": { + "content": "###0.9459###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41730": { + "content": "###0.9461###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41731": { + "content": "###0.9463###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41732": { + "content": "###0.9465###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41733": { + "content": "###0.9467###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41734": { + "content": "###0.9469###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41735": { + "content": "###0.9471###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41736": { + "content": "###0.9473###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41737": { + "content": "###0.9475###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41738": { + "content": "###0.9477###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41739": { + "content": "###0.9479###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41740": { + "content": "###0.9481###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41741": { + "content": "###0.9483###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41742": { + "content": "###0.9485###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41743": { + "content": "###0.9487###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41744": { + "content": "###0.9489###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41745": { + "content": "###0.9491###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41746": { + "content": "###0.9493###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41747": { + "content": "###0.9495###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41748": { + "content": "###0.9497###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41749": { + "content": "###0.9499###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41750": { + "content": "###0.9501###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41751": { + "content": "###0.9503###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41752": { + "content": "###0.9505###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41753": { + "content": "###0.9507###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41754": { + "content": "###0.9509###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41755": { + "content": "###0.9511###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41756": { + "content": "###0.9513###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41757": { + "content": "###0.9515###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41758": { + "content": "###0.9517###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41759": { + "content": "###0.9519###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41760": { + "content": "###0.9521###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41761": { + "content": "###0.9523###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41762": { + "content": "###0.9525###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41763": { + "content": "###0.9527###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41764": { + "content": "###0.9529###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41765": { + "content": "###0.9531###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41766": { + "content": "###0.9533###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41767": { + "content": "###0.9535###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41768": { + "content": "###0.9537###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41769": { + "content": "###0.9539###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41770": { + "content": "###0.9541###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41771": { + "content": "###0.9543###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41772": { + "content": "###0.9545###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41773": { + "content": "###0.9547###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41774": { + "content": "###0.9549###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41775": { + "content": "###0.9551###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41776": { + "content": "###0.9553###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41777": { + "content": "###0.9555###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41778": { + "content": "###0.9557###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41779": { + "content": "###0.9559###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41780": { + "content": "###0.9561###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41781": { + "content": "###0.9563###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41782": { + "content": "###0.9565###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41783": { + "content": "###0.9567###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41784": { + "content": "###0.9569###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41785": { + "content": "###0.9571###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41786": { + "content": "###0.9573###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41787": { + "content": "###0.9575###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41788": { + "content": "###0.9577###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41789": { + "content": "###0.9579###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41790": { + "content": "###0.9581###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41791": { + "content": "###0.9583###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41792": { + "content": "###0.9585###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41793": { + "content": "###0.9587###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41794": { + "content": "###0.9589###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41795": { + "content": "###0.9591###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41796": { + "content": "###0.9593###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41797": { + "content": "###0.9595###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41798": { + "content": "###0.9597###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41799": { + "content": "###0.9599###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41800": { + "content": "###0.9601###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41801": { + "content": "###0.9603###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41802": { + "content": "###0.9605###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41803": { + "content": "###0.9607###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41804": { + "content": "###0.9609###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41805": { + "content": "###0.9611###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41806": { + "content": "###0.9613###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41807": { + "content": "###0.9615###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41808": { + "content": "###0.9617###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41809": { + "content": "###0.9619###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41810": { + "content": "###0.9621###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41811": { + "content": "###0.9623###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41812": { + "content": "###0.9625###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41813": { + "content": "###0.9627###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41814": { + "content": "###0.9629###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41815": { + "content": "###0.9631###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41816": { + "content": "###0.9633###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41817": { + "content": "###0.9635###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41818": { + "content": "###0.9637###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41819": { + "content": "###0.9639###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41820": { + "content": "###0.9641###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41821": { + "content": "###0.9643###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41822": { + "content": "###0.9645###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41823": { + "content": "###0.9647###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41824": { + "content": "###0.9649###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41825": { + "content": "###0.9651###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41826": { + "content": "###0.9653###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41827": { + "content": "###0.9655###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41828": { + "content": "###0.9657###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41829": { + "content": "###0.9659###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41830": { + "content": "###0.9661###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41831": { + "content": "###0.9663###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41832": { + "content": "###0.9665###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41833": { + "content": "###0.9667###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41834": { + "content": "###0.9669###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41835": { + "content": "###0.9671###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41836": { + "content": "###0.9673###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41837": { + "content": "###0.9675###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41838": { + "content": "###0.9677###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41839": { + "content": "###0.9679###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41840": { + "content": "###0.9681###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41841": { + "content": "###0.9683###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41842": { + "content": "###0.9685###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41843": { + "content": "###0.9687###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41844": { + "content": "###0.9689###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41845": { + "content": "###0.9691###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41846": { + "content": "###0.9693###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41847": { + "content": "###0.9695###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41848": { + "content": "###0.9697###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41849": { + "content": "###0.9699###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41850": { + "content": "###0.9701###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41851": { + "content": "###0.9703###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41852": { + "content": "###0.9705###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41853": { + "content": "###0.9707###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41854": { + "content": "###0.9709###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41855": { + "content": "###0.9711###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41856": { + "content": "###0.9713###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41857": { + "content": "###0.9715###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41858": { + "content": "###0.9717###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41859": { + "content": "###0.9719###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41860": { + "content": "###0.9721###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41861": { + "content": "###0.9723###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41862": { + "content": "###0.9725###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41863": { + "content": "###0.9727###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41864": { + "content": "###0.9729###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41865": { + "content": "###0.9731###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41866": { + "content": "###0.9733###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41867": { + "content": "###0.9735###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41868": { + "content": "###0.9737###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41869": { + "content": "###0.9739###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41870": { + "content": "###0.9741###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41871": { + "content": "###0.9743###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41872": { + "content": "###0.9745###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41873": { + "content": "###0.9747###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41874": { + "content": "###0.9749###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41875": { + "content": "###0.9751###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41876": { + "content": "###0.9753###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41877": { + "content": "###0.9755###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41878": { + "content": "###0.9757###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41879": { + "content": "###0.9759###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41880": { + "content": "###0.9761###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41881": { + "content": "###0.9763###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41882": { + "content": "###0.9765###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41883": { + "content": "###0.9767###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41884": { + "content": "###0.9769###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41885": { + "content": "###0.9771###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41886": { + "content": "###0.9773###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41887": { + "content": "###0.9775###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41888": { + "content": "###0.9777###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41889": { + "content": "###0.9779###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41890": { + "content": "###0.9781###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41891": { + "content": "###0.9783###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41892": { + "content": "###0.9785###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41893": { + "content": "###0.9787###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41894": { + "content": "###0.9789###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41895": { + "content": "###0.9791###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41896": { + "content": "###0.9793###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41897": { + "content": "###0.9795###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41898": { + "content": "###0.9797###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41899": { + "content": "###0.9799###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41900": { + "content": "###0.9801###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41901": { + "content": "###0.9803###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41902": { + "content": "###0.9805###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41903": { + "content": "###0.9807###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41904": { + "content": "###0.9809###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41905": { + "content": "###0.9811###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41906": { + "content": "###0.9813###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41907": { + "content": "###0.9815###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41908": { + "content": "###0.9817###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41909": { + "content": "###0.9819###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41910": { + "content": "###0.9821###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41911": { + "content": "###0.9823###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41912": { + "content": "###0.9825###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41913": { + "content": "###0.9827###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41914": { + "content": "###0.9829###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41915": { + "content": "###0.9831###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41916": { + "content": "###0.9833###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41917": { + "content": "###0.9835###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41918": { + "content": "###0.9837###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41919": { + "content": "###0.9839###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41920": { + "content": "###0.9841###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41921": { + "content": "###0.9843###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41922": { + "content": "###0.9845###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41923": { + "content": "###0.9847###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41924": { + "content": "###0.9849###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41925": { + "content": "###0.9851###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41926": { + "content": "###0.9853###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41927": { + "content": "###0.9855###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41928": { + "content": "###0.9857###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41929": { + "content": "###0.9859###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41930": { + "content": "###0.9861###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41931": { + "content": "###0.9863###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41932": { + "content": "###0.9865###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41933": { + "content": "###0.9867###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41934": { + "content": "###0.9869###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41935": { + "content": "###0.9871###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41936": { + "content": "###0.9873###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41937": { + "content": "###0.9875###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41938": { + "content": "###0.9877###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41939": { + "content": "###0.9879###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41940": { + "content": "###0.9881###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41941": { + "content": "###0.9883###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41942": { + "content": "###0.9885###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41943": { + "content": "###0.9887###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41944": { + "content": "###0.9889###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41945": { + "content": "###0.9891###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41946": { + "content": "###0.9893###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41947": { + "content": "###0.9895###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41948": { + "content": "###0.9897###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41949": { + "content": "###0.9899###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41950": { + "content": "###0.9901###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41951": { + "content": "###0.9903###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41952": { + "content": "###0.9905###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41953": { + "content": "###0.9907###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41954": { + "content": "###0.9909###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41955": { + "content": "###0.9911###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41956": { + "content": "###0.9913###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41957": { + "content": "###0.9915###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41958": { + "content": "###0.9917###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41959": { + "content": "###0.9919###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41960": { + "content": "###0.9921###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41961": { + "content": "###0.9923###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41962": { + "content": "###0.9925###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41963": { + "content": "###0.9927###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41964": { + "content": "###0.9929###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41965": { + "content": "###0.9931###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41966": { + "content": "###0.9933###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41967": { + "content": "###0.9935###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41968": { + "content": "###0.9937###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41969": { + "content": "###0.9939###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41970": { + "content": "###0.9941###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41971": { + "content": "###0.9943###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41972": { + "content": "###0.9945###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41973": { + "content": "###0.9947###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41974": { + "content": "###0.9949###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41975": { + "content": "###0.9951###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41976": { + "content": "###0.9953###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41977": { + "content": "###0.9955###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41978": { + "content": "###0.9957###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41979": { + "content": "###0.9959###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41980": { + "content": "###0.9961###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41981": { + "content": "###0.9963###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41982": { + "content": "###0.9965###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41983": { + "content": "###0.9967###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41984": { + "content": "###0.9969###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41985": { + "content": "###0.9971###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41986": { + "content": "###0.9973###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41987": { + "content": "###0.9975###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41988": { + "content": "###0.9977###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41989": { + "content": "###0.9979###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41990": { + "content": "###0.9981###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41991": { + "content": "###0.9983###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41992": { + "content": "###0.9985###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41993": { + "content": "###0.9987###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41994": { + "content": "###0.9989###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41995": { + "content": "###0.9991###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41996": { + "content": "###0.9993###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41997": { + "content": "###0.9995###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41998": { + "content": "###0.9997###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "41999": { + "content": "###0.9999###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + }, + "42000": { + "content": "###Nan###", + "lstrip": false, + "normalized": true, + "rstrip": false, + "single_word": false, + "special": false + } + }, + "bos_token": "", + "clean_up_tokenization_spaces": false, + "eos_token": "", + "legacy": false, + "model_max_length": 1000000000000000019884624838656, + "pad_token": "", + "padding_side": "left", + "sp_model_kwargs": {}, + "spaces_between_special_tokens": false, + "tokenizer_class": "LlamaTokenizer", + "unk_token": "", + "use_default_system_prompt": false +}